From f8d4b7d1c01eecb54edc4169d6b8a0d3c39a730c Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 6 Oct 2019 22:35:05 -0700 Subject: [PATCH] support basic json filtering and selection --- go.mod | 1 + weed/pb/volume_server.proto | 11 +- weed/pb/volume_server_pb/volume_server.pb.go | 377 ++++++++++--------- weed/query/json/query_json.go | 106 +++++- weed/query/json/query_json_test.go | 65 +++- weed/query/json/seralize.go | 17 + weed/server/volume_grpc_query.go | 27 +- 7 files changed, 418 insertions(+), 186 deletions(-) create mode 100644 weed/query/json/seralize.go diff --git a/go.mod b/go.mod index c9717b6ab..d25bf41e4 100644 --- a/go.mod +++ b/go.mod @@ -87,6 +87,7 @@ require ( github.com/stretchr/testify v1.4.0 // indirect github.com/syndtr/goleveldb v1.0.0 github.com/tidwall/gjson v1.3.2 + github.com/tidwall/match v1.0.1 github.com/uber-go/atomic v1.4.0 // indirect github.com/uber/jaeger-client-go v2.17.0+incompatible // indirect github.com/uber/jaeger-lib v2.0.0+incompatible // indirect diff --git a/weed/pb/volume_server.proto b/weed/pb/volume_server.proto index 972eb3ab7..c330f7fb2 100644 --- a/weed/pb/volume_server.proto +++ b/weed/pb/volume_server.proto @@ -324,9 +324,14 @@ message MemStatus { } message QueryRequest { - string select_expression = 1; + repeated string selections = 1; repeated string from_file_ids = 2; - string where_expression = 3; + message Filter { + string field = 1; + string operand = 2; + string value = 3; + } + Filter filter = 3; message InputSerialization { // NONE | GZIP | BZIP2 @@ -372,5 +377,5 @@ message QueryRequest { OutputSerialization output_serialization = 5; } message QueriedStripe { - repeated bytes records = 1; + bytes records = 1; } diff --git a/weed/pb/volume_server_pb/volume_server.pb.go b/weed/pb/volume_server_pb/volume_server.pb.go index de7ecbb9d..8b84f1cfd 100644 --- a/weed/pb/volume_server_pb/volume_server.pb.go +++ b/weed/pb/volume_server_pb/volume_server.pb.go @@ -1387,9 +1387,9 @@ func (m *MemStatus) GetStack() uint64 { } type QueryRequest struct { - SelectExpression string `protobuf:"bytes,1,opt,name=select_expression,json=selectExpression" json:"select_expression,omitempty"` + Selections []string `protobuf:"bytes,1,rep,name=selections" json:"selections,omitempty"` FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds" json:"from_file_ids,omitempty"` - WhereExpression string `protobuf:"bytes,3,opt,name=where_expression,json=whereExpression" json:"where_expression,omitempty"` + Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter" json:"filter,omitempty"` InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization" json:"input_serialization,omitempty"` OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization" json:"output_serialization,omitempty"` } @@ -1399,11 +1399,11 @@ func (m *QueryRequest) String() string { return proto.CompactTextStri func (*QueryRequest) ProtoMessage() {} func (*QueryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{56} } -func (m *QueryRequest) GetSelectExpression() string { +func (m *QueryRequest) GetSelections() []string { if m != nil { - return m.SelectExpression + return m.Selections } - return "" + return nil } func (m *QueryRequest) GetFromFileIds() []string { @@ -1413,11 +1413,11 @@ func (m *QueryRequest) GetFromFileIds() []string { return nil } -func (m *QueryRequest) GetWhereExpression() string { +func (m *QueryRequest) GetFilter() *QueryRequest_Filter { if m != nil { - return m.WhereExpression + return m.Filter } - return "" + return nil } func (m *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization { @@ -1434,6 +1434,38 @@ func (m *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerializatio return nil } +type QueryRequest_Filter struct { + Field string `protobuf:"bytes,1,opt,name=field" json:"field,omitempty"` + Operand string `protobuf:"bytes,2,opt,name=operand" json:"operand,omitempty"` + Value string `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"` +} + +func (m *QueryRequest_Filter) Reset() { *m = QueryRequest_Filter{} } +func (m *QueryRequest_Filter) String() string { return proto.CompactTextString(m) } +func (*QueryRequest_Filter) ProtoMessage() {} +func (*QueryRequest_Filter) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{56, 0} } + +func (m *QueryRequest_Filter) GetField() string { + if m != nil { + return m.Field + } + return "" +} + +func (m *QueryRequest_Filter) GetOperand() string { + if m != nil { + return m.Operand + } + return "" +} + +func (m *QueryRequest_Filter) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + type QueryRequest_InputSerialization struct { // NONE | GZIP | BZIP2 CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType" json:"compression_type,omitempty"` @@ -1446,7 +1478,7 @@ func (m *QueryRequest_InputSerialization) Reset() { *m = QueryRequest_In func (m *QueryRequest_InputSerialization) String() string { return proto.CompactTextString(m) } func (*QueryRequest_InputSerialization) ProtoMessage() {} func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{56, 0} + return fileDescriptor0, []int{56, 1} } func (m *QueryRequest_InputSerialization) GetCompressionType() string { @@ -1494,7 +1526,7 @@ func (m *QueryRequest_InputSerialization_CSVInput) Reset() { func (m *QueryRequest_InputSerialization_CSVInput) String() string { return proto.CompactTextString(m) } func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {} func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{56, 0, 0} + return fileDescriptor0, []int{56, 1, 0} } func (m *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string { @@ -1556,7 +1588,7 @@ func (m *QueryRequest_InputSerialization_JSONInput) Reset() { func (m *QueryRequest_InputSerialization_JSONInput) String() string { return proto.CompactTextString(m) } func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {} func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{56, 0, 1} + return fileDescriptor0, []int{56, 1, 1} } func (m *QueryRequest_InputSerialization_JSONInput) GetType() string { @@ -1577,7 +1609,7 @@ func (m *QueryRequest_InputSerialization_ParquetInput) String() string { } func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {} func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{56, 0, 2} + return fileDescriptor0, []int{56, 1, 2} } type QueryRequest_OutputSerialization struct { @@ -1589,7 +1621,7 @@ func (m *QueryRequest_OutputSerialization) Reset() { *m = QueryRequest_O func (m *QueryRequest_OutputSerialization) String() string { return proto.CompactTextString(m) } func (*QueryRequest_OutputSerialization) ProtoMessage() {} func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{56, 1} + return fileDescriptor0, []int{56, 2} } func (m *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput { @@ -1622,7 +1654,7 @@ func (m *QueryRequest_OutputSerialization_CSVOutput) String() string { } func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {} func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{56, 1, 0} + return fileDescriptor0, []int{56, 2, 0} } func (m *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string { @@ -1672,7 +1704,7 @@ func (m *QueryRequest_OutputSerialization_JSONOutput) String() string { } func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {} func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{56, 1, 1} + return fileDescriptor0, []int{56, 2, 1} } func (m *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string { @@ -1683,7 +1715,7 @@ func (m *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() strin } type QueriedStripe struct { - Records [][]byte `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"` + Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"` } func (m *QueriedStripe) Reset() { *m = QueriedStripe{} } @@ -1691,7 +1723,7 @@ func (m *QueriedStripe) String() string { return proto.CompactTextStr func (*QueriedStripe) ProtoMessage() {} func (*QueriedStripe) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{57} } -func (m *QueriedStripe) GetRecords() [][]byte { +func (m *QueriedStripe) GetRecords() []byte { if m != nil { return m.Records } @@ -1756,6 +1788,7 @@ func init() { proto.RegisterType((*DiskStatus)(nil), "volume_server_pb.DiskStatus") proto.RegisterType((*MemStatus)(nil), "volume_server_pb.MemStatus") proto.RegisterType((*QueryRequest)(nil), "volume_server_pb.QueryRequest") + proto.RegisterType((*QueryRequest_Filter)(nil), "volume_server_pb.QueryRequest.Filter") proto.RegisterType((*QueryRequest_InputSerialization)(nil), "volume_server_pb.QueryRequest.InputSerialization") proto.RegisterType((*QueryRequest_InputSerialization_CSVInput)(nil), "volume_server_pb.QueryRequest.InputSerialization.CSVInput") proto.RegisterType((*QueryRequest_InputSerialization_JSONInput)(nil), "volume_server_pb.QueryRequest.InputSerialization.JSONInput") @@ -2843,158 +2876,160 @@ var _VolumeServer_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("volume_server.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 2440 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x1a, 0x4d, 0x73, 0x1c, 0x47, - 0x55, 0xeb, 0xdd, 0xf5, 0xee, 0xbe, 0x5d, 0x59, 0x72, 0x4b, 0xb6, 0xd6, 0x63, 0x4b, 0x56, 0x26, - 0x21, 0x96, 0xed, 0x44, 0x76, 0x14, 0x20, 0x21, 0xe1, 0xcb, 0x96, 0x65, 0x10, 0x49, 0x64, 0x32, - 0xeb, 0x98, 0x80, 0x53, 0x4c, 0x8d, 0x66, 0x5a, 0xd6, 0xa0, 0xd9, 0xe9, 0xf1, 0x74, 0x8f, 0xec, - 0x75, 0xc1, 0x29, 0x5c, 0xf9, 0x01, 0x1c, 0x29, 0x4e, 0x70, 0xe0, 0xca, 0x0f, 0xe0, 0xc2, 0x0f, - 0x80, 0x5f, 0xc0, 0x99, 0x03, 0x67, 0x2e, 0x54, 0x7f, 0xcc, 0xec, 0x7c, 0x6a, 0x47, 0xb1, 0xab, - 0xa8, 0xdc, 0x7a, 0x5e, 0xbf, 0xef, 0x7e, 0xaf, 0xfb, 0xf5, 0xeb, 0x81, 0xa5, 0x63, 0xe2, 0x45, - 0x63, 0x6c, 0x52, 0x1c, 0x1e, 0xe3, 0x70, 0x33, 0x08, 0x09, 0x23, 0x68, 0x31, 0x03, 0x34, 0x83, - 0x7d, 0xfd, 0x16, 0xa0, 0xbb, 0x16, 0xb3, 0x0f, 0xef, 0x61, 0x0f, 0x33, 0x6c, 0xe0, 0xa7, 0x11, - 0xa6, 0x0c, 0x5d, 0x82, 0xee, 0x81, 0xeb, 0x61, 0xd3, 0x75, 0xe8, 0xb0, 0xb1, 0xde, 0xdc, 0xe8, - 0x19, 0x1d, 0xfe, 0xbd, 0xeb, 0x50, 0xfd, 0x01, 0x2c, 0x65, 0x08, 0x68, 0x40, 0x7c, 0x8a, 0xd1, - 0xfb, 0xd0, 0x09, 0x31, 0x8d, 0x3c, 0x26, 0x09, 0xfa, 0x5b, 0x6b, 0x9b, 0x79, 0x59, 0x9b, 0x09, - 0x49, 0xe4, 0x31, 0x23, 0x46, 0xd7, 0xbf, 0x6c, 0xc0, 0x20, 0x3d, 0x83, 0x56, 0xa0, 0xa3, 0x84, - 0x0f, 0x1b, 0xeb, 0x8d, 0x8d, 0x9e, 0x71, 0x56, 0xca, 0x46, 0x17, 0xe1, 0x2c, 0x65, 0x16, 0x8b, - 0xe8, 0xf0, 0xcc, 0x7a, 0x63, 0xa3, 0x6d, 0xa8, 0x2f, 0xb4, 0x0c, 0x6d, 0x1c, 0x86, 0x24, 0x1c, - 0x36, 0x05, 0xba, 0xfc, 0x40, 0x08, 0x5a, 0xd4, 0x7d, 0x81, 0x87, 0xad, 0xf5, 0xc6, 0xc6, 0xbc, - 0x21, 0xc6, 0x68, 0x08, 0x9d, 0x63, 0x1c, 0x52, 0x97, 0xf8, 0xc3, 0xb6, 0x00, 0xc7, 0x9f, 0x7a, - 0x07, 0xda, 0x3b, 0xe3, 0x80, 0x4d, 0xf4, 0xf7, 0x60, 0xf8, 0xc8, 0xb2, 0xa3, 0x68, 0xfc, 0x48, - 0xa8, 0xbf, 0x7d, 0x88, 0xed, 0xa3, 0xd8, 0x2d, 0x97, 0xa1, 0xa7, 0x8c, 0x52, 0xba, 0xcd, 0x1b, - 0x5d, 0x09, 0xd8, 0x75, 0xf4, 0x1f, 0xc2, 0xa5, 0x12, 0x42, 0xe5, 0x9e, 0xd7, 0x61, 0xfe, 0x89, - 0x15, 0xee, 0x5b, 0x4f, 0xb0, 0x19, 0x5a, 0xcc, 0x25, 0x82, 0xba, 0x61, 0x0c, 0x14, 0xd0, 0xe0, - 0x30, 0xfd, 0x31, 0x68, 0x19, 0x0e, 0x64, 0x1c, 0x58, 0x36, 0xab, 0x23, 0x1c, 0xad, 0x43, 0x3f, - 0x08, 0xb1, 0xe5, 0x79, 0xc4, 0xb6, 0x18, 0x16, 0xfe, 0x69, 0x1a, 0x69, 0x90, 0xbe, 0x0a, 0x97, - 0x4b, 0x99, 0x4b, 0x05, 0xf5, 0xf7, 0x73, 0xda, 0x93, 0xf1, 0xd8, 0xad, 0x25, 0x5a, 0xbf, 0x52, - 0xd0, 0x5a, 0x50, 0x2a, 0xbe, 0xdf, 0xc9, 0xcd, 0x7a, 0xd8, 0xf2, 0xa3, 0xa0, 0x16, 0xe3, 0xbc, - 0xc6, 0x31, 0x69, 0xc2, 0x79, 0x45, 0x86, 0xcd, 0x36, 0xf1, 0x3c, 0x6c, 0x33, 0x97, 0xf8, 0x31, - 0xdb, 0x35, 0x00, 0x3b, 0x01, 0xaa, 0x20, 0x4a, 0x41, 0x74, 0x0d, 0x86, 0x45, 0x52, 0xc5, 0xf6, - 0xcf, 0x0d, 0xb8, 0x70, 0x47, 0x39, 0x4d, 0x0a, 0xae, 0xb5, 0x00, 0x59, 0x91, 0x67, 0xf2, 0x22, - 0xf3, 0x0b, 0xd4, 0x2c, 0x2c, 0x10, 0xc7, 0x08, 0x71, 0xe0, 0xb9, 0xb6, 0x25, 0x58, 0xb4, 0x04, - 0x8b, 0x34, 0x08, 0x2d, 0x42, 0x93, 0x31, 0x4f, 0x44, 0x6e, 0xcf, 0xe0, 0x43, 0x7d, 0x08, 0x17, - 0xf3, 0xba, 0x2a, 0x33, 0xbe, 0x0d, 0x2b, 0x12, 0x32, 0x9a, 0xf8, 0xf6, 0x48, 0xe4, 0x49, 0x2d, - 0xa7, 0xff, 0xb7, 0x01, 0xc3, 0x22, 0xa1, 0x8a, 0xe2, 0x97, 0xf5, 0xc0, 0x69, 0xed, 0x43, 0x57, - 0xa1, 0xcf, 0x2c, 0xd7, 0x33, 0xc9, 0xc1, 0x01, 0xc5, 0x6c, 0x78, 0x76, 0xbd, 0xb1, 0xd1, 0x32, - 0x80, 0x83, 0x1e, 0x08, 0x08, 0xba, 0x0e, 0x8b, 0xb6, 0x8c, 0x64, 0x33, 0xc4, 0xc7, 0xae, 0xc8, - 0xec, 0x8e, 0x50, 0x6c, 0xc1, 0x8e, 0x23, 0x5c, 0x82, 0x91, 0x0e, 0xf3, 0xae, 0xf3, 0xdc, 0x14, - 0x5b, 0x8b, 0xd8, 0x18, 0xba, 0x82, 0x5b, 0xdf, 0x75, 0x9e, 0xdf, 0x77, 0x3d, 0x3c, 0x72, 0x5f, - 0x60, 0xfd, 0x11, 0x5c, 0x91, 0xc6, 0xef, 0xfa, 0x76, 0x88, 0xc7, 0xd8, 0x67, 0x96, 0xb7, 0x4d, - 0x82, 0x49, 0xad, 0x10, 0xb8, 0x04, 0x5d, 0xea, 0xfa, 0x36, 0x36, 0x7d, 0xb9, 0x41, 0xb5, 0x8c, - 0x8e, 0xf8, 0xde, 0xa3, 0xfa, 0x5d, 0x58, 0xad, 0xe0, 0xab, 0x3c, 0xfb, 0x1a, 0x0c, 0x84, 0x62, - 0x36, 0xf1, 0x19, 0xf6, 0x99, 0xe0, 0x3d, 0x30, 0xfa, 0x1c, 0xb6, 0x2d, 0x41, 0xfa, 0x3b, 0x80, - 0x24, 0x8f, 0x4f, 0x48, 0xe4, 0xd7, 0x4b, 0xcd, 0x0b, 0xb0, 0x94, 0x21, 0x51, 0xb1, 0xf1, 0x2e, - 0x2c, 0x4b, 0xf0, 0x67, 0xfe, 0xb8, 0x36, 0xaf, 0x15, 0xb8, 0x90, 0x23, 0x52, 0xdc, 0xb6, 0x62, - 0x21, 0xd9, 0x23, 0xe4, 0x44, 0x66, 0x17, 0x63, 0x0d, 0xb2, 0xa7, 0x88, 0xd8, 0x85, 0xa4, 0xc2, - 0x56, 0x78, 0x64, 0x60, 0xcb, 0x21, 0xbe, 0x37, 0xa9, 0xbd, 0x0b, 0x95, 0x50, 0x2a, 0xbe, 0x7f, - 0x69, 0xc0, 0xf9, 0x78, 0x7b, 0xaa, 0xb9, 0x9a, 0xa7, 0x0c, 0xe7, 0x66, 0x65, 0x38, 0xb7, 0xa6, - 0xe1, 0xbc, 0x01, 0x8b, 0x94, 0x44, 0xa1, 0x8d, 0x4d, 0xc7, 0x62, 0x96, 0xe9, 0x13, 0x07, 0xab, - 0x68, 0x3f, 0x27, 0xe1, 0xf7, 0x2c, 0x66, 0xed, 0x11, 0x07, 0xeb, 0x3f, 0x88, 0x17, 0x3b, 0x13, - 0x25, 0xd7, 0xe1, 0xbc, 0x67, 0x51, 0x66, 0x5a, 0x41, 0x80, 0x7d, 0xc7, 0xb4, 0x18, 0x0f, 0xb5, - 0x86, 0x08, 0xb5, 0x73, 0x7c, 0xe2, 0x8e, 0x80, 0xdf, 0x61, 0x7b, 0x54, 0xff, 0x47, 0x03, 0x16, - 0x38, 0x2d, 0x0f, 0xed, 0x5a, 0xf6, 0x2e, 0x42, 0x13, 0x3f, 0x67, 0xca, 0x50, 0x3e, 0x44, 0xb7, - 0x60, 0x49, 0xe5, 0x90, 0x4b, 0xfc, 0x69, 0x7a, 0x35, 0x05, 0x21, 0x9a, 0x4e, 0x25, 0x19, 0x76, - 0x15, 0xfa, 0x94, 0x91, 0x20, 0xce, 0xd6, 0x96, 0xcc, 0x56, 0x0e, 0x52, 0xd9, 0x9a, 0xf5, 0x69, - 0xbb, 0xc4, 0xa7, 0x03, 0x97, 0x9a, 0xd8, 0x36, 0xa5, 0x56, 0x22, 0xdf, 0xbb, 0x06, 0xb8, 0x74, - 0xc7, 0x96, 0xde, 0xd0, 0xbf, 0x05, 0x8b, 0x53, 0xab, 0xea, 0xe7, 0xce, 0x97, 0x8d, 0x78, 0x3b, - 0x7c, 0x68, 0xb9, 0xde, 0x08, 0xfb, 0x0e, 0x0e, 0x5f, 0x32, 0xa7, 0xd1, 0x6d, 0x58, 0x76, 0x1d, - 0x0f, 0x9b, 0xcc, 0x1d, 0x63, 0x12, 0x31, 0x93, 0x62, 0x9b, 0xf8, 0x0e, 0x8d, 0xfd, 0xc3, 0xe7, - 0x1e, 0xca, 0xa9, 0x91, 0x9c, 0xd1, 0x7f, 0x9b, 0xec, 0xad, 0x69, 0x2d, 0xa6, 0x15, 0x82, 0x8f, - 0x31, 0x67, 0x78, 0x88, 0x2d, 0x07, 0x87, 0xca, 0x8c, 0x81, 0x04, 0xfe, 0x58, 0xc0, 0xb8, 0x87, - 0x15, 0xd2, 0x3e, 0x71, 0x26, 0x42, 0xa3, 0x81, 0x01, 0x12, 0x74, 0x97, 0x38, 0x13, 0xb1, 0xc9, - 0x51, 0x53, 0x04, 0x89, 0x7d, 0x18, 0xf9, 0x47, 0x42, 0x9b, 0xae, 0xd1, 0x77, 0xe9, 0xc7, 0x16, - 0x65, 0xdb, 0x1c, 0xa4, 0xff, 0xb5, 0x11, 0x67, 0x19, 0x57, 0xc3, 0xc0, 0x36, 0x76, 0x8f, 0xff, - 0x0f, 0xee, 0xe0, 0x14, 0x2a, 0x1b, 0x32, 0x95, 0xa2, 0x4a, 0x18, 0x24, 0xe7, 0xd4, 0x59, 0x24, - 0x66, 0xa6, 0x49, 0x9e, 0x55, 0x5c, 0x25, 0xf9, 0x17, 0xf1, 0x26, 0xbb, 0x63, 0x8f, 0x0e, 0xad, - 0xd0, 0xa1, 0x3f, 0xc2, 0x3e, 0x0e, 0x2d, 0xf6, 0x4a, 0x0e, 0x70, 0x7d, 0x1d, 0xd6, 0xaa, 0xb8, - 0x2b, 0xf9, 0x8f, 0xe3, 0xc3, 0x23, 0xc6, 0x30, 0xf0, 0x7e, 0xe4, 0x7a, 0xce, 0x2b, 0x11, 0xff, - 0x51, 0xde, 0xb8, 0x84, 0xb9, 0x8a, 0x9f, 0x1b, 0x70, 0x3e, 0x14, 0x20, 0x66, 0x52, 0x8e, 0x90, - 0xd4, 0xee, 0xf3, 0xc6, 0x82, 0x9a, 0x10, 0x84, 0xbc, 0x86, 0xff, 0x5b, 0x12, 0x01, 0x31, 0xb7, - 0x57, 0xb6, 0x2d, 0x5e, 0x86, 0xde, 0x54, 0x7c, 0x53, 0x88, 0xef, 0x52, 0x25, 0x97, 0x47, 0xa7, - 0x4d, 0x82, 0x89, 0x89, 0x6d, 0x79, 0x0e, 0x8b, 0xa5, 0xee, 0x1a, 0x7d, 0x0e, 0xdc, 0xb1, 0xc5, - 0x31, 0x7c, 0x8a, 0x3d, 0x32, 0x89, 0x86, 0xac, 0x11, 0x6a, 0x35, 0x9e, 0xc1, 0xe5, 0xec, 0x6c, - 0xfd, 0xe3, 0xe9, 0xa5, 0x8c, 0xd4, 0xd7, 0xf2, 0x61, 0x90, 0x3b, 0xe3, 0x8e, 0xf3, 0x6a, 0xd7, - 0x3e, 0xcf, 0x5f, 0x4e, 0xaf, 0xd5, 0xbc, 0x43, 0xb2, 0x45, 0xc1, 0xe7, 0x79, 0xb5, 0x4f, 0x51, - 0x1c, 0x9c, 0x2c, 0xf8, 0x6a, 0x3e, 0x74, 0xf3, 0x15, 0xc4, 0xef, 0x93, 0x7d, 0x51, 0x61, 0xf0, - 0xf3, 0xbb, 0xf6, 0x7e, 0xa4, 0xe4, 0x0a, 0x77, 0xcc, 0x1b, 0x1d, 0x25, 0x96, 0x5f, 0x16, 0xd5, - 0x39, 0x24, 0x6b, 0x6d, 0xf5, 0x95, 0xb9, 0x16, 0x36, 0xd5, 0xb5, 0x30, 0xbe, 0xee, 0x1e, 0xe1, - 0x89, 0x88, 0xb5, 0x96, 0xbc, 0xee, 0x7e, 0x84, 0x27, 0xfa, 0x5e, 0x2e, 0x53, 0xa4, 0x6a, 0x2a, - 0xe7, 0x10, 0xb4, 0x78, 0x90, 0xaa, 0xad, 0x5a, 0x8c, 0xd1, 0x2a, 0x80, 0x4b, 0x4d, 0x47, 0xac, - 0xb9, 0x54, 0xaa, 0x6b, 0xf4, 0x5c, 0x15, 0x04, 0x8e, 0xfe, 0xbb, 0x54, 0xea, 0xdd, 0xf5, 0xc8, - 0xfe, 0x2b, 0x8c, 0xca, 0xb4, 0x15, 0xcd, 0x8c, 0x15, 0xe9, 0x7b, 0x6f, 0x2b, 0x7b, 0xef, 0x4d, - 0x25, 0x51, 0x5a, 0x1d, 0xb5, 0x32, 0x1f, 0xc0, 0x65, 0x6e, 0xb0, 0xc4, 0x10, 0x55, 0x72, 0xfd, - 0x9b, 0xc4, 0xbf, 0xcf, 0xc0, 0x95, 0x72, 0xe2, 0x3a, 0xb7, 0x89, 0x0f, 0x41, 0x4b, 0xaa, 0x75, - 0x7e, 0xa4, 0x50, 0x66, 0x8d, 0x83, 0xe4, 0x50, 0x91, 0x67, 0xcf, 0x8a, 0x2a, 0xdd, 0x1f, 0xc6, - 0xf3, 0xf1, 0xc9, 0x52, 0x28, 0xf5, 0x9b, 0x85, 0x52, 0x9f, 0x0b, 0x70, 0x2c, 0x56, 0x25, 0x40, - 0xd6, 0x2e, 0x2b, 0x8e, 0xc5, 0xaa, 0x04, 0x24, 0xc4, 0x42, 0x80, 0x8c, 0x9a, 0xbe, 0xc2, 0x17, - 0x02, 0x56, 0x01, 0x54, 0x59, 0x12, 0xf9, 0xf1, 0xd5, 0xa5, 0x27, 0x8b, 0x92, 0xc8, 0xaf, 0xac, - 0xae, 0x3a, 0x95, 0xd5, 0x55, 0x76, 0xf9, 0xbb, 0x85, 0x13, 0xe2, 0x73, 0x80, 0x7b, 0x2e, 0x3d, - 0x92, 0x4e, 0xe6, 0xe5, 0x9c, 0xe3, 0x86, 0xea, 0xee, 0xcb, 0x87, 0x1c, 0x62, 0x79, 0x9e, 0x72, - 0x1d, 0x1f, 0xf2, 0xf0, 0x8d, 0x28, 0x76, 0x94, 0x77, 0xc4, 0x98, 0xc3, 0x0e, 0x42, 0x8c, 0x95, - 0x03, 0xc4, 0x58, 0xff, 0x63, 0x03, 0x7a, 0x9f, 0xe0, 0xb1, 0xe2, 0xbc, 0x06, 0xf0, 0x84, 0x84, - 0x24, 0x62, 0xae, 0x8f, 0x65, 0xf5, 0xd9, 0x36, 0x52, 0x90, 0xaf, 0x2e, 0x47, 0xa4, 0x26, 0xf6, - 0x0e, 0x94, 0x33, 0xc5, 0x98, 0xc3, 0x0e, 0xb1, 0x15, 0x28, 0xff, 0x89, 0x31, 0x5a, 0x86, 0x36, - 0x65, 0x96, 0x7d, 0x24, 0x9c, 0xd5, 0x32, 0xe4, 0x87, 0xfe, 0x87, 0x01, 0x0c, 0x3e, 0x8d, 0x70, - 0x98, 0x9c, 0x63, 0x37, 0xe1, 0x3c, 0xc5, 0xdc, 0x3b, 0x26, 0x7e, 0x1e, 0x84, 0x98, 0xd2, 0x69, - 0x33, 0x60, 0x51, 0x4e, 0xec, 0x24, 0x70, 0xbe, 0xa2, 0x07, 0x21, 0x19, 0x9b, 0x49, 0xdb, 0xeb, - 0x8c, 0x68, 0x7b, 0xf5, 0x39, 0xf0, 0xbe, 0x6c, 0x7d, 0xf1, 0xcb, 0xe6, 0xb3, 0x43, 0x1c, 0xe2, - 0x34, 0x3f, 0x59, 0xf7, 0x2f, 0x08, 0x78, 0x8a, 0xdd, 0x3e, 0x2c, 0xb9, 0x7e, 0x20, 0xca, 0xa0, - 0xd0, 0xb5, 0x3c, 0xf7, 0xc5, 0xf4, 0xd2, 0xdb, 0xdf, 0x7a, 0xa7, 0xd8, 0x1a, 0x4b, 0x2b, 0xbe, - 0xb9, 0xcb, 0x29, 0x47, 0x69, 0x42, 0x03, 0xb9, 0x05, 0x18, 0xc2, 0xb0, 0x4c, 0x22, 0x56, 0x14, - 0xd2, 0x16, 0x42, 0xb6, 0x66, 0x08, 0x79, 0x20, 0x48, 0xb3, 0x52, 0x96, 0x48, 0x11, 0xa8, 0xfd, - 0xb3, 0x0d, 0xa8, 0xa8, 0x51, 0x7c, 0xf3, 0x56, 0x06, 0x9b, 0x6c, 0x12, 0x60, 0xe5, 0xdc, 0x85, - 0x14, 0xfc, 0xe1, 0x24, 0xc0, 0xe8, 0x67, 0xd0, 0xb3, 0xe9, 0xb1, 0x29, 0x4c, 0x10, 0x71, 0xd1, - 0xdf, 0xfa, 0xe0, 0xd4, 0x2e, 0xd8, 0xdc, 0x1e, 0x3d, 0x12, 0x50, 0xa3, 0x6b, 0xd3, 0x63, 0x31, - 0x42, 0xbf, 0x00, 0xf8, 0x15, 0x25, 0xbe, 0xe2, 0xdc, 0x14, 0x9c, 0x3f, 0x3c, 0x3d, 0xe7, 0x9f, - 0x8c, 0x1e, 0xec, 0x49, 0xd6, 0x3d, 0xce, 0x4e, 0xf2, 0xb6, 0x61, 0x3e, 0xb0, 0xc2, 0xa7, 0x11, - 0x66, 0x8a, 0xbd, 0x5c, 0xbb, 0xef, 0x9f, 0x9e, 0xfd, 0x4f, 0x25, 0x1b, 0x29, 0x61, 0x10, 0xa4, - 0xbe, 0xb4, 0xbf, 0x9f, 0x81, 0x6e, 0x6c, 0x17, 0xaf, 0x7c, 0x44, 0xf4, 0xc9, 0xfa, 0xdf, 0x74, - 0xfd, 0x03, 0xa2, 0x3c, 0x7a, 0x8e, 0xc3, 0xe5, 0x15, 0x60, 0xd7, 0x3f, 0x20, 0xdc, 0xf7, 0x21, - 0xb6, 0x49, 0xe8, 0xf0, 0x73, 0xc6, 0x1d, 0xbb, 0x0c, 0x87, 0xea, 0x3c, 0x58, 0x90, 0xf0, 0x7b, - 0x31, 0x18, 0x5d, 0x83, 0x85, 0x03, 0x17, 0x7b, 0x69, 0xcc, 0x66, 0xcc, 0x13, 0x7b, 0x29, 0xc4, - 0xeb, 0xb0, 0xf8, 0x34, 0x22, 0x0c, 0x9b, 0xf6, 0xa1, 0x15, 0x5a, 0x36, 0x23, 0x49, 0x25, 0xbe, - 0x20, 0xe0, 0xdb, 0x09, 0x18, 0x7d, 0x13, 0x2e, 0x4a, 0x54, 0x4c, 0x6d, 0x2b, 0x48, 0x28, 0x70, - 0xa8, 0x0a, 0xb5, 0x65, 0x31, 0xbb, 0x23, 0x26, 0xb7, 0xe3, 0x39, 0xa4, 0x41, 0xd7, 0x26, 0xe3, - 0x31, 0xf6, 0x19, 0x15, 0xd9, 0xdc, 0x33, 0x92, 0x6f, 0x74, 0x07, 0x56, 0x2d, 0xcf, 0x23, 0xcf, - 0x4c, 0x41, 0xe9, 0x98, 0x05, 0xeb, 0x3a, 0xe2, 0x1c, 0xd5, 0x04, 0xd2, 0xa7, 0x02, 0xc7, 0xc8, - 0x1a, 0xaa, 0x5d, 0x85, 0x5e, 0xb2, 0x8e, 0x7c, 0xd7, 0x48, 0x05, 0xa4, 0x18, 0x6b, 0xe7, 0x60, - 0x90, 0x5e, 0x09, 0xed, 0x3f, 0x4d, 0x58, 0x2a, 0x49, 0x02, 0xf4, 0x18, 0x80, 0x47, 0xab, 0x4c, - 0x05, 0x15, 0xae, 0xdf, 0x3d, 0x7d, 0x32, 0xf1, 0x78, 0x95, 0x60, 0x83, 0x47, 0xbf, 0x1c, 0xa2, - 0x5f, 0x42, 0x5f, 0x44, 0xac, 0xe2, 0x2e, 0x43, 0xf6, 0x7b, 0x5f, 0x81, 0x3b, 0xb7, 0x55, 0xb1, - 0x17, 0x39, 0x20, 0xc7, 0xda, 0xbf, 0x1a, 0xd0, 0x4b, 0x04, 0xf3, 0x9b, 0xb1, 0x5c, 0x28, 0xb1, - 0xd6, 0x54, 0xb9, 0xa3, 0x2f, 0x60, 0xf7, 0x05, 0xe8, 0x6b, 0x19, 0x4a, 0xda, 0x7b, 0x00, 0x53, - 0xfb, 0x4b, 0x4d, 0x68, 0x94, 0x9a, 0xa0, 0x5f, 0x87, 0x79, 0xee, 0x59, 0x17, 0x3b, 0x23, 0x16, - 0xba, 0x81, 0x78, 0x10, 0x90, 0x38, 0xf2, 0xae, 0x34, 0x30, 0xe2, 0xcf, 0xad, 0x3f, 0xad, 0xc0, - 0x20, 0x7d, 0xf9, 0x44, 0x5f, 0x40, 0x3f, 0xf5, 0xf0, 0x81, 0xde, 0x28, 0x2e, 0x5a, 0xf1, 0x21, - 0x45, 0xfb, 0xc6, 0x0c, 0x2c, 0x55, 0x67, 0xcd, 0x21, 0x1f, 0xce, 0x17, 0x5e, 0x0f, 0xd0, 0x8d, - 0x22, 0x75, 0xd5, 0xdb, 0x84, 0x76, 0xb3, 0x16, 0x6e, 0x22, 0x8f, 0xc1, 0x52, 0xc9, 0x73, 0x00, - 0x7a, 0x6b, 0x06, 0x97, 0xcc, 0x93, 0x84, 0xf6, 0x76, 0x4d, 0xec, 0x44, 0xea, 0x53, 0x40, 0xc5, - 0xb7, 0x02, 0x74, 0x73, 0x26, 0x9b, 0xe9, 0x5b, 0x84, 0xf6, 0x56, 0x3d, 0xe4, 0x4a, 0x43, 0xe5, - 0x2b, 0xc2, 0x4c, 0x43, 0x33, 0xef, 0x14, 0x33, 0x0d, 0xcd, 0x3d, 0x4d, 0xcc, 0xa1, 0x23, 0x58, - 0xcc, 0xbf, 0x30, 0xa0, 0xeb, 0x55, 0x2f, 0x62, 0x85, 0x07, 0x0c, 0xed, 0x46, 0x1d, 0xd4, 0x44, - 0x18, 0x86, 0x73, 0xd9, 0x57, 0x00, 0x74, 0xad, 0x48, 0x5f, 0xfa, 0xa6, 0xa1, 0x6d, 0xcc, 0x46, - 0x4c, 0xdb, 0x94, 0x7f, 0x19, 0x28, 0xb3, 0xa9, 0xe2, 0xd9, 0xa1, 0xcc, 0xa6, 0xaa, 0x87, 0x06, - 0x7d, 0x0e, 0xfd, 0x3a, 0x6e, 0x37, 0xe7, 0x3a, 0xe6, 0x68, 0xb3, 0x8a, 0x4d, 0x79, 0xcb, 0x5e, - 0xbb, 0x55, 0x1b, 0x3f, 0x96, 0x7d, 0xbb, 0xc1, 0x73, 0x3d, 0xd5, 0x38, 0x2f, 0xcb, 0xf5, 0x62, - 0x2b, 0xbe, 0x2c, 0xd7, 0xcb, 0xba, 0xef, 0x73, 0x68, 0x1f, 0xe6, 0x33, 0xad, 0x74, 0xf4, 0x66, - 0x15, 0x65, 0xf6, 0x0e, 0xae, 0x5d, 0x9b, 0x89, 0x97, 0xc8, 0x30, 0xe3, 0xdd, 0x4b, 0x6d, 0x57, - 0x95, 0xca, 0x65, 0xf7, 0xab, 0x37, 0x67, 0xa1, 0x65, 0x52, 0xb9, 0xd0, 0x70, 0x2f, 0x4d, 0xe5, - 0xaa, 0x86, 0x7e, 0x69, 0x2a, 0x57, 0xf7, 0xf0, 0xe7, 0xd0, 0xcf, 0x01, 0xa6, 0x4d, 0x71, 0xf4, - 0x7a, 0x15, 0x75, 0x7a, 0xf5, 0xdf, 0x38, 0x19, 0x29, 0x61, 0xfd, 0x0c, 0x96, 0xcb, 0xee, 0xaa, - 0xa8, 0x24, 0xf1, 0x4f, 0xb8, 0x10, 0x6b, 0x9b, 0x75, 0xd1, 0x13, 0xc1, 0x9f, 0x41, 0x37, 0x6e, - 0x68, 0xa3, 0xd7, 0x8a, 0xd4, 0xb9, 0x16, 0xbe, 0xa6, 0x9f, 0x84, 0x92, 0x0a, 0xe0, 0x71, 0x9c, - 0xab, 0xd3, 0x4e, 0x73, 0x75, 0xae, 0x16, 0x7a, 0xe2, 0xd5, 0xb9, 0x5a, 0x6c, 0x5c, 0x0b, 0x71, - 0x49, 0x30, 0xa4, 0x1b, 0xb3, 0xd5, 0xc1, 0x50, 0xd2, 0x77, 0xae, 0x0e, 0x86, 0xd2, 0x5e, 0xef, - 0x1c, 0xfa, 0x0d, 0x5c, 0x2c, 0xef, 0xc7, 0xa2, 0xca, 0x8c, 0xaf, 0xe8, 0x0b, 0x6b, 0xb7, 0xeb, - 0x13, 0x24, 0xe2, 0x5f, 0xc4, 0xfb, 0x53, 0xae, 0x1f, 0x5b, 0xbd, 0x3f, 0x95, 0x77, 0x85, 0xb5, - 0x5b, 0xb5, 0xf1, 0x8b, 0xa9, 0x97, 0x6e, 0x7c, 0x56, 0x7b, 0xbb, 0xa4, 0xc7, 0x5b, 0xed, 0xed, - 0xd2, 0x5e, 0xaa, 0xc8, 0x8f, 0xb2, 0xa6, 0x66, 0x59, 0x7e, 0x9c, 0xd0, 0x75, 0xd5, 0x36, 0xeb, - 0xa2, 0x67, 0x8e, 0xef, 0x62, 0xd7, 0x12, 0xcd, 0xd4, 0x3f, 0xb3, 0x33, 0xbf, 0x5d, 0x13, 0xbb, - 0x7a, 0x75, 0xe3, 0x9d, 0x7a, 0xa6, 0x01, 0xb9, 0x1d, 0xfb, 0x56, 0x6d, 0xfc, 0x44, 0x76, 0x10, - 0x3f, 0x55, 0xa6, 0x3a, 0x8e, 0xe8, 0xc6, 0x0c, 0x3e, 0xa9, 0x8e, 0xa9, 0x76, 0xb3, 0x16, 0x6e, - 0x59, 0xf6, 0xa6, 0x7b, 0x80, 0x27, 0xc5, 0x53, 0xa1, 0x71, 0x79, 0x52, 0x3c, 0x95, 0xb4, 0x15, - 0xe7, 0xd0, 0xc7, 0xd0, 0x16, 0x57, 0x1c, 0xb4, 0x76, 0xf2, 0xdd, 0x47, 0xbb, 0x5a, 0x3e, 0x9f, - 0x54, 0xf0, 0xdc, 0x80, 0xfd, 0xb3, 0xe2, 0xef, 0xa6, 0x77, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, - 0x87, 0x4e, 0x8e, 0x7e, 0xf4, 0x24, 0x00, 0x00, + // 2473 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x3a, 0x4f, 0x77, 0x1c, 0x47, + 0xf1, 0x5a, 0xef, 0x4a, 0xda, 0xad, 0x5d, 0x59, 0x72, 0x4b, 0xb1, 0x36, 0x63, 0x4b, 0x56, 0x26, + 0x7f, 0x2c, 0xdb, 0x89, 0xec, 0x28, 0xbf, 0x1f, 0x09, 0x09, 0x01, 0x6c, 0xd9, 0x06, 0x93, 0x44, + 0x26, 0x23, 0xc7, 0x04, 0x9c, 0xc7, 0xbc, 0xd6, 0x4c, 0xcb, 0x1a, 0x34, 0x3b, 0x3d, 0x9e, 0xee, + 0x91, 0xbd, 0x7e, 0x70, 0x0a, 0x57, 0x3e, 0x00, 0x67, 0x4e, 0x70, 0xe0, 0xca, 0x07, 0xe0, 0xc2, + 0x07, 0x80, 0x4f, 0xc0, 0x99, 0x03, 0x37, 0xde, 0xe3, 0xc2, 0xeb, 0x3f, 0x33, 0x3b, 0x7f, 0xb5, + 0xa3, 0xd8, 0xef, 0xf1, 0xb8, 0xf5, 0x54, 0xd7, 0x9f, 0xae, 0xea, 0xaa, 0xea, 0xea, 0xea, 0x81, + 0xe5, 0x63, 0xea, 0xc7, 0x23, 0x62, 0x33, 0x12, 0x1d, 0x93, 0x68, 0x2b, 0x8c, 0x28, 0xa7, 0x68, + 0x29, 0x07, 0xb4, 0xc3, 0x7d, 0xf3, 0x3a, 0xa0, 0x5b, 0x98, 0x3b, 0x87, 0xb7, 0x89, 0x4f, 0x38, + 0xb1, 0xc8, 0x93, 0x98, 0x30, 0x8e, 0x5e, 0x85, 0xee, 0x81, 0xe7, 0x13, 0xdb, 0x73, 0xd9, 0xb0, + 0xb5, 0xd1, 0xde, 0xec, 0x59, 0xf3, 0xe2, 0xfb, 0x9e, 0xcb, 0xcc, 0xfb, 0xb0, 0x9c, 0x23, 0x60, + 0x21, 0x0d, 0x18, 0x41, 0x1f, 0xc0, 0x7c, 0x44, 0x58, 0xec, 0x73, 0x45, 0xd0, 0xdf, 0x5e, 0xdf, + 0x2a, 0xca, 0xda, 0x4a, 0x49, 0x62, 0x9f, 0x5b, 0x09, 0xba, 0xf9, 0x75, 0x0b, 0x06, 0xd9, 0x19, + 0xb4, 0x0a, 0xf3, 0x5a, 0xf8, 0xb0, 0xb5, 0xd1, 0xda, 0xec, 0x59, 0x73, 0x4a, 0x36, 0x3a, 0x0f, + 0x73, 0x8c, 0x63, 0x1e, 0xb3, 0xe1, 0x99, 0x8d, 0xd6, 0xe6, 0xac, 0xa5, 0xbf, 0xd0, 0x0a, 0xcc, + 0x92, 0x28, 0xa2, 0xd1, 0xb0, 0x2d, 0xd1, 0xd5, 0x07, 0x42, 0xd0, 0x61, 0xde, 0x73, 0x32, 0xec, + 0x6c, 0xb4, 0x36, 0x17, 0x2c, 0x39, 0x46, 0x43, 0x98, 0x3f, 0x26, 0x11, 0xf3, 0x68, 0x30, 0x9c, + 0x95, 0xe0, 0xe4, 0xd3, 0x9c, 0x87, 0xd9, 0x3b, 0xa3, 0x90, 0x8f, 0xcd, 0xf7, 0x61, 0xf8, 0x10, + 0x3b, 0x71, 0x3c, 0x7a, 0x28, 0x97, 0xbf, 0x73, 0x48, 0x9c, 0xa3, 0xc4, 0x2c, 0x17, 0xa0, 0xa7, + 0x95, 0xd2, 0x6b, 0x5b, 0xb0, 0xba, 0x0a, 0x70, 0xcf, 0x35, 0xbf, 0x0f, 0xaf, 0x56, 0x10, 0x6a, + 0xf3, 0xbc, 0x0e, 0x0b, 0x8f, 0x71, 0xb4, 0x8f, 0x1f, 0x13, 0x3b, 0xc2, 0xdc, 0xa3, 0x92, 0xba, + 0x65, 0x0d, 0x34, 0xd0, 0x12, 0x30, 0xf3, 0x11, 0x18, 0x39, 0x0e, 0x74, 0x14, 0x62, 0x87, 0x37, + 0x11, 0x8e, 0x36, 0xa0, 0x1f, 0x46, 0x04, 0xfb, 0x3e, 0x75, 0x30, 0x27, 0xd2, 0x3e, 0x6d, 0x2b, + 0x0b, 0x32, 0xd7, 0xe0, 0x42, 0x25, 0x73, 0xb5, 0x40, 0xf3, 0x83, 0xc2, 0xea, 0xe9, 0x68, 0xe4, + 0x35, 0x12, 0x6d, 0x5e, 0x2c, 0xad, 0x5a, 0x52, 0x6a, 0xbe, 0xdf, 0x2e, 0xcc, 0xfa, 0x04, 0x07, + 0x71, 0xd8, 0x88, 0x71, 0x71, 0xc5, 0x09, 0x69, 0xca, 0x79, 0x55, 0xb9, 0xcd, 0x0e, 0xf5, 0x7d, + 0xe2, 0x70, 0x8f, 0x06, 0x09, 0xdb, 0x75, 0x00, 0x27, 0x05, 0x6a, 0x27, 0xca, 0x40, 0x4c, 0x03, + 0x86, 0x65, 0x52, 0xcd, 0xf6, 0x0f, 0x2d, 0x78, 0xe5, 0xa6, 0x36, 0x9a, 0x12, 0xdc, 0x68, 0x03, + 0xf2, 0x22, 0xcf, 0x14, 0x45, 0x16, 0x37, 0xa8, 0x5d, 0xda, 0x20, 0x81, 0x11, 0x91, 0xd0, 0xf7, + 0x1c, 0x2c, 0x59, 0x74, 0x24, 0x8b, 0x2c, 0x08, 0x2d, 0x41, 0x9b, 0x73, 0x5f, 0x7a, 0x6e, 0xcf, + 0x12, 0x43, 0x73, 0x08, 0xe7, 0x8b, 0x6b, 0xd5, 0x6a, 0x7c, 0x0b, 0x56, 0x15, 0x64, 0x6f, 0x1c, + 0x38, 0x7b, 0x32, 0x4e, 0x1a, 0x19, 0xfd, 0xdf, 0x2d, 0x18, 0x96, 0x09, 0xb5, 0x17, 0xbf, 0xa8, + 0x05, 0x4e, 0xab, 0x1f, 0xba, 0x04, 0x7d, 0x8e, 0x3d, 0xdf, 0xa6, 0x07, 0x07, 0x8c, 0xf0, 0xe1, + 0xdc, 0x46, 0x6b, 0xb3, 0x63, 0x81, 0x00, 0xdd, 0x97, 0x10, 0x74, 0x05, 0x96, 0x1c, 0xe5, 0xc9, + 0x76, 0x44, 0x8e, 0x3d, 0x19, 0xd9, 0xf3, 0x72, 0x61, 0x8b, 0x4e, 0xe2, 0xe1, 0x0a, 0x8c, 0x4c, + 0x58, 0xf0, 0xdc, 0x67, 0xb6, 0x4c, 0x2d, 0x32, 0x31, 0x74, 0x25, 0xb7, 0xbe, 0xe7, 0x3e, 0xbb, + 0xeb, 0xf9, 0x64, 0xcf, 0x7b, 0x4e, 0xcc, 0x87, 0x70, 0x51, 0x29, 0x7f, 0x2f, 0x70, 0x22, 0x32, + 0x22, 0x01, 0xc7, 0xfe, 0x0e, 0x0d, 0xc7, 0x8d, 0x5c, 0xe0, 0x55, 0xe8, 0x32, 0x2f, 0x70, 0x88, + 0x1d, 0xa8, 0x04, 0xd5, 0xb1, 0xe6, 0xe5, 0xf7, 0x2e, 0x33, 0x6f, 0xc1, 0x5a, 0x0d, 0x5f, 0x6d, + 0xd9, 0xd7, 0x60, 0x20, 0x17, 0xe6, 0xd0, 0x80, 0x93, 0x80, 0x4b, 0xde, 0x03, 0xab, 0x2f, 0x60, + 0x3b, 0x0a, 0x64, 0xbe, 0x0b, 0x48, 0xf1, 0xf8, 0x8c, 0xc6, 0x41, 0xb3, 0xd0, 0x7c, 0x05, 0x96, + 0x73, 0x24, 0xda, 0x37, 0xde, 0x83, 0x15, 0x05, 0xfe, 0x22, 0x18, 0x35, 0xe6, 0xb5, 0x0a, 0xaf, + 0x14, 0x88, 0x34, 0xb7, 0xed, 0x44, 0x48, 0xfe, 0x08, 0x39, 0x91, 0xd9, 0xf9, 0x64, 0x05, 0xf9, + 0x53, 0x44, 0x66, 0x21, 0xb5, 0x60, 0x1c, 0x1d, 0x59, 0x04, 0xbb, 0x34, 0xf0, 0xc7, 0x8d, 0xb3, + 0x50, 0x05, 0xa5, 0xe6, 0xfb, 0xc7, 0x16, 0x9c, 0x4b, 0xd2, 0x53, 0xc3, 0xdd, 0x3c, 0xa5, 0x3b, + 0xb7, 0x6b, 0xdd, 0xb9, 0x33, 0x71, 0xe7, 0x4d, 0x58, 0x62, 0x34, 0x8e, 0x1c, 0x62, 0xbb, 0x98, + 0x63, 0x3b, 0xa0, 0x2e, 0xd1, 0xde, 0x7e, 0x56, 0xc1, 0x6f, 0x63, 0x8e, 0x77, 0xa9, 0x4b, 0xcc, + 0xef, 0x25, 0x9b, 0x9d, 0xf3, 0x92, 0x2b, 0x70, 0xce, 0xc7, 0x8c, 0xdb, 0x38, 0x0c, 0x49, 0xe0, + 0xda, 0x98, 0x0b, 0x57, 0x6b, 0x49, 0x57, 0x3b, 0x2b, 0x26, 0x6e, 0x4a, 0xf8, 0x4d, 0xbe, 0xcb, + 0xcc, 0xbf, 0xb6, 0x60, 0x51, 0xd0, 0x0a, 0xd7, 0x6e, 0xa4, 0xef, 0x12, 0xb4, 0xc9, 0x33, 0xae, + 0x15, 0x15, 0x43, 0x74, 0x1d, 0x96, 0x75, 0x0c, 0x79, 0x34, 0x98, 0x84, 0x57, 0x5b, 0x12, 0xa2, + 0xc9, 0x54, 0x1a, 0x61, 0x97, 0xa0, 0xcf, 0x38, 0x0d, 0x93, 0x68, 0xed, 0xa8, 0x68, 0x15, 0x20, + 0x1d, 0xad, 0x79, 0x9b, 0xce, 0x56, 0xd8, 0x74, 0xe0, 0x31, 0x9b, 0x38, 0xb6, 0x5a, 0x95, 0x8c, + 0xf7, 0xae, 0x05, 0x1e, 0xbb, 0xe3, 0x28, 0x6b, 0x98, 0xff, 0x0f, 0x4b, 0x13, 0xad, 0x9a, 0xc7, + 0xce, 0xd7, 0xad, 0x24, 0x1d, 0x3e, 0xc0, 0x9e, 0xbf, 0x47, 0x02, 0x97, 0x44, 0x2f, 0x18, 0xd3, + 0xe8, 0x06, 0xac, 0x78, 0xae, 0x4f, 0x6c, 0xee, 0x8d, 0x08, 0x8d, 0xb9, 0xcd, 0x88, 0x43, 0x03, + 0x97, 0x25, 0xf6, 0x11, 0x73, 0x0f, 0xd4, 0xd4, 0x9e, 0x9a, 0x31, 0x7f, 0x9d, 0xe6, 0xd6, 0xec, + 0x2a, 0x26, 0x15, 0x42, 0x40, 0x88, 0x60, 0x78, 0x48, 0xb0, 0x4b, 0x22, 0xad, 0xc6, 0x40, 0x01, + 0x7f, 0x28, 0x61, 0xc2, 0xc2, 0x1a, 0x69, 0x9f, 0xba, 0x63, 0xb9, 0xa2, 0x81, 0x05, 0x0a, 0x74, + 0x8b, 0xba, 0x63, 0x99, 0xe4, 0x98, 0x2d, 0x9d, 0xc4, 0x39, 0x8c, 0x83, 0x23, 0xb9, 0x9a, 0xae, + 0xd5, 0xf7, 0xd8, 0xa7, 0x98, 0xf1, 0x1d, 0x01, 0x32, 0xff, 0xd4, 0x4a, 0xa2, 0x4c, 0x2c, 0xc3, + 0x22, 0x0e, 0xf1, 0x8e, 0xff, 0x0b, 0xe6, 0x10, 0x14, 0x3a, 0x1a, 0x72, 0x95, 0xa2, 0x0e, 0x18, + 0xa4, 0xe6, 0xf4, 0x59, 0x24, 0x67, 0x26, 0x41, 0x9e, 0x5f, 0xb8, 0x0e, 0xf2, 0xaf, 0x92, 0x24, + 0x7b, 0xc7, 0xd9, 0x3b, 0xc4, 0x91, 0xcb, 0x7e, 0x40, 0x02, 0x12, 0x61, 0xfe, 0x52, 0x0e, 0x70, + 0x73, 0x03, 0xd6, 0xeb, 0xb8, 0x6b, 0xf9, 0x8f, 0x92, 0xc3, 0x23, 0xc1, 0xb0, 0xc8, 0x7e, 0xec, + 0xf9, 0xee, 0x4b, 0x11, 0xff, 0x49, 0x51, 0xb9, 0x94, 0xb9, 0xf6, 0x9f, 0xab, 0x70, 0x2e, 0x92, + 0x20, 0x6e, 0x33, 0x81, 0x90, 0xd6, 0xee, 0x0b, 0xd6, 0xa2, 0x9e, 0x90, 0x84, 0xa2, 0x86, 0xff, + 0x73, 0xea, 0x01, 0x09, 0xb7, 0x97, 0x96, 0x16, 0x2f, 0x40, 0x6f, 0x22, 0xbe, 0x2d, 0xc5, 0x77, + 0x99, 0x96, 0x2b, 0xbc, 0xd3, 0xa1, 0xe1, 0xd8, 0x26, 0x8e, 0x3a, 0x87, 0xe5, 0x56, 0x77, 0xad, + 0xbe, 0x00, 0xde, 0x71, 0xe4, 0x31, 0x7c, 0x8a, 0x1c, 0x99, 0x7a, 0x43, 0x5e, 0x09, 0xbd, 0x1b, + 0x4f, 0xe1, 0x42, 0x7e, 0xb6, 0xf9, 0xf1, 0xf4, 0x42, 0x4a, 0x9a, 0xeb, 0x45, 0x37, 0x28, 0x9c, + 0x71, 0xc7, 0xc5, 0x65, 0x37, 0x3e, 0xcf, 0x5f, 0x6c, 0x5d, 0x6b, 0x45, 0x83, 0xe4, 0x8b, 0x82, + 0x2f, 0x8b, 0xcb, 0x3e, 0x45, 0x71, 0x70, 0xb2, 0xe0, 0x4b, 0x45, 0xd7, 0x2d, 0x56, 0x10, 0xbf, + 0x4d, 0xf3, 0xa2, 0xc6, 0x10, 0xe7, 0x77, 0xe3, 0x7c, 0xa4, 0xe5, 0x4a, 0x73, 0x2c, 0x58, 0xf3, + 0x5a, 0xac, 0xb8, 0x2c, 0xea, 0x73, 0x48, 0xd5, 0xda, 0xfa, 0x2b, 0x77, 0x2d, 0x6c, 0xeb, 0x6b, + 0x61, 0x72, 0xdd, 0x3d, 0x22, 0x63, 0xe9, 0x6b, 0x1d, 0x75, 0xdd, 0xfd, 0x84, 0x8c, 0xcd, 0xdd, + 0x42, 0xa4, 0xa8, 0xa5, 0xe9, 0x98, 0x43, 0xd0, 0x11, 0x4e, 0xaa, 0x53, 0xb5, 0x1c, 0xa3, 0x35, + 0x00, 0x8f, 0xd9, 0xae, 0xdc, 0x73, 0xb5, 0xa8, 0xae, 0xd5, 0xf3, 0xb4, 0x13, 0xb8, 0xe6, 0x6f, + 0x32, 0xa1, 0x77, 0xcb, 0xa7, 0xfb, 0x2f, 0xd1, 0x2b, 0xb3, 0x5a, 0xb4, 0x73, 0x5a, 0x64, 0xef, + 0xbd, 0x9d, 0xfc, 0xbd, 0x37, 0x13, 0x44, 0xd9, 0xe5, 0xe8, 0x9d, 0xf9, 0x10, 0x2e, 0x08, 0x85, + 0x15, 0x86, 0xac, 0x92, 0x9b, 0xdf, 0x24, 0xfe, 0x71, 0x06, 0x2e, 0x56, 0x13, 0x37, 0xb9, 0x4d, + 0x7c, 0x04, 0x46, 0x5a, 0xad, 0x8b, 0x23, 0x85, 0x71, 0x3c, 0x0a, 0xd3, 0x43, 0x45, 0x9d, 0x3d, + 0xab, 0xba, 0x74, 0x7f, 0x90, 0xcc, 0x27, 0x27, 0x4b, 0xa9, 0xd4, 0x6f, 0x97, 0x4a, 0x7d, 0x21, + 0xc0, 0xc5, 0xbc, 0x4e, 0x80, 0xaa, 0x5d, 0x56, 0x5d, 0xcc, 0xeb, 0x04, 0xa4, 0xc4, 0x52, 0x80, + 0xf2, 0x9a, 0xbe, 0xc6, 0x97, 0x02, 0xd6, 0x00, 0x74, 0x59, 0x12, 0x07, 0xc9, 0xd5, 0xa5, 0xa7, + 0x8a, 0x92, 0x38, 0xa8, 0xad, 0xae, 0xe6, 0x6b, 0xab, 0xab, 0xfc, 0xf6, 0x77, 0x4b, 0x27, 0xc4, + 0x97, 0x00, 0xb7, 0x3d, 0x76, 0xa4, 0x8c, 0x2c, 0xca, 0x39, 0xd7, 0x8b, 0xf4, 0xdd, 0x57, 0x0c, + 0x05, 0x04, 0xfb, 0xbe, 0x36, 0x9d, 0x18, 0x0a, 0xf7, 0x8d, 0x19, 0x71, 0xb5, 0x75, 0xe4, 0x58, + 0xc0, 0x0e, 0x22, 0x42, 0xb4, 0x01, 0xe4, 0xd8, 0xfc, 0x5d, 0x0b, 0x7a, 0x9f, 0x91, 0x91, 0xe6, + 0xbc, 0x0e, 0xf0, 0x98, 0x46, 0x34, 0xe6, 0x5e, 0x40, 0x54, 0xf5, 0x39, 0x6b, 0x65, 0x20, 0xdf, + 0x5c, 0x8e, 0x0c, 0x4d, 0xe2, 0x1f, 0x68, 0x63, 0xca, 0xb1, 0x80, 0x1d, 0x12, 0x1c, 0x6a, 0xfb, + 0xc9, 0x31, 0x5a, 0x81, 0x59, 0xc6, 0xb1, 0x73, 0x24, 0x8d, 0xd5, 0xb1, 0xd4, 0x87, 0xf9, 0xaf, + 0x01, 0x0c, 0x3e, 0x8f, 0x49, 0x34, 0xce, 0x74, 0x01, 0x18, 0xd1, 0xd6, 0x49, 0xda, 0x58, 0x19, + 0x88, 0xd8, 0xc4, 0x83, 0x88, 0x8e, 0xec, 0xb4, 0xd3, 0x75, 0x46, 0xa2, 0xf4, 0x05, 0xf0, 0xae, + 0xea, 0x76, 0xa1, 0x8f, 0x61, 0xee, 0xc0, 0xf3, 0x39, 0x51, 0xbd, 0xa5, 0xfe, 0xf6, 0x9b, 0xe5, + 0xae, 0x56, 0x56, 0xe6, 0xd6, 0x5d, 0x89, 0x6c, 0x69, 0x22, 0xb4, 0x0f, 0xcb, 0x5e, 0x10, 0xca, + 0x6a, 0x28, 0xf2, 0xb0, 0xef, 0x3d, 0x9f, 0xdc, 0x7d, 0xfb, 0xdb, 0xef, 0x4e, 0xe1, 0x75, 0x4f, + 0x50, 0xee, 0x65, 0x09, 0x2d, 0xe4, 0x95, 0x60, 0x88, 0xc0, 0x0a, 0x8d, 0x79, 0x59, 0xc8, 0xac, + 0x14, 0xb2, 0x3d, 0x45, 0xc8, 0x7d, 0x49, 0x9a, 0x97, 0xb2, 0x4c, 0xcb, 0x40, 0x63, 0x17, 0xe6, + 0x94, 0x72, 0xc2, 0xfc, 0x07, 0x1e, 0xf1, 0x93, 0xee, 0x9c, 0xfa, 0x10, 0x29, 0x86, 0x86, 0x24, + 0xc2, 0x81, 0xab, 0x53, 0x53, 0xf2, 0x29, 0xf0, 0x8f, 0xb1, 0x1f, 0x93, 0xa4, 0x3d, 0x27, 0x3f, + 0x8c, 0xbf, 0xcd, 0x02, 0x2a, 0x6b, 0x98, 0x5c, 0xe8, 0x23, 0xc2, 0x84, 0xd3, 0xdb, 0x7c, 0x1c, + 0x12, 0x2d, 0x67, 0x31, 0x03, 0x7f, 0x30, 0x0e, 0x09, 0xfa, 0x09, 0xf4, 0x1c, 0x76, 0x6c, 0x4b, + 0x93, 0x48, 0x99, 0xfd, 0xed, 0x0f, 0x4f, 0x6d, 0xd2, 0xad, 0x9d, 0xbd, 0x87, 0x12, 0x6a, 0x75, + 0x1d, 0x76, 0x2c, 0x47, 0xe8, 0x67, 0x00, 0xbf, 0x60, 0x34, 0xd0, 0x9c, 0xd5, 0xc6, 0x7f, 0x74, + 0x7a, 0xce, 0x3f, 0xda, 0xbb, 0xbf, 0xab, 0x58, 0xf7, 0x04, 0x3b, 0xc5, 0xdb, 0x81, 0x85, 0x10, + 0x47, 0x4f, 0x62, 0xc2, 0x35, 0x7b, 0xe5, 0x0b, 0xdf, 0x3d, 0x3d, 0xfb, 0x1f, 0x2b, 0x36, 0x4a, + 0xc2, 0x20, 0xcc, 0x7c, 0x19, 0x7f, 0x39, 0x03, 0xdd, 0x44, 0x2f, 0x51, 0x50, 0x49, 0x0f, 0x57, + 0xd7, 0x0a, 0xdb, 0x0b, 0x0e, 0xa8, 0xb6, 0xe8, 0x59, 0x01, 0x57, 0x37, 0x8b, 0x7b, 0xc1, 0x01, + 0x15, 0xb6, 0x8f, 0x88, 0x43, 0x23, 0x57, 0x1c, 0x5f, 0xde, 0xc8, 0x13, 0x6e, 0xaf, 0xf6, 0x72, + 0x51, 0xc1, 0x6f, 0x27, 0x60, 0x74, 0x19, 0x16, 0xe5, 0xb6, 0x67, 0x30, 0xdb, 0x09, 0x4f, 0xe2, + 0x67, 0x10, 0xaf, 0xc0, 0xd2, 0x93, 0x98, 0x72, 0x62, 0x3b, 0x87, 0x38, 0xc2, 0x0e, 0xa7, 0x69, + 0x81, 0xbf, 0x28, 0xe1, 0x3b, 0x29, 0x18, 0xfd, 0x1f, 0x9c, 0x57, 0xa8, 0x84, 0x39, 0x38, 0x4c, + 0x29, 0x48, 0xa4, 0xeb, 0xbf, 0x15, 0x39, 0x7b, 0x47, 0x4e, 0xee, 0x24, 0x73, 0xc8, 0x80, 0xae, + 0x43, 0x47, 0x23, 0x12, 0x70, 0x26, 0x93, 0x44, 0xcf, 0x4a, 0xbf, 0xd1, 0x4d, 0x58, 0xc3, 0xbe, + 0x4f, 0x9f, 0xda, 0x92, 0xd2, 0xb5, 0x4b, 0xda, 0xcd, 0xcb, 0xe3, 0xd9, 0x90, 0x48, 0x9f, 0x4b, + 0x1c, 0x2b, 0xaf, 0xa8, 0x71, 0x09, 0x7a, 0xe9, 0x3e, 0x8a, 0x64, 0x94, 0x71, 0x48, 0x39, 0x36, + 0xce, 0xc2, 0x20, 0xbb, 0x13, 0xc6, 0x3f, 0xdb, 0xb0, 0x5c, 0x11, 0x54, 0xe8, 0x11, 0x80, 0xf0, + 0x56, 0x15, 0x5a, 0xda, 0x5d, 0xbf, 0x73, 0xfa, 0xe0, 0x14, 0xfe, 0xaa, 0xc0, 0x96, 0xf0, 0x7e, + 0x35, 0x44, 0x3f, 0x87, 0xbe, 0xf4, 0x58, 0xcd, 0x5d, 0xb9, 0xec, 0xc7, 0xdf, 0x80, 0xbb, 0xd0, + 0x55, 0xb3, 0x97, 0x31, 0xa0, 0xc6, 0xc6, 0xdf, 0x5b, 0xd0, 0x4b, 0x05, 0x8b, 0x0b, 0xb7, 0xda, + 0x28, 0xb9, 0xd7, 0x4c, 0x9b, 0xa3, 0x2f, 0x61, 0x77, 0x25, 0xe8, 0x7f, 0xd2, 0x95, 0x8c, 0xf7, + 0x01, 0x26, 0xfa, 0x57, 0xaa, 0xd0, 0xaa, 0x54, 0xc1, 0xbc, 0x02, 0x0b, 0xc2, 0xb2, 0x1e, 0x71, + 0xf7, 0x78, 0xe4, 0x85, 0xf2, 0x9d, 0x41, 0xe1, 0x30, 0x5d, 0x1b, 0x26, 0x9f, 0xdb, 0xbf, 0x5f, + 0x85, 0x41, 0xf6, 0x4e, 0x8b, 0xbe, 0x82, 0x7e, 0xe6, 0x3d, 0x05, 0xbd, 0x51, 0xde, 0xb4, 0xf2, + 0xfb, 0x8c, 0xf1, 0xe6, 0x14, 0x2c, 0x5d, 0xbe, 0xcd, 0xa0, 0x00, 0xce, 0x95, 0x1e, 0x25, 0xd0, + 0xd5, 0x32, 0x75, 0xdd, 0x93, 0x87, 0x71, 0xad, 0x11, 0x6e, 0x2a, 0x8f, 0xc3, 0x72, 0xc5, 0x2b, + 0x03, 0x7a, 0x7b, 0x0a, 0x97, 0xdc, 0x4b, 0x87, 0xf1, 0x4e, 0x43, 0xec, 0x54, 0xea, 0x13, 0x40, + 0xe5, 0x27, 0x08, 0x74, 0x6d, 0x2a, 0x9b, 0xc9, 0x13, 0x87, 0xf1, 0x76, 0x33, 0xe4, 0x5a, 0x45, + 0xd5, 0xe3, 0xc4, 0x54, 0x45, 0x73, 0xcf, 0x1f, 0x53, 0x15, 0x2d, 0xbc, 0x78, 0xcc, 0xa0, 0x23, + 0x58, 0x2a, 0x3e, 0x5c, 0xa0, 0x2b, 0x75, 0x0f, 0x6d, 0xa5, 0x77, 0x11, 0xe3, 0x6a, 0x13, 0xd4, + 0x54, 0x18, 0x81, 0xb3, 0xf9, 0xc7, 0x05, 0x74, 0xb9, 0x4c, 0x5f, 0xf9, 0x54, 0x62, 0x6c, 0x4e, + 0x47, 0xcc, 0xea, 0x54, 0x7c, 0x70, 0xa8, 0xd2, 0xa9, 0xe6, 0x35, 0xa3, 0x4a, 0xa7, 0xba, 0xf7, + 0x0b, 0x73, 0x06, 0xfd, 0x32, 0xe9, 0x62, 0x17, 0x1a, 0xf1, 0x68, 0xab, 0x8e, 0x4d, 0xf5, 0x4b, + 0x80, 0x71, 0xbd, 0x31, 0x7e, 0x22, 0xfb, 0x46, 0x4b, 0xc4, 0x7a, 0xa6, 0x1f, 0x5f, 0x15, 0xeb, + 0xe5, 0x0e, 0x7f, 0x55, 0xac, 0x57, 0x35, 0xf5, 0x67, 0xd0, 0x3e, 0x2c, 0xe4, 0x3a, 0xf4, 0xe8, + 0xad, 0x3a, 0xca, 0xfc, 0xd5, 0xde, 0xb8, 0x3c, 0x15, 0x2f, 0x95, 0x61, 0x27, 0xd9, 0x4b, 0xa7, + 0xab, 0xda, 0xc5, 0xe5, 0xf3, 0xd5, 0x5b, 0xd3, 0xd0, 0x72, 0xa1, 0x5c, 0xea, 0xe3, 0x57, 0x86, + 0x72, 0xdd, 0x3b, 0x41, 0x65, 0x28, 0xd7, 0x3f, 0x0d, 0xcc, 0xa0, 0x9f, 0x02, 0x4c, 0x7a, 0xed, + 0xe8, 0xf5, 0x3a, 0xea, 0xec, 0xee, 0xbf, 0x71, 0x32, 0x52, 0xca, 0xfa, 0x29, 0xac, 0x54, 0x5d, + 0x81, 0x51, 0x45, 0xe0, 0x9f, 0x70, 0xcf, 0x36, 0xb6, 0x9a, 0xa2, 0xa7, 0x82, 0xbf, 0x80, 0x6e, + 0xd2, 0x27, 0x47, 0xaf, 0x95, 0xa9, 0x0b, 0x2f, 0x03, 0x86, 0x79, 0x12, 0x4a, 0xc6, 0x81, 0x47, + 0x49, 0xac, 0x4e, 0x1a, 0xd8, 0xf5, 0xb1, 0x5a, 0x6a, 0xb5, 0xd7, 0xc7, 0x6a, 0xb9, 0x1f, 0x2e, + 0xc5, 0xa5, 0xce, 0x90, 0xed, 0xf7, 0xd6, 0x3b, 0x43, 0x45, 0x3b, 0xbb, 0xde, 0x19, 0x2a, 0x5b, + 0xc8, 0x33, 0xe8, 0x57, 0x70, 0xbe, 0xba, 0xcd, 0x8b, 0x6a, 0x23, 0xbe, 0xa6, 0xdd, 0x6c, 0xdc, + 0x68, 0x4e, 0x90, 0x8a, 0x7f, 0x9e, 0xe4, 0xa7, 0x42, 0x9b, 0xb7, 0x3e, 0x3f, 0x55, 0x37, 0x9b, + 0x8d, 0xeb, 0x8d, 0xf1, 0xcb, 0xa1, 0x97, 0xed, 0xa7, 0xd6, 0x5b, 0xbb, 0xa2, 0x75, 0x5c, 0x6f, + 0xed, 0xca, 0x16, 0xad, 0x8c, 0x8f, 0xaa, 0x5e, 0x69, 0x55, 0x7c, 0x9c, 0xd0, 0xcc, 0x35, 0xb6, + 0x9a, 0xa2, 0xe7, 0x8e, 0xef, 0x72, 0x33, 0x14, 0x4d, 0x5d, 0x7f, 0x2e, 0x33, 0xbf, 0xd3, 0x10, + 0xbb, 0x7e, 0x77, 0x93, 0x4c, 0x3d, 0x55, 0x81, 0x42, 0xc6, 0xbe, 0xde, 0x18, 0x3f, 0x95, 0x1d, + 0x26, 0x2f, 0xa0, 0x99, 0x46, 0x26, 0xba, 0x3a, 0x85, 0x4f, 0xa6, 0x11, 0x6b, 0x5c, 0x6b, 0x84, + 0x5b, 0x15, 0xbd, 0xd9, 0xd6, 0xe2, 0x49, 0xfe, 0x54, 0xea, 0x87, 0x9e, 0xe4, 0x4f, 0x15, 0xdd, + 0xca, 0x19, 0xf4, 0x29, 0xcc, 0xca, 0x2b, 0x0e, 0x5a, 0x3f, 0xf9, 0xee, 0x63, 0x5c, 0xaa, 0x9e, + 0x4f, 0x2b, 0x78, 0xa1, 0xc0, 0xfe, 0x9c, 0xfc, 0x69, 0xea, 0xbd, 0xff, 0x04, 0x00, 0x00, 0xff, + 0xff, 0x03, 0xe0, 0xe6, 0x48, 0x4b, 0x25, 0x00, 0x00, } diff --git a/weed/query/json/query_json.go b/weed/query/json/query_json.go index 779aa96e9..b061df97d 100644 --- a/weed/query/json/query_json.go +++ b/weed/query/json/query_json.go @@ -1,5 +1,107 @@ package json -func QueryJson(jsonLine string, query string) (jsonOutput string) { - return jsonLine +import ( + "strconv" + + "github.com/chrislusf/seaweedfs/weed/query/sqltypes" + "github.com/tidwall/gjson" + "github.com/tidwall/match" +) + +type Query struct { + Field string + Op string + Value string +} + +func QueryJson(jsonLine string, projections []string, query Query) (passedFilter bool, values []sqltypes.Value) { + if filterJson(jsonLine, query) { + passedFilter = true + fields := gjson.GetMany(jsonLine, projections...) + for _, f := range fields { + values = append(values, sqltypes.MakeTrusted(sqltypes.Type(f.Type), sqltypes.StringToBytes(f.Raw))) + } + return + } + return false, nil +} + +func filterJson(jsonLine string, query Query) bool{ + + value := gjson.Get(jsonLine, query.Field) + + // copied from gjson.go queryMatches() function + rpv := query.Value + + if !value.Exists() { + return false + } + if query.Op == "" { + // the query is only looking for existence, such as: + // friends.#(name) + // which makes sure that the array "friends" has an element of + // "name" that exists + return true + } + switch value.Type { + case gjson.String: + switch query.Op { + case "=": + return value.Str == rpv + case "!=": + return value.Str != rpv + case "<": + return value.Str < rpv + case "<=": + return value.Str <= rpv + case ">": + return value.Str > rpv + case ">=": + return value.Str >= rpv + case "%": + return match.Match(value.Str, rpv) + case "!%": + return !match.Match(value.Str, rpv) + } + case gjson.Number: + rpvn, _ := strconv.ParseFloat(rpv, 64) + switch query.Op { + case "=": + return value.Num == rpvn + case "!=": + return value.Num != rpvn + case "<": + return value.Num < rpvn + case "<=": + return value.Num <= rpvn + case ">": + return value.Num > rpvn + case ">=": + return value.Num >= rpvn + } + case gjson.True: + switch query.Op { + case "=": + return rpv == "true" + case "!=": + return rpv != "true" + case ">": + return rpv == "false" + case ">=": + return true + } + case gjson.False: + switch query.Op { + case "=": + return rpv == "false" + case "!=": + return rpv != "false" + case "<": + return rpv == "true" + case "<=": + return true + } + } + return false + } diff --git a/weed/query/json/query_json_test.go b/weed/query/json/query_json_test.go index 7ad837360..621d4f548 100644 --- a/weed/query/json/query_json_test.go +++ b/weed/query/json/query_json_test.go @@ -58,7 +58,7 @@ func TestGjson(t *testing.T) { projections := []string{"quiz","fruit"} gjson.ForEachLine(data, func(line gjson.Result) bool{ - println(line.String()) + println(line.Raw) println("+++++++++++") results := gjson.GetMany(line.Raw, projections...) for _, result := range results { @@ -71,3 +71,66 @@ func TestGjson(t *testing.T) { } + +func TestJsonQueryRow(t *testing.T) { + + data := ` + { + "fruit": "Bl\"ue", + "size": 6, + "quiz": "green" + } + +` + selections := []string{"fruit", "size"} + + isFiltered, values := QueryJson(data, selections, Query{ + Field: "quiz", + Op: "=", + Value: "green", + }) + + if !isFiltered { + t.Errorf("should have been filtered") + } + + if values == nil { + t.Errorf("values should have been returned") + } + + buf := ToJson(nil, selections, values) + println(string(buf)) + +} + +func TestJsonQueryNumber(t *testing.T) { + + data := ` + { + "fruit": "Bl\"ue", + "size": 6, + "quiz": "green" + } + +` + selections := []string{"fruit", "quiz"} + + isFiltered, values := QueryJson(data, selections, Query{ + Field: "size", + Op: ">=", + Value: "6", + }) + + if !isFiltered { + t.Errorf("should have been filtered") + } + + if values == nil { + t.Errorf("values should have been returned") + } + + buf := ToJson(nil, selections, values) + println(string(buf)) + +} + diff --git a/weed/query/json/seralize.go b/weed/query/json/seralize.go new file mode 100644 index 000000000..9bbddc2ff --- /dev/null +++ b/weed/query/json/seralize.go @@ -0,0 +1,17 @@ +package json + +import "github.com/chrislusf/seaweedfs/weed/query/sqltypes" + +func ToJson(buf []byte, selections []string, values []sqltypes.Value) []byte { + buf = append(buf, '{') + for i, value := range values { + if i > 0 { + buf = append(buf, ',') + } + buf = append(buf, selections[i]...) + buf = append(buf, ':') + buf = append(buf, value.Raw()...) + } + buf = append(buf, '}') + return buf +} diff --git a/weed/server/volume_grpc_query.go b/weed/server/volume_grpc_query.go index 43752afb0..898ecc36f 100644 --- a/weed/server/volume_grpc_query.go +++ b/weed/server/volume_grpc_query.go @@ -4,6 +4,7 @@ import ( "github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/operation" "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb" + "github.com/chrislusf/seaweedfs/weed/query/json" "github.com/chrislusf/seaweedfs/weed/storage/needle" "github.com/tidwall/gjson" ) @@ -41,22 +42,30 @@ func (vs *VolumeServer) Query(req *volume_server_pb.QueryRequest, stream volume_ if req.InputSerialization.JsonInput!=nil{ - err = stream.Send(&volume_server_pb.QueriedStripe{ + stripe := &volume_server_pb.QueriedStripe{ Records:nil, - }) - if err != nil { - // println("sending", bytesread, "bytes err", err.Error()) - return err + } + + filter := json.Query{ + Field: req.Filter.Field, + Op: req.Filter.Operand, + Value:req.Filter.Value, } gjson.ForEachLine(string(n.Data), func(line gjson.Result) bool{ - println(line.String()) + passedFilter, values := json.QueryJson(line.Raw, req.Selections, filter) + if !passedFilter { + return true + } + stripe.Records = json.ToJson(stripe.Records, req.Selections, values) return true }) + err = stream.Send(stripe) + if err != nil { + return err + } } - - } return nil -} +} \ No newline at end of file