float second = buffer.readFloat();
float third = buffer.readFloat();
float fourth = buffer.readFloat();
boolean fifth = buffer.readUnsignedByte() != 0;
boolean sixth = buffer.readUnsignedByte() != 0;
return new Packet1BMessage(first, second, third, fourth, fifth, sixth);
}