cmd/protoc-gen-go: re-escape default byte values

Historically, protoc-gen-go outputted the escaped form of bytes as provided by
protoc verbatim. This behavior is buggy, but nothing really uses this tag
since default values are properties of getters instead of serialization.
Rather than fixing it, just preserve prior behavior. Otherwise, logic depending
on the old legacy behavior will not be able to distinguish between the unescaped
or the escaped forms.

Furthermore, since protoc-gen-go historically copied the protoc output verbatim,
we will need to escape the default bytes in a way that is identical to the
CEscape function from strutil.cc of the protoc source code.

Change-Id: I0ab55e220ae430dd123ad050406e285788f6cb40
Reviewed-on: https://go-review.googlesource.com/c/143543
Reviewed-by: Damien Neil <dneil@google.com>
This commit is contained in:
Joe Tsai 2018-10-20 13:15:35 -07:00 committed by Joe Tsai
parent 2c870bb5cc
commit bda671fa93
3 changed files with 158 additions and 127 deletions

View File

@ -682,7 +682,36 @@ func fieldProtobufTag(field *protogen.Field) string {
def = "0"
}
case protoreflect.BytesKind:
def = string(field.Desc.Default().Bytes())
// Preserve protoc-gen-go's historical output of escaped bytes.
// This behavior is buggy, but fixing it makes it impossible to
// distinguish between the escaped and unescaped forms.
//
// To match the exact output of protoc, this is identical to the
// CEscape function in strutil.cc of the protoc source code.
var b []byte
for _, c := range field.Desc.Default().Bytes() {
switch c {
case '\n':
b = append(b, `\n`...)
case '\r':
b = append(b, `\r`...)
case '\t':
b = append(b, `\t`...)
case '"':
b = append(b, `\"`...)
case '\'':
b = append(b, `\'`...)
case '\\':
b = append(b, `\\`...)
default:
if c >= 0x20 && c <= 0x7e {
b = append(b, c)
} else {
b = append(b, fmt.Sprintf(`\%03o`, c)...)
}
}
}
def = string(b)
case protoreflect.FloatKind, protoreflect.DoubleKind:
f := field.Desc.Default().Float()
switch {

View File

@ -129,8 +129,8 @@ type FieldTestMessage struct {
DefaultSfixed64 *int64 `protobuf:"fixed64,312,opt,name=default_sfixed64,json=defaultSfixed64,def=1" json:"default_sfixed64,omitempty"`
DefaultFixed64 *uint64 `protobuf:"fixed64,313,opt,name=default_fixed64,json=defaultFixed64,def=1" json:"default_fixed64,omitempty"`
DefaultDouble *float64 `protobuf:"fixed64,314,opt,name=default_double,json=defaultDouble,def=3.1415" json:"default_double,omitempty"`
DefaultString *string `protobuf:"bytes,315,opt,name=default_string,json=defaultString,def=x,y" json:"default_string,omitempty"`
DefaultBytes []byte `protobuf:"bytes,316,opt,name=default_bytes,json=defaultBytes,def=x,y" json:"default_bytes,omitempty"`
DefaultString *string `protobuf:"bytes,315,opt,name=default_string,json=defaultString,def=hello,\"world!\"\n" json:"default_string,omitempty"`
DefaultBytes []byte `protobuf:"bytes,316,opt,name=default_bytes,json=defaultBytes,def=hello,\\336\\255\\276\\357" json:"default_bytes,omitempty"`
DefaultZeroString *string `protobuf:"bytes,350,opt,name=default_zero_string,json=defaultZeroString,def=" json:"default_zero_string,omitempty"`
DefaultZeroBytes []byte `protobuf:"bytes,351,opt,name=default_zero_bytes,json=defaultZeroBytes,def=" json:"default_zero_bytes,omitempty"`
DefaultFloatNeginf *float32 `protobuf:"fixed32,400,opt,name=default_float_neginf,json=defaultFloatNeginf,def=-inf" json:"default_float_neginf,omitempty"`
@ -211,9 +211,9 @@ const Default_FieldTestMessage_DefaultFloat float32 = 3.14
const Default_FieldTestMessage_DefaultSfixed64 int64 = 1
const Default_FieldTestMessage_DefaultFixed64 uint64 = 1
const Default_FieldTestMessage_DefaultDouble float64 = 3.1415
const Default_FieldTestMessage_DefaultString string = "x,y"
const Default_FieldTestMessage_DefaultString string = "hello,\"world!\"\n"
var Default_FieldTestMessage_DefaultBytes []byte = []byte("x,y")
var Default_FieldTestMessage_DefaultBytes []byte = []byte("hello,ޭ\xbe\xef")
var Default_FieldTestMessage_DefaultFloatNeginf float32 = float32(math.Inf(-1))
var Default_FieldTestMessage_DefaultFloatPosinf float32 = float32(math.Inf(1))
var Default_FieldTestMessage_DefaultFloatNan float32 = float32(math.NaN())
@ -1644,125 +1644,127 @@ func init() {
func init() { proto.RegisterFile("proto2/fields.proto", fileDescriptor_fd8a9d72b841fd68) }
var fileDescriptor_fd8a9d72b841fd68 = []byte{
// 1912 bytes of a gzipped FileDescriptorProto
// 1941 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x98, 0x5b, 0x73, 0x23, 0x47,
0x15, 0xc7, 0x35, 0x23, 0xc9, 0xb6, 0xda, 0x92, 0x25, 0xb7, 0xb3, 0x55, 0xcd, 0x3e, 0x35, 0x4b,
0x20, 0xb3, 0xec, 0xae, 0x15, 0x6b, 0x27, 0x9d, 0x44, 0x14, 0x05, 0xb8, 0xf0, 0x62, 0xaa, 0x60,
0x17, 0x86, 0xdd, 0xa2, 0x6a, 0x43, 0x95, 0x6b, 0x6c, 0x8f, 0x14, 0x11, 0x69, 0x46, 0x91, 0x46,
0xbb, 0x59, 0x3e, 0x05, 0xd7, 0x8f, 0xc1, 0xfd, 0x0e, 0xe1, 0x03, 0x70, 0xbf, 0x85, 0x4b, 0x12,
0xc8, 0x72, 0xbf, 0xbe, 0x02, 0xaf, 0x4b, 0x9d, 0x3e, 0xdd, 0x3d, 0xdd, 0x23, 0x3f, 0xd8, 0x7e,
0xb2, 0x75, 0xf4, 0x3f, 0xe7, 0xdf, 0xa7, 0xd5, 0xbf, 0xa3, 0xd6, 0x90, 0xad, 0xe9, 0x2c, 0xcb,
0xb3, 0x5e, 0x77, 0x30, 0x4a, 0xc6, 0xc7, 0xf3, 0x6d, 0xf9, 0x8a, 0x5e, 0x18, 0x66, 0xf2, 0x1f,
0x7c, 0x79, 0x84, 0x7f, 0x7a, 0x97, 0x5e, 0xb9, 0x4a, 0x3a, 0x37, 0x40, 0x77, 0x3b, 0x99, 0xe7,
0x1f, 0x4c, 0xe6, 0xf3, 0x78, 0x98, 0xd0, 0xb7, 0x90, 0x56, 0x36, 0xcd, 0x47, 0x59, 0x1a, 0x8f,
0x0f, 0x0e, 0xb3, 0x6c, 0xcc, 0x3c, 0xee, 0x05, 0x6b, 0x51, 0x53, 0x07, 0x77, 0xb3, 0x6c, 0x4c,
0x3f, 0x6c, 0x89, 0x92, 0x74, 0x31, 0x61, 0x3e, 0xf7, 0x82, 0x8d, 0xde, 0xd5, 0xed, 0x13, 0x8d,
0xb6, 0xcb, 0x26, 0xdb, 0x7b, 0xe9, 0x62, 0x52, 0x94, 0x84, 0x57, 0xf4, 0xad, 0x64, 0xc3, 0x94,
0x1c, 0xa5, 0xf9, 0xf5, 0x1e, 0xab, 0x72, 0x2f, 0xa8, 0x47, 0xc6, 0xe8, 0xfd, 0x10, 0xa4, 0x4f,
0x90, 0xb6, 0x91, 0xcd, 0x51, 0x57, 0xe3, 0x5e, 0xb0, 0x19, 0x99, 0xec, 0x8f, 0x8c, 0x96, 0x84,
0x0b, 0x14, 0xd6, 0xb9, 0x17, 0xb4, 0x0a, 0xe1, 0x1d, 0x14, 0x96, 0x8c, 0x45, 0xc8, 0x56, 0xb8,
0x17, 0x54, 0x1d, 0x63, 0x11, 0x2e, 0x19, 0x8b, 0x90, 0xad, 0x72, 0x2f, 0xa0, 0xae, 0x71, 0x49,
0xb8, 0x40, 0xe1, 0x1a, 0xf7, 0x82, 0x9a, 0x6b, 0x2c, 0x42, 0x7a, 0x85, 0x6c, 0x16, 0x15, 0x07,
0xa3, 0x97, 0x92, 0xe3, 0xeb, 0x3d, 0xd6, 0xe0, 0x5e, 0xd0, 0x8e, 0x3a, 0xa6, 0xa6, 0x8a, 0xd3,
0xcb, 0xc4, 0xc4, 0x0e, 0xb4, 0x96, 0x70, 0x2f, 0x58, 0x8d, 0x8c, 0xdb, 0x0d, 0x25, 0xb5, 0x1b,
0x1a, 0x8c, 0xb3, 0x38, 0x67, 0xeb, 0xdc, 0x0b, 0xfc, 0xa2, 0xa1, 0x1b, 0x10, 0x3c, 0xc1, 0x5e,
0x84, 0xac, 0xc9, 0xbd, 0xa0, 0x53, 0xb6, 0x17, 0xe1, 0xb2, 0xbd, 0x08, 0x59, 0x8b, 0x7b, 0xc1,
0x4a, 0xc9, 0xbe, 0xd4, 0xff, 0x71, 0xb6, 0x38, 0x1c, 0x27, 0x6c, 0x83, 0x7b, 0x81, 0x57, 0xf4,
0xff, 0x5e, 0x19, 0x75, 0x77, 0x34, 0x9f, 0x8d, 0xd2, 0x21, 0x6b, 0x73, 0x2f, 0x68, 0x58, 0x3b,
0x2a, 0xa3, 0x4e, 0x43, 0x87, 0x0f, 0xf2, 0x64, 0xce, 0x3a, 0xdc, 0x0b, 0x9a, 0x45, 0x43, 0xbb,
0x10, 0xa4, 0x77, 0xad, 0x35, 0xaa, 0x83, 0xc6, 0x36, 0xb9, 0x17, 0xac, 0xf7, 0xba, 0xa7, 0x3d,
0x97, 0xea, 0x6f, 0xd1, 0x94, 0xa6, 0xe2, 0xb9, 0xe2, 0xc0, 0x0f, 0x67, 0xd9, 0x62, 0xca, 0x28,
0xf7, 0x02, 0xd2, 0x7b, 0xea, 0xb4, 0x85, 0x6f, 0xa9, 0xe4, 0xf7, 0x41, 0x72, 0xe4, 0xd6, 0x02,
0xe4, 0x66, 0xc9, 0x8b, 0x8b, 0xd1, 0x2c, 0x39, 0x46, 0xe4, 0x12, 0xee, 0x03, 0x72, 0x3a, 0xa8,
0x91, 0x33, 0x22, 0x89, 0xdc, 0x80, 0xfb, 0x67, 0x47, 0x4e, 0x97, 0xd0, 0xc8, 0x99, 0x92, 0x48,
0xc8, 0x90, 0xfb, 0x80, 0x9c, 0x8e, 0x1a, 0xe4, 0x8c, 0x4c, 0x21, 0xf7, 0x3c, 0xf7, 0x01, 0x39,
0x1d, 0x2e, 0x90, 0x33, 0x42, 0x85, 0xdc, 0x88, 0xfb, 0x80, 0x9c, 0x0e, 0x17, 0xc8, 0xd9, 0xc6,
0x22, 0x64, 0x1f, 0xe7, 0x3e, 0x20, 0x67, 0x19, 0xe3, 0x49, 0x72, 0x8c, 0x45, 0xc8, 0x5e, 0xe0,
0x3e, 0x20, 0x67, 0x1b, 0x97, 0x84, 0x0a, 0xb9, 0x31, 0xf7, 0x01, 0x39, 0xdb, 0x18, 0x91, 0x2b,
0x2a, 0x6a, 0x8c, 0x26, 0xdc, 0x07, 0xe4, 0x4c, 0x4d, 0x0b, 0x39, 0x23, 0xd6, 0xda, 0x94, 0xfb,
0x80, 0x9c, 0x8e, 0x5b, 0xc8, 0x15, 0x52, 0x89, 0x5c, 0xc6, 0x7d, 0x40, 0xce, 0x08, 0x35, 0x72,
0x25, 0x7b, 0x11, 0xb2, 0x29, 0xf7, 0x01, 0x39, 0xd7, 0x1e, 0x91, 0x73, 0xed, 0x45, 0xc8, 0x5e,
0xe4, 0x3e, 0x20, 0xe7, 0xd8, 0x97, 0xfa, 0x57, 0xc8, 0xcd, 0xb8, 0x0f, 0xc8, 0xe9, 0x70, 0x81,
0x5c, 0xb1, 0x00, 0x44, 0x6e, 0xce, 0x7d, 0x40, 0xce, 0xd8, 0x1b, 0xe4, 0x8a, 0x23, 0x29, 0x91,
0xcb, 0xb9, 0x0f, 0xc8, 0x99, 0x33, 0xa9, 0x91, 0x33, 0x32, 0x8d, 0xdc, 0x82, 0xfb, 0xe7, 0x42,
0x4e, 0x17, 0xb2, 0x90, 0xd3, 0x21, 0x44, 0xee, 0x1e, 0xf7, 0xcf, 0x82, 0x5c, 0xa4, 0x92, 0x15,
0x72, 0x4e, 0x2d, 0xfa, 0x38, 0x14, 0x9f, 0x26, 0x71, 0xae, 0x91, 0xfb, 0xbe, 0xc7, 0xab, 0xc8,
0x1c, 0x46, 0x25, 0x73, 0x91, 0xa5, 0x92, 0xcc, 0xfd, 0x00, 0x54, 0xe7, 0x80, 0x0e, 0x6b, 0x48,
0xe8, 0xde, 0x06, 0x3b, 0xab, 0x6a, 0x22, 0x23, 0x3f, 0x84, 0xa2, 0x92, 0x3a, 0x0c, 0x23, 0x75,
0x01, 0x7c, 0x54, 0x4a, 0xa7, 0xa8, 0xfb, 0x11, 0x08, 0x25, 0x76, 0x18, 0x57, 0xd8, 0xd9, 0x4a,
0x85, 0xdd, 0x8f, 0x41, 0xd9, 0x2a, 0x94, 0x8a, 0xbb, 0x92, 0xb7, 0x08, 0xd9, 0x4f, 0x40, 0x58,
0x75, 0xbc, 0x45, 0xb8, 0xe4, 0x2d, 0x42, 0xf6, 0x53, 0x10, 0x52, 0xd7, 0xbb, 0xa4, 0x54, 0xe4,
0xfd, 0x0c, 0x94, 0x35, 0xd7, 0x5b, 0x84, 0xf4, 0x2a, 0x9c, 0x7d, 0x5d, 0x53, 0xe3, 0xf4, 0x73,
0xd0, 0x4a, 0xf6, 0x54, 0x55, 0xcd, 0xde, 0xdb, 0x89, 0x89, 0x19, 0xf6, 0x7e, 0x01, 0x62, 0x09,
0x1f, 0xbe, 0xa1, 0xe1, 0xb3, 0xbb, 0x42, 0xf8, 0x7e, 0x09, 0x4a, 0xbf, 0xe8, 0x0a, 0xe9, 0x5b,
0x5e, 0x81, 0x08, 0xd9, 0x2b, 0x20, 0xed, 0x94, 0x57, 0x20, 0xc2, 0xe5, 0x15, 0x88, 0x90, 0xfd,
0x0a, 0xc4, 0x2b, 0xa5, 0x15, 0x94, 0x76, 0x41, 0xf1, 0xf7, 0x6b, 0x90, 0x7a, 0xc5, 0x2e, 0x28,
0x00, 0x9d, 0x9d, 0x45, 0x00, 0x7f, 0x03, 0xca, 0x86, 0xb5, 0xb3, 0x48, 0xa0, 0xdd, 0x15, 0x12,
0xf8, 0x5b, 0x10, 0x36, 0x8b, 0xae, 0x10, 0xc1, 0xe7, 0xac, 0x75, 0x6a, 0x04, 0x5f, 0x05, 0xe5,
0xf9, 0x18, 0xc4, 0x4a, 0x9a, 0xc1, 0x8f, 0x15, 0x00, 0x20, 0x83, 0xaf, 0x41, 0xe5, 0x33, 0x41,
0x88, 0xd9, 0x06, 0x42, 0xab, 0x18, 0x0d, 0x48, 0xf3, 0x38, 0x19, 0xc4, 0x8b, 0x71, 0x8e, 0x0c,
0x7e, 0x1e, 0x6e, 0x91, 0x6b, 0xfd, 0x5a, 0x3e, 0x5b, 0x24, 0xd1, 0xba, 0x7a, 0x4b, 0x82, 0x78,
0xa7, 0x50, 0x4a, 0x0e, 0xbf, 0x70, 0x8e, 0xfb, 0x66, 0xbf, 0x7a, 0xeb, 0xe6, 0x9e, 0x29, 0x2b,
0x59, 0x7c, 0x82, 0xb4, 0x74, 0x59, 0xe4, 0xe6, 0x8b, 0x50, 0xb7, 0xde, 0xf7, 0x76, 0x22, 0xed,
0x87, 0x30, 0x5e, 0x26, 0x1b, 0x5a, 0xa8, 0x58, 0xfc, 0x12, 0x28, 0x37, 0x41, 0xa9, 0x4b, 0x28,
0x1a, 0x2d, 0xa9, 0x82, 0xf1, 0xcb, 0x20, 0x6d, 0xd9, 0xd2, 0x3b, 0xfa, 0xfb, 0xd2, 0xb6, 0x17,
0x21, 0xfb, 0x0a, 0x28, 0xab, 0x25, 0x7b, 0xf9, 0x55, 0xe0, 0xd8, 0x8b, 0x90, 0x7d, 0x15, 0x94,
0xb4, 0x6c, 0xef, 0x4a, 0x15, 0x8f, 0x5f, 0x03, 0x69, 0xad, 0x6c, 0x2f, 0x42, 0x7a, 0x8d, 0x74,
0x4c, 0x55, 0xcd, 0xd8, 0xd7, 0x41, 0xdc, 0x06, 0x71, 0x5b, 0xd7, 0xd5, 0x48, 0x5e, 0x21, 0x3a,
0x64, 0x88, 0xfc, 0x06, 0xa8, 0x57, 0x41, 0xad, 0x4d, 0x6f, 0x18, 0x7e, 0x4d, 0x6b, 0x88, 0xe4,
0x37, 0x41, 0xea, 0xf7, 0x6b, 0xd7, 0xb7, 0x77, 0x42, 0xd3, 0x1d, 0x72, 0xb9, 0xb4, 0x0e, 0x11,
0xb2, 0x6f, 0x81, 0xbc, 0xb3, 0xbc, 0x0e, 0xf9, 0x1d, 0xee, 0xae, 0x43, 0x84, 0xec, 0xdb, 0xa0,
0x5e, 0x59, 0x5a, 0x87, 0x08, 0xe9, 0x76, 0xb1, 0x1d, 0x0a, 0xcc, 0xef, 0x80, 0xd6, 0xeb, 0xaf,
0xc0, 0x42, 0x76, 0x9e, 0x32, 0x7b, 0xa2, 0xf8, 0xbc, 0x62, 0xed, 0x34, 0xe2, 0xf9, 0x5d, 0xd0,
0x37, 0xfa, 0xd5, 0x97, 0xae, 0x3e, 0x28, 0xf6, 0x1a, 0x11, 0xbd, 0x5c, 0x34, 0x89, 0x84, 0xbe,
0x0c, 0xda, 0x26, 0x6a, 0x75, 0x8f, 0x48, 0xe9, 0x0e, 0xd9, 0xd2, 0xd2, 0x4f, 0x24, 0xb3, 0x4c,
0x17, 0x7f, 0x03, 0x8b, 0x57, 0xa2, 0x4d, 0xf5, 0xee, 0xdd, 0x64, 0x96, 0xa9, 0xea, 0x5d, 0x42,
0x9d, 0x14, 0xb4, 0x78, 0x88, 0x16, 0x95, 0xa8, 0x63, 0x65, 0xa0, 0xc7, 0xd3, 0xe4, 0x31, 0x67,
0xcf, 0x0f, 0xd2, 0x64, 0x38, 0x4a, 0x07, 0xec, 0x93, 0x55, 0xdc, 0xfa, 0x6b, 0xa3, 0x74, 0x10,
0x51, 0x7b, 0xeb, 0x6f, 0x4a, 0x01, 0x15, 0xe5, 0xc4, 0x69, 0x36, 0x87, 0xc4, 0x4f, 0x61, 0x62,
0x75, 0x29, 0xef, 0x43, 0xf2, 0x7d, 0xfa, 0x24, 0xd9, 0x2c, 0x19, 0xc6, 0x29, 0xfb, 0xb4, 0x4a,
0x4a, 0xe3, 0xd4, 0x7c, 0x76, 0x68, 0x16, 0xa7, 0xf4, 0x59, 0x72, 0xc1, 0xfd, 0x38, 0xf4, 0x1a,
0x3f, 0x53, 0x95, 0x9f, 0x0a, 0xae, 0x71, 0xcb, 0xf9, 0x4c, 0xd4, 0x22, 0x9f, 0x59, 0x4a, 0x55,
0xab, 0xfc, 0x2c, 0xa6, 0x56, 0x97, 0x33, 0xd5, 0x32, 0x7b, 0xc5, 0x46, 0x6a, 0xd3, 0x38, 0x65,
0x9f, 0x53, 0x69, 0xb0, 0xce, 0x8e, 0x6b, 0x18, 0xa7, 0xf4, 0x88, 0xb4, 0x27, 0xf1, 0x14, 0xa7,
0x82, 0x82, 0xf3, 0x3f, 0x55, 0x39, 0x54, 0xfb, 0xa7, 0x1e, 0xaa, 0xf1, 0x54, 0x0e, 0x0f, 0x89,
0xf0, 0x5e, 0x9a, 0xcf, 0x1e, 0x44, 0xad, 0x89, 0x1d, 0xa3, 0x63, 0x42, 0xc1, 0x04, 0xcf, 0xc2,
0xc1, 0x44, 0x0d, 0xef, 0xff, 0xa2, 0xcf, 0x3b, 0xcf, 0xe0, 0x83, 0x27, 0x46, 0x05, 0xd0, 0xaa,
0x33, 0x29, 0x85, 0xe9, 0x80, 0x40, 0x4c, 0x33, 0x83, 0x73, 0xf4, 0x7f, 0xe8, 0xf5, 0x8e, 0x33,
0x78, 0x29, 0xb2, 0x60, 0x7e, 0xa2, 0xd3, 0xc6, 0xc4, 0x09, 0x52, 0x4e, 0x48, 0x96, 0x26, 0xd9,
0x00, 0x67, 0xfa, 0xab, 0xf0, 0xeb, 0x7c, 0x6d, 0xbf, 0x12, 0x35, 0x64, 0x50, 0x4e, 0xf3, 0x9b,
0x5a, 0x21, 0xd7, 0xf0, 0x5a, 0xed, 0xec, 0xb3, 0xdc, 0xd4, 0x93, 0x8e, 0x97, 0xc8, 0x3a, 0xd6,
0xc3, 0x79, 0xfb, 0x3a, 0x14, 0xac, 0xef, 0x57, 0x22, 0x74, 0xc1, 0x09, 0xfe, 0x38, 0x69, 0xa2,
0x46, 0xcd, 0xef, 0xdf, 0xc9, 0xa7, 0x06, 0xfb, 0x95, 0x08, 0x53, 0xd5, 0xf0, 0x36, 0x2a, 0x35,
0xba, 0x7f, 0x0f, 0xaa, 0x96, 0x51, 0xa9, 0xb9, 0x6d, 0xfb, 0x89, 0x90, 0xbd, 0x01, 0xa2, 0xaa,
0xed, 0x27, 0x42, 0xd7, 0x4f, 0x84, 0xec, 0x21, 0x88, 0xa8, 0xe3, 0x67, 0xab, 0xd4, 0xac, 0xfe,
0x03, 0xa8, 0x6a, 0x8e, 0x9f, 0xbc, 0x5e, 0x6c, 0xa8, 0x5a, 0x7a, 0xf0, 0xfe, 0x11, 0x74, 0xed,
0xfd, 0x4a, 0xd4, 0xc2, 0x6a, 0x03, 0x73, 0x15, 0xc2, 0x80, 0x99, 0xd0, 0x7f, 0x02, 0xe1, 0xea,
0x7e, 0x25, 0x42, 0x1f, 0x3d, 0x9e, 0x4d, 0x07, 0x38, 0x9c, 0xff, 0x0c, 0x2a, 0xdf, 0x74, 0x80,
0x63, 0xb9, 0xe4, 0x2a, 0x42, 0xf6, 0x17, 0x90, 0x75, 0x4a, 0xae, 0x22, 0x2c, 0xb9, 0x8a, 0x90,
0xfd, 0x15, 0x84, 0x2b, 0xae, 0xab, 0xdd, 0xad, 0x1a, 0xc5, 0x7f, 0x03, 0x99, 0x67, 0xba, 0x55,
0x23, 0xb8, 0xd8, 0x39, 0x9c, 0x91, 0x7f, 0x07, 0x55, 0xa3, 0xd8, 0x39, 0x9c, 0x8e, 0xa6, 0x03,
0x1c, 0x8b, 0xff, 0x00, 0x51, 0xd3, 0x74, 0x80, 0x03, 0xf1, 0xa3, 0x7a, 0x5d, 0xfa, 0x5e, 0xf4,
0xcf, 0xda, 0xb9, 0x1e, 0x07, 0x98, 0x46, 0x34, 0x4a, 0x77, 0xd4, 0x01, 0xc6, 0x3b, 0xd1, 0xbf,
0x6a, 0xf2, 0x59, 0x40, 0xef, 0xd4, 0xcf, 0x02, 0x20, 0x55, 0x5e, 0x88, 0xcc, 0x7a, 0xf1, 0x3e,
0xf4, 0x24, 0xd9, 0xc4, 0xf5, 0x8e, 0xe3, 0xd9, 0x30, 0x99, 0xe7, 0x07, 0x79, 0x3c, 0x64, 0x8f,
0x1e, 0x3d, 0x7a, 0xe4, 0xa9, 0x03, 0xdd, 0x96, 0x6f, 0x7f, 0x00, 0xdf, 0xbd, 0x1d, 0x0f, 0xe9,
0x9b, 0xf5, 0x2e, 0xe4, 0xf7, 0xb3, 0x83, 0x1d, 0xf6, 0x72, 0x5d, 0x0a, 0x3d, 0x05, 0xc7, 0xed,
0xfb, 0xd9, 0x8e, 0x2b, 0xe9, 0xb1, 0xef, 0xd5, 0xe5, 0x61, 0xb5, 0x24, 0xbd, 0x8b, 0x82, 0xb4,
0x9c, 0xe7, 0x13, 0xce, 0x03, 0x17, 0xec, 0x71, 0x4b, 0x3e, 0x98, 0x31, 0xcf, 0x2d, 0xa4, 0x0c,
0xf2, 0x9c, 0x1f, 0x59, 0xce, 0xaf, 0x46, 0xcc, 0xbb, 0x2f, 0x7f, 0x5d, 0x9a, 0x1f, 0x5f, 0x98,
0xf7, 0x34, 0xe4, 0x59, 0xf7, 0x42, 0xe7, 0xae, 0x8b, 0x79, 0xaf, 0xe3, 0xa5, 0xd8, 0x5c, 0x18,
0x31, 0xf1, 0xdd, 0x84, 0x2e, 0x4f, 0x55, 0xda, 0x21, 0xd5, 0x17, 0x92, 0x07, 0xf2, 0x39, 0x65,
0x3d, 0x82, 0x7f, 0xe9, 0x63, 0xa4, 0x7e, 0x2f, 0x1e, 0x2f, 0x12, 0xf9, 0x58, 0xb2, 0x1a, 0xe1,
0x8b, 0xbe, 0xff, 0x8c, 0x77, 0x31, 0x27, 0x17, 0x4e, 0x9c, 0x97, 0x76, 0x91, 0x06, 0x16, 0xd9,
0xb3, 0x8b, 0x9c, 0xe3, 0x32, 0x6d, 0xb9, 0x66, 0x64, 0xeb, 0x84, 0xc9, 0x69, 0x7b, 0xae, 0xa0,
0xe7, 0xae, 0xed, 0x79, 0xd6, 0xdf, 0x99, 0x96, 0xe1, 0xb3, 0x84, 0x14, 0xa7, 0x4c, 0x3e, 0xe9,
0x93, 0x47, 0x40, 0xee, 0xed, 0x81, 0x7c, 0x34, 0xcc, 0xfe, 0x2d, 0xb1, 0x52, 0x47, 0x4a, 0xea,
0x64, 0xd5, 0x8b, 0x0d, 0xb2, 0xaa, 0xaa, 0x5e, 0x7a, 0x13, 0xa9, 0xc9, 0xf9, 0xba, 0x46, 0x6a,
0x77, 0xf7, 0xa2, 0x5b, 0x9d, 0x0a, 0x5d, 0x25, 0x70, 0x89, 0xee, 0x78, 0xbb, 0x2d, 0x33, 0x40,
0x20, 0x69, 0x77, 0x9d, 0x34, 0xcc, 0x21, 0xdb, 0x7d, 0xcf, 0xdd, 0x77, 0x0d, 0x47, 0xf9, 0xf3,
0x8b, 0xc3, 0xed, 0xa3, 0x6c, 0xd2, 0x1d, 0x66, 0xe3, 0x38, 0x1d, 0x76, 0xe5, 0xca, 0x0f, 0x17,
0x83, 0xee, 0xbd, 0x5e, 0xf7, 0x68, 0x72, 0x8c, 0xaf, 0x8f, 0xae, 0x0d, 0x93, 0xf4, 0xda, 0x30,
0xeb, 0xe6, 0xc9, 0x3c, 0x3f, 0x8e, 0xf3, 0x18, 0xc3, 0xbd, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff,
0xf6, 0x65, 0x99, 0x4d, 0xc6, 0x16, 0x00, 0x00,
0x15, 0xc7, 0x3d, 0x23, 0xf9, 0xa2, 0xb6, 0x65, 0xc9, 0xed, 0x2c, 0xd5, 0xec, 0x53, 0xc7, 0x04,
0x32, 0x21, 0xbb, 0x76, 0x2c, 0x8f, 0xdb, 0x89, 0x80, 0x02, 0x5c, 0x78, 0x31, 0x55, 0xb0, 0x0b,
0xc3, 0x6e, 0x51, 0xb5, 0x71, 0x95, 0x6b, 0x6c, 0x8d, 0xb4, 0x22, 0xd2, 0x8c, 0x22, 0x8d, 0x76,
0x59, 0x3e, 0x05, 0xd7, 0x8f, 0xc1, 0xfd, 0x0e, 0xe1, 0x03, 0x70, 0xbf, 0x5f, 0x92, 0x40, 0x96,
0xfb, 0xf5, 0x91, 0xcb, 0xeb, 0xa6, 0x4e, 0x9f, 0xee, 0x9e, 0xee, 0xd1, 0x3e, 0xd8, 0x7e, 0xb2,
0x75, 0xf4, 0x3f, 0xe7, 0xdf, 0xdd, 0xd3, 0xbf, 0xa3, 0x9e, 0x26, 0xeb, 0xa3, 0x71, 0x96, 0x67,
0xad, 0xad, 0x6e, 0x3f, 0x19, 0x74, 0x26, 0x9b, 0xf2, 0x13, 0xbd, 0xd4, 0xcb, 0xe4, 0x3f, 0xf8,
0xf1, 0x14, 0xff, 0xb4, 0x36, 0xfe, 0x73, 0x85, 0x34, 0xaf, 0x81, 0xee, 0x66, 0x32, 0xc9, 0x3f,
0x90, 0x4c, 0x26, 0x71, 0x2f, 0xa1, 0x6f, 0x22, 0xf5, 0x6c, 0x94, 0xf7, 0xb3, 0x34, 0x1e, 0x1c,
0x9f, 0x64, 0xd9, 0x80, 0x79, 0xdc, 0x0b, 0x96, 0xa2, 0x15, 0x1d, 0xdc, 0xcf, 0xb2, 0x01, 0xfd,
0x90, 0x25, 0x4a, 0xd2, 0xe9, 0x90, 0xf9, 0xdc, 0x0b, 0x56, 0x5b, 0x57, 0x36, 0x1f, 0x69, 0xb4,
0x59, 0x36, 0xd9, 0x3c, 0x48, 0xa7, 0xc3, 0xa2, 0x24, 0x7c, 0xa2, 0x6f, 0x26, 0xab, 0xa6, 0x64,
0x3f, 0xcd, 0x77, 0x5a, 0xac, 0xc2, 0xbd, 0x60, 0x3e, 0x32, 0x46, 0xef, 0x83, 0x20, 0x7d, 0x92,
0x34, 0x8c, 0x6c, 0x82, 0xba, 0x2a, 0xf7, 0x82, 0xb5, 0xc8, 0x64, 0x7f, 0xb8, 0x3f, 0x23, 0x9c,
0xa2, 0x70, 0x9e, 0x7b, 0x41, 0xbd, 0x10, 0xde, 0x42, 0x61, 0xc9, 0x58, 0x84, 0x6c, 0x81, 0x7b,
0x41, 0xc5, 0x31, 0x16, 0xe1, 0x8c, 0xb1, 0x08, 0xd9, 0x22, 0xf7, 0x02, 0xea, 0x1a, 0x97, 0x84,
0x53, 0x14, 0x2e, 0x71, 0x2f, 0xa8, 0xba, 0xc6, 0x22, 0xa4, 0x4f, 0x93, 0xb5, 0xa2, 0x62, 0xb7,
0xff, 0xb1, 0xa4, 0xb3, 0xd3, 0x62, 0x35, 0xee, 0x05, 0x8d, 0xa8, 0x69, 0x6a, 0xaa, 0x38, 0x7d,
0x8a, 0x98, 0xd8, 0xb1, 0xd6, 0x12, 0xee, 0x05, 0x8b, 0x91, 0x71, 0xbb, 0xa6, 0xa4, 0xf6, 0x84,
0xba, 0x83, 0x2c, 0xce, 0xd9, 0x32, 0xf7, 0x02, 0xbf, 0x98, 0xd0, 0x35, 0x08, 0x3e, 0xc2, 0x5e,
0x84, 0x6c, 0x85, 0x7b, 0x41, 0xb3, 0x6c, 0x2f, 0xc2, 0x59, 0x7b, 0x11, 0xb2, 0x3a, 0xf7, 0x82,
0x85, 0x92, 0x7d, 0x69, 0xfe, 0x9d, 0x6c, 0x7a, 0x32, 0x48, 0xd8, 0x2a, 0xf7, 0x02, 0xaf, 0x98,
0xff, 0x7b, 0x64, 0xd4, 0x5d, 0xd1, 0x7c, 0xdc, 0x4f, 0x7b, 0xac, 0xc1, 0xbd, 0xa0, 0x66, 0xad,
0xa8, 0x8c, 0x3a, 0x13, 0x3a, 0xb9, 0x9f, 0x27, 0x13, 0xd6, 0xe4, 0x5e, 0xb0, 0x52, 0x4c, 0x68,
0x1f, 0x82, 0xf4, 0xb6, 0x35, 0x46, 0xb5, 0xd1, 0xd8, 0x1a, 0xf7, 0x82, 0xe5, 0xd6, 0xd6, 0x59,
0xf7, 0xa5, 0xfa, 0x5b, 0x4c, 0x4a, 0x53, 0xf1, 0x7c, 0xb1, 0xe1, 0x7b, 0xe3, 0x6c, 0x3a, 0x62,
0x94, 0x7b, 0x01, 0x69, 0xed, 0x9e, 0xb5, 0xf0, 0x0d, 0x95, 0xfc, 0x5e, 0x48, 0x8e, 0xdc, 0x5a,
0x80, 0xdc, 0x38, 0x79, 0x71, 0xda, 0x1f, 0x27, 0x1d, 0x44, 0x2e, 0xe1, 0x3e, 0x20, 0xa7, 0x83,
0x1a, 0x39, 0x23, 0x92, 0xc8, 0x75, 0xb9, 0x7f, 0x7e, 0xe4, 0x74, 0x09, 0x8d, 0x9c, 0x29, 0x89,
0x84, 0xf4, 0xb8, 0x0f, 0xc8, 0xe9, 0xa8, 0x41, 0xce, 0xc8, 0x14, 0x72, 0x77, 0xb8, 0x0f, 0xc8,
0xe9, 0x70, 0x81, 0x9c, 0x11, 0x2a, 0xe4, 0xfa, 0xdc, 0x07, 0xe4, 0x74, 0xb8, 0x40, 0xce, 0x36,
0x16, 0x21, 0xfb, 0x28, 0xf7, 0x01, 0x39, 0xcb, 0x18, 0x77, 0x92, 0x63, 0x2c, 0x42, 0xf6, 0x02,
0xf7, 0x01, 0x39, 0xdb, 0xb8, 0x24, 0x54, 0xc8, 0x0d, 0xb8, 0x0f, 0xc8, 0xd9, 0xc6, 0x88, 0x5c,
0x51, 0x51, 0x63, 0x34, 0xe4, 0x3e, 0x20, 0x67, 0x6a, 0x5a, 0xc8, 0x19, 0xb1, 0xd6, 0xa6, 0xdc,
0x07, 0xe4, 0x74, 0xdc, 0x42, 0xae, 0x90, 0x4a, 0xe4, 0x32, 0xee, 0x03, 0x72, 0x46, 0xa8, 0x91,
0x2b, 0xd9, 0x8b, 0x90, 0x8d, 0xb8, 0x0f, 0xc8, 0xb9, 0xf6, 0x88, 0x9c, 0x6b, 0x2f, 0x42, 0xf6,
0x22, 0xf7, 0x01, 0x39, 0xc7, 0xbe, 0x34, 0x7f, 0x85, 0xdc, 0x98, 0xfb, 0x80, 0x9c, 0x0e, 0x17,
0xc8, 0x15, 0x03, 0x40, 0xe4, 0x26, 0xdc, 0x07, 0xe4, 0x8c, 0xbd, 0x41, 0xae, 0xd8, 0x92, 0x12,
0xb9, 0x9c, 0xfb, 0x80, 0x9c, 0xd9, 0x93, 0x1a, 0x39, 0x23, 0xd3, 0xc8, 0x4d, 0xb9, 0x7f, 0x21,
0xe4, 0x74, 0x21, 0x0b, 0x39, 0x1d, 0x42, 0xe4, 0xee, 0x72, 0xff, 0x3c, 0xc8, 0x45, 0x2a, 0x59,
0x21, 0xe7, 0xd4, 0xa2, 0x4f, 0x40, 0xf1, 0x51, 0x12, 0xe7, 0x1a, 0xb9, 0xef, 0x79, 0xbc, 0x82,
0xcc, 0x61, 0x54, 0x32, 0x17, 0x59, 0x2a, 0xc9, 0xdc, 0xf7, 0x41, 0x75, 0x01, 0xe8, 0xb0, 0x86,
0x84, 0xee, 0x2d, 0xb0, 0xb2, 0xaa, 0x26, 0x32, 0xf2, 0x03, 0x28, 0x2a, 0xa9, 0xc3, 0x30, 0x52,
0x17, 0xc0, 0xa3, 0x52, 0x3a, 0x45, 0xdd, 0x0f, 0x41, 0x28, 0xb1, 0xc3, 0xb8, 0xc2, 0xce, 0x56,
0x2a, 0xec, 0x7e, 0x04, 0xca, 0x7a, 0xa1, 0x54, 0xdc, 0x95, 0xbc, 0x45, 0xc8, 0x7e, 0x0c, 0xc2,
0x8a, 0xe3, 0x2d, 0xc2, 0x19, 0x6f, 0x11, 0xb2, 0x9f, 0x80, 0x90, 0xba, 0xde, 0x25, 0xa5, 0x22,
0xef, 0xa7, 0xa0, 0xac, 0xba, 0xde, 0x22, 0xa4, 0x57, 0x60, 0xef, 0xeb, 0x9a, 0x1a, 0xa7, 0x9f,
0x81, 0x56, 0xb2, 0xa7, 0xaa, 0x6a, 0xf6, 0xde, 0x4a, 0x4c, 0xcc, 0xb0, 0xf7, 0x73, 0x10, 0x4b,
0xf8, 0xf0, 0x0b, 0x0d, 0x9f, 0x3d, 0x2b, 0x84, 0xef, 0x17, 0xa0, 0xf4, 0x8b, 0x59, 0x21, 0x7d,
0xb3, 0x23, 0x10, 0x21, 0xfb, 0x25, 0x48, 0x9b, 0xe5, 0x11, 0x88, 0x70, 0x76, 0x04, 0x22, 0x64,
0xbf, 0x02, 0xf1, 0x42, 0x69, 0x04, 0xa5, 0x55, 0x50, 0xfc, 0xfd, 0x1a, 0xa4, 0x5e, 0xb1, 0x0a,
0x0a, 0x40, 0x67, 0x65, 0x11, 0xc0, 0xdf, 0x80, 0xb2, 0x66, 0xad, 0x2c, 0x12, 0x68, 0xcf, 0x0a,
0x09, 0xfc, 0x2d, 0x08, 0x57, 0x8a, 0x59, 0x21, 0x82, 0xcf, 0x5b, 0xe3, 0xd4, 0x08, 0xbe, 0x0c,
0xca, 0x8b, 0x31, 0x88, 0x95, 0x34, 0x83, 0x47, 0x05, 0x00, 0xc8, 0xe0, 0x2b, 0x50, 0xf9, 0x5c,
0x10, 0x62, 0xb6, 0x81, 0xd0, 0x2a, 0x46, 0x03, 0xb2, 0xd2, 0x49, 0xba, 0xf1, 0x74, 0x90, 0x23,
0x83, 0x9f, 0x83, 0x53, 0xe4, 0x52, 0xbb, 0x9a, 0x8f, 0xa7, 0x49, 0xb4, 0xac, 0xbe, 0x92, 0x20,
0xde, 0x2a, 0x94, 0x92, 0xc3, 0xcf, 0x5f, 0xe0, 0xbc, 0xd9, 0xae, 0xdc, 0xb8, 0x7e, 0x60, 0xca,
0x4a, 0x16, 0x9f, 0x24, 0x75, 0x5d, 0x16, 0xb9, 0xf9, 0x02, 0xd4, 0x9d, 0x6f, 0x7b, 0xdb, 0x91,
0xf6, 0x43, 0x18, 0x9f, 0x22, 0xab, 0x5a, 0xa8, 0x58, 0xfc, 0x22, 0x28, 0xd7, 0x40, 0xa9, 0x4b,
0x28, 0x1a, 0x2d, 0xa9, 0x82, 0xf1, 0x4b, 0x20, 0xad, 0xdb, 0xd2, 0x5b, 0xfa, 0xf7, 0xd2, 0xb6,
0x17, 0x21, 0xfb, 0x32, 0x28, 0x2b, 0x25, 0x7b, 0xf9, 0x53, 0xe0, 0xd8, 0x8b, 0x90, 0x7d, 0x05,
0x94, 0xb4, 0x6c, 0xef, 0x4a, 0x15, 0x8f, 0x5f, 0x05, 0x69, 0xb5, 0x6c, 0x2f, 0x42, 0x7a, 0x95,
0x34, 0x4d, 0x55, 0xcd, 0xd8, 0xd7, 0x40, 0xdc, 0x00, 0x71, 0x43, 0xd7, 0xd5, 0x48, 0x3e, 0x4d,
0x74, 0xc8, 0x10, 0xf9, 0x75, 0x50, 0x2f, 0x82, 0x5a, 0x9b, 0x5e, 0x33, 0xfc, 0x9a, 0xa9, 0x21,
0x92, 0xdf, 0x00, 0xa9, 0xdf, 0xae, 0xee, 0x6c, 0x6e, 0x87, 0x66, 0x76, 0xc8, 0xe5, 0xcc, 0x38,
0x44, 0xc8, 0xbe, 0x09, 0xf2, 0xe6, 0xec, 0x38, 0xe4, 0x6f, 0xb8, 0x3b, 0x0e, 0x11, 0xb2, 0x6f,
0x81, 0x7a, 0x61, 0x66, 0x1c, 0x22, 0xa4, 0x9b, 0xc5, 0x72, 0x28, 0x30, 0xbf, 0x0d, 0x5a, 0xaf,
0xbd, 0x00, 0x03, 0xd9, 0xde, 0x35, 0x6b, 0xa2, 0xf8, 0xdc, 0xb3, 0x56, 0x1a, 0xf1, 0xfc, 0x0e,
0xe8, 0x6b, 0xed, 0xc6, 0x9d, 0x64, 0x30, 0xc8, 0xae, 0x6c, 0xdc, 0xcb, 0xc6, 0x83, 0xce, 0xe3,
0x1b, 0xa4, 0x58, 0x77, 0xc4, 0xf5, 0xed, 0xc5, 0x84, 0x91, 0xd6, 0x97, 0x20, 0x6f, 0xa5, 0xfd,
0x06, 0xcc, 0x3b, 0xda, 0xd9, 0x11, 0x47, 0xad, 0xdd, 0xdd, 0xa3, 0xd6, 0x9e, 0x38, 0xda, 0xd9,
0xdd, 0x33, 0x4b, 0x80, 0x10, 0x6f, 0x93, 0x75, 0x9d, 0xfd, 0xf1, 0x64, 0x9c, 0x69, 0xef, 0xd7,
0xd0, 0x7b, 0x2e, 0x5a, 0x53, 0xdf, 0xde, 0x4e, 0xc6, 0x99, 0x32, 0xdc, 0x22, 0xd4, 0x49, 0x41,
0xd7, 0x07, 0xe8, 0x3a, 0x17, 0x35, 0xad, 0x0c, 0xf4, 0xd8, 0x23, 0x8f, 0x39, 0x8f, 0xe4, 0x38,
0x4d, 0x7a, 0xfd, 0xb4, 0xcb, 0x3e, 0x51, 0xc1, 0x27, 0x73, 0xb5, 0x9f, 0x76, 0x23, 0x6a, 0x3f,
0x99, 0xeb, 0x52, 0x40, 0x45, 0x39, 0x71, 0x94, 0x4d, 0x20, 0xf1, 0x93, 0x98, 0x58, 0x99, 0xc9,
0xfb, 0xa0, 0xfc, 0x9e, 0x3e, 0x43, 0xd6, 0x4a, 0x86, 0x71, 0xca, 0x3e, 0xa5, 0x92, 0xd2, 0x38,
0x35, 0x8f, 0x16, 0xcd, 0xe2, 0x94, 0x3e, 0x47, 0x2e, 0xb9, 0x4f, 0x4b, 0x8f, 0xf1, 0xd3, 0x15,
0xf9, 0xd0, 0x70, 0x8c, 0xeb, 0xce, 0x23, 0x53, 0x83, 0x7c, 0x76, 0x26, 0x55, 0x8d, 0xf2, 0x33,
0x98, 0x5a, 0x99, 0xcd, 0x54, 0xc3, 0x6c, 0x15, 0x0b, 0xa9, 0x4d, 0xe3, 0x94, 0x7d, 0x56, 0xa5,
0xc1, 0x38, 0x9b, 0xae, 0x61, 0x9c, 0xd2, 0x53, 0xd2, 0x18, 0xc6, 0x23, 0x6c, 0x1a, 0x8a, 0xdd,
0xff, 0x56, 0x64, 0xcf, 0x6d, 0x9f, 0xb9, 0xe7, 0xc6, 0x23, 0xd9, 0x5b, 0x24, 0xe1, 0x07, 0x69,
0x3e, 0xbe, 0x1f, 0xd5, 0x87, 0x76, 0x8c, 0x0e, 0x08, 0x05, 0x13, 0xdc, 0x0b, 0xc7, 0x43, 0xd5,
0xdb, 0xff, 0x87, 0x3e, 0xef, 0x38, 0x87, 0x0f, 0xee, 0x18, 0x15, 0x40, 0xab, 0xe6, 0xb0, 0x14,
0xa6, 0x5d, 0x02, 0x31, 0x8d, 0x14, 0xb6, 0xd9, 0xff, 0xa3, 0xd7, 0xdb, 0xce, 0xe1, 0xa5, 0xc0,
0x83, 0xf6, 0x8a, 0x4e, 0xab, 0x43, 0x27, 0x48, 0x39, 0x21, 0x59, 0x9a, 0x64, 0x5d, 0x6c, 0xf9,
0x2f, 0xc3, 0xcb, 0xfb, 0xd2, 0xe1, 0x5c, 0x54, 0x93, 0x41, 0xd9, 0xec, 0xaf, 0x6b, 0x85, 0x1c,
0xc3, 0x2b, 0xd5, 0xf3, 0xb7, 0x7a, 0x53, 0x4f, 0x3a, 0x6e, 0x90, 0x65, 0xac, 0x87, 0xed, 0xf8,
0x55, 0x28, 0x38, 0x7f, 0x38, 0x17, 0xa1, 0x0b, 0x36, 0xf8, 0x27, 0xc8, 0x0a, 0x6a, 0x54, 0x7b,
0xff, 0x9d, 0xbc, 0x54, 0x38, 0x9c, 0x8b, 0x30, 0x55, 0xf5, 0x76, 0xa3, 0x52, 0x9d, 0xfd, 0xf7,
0xa0, 0xaa, 0x1b, 0x95, 0x6a, 0xeb, 0xb6, 0x9f, 0x08, 0xd9, 0x6b, 0x20, 0xaa, 0xd8, 0x7e, 0x22,
0x74, 0xfd, 0x44, 0xc8, 0x1e, 0x80, 0x88, 0x3a, 0x7e, 0xb6, 0x4a, 0xb5, 0xf2, 0x3f, 0x80, 0xaa,
0xea, 0xf8, 0xc9, 0xd3, 0xc7, 0xaa, 0xaa, 0xa5, 0xfb, 0xf2, 0x1f, 0x41, 0xd7, 0x38, 0x9c, 0x8b,
0xea, 0x58, 0xad, 0x6b, 0x4e, 0x4a, 0x18, 0x30, 0x0d, 0xfc, 0x4f, 0x20, 0x5c, 0x3c, 0x9c, 0x8b,
0xd0, 0x47, 0x77, 0x6f, 0x33, 0x03, 0xec, 0xdd, 0x7f, 0x06, 0x95, 0x6f, 0x66, 0x80, 0x5d, 0xbb,
0xe4, 0x2a, 0x42, 0xf6, 0x17, 0x90, 0x35, 0x4b, 0xae, 0x22, 0x2c, 0xb9, 0x8a, 0x90, 0xfd, 0x15,
0x84, 0x0b, 0xae, 0xab, 0x3d, 0x5b, 0xd5, 0xa9, 0xff, 0x06, 0x32, 0xcf, 0xcc, 0x56, 0x75, 0xe8,
0x62, 0xe5, 0xb0, 0x47, 0xfe, 0x1d, 0x54, 0xb5, 0x62, 0xe5, 0xb0, 0x3b, 0x9a, 0x19, 0x60, 0x5b,
0xfc, 0x07, 0x88, 0x56, 0xcc, 0x0c, 0xb0, 0x21, 0x7e, 0x44, 0x8f, 0x4b, 0x1f, 0x9b, 0xfe, 0x59,
0xbd, 0xd0, 0x6d, 0x81, 0x99, 0x88, 0x46, 0xe9, 0x96, 0xda, 0xc0, 0x78, 0x64, 0xfa, 0x57, 0x55,
0x5e, 0x15, 0xb4, 0xce, 0x7c, 0x55, 0x00, 0xa9, 0xf2, 0xbc, 0x64, 0xc6, 0x8b, 0xc7, 0xa5, 0x67,
0xc8, 0x1a, 0x8e, 0x77, 0x10, 0x8f, 0x7b, 0xc9, 0x24, 0x3f, 0xce, 0xe3, 0x1e, 0x7b, 0xf8, 0xf0,
0xe1, 0x43, 0x4f, 0x6d, 0xe8, 0x86, 0xfc, 0xfa, 0xfd, 0xf8, 0xed, 0xcd, 0xb8, 0x47, 0x1f, 0xd7,
0xab, 0x90, 0xdf, 0xcb, 0x8e, 0xb7, 0xd9, 0x4b, 0xf3, 0x52, 0xe8, 0x29, 0x38, 0x6e, 0xde, 0xcb,
0xb6, 0x5d, 0x49, 0x8b, 0x7d, 0x77, 0x5e, 0x6e, 0x56, 0x4b, 0xd2, 0xba, 0x2c, 0x48, 0xdd, 0xb9,
0xbe, 0x70, 0xee, 0x63, 0x70, 0x8e, 0xeb, 0xf2, 0xde, 0xc6, 0x5c, 0x6b, 0x48, 0x19, 0xe4, 0x39,
0xef, 0x60, 0xce, 0x4b, 0x25, 0xe6, 0xdd, 0x93, 0x2f, 0x9f, 0xe6, 0xdd, 0x0c, 0xf3, 0xf6, 0x20,
0xcf, 0x3a, 0x36, 0x3a, 0x47, 0x61, 0xcc, 0x7b, 0x15, 0xcf, 0xcc, 0xe6, 0x3c, 0x89, 0x89, 0xef,
0x22, 0x74, 0xb6, 0xab, 0xd2, 0x26, 0xa9, 0xbc, 0x90, 0xdc, 0x97, 0xd7, 0x98, 0xf3, 0x11, 0xfc,
0x4b, 0x1f, 0x23, 0xf3, 0x77, 0xe3, 0xc1, 0x34, 0x91, 0xb7, 0x96, 0x95, 0x08, 0x3f, 0xb4, 0xfd,
0x67, 0xbd, 0xcb, 0x39, 0xb9, 0xf4, 0xc8, 0x7e, 0x69, 0x17, 0xa9, 0x61, 0x91, 0x03, 0xbb, 0xc8,
0x05, 0xce, 0xda, 0x96, 0x6b, 0x46, 0xd6, 0x1f, 0xd1, 0x39, 0x6d, 0xcf, 0x05, 0xf4, 0xdc, 0xb7,
0x3d, 0xcf, 0xfb, 0x1a, 0x6a, 0x19, 0x3e, 0x47, 0x48, 0xb1, 0xcb, 0xe4, 0x45, 0xa0, 0xdc, 0x02,
0x72, 0x6d, 0x8f, 0xe5, 0xcd, 0x31, 0xfb, 0xb7, 0xc4, 0x4a, 0x6d, 0x29, 0xa9, 0x93, 0x55, 0x2f,
0xd7, 0xc8, 0xa2, 0xaa, 0xba, 0xf1, 0x46, 0x52, 0x95, 0xfd, 0x75, 0x89, 0x54, 0x6f, 0x1f, 0x44,
0x37, 0x9a, 0x73, 0x74, 0x91, 0xc0, 0x19, 0xbb, 0xe9, 0xed, 0xd7, 0x4d, 0x03, 0x81, 0xa4, 0xfd,
0x65, 0x52, 0x33, 0x9b, 0x6c, 0xff, 0xdd, 0xb7, 0xdf, 0xd9, 0xeb, 0xe7, 0x77, 0xa6, 0x27, 0x9b,
0xa7, 0xd9, 0x70, 0xab, 0x97, 0x0d, 0xe2, 0xb4, 0xb7, 0x25, 0x47, 0x7e, 0x32, 0xed, 0x6e, 0xdd,
0x6d, 0x6d, 0x9d, 0x0e, 0x3b, 0xf8, 0xf9, 0xf4, 0x6a, 0x2f, 0x49, 0xaf, 0xf6, 0xb2, 0xad, 0x3c,
0x99, 0xe4, 0x9d, 0x38, 0x8f, 0x31, 0xdc, 0x7a, 0x3d, 0x00, 0x00, 0xff, 0xff, 0x50, 0xd6, 0x5a,
0xc4, 0xe5, 0x16, 0x00, 0x00,
}

View File

@ -86,8 +86,8 @@ message FieldTestMessage {
optional sfixed64 default_sfixed64 = 312 [default=1];
optional fixed64 default_fixed64 = 313 [default=1];
optional double default_double = 314 [default=3.1415];
optional string default_string = 315 [default="x,y"];
optional bytes default_bytes = 316 [default="x,y"];
optional string default_string = 315 [default="hello,\"world!\"\n"];
optional bytes default_bytes = 316 [default="hello,\xde\xad\xbe\xef"];
optional string default_zero_string = 350 [default=""];
optional bytes default_zero_bytes = 351 [default=""];