summaryrefslogtreecommitdiff
path: root/libs/ardour/test/profiling/sessions/32tracks/32tracks.ardour
blob: ca9614e8c321a19975a100888a4cd136e5094f54 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
<?xml version="1.0" encoding="UTF-8"?>
<Session version="3001" name="32tracks" sample-rate="44100" id-counter="2430" event-counter="0">
  <Config>
    <Option name="xfade-model" value="FullCrossfade"/>
    <Option name="xfade-choice" value="ConstantPowerMinus3dB"/>
    <Option name="auto-xfade" value="1"/>
    <Option name="short-xfade-seconds" value="0.015"/>
    <Option name="use-region-fades" value="1"/>
    <Option name="show-region-fades" value="1"/>
    <Option name="native-file-data-format" value="FormatFloat"/>
    <Option name="native-file-header-format" value="WAVE"/>
    <Option name="auto-play" value="0"/>
    <Option name="auto-return" value="0"/>
    <Option name="auto-input" value="1"/>
    <Option name="punch-in" value="0"/>
    <Option name="punch-out" value="0"/>
    <Option name="subframes-per-frame" value="100"/>
    <Option name="timecode-format" value="timecode_30"/>
    <Option name="raid-path" value=""/>
    <Option name="audio-search-path" value=""/>
    <Option name="midi-search-path" value=""/>
    <Option name="auditioner-output-left" value="default"/>
    <Option name="auditioner-output-right" value="default"/>
    <Option name="timecode-source-is-synced" value="1"/>
    <Option name="jack-time-master" value="1"/>
    <Option name="use-video-sync" value="0"/>
    <Option name="video-pullup" value="0"/>
    <Option name="show-summary" value="1"/>
    <Option name="show-group-tabs" value="1"/>
    <Option name="external-sync" value="0"/>
    <Option name="sync-source" value="JACK"/>
    <Option name="insert-merge-policy" value="InsertMergeRelax"/>
    <Option name="timecode-offset" value="0"/>
    <Option name="timecode-offset-negative" value="1"/>
    <Option name="glue-new-markers-to-bars-and-beats" value="0"/>
    <Option name="midi-copy-is-fork" value="0"/>
    <Option name="glue-new-regions-to-bars-and-beats" value="0"/>
  </Config>
  <Metadata/>
  <Sources/>
  <Regions/>
  <Locations>
    <Location id="81" name="Loop" start="0" end="1" flags="IsAutoLoop,IsHidden" locked="no" position-lock-style="AudioTime"/>
    <Location id="82" name="Punch" start="0" end="1" flags="IsAutoPunch,IsHidden" locked="no" position-lock-style="AudioTime"/>
  </Locations>
  <Bundles/>
  <Routes>
    <Route id="22" name="master" default-type="audio" flags="MasterOut" active="yes" phase-invert="00" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=0:signal=0" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no">
      <IO name="master" id="39" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="master/audio_in 1">
          <Connection other="Audio 1/audio_out 1"/>
          <Connection other="Audio 2/audio_out 1"/>
          <Connection other="Audio 3/audio_out 1"/>
          <Connection other="Audio 4/audio_out 1"/>
          <Connection other="Audio 5/audio_out 1"/>
          <Connection other="Audio 6/audio_out 1"/>
          <Connection other="Audio 7/audio_out 1"/>
          <Connection other="Audio 8/audio_out 1"/>
          <Connection other="Audio 9/audio_out 1"/>
          <Connection other="Audio 10/audio_out 1"/>
          <Connection other="Audio 11/audio_out 1"/>
          <Connection other="Audio 12/audio_out 1"/>
          <Connection other="Audio 13/audio_out 1"/>
          <Connection other="Audio 14/audio_out 1"/>
          <Connection other="Audio 15/audio_out 1"/>
          <Connection other="Audio 16/audio_out 1"/>
          <Connection other="Audio 17/audio_out 1"/>
          <Connection other="Audio 18/audio_out 1"/>
          <Connection other="Audio 19/audio_out 1"/>
          <Connection other="Audio 20/audio_out 1"/>
          <Connection other="Audio 21/audio_out 1"/>
          <Connection other="Audio 22/audio_out 1"/>
          <Connection other="Audio 23/audio_out 1"/>
          <Connection other="Audio 24/audio_out 1"/>
          <Connection other="Audio 25/audio_out 1"/>
          <Connection other="Audio 26/audio_out 1"/>
          <Connection other="Audio 27/audio_out 1"/>
          <Connection other="Audio 28/audio_out 1"/>
          <Connection other="Audio 29/audio_out 1"/>
          <Connection other="Audio 30/audio_out 1"/>
          <Connection other="Audio 31/audio_out 1"/>
          <Connection other="Audio 32/audio_out 1"/>
        </Port>
        <Port type="audio" name="master/audio_in 2">
          <Connection other="Audio 1/audio_out 2"/>
          <Connection other="Audio 2/audio_out 2"/>
          <Connection other="Audio 3/audio_out 2"/>
          <Connection other="Audio 4/audio_out 2"/>
          <Connection other="Audio 5/audio_out 2"/>
          <Connection other="Audio 6/audio_out 2"/>
          <Connection other="Audio 7/audio_out 2"/>
          <Connection other="Audio 8/audio_out 2"/>
          <Connection other="Audio 9/audio_out 2"/>
          <Connection other="Audio 10/audio_out 2"/>
          <Connection other="Audio 11/audio_out 2"/>
          <Connection other="Audio 12/audio_out 2"/>
          <Connection other="Audio 13/audio_out 2"/>
          <Connection other="Audio 14/audio_out 2"/>
          <Connection other="Audio 15/audio_out 2"/>
          <Connection other="Audio 16/audio_out 2"/>
          <Connection other="Audio 17/audio_out 2"/>
          <Connection other="Audio 18/audio_out 2"/>
          <Connection other="Audio 19/audio_out 2"/>
          <Connection other="Audio 20/audio_out 2"/>
          <Connection other="Audio 21/audio_out 2"/>
          <Connection other="Audio 22/audio_out 2"/>
          <Connection other="Audio 23/audio_out 2"/>
          <Connection other="Audio 24/audio_out 2"/>
          <Connection other="Audio 25/audio_out 2"/>
          <Connection other="Audio 26/audio_out 2"/>
          <Connection other="Audio 27/audio_out 2"/>
          <Connection other="Audio 28/audio_out 2"/>
          <Connection other="Audio 29/audio_out 2"/>
          <Connection other="Audio 30/audio_out 2"/>
          <Connection other="Audio 31/audio_out 2"/>
          <Connection other="Audio 32/audio_out 2"/>
        </Port>
      </IO>
      <IO name="master" id="40" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="master/audio_out 1">
          <Connection other="system:playback_1"/>
        </Port>
        <Port type="audio" name="master/audio_out 2">
          <Connection other="system:playback_2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="24" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="26" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="318"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="30" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="34" flags="" value="1.000000000000"/>
        <Controllable name="pan-elevation" id="32" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="36" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="38" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="41" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="43" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="44" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="45" name="master" active="yes" user-latency="0" own-input="yes" own-output="no" output="master" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Equal Power Stereo"/>
        </PannerShell>
      </Processor>
    </Route>
    <Route id="83" name="Audio 1" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=1:signal=1" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 1" id="101" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 1/audio_in 1">
          <Connection other="system:capture_1"/>
        </Port>
      </IO>
      <IO name="Audio 1" id="102" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 1/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 1/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="86" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="88" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="2"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="92" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="96" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="94" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="98" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="100" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="103" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="105" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="106" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="107" name="Audio 1" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 1" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="85" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 1.1" name="Audio 1" id="109" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="115" name="Audio 2" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=2:signal=2" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 2" id="133" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 2/audio_in 1">
          <Connection other="system:capture_2"/>
        </Port>
      </IO>
      <IO name="Audio 2" id="134" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 2/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 2/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="118" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="120" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="3"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="124" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="128" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="126" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="130" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="132" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="135" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="137" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="138" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="139" name="Audio 2" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 2" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="117" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 2.1" name="Audio 2" id="141" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="147" name="Audio 3" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=3:signal=3" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 3" id="165" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 3/audio_in 1"/>
      </IO>
      <IO name="Audio 3" id="166" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 3/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 3/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="150" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="152" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="4"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="156" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="160" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="158" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="162" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="164" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="167" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="169" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="170" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="171" name="Audio 3" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 3" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="149" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 3.1" name="Audio 3" id="173" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="179" name="Audio 4" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=4:signal=4" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 4" id="197" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 4/audio_in 1"/>
      </IO>
      <IO name="Audio 4" id="198" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 4/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 4/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="182" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="184" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="5"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="188" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="192" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="190" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="194" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="196" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="199" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="201" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="202" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="203" name="Audio 4" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 4" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="181" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 4.1" name="Audio 4" id="205" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="211" name="Audio 5" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=5:signal=5" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 5" id="229" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 5/audio_in 1"/>
      </IO>
      <IO name="Audio 5" id="230" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 5/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 5/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="214" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="216" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="6"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="220" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="224" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="222" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="226" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="228" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="231" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="233" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="234" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="235" name="Audio 5" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 5" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="213" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 5.1" name="Audio 5" id="237" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="243" name="Audio 6" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=6:signal=6" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 6" id="261" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 6/audio_in 1"/>
      </IO>
      <IO name="Audio 6" id="262" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 6/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 6/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="246" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="248" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="7"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="252" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="256" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="254" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="258" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="260" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="263" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="265" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="266" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="267" name="Audio 6" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 6" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="245" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 6.1" name="Audio 6" id="269" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="275" name="Audio 7" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=7:signal=7" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 7" id="293" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 7/audio_in 1"/>
      </IO>
      <IO name="Audio 7" id="294" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 7/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 7/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="278" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="280" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="8"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="284" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="288" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="286" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="290" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="292" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="295" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="297" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="298" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="299" name="Audio 7" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 7" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="277" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 7.1" name="Audio 7" id="301" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="307" name="Audio 8" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=8:signal=8" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 8" id="325" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 8/audio_in 1"/>
      </IO>
      <IO name="Audio 8" id="326" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 8/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 8/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="310" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="312" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="9"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="316" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="320" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="318" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="322" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="324" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="327" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="329" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="330" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="331" name="Audio 8" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 8" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="309" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 8.1" name="Audio 8" id="333" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="339" name="Audio 9" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=9:signal=9" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 9" id="357" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 9/audio_in 1"/>
      </IO>
      <IO name="Audio 9" id="358" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 9/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 9/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="342" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="344" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="10"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="348" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="352" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="350" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="354" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="356" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="359" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="361" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="362" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="363" name="Audio 9" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 9" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="341" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 9.1" name="Audio 9" id="365" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="371" name="Audio 10" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=10:signal=10" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 10" id="389" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 10/audio_in 1"/>
      </IO>
      <IO name="Audio 10" id="390" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 10/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 10/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="374" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="376" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="11"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="380" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="384" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="382" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="386" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="388" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="391" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="393" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="394" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="395" name="Audio 10" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 10" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="373" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 10.1" name="Audio 10" id="397" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="403" name="Audio 11" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=11:signal=11" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 11" id="421" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 11/audio_in 1"/>
      </IO>
      <IO name="Audio 11" id="422" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 11/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 11/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="406" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="408" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="12"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="412" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="416" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="414" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="418" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="420" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="423" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="425" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="426" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="427" name="Audio 11" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 11" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="405" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 11.1" name="Audio 11" id="429" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="435" name="Audio 12" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=12:signal=12" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 12" id="453" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 12/audio_in 1"/>
      </IO>
      <IO name="Audio 12" id="454" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 12/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 12/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="438" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="440" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="13"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="444" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="448" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="446" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="450" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="452" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="455" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="457" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="458" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="459" name="Audio 12" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 12" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="437" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 12.1" name="Audio 12" id="461" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="467" name="Audio 13" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=13:signal=13" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 13" id="485" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 13/audio_in 1"/>
      </IO>
      <IO name="Audio 13" id="486" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 13/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 13/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="470" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="472" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="14"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="476" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="480" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="478" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="482" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="484" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="487" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="489" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="490" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="491" name="Audio 13" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 13" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="469" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 13.1" name="Audio 13" id="493" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="499" name="Audio 14" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=14:signal=14" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 14" id="517" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 14/audio_in 1"/>
      </IO>
      <IO name="Audio 14" id="518" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 14/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 14/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="502" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="504" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="15"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="508" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="512" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="510" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="514" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="516" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="519" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="521" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="522" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="523" name="Audio 14" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 14" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="501" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 14.1" name="Audio 14" id="525" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="531" name="Audio 15" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=15:signal=15" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 15" id="549" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 15/audio_in 1"/>
      </IO>
      <IO name="Audio 15" id="550" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 15/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 15/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="534" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="536" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="16"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="540" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="544" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="542" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="546" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="548" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="551" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="553" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="554" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="555" name="Audio 15" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 15" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="533" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 15.1" name="Audio 15" id="557" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="563" name="Audio 16" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=16:signal=16" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 16" id="581" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 16/audio_in 1"/>
      </IO>
      <IO name="Audio 16" id="582" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 16/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 16/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="566" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="568" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="17"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="572" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="576" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="574" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="578" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="580" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="583" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="585" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="586" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="587" name="Audio 16" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 16" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="565" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 16.1" name="Audio 16" id="589" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="595" name="Audio 17" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=17:signal=17" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 17" id="613" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 17/audio_in 1"/>
      </IO>
      <IO name="Audio 17" id="614" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 17/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 17/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="598" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="600" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="18"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="604" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="608" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="606" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="610" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="612" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="615" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="617" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="618" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="619" name="Audio 17" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 17" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="597" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 17.1" name="Audio 17" id="621" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="627" name="Audio 18" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=18:signal=18" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 18" id="645" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 18/audio_in 1"/>
      </IO>
      <IO name="Audio 18" id="646" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 18/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 18/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="630" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="632" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="19"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="636" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="640" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="638" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="642" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="644" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="647" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="649" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="650" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="651" name="Audio 18" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 18" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="629" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 18.1" name="Audio 18" id="653" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="659" name="Audio 19" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=19:signal=19" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 19" id="677" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 19/audio_in 1"/>
      </IO>
      <IO name="Audio 19" id="678" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 19/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 19/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="662" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="664" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="20"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="668" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="672" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="670" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="674" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="676" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="679" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="681" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="682" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="683" name="Audio 19" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 19" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="661" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 19.1" name="Audio 19" id="685" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="691" name="Audio 20" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=20:signal=20" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 20" id="709" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 20/audio_in 1"/>
      </IO>
      <IO name="Audio 20" id="710" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 20/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 20/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="694" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="696" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="21"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="700" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="704" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="702" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="706" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="708" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="711" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="713" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="714" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="715" name="Audio 20" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 20" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="693" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 20.1" name="Audio 20" id="717" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="723" name="Audio 21" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=21:signal=21" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 21" id="741" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 21/audio_in 1"/>
      </IO>
      <IO name="Audio 21" id="742" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 21/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 21/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="726" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="728" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="22"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="732" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="736" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="734" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="738" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="740" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="743" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="745" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="746" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="747" name="Audio 21" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 21" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="725" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 21.1" name="Audio 21" id="749" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="755" name="Audio 22" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=22:signal=22" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 22" id="773" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 22/audio_in 1"/>
      </IO>
      <IO name="Audio 22" id="774" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 22/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 22/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="758" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="760" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="23"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="764" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="768" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="766" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="770" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="772" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="775" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="777" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="778" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="779" name="Audio 22" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 22" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="757" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 22.1" name="Audio 22" id="781" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="787" name="Audio 23" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=23:signal=23" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 23" id="805" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 23/audio_in 1"/>
      </IO>
      <IO name="Audio 23" id="806" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 23/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 23/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="790" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="792" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="24"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="796" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="800" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="798" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="802" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="804" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="807" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="809" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="810" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="811" name="Audio 23" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 23" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="789" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 23.1" name="Audio 23" id="813" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="819" name="Audio 24" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=24:signal=24" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 24" id="837" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 24/audio_in 1"/>
      </IO>
      <IO name="Audio 24" id="838" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 24/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 24/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="822" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="824" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="25"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="828" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="832" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="830" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="834" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="836" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="839" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="841" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="842" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="843" name="Audio 24" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 24" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="821" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 24.1" name="Audio 24" id="845" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="851" name="Audio 25" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=25:signal=25" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 25" id="869" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 25/audio_in 1"/>
      </IO>
      <IO name="Audio 25" id="870" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 25/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 25/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="854" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="856" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="26"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="860" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="864" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="862" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="866" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="868" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="871" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="873" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="874" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="875" name="Audio 25" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 25" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="853" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 25.1" name="Audio 25" id="877" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="883" name="Audio 26" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=26:signal=26" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 26" id="901" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 26/audio_in 1"/>
      </IO>
      <IO name="Audio 26" id="902" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 26/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 26/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="886" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="888" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="27"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="892" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="896" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="894" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="898" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="900" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="903" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="905" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="906" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="907" name="Audio 26" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 26" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="885" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 26.1" name="Audio 26" id="909" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="915" name="Audio 27" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=27:signal=27" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 27" id="933" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 27/audio_in 1">
          <Connection other="system:capture_1"/>
        </Port>
      </IO>
      <IO name="Audio 27" id="934" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 27/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 27/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="918" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="920" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="28"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="924" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="928" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="926" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="930" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="932" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="935" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="937" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="938" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="939" name="Audio 27" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 27" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="917" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 27.1" name="Audio 27" id="941" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="947" name="Audio 28" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=28:signal=28" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 28" id="965" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 28/audio_in 1">
          <Connection other="system:capture_2"/>
        </Port>
      </IO>
      <IO name="Audio 28" id="966" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 28/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 28/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="950" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="952" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="29"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="956" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="960" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="958" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="962" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="964" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="967" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="969" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="970" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="971" name="Audio 28" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 28" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="949" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 28.1" name="Audio 28" id="973" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="979" name="Audio 29" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=29:signal=29" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 29" id="997" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 29/audio_in 1"/>
      </IO>
      <IO name="Audio 29" id="998" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 29/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 29/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="982" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="984" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="30"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="988" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="992" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="990" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="994" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="996" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="999" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="1001" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="1002" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="1003" name="Audio 29" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 29" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="981" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 29.1" name="Audio 29" id="1005" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="1011" name="Audio 30" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=30:signal=30" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 30" id="1029" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 30/audio_in 1"/>
      </IO>
      <IO name="Audio 30" id="1030" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 30/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 30/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="1014" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="1016" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="31"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="1020" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="1024" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="1022" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="1026" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="1028" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="1031" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="1033" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="1034" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="1035" name="Audio 30" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 30" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="1013" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 30.1" name="Audio 30" id="1037" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="1043" name="Audio 31" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=31:signal=31" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 31" id="1061" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 31/audio_in 1"/>
      </IO>
      <IO name="Audio 31" id="1062" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 31/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 31/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="1046" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="1048" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="32"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="1052" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="1056" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="1054" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="1058" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="1060" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="1063" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="1065" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="1066" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="1067" name="Audio 31" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 31" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="1045" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 31.1" name="Audio 31" id="1069" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
    <Route id="1075" name="Audio 32" default-type="audio" active="yes" phase-invert="0" denormal-protection="no" meter-point="MeterPostFader" order-keys="editor=32:signal=32" self-solo="no" soloed-by-upstream="0" soloed-by-downstream="0" solo-isolated="no" solo-safe="no" monitoring="" saved-meter-point="MeterPostFader" mode="Normal">
      <IO name="Audio 32" id="1093" direction="Input" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 32/audio_in 1"/>
      </IO>
      <IO name="Audio 32" id="1094" direction="Output" default-type="audio" user-latency="0">
        <Port type="audio" name="Audio 32/audio_out 1">
          <Connection other="master/audio_in 1"/>
        </Port>
        <Port type="audio" name="Audio 32/audio_out 2">
          <Connection other="master/audio_in 2"/>
        </Port>
      </IO>
      <Controllable name="solo" id="1078" flags="Toggle" value="0.000000000000"/>
      <Controllable name="mute" id="1080" flags="Toggle" value="0.000000000000"/>
      <MuteMaster mute-point="PreFader,PostFader,Listen,Main" muted="no"/>
      <RemoteControl id="33"/>
      <Pannable>
        <Controllable name="pan-azimuth" id="1084" flags="" value="0.500000000000"/>
        <Controllable name="pan-width" id="1088" flags="" value="0.000000000000"/>
        <Controllable name="pan-elevation" id="1086" flags="" value="0.000000000000"/>
        <Controllable name="pan-frontback" id="1090" flags="" value="0.000000000000"/>
        <Controllable name="pan-lfe" id="1092" flags="" value="0.000000000000"/>
        <Automation/>
      </Pannable>
      <Processor id="1095" name="Amp" active="yes" user-latency="0" type="amp">
        <Controllable name="gaincontrol" id="1097" flags="GainLike" value="1.000000000000"/>
      </Processor>
      <Processor id="1098" name="Meter" active="yes" user-latency="0" type="meter"/>
      <Processor id="1099" name="Audio 32" active="yes" user-latency="0" own-input="yes" own-output="no" output="Audio 32" type="main-outs" role="Main">
        <PannerShell bypassed="no">
          <Panner type="Mono to Stereo Panner"/>
        </PannerShell>
      </Processor>
      <Controllable name="recenable" id="1077" flags="" value="0.000000000000"/>
      <Diskstream flags="Recordable" playlist="Audio 32.1" name="Audio 32" id="1101" speed="1.000000" capture-alignment="Automatic" channels="1"/>
    </Route>
  </Routes>
  <Playlists>
    <Playlist id="142" name="Audio 2.1" type="audio" orig-track-id="115" frozen="no" combine-ops="0"/>
    <Playlist id="110" name="Audio 1.1" type="audio" orig-track-id="83" frozen="no" combine-ops="0"/>
    <Playlist id="206" name="Audio 4.1" type="audio" orig-track-id="179" frozen="no" combine-ops="0"/>
    <Playlist id="174" name="Audio 3.1" type="audio" orig-track-id="147" frozen="no" combine-ops="0"/>
    <Playlist id="270" name="Audio 6.1" type="audio" orig-track-id="243" frozen="no" combine-ops="0"/>
    <Playlist id="238" name="Audio 5.1" type="audio" orig-track-id="211" frozen="no" combine-ops="0"/>
    <Playlist id="334" name="Audio 8.1" type="audio" orig-track-id="307" frozen="no" combine-ops="0"/>
    <Playlist id="302" name="Audio 7.1" type="audio" orig-track-id="275" frozen="no" combine-ops="0"/>
    <Playlist id="398" name="Audio 10.1" type="audio" orig-track-id="371" frozen="no" combine-ops="0"/>
    <Playlist id="366" name="Audio 9.1" type="audio" orig-track-id="339" frozen="no" combine-ops="0"/>
    <Playlist id="462" name="Audio 12.1" type="audio" orig-track-id="435" frozen="no" combine-ops="0"/>
    <Playlist id="430" name="Audio 11.1" type="audio" orig-track-id="403" frozen="no" combine-ops="0"/>
    <Playlist id="526" name="Audio 14.1" type="audio" orig-track-id="499" frozen="no" combine-ops="0"/>
    <Playlist id="494" name="Audio 13.1" type="audio" orig-track-id="467" frozen="no" combine-ops="0"/>
    <Playlist id="590" name="Audio 16.1" type="audio" orig-track-id="563" frozen="no" combine-ops="0"/>
    <Playlist id="558" name="Audio 15.1" type="audio" orig-track-id="531" frozen="no" combine-ops="0"/>
    <Playlist id="654" name="Audio 18.1" type="audio" orig-track-id="627" frozen="no" combine-ops="0"/>
    <Playlist id="622" name="Audio 17.1" type="audio" orig-track-id="595" frozen="no" combine-ops="0"/>
    <Playlist id="718" name="Audio 20.1" type="audio" orig-track-id="691" frozen="no" combine-ops="0"/>
    <Playlist id="686" name="Audio 19.1" type="audio" orig-track-id="659" frozen="no" combine-ops="0"/>
    <Playlist id="782" name="Audio 22.1" type="audio" orig-track-id="755" frozen="no" combine-ops="0"/>
    <Playlist id="750" name="Audio 21.1" type="audio" orig-track-id="723" frozen="no" combine-ops="0"/>
    <Playlist id="846" name="Audio 24.1" type="audio" orig-track-id="819" frozen="no" combine-ops="0"/>
    <Playlist id="814" name="Audio 23.1" type="audio" orig-track-id="787" frozen="no" combine-ops="0"/>
    <Playlist id="910" name="Audio 26.1" type="audio" orig-track-id="883" frozen="no" combine-ops="0"/>
    <Playlist id="878" name="Audio 25.1" type="audio" orig-track-id="851" frozen="no" combine-ops="0"/>
    <Playlist id="974" name="Audio 28.1" type="audio" orig-track-id="947" frozen="no" combine-ops="0"/>
    <Playlist id="942" name="Audio 27.1" type="audio" orig-track-id="915" frozen="no" combine-ops="0"/>
    <Playlist id="1038" name="Audio 30.1" type="audio" orig-track-id="1011" frozen="no" combine-ops="0"/>
    <Playlist id="1006" name="Audio 29.1" type="audio" orig-track-id="979" frozen="no" combine-ops="0"/>
    <Playlist id="1102" name="Audio 32.1" type="audio" orig-track-id="1075" frozen="no" combine-ops="0"/>
    <Playlist id="1070" name="Audio 31.1" type="audio" orig-track-id="1043" frozen="no" combine-ops="0"/>
  </Playlists>
  <UnusedPlaylists/>
  <RouteGroups/>
  <Click>
    <IO name="click" id="47" direction="Output" default-type="audio" user-latency="0">
      <Port type="audio" name="click/audio_out 1">
        <Connection other="system:playback_1"/>
      </Port>
      <Port type="audio" name="click/audio_out 2">
        <Connection other="system:playback_2"/>
      </Port>
    </IO>
    <Processor id="2320" name="Amp" active="yes" user-latency="0" type="amp">
      <Controllable name="gaincontrol" id="2322" flags="GainLike" value="1.000000000000"/>
    </Processor>
  </Click>
  <NamedSelections/>
  <Speakers>
    <Speaker azimuth="0" elevation="0" distance="1"/>
    <Speaker azimuth="180" elevation="0" distance="0"/>
  </Speakers>
  <TempoMap>
    <Tempo start="1|1|0" beats-per-minute="120.000000" note-type="4.000000" movable="no"/>
    <Meter start="1|1|0" note-type="4.000000" divisions-per-bar="4.000000" movable="no"/>
  </TempoMap>
  <ControlProtocols>
    <Protocol name="Open Sound Control (OSC)" active="no"/>
    <Protocol name="Generic MIDI" feedback="0" feedback-interval="10000" active="yes">
      <Controls/>
    </Protocol>
    <Protocol name="Mackie" bank="0" ipmidi-base="21928" device-profile="" device-name="Mackie Control Universal Pro" active="yes"/>
  </ControlProtocols>
  <Extra>
    <UI>
      <Window name="R-22-41" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="R-22-44" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="R-22-45" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-22-41" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-22-44" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-22-45" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-83-103" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-83-106" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-83-107" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-115-135" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-115-138" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-115-139" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-147-167" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-147-170" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-147-171" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-179-199" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-179-202" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-179-203" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-211-231" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-211-234" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-211-235" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-243-263" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-243-266" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-243-267" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-275-295" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-275-298" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-275-299" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-307-327" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-307-330" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-307-331" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-339-359" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-339-362" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-339-363" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-371-391" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-371-394" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-371-395" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-403-423" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-403-426" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-403-427" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-435-455" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-435-458" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-435-459" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-467-487" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-467-490" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-467-491" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-499-519" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-499-522" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-499-523" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-531-551" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-531-554" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-531-555" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-563-583" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-563-586" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-563-587" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-595-615" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-595-618" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-595-619" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-627-647" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-627-650" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-627-651" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-659-679" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-659-682" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-659-683" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-691-711" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-691-714" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-691-715" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-723-743" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-723-746" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-723-747" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-755-775" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-755-778" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-755-779" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-787-807" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-787-810" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-787-811" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-819-839" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-819-842" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-819-843" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-851-871" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-851-874" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-851-875" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-883-903" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-883-906" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-883-907" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-915-935" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-915-938" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-915-939" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-947-967" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-947-970" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-947-971" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-979-999" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-979-1002" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-979-1003" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1011-1031" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1011-1034" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1011-1035" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1043-1063" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1043-1066" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1043-1067" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1075-1095" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1075-1098" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <Window name="M-1075-1099" visible="no" x-off="-1" y-off="-1" x-size="-1" y-size="-1"/>
      <GUIObjectState>
        <Object id="route 22" color="28156:3060:40485"/>
        <Object id="rtav 22" height="60" visible="1"/>
        <Object id="automation 43" height="60" visible="0"/>
        <Object id="automation 30" height="60" visible="0"/>
        <Object id="automation 34" height="60" visible="0"/>
        <Object id="strip 22" visible="1" strip-width="Wide">
          <Object id="processor 41"/>
        </Object>
        <Object id="route 83" color="41214:6238:37268"/>
        <Object id="rtav 83" height="60" visible="1"/>
        <Object id="automation 105" height="60" visible="0"/>
        <Object id="automation 92" height="60" visible="0"/>
        <Object id="route 115" color="30107:2538:43272"/>
        <Object id="rtav 115" height="60" visible="1"/>
        <Object id="automation 137" height="60" visible="0"/>
        <Object id="automation 124" height="60" visible="0"/>
        <Object id="route 147" color="45907:43976:29990"/>
        <Object id="rtav 147" height="60" visible="1"/>
        <Object id="automation 169" height="60" visible="0"/>
        <Object id="automation 156" height="60" visible="0"/>
        <Object id="route 179" color="28824:2764:526"/>
        <Object id="rtav 179" height="60" visible="1"/>
        <Object id="automation 201" height="60" visible="0"/>
        <Object id="automation 188" height="60" visible="0"/>
        <Object id="route 211" color="3188:10144:2761"/>
        <Object id="rtav 211" height="60" visible="1"/>
        <Object id="automation 233" height="60" visible="0"/>
        <Object id="automation 220" height="60" visible="0"/>
        <Object id="route 243" color="8803:25061:18421"/>
        <Object id="rtav 243" height="60" visible="1"/>
        <Object id="automation 265" height="60" visible="0"/>
        <Object id="automation 252" height="60" visible="0"/>
        <Object id="route 275" color="45836:4494:3812"/>
        <Object id="rtav 275" height="60" visible="1"/>
        <Object id="automation 297" height="60" visible="0"/>
        <Object id="automation 284" height="60" visible="0"/>
        <Object id="route 307" color="45754:9969:15307"/>
        <Object id="rtav 307" height="60" visible="1"/>
        <Object id="automation 329" height="60" visible="0"/>
        <Object id="automation 316" height="60" visible="0"/>
        <Object id="route 339" color="34367:13830:24287"/>
        <Object id="rtav 339" height="60" visible="1"/>
        <Object id="automation 361" height="60" visible="0"/>
        <Object id="automation 348" height="60" visible="0"/>
        <Object id="route 371" color="37491:9780:8407"/>
        <Object id="rtav 371" height="60" visible="1"/>
        <Object id="automation 393" height="60" visible="0"/>
        <Object id="automation 380" height="60" visible="0"/>
        <Object id="route 403" color="12158:35400:1621"/>
        <Object id="rtav 403" height="60" visible="1"/>
        <Object id="automation 425" height="60" visible="0"/>
        <Object id="automation 412" height="60" visible="0"/>
        <Object id="route 435" color="6748:19025:20080"/>
        <Object id="rtav 435" height="60" visible="1"/>
        <Object id="automation 457" height="60" visible="0"/>
        <Object id="automation 444" height="60" visible="0"/>
        <Object id="route 467" color="45639:1015:17987"/>
        <Object id="rtav 467" height="60" visible="1"/>
        <Object id="automation 489" height="60" visible="0"/>
        <Object id="automation 476" height="60" visible="0"/>
        <Object id="route 499" color="41615:1541:46811"/>
        <Object id="rtav 499" height="60" visible="1"/>
        <Object id="automation 521" height="60" visible="0"/>
        <Object id="automation 508" height="60" visible="0"/>
        <Object id="route 531" color="44379:40654:38351"/>
        <Object id="rtav 531" height="60" visible="1"/>
        <Object id="automation 553" height="60" visible="0"/>
        <Object id="automation 540" height="60" visible="0"/>
        <Object id="route 563" color="42876:47427:47155"/>
        <Object id="rtav 563" height="60" visible="1"/>
        <Object id="automation 585" height="60" visible="0"/>
        <Object id="automation 572" height="60" visible="0"/>
        <Object id="route 595" color="8289:3239:44991"/>
        <Object id="rtav 595" height="60" visible="1"/>
        <Object id="automation 617" height="60" visible="0"/>
        <Object id="automation 604" height="60" visible="0"/>
        <Object id="route 627" color="12783:18546:42745"/>
        <Object id="rtav 627" height="60" visible="1"/>
        <Object id="automation 649" height="60" visible="0"/>
        <Object id="automation 636" height="60" visible="0"/>
        <Object id="route 659" color="11104:31186:29113"/>
        <Object id="rtav 659" height="60" visible="1"/>
        <Object id="automation 681" height="60" visible="0"/>
        <Object id="automation 668" height="60" visible="0"/>
        <Object id="route 691" color="24934:39593:18604"/>
        <Object id="rtav 691" height="60" visible="1"/>
        <Object id="automation 713" height="60" visible="0"/>
        <Object id="automation 700" height="60" visible="0"/>
        <Object id="route 723" color="23066:29567:19114"/>
        <Object id="rtav 723" height="60" visible="1"/>
        <Object id="automation 745" height="60" visible="0"/>
        <Object id="automation 732" height="60" visible="0"/>
        <Object id="route 755" color="10467:1647:25863"/>
        <Object id="rtav 755" height="60" visible="1"/>
        <Object id="automation 777" height="60" visible="0"/>
        <Object id="automation 764" height="60" visible="0"/>
        <Object id="route 787" color="29492:19635:23502"/>
        <Object id="rtav 787" height="60" visible="1"/>
        <Object id="automation 809" height="60" visible="0"/>
        <Object id="automation 796" height="60" visible="0"/>
        <Object id="route 819" color="30507:6798:5469"/>
        <Object id="rtav 819" height="60" visible="1"/>
        <Object id="automation 841" height="60" visible="0"/>
        <Object id="automation 828" height="60" visible="0"/>
        <Object id="route 851" color="20400:45150:38201"/>
        <Object id="rtav 851" height="60" visible="1"/>
        <Object id="automation 873" height="60" visible="0"/>
        <Object id="automation 860" height="60" visible="0"/>
        <Object id="route 883" color="1406:32657:33077"/>
        <Object id="rtav 883" height="60" visible="1"/>
        <Object id="automation 905" height="60" visible="0"/>
        <Object id="automation 892" height="60" visible="0"/>
        <Object id="route 915" color="833:18000:29718"/>
        <Object id="rtav 915" height="60" visible="1"/>
        <Object id="automation 937" height="60" visible="0"/>
        <Object id="automation 924" height="60" visible="0"/>
        <Object id="route 947" color="4072:12746:42501"/>
        <Object id="rtav 947" height="60" visible="1"/>
        <Object id="automation 969" height="60" visible="0"/>
        <Object id="automation 956" height="60" visible="0"/>
        <Object id="route 979" color="22618:30211:41958"/>
        <Object id="rtav 979" height="60" visible="1"/>
        <Object id="automation 1001" height="60" visible="0"/>
        <Object id="automation 988" height="60" visible="0"/>
        <Object id="route 1011" color="5804:37167:7244"/>
        <Object id="rtav 1011" height="60" visible="1"/>
        <Object id="automation 1033" height="60" visible="0"/>
        <Object id="automation 1020" height="60" visible="0"/>
        <Object id="route 1043" color="33750:44634:30311"/>
        <Object id="rtav 1043" height="60" visible="1"/>
        <Object id="automation 1065" height="60" visible="0"/>
        <Object id="automation 1052" height="60" visible="0"/>
        <Object id="route 1075" color="15317:22497:40778"/>
        <Object id="rtav 1075" height="60" visible="1"/>
        <Object id="automation 1097" height="60" visible="0"/>
        <Object id="automation 1084" height="60" visible="0"/>
        <Object id="strip 83" visible="1">
          <Object id="processor 103"/>
        </Object>
        <Object id="strip 115" visible="1">
          <Object id="processor 135"/>
        </Object>
        <Object id="strip 147" visible="1">
          <Object id="processor 167"/>
        </Object>
        <Object id="strip 179" visible="1">
          <Object id="processor 199"/>
        </Object>
        <Object id="strip 211" visible="1">
          <Object id="processor 231"/>
        </Object>
        <Object id="strip 243" visible="1">
          <Object id="processor 263"/>
        </Object>
        <Object id="strip 275" visible="1">
          <Object id="processor 295"/>
        </Object>
        <Object id="strip 307" visible="1">
          <Object id="processor 327"/>
        </Object>
        <Object id="strip 339" visible="1">
          <Object id="processor 359"/>
        </Object>
        <Object id="strip 371" visible="1">
          <Object id="processor 391"/>
        </Object>
        <Object id="strip 403" visible="1">
          <Object id="processor 423"/>
        </Object>
        <Object id="strip 435" visible="1">
          <Object id="processor 455"/>
        </Object>
        <Object id="strip 467" visible="1">
          <Object id="processor 487"/>
        </Object>
        <Object id="strip 499" visible="1">
          <Object id="processor 519"/>
        </Object>
        <Object id="strip 531" visible="1">
          <Object id="processor 551"/>
        </Object>
        <Object id="strip 563" visible="1">
          <Object id="processor 583"/>
        </Object>
        <Object id="strip 595" visible="1">
          <Object id="processor 615"/>
        </Object>
        <Object id="strip 627" visible="1">
          <Object id="processor 647"/>
        </Object>
        <Object id="strip 659" visible="1">
          <Object id="processor 679"/>
        </Object>
        <Object id="strip 691" visible="1">
          <Object id="processor 711"/>
        </Object>
        <Object id="strip 723" visible="1">
          <Object id="processor 743"/>
        </Object>
        <Object id="strip 755" visible="1">
          <Object id="processor 775"/>
        </Object>
        <Object id="strip 787" visible="1">
          <Object id="processor 807"/>
        </Object>
        <Object id="strip 819" visible="1">
          <Object id="processor 839"/>
        </Object>
        <Object id="strip 851" visible="1">
          <Object id="processor 871"/>
        </Object>
        <Object id="strip 883" visible="1">
          <Object id="processor 903"/>
        </Object>
        <Object id="strip 915" visible="1">
          <Object id="processor 935"/>
        </Object>
        <Object id="strip 947" visible="1">
          <Object id="processor 967"/>
        </Object>
        <Object id="strip 979" visible="1">
          <Object id="processor 999"/>
        </Object>
        <Object id="strip 1011" visible="1">
          <Object id="processor 1031"/>
        </Object>
        <Object id="strip 1043" visible="1">
          <Object id="processor 1063"/>
        </Object>
        <Object id="strip 1075" visible="1">
          <Object id="processor 1095"/>
        </Object>
      </GUIObjectState>
    </UI>
  </Extra>
</Session>