-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathmenu_changes.output
More file actions
3587 lines (3587 loc) · 260 KB
/
menu_changes.output
File metadata and controls
3587 lines (3587 loc) · 260 KB
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
11591927-11592621 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
11592790-11593484 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
11593653-11594347 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
11592790-11594347 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
11594516-11597798 amulet_ascii: field: "Value: 0x00fe" "Val: 0x00fe" "0x00fe"
11591927-11597798 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
11679707-11680401 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
11679707-11680401 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
13496878-13497572 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
13497829-13498523 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
13498780-13499474 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
13497829-13499474 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
13499732-13503280 amulet_ascii: field: "Value: 0x5a5a" "Val: 0x5a5a" "0x5a5a"
13496878-13503280 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
13503537-13504231 amulet_ascii: warning: "Unknown command: 0x00"
13504673-13505367 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
13504673-13505367 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
13529580-13530274 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
13530443-13531137 amulet_ascii: bit: "Address high nibble: 9" "Addr high 0x9" "Addr h 0x9"
13531305-13531999 amulet_ascii: bit: "Address low nibble: A" "Addr low 0xA" "Addr l 0xA"
13530443-13531999 amulet_ascii: field: "Address: 0x9A" "Addr: 0x9A" "0x9A"
13532168-13532862 amulet_ascii: bit: "A"
13533031-13533725 amulet_ascii: bit: " "
13533894-13534588 amulet_ascii: bit: "L"
13534756-13535450 amulet_ascii: bit: "a"
13535619-13536313 amulet_ascii: bit: "y"
13536482-13537176 amulet_ascii: bit: "e"
13537345-13538039 amulet_ascii: bit: "r"
13538208-13538902 amulet_ascii: bit: " "
13539070-13539764 amulet_ascii: bit: "m"
13539933-13540627 amulet_ascii: bit: "u"
13540796-13541490 amulet_ascii: bit: "s"
13541659-13542353 amulet_ascii: bit: "t"
13542521-13543215 amulet_ascii: bit: " "
13543384-13544078 amulet_ascii: bit: "b"
13544247-13544941 amulet_ascii: bit: "e"
13545110-13545804 amulet_ascii: bit: " "
13545972-13546666 amulet_ascii: bit: "s"
13546835-13547529 amulet_ascii: bit: "e"
13547698-13548392 amulet_ascii: bit: "l"
13548561-13549255 amulet_ascii: bit: "e"
13549424-13550118 amulet_ascii: bit: "c"
13550286-13550980 amulet_ascii: bit: "t"
13551149-13551843 amulet_ascii: bit: "e"
13552012-13552706 amulet_ascii: bit: "d"
13552875-13553569 amulet_ascii: bit: "."
13553737-13554431 amulet_ascii: bit: "NULL"
13532168-13554431 amulet_ascii: field: "Value: A Layer must be selected." "Val: A Layer must be selected." "A Layer must be selected."
13529580-13554431 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
13561045-13561739 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
13561045-13561739 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
26229595-26230289 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
26230458-26231152 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
26231321-26232015 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
26230458-26232015 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
26232184-26235466 amulet_ascii: field: "Value: 0xffff" "Val: 0xffff" "0xffff"
26229595-26235466 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
26262506-26263200 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
26262506-26263200 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
27407125-27407819 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
27407988-27408682 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
27408851-27409545 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
27407988-27409545 amulet_ascii: field: "Address: 0xA0" "Addr: 0xA0" "0xA0"
27409714-27411270 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
27407125-27411270 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
27412790-27413484 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
27412790-27413484 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
27532232-27532926 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
27533095-27533789 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
27533958-27534652 amulet_ascii: bit: "Address low nibble: 1" "Addr low 0x1" "Addr l 0x1"
27533095-27534652 amulet_ascii: field: "Address: 0xA1" "Addr: 0xA1" "0xA1"
27534821-27536377 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
27532232-27536377 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
30156927-30157621 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
30157790-30158484 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
30158653-30159347 amulet_ascii: bit: "Address low nibble: 1" "Addr low 0x1" "Addr l 0x1"
30157790-30159347 amulet_ascii: field: "Address: 0xA1" "Addr: 0xA1" "0xA1"
30159515-30161072 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
30156927-30161072 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31061716-31062410 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31061716-31062410 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31144930-31145624 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
31157904-31158598 amulet_ascii: warning: "Command aborted by invalid byte" "Abort"
31157904-31158598 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31158766-31159460 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
31159629-31160323 amulet_ascii: bit: "Address low nibble: 2" "Addr low 0x2" "Addr l 0x2"
31158766-31160323 amulet_ascii: field: "Address: 0xA2" "Addr: 0xA2" "0xA2"
31160492-31162049 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
31157904-31162049 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31230703-31231397 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31230703-31231397 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31313756-31314450 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
31314708-31315402 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
31315659-31316353 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
31314708-31316353 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
31345630-31346324 amulet_ascii: warning: "Command aborted by invalid byte" "Abort"
31345630-31346324 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31346492-31347186 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
31347355-31348049 amulet_ascii: bit: "Address low nibble: 3" "Addr low 0x3" "Addr l 0x3"
31346492-31348049 amulet_ascii: field: "Address: 0xA3" "Addr: 0xA3" "0xA3"
31348218-31349775 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
31345630-31349775 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31403043-31403737 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31403043-31403737 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31403994-31404688 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
31404946-31405640 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
31405897-31406591 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
31404946-31406591 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
31406849-31410397 amulet_ascii: field: "Value: 0x5a5a" "Val: 0x5a5a" "0x5a5a"
31403994-31410397 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
31410654-31411348 amulet_ascii: warning: "Unknown command: 0x00"
31470194-31470888 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31470194-31470888 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31471806-31472500 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31472668-31473362 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
31473531-31474225 amulet_ascii: bit: "Address low nibble: 4" "Addr low 0x4" "Addr l 0x4"
31472668-31474225 amulet_ascii: field: "Address: 0xA4" "Addr: 0xA4" "0xA4"
31474394-31475951 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
31471806-31475951 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31503320-31504014 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31503320-31504014 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31595507-31596201 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31596370-31597064 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
31597233-31597927 amulet_ascii: bit: "Address low nibble: 5" "Addr low 0x5" "Addr l 0x5"
31596370-31597927 amulet_ascii: field: "Address: 0xA5" "Addr: 0xA5" "0xA5"
31598096-31599653 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
31595507-31599653 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31603128-31603822 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31603128-31603822 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31720984-31721678 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31721846-31722540 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
31722709-31723403 amulet_ascii: bit: "Address low nibble: 6" "Addr low 0x6" "Addr l 0x6"
31721846-31723403 amulet_ascii: field: "Address: 0xA6" "Addr: 0xA6" "0xA6"
31723572-31725129 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
31720984-31725129 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31803073-31803767 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31803073-31803767 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31908020-31908714 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31908883-31909577 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
31909746-31910440 amulet_ascii: bit: "Address low nibble: 7" "Addr low 0x7" "Addr l 0x7"
31908883-31910440 amulet_ascii: field: "Address: 0xA7" "Addr: 0xA7" "0xA7"
31910609-31912165 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
31908020-31912165 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
31913676-31914370 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
31913676-31914370 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32033008-32033702 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
32033871-32034565 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
32034734-32035428 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
32033871-32035428 amulet_ascii: field: "Address: 0xB0" "Addr: 0xB0" "0xB0"
32035596-32037153 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
32033008-32037153 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
32103028-32103722 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32103028-32103722 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32221054-32221748 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32221917-32222611 amulet_ascii: bit: "Address high nibble: C" "Addr high 0xC" "Addr h 0xC"
32222780-32223474 amulet_ascii: bit: "Address low nibble: 5" "Addr low 0x5" "Addr l 0x5"
32221917-32223474 amulet_ascii: field: "Address: 0xC5" "Addr: 0xC5" "0xC5"
32223642-32224336 amulet_ascii: bit: "E"
32224505-32225199 amulet_ascii: bit: "N"
32225368-32226062 amulet_ascii: bit: "C"
32226231-32226925 amulet_ascii: bit: "O"
32227093-32227787 amulet_ascii: bit: "R"
32227956-32228650 amulet_ascii: bit: "E"
32228819-32229513 amulet_ascii: bit: " "
32229682-32230376 amulet_ascii: bit: "S"
32230545-32231239 amulet_ascii: bit: "Y"
32231407-32232101 amulet_ascii: bit: "S"
32232270-32232964 amulet_ascii: bit: "T"
32233133-32233827 amulet_ascii: bit: "E"
32233996-32234690 amulet_ascii: bit: "M"
32234858-32235552 amulet_ascii: bit: " "
32235721-32236415 amulet_ascii: bit: "S"
32236584-32237278 amulet_ascii: bit: "T"
32237447-32238141 amulet_ascii: bit: "A"
32238310-32239004 amulet_ascii: bit: "T"
32239172-32239866 amulet_ascii: bit: "U"
32240035-32240729 amulet_ascii: bit: "S"
32240898-32241592 amulet_ascii: bit: " "
32241761-32242455 amulet_ascii: bit: " "
32242623-32243317 amulet_ascii: bit: " "
32243486-32244180 amulet_ascii: bit: " "
32244349-32245043 amulet_ascii: bit: " "
32245212-32245906 amulet_ascii: bit: " "
32246074-32246768 amulet_ascii: bit: "V"
32246937-32247631 amulet_ascii: bit: "e"
32247800-32248494 amulet_ascii: bit: "r"
32248663-32249357 amulet_ascii: bit: " "
32249526-32250220 amulet_ascii: bit: "2"
32250388-32251082 amulet_ascii: bit: "."
32251251-32251945 amulet_ascii: bit: "3"
32252114-32252808 amulet_ascii: bit: "3"
32252977-32253671 amulet_ascii: bit: "."
32253839-32254533 amulet_ascii: bit: "0"
32254702-32255396 amulet_ascii: bit: "1"
32255565-32256259 amulet_ascii: bit: "NULL"
32223642-32256259 amulet_ascii: field: "Value: ENCORE SYSTEM STATUS Ver 2.33.01" "Val: ENCORE SYSTEM STATUS Ver 2.33.01" "ENCORE SYSTEM STATUS Ver 2.33.01"
32221054-32256259 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32320512-32321206 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32320512-32321206 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32408107-32408801 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32408970-32409664 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
32409833-32410527 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
32408970-32410527 amulet_ascii: field: "Address: 0xB0" "Addr: 0xB0" "0xB0"
32410695-32411389 amulet_ascii: bit: "E"
32411558-32412252 amulet_ascii: bit: "N"
32412421-32413115 amulet_ascii: bit: "C"
32413284-32413978 amulet_ascii: bit: "O"
32414146-32414840 amulet_ascii: bit: "R"
32415009-32415703 amulet_ascii: bit: "E"
32415872-32416566 amulet_ascii: bit: " "
32416735-32417429 amulet_ascii: bit: "V"
32417598-32418292 amulet_ascii: bit: "P"
32418460-32419154 amulet_ascii: bit: "/"
32419323-32420017 amulet_ascii: bit: "3"
32420186-32420880 amulet_ascii: bit: "G"
32421049-32421743 amulet_ascii: bit: ":"
32421911-32422605 amulet_ascii: bit: " "
32422774-32423468 amulet_ascii: bit: "0"
32423637-32424331 amulet_ascii: bit: " "
32424500-32425194 amulet_ascii: bit: "NULL"
32410695-32425194 amulet_ascii: field: "Value: ENCORE VP/3G: 0 " "Val: ENCORE VP/3G: 0 " "ENCORE VP/3G: 0 "
32408107-32425194 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32507000-32507694 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32507000-32507694 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32595779-32596473 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32596641-32597335 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
32597504-32598198 amulet_ascii: bit: "Address low nibble: 2" "Addr low 0x2" "Addr l 0x2"
32596641-32598198 amulet_ascii: field: "Address: 0xB2" "Addr: 0xB2" "0xB2"
32598367-32599061 amulet_ascii: bit: "E"
32599230-32599924 amulet_ascii: bit: "N"
32600093-32600787 amulet_ascii: bit: "C"
32600955-32601649 amulet_ascii: bit: "O"
32601818-32602512 amulet_ascii: bit: "R"
32602681-32603375 amulet_ascii: bit: "E"
32603544-32604238 amulet_ascii: bit: " "
32604406-32605100 amulet_ascii: bit: "V"
32605269-32605963 amulet_ascii: bit: "P"
32606132-32606826 amulet_ascii: bit: "X"
32606995-32607689 amulet_ascii: bit: "/"
32607857-32608551 amulet_ascii: bit: "3"
32608720-32609414 amulet_ascii: bit: "G"
32609583-32610277 amulet_ascii: bit: ":"
32610446-32611140 amulet_ascii: bit: " "
32611309-32612003 amulet_ascii: bit: "0"
32612171-32612865 amulet_ascii: bit: " "
32613034-32613728 amulet_ascii: bit: "NULL"
32598367-32613728 amulet_ascii: field: "Value: ENCORE VPX/3G: 0 " "Val: ENCORE VPX/3G: 0 " "ENCORE VPX/3G: 0 "
32595779-32613728 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32617936-32618630 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32617936-32618630 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32720690-32721384 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32721553-32722247 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
32722416-32723110 amulet_ascii: bit: "Address low nibble: 4" "Addr low 0x4" "Addr l 0x4"
32721553-32723110 amulet_ascii: field: "Address: 0xB4" "Addr: 0xB4" "0xB4"
32723279-32723973 amulet_ascii: bit: "S"
32724142-32724836 amulet_ascii: bit: "C"
32725004-32725698 amulet_ascii: bit: "R"
32725867-32726561 amulet_ascii: bit: "E"
32726730-32727424 amulet_ascii: bit: "E"
32727593-32728287 amulet_ascii: bit: "N"
32728455-32729149 amulet_ascii: bit: "P"
32729318-32730012 amulet_ascii: bit: "R"
32730181-32730875 amulet_ascii: bit: "O"
32731044-32731738 amulet_ascii: bit: " "
32731907-32732601 amulet_ascii: bit: "I"
32732769-32733463 amulet_ascii: bit: "I"
32733632-32734326 amulet_ascii: bit: "/"
32734495-32735189 amulet_ascii: bit: "3"
32735358-32736052 amulet_ascii: bit: "G"
32736220-32736914 amulet_ascii: bit: ":"
32737083-32737777 amulet_ascii: bit: " "
32737946-32738640 amulet_ascii: bit: "0"
32738809-32739503 amulet_ascii: bit: " "
32739671-32740365 amulet_ascii: bit: "NULL"
32723279-32740365 amulet_ascii: field: "Value: SCREENPRO II/3G: 0 " "Val: SCREENPRO II/3G: 0 " "SCREENPRO II/3G: 0 "
32720690-32740365 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32812191-32812885 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32812191-32812885 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
32908134-32908828 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
32908997-32909691 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
32909860-32910554 amulet_ascii: bit: "Address low nibble: 6" "Addr low 0x6" "Addr l 0x6"
32908997-32910554 amulet_ascii: field: "Address: 0xB6" "Addr: 0xB6" "0xB6"
32910722-32911416 amulet_ascii: bit: "P"
32911585-32912279 amulet_ascii: bit: "R"
32912448-32913142 amulet_ascii: bit: "E"
32913311-32914005 amulet_ascii: bit: "P"
32914174-32914868 amulet_ascii: bit: "R"
32915036-32915730 amulet_ascii: bit: "O"
32915899-32916593 amulet_ascii: bit: " "
32916762-32917456 amulet_ascii: bit: "I"
32917625-32918319 amulet_ascii: bit: "I"
32918487-32919181 amulet_ascii: bit: ":"
32919350-32920044 amulet_ascii: bit: " "
32920213-32920907 amulet_ascii: bit: "0"
32921076-32921770 amulet_ascii: bit: " "
32921939-32922633 amulet_ascii: bit: "NULL"
32910722-32922633 amulet_ascii: field: "Value: PREPRO II: 0 " "Val: PREPRO II: 0 " "PREPRO II: 0 "
32908134-32922633 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33005735-33006429 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33005735-33006429 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33106088-33106782 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33106951-33107645 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
33107814-33108508 amulet_ascii: bit: "Address low nibble: 8" "Addr low 0x8" "Addr l 0x8"
33106951-33108508 amulet_ascii: field: "Address: 0xB8" "Addr: 0xB8" "0xB8"
33108677-33109371 amulet_ascii: bit: "I"
33109540-33110234 amulet_ascii: bit: "M"
33110402-33111096 amulet_ascii: bit: "A"
33111265-33111959 amulet_ascii: bit: "G"
33112128-33112822 amulet_ascii: bit: "E"
33112991-33113685 amulet_ascii: bit: "P"
33113853-33114547 amulet_ascii: bit: "R"
33114716-33115410 amulet_ascii: bit: "O"
33115579-33116273 amulet_ascii: bit: " "
33116442-33117136 amulet_ascii: bit: "H"
33117305-33117999 amulet_ascii: bit: "D"
33118167-33118861 amulet_ascii: bit: "/"
33119030-33119724 amulet_ascii: bit: "3"
33119893-33120587 amulet_ascii: bit: "G"
33120756-33121450 amulet_ascii: bit: ":"
33121618-33122312 amulet_ascii: bit: " "
33122481-33123175 amulet_ascii: bit: "0"
33123344-33124038 amulet_ascii: bit: "NULL"
33108677-33124038 amulet_ascii: field: "Value: IMAGEPRO HD/3G: 0" "Val: IMAGEPRO HD/3G: 0" "IMAGEPRO HD/3G: 0"
33106088-33124038 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33206893-33207587 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33206893-33207587 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33283244-33283938 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33284107-33284801 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
33284970-33285664 amulet_ascii: bit: "Address low nibble: A" "Addr low 0xA" "Addr l 0xA"
33284107-33285664 amulet_ascii: field: "Address: 0xBA" "Addr: 0xBA" "0xBA"
33285832-33286526 amulet_ascii: bit: "I"
33286695-33287389 amulet_ascii: bit: "M"
33287558-33288252 amulet_ascii: bit: "A"
33288421-33289115 amulet_ascii: bit: "G"
33289283-33289977 amulet_ascii: bit: "E"
33290146-33290840 amulet_ascii: bit: "P"
33291009-33291703 amulet_ascii: bit: "R"
33291872-33292566 amulet_ascii: bit: "O"
33292735-33293429 amulet_ascii: bit: "-"
33293597-33294291 amulet_ascii: bit: "I"
33294460-33295154 amulet_ascii: bit: "I"
33295323-33296017 amulet_ascii: bit: "/"
33296186-33296880 amulet_ascii: bit: "D"
33297048-33297742 amulet_ascii: bit: "U"
33297911-33298605 amulet_ascii: bit: "A"
33298774-33299468 amulet_ascii: bit: "L"
33299637-33300331 amulet_ascii: bit: ":"
33300499-33301193 amulet_ascii: bit: " "
33301362-33302056 amulet_ascii: bit: "0"
33302225-33302919 amulet_ascii: bit: "NULL"
33285832-33302919 amulet_ascii: field: "Value: IMAGEPRO-II/DUAL: 0" "Val: IMAGEPRO-II/DUAL: 0" "IMAGEPRO-II/DUAL: 0"
33283244-33302919 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33312101-33312795 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33312101-33312795 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33418270-33418964 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33419133-33419827 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
33419996-33420690 amulet_ascii: bit: "Address low nibble: C" "Addr low 0xC" "Addr l 0xC"
33419133-33420690 amulet_ascii: field: "Address: 0xBC" "Addr: 0xBC" "0xBC"
33420859-33421553 amulet_ascii: bit: "P"
33421721-33422415 amulet_ascii: bit: "D"
33422584-33423278 amulet_ascii: bit: "S"
33423447-33424141 amulet_ascii: bit: ":"
33424310-33425004 amulet_ascii: bit: " "
33425173-33425867 amulet_ascii: bit: "0"
33426035-33426729 amulet_ascii: bit: "NULL"
33420859-33426729 amulet_ascii: field: "Value: PDS: 0" "Val: PDS: 0" "PDS: 0"
33418270-33426729 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33506116-33506810 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33506116-33506810 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33595784-33596478 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33596647-33597341 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
33597510-33598204 amulet_ascii: bit: "Address low nibble: E" "Addr low 0xE" "Addr l 0xE"
33596647-33598204 amulet_ascii: field: "Address: 0xBE" "Addr: 0xBE" "0xBE"
33598372-33599066 amulet_ascii: bit: "R"
33599235-33599929 amulet_ascii: bit: "O"
33600098-33600792 amulet_ascii: bit: "U"
33600961-33601655 amulet_ascii: bit: "T"
33601823-33602517 amulet_ascii: bit: "E"
33602686-33603380 amulet_ascii: bit: "R"
33603549-33604243 amulet_ascii: bit: "S"
33604412-33605106 amulet_ascii: bit: ":"
33605275-33605969 amulet_ascii: bit: " "
33606137-33606831 amulet_ascii: bit: "0"
33607000-33607694 amulet_ascii: bit: "NULL"
33598372-33607694 amulet_ascii: field: "Value: ROUTERS: 0" "Val: ROUTERS: 0" "ROUTERS: 0"
33595784-33607694 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33611120-33611814 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33611120-33611814 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33730984-33731678 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33731847-33732541 amulet_ascii: bit: "Address high nibble: C" "Addr high 0xC" "Addr h 0xC"
33732710-33733404 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
33731847-33733404 amulet_ascii: field: "Address: 0xC0" "Addr: 0xC0" "0xC0"
33733572-33734266 amulet_ascii: bit: "F"
33734435-33735129 amulet_ascii: bit: "S"
33735298-33735992 amulet_ascii: bit: "N"
33736161-33736855 amulet_ascii: bit: ":"
33737023-33737717 amulet_ascii: bit: " "
33737886-33738580 amulet_ascii: bit: "0"
33738749-33739443 amulet_ascii: bit: "NULL"
33733572-33739443 amulet_ascii: field: "Value: FSN: 0" "Val: FSN: 0" "FSN: 0"
33730984-33739443 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
33806313-33807007 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33806313-33807007 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33908454-33909148 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
33909317-33910011 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
33910180-33910874 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
33909317-33910874 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
33911043-33914325 amulet_ascii: field: "Value: 0x00fe" "Val: 0x00fe" "0x00fe"
33908454-33914325 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
33915909-33916603 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
33915909-33916603 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
35679055-35679749 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
35680006-35680700 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
35680958-35681652 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
35680006-35681652 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
35681909-35685457 amulet_ascii: field: "Value: 0x5a5a" "Val: 0x5a5a" "0x5a5a"
35679055-35685457 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
35685715-35686409 amulet_ascii: warning: "Unknown command: 0x00"
35686852-35687546 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
35686852-35687546 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
35721521-35722215 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
35722383-35723077 amulet_ascii: bit: "Address high nibble: 9" "Addr high 0x9" "Addr h 0x9"
35723246-35723940 amulet_ascii: bit: "Address low nibble: A" "Addr low 0xA" "Addr l 0xA"
35722383-35723940 amulet_ascii: field: "Address: 0x9A" "Addr: 0x9A" "0x9A"
35724109-35724803 amulet_ascii: bit: "T"
35724972-35725666 amulet_ascii: bit: "h"
35725834-35726528 amulet_ascii: bit: "e"
35726697-35727391 amulet_ascii: bit: "r"
35727560-35728254 amulet_ascii: bit: "e"
35728423-35729117 amulet_ascii: bit: " "
35729285-35729979 amulet_ascii: bit: "a"
35730148-35730842 amulet_ascii: bit: "r"
35731011-35731705 amulet_ascii: bit: "e"
35731874-35732568 amulet_ascii: bit: " "
35732737-35733431 amulet_ascii: bit: "n"
35733599-35734293 amulet_ascii: bit: "o"
35734462-35735156 amulet_ascii: bit: " "
35735325-35736019 amulet_ascii: bit: "a"
35736188-35736882 amulet_ascii: bit: "c"
35737050-35737744 amulet_ascii: bit: "t"
35737913-35738607 amulet_ascii: bit: "i"
35738776-35739470 amulet_ascii: bit: "v"
35739639-35740333 amulet_ascii: bit: "e"
35740501-35741195 amulet_ascii: bit: " "
35741364-35742058 amulet_ascii: bit: "d"
35742227-35742921 amulet_ascii: bit: "e"
35743090-35743784 amulet_ascii: bit: "s"
35743953-35744647 amulet_ascii: bit: "t"
35744815-35745509 amulet_ascii: bit: "i"
35745678-35746372 amulet_ascii: bit: "n"
35746541-35747235 amulet_ascii: bit: "a"
35747404-35748098 amulet_ascii: bit: "t"
35748266-35748960 amulet_ascii: bit: "i"
35749129-35749823 amulet_ascii: bit: "o"
35749992-35750686 amulet_ascii: bit: "n"
35750855-35751549 amulet_ascii: bit: "s"
35751718-35752412 amulet_ascii: bit: "!"
35752580-35753274 amulet_ascii: bit: "NULL"
35724109-35753274 amulet_ascii: field: "Value: There are no active destinations!" "Val: There are no active destinations!" "There are no active destinations!"
35721521-35753274 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
35782072-35782766 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
35782072-35782766 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
54672515-54673209 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
54673378-54674072 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
54674241-54674935 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
54673378-54674935 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
54675104-54678386 amulet_ascii: field: "Value: 0xffff" "Val: 0xffff" "0xffff"
54672515-54678386 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
54688058-54688752 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
54688058-54688752 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
55850197-55850891 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
55851060-55851754 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
55851923-55852617 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
55851060-55852617 amulet_ascii: field: "Address: 0xA0" "Addr: 0xA0" "0xA0"
55852785-55854342 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
55850197-55854342 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
58474941-58475635 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
58475803-58476497 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
58476666-58477360 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
58475803-58477360 amulet_ascii: field: "Address: 0xA0" "Addr: 0xA0" "0xA0"
58477529-58479086 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
58474941-58479086 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
59486125-59486819 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59486125-59486819 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59569298-59569992 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
59600976-59601670 amulet_ascii: warning: "Command aborted by invalid byte" "Abort"
59600976-59601670 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
59601838-59602532 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
59602701-59603395 amulet_ascii: bit: "Address low nibble: 1" "Addr low 0x1" "Addr l 0x1"
59601838-59603395 amulet_ascii: field: "Address: 0xA1" "Addr: 0xA1" "0xA1"
59603564-59605121 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
59600976-59605121 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
59655060-59655754 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59655060-59655754 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59725866-59726560 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
59726728-59727422 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
59727591-59728285 amulet_ascii: bit: "Address low nibble: 2" "Addr low 0x2" "Addr l 0x2"
59726728-59728285 amulet_ascii: field: "Address: 0xA2" "Addr: 0xA2" "0xA2"
59728454-59730011 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
59725866-59730011 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
59740736-59741430 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59740736-59741430 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59741687-59742381 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
59742638-59743332 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
59825276-59825970 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
59742638-59825970 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
59826227-59829775 amulet_ascii: field: "Value: 0x5a5a" "Val: 0x5a5a" "0x5a5a"
59741687-59829775 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
59830033-59830727 amulet_ascii: warning: "Unknown command: 0x00"
59850544-59851238 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59850544-59851238 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59851700-59852394 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
59852563-59853257 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
59853426-59854120 amulet_ascii: bit: "Address low nibble: 3" "Addr low 0x3" "Addr l 0x3"
59852563-59854120 amulet_ascii: field: "Address: 0xA3" "Addr: 0xA3" "0xA3"
59854288-59855845 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
59851700-59855845 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
59927927-59928621 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
59927927-59928621 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60038319-60039013 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60039182-60039876 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
60040044-60040738 amulet_ascii: bit: "Address low nibble: 4" "Addr low 0x4" "Addr l 0x4"
60039182-60040738 amulet_ascii: field: "Address: 0xA4" "Addr: 0xA4" "0xA4"
60040907-60042464 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
60038319-60042464 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60126203-60126897 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60126203-60126897 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60225855-60226549 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60226718-60227412 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
60227580-60228274 amulet_ascii: bit: "Address low nibble: 5" "Addr low 0x5" "Addr l 0x5"
60226718-60228274 amulet_ascii: field: "Address: 0xA5" "Addr: 0xA5" "0xA5"
60228443-60230000 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
60225855-60230000 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60231464-60232158 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60231464-60232158 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60351054-60351748 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60351917-60352611 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
60352780-60353474 amulet_ascii: bit: "Address low nibble: 6" "Addr low 0x6" "Addr l 0x6"
60351917-60353474 amulet_ascii: field: "Address: 0xA6" "Addr: 0xA6" "0xA6"
60353643-60355199 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
60351054-60355199 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60427713-60428407 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60427713-60428407 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60538704-60539398 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60539567-60540261 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
60540430-60541124 amulet_ascii: bit: "Address low nibble: 7" "Addr low 0x7" "Addr l 0x7"
60539567-60541124 amulet_ascii: field: "Address: 0xA7" "Addr: 0xA7" "0xA7"
60541292-60542849 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
60538704-60542849 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60626530-60627224 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60626530-60627224 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60726066-60726760 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60726929-60727623 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
60727792-60728486 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
60726929-60728486 amulet_ascii: field: "Address: 0xB0" "Addr: 0xB0" "0xB0"
60728655-60730212 amulet_ascii: field: "Value: 0x00" "Val: 0x00" "0x00"
60726066-60730212 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
60731805-60732499 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60731805-60732499 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60851385-60852079 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
60852248-60852942 amulet_ascii: bit: "Address high nibble: C" "Addr high 0xC" "Addr h 0xC"
60853111-60853805 amulet_ascii: bit: "Address low nibble: 5" "Addr low 0x5" "Addr l 0x5"
60852248-60853805 amulet_ascii: field: "Address: 0xC5" "Addr: 0xC5" "0xC5"
60853974-60854668 amulet_ascii: bit: "E"
60854836-60855530 amulet_ascii: bit: "N"
60855699-60856393 amulet_ascii: bit: "C"
60856562-60857256 amulet_ascii: bit: "O"
60857425-60858119 amulet_ascii: bit: "R"
60858287-60858981 amulet_ascii: bit: "E"
60859150-60859844 amulet_ascii: bit: " "
60860013-60860707 amulet_ascii: bit: "S"
60860876-60861570 amulet_ascii: bit: "Y"
60861738-60862432 amulet_ascii: bit: "S"
60862601-60863295 amulet_ascii: bit: "T"
60863464-60864158 amulet_ascii: bit: "E"
60864327-60865021 amulet_ascii: bit: "M"
60865190-60865884 amulet_ascii: bit: " "
60866052-60866746 amulet_ascii: bit: "S"
60866915-60867609 amulet_ascii: bit: "T"
60867778-60868472 amulet_ascii: bit: "A"
60868641-60869335 amulet_ascii: bit: "T"
60869503-60870197 amulet_ascii: bit: "U"
60870366-60871060 amulet_ascii: bit: "S"
60871229-60871923 amulet_ascii: bit: " "
60872092-60872786 amulet_ascii: bit: " "
60872954-60873648 amulet_ascii: bit: " "
60873817-60874511 amulet_ascii: bit: " "
60874680-60875374 amulet_ascii: bit: " "
60875543-60876237 amulet_ascii: bit: " "
60876406-60877100 amulet_ascii: bit: "V"
60877268-60877962 amulet_ascii: bit: "e"
60878131-60878825 amulet_ascii: bit: "r"
60878994-60879688 amulet_ascii: bit: " "
60879857-60880551 amulet_ascii: bit: "2"
60880719-60881413 amulet_ascii: bit: "."
60881582-60882276 amulet_ascii: bit: "3"
60882445-60883139 amulet_ascii: bit: "3"
60883308-60884002 amulet_ascii: bit: "."
60884171-60884865 amulet_ascii: bit: "0"
60885033-60885727 amulet_ascii: bit: "1"
60885896-60886590 amulet_ascii: bit: "NULL"
60853974-60886590 amulet_ascii: field: "Value: ENCORE SYSTEM STATUS Ver 2.33.01" "Val: ENCORE SYSTEM STATUS Ver 2.33.01" "ENCORE SYSTEM STATUS Ver 2.33.01"
60851385-60886590 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
60945090-60945784 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
60945090-60945784 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61038536-61039230 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61039399-61040093 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
61040261-61040955 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
61039399-61040955 amulet_ascii: field: "Address: 0xB0" "Addr: 0xB0" "0xB0"
61041124-61041818 amulet_ascii: bit: "E"
61041987-61042681 amulet_ascii: bit: "N"
61042850-61043544 amulet_ascii: bit: "C"
61043713-61044407 amulet_ascii: bit: "O"
61044575-61045269 amulet_ascii: bit: "R"
61045438-61046132 amulet_ascii: bit: "E"
61046301-61046995 amulet_ascii: bit: " "
61047164-61047858 amulet_ascii: bit: "V"
61048026-61048720 amulet_ascii: bit: "P"
61048889-61049583 amulet_ascii: bit: "/"
61049752-61050446 amulet_ascii: bit: "3"
61050615-61051309 amulet_ascii: bit: "G"
61051477-61052171 amulet_ascii: bit: ":"
61052340-61053034 amulet_ascii: bit: " "
61053203-61053897 amulet_ascii: bit: "0"
61054066-61054760 amulet_ascii: bit: " "
61054929-61055623 amulet_ascii: bit: "NULL"
61041124-61055623 amulet_ascii: field: "Value: ENCORE VP/3G: 0 " "Val: ENCORE VP/3G: 0 " "ENCORE VP/3G: 0 "
61038536-61055623 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61134026-61134720 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61134026-61134720 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61236197-61236891 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61237060-61237754 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
61237923-61238617 amulet_ascii: bit: "Address low nibble: 2" "Addr low 0x2" "Addr l 0x2"
61237060-61238617 amulet_ascii: field: "Address: 0xB2" "Addr: 0xB2" "0xB2"
61238785-61239479 amulet_ascii: bit: "E"
61239648-61240342 amulet_ascii: bit: "N"
61240511-61241205 amulet_ascii: bit: "C"
61241374-61242068 amulet_ascii: bit: "O"
61242237-61242931 amulet_ascii: bit: "R"
61243099-61243793 amulet_ascii: bit: "E"
61243962-61244656 amulet_ascii: bit: " "
61244825-61245519 amulet_ascii: bit: "V"
61245688-61246382 amulet_ascii: bit: "P"
61246550-61247244 amulet_ascii: bit: "X"
61247413-61248107 amulet_ascii: bit: "/"
61248276-61248970 amulet_ascii: bit: "3"
61249139-61249833 amulet_ascii: bit: "G"
61250002-61250696 amulet_ascii: bit: ":"
61250864-61251558 amulet_ascii: bit: " "
61251727-61252421 amulet_ascii: bit: "0"
61252590-61253284 amulet_ascii: bit: " "
61253453-61254147 amulet_ascii: bit: "NULL"
61238785-61254147 amulet_ascii: field: "Value: ENCORE VPX/3G: 0 " "Val: ENCORE VPX/3G: 0 " "ENCORE VPX/3G: 0 "
61236197-61254147 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61333512-61334206 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61333512-61334206 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61413657-61414351 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61414519-61415213 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
61415382-61416076 amulet_ascii: bit: "Address low nibble: 4" "Addr low 0x4" "Addr l 0x4"
61414519-61416076 amulet_ascii: field: "Address: 0xB4" "Addr: 0xB4" "0xB4"
61416245-61416939 amulet_ascii: bit: "S"
61417108-61417802 amulet_ascii: bit: "C"
61417970-61418664 amulet_ascii: bit: "R"
61418833-61419527 amulet_ascii: bit: "E"
61419696-61420390 amulet_ascii: bit: "E"
61420559-61421253 amulet_ascii: bit: "N"
61421422-61422116 amulet_ascii: bit: "P"
61422284-61422978 amulet_ascii: bit: "R"
61423147-61423841 amulet_ascii: bit: "O"
61424010-61424704 amulet_ascii: bit: " "
61424873-61425567 amulet_ascii: bit: "I"
61425735-61426429 amulet_ascii: bit: "I"
61426598-61427292 amulet_ascii: bit: "/"
61427461-61428155 amulet_ascii: bit: "3"
61428324-61429018 amulet_ascii: bit: "G"
61429186-61429880 amulet_ascii: bit: ":"
61430049-61430743 amulet_ascii: bit: " "
61430912-61431606 amulet_ascii: bit: "0"
61431775-61432469 amulet_ascii: bit: " "
61432638-61433332 amulet_ascii: bit: "NULL"
61416245-61433332 amulet_ascii: field: "Value: SCREENPRO II/3G: 0 " "Val: SCREENPRO II/3G: 0 " "SCREENPRO II/3G: 0 "
61413657-61433332 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61437746-61438440 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61437746-61438440 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61548629-61549323 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61549491-61550185 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
61550354-61551048 amulet_ascii: bit: "Address low nibble: 6" "Addr low 0x6" "Addr l 0x6"
61549491-61551048 amulet_ascii: field: "Address: 0xB6" "Addr: 0xB6" "0xB6"
61551217-61551911 amulet_ascii: bit: "P"
61552080-61552774 amulet_ascii: bit: "R"
61552943-61553637 amulet_ascii: bit: "E"
61553805-61554499 amulet_ascii: bit: "P"
61554668-61555362 amulet_ascii: bit: "R"
61555531-61556225 amulet_ascii: bit: "O"
61556394-61557088 amulet_ascii: bit: " "
61557256-61557950 amulet_ascii: bit: "I"
61558119-61558813 amulet_ascii: bit: "I"
61558982-61559676 amulet_ascii: bit: ":"
61559845-61560539 amulet_ascii: bit: " "
61560707-61561401 amulet_ascii: bit: "0"
61561570-61562264 amulet_ascii: bit: " "
61562433-61563127 amulet_ascii: bit: "NULL"
61551217-61563127 amulet_ascii: field: "Value: PREPRO II: 0 " "Val: PREPRO II: 0 " "PREPRO II: 0 "
61548629-61563127 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61634048-61634742 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61634048-61634742 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61726197-61726891 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61727059-61727753 amulet_ascii: bit: "Address high nibble: B" "Addr high 0xB" "Addr h 0xB"
61727922-61728616 amulet_ascii: bit: "Address low nibble: 8" "Addr low 0x8" "Addr l 0x8"
61727059-61728616 amulet_ascii: field: "Address: 0xB8" "Addr: 0xB8" "0xB8"
61728785-61729479 amulet_ascii: bit: "I"
61729648-61730342 amulet_ascii: bit: "M"
61730510-61731204 amulet_ascii: bit: "A"
61731373-61732067 amulet_ascii: bit: "G"
61732236-61732930 amulet_ascii: bit: "E"
61733099-61733793 amulet_ascii: bit: "P"
61733962-61734656 amulet_ascii: bit: "R"
61734824-61735518 amulet_ascii: bit: "O"
61735687-61736381 amulet_ascii: bit: " "
61736550-61737244 amulet_ascii: bit: "H"
61737413-61738107 amulet_ascii: bit: "D"
61738275-61738969 amulet_ascii: bit: "/"
61739138-61739832 amulet_ascii: bit: "3"
61740001-61740695 amulet_ascii: bit: "G"
61740864-61741558 amulet_ascii: bit: ":"
61741727-61742421 amulet_ascii: bit: " "
61742589-61743283 amulet_ascii: bit: "0"
61743452-61744146 amulet_ascii: bit: "NULL"
61728785-61744146 amulet_ascii: field: "Value: IMAGEPRO HD/3G: 0" "Val: IMAGEPRO HD/3G: 0" "IMAGEPRO HD/3G: 0"
61726197-61744146 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61829658-61830352 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61829658-61830352 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
61976118-61976812 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
61976981-61977675 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
61977843-61978537 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
61976981-61978537 amulet_ascii: field: "Address: 0xA0" "Addr: 0xA0" "0xA0"
61978706-61979400 amulet_ascii: bit: "H"
61979569-61980263 amulet_ascii: bit: "
"
61980432-61981126 amulet_ascii: bit: "O"
61981295-61981989 amulet_ascii: bit: "
"
61982157-61982851 amulet_ascii: bit: "M"
61983020-61983714 amulet_ascii: bit: "
"
61983883-61984577 amulet_ascii: bit: "E"
61984746-61985440 amulet_ascii: bit: "NULL"
61978706-61985440 amulet_ascii: field: "Value: H
O
M
E" "Val: H
O
M
E" "H
O
M
E"
61976118-61985440 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62031324-62032018 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62031324-62032018 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62101138-62101832 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62102001-62102695 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
62102864-62103558 amulet_ascii: bit: "Address low nibble: 1" "Addr low 0x1" "Addr l 0x1"
62102001-62103558 amulet_ascii: field: "Address: 0xA1" "Addr: 0xA1" "0xA1"
62103727-62104421 amulet_ascii: bit: "R"
62104589-62105283 amulet_ascii: bit: "
"
62105452-62106146 amulet_ascii: bit: "E"
62106315-62107009 amulet_ascii: bit: "
"
62107178-62107872 amulet_ascii: bit: "S"
62108040-62108734 amulet_ascii: bit: "
"
62108903-62109597 amulet_ascii: bit: "E"
62109766-62110460 amulet_ascii: bit: "
"
62110629-62111323 amulet_ascii: bit: "T"
62111492-62112186 amulet_ascii: bit: "NULL"
62103727-62112186 amulet_ascii: field: "Value: R
E
S
E
T" "Val: R
E
S
E
T" "R
E
S
E
T"
62101138-62112186 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62132244-62132938 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62132244-62132938 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62226859-62227553 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62227721-62228415 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
62228584-62229278 amulet_ascii: bit: "Address low nibble: 2" "Addr low 0x2" "Addr l 0x2"
62227721-62229278 amulet_ascii: field: "Address: 0xA2" "Addr: 0xA2" "0xA2"
62229447-62230141 amulet_ascii: bit: "S"
62230310-62231004 amulet_ascii: bit: "W"
62231172-62231866 amulet_ascii: bit: "
"
62232035-62232729 amulet_ascii: bit: "V"
62232898-62233592 amulet_ascii: bit: "
"
62233761-62234455 amulet_ascii: bit: "E"
62234624-62235318 amulet_ascii: bit: "
"
62235486-62236180 amulet_ascii: bit: "R"
62236349-62237043 amulet_ascii: bit: "NULL"
62229447-62237043 amulet_ascii: field: "Value: SW
V
E
R" "Val: SW
V
E
R" "SW
V
E
R"
62226859-62237043 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62240102-62240796 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62240102-62240796 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62351266-62351960 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62352129-62352823 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
62352991-62353685 amulet_ascii: bit: "Address low nibble: 3" "Addr low 0x3" "Addr l 0x3"
62352129-62353685 amulet_ascii: field: "Address: 0xA3" "Addr: 0xA3" "0xA3"
62353854-62354548 amulet_ascii: bit: "D"
62354717-62355411 amulet_ascii: bit: "
"
62355580-62356274 amulet_ascii: bit: "I"
62356442-62357136 amulet_ascii: bit: "
"
62357305-62357999 amulet_ascii: bit: "A"
62358168-62358862 amulet_ascii: bit: "
"
62359031-62359725 amulet_ascii: bit: "G"
62359893-62360587 amulet_ascii: bit: "NULL"
62353854-62360587 amulet_ascii: field: "Value: D
I
A
G" "Val: D
I
A
G" "D
I
A
G"
62351266-62360587 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62431502-62432196 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62431502-62432196 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62538731-62539425 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62539594-62540288 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
62540457-62541151 amulet_ascii: bit: "Address low nibble: 4" "Addr low 0x4" "Addr l 0x4"
62539594-62541151 amulet_ascii: field: "Address: 0xA4" "Addr: 0xA4" "0xA4"
62541320-62542014 amulet_ascii: bit: "D"
62542182-62542876 amulet_ascii: bit: "E"
62543045-62543739 amulet_ascii: bit: "S"
62543908-62544602 amulet_ascii: bit: "T"
62544771-62545465 amulet_ascii: bit: "
"
62545633-62546327 amulet_ascii: bit: "S"
62546496-62547190 amulet_ascii: bit: "E"
62547359-62548053 amulet_ascii: bit: "T"
62548222-62548916 amulet_ascii: bit: "U"
62549084-62549778 amulet_ascii: bit: "P"
62549947-62550641 amulet_ascii: bit: "NULL"
62541320-62550641 amulet_ascii: field: "Value: DEST
SETUP" "Val: DEST
SETUP" "DEST
SETUP"
62538731-62550641 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62631499-62632193 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62631499-62632193 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62726408-62727102 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62727271-62727965 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
62728134-62728828 amulet_ascii: bit: "Address low nibble: 5" "Addr low 0x5" "Addr l 0x5"
62727271-62728828 amulet_ascii: field: "Address: 0xA5" "Addr: 0xA5" "0xA5"
62728997-62729691 amulet_ascii: bit: "N"
62729859-62730553 amulet_ascii: bit: "E"
62730722-62731416 amulet_ascii: bit: "T"
62731585-62732279 amulet_ascii: bit: "W"
62732448-62733142 amulet_ascii: bit: "O"
62733310-62734004 amulet_ascii: bit: "R"
62734173-62734867 amulet_ascii: bit: "K"
62735036-62735730 amulet_ascii: bit: "
"
62735899-62736593 amulet_ascii: bit: "S"
62736761-62737455 amulet_ascii: bit: "E"
62737624-62738318 amulet_ascii: bit: "T"
62738487-62739181 amulet_ascii: bit: "U"
62739350-62740044 amulet_ascii: bit: "P"
62740213-62740907 amulet_ascii: bit: "NULL"
62728997-62740907 amulet_ascii: field: "Value: NETWORK
SETUP" "Val: NETWORK
SETUP" "NETWORK
SETUP"
62726408-62740907 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62744505-62745199 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62744505-62745199 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62851423-62852117 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62852286-62852980 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
62853149-62853843 amulet_ascii: bit: "Address low nibble: 6" "Addr low 0x6" "Addr l 0x6"
62852286-62853843 amulet_ascii: field: "Address: 0xA6" "Addr: 0xA6" "0xA6"
62854011-62854705 amulet_ascii: bit: "I"
62854874-62855568 amulet_ascii: bit: "N"
62855737-62856431 amulet_ascii: bit: "P"
62856600-62857294 amulet_ascii: bit: "U"
62857463-62858157 amulet_ascii: bit: "T"
62858325-62859019 amulet_ascii: bit: "
"
62859188-62859882 amulet_ascii: bit: "P"
62860051-62860745 amulet_ascii: bit: "A"
62860914-62861608 amulet_ascii: bit: "T"
62861776-62862470 amulet_ascii: bit: "C"
62862639-62863333 amulet_ascii: bit: "H"
62863502-62864196 amulet_ascii: bit: "NULL"
62854011-62864196 amulet_ascii: field: "Value: INPUT
PATCH" "Val: INPUT
PATCH" "INPUT
PATCH"
62851423-62864196 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
62933324-62934018 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
62933324-62934018 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
63039068-63039762 amulet_ascii: field: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
63039930-63040624 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
63040793-63041487 amulet_ascii: bit: "Address low nibble: 7" "Addr low 0x7" "Addr l 0x7"
63039930-63041487 amulet_ascii: field: "Address: 0xA7" "Addr: 0xA7" "0xA7"
63041656-63042350 amulet_ascii: bit: "R"
63042519-63043213 amulet_ascii: bit: "O"
63043381-63044075 amulet_ascii: bit: "U"
63044244-63044938 amulet_ascii: bit: "T"
63045107-63045801 amulet_ascii: bit: "E"
63045970-63046664 amulet_ascii: bit: "R"
63046833-63047527 amulet_ascii: bit: "
"
63047695-63048389 amulet_ascii: bit: "S"
63048558-63049252 amulet_ascii: bit: "E"
63049421-63050115 amulet_ascii: bit: "T"
63050284-63050978 amulet_ascii: bit: "U"
63051146-63051840 amulet_ascii: bit: "P"
63052009-63052703 amulet_ascii: bit: "NULL"
63041656-63052703 amulet_ascii: field: "Value: ROUTER
SETUP" "Val: ROUTER
SETUP" "ROUTER
SETUP"
63039068-63052703 amulet_ascii: ssv: "Command: Set string variable (SSV)" "Command: Set string variable" "Cmd: Set string variable" "Cmd: SSV" "SSV"
63132510-63133204 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
63132510-63133204 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
63226538-63227232 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
63227401-63228095 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
63228264-63228958 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
63227401-63228958 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
63229127-63232409 amulet_ascii: field: "Value: 0x0010" "Val: 0x0010" "0x0010"
63226538-63232409 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
63234016-63234710 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
63234016-63234710 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
67418198-67418892 amulet_ascii: field: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
67599662-67600356 amulet_ascii: bit: "Address high nibble: F" "Addr high 0xF" "Addr h 0xF"
67781095-67781789 amulet_ascii: bit: "Address low nibble: F" "Addr low 0xF" "Addr l 0xF"
67599662-67781789 amulet_ascii: field: "Address: 0xFF" "Addr: 0xFF" "0xFF"
67962554-68507532 amulet_ascii: field: "Value: 0x5a5a" "Val: 0x5a5a" "0x5a5a"
67418198-68507532 amulet_ascii: swv: "Command: Set word variable (SWV)" "Command: Set word variable" "Cmd: Set word variable" "Cmd: SWV" "SWV"
68688166-68688860 amulet_ascii: warning: "Unknown command: 0x00"
68689358-68690052 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
68689358-68690052 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
68737716-68738410 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
68738579-68739273 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
68739442-68740136 amulet_ascii: bit: "Address low nibble: 0" "Addr low 0x0" "Addr l 0x0"
68738579-68740136 amulet_ascii: field: "Address: 0xA0" "Addr: 0xA0" "0xA0"
68740305-68741861 amulet_ascii: field: "Value: 0x01" "Val: 0x01" "0x01"
68737716-68741861 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
68872587-68873281 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
68872587-68873281 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
68977594-68978288 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
68978456-68979150 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
68979319-68980013 amulet_ascii: bit: "Address low nibble: 1" "Addr low 0x1" "Addr l 0x1"
68978456-68980013 amulet_ascii: field: "Address: 0xA1" "Addr: 0xA1" "0xA1"
68980182-68981739 amulet_ascii: field: "Value: 0x01" "Val: 0x01" "0x01"
68977594-68981739 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
69056734-69057428 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
69056734-69057428 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
69165124-69165818 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
69165987-69166681 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
69166850-69167544 amulet_ascii: bit: "Address low nibble: 2" "Addr low 0x2" "Addr l 0x2"
69165987-69167544 amulet_ascii: field: "Address: 0xA2" "Addr: 0xA2" "0xA2"
69167712-69169269 amulet_ascii: field: "Value: 0x01" "Val: 0x01" "0x01"
69165124-69169269 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
69240877-69241571 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
69240877-69241571 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
69363344-69364038 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
69364207-69364901 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"
69365070-69365764 amulet_ascii: bit: "Address low nibble: 3" "Addr low 0x3" "Addr l 0x3"
69364207-69365764 amulet_ascii: field: "Address: 0xA3" "Addr: 0xA3" "0xA3"
69365933-69367489 amulet_ascii: field: "Value: 0x01" "Val: 0x01" "0x01"
69363344-69367489 amulet_ascii: sbv: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
69425008-69425702 amulet_ascii: field: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
69425008-69425702 amulet_ascii: ack: "Command: Acknowledgment (ACK)" "Command: Acknowledgment" "Cmd: Acknowledgment" "Cmd: ACK" "ACK"
69540115-69540809 amulet_ascii: field: "Command: Set byte variable (SBV)" "Command: Set byte variable" "Cmd: Set byte variable" "Cmd: SBV" "SBV"
69540977-69541671 amulet_ascii: bit: "Address high nibble: A" "Addr high 0xA" "Addr h 0xA"