summaryrefslogtreecommitdiffstats
path: root/camera-os88122-ts.script
blob: 5131f046558e00223fc57c218c3edd4bb933e334 (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
<script>
  <action>
    <name>RemoteGpioConfig (1/5)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E18</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>04 01 01 00</payload_hex>
  </action>
  <action>
    <name>RemoteGpioConfig (2/5)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E18</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>10 01 01 01</payload_hex>
  </action>
  <action>
    <name>RemoteGpioConfig (3/5)</name>
    <type>PAUSE</type>
    <pause_ms>5</pause_ms>
  </action>
  <action>
    <name>RemoteGpioConfig (4/5)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E19</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>04 04</payload_hex>
  </action>
  <action>
    <name>RemoteGpioConfig (5/5)</name>
    <type>PAUSE</type>
    <pause_ms>25</pause_ms>
  </action>
  <action>
    <name>Set I2C speed to 400kbps (1/2)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1D</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>01 00 01</payload_hex>
  </action>
  <action>
    <name>Set I2C speed to 400kbps (2/2)</name>
    <type>PAUSE</type>
    <pause_ms>5</pause_ms>
  </action>
  <action>
    <name>IocSwitchFifoStatusOff (1/2)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 00 00 37 01 01 02 02</payload_hex>
  </action>
  <action>
    <name>IocSwitchFifoStatusOff (2/2)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E16</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 20</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (1/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 8C 01 01 00 03 00 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (2/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 8B 01 01 00 03 00 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (3/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 97 01 01 00 03 00 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (4/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 00 05 A4 01 01 03 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (5/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 00 05 A2 01 01 00 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (6/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 00 05 A2 01 01 01 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (7/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 01 00 A9 01 00 50 30</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (8/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 D2 01 01 00 00 00 01</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (9/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 D0 01 01 00 31 03 7F</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (10/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 D1 01 01 60 00 F0 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (11/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 30 01 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (12/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 31 01 00 1C</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (13/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 32 01 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (14/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 33 01 00 1C</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (15/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 34 01 00 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (16/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 35 01 00 04</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (17/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 36 01 00 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (18/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 1D 00 1B 01 2C D0 20 00 15 12 00 04 01 00 10 00 02 33 00 00 00 00 00 00 00 BB 00 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (19/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 11 00 05 01 00 5B 04</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (20/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 11 00 60 01 00 0B 04</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (21/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 1D 00 1B 01 2C D0 20 00 15 12 00 03 01 00 06 F4 00 3F 00 00 00 00 00 00 00 0F 00 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (22/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 11 00 06 01 00 1B 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (23/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 11 00 6A 01 00 0B 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (24/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 30 00 20 01 01 00 01 80 F7</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (25/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 30 00 21 01 01 00 00 01 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (26/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 30 00 20 01 01 00 01 7F 08</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (27/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 30 00 21 01 01 00 00 FE FF</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (28/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 24 01 00 02 D0</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (29/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 25 01 00 05 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (30/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 26 01 00 00 19</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (31/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 27 01 00 01 04</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (32/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 28 01 00 02 EE</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (33/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 29 01 00 06 72</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (34/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 30 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (35/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 31 01 00 FF FF</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (36/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 32 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (37/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 33 01 00 FF FF</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (38/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 34 01 00 0E 10</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (39/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 3C 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (40/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 3D 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (41/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 3E 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (42/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 3F 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (43/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 00 01 00 08 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (44/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 01 01 00 00 20</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (45/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 04 01 00 05 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (46/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 05 01 00 02 D0</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (47/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 06 01 00 00 08</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (48/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 07 01 00 00 04</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (49/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 08 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (50/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 0A 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (51/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 0B 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (52/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 0C 01 00 00 29</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (53/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 0D 01 00 00 EC</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (54/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 10 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (55/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 11 01 00 05 78</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (56/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 12 01 00 03 98</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (57/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 13 01 00 00 F0</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (58/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 14 01 00 00 28</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (59/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 15 01 00 00 14</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (60/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 16 01 00 02 5B</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (61/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 17 01 00 20 1A</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (62/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 18 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (63/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 19 01 00 0C CC</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (64/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 1A 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (65/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 1B 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (66/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 1C 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (67/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 1D 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (68/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 1E 01 00 00 04</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (69/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 1F 01 00 00 91</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (70/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <!-- This is the payload for NAL stream: 
		<payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 40 01 00 00 00</payload_hex>
		-->
    <!--  This is the payload for TS stream -->
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 40 01 00 00 38</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (71/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 41 01 00 23 28</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (72/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 42 01 00 02 58</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (73/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 43 01 00 0B B8</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (74/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 44 01 00 0B B8</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (75/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 50 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (76/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 51 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (77/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 52 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (78/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 30 00 53 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (79/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B0 01 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (80/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B1 01 00 9A</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (81/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B2 01 00 B0</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (82/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B3 01 00 09</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (83/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B4 01 00 77</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (84/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B5 01 00 82</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (85/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B6 01 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (86/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B7 01 00 01</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (87/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B8 01 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (88/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 B9 01 00 0C</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (89/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 BA 01 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (90/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 BB 01 00 04</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (91/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 BC 01 00 02</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (92/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 BD 01 00 F8</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (93/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 BE 01 00 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (94/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 90 01 00 40</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (95/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0E 00 0C 01 2C D0 20 00 06 00 00 91 01 00 50</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (96/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 01 00 E8 01 00 00 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (97/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7D 01 01 00 00 00 01</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (98/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7D 01 01 00 00 00 08</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (99/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7D 01 01 00 00 00 04</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (100/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7E 01 01 02 00 06 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (101/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 01 00 78 01 00 4B E5</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (102/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7B 01 01 00 0C 00 0F</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (103/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 01 00 79 01 00 45 9B</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (104/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7B 01 01 00 00 00 70</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (105/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 01 00 85 01 00 80 13</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (106/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7F 01 01 B0 00 F0 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (107/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7E 01 01 FF FF 00 02</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (108/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 85 01 01 FF FF 40 00</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (109/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7F 01 01 0B 01 0F 03</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (110/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7D 01 01 FF FF 00 01</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (111/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 11 00 0F 01 2C D0 20 00 09 01 00 7E 01 01 FF FF 00 08</payload_hex>
  </action>
  <action>
    <name>IocSetupEncoder (112/112)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E17</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>00 25 0F 00 0D 01 2C D0 20 00 07 00 00 91 01 01 04 04</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (1/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 01 03 01 30 1b ff 30 1c ff 30 1a ff 30 0c 61 30 21 03 30 11 02 69 00 0c 69 01 01 30 33 08</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (2/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 35 03 10 30 2d 2f 30 25 03 30 03 20 30 04 01 30 05 20 30 06 01 36 00 74 36 01 2b 36 12 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (3/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 36 11 67 36 33 ba 36 02 2f 36 03 00 36 30 a8 36 31 16 37 14 10 37 1d 01 43 00 3a 30 07 01</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (4/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 30 24 01 30 20 0b 37 02 1a 37 03 3c 37 04 2a 37 09 28 37 0d 00 37 12 00 37 13 20 37 15 04</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (5/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 38 1d 40 38 1c 00 38 24 10 38 15 8c 38 04 05 38 05 1f 38 00 00 38 01 00 38 06 03 38 07 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (6/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 38 02 00 38 03 2c 38 08 05 38 09 00 38 0a 02 38 0b d0 38 0c 06 38 0d f6 38 0e 02 38 0f ee</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (7/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 38 11 08 38 1f 0c 36 21 63 50 05 08 56 d5 00 56 d6 80 56 d7 00 56 d8 00 56 d9 00 56 da 80</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (8/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 56 db 00 56 dc 00 56 e8 00 56 e9 7f 56 ea 00 56 eb 7f 50 06 24 56 08 00 52 d7 06 52 8d 08</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (9/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 52 93 12 52 d3 12 52 88 06 52 89 20 52 c8 06 52 c9 20 52 cd 04 53 81 00 53 82 ff 55 89 76</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (10/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 55 8a 47 55 8b ef 55 8c c9 55 8d 49 55 8e 30 55 8f 67 55 90 3f 55 91 f0 55 92 10 55 a2 6d</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (11/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 55 a3 55 55 a4 c3 55 a5 b5 55 a6 43 55 a7 38 55 a8 5f 55 a9 4b 55 aa f0 55 ab 10 55 81 52</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (12/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 53 00 01 53 01 00 53 02 00 53 03 0e 53 04 00 53 05 0e 53 06 00 53 07 36 53 08 00 53 09 d9</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (13/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 53 0a 00 53 0b 0f 53 0c 00 53 0d 2c 53 0e 00 53 0f 59 53 10 00 53 11 7b 53 12 00 53 13 22</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (14/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 53 14 00 53 15 d5 53 16 00 53 17 13 53 18 00 53 19 18 53 1a 00 53 1b 26 53 1c 00 53 1d dc</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (15/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 53 1e 00 53 1f 02 53 20 00 53 21 24 53 22 00 53 23 56 53 24 00 53 25 85 53 26 00 53 27 20</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (16/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 56 09 01 56 0a 40 56 0b 01 56 0c 40 56 0d 00 56 0e fa 56 0f 00 56 10 fa 56 11 02 56 12 80</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (17/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 56 13 02 56 14 80 56 15 01 56 16 2c 56 17 01 56 18 2c 56 3b 01 56 3c 01 56 3d 01 56 3e 01</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (18/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 56 3f 03 56 40 03 56 41 03 56 42 05 56 43 09 56 44 05 56 45 05 56 46 05 56 47 05 56 51 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (19/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 56 52 80 52 1a 01 52 1b 03 52 1c 06 52 1d 0a 52 1e 0e 52 1f 12 52 20 16 52 23 02 52 25 04</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (20/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 52 27 08 52 29 0c 52 2b 12 52 2d 18 52 2f 1e 52 41 04 52 42 01 52 43 03 52 44 06 52 45 0a</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (21/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 52 46 0e 52 47 12 52 48 16 52 4a 03 52 4c 04 52 4e 08 52 50 0c 52 52 12 52 54 18 52 56 1e</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (22/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 46 05 08 46 06 0d 46 07 ec 46 0a 03 46 0b ec 46 0c 40 46 20 0e 47 00 06 47 01 00 47 02 01</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (23/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 47 08 01 40 04 08 40 05 18 40 01 04 40 50 20 40 51 22 40 57 9c 40 5a 00 43 02 03 43 03 ff</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (24/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 43 04 00 43 05 10 43 06 03 43 07 ff 43 08 00 43 09 10 42 02 02 30 23 10 01 00 01 01 00 01</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (25/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 6f 0e 00 6f 0f 00 46 0e 08 46 0f 01 46 10 00 46 11 01 46 12 00 46 13 01 46 05 08 46 08 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (26/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 46 09 08 68 04 00 68 05 06 68 06 00 51 20 00 35 10 00 35 04 00 68 00 00 6f 0d 00 50 00 ff</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (27/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 50 01 bf 50 02 fe 50 3d 00 c4 50 01 c4 52 04 c4 53 00 c4 54 00 c4 55 00 c4 56 00 c4 57 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (28/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 58 00 c4 59 00 c4 5b 00 c4 5c 00 c4 5d 00 c4 5e 00 c4 5f 00 c4 60 00 c4 61 01 c4 62 01</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (29/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 64 88 c4 65 00 c4 66 8a c4 67 00 c4 68 86 c4 69 00 c4 6a 40 c4 6b 50 c4 6c 30 c4 6d 28</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (30/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 6e 60 c4 6f 40 c4 7c 01 c4 7d 38 c4 7e 00 c4 7f 00 c4 80 00 c4 81 ff c4 82 00 c4 83 40</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (31/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 84 00 c4 85 18 c4 86 00 c4 87 18 c4 88 2e c4 89 d0 c4 8a 2e c4 8b d0 c4 8c 00 c4 8d 04</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (32/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 8e 00 c4 8f 04 c4 90 07 c4 92 20 c4 93 08 c4 98 02 c4 99 00 c4 9a 02 c4 9b 00 c4 9c 02</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (33/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 9d 00 c4 9e 02 c4 9f 60 c4 a0 04 c4 a1 00 c4 a2 06 c4 a3 00 c4 a4 00 c4 a5 10 c4 a6 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (34/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 a7 40 c4 a8 00 c4 a9 80 c4 aa 0d c4 ab 00 c4 ac 0f c4 ad c0 c4 b4 01 c4 b5 01 c4 b6 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (35/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 b7 01 c4 b8 00 c4 b9 01 c4 ba 01 c4 bb 00 c4 be 02 c4 bf 33 c4 c8 03 c4 c9 d0 c4 ca 0e</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (36/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 cb 00 c4 cc 0e c4 cd 7e c4 ce 0e c4 cf 7e c4 d0 04 c4 d1 80 c4 e0 04 c4 e1 02 c4 e2 01</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (37/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 e4 10 c4 e5 20 c4 e6 30 c4 e7 40 c4 e8 50 c4 e9 60 c4 ea 70 c4 eb 80 c4 ec 90 c4 ed a0</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (38/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 ee b0 c4 ef c0 c4 f0 d0 c4 f1 e0 c4 f2 f0 c4 f3 80 c4 f4 00 c4 f5 20 c4 f6 02 c4 f7 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (39/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c4 f8 04 c4 f9 0b c4 fa 00 c4 fb 01 c4 fc 01 c4 fd 01 c4 fe 04 c4 ff 02 c5 00 68 c5 01 74</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (40/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c5 02 70 c5 03 80 c5 04 05 c5 05 80 c5 06 03 c5 07 80 c5 08 01 c5 09 c0 c5 0a 01 c5 0b a0</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (41/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c5 0c 01 c5 0d 2c c5 0e 01 c5 0f 0a c5 10 00 c5 11 00 c5 12 e7 c5 13 e8 c5 14 04 c5 15 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (42/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c5 18 03 c5 19 48 c5 1a 07 c5 1b 70 c2 e0 00 c2 e1 51 c2 e2 00 c2 e3 d6 c2 e4 01 c2 e5 5e</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (43/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c2 e9 01 c2 ea 7a c2 eb 90 c2 ed 01 c2 ee 7a c2 ef 64 c3 08 00 c3 09 00 c3 0a 00 c3 0c 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (44/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c3 0d 01 c3 0e 00 c3 0f 00 c3 10 01 c3 11 60 c3 12 ff c3 13 08 c3 14 01 c3 15 7f c3 16 ff</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (45/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c3 17 0b c3 18 00 c3 19 0c c3 1a 00 c3 1b e0 c3 1c 00 c3 1d 14 c3 1e 00 c3 1f c5 c3 20 ff</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (46/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c3 21 4b c3 22 ff c3 23 f0 c3 24 ff c3 25 e8 c3 26 00 c3 27 46 c3 28 ff c3 29 d2 c3 2a ff</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (47/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c3 2b e4 c3 2c ff c3 2d bb c3 2e 00 c3 2f 61 c3 30 ff c3 31 f9 c3 32 00 c3 33 d9 c3 34 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (48/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c3 35 2e c3 36 00 c3 37 b1 c3 38 ff c3 39 64 c3 3a ff c3 3b eb c3 3c ff c3 3d e8 c3 3e 00</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (49/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c3 3f 48 c3 40 ff c3 41 d0 c3 42 ff c3 43 ed c3 44 ff c3 45 ad c3 46 00 c3 47 66 c3 48 01</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (50/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a c3 49 00 67 00 04 67 01 7b 67 02 fd 67 03 f9 67 04 3d 67 05 71 67 06 71 67 08 05 38 22 50</payload_hex>
  </action>
  <action>
    <name>CamSensorSetup (51/51)</name>
    <type>SEND_MCM</type>
    <fblock_id_hex>0</fblock_id_hex>
    <function_id_hex>E1E</function_id_hex>
    <op_type_request_hex>2</op_type_request_hex>
    <op_type_response_hex>C</op_type_response_hex>
    <payload_hex>30 03 0a 6f 06 6f 6f 07 00 6f 0a 6f 6f 0b 00 6f 00 03 30 42 f0 30 1b f0 30 1c f0 30 1a f0 00 25 20</payload_hex>
  </action>
</script>