I have recently gotten myself an ASD-11R iPod dock for my Denon DRA-700AE receiver in order to inspect the protocol that is being used for the communication between the two devices. My original intention was to display arbitrary information on the receiver display. Also, controlling an external device using the receiver controls or the remote control would have been nice. To tell you right away: I achieved neither. However, I learned something about the communication protocol along the way.

I did once manage to put the iPod and dock into a mode where the iPod could be controlled using the arrow keys on the remote control without the iPod’s screen being blocked and without the music library being shown on the receiver’s display. Unfortunately, I could never reproduce such a behavior. This mode is partly what I have been after…

The communication is based on an asynchronous serial protocol (UARTs on either side) on the physical layer. The baudrate is specified at 19,200Bd while the voltage level is 5V. On the receiver side a 3.5mm (stereo) jack receptacle is offered to connect to the dock. The pinout seen from the receiver is as follows (starting from the tip): RX, TX, GND. There are service manuals for both the receiver and the dock out there on the internet.

Apple iPod Accessory Protocol

iPods communicate with external devices using the iPod Accessory Protocol (iAP). When the Denon iPod dock is communicating with the Denon receiver, the iAP is tunneled through the Denon-proprietary protocol by XOR’ing every byte with 0x31. In the following section I will give a very brief summary of the most essential parts of the iAP protocol. Older versions of the specification can be found by searching the web thoroughly. The entire set of commands is partitioned into Lingos. Regular data packets look like this:

Byte # Value Description
0 0xFF Sync byte
1 0x55 Start byte
2 2+N Payload length
3   Lingo ID
4   Command ID
5…5+N   Data
6+N   Checksum

The fields Lingo ID, Command ID and Data are considered the payload. The checksum can be verified by accumulating the payload bytes and the checksum byte as 8 bit unsigned integers. If the sum equals 0x00, the packet is likely valid. As the payload’s length is limited to 255 bytes, there is also a large packet format:

Byte # Value Description
0 0xFF Sync byte
1 0x55 Start byte
2 0x00 Large packet indicator
3 MSB Payload length (upper 8 bits of N)
4 LSB Payload length (lower 8 bits of N)
5   Lingo ID
6   Command ID
7…7+N   Data
8+N   Checksum

In the following two sections I will summarize the two lingos that are being used in the communication between dock and receiver. I should note that I have used an old iPod Mini in this series of experiments.

General Lingo (ID = 0x00)

The General Lingo must be spoken by all devices that aim to communicate with an iPod via iAP. The following commands were the ones that I have seen while recording the communication between the receiver and the dock.

ID Name Direction Description Data
0x01 Identify → iPod Notify iPod that a device is attached Supported Lingo (1 byte)
0x02 ACK ← iPod Reply to a previously received command Result code and ID of the command that is being ack’ed (2 bytes)
0x03 Request Remote UI Mode → iPod Request the currently used interface mode none
0x04 Return Remote UI Mode ← iPod Currently used interface mode Nonzero if in Extended Interface Mode/Lingo (1 byte)
0x05 Enter Remote UI Mode → iPod Switch to Extended Interface Mode/Lingo none
0x0F Request Lingo Protocol Version → iPod Query the protocol version for a Lingo Lingo ID (1 byte)
0x10 Return Lingo Protocol Version ← iPod Return the protocol version Lingo ID, major & minor version (3 bytes)

Extended Interface Lingo (ID = 0x04)

The Extended Interface Lingo gives the device controlling the iPod the means to navigate through the music library, perform playback control and obtain status information such as the playback state, names for artist/album/song or meta information about the attached iPod. I don’t want to go into too much detail here as the protocol is thoroughly described out there on the internet.

Denon Protocol

As mentioned above, the iAP is encoded by XOR’ing each byte with 0x31 between receiver and dock. The usual first two bytes of the iAP 0xFF 0x55 become 0xCE 0x64. There are other packets being sent between receiver and dock that look very similar to iAP packets but start with 0xFF 0xA9 when decoded in the same way. The packet structure is otherwise the same as with the small packet format in iAP. The Lingo ID field seems to always be equal to 0x00.

I haven’t been able to decode all commands that I have seen on the wire. However, here is what I think I got:

ID Name Direction Description Data
0x03 Query status → Dock Get the iPod status none
0x01 ? → Dock I don’t know, but it does get acknowledged 0x00 (1 byte)
0x05 Deselect iPod → Dock iPod input gets deselected none
0x80 ACK ← Dock Acknowledge command see iAP ACK
0x81 Report status ← Dock Return the iPod status {no iPod, busy, iPod ready} (4 bytes)

The status query is sent periodically by the receiver as soon as the iPod input is selected at a period of 500~600ms. I have seen a few possible replies to these status queries which are summarized in the following table:

Data string potential meaning
0x01 0x01 0x00 0x00 No iPod inserted
0x00 0x01 0x11 0x00 iPod ready
0x01 0x00 0x00 0x00 iPod busy (?)
0x01 0x01 0x11 0x00 iPod busy (?)

I haven’t really figured out the meaning of the busy statuses but the occur between the no iPod status and the iPod ready status. It is noticeable that in all eight nibbles of all the possible packets only the least significant bit is only ever set.

Sniffing the data between dock and receiver

Since the protocol is based on a basic asynchronous serial interface, sniffing can be easily done using cheap USB-UART bridges. I have used such bridges that are based on the Prolific PL-2303HX controller IC as those bridges are usually the cheapest around. Now, as each of those ICs offers only a single UART, each one of the only has one RX line that can be used for sniffing. Therefore I got myself a couple and hooked their RX lines to both signalling lines of the receiver-dock interface. It should be noted here that while the PL-2303HX is not spec’ed to handle 5V signals on their RX pins they didn’t seem to take any damage.

In software a thread is spawned for each line. The threads read complete packets from the serial devices, interpret them and print them to stdout in a synchronized way. The hacked-together code can be found on my GitHub page.

What’s flying over the wire?

Now let’s have a look at one of my recordings of the where I hooked up a total of four USB-UART bridges to RX and TX between both dock and receiver and iPod and dock. The packets between dock and receiver have been decoded. In the square brackets the first digit is the signal line ID with the legend given as the preamble. The second number is the elapsed time in miliseconds since the first packet was received.

This is a recording of receiver’s input being set to the iPod. No status query is being sent while a different input is selected. No communication takes place between dock and iPod when the iPod is being inserted into the dock while the receiver hasn’t selected the iPod as the input.

0: Dock -> iPod
1: iPod -> Dock
2: Dock -> AVR
3: AVR -> Dock

[3|        0] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|        3] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|       43] Identify: 0x04
              0xff 0x55 0x03 0x00 0x01 0x04 0xf8
[0|       46] Identify: 0x04
              0xff 0x55 0x03 0x00 0x01 0x04 0xf8
[3|      623] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|      627] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|      678] Denon ??? #1
              0xff 0xa9 0x03 0x00 0x01 0x00 0xfc
[2|      682] ACK: ??? #1
              0xff 0xa9 0x04 0x00 0x80 0x00 0x01 0x7b
[3|     1247] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     1251] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     1838] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     1842] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     1904] Request iPod type
              0xff 0x55 0x03 0x04 0x00 0x12 0xe7
[0|     1908] Request iPod type
              0xff 0x55 0x03 0x04 0x00 0x12 0xe7
[1|     1921] iPod type: 0x01 0x08
              0xff 0x55 0x05 0x04 0x00 0x13 0x01 0x08 0xdb
[2|     1919] iPod type: 0x01 0x08
              0xff 0x55 0x05 0x04 0x00 0x13 0x01 0x08 0xdb
[3|     1970] Request Lingo Protocol Version 0x00
              0xff 0x55 0x03 0x00 0x0f 0x00 0xee
[0|     1973] Request Lingo Protocol Version 0x00
              0xff 0x55 0x03 0x00 0x0f 0x00 0xee
[1|     1984] Lingo Protocol Version: 0x00 0x01 0x02
              0xff 0x55 0x05 0x00 0x10 0x00 0x01 0x02 0xe8
[2|     1982] Lingo Protocol Version: 0x00 0x01 0x02
              0xff 0x55 0x05 0x00 0x10 0x00 0x01 0x02 0xe8
[3|     2035] Enter Remote UI Mode
              0xff 0x55 0x02 0x00 0x05 0xf9
[0|     2039] Enter Remote UI Mode
              0xff 0x55 0x02 0x00 0x05 0xf9
[1|     2048] ACK: Success 0x00 0x05
              0xff 0x55 0x04 0x00 0x02 0x00 0x05 0xf5
[2|     2047] ACK: Success 0x00 0x05
              0xff 0x55 0x04 0x00 0x02 0x00 0x05 0xf5
[3|     2090] Request Remote UI Mode
              0xff 0x55 0x02 0x00 0x03 0xfb
[0|     2093] Request Remote UI Mode
              0xff 0x55 0x02 0x00 0x03 0xfb
[1|     2102] Return Remote UI Mode: Extended Interface Mode
              0xff 0x55 0x03 0x00 0x04 0x01 0xf8
[2|     2101] Return Remote UI Mode: Extended Interface Mode
              0xff 0x55 0x03 0x00 0x04 0x01 0xf8
[3|     2145] Request screen resolution
              0xff 0x55 0x03 0x04 0x00 0x33 0xc6
[0|     2148] Request screen resolution
              0xff 0x55 0x03 0x04 0x00 0x33 0xc6
[1|     2164] Screen resolution: 128x55x1
              0x255 0x85 0x08 0x04 0x00 0x52 0x00 0x128 0x00 0x55 0x01 0x08
[2|     2160] Screen resolution: 128x55x1
              0x255 0x85 0x08 0x04 0x00 0x52 0x00 0x128 0x00 0x55 0x01 0x08
[3|     2200] Picture block
              0xff 0x55 0x00 0x01 0xd0 0x04 0x00 0x32 0x00 0x00 0x01 0x00 0x78 0x00 0x37 0x00 0x00 0x00 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x29
[0|     2203] Picture block
              0xff 0x55 0x00 0x01 0xd0 0x04 0x00 0x32 0x00 0x00 0x01 0x00 0x78 0x00 0x37 0x00 0x00 0x00 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x29
[1|     2457] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x32 0xc3
[2|     2455] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x32 0xc3
[3|     2495] Picture block
              0xff 0x55 0x00 0x01 0xc7 0x04 0x00 0x32 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x00 0x00 0x00 0xff 0xfc 0x00 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0x00 0x00 0xff 0xff 0xf0 0x3c 0x00 0x00 0x3f 0x00 0x0f 0xff 0xff 0xc0 0x03 0xc0 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0xf0 0x00 0xff 0xff 0xf0 0x3f 0x00 0x00 0x3f 0x00 0x3f 0xff 0xff 0xf0 0x03 0xf0 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0xfc 0x00 0xff 0xff 0xf0 0x3f 0xc0 0x00 0x3f 0x00 0xff 0xf0 0x3f 0xfc 0x03 0xfc 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x0f 0xff 0x00 0xfc 0x00 0x00 0x3f 0xf0 0x00 0x3f 0x03 0xff 0x00 0x03 0xff 0x03 0xff 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0xff 0x00 0xfc 0x00 0x00 0x3f 0xfc 0x00 0x3f 0x03 0xfc 0x00 0x00 0xff 0x03 0xff 0xc0 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x3f 0xc0 0xfc 0x00 0x00 0x3f 0xff 0x00 0x3f 0x0f 0xf0 0x00 0x00 0x3f 0xc3 0xff 0xf0 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x3f 0xc0 0xfc 0x00 0x00 0x3f 0xff 0xc0 0x3f 0x0f 0xf0 0x00 0x00 0x3f 0xc3 0xff 0xfc 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x0f 0xc0 0xff 0xff 0x00 0x3f 0x3f 0xf0 0x3f 0x0f 0xc0 0x00 0x00 0x0f 0xc3 0xf3 0xff 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x0f 0xc0 0xff 0xff 0x00 0x3f 0x0f 0xfc 0x3f 0x0f 0xc0 0x00 0x00 0x0f 0xc3 0xf0 0xff 0xc3 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xcb
[0|     2498] Picture block
              0xff 0x55 0x00 0x01 0xc7 0x04 0x00 0x32 0x00 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x00 0x00 0x00 0xff 0xfc 0x00 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0x00 0x00 0xff 0xff 0xf0 0x3c 0x00 0x00 0x3f 0x00 0x0f 0xff 0xff 0xc0 0x03 0xc0 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0xf0 0x00 0xff 0xff 0xf0 0x3f 0x00 0x00 0x3f 0x00 0x3f 0xff 0xff 0xf0 0x03 0xf0 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0xfc 0x00 0xff 0xff 0xf0 0x3f 0xc0 0x00 0x3f 0x00 0xff 0xf0 0x3f 0xfc 0x03 0xfc 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x0f 0xff 0x00 0xfc 0x00 0x00 0x3f 0xf0 0x00 0x3f 0x03 0xff 0x00 0x03 0xff 0x03 0xff 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0xff 0x00 0xfc 0x00 0x00 0x3f 0xfc 0x00 0x3f 0x03 0xfc 0x00 0x00 0xff 0x03 0xff 0xc0 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x3f 0xc0 0xfc 0x00 0x00 0x3f 0xff 0x00 0x3f 0x0f 0xf0 0x00 0x00 0x3f 0xc3 0xff 0xf0 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x3f 0xc0 0xfc 0x00 0x00 0x3f 0xff 0xc0 0x3f 0x0f 0xf0 0x00 0x00 0x3f 0xc3 0xff 0xfc 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x0f 0xc0 0xff 0xff 0x00 0x3f 0x3f 0xf0 0x3f 0x0f 0xc0 0x00 0x00 0x0f 0xc3 0xf3 0xff 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x0f 0xc0 0xff 0xff 0x00 0x3f 0x0f 0xfc 0x3f 0x0f 0xc0 0x00 0x00 0x0f 0xc3 0xf0 0xff 0xc3 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xcb
[1|     2747] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x32 0xc3
[2|     2745] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x32 0xc3
[3|     2780] Picture block
              0xff 0x55 0x00 0x01 0xc7 0x04 0x00 0x32 0x00 0x02 0x03 0xf0 0x00 0x0f 0xc0 0xff 0xff 0x00 0x3f 0x03 0xff 0x3f 0x0f 0xc0 0x00 0x00 0x0f 0xc3 0xf0 0x3f 0xf3 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x3f 0xc0 0xfc 0x00 0x00 0x3f 0x00 0xff 0xff 0x0f 0xf0 0x00 0x00 0x3f 0xc3 0xf0 0x0f 0xff 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x3f 0xc0 0xfc 0x00 0x00 0x3f 0x00 0x3f 0xff 0x0f 0xf0 0x00 0x00 0x3f 0xc3 0xf0 0x03 0xff 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0xff 0x00 0xfc 0x00 0x00 0x3f 0x00 0x0f 0xff 0x03 0xfc 0x00 0x00 0xff 0x03 0xf0 0x00 0xff 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x0f 0xff 0x00 0xfc 0x00 0x00 0x3f 0x00 0x03 0xff 0x03 0xff 0x00 0x03 0xff 0x03 0xf0 0x00 0x3f 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0xfc 0x00 0xff 0xff 0xf0 0x3f 0x00 0x00 0xff 0x00 0xff 0xf0 0x3f 0xfc 0x03 0xf0 0x00 0x0f 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0xf0 0x00 0xff 0xff 0xf0 0x3f 0x00 0x00 0x3f 0x00 0x3f 0xff 0xff 0xf0 0x03 0xf0 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0x00 0x00 0xff 0xff 0xf0 0x3f 0x00 0x00 0x0f 0x00 0x0f 0xff 0xff 0xc0 0x03 0xf0 0x00 0x00 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0xff 0xfc 0x00 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x56
[0|     2783] Picture block
              0xff 0x55 0x00 0x01 0xc7 0x04 0x00 0x32 0x00 0x02 0x03 0xf0 0x00 0x0f 0xc0 0xff 0xff 0x00 0x3f 0x03 0xff 0x3f 0x0f 0xc0 0x00 0x00 0x0f 0xc3 0xf0 0x3f 0xf3 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x3f 0xc0 0xfc 0x00 0x00 0x3f 0x00 0xff 0xff 0x0f 0xf0 0x00 0x00 0x3f 0xc3 0xf0 0x0f 0xff 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0x3f 0xc0 0xfc 0x00 0x00 0x3f 0x00 0x3f 0xff 0x0f 0xf0 0x00 0x00 0x3f 0xc3 0xf0 0x03 0xff 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x00 0xff 0x00 0xfc 0x00 0x00 0x3f 0x00 0x0f 0xff 0x03 0xfc 0x00 0x00 0xff 0x03 0xf0 0x00 0xff 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xf0 0x0f 0xff 0x00 0xfc 0x00 0x00 0x3f 0x00 0x03 0xff 0x03 0xff 0x00 0x03 0xff 0x03 0xf0 0x00 0x3f 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0xfc 0x00 0xff 0xff 0xf0 0x3f 0x00 0x00 0xff 0x00 0xff 0xf0 0x3f 0xfc 0x03 0xf0 0x00 0x0f 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0xf0 0x00 0xff 0xff 0xf0 0x3f 0x00 0x00 0x3f 0x00 0x3f 0xff 0xff 0xf0 0x03 0xf0 0x00 0x03 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0xff 0xff 0x00 0x00 0xff 0xff 0xf0 0x3f 0x00 0x00 0x0f 0x00 0x0f 0xff 0xff 0xc0 0x03 0xf0 0x00 0x00 0xf0 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0xff 0xfc 0x00 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x56
[1|     3032] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x32 0xc3
[2|     3030] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x32 0xc3
[3|     3064] Picture block
              0xff 0x55 0x00 0x01 0x9f 0x04 0x00 0x32 0x00 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x27
[0|     3068] Picture block
              0xff 0x55 0x00 0x01 0x9f 0x04 0x00 0x32 0x00 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x27
[1|     3381] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x32 0xc3
[2|     3379] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x32 0xc3
[3|     3404] Start polling mode
              0xff 0x55 0x04 0x04 0x00 0x26 0x01 0xd1
[0|     3407] Start polling mode
              0xff 0x55 0x04 0x04 0x00 0x26 0x01 0xd1
[1|     3422] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x26 0xcf
[2|     3419] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x26 0xcf
[3|     3458] Switch to the main library playlist
              0xff 0x55 0x03 0x04 0x00 0x16 0xe3
[0|     3461] Switch to the main library playlist
              0xff 0x55 0x03 0x04 0x00 0x16 0xe3
[1|     3479] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x16 0xdf
[2|     3477] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x16 0xdf
[3|     3513] Request count for element Song
              0xff 0x55 0x04 0x04 0x00 0x18 0x05 0xdb
[0|     3516] Request count for element Song
              0xff 0x55 0x04 0x04 0x00 0x18 0x05 0xdb
[1|     3546] Count: 693
              0x255 0x85 0x07 0x04 0x00 0x25 0x00 0x00 0x02 0x181 0x37
[2|     3543] Count: 693
              0x255 0x85 0x07 0x04 0x00 0x25 0x00 0x00 0x02 0x181 0x37
[3|     3568] Switch to the main library playlist
              0xff 0x55 0x03 0x04 0x00 0x16 0xe3
[0|     3571] Switch to the main library playlist
              0xff 0x55 0x03 0x04 0x00 0x16 0xe3
[1|     3592] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x16 0xdf
[2|     3589] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x16 0xdf
[3|     3623] Playback control: Stop
              0xff 0x55 0x04 0x04 0x00 0x29 0x02 0xcd
[0|     3626] Playback control: Stop
              0xff 0x55 0x04 0x04 0x00 0x29 0x02 0xcd
[1|     3648] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x29 0xcc
[2|     3646] Result: success
              0xff 0x55 0x06 0x04 0x00 0x01 0x00 0x00 0x29 0xcc
[3|     3677] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     3681] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     3700] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     3695] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     3732] Get shuffle mode
              0xff 0x55 0x03 0x04 0x00 0x2c 0xcd
[0|     3735] Get shuffle mode
              0xff 0x55 0x03 0x04 0x00 0x2c 0xcd
[1|     3749] Shuffle mode: song
              0xff 0x55 0x04 0x04 0x00 0x2d 0x01 0xca
[2|     3747] Shuffle mode: song
              0xff 0x55 0x04 0x04 0x00 0x2d 0x01 0xca
[3|     3787] Get repeat mode
              0xff 0x55 0x03 0x04 0x00 0x2f 0xca
[0|     3790] Get repeat mode
              0xff 0x55 0x03 0x04 0x00 0x2f 0xca
[1|     3804] Repeat mode: off
              0xff 0x55 0x04 0x04 0x00 0x30 0x00 0xc8
[2|     3802] Repeat mode: off
              0xff 0x55 0x04 0x04 0x00 0x30 0x00 0xc8
[3|     3842] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     3845] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     3864] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     3859] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     3929] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     3933] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     3973] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     3976] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     3996] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     3990] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4082] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4086] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4105] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4100] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4192] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4195] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4215] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4209] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4301] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4305] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4324] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4318] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4411] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4414] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4433] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4428] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4520] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4523] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4543] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4537] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4630] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4633] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4652] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4647] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4739] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4743] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4762] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4757] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4783] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     4787] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     4848] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4852] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4872] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4866] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     4949] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     4952] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     4971] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     4966] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5057] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5060] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5080] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5074] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5166] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5170] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5189] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5184] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5276] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5279] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5299] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5293] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5385] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5389] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5408] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5402] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5495] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5498] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5518] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5512] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5604] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     5608] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     5648] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5651] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5671] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5665] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5757] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5761] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5781] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5775] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5867] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5870] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5890] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5884] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     5976] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     5979] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     5999] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     5993] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6086] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6089] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6109] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6103] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6195] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6199] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6218] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6213] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6305] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6308] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6327] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6322] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6414] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6415] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6435] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6429] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6458] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     6462] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     6524] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6527] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6546] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6541] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6633] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6636] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6656] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6651] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6743] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6746] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6765] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6759] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6852] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6856] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6875] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6870] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     6962] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     6965] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     6985] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     6979] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7071] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7074] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     7093] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7088] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7180] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7184] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     7203] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7198] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7279] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     7283] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     7323] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7326] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     7346] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7340] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7432] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7436] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     7455] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7450] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7542] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7545] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     7565] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7559] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7651] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7654] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     7673] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7668] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7761] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7764] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     7783] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7778] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7870] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7873] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     7893] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7888] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     7979] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     7981] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8000] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     7994] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8089] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     8093] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8112] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     8106] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8133] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     8136] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     8198] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     8202] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8221] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     8216] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8308] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     8309] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8328] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     8323] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8417] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     8421] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8440] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     8434] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8527] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     8530] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8550] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     8544] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8636] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     8640] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8659] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     8654] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8746] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     8749] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8781] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     8776] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8855] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     8858] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     8878] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     8872] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     8954] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     8957] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     8997] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9001] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9020] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9015] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9107] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9110] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9130] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9125] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9216] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9220] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9239] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9234] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9326] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9329] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9348] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9343] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9435] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9439] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9458] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9453] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9545] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9548] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9568] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9562] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9654] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9658] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9677] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9672] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9764] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9767] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9786] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9781] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9807] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|     9811] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|     9873] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9876] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|     9896] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|     9890] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|     9983] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|     9986] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10006] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10000] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    10092] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    10095] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10114] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10109] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    10201] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    10205] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10225] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10219] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    10311] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    10314] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10334] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10328] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    10420] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    10424] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10443] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10438] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    10530] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    10533] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10553] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10547] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    10628] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|    10632] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|    10672] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    10673] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10693] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10687] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    10782] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    10785] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10805] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10799] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    10891] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    10895] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    10914] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    10909] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    11001] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    11004] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    11023] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    11017] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    11110] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    11113] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    11133] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    11128] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    11219] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    11223] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    11243] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    11237] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    11329] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    11332] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    11352] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    11346] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    11438] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    11442] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    11461] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    11456] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    11482] Denon periodic status query
              0xff 0xa9 0x02 0x00 0x03 0xfb
[2|    11486] Denon status: iPod ready
              0xff 0xa9 0x06 0x00 0x81 0x00 0x01 0x11 0x00 0x67
[3|    11548] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    11551] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    11571] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    11565] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    11657] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[0|    11661] Request time and status info
              0xff 0x55 0x03 0x04 0x00 0x1c 0xdd
[1|    11680] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[2|    11675] Track length: 0:00.000; current time: 0:00.000; status: stopped
              0x255 0x85 0x12 0x04 0x00 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x211
[3|    11773] Denon announcement: Deselecting iPod input
              0xff 0xa9 0x02 0x00 0x05 0xf9
[2|    11777] ACK: Deselecting iPod input
              0xff 0xa9 0x04 0x00 0x80 0x00 0x05 0x77
[3|    11865] Denon announcement: Deselecting iPod input
              0xff 0xa9 0x02 0x00 0x05 0xf9
[2|    11869] ACK: Deselecting iPod input
              0xff 0xa9 0x04 0x00 0x80 0x00 0x05 0x77