@param input the byte sequence. @return the byte sequence.
Uint8List remove0x04(Uint8List input) { if (input[0] == 4) { return input.sublist(1, input.length); } else { return input; } }