diff --git a/pkg/kv/bulk/sst_batcher.go b/pkg/kv/bulk/sst_batcher.go index 415f447c1521..4a4ec0039df9 100644 --- a/pkg/kv/bulk/sst_batcher.go +++ b/pkg/kv/bulk/sst_batcher.go @@ -466,7 +466,11 @@ func AddSSTable( if m := (*roachpb.RangeKeyMismatchError)(nil); errors.As(err, &m) { // TODO(andrei): We just use the first of m.Ranges; presumably we // should be using all of them to avoid further retries. - split := m.Ranges()[0].Desc.EndKey.AsRawKey() + mr, err := m.MismatchedRange() + if err != nil { + return err + } + split := mr.Desc.EndKey.AsRawKey() log.Infof(ctx, "SSTable cannot be added spanning range bounds %v, retrying...", split) left, right, err := createSplitSSTable(ctx, db, item.start, split, item.disallowShadowing, iter, settings) if err != nil { diff --git a/pkg/kv/kvclient/kvcoord/dist_sender.go b/pkg/kv/kvclient/kvcoord/dist_sender.go index f2cfa4c28227..67cd6d7ae6b5 100644 --- a/pkg/kv/kvclient/kvcoord/dist_sender.go +++ b/pkg/kv/kvclient/kvcoord/dist_sender.go @@ -1643,7 +1643,7 @@ func (ds *DistSender) sendPartialBatch( // Range descriptor might be out of date - evict it. This is likely the // result of a range split. If we have new range descriptors, insert them // instead. - for _, ri := range tErr.Ranges() { + for _, ri := range tErr.Ranges { // Sanity check that we got the different descriptors. Getting the same // descriptor and putting it in the cache would be bad, as we'd go through // an infinite loops of retries. @@ -1653,7 +1653,7 @@ func (ds *DistSender) sendPartialBatch( routingTok.Desc(), ri.Desc, pErr))} } } - routingTok.EvictAndReplace(ctx, tErr.Ranges()...) + routingTok.EvictAndReplace(ctx, tErr.Ranges...) // On addressing errors (likely a split), we need to re-invoke // the range descriptor lookup machinery, so we recurse by // sending batch to just the partial span this descriptor was @@ -1662,7 +1662,7 @@ func (ds *DistSender) sendPartialBatch( // to it matches the positions into our batch (using the full // batch here would give a potentially larger response slice // with unknown mapping to our truncated reply). - log.VEventf(ctx, 1, "likely split; will resend. Got new descriptors: %s", tErr.Ranges()) + log.VEventf(ctx, 1, "likely split; will resend. Got new descriptors: %s", tErr.Ranges) reply, pErr = ds.divideAndSendBatchToRanges(ctx, ba, rs, withCommit, batchIdx) return response{reply: reply, positions: positions, pErr: pErr} } diff --git a/pkg/kv/kvserver/replica_test.go b/pkg/kv/kvserver/replica_test.go index 16696639f69e..785a5a5dba7c 100644 --- a/pkg/kv/kvserver/replica_test.go +++ b/pkg/kv/kvserver/replica_test.go @@ -858,9 +858,9 @@ func TestReplicaRangeBoundsChecking(t *testing.T) { if mismatchErr, ok := pErr.GetDetail().(*roachpb.RangeKeyMismatchError); !ok { t.Errorf("expected range key mismatch error: %s", pErr) } else { - require.Len(t, mismatchErr.Ranges(), 2) - mismatchedDesc := mismatchErr.Ranges()[0].Desc - suggestedDesc := mismatchErr.Ranges()[1].Desc + require.Len(t, mismatchErr.Ranges, 2) + mismatchedDesc := mismatchErr.Ranges[0].Desc + suggestedDesc := mismatchErr.Ranges[1].Desc if mismatchedDesc.RangeID != firstRepl.RangeID { t.Errorf("expected mismatched range to be %d, found %v", firstRepl.RangeID, mismatchedDesc) } diff --git a/pkg/kv/kvserver/store_send.go b/pkg/kv/kvserver/store_send.go index 6e787d183075..68297e0b40a1 100644 --- a/pkg/kv/kvserver/store_send.go +++ b/pkg/kv/kvserver/store_send.go @@ -216,7 +216,10 @@ func (s *Store) Send( // We'll return info on the range that the request ended up being routed to // and, to the extent that we have the info, the ranges containing the keys // that the client requested, and all the ranges in between. - ri := t.Ranges()[0] + ri, err := t.MismatchedRange() + if err != nil { + return nil, roachpb.NewError(err) + } skipRID := ri.Desc.RangeID // We already have info on one range, so don't add it again below. startKey := ri.Desc.StartKey if rSpan.Key.Less(startKey) { diff --git a/pkg/roachpb/errors.go b/pkg/roachpb/errors.go index e2310b17523d..4f86b03632da 100644 --- a/pkg/roachpb/errors.go +++ b/pkg/roachpb/errors.go @@ -574,9 +574,8 @@ func NewRangeKeyMismatchError( } } e := &RangeKeyMismatchError{ - RequestStartKey: start, - RequestEndKey: end, - DeprecatedMismatchedRange: *desc, + RequestStartKey: start, + RequestEndKey: end, } // More ranges are sometimes added to rangesInternal later. e.AppendRangeInfo(ctx, *desc, l) @@ -588,9 +587,12 @@ func (e *RangeKeyMismatchError) Error() string { } func (e *RangeKeyMismatchError) message(_ *Error) string { - desc := &e.Ranges()[0].Desc + mr, err := e.MismatchedRange() + if err != nil { + return err.Error() + } return fmt.Sprintf("key range %s-%s outside of bounds of range %s-%s; suggested ranges: %s", - e.RequestStartKey, e.RequestEndKey, desc.StartKey, desc.EndKey, e.Ranges()) + e.RequestStartKey, e.RequestEndKey, mr.Desc.StartKey, mr.Desc.EndKey, e.Ranges) } // Type is part of the ErrorDetailInterface. @@ -598,21 +600,15 @@ func (e *RangeKeyMismatchError) Type() ErrorDetailType { return RangeKeyMismatchErrType } -// Ranges returns the range info for the range that the request was erroneously -// routed to. It deals with legacy errors coming from 20.1 nodes by returning -// empty lease for the respective descriptors. -// -// At least one RangeInfo is returned. -func (e *RangeKeyMismatchError) Ranges() []RangeInfo { - if len(e.rangesInternal) != 0 { - return e.rangesInternal - } - // Fallback for 20.1 errors. Remove in 21.1. - ranges := []RangeInfo{{Desc: e.DeprecatedMismatchedRange}} - if e.DeprecatedSuggestedRange != nil { - ranges = append(ranges, RangeInfo{Desc: *e.DeprecatedSuggestedRange}) +// MismatchedRange returns the range info for the range that the request was +// erroneously routed to, or an error if the Ranges slice is empty. +func (e *RangeKeyMismatchError) MismatchedRange() (RangeInfo, error) { + if len(e.Ranges) == 0 { + return RangeInfo{}, errors.AssertionFailedf( + "RangeKeyMismatchError (key range %s-%s) with empty RangeInfo slice", e.RequestStartKey, e.RequestEndKey, + ) } - return ranges + return e.Ranges[0], nil } // AppendRangeInfo appends info about one range to the set returned to the @@ -628,7 +624,7 @@ func (e *RangeKeyMismatchError) AppendRangeInfo( log.Fatalf(ctx, "lease names missing replica; lease: %s, desc: %s", l, desc) } } - e.rangesInternal = append(e.rangesInternal, RangeInfo{ + e.Ranges = append(e.Ranges, RangeInfo{ Desc: desc, Lease: l, }) diff --git a/pkg/roachpb/errors.pb.go b/pkg/roachpb/errors.pb.go index ddc554fd3390..842d23cf449e 100644 --- a/pkg/roachpb/errors.pb.go +++ b/pkg/roachpb/errors.pb.go @@ -583,21 +583,16 @@ var xxx_messageInfo_RangeNotFoundError proto.InternalMessageInfo type RangeKeyMismatchError struct { RequestStartKey Key `protobuf:"bytes,1,opt,name=request_start_key,json=requestStartKey,casttype=Key" json:"request_start_key,omitempty"` RequestEndKey Key `protobuf:"bytes,2,opt,name=request_end_key,json=requestEndKey,casttype=Key" json:"request_end_key,omitempty"` - // deprecated_mismatched_range is an older version of mismatched_range. Can go - // away in 21.1, when we don't worry about 20.1 kvservers not populating rangesInternal. - DeprecatedMismatchedRange RangeDescriptor `protobuf:"bytes,3,opt,name=deprecated_mismatched_range,json=deprecatedMismatchedRange" json:"deprecated_mismatched_range"` - // deprecated_suggested_range is an older version of suggested_range. Can go - // away in 21.1, when we don't worry about 20.1 kvservers not populating - // rangesInternal. - DeprecatedSuggestedRange *RangeDescriptor `protobuf:"bytes,4,opt,name=deprecated_suggested_range,json=deprecatedSuggestedRange" json:"deprecated_suggested_range,omitempty"` - // ranges contains information intended for the client's range cache. The + // Ranges contains information intended for the client's range cache. The // server populates it with info on the range with the ID addressed by the // client (always the first in the array) and then all other ranges // overlapping the requested key range, or in between the addressed range and // the requested key range. // - // In 21.1 the customname can be removed, together with the Ranges() accessor. - rangesInternal []RangeInfo `protobuf:"bytes,5,rep,name=ranges" json:"ranges"` + // The slice should always have a length of at least 1. However, users should + // call MismatchedRange instead of relying on this in cases where they require + // at least one entry. + Ranges []RangeInfo `protobuf:"bytes,5,rep,name=ranges" json:"ranges"` } func (m *RangeKeyMismatchError) Reset() { *m = RangeKeyMismatchError{} } @@ -2314,214 +2309,211 @@ func init() { func init() { proto.RegisterFile("roachpb/errors.proto", fileDescriptor_123941c6716fd549) } var fileDescriptor_123941c6716fd549 = []byte{ - // 3309 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0x4b, 0x73, 0x1b, 0xc7, - 0xb5, 0xc6, 0x8b, 0x24, 0x78, 0xf8, 0xd0, 0xb0, 0xf9, 0x1a, 0x52, 0x12, 0x48, 0x41, 0x92, 0x2d, - 0xc9, 0x65, 0xf0, 0x96, 0x7c, 0x7d, 0xef, 0xb5, 0xaf, 0xee, 0x02, 0x8f, 0x21, 0x31, 0x24, 0x5e, - 0x1e, 0x80, 0xa2, 0x64, 0x95, 0xab, 0x3d, 0x04, 0x9a, 0xe0, 0x5c, 0x0d, 0x66, 0xe0, 0x99, 0x01, - 0x45, 0x56, 0x65, 0x91, 0xc4, 0x1b, 0x57, 0xb2, 0xc9, 0x26, 0x95, 0x2c, 0x53, 0xe5, 0xca, 0x22, - 0x55, 0xa9, 0x54, 0x7e, 0x41, 0x56, 0x59, 0x78, 0x95, 0x72, 0x65, 0xe5, 0xca, 0x42, 0x49, 0xa4, - 0xfc, 0x0a, 0xaf, 0x52, 0xfd, 0x18, 0x60, 0x00, 0x0c, 0x28, 0xca, 0xbb, 0x99, 0xf3, 0xea, 0xd3, - 0xa7, 0xbb, 0xcf, 0xf9, 0x4e, 0x37, 0xac, 0x38, 0xb6, 0xde, 0x3c, 0xed, 0x1e, 0xef, 0x10, 0xc7, - 0xb1, 0x1d, 0x37, 0xd3, 0x75, 0x6c, 0xcf, 0x46, 0x4b, 0x4d, 0xbb, 0xf9, 0x9c, 0x71, 0x32, 0xcf, - 0xcf, 0x32, 0xcf, 0xcf, 0xba, 0xc7, 0x9b, 0xab, 0x5c, 0x60, 0x44, 0x72, 0x13, 0xf9, 0xfa, 0x2d, - 0xdd, 0xd3, 0x05, 0x6d, 0xcd, 0xa7, 0x75, 0x88, 0xa7, 0x07, 0xe8, 0x72, 0xcf, 0x33, 0xcc, 0x9d, - 0x53, 0xb3, 0xb9, 0xe3, 0x19, 0x1d, 0xe2, 0x7a, 0x7a, 0xa7, 0x2b, 0x38, 0x2b, 0x6d, 0xbb, 0x6d, - 0xb3, 0xcf, 0x1d, 0xfa, 0xc5, 0xa9, 0xe9, 0x3f, 0xc6, 0x60, 0xb9, 0x62, 0x7b, 0x25, 0xa2, 0xbb, - 0xa4, 0x68, 0x9b, 0x2d, 0xe2, 0x28, 0x74, 0x68, 0x54, 0x80, 0x19, 0x87, 0x74, 0x4d, 0xa3, 0xa9, - 0xcb, 0xd1, 0xed, 0xe8, 0xbd, 0xb9, 0x87, 0x77, 0x32, 0x03, 0x7f, 0xc5, 0xd8, 0x19, 0x8d, 0x4b, - 0x14, 0x88, 0xdb, 0x74, 0x8c, 0xae, 0x67, 0x3b, 0xb9, 0xc4, 0x37, 0x2f, 0xb7, 0x22, 0x9a, 0xaf, - 0x8a, 0xf6, 0x60, 0xde, 0xa4, 0x96, 0xf1, 0x29, 0x33, 0x2d, 0xc7, 0xae, 0x6e, 0x4a, 0x9b, 0x33, - 0x07, 0x3e, 0xa1, 0x0c, 0x4c, 0xb1, 0x5f, 0x39, 0xc1, 0x2c, 0xc8, 0x21, 0x16, 0xd8, 0x14, 0x34, - 0x2e, 0x86, 0x3e, 0x84, 0xa4, 0xa3, 0x5b, 0x6d, 0x82, 0x8d, 0x96, 0x1c, 0xdf, 0x8e, 0xde, 0x8b, - 0xe7, 0x36, 0xa9, 0x67, 0xaf, 0x5e, 0x6e, 0xcd, 0x68, 0x94, 0xae, 0x16, 0xbe, 0x1f, 0x7c, 0x6a, - 0x33, 0x4c, 0x56, 0x6d, 0xa1, 0xdb, 0x00, 0xcd, 0x9e, 0xeb, 0xd9, 0x1d, 0xdc, 0x71, 0xdb, 0xf2, - 0xd4, 0x76, 0xf4, 0xde, 0xac, 0x98, 0xd2, 0x2c, 0xa7, 0x97, 0xdd, 0x76, 0x7a, 0x0d, 0x56, 0x2a, - 0x76, 0x8b, 0x1c, 0x5a, 0xfa, 0x99, 0x6e, 0x98, 0xfa, 0xb1, 0x49, 0x58, 0xc8, 0xd2, 0x1b, 0xb0, - 0x7e, 0x68, 0xb9, 0xbd, 0x6e, 0xd7, 0x76, 0x3c, 0xd2, 0xd2, 0xc8, 0x17, 0x3d, 0xe2, 0x7a, 0x9c, - 0xf5, 0xd3, 0x28, 0x20, 0x36, 0x58, 0xc5, 0xf6, 0x76, 0xed, 0x9e, 0xd5, 0xe2, 0x41, 0x0e, 0x7a, - 0x19, 0xbd, 0xba, 0x97, 0x1f, 0x42, 0xd2, 0xf5, 0x6c, 0x87, 0xa9, 0xc5, 0x86, 0xd5, 0xea, 0x94, - 0xce, 0xd5, 0xc4, 0xa7, 0x36, 0xc3, 0x64, 0xd5, 0x56, 0xfa, 0x57, 0x71, 0x58, 0x65, 0xb6, 0x0e, - 0xc8, 0x45, 0xd9, 0x70, 0x3b, 0xba, 0xd7, 0x3c, 0xe5, 0x7e, 0x7c, 0x00, 0x4b, 0x0e, 0x77, 0x17, - 0xbb, 0x9e, 0xee, 0x78, 0xf8, 0x39, 0xb9, 0x60, 0x0e, 0xcd, 0xe7, 0x66, 0xbe, 0x7f, 0xb9, 0x15, - 0x3f, 0x20, 0x17, 0xda, 0x35, 0x21, 0x51, 0xa7, 0x02, 0x07, 0xe4, 0x02, 0xed, 0x80, 0x4f, 0xc2, - 0xc4, 0x6a, 0x31, 0x95, 0xd8, 0xb0, 0xca, 0x82, 0xe0, 0x2b, 0x56, 0x8b, 0x2a, 0x9c, 0xc2, 0xf5, - 0x16, 0xe9, 0x3a, 0xa4, 0xa9, 0x7b, 0xa4, 0x85, 0x3b, 0xc2, 0x03, 0xd2, 0xc2, 0x6c, 0x5e, 0x6c, - 0x99, 0xe6, 0x1e, 0xa6, 0xc3, 0xf6, 0x06, 0xe5, 0x8f, 0x6d, 0xb2, 0x8d, 0x81, 0xb1, 0x72, 0xdf, - 0x16, 0x13, 0x45, 0x9f, 0xc3, 0x66, 0x60, 0x24, 0xb7, 0xd7, 0x6e, 0x13, 0xd7, 0xeb, 0x0f, 0x94, - 0xb8, 0xea, 0x40, 0x9a, 0x3c, 0xb0, 0x52, 0xf7, 0x8d, 0xf0, 0x11, 0x4a, 0x30, 0xcd, 0x8c, 0xb9, - 0xf2, 0xd4, 0x76, 0xfc, 0xde, 0xdc, 0xc3, 0x1b, 0x93, 0xac, 0xa9, 0xd6, 0x89, 0x9d, 0x5b, 0x13, - 0xcb, 0xb3, 0xc8, 0x75, 0x54, 0xcb, 0x23, 0x8e, 0xa5, 0x9b, 0x9a, 0xb0, 0x91, 0x7e, 0x1d, 0x87, - 0xb4, 0x46, 0xf4, 0xd6, 0x91, 0xe1, 0x9d, 0x1a, 0xd6, 0xa1, 0xd5, 0x24, 0x8e, 0xa7, 0x1b, 0x96, - 0x77, 0xc1, 0x24, 0xcf, 0x74, 0x93, 0x2f, 0xd3, 0x3e, 0x2c, 0x3a, 0x44, 0x6f, 0xe1, 0xfe, 0xc9, - 0x16, 0x47, 0xf3, 0x66, 0x60, 0x70, 0x7a, 0xfc, 0x33, 0xa7, 0x66, 0x33, 0xd3, 0xf0, 0x85, 0x44, - 0xb8, 0x16, 0xa8, 0x6a, 0x9f, 0x88, 0x34, 0x40, 0xe4, 0xdc, 0x70, 0x3d, 0xc3, 0x6a, 0x07, 0xec, - 0xc5, 0xae, 0x6e, 0x6f, 0xc9, 0x57, 0x1f, 0xd8, 0x7c, 0x06, 0xeb, 0xa6, 0xdd, 0xd4, 0x4d, 0xdc, - 0x1b, 0xcc, 0x00, 0x9b, 0x46, 0xc7, 0xf0, 0xd8, 0x51, 0xba, 0xa2, 0xe1, 0x55, 0x66, 0x23, 0x10, - 0x84, 0x12, 0xb5, 0x80, 0x3e, 0x03, 0xb9, 0x6d, 0xda, 0xc7, 0xa1, 0xd6, 0xe3, 0x57, 0xb7, 0xbe, - 0xc6, 0x8d, 0x8c, 0x99, 0x7f, 0x06, 0xcb, 0xf6, 0xb1, 0x4b, 0x9c, 0x33, 0x12, 0x88, 0xaf, 0x2b, - 0x27, 0xd8, 0xea, 0x86, 0x25, 0xac, 0xaa, 0x90, 0x1e, 0x1d, 0x00, 0xd9, 0xa3, 0x0c, 0xf7, 0xe3, - 0xc4, 0xaf, 0x7f, 0xb3, 0x15, 0x49, 0xb7, 0x60, 0xbd, 0xe1, 0xe8, 0x96, 0xab, 0x37, 0x3d, 0xc3, - 0xb6, 0xb2, 0xc7, 0x2c, 0x4d, 0xf0, 0x95, 0x55, 0x61, 0xda, 0x21, 0xba, 0x6b, 0x5b, 0x6c, 0x45, - 0x17, 0x1f, 0xbe, 0x97, 0x19, 0x2b, 0x0e, 0x99, 0x71, 0x5d, 0x8d, 0xa9, 0x88, 0x71, 0x85, 0x81, - 0xf4, 0x33, 0x58, 0x09, 0x48, 0xd6, 0x7a, 0xae, 0x38, 0xe3, 0x79, 0x80, 0x6e, 0xcf, 0x3d, 0x25, - 0x04, 0x7b, 0xe7, 0x96, 0xd8, 0x38, 0xa9, 0x90, 0x79, 0x05, 0x94, 0xfd, 0xd4, 0xc7, 0xf5, 0x1a, - 0xe7, 0x56, 0xfa, 0xcb, 0x28, 0xac, 0x06, 0x04, 0x34, 0xe2, 0x39, 0x17, 0xdc, 0xfc, 0xde, 0xc8, - 0x0c, 0xee, 0x5f, 0x3e, 0x03, 0xa6, 0x19, 0xe6, 0x3f, 0xba, 0x05, 0xb3, 0xe4, 0xdc, 0x73, 0x74, - 0x96, 0x81, 0x63, 0x81, 0x0c, 0x9c, 0x64, 0x64, 0x9a, 0x80, 0xff, 0x14, 0x85, 0xb5, 0x80, 0xad, - 0xba, 0xa7, 0x7b, 0x3d, 0x97, 0xbb, 0xb1, 0x06, 0x71, 0xaa, 0x17, 0x0d, 0xe8, 0x51, 0x02, 0xaa, - 0xf4, 0xdd, 0x8b, 0x31, 0xf7, 0xfe, 0xe3, 0x72, 0xf7, 0x02, 0x26, 0x33, 0xa1, 0x51, 0x7e, 0x04, - 0xd3, 0x9c, 0x8e, 0x10, 0x2c, 0x6a, 0x4a, 0xb6, 0x5e, 0xad, 0xe0, 0xc3, 0xca, 0x41, 0xa5, 0x7a, - 0x54, 0x91, 0x22, 0x48, 0x86, 0x15, 0x41, 0x6b, 0x3c, 0xa9, 0xe0, 0x7c, 0xb5, 0x5c, 0x56, 0x1b, - 0x0d, 0xa5, 0x20, 0xc5, 0xd2, 0x89, 0x64, 0x54, 0x8a, 0xa6, 0xff, 0x1e, 0x03, 0xe9, 0xc8, 0x31, - 0x3c, 0x42, 0xcf, 0xb7, 0xc5, 0x6b, 0x04, 0xfa, 0x08, 0x66, 0x0c, 0xf6, 0xeb, 0xca, 0x51, 0xb6, - 0xeb, 0x36, 0x42, 0x56, 0x87, 0x2b, 0xf8, 0x65, 0x56, 0xc8, 0xa3, 0x47, 0xb0, 0xc8, 0xcb, 0xac, - 0x4b, 0x13, 0xae, 0xd5, 0x24, 0xa2, 0xe6, 0xad, 0x52, 0xb1, 0xef, 0x5f, 0x6e, 0x2d, 0xb0, 0xda, - 0x58, 0x17, 0x4c, 0x6d, 0xc1, 0x0c, 0xfe, 0xa2, 0x62, 0x3f, 0x36, 0x09, 0x16, 0x9b, 0x07, 0x21, - 0xb1, 0x19, 0xf5, 0x36, 0x3c, 0x2a, 0x3f, 0x89, 0xf6, 0xc3, 0xb2, 0x06, 0xa8, 0x1f, 0x96, 0x7a, - 0x4d, 0xc9, 0xab, 0xbb, 0xaa, 0x52, 0x90, 0x22, 0x01, 0xfa, 0x51, 0x56, 0x6d, 0xe0, 0x5a, 0xb5, - 0xa4, 0xe6, 0x9f, 0x4a, 0x51, 0xb4, 0x0e, 0xcb, 0x82, 0x5e, 0xaa, 0xe6, 0x0f, 0x70, 0x43, 0x2d, - 0x2b, 0xd5, 0xc3, 0x86, 0x14, 0x43, 0x19, 0x78, 0x10, 0x64, 0x30, 0xad, 0x4f, 0x0e, 0x95, 0x43, - 0x05, 0x97, 0xb3, 0x4f, 0x70, 0x49, 0xa9, 0xec, 0x35, 0x8a, 0x58, 0x79, 0x92, 0x57, 0x94, 0x82, - 0x52, 0x90, 0xe2, 0xfb, 0x89, 0x64, 0x4c, 0x8a, 0xa7, 0x7f, 0x1b, 0x15, 0x11, 0x6e, 0xd8, 0x76, - 0xd5, 0x14, 0xa7, 0x2c, 0x0b, 0xb3, 0x3f, 0x28, 0x75, 0x0e, 0xb4, 0x50, 0x05, 0x24, 0xbd, 0xe9, - 0xf5, 0x74, 0xf3, 0x87, 0x25, 0xcd, 0x6b, 0x5c, 0xb9, 0x4f, 0x4e, 0xaf, 0x00, 0xaa, 0x76, 0x29, - 0x54, 0x30, 0x1c, 0xe2, 0x36, 0xce, 0x2d, 0x0e, 0x17, 0xea, 0xb0, 0x92, 0xb7, 0xad, 0x96, 0x41, - 0xb7, 0xe2, 0xae, 0x6e, 0x98, 0x7e, 0x9a, 0xf8, 0x5f, 0x98, 0x17, 0xa3, 0x9f, 0xe9, 0x66, 0x8f, - 0x88, 0x39, 0x84, 0x81, 0xa1, 0xc7, 0x94, 0xaf, 0xcd, 0x71, 0x69, 0xf6, 0x93, 0xfe, 0x43, 0x14, - 0x10, 0xc7, 0x48, 0xe4, 0xff, 0x49, 0xb3, 0x9f, 0x7a, 0x52, 0x30, 0xd3, 0x21, 0xae, 0xab, 0xb7, - 0xc9, 0xd0, 0xa9, 0xf1, 0x89, 0xe8, 0x11, 0xcc, 0x8a, 0x32, 0x4e, 0x5a, 0x62, 0xaa, 0x13, 0xd1, - 0x97, 0x1f, 0xaf, 0xbe, 0x02, 0xfa, 0x18, 0x92, 0x7e, 0x9d, 0x10, 0x59, 0xfa, 0x4d, 0xca, 0x7d, - 0xf9, 0xf4, 0x17, 0xb0, 0x92, 0xed, 0x1c, 0x1b, 0xed, 0x9e, 0xdd, 0x73, 0x35, 0xe2, 0xf6, 0x4c, - 0xef, 0x6a, 0x1e, 0x7f, 0x04, 0x73, 0x2f, 0x1c, 0xbd, 0xdb, 0x25, 0x2d, 0x4c, 0x1c, 0x27, 0xc4, - 0x67, 0x7f, 0x53, 0x33, 0x73, 0x1a, 0x08, 0x61, 0xc5, 0x71, 0xd2, 0xeb, 0x14, 0x21, 0x9d, 0x78, - 0x7b, 0x8e, 0xdd, 0xeb, 0x16, 0x88, 0x49, 0xfc, 0x28, 0xa5, 0x31, 0xac, 0x09, 0x84, 0x9a, 0xb7, - 0x1d, 0xa7, 0xd7, 0xa5, 0x2b, 0xc3, 0xbd, 0xa1, 0xf9, 0x8a, 0x7e, 0xe0, 0xd1, 0xbc, 0x93, 0x64, - 0xe4, 0xb2, 0xdb, 0x46, 0x69, 0x98, 0xed, 0x3a, 0x76, 0x93, 0xb8, 0xae, 0x08, 0x61, 0xb2, 0x9f, - 0x59, 0x7d, 0x72, 0xba, 0x0e, 0x48, 0x0c, 0x10, 0xdc, 0xb1, 0xff, 0x07, 0x20, 0xa0, 0xb4, 0x0f, - 0x11, 0xa7, 0x72, 0x29, 0x01, 0x26, 0x66, 0x85, 0x3c, 0x43, 0x7b, 0x83, 0x1f, 0x1a, 0x7d, 0xfe, - 0xd9, 0x4a, 0x1f, 0x00, 0x62, 0x28, 0x70, 0x0c, 0x75, 0xf6, 0xe1, 0x63, 0xf4, 0xea, 0xf0, 0xb1, - 0x4e, 0xe1, 0xed, 0xa9, 0x6e, 0xb5, 0x4c, 0x5a, 0x79, 0x3c, 0xe7, 0xa2, 0x8f, 0x7c, 0xd1, 0x43, - 0x48, 0x74, 0x15, 0xc7, 0x09, 0xd9, 0x8f, 0x43, 0xa1, 0x16, 0xb3, 0x66, 0xb2, 0xa2, 0x26, 0xfe, - 0x2b, 0x0a, 0x77, 0x47, 0xcb, 0x02, 0x45, 0x41, 0x35, 0xda, 0x9c, 0x68, 0xe4, 0xc4, 0x21, 0x7e, - 0xfd, 0x9a, 0x94, 0xd9, 0x9f, 0xc1, 0xb4, 0x77, 0x6e, 0xf9, 0x50, 0x78, 0x3e, 0x57, 0xa0, 0xac, - 0xbf, 0xbd, 0xdc, 0xfa, 0xa0, 0x6d, 0x78, 0xa7, 0xbd, 0xe3, 0x4c, 0xd3, 0xee, 0xec, 0xf4, 0xfd, - 0x69, 0x1d, 0x0f, 0xbe, 0x77, 0xba, 0xcf, 0xdb, 0x3b, 0xac, 0x5b, 0xea, 0xf5, 0x8c, 0x56, 0xe6, - 0xf0, 0x50, 0x2d, 0xbc, 0x7a, 0xb9, 0x35, 0xd5, 0x38, 0xb7, 0xd4, 0x82, 0x36, 0xe5, 0x9d, 0x5b, - 0x6a, 0x0b, 0xed, 0xc2, 0x9c, 0x37, 0xf0, 0x4e, 0xec, 0xe0, 0xab, 0x55, 0xcd, 0xa0, 0x62, 0x7a, - 0x17, 0xb6, 0x1a, 0xe7, 0x56, 0xd6, 0xa4, 0x18, 0xec, 0x42, 0xb1, 0x9a, 0x76, 0x8f, 0x02, 0x3b, - 0xb1, 0xb9, 0xf8, 0xfc, 0x6e, 0x03, 0x74, 0x1d, 0x72, 0x86, 0xd9, 0xae, 0x19, 0x9a, 0xe6, 0x2c, - 0xa5, 0xf3, 0x6d, 0xf8, 0xf3, 0x28, 0xac, 0xd0, 0x2c, 0xdc, 0x26, 0x4e, 0xf5, 0x8c, 0x38, 0x27, - 0xa6, 0xfd, 0x82, 0x6b, 0x6f, 0x40, 0x3c, 0x04, 0xb3, 0x53, 0x1a, 0xba, 0x0f, 0x0b, 0xcd, 0x9e, - 0xe3, 0x10, 0xcb, 0x13, 0x59, 0x83, 0xb7, 0x0c, 0xdc, 0xf6, 0xbc, 0x60, 0xb1, 0x14, 0x81, 0xde, - 0x87, 0x6b, 0x86, 0xd5, 0x74, 0x48, 0x67, 0x20, 0x1c, 0x0f, 0x08, 0x2f, 0xf6, 0x99, 0x3c, 0xa3, - 0x7c, 0x1d, 0x85, 0xeb, 0x39, 0x8a, 0xbb, 0x07, 0x69, 0x8e, 0x9c, 0xd8, 0x0e, 0xd9, 0xcb, 0xf7, - 0xf3, 0x6d, 0xe3, 0x07, 0xe5, 0xdb, 0x01, 0xa4, 0xa4, 0x26, 0x4e, 0xe9, 0x26, 0xb0, 0xcd, 0xd6, - 0xdb, 0x24, 0xda, 0x81, 0x56, 0xba, 0x03, 0x88, 0x17, 0xae, 0xb2, 0xe1, 0xba, 0x86, 0xd5, 0xe6, - 0xbe, 0x3d, 0x82, 0xf9, 0x17, 0x8e, 0x6d, 0xb5, 0x31, 0xaf, 0xa1, 0xc2, 0xbd, 0xc9, 0x25, 0x57, - 0x9b, 0x63, 0xe2, 0xfc, 0xc7, 0x0f, 0x77, 0x6c, 0x3c, 0xdc, 0xb4, 0x3b, 0x2c, 0x13, 0x87, 0x02, - 0xff, 0x9a, 0x63, 0xb7, 0x1d, 0xe2, 0x72, 0x18, 0x91, 0xfe, 0x5d, 0x0c, 0x96, 0x59, 0x47, 0xb0, - 0x4b, 0xc4, 0xf9, 0xe1, 0x8e, 0x1c, 0x8c, 0x00, 0xa7, 0xf7, 0x43, 0x4e, 0x4f, 0x88, 0x5e, 0x78, - 0x01, 0xfe, 0xf3, 0xa0, 0x00, 0x6f, 0xc2, 0x9a, 0xa8, 0x9b, 0x9a, 0x52, 0x2b, 0xa9, 0xf9, 0x2c, - 0xd6, 0x94, 0x72, 0xf5, 0xf1, 0x48, 0x11, 0xd6, 0xb2, 0x95, 0x3d, 0x05, 0xd7, 0x6b, 0x25, 0xb5, - 0x31, 0x54, 0x84, 0x39, 0xbd, 0xac, 0x68, 0x7b, 0x14, 0xb6, 0x04, 0x00, 0x8d, 0x96, 0xdd, 0x6d, - 0xe0, 0x7a, 0x25, 0x5b, 0xab, 0x17, 0xab, 0x0d, 0x29, 0x8e, 0x52, 0xb0, 0xd9, 0x2f, 0xcf, 0x7b, - 0x6a, 0x3e, 0x5b, 0xc2, 0xd5, 0x5a, 0x1d, 0x97, 0xd5, 0x7a, 0x5d, 0xad, 0xec, 0x49, 0x89, 0x80, - 0x66, 0xbd, 0x54, 0x3d, 0xc2, 0xf9, 0x6a, 0xa5, 0x7e, 0x58, 0x56, 0x34, 0x69, 0x0a, 0x6d, 0xc0, - 0xaa, 0xe0, 0x54, 0xaa, 0xb8, 0xa4, 0x64, 0xeb, 0x4a, 0xb1, 0x5a, 0x2a, 0x28, 0x9a, 0x34, 0x9d, - 0xd6, 0x41, 0x56, 0xad, 0x16, 0xf1, 0x88, 0xd3, 0x31, 0x2c, 0xdd, 0x23, 0x79, 0xbb, 0xd3, 0x31, - 0x44, 0xf6, 0x57, 0x60, 0xce, 0xf5, 0xf4, 0x36, 0xeb, 0x5b, 0xde, 0x12, 0xc8, 0x82, 0x50, 0xa4, - 0x48, 0x76, 0x19, 0x96, 0x54, 0xeb, 0x4c, 0x37, 0x8d, 0x16, 0x2b, 0x3e, 0x7c, 0x8d, 0x52, 0x70, - 0xa3, 0xda, 0xf5, 0x8c, 0x0e, 0x2d, 0x40, 0x4d, 0xe5, 0x4c, 0x37, 0xf3, 0xb6, 0x75, 0x62, 0x1a, - 0x4d, 0x4f, 0xac, 0xe1, 0x5f, 0xa2, 0x70, 0xbb, 0x6c, 0x58, 0x83, 0xcd, 0x46, 0x93, 0xea, 0xa1, - 0xe5, 0xea, 0x9e, 0xe1, 0x9e, 0x18, 0x83, 0x7c, 0x58, 0x87, 0xe5, 0x8e, 0x61, 0x0d, 0x20, 0x02, - 0x3e, 0xa6, 0x82, 0x6f, 0x73, 0x04, 0x96, 0x3a, 0xa3, 0xc3, 0xd0, 0x8e, 0xcd, 0x21, 0xae, 0x6d, - 0x0e, 0x75, 0x28, 0x6f, 0xd5, 0xb1, 0xf9, 0xea, 0x03, 0xf8, 0xf1, 0xcb, 0x75, 0x98, 0x63, 0x2e, - 0x17, 0x88, 0xa7, 0x1b, 0x26, 0xd2, 0x40, 0xb2, 0x6c, 0x0f, 0x0f, 0xdd, 0xd9, 0x70, 0xaf, 0xdf, - 0x09, 0xd9, 0x96, 0x21, 0xf7, 0x46, 0xc5, 0x88, 0xb6, 0x68, 0x0d, 0x91, 0x51, 0x15, 0xae, 0xf1, - 0x4b, 0x0e, 0x6a, 0xf9, 0x84, 0x05, 0x82, 0x3b, 0x7d, 0x77, 0xd2, 0x4e, 0x1f, 0x2a, 0x57, 0x45, - 0xda, 0xba, 0x06, 0xa9, 0xe8, 0x09, 0x20, 0x6e, 0xf0, 0x39, 0xb9, 0xe8, 0x5f, 0x23, 0x88, 0xdc, - 0x7c, 0x6f, 0x92, 0xcd, 0xd1, 0x3b, 0x8f, 0x62, 0x44, 0x93, 0x9c, 0x11, 0x06, 0xfa, 0x71, 0x14, - 0xb6, 0x59, 0x87, 0xfd, 0x82, 0x35, 0xe2, 0x43, 0x9d, 0xa6, 0x21, 0x5a, 0x71, 0x71, 0x7d, 0xf0, - 0x61, 0xd8, 0x40, 0x6f, 0x6c, 0xe1, 0x8b, 0x11, 0xed, 0xa6, 0x73, 0x99, 0x14, 0xfa, 0x0c, 0x96, - 0x03, 0x85, 0x03, 0xeb, 0xbc, 0xd3, 0x13, 0xfd, 0xf3, 0x83, 0x2b, 0xb5, 0x85, 0xfe, 0x48, 0xc8, - 0x1b, 0x63, 0xa1, 0x06, 0x48, 0x41, 0xf3, 0xb4, 0xb3, 0x93, 0xa7, 0x99, 0xed, 0x77, 0x2f, 0xb7, - 0xdd, 0x6f, 0x24, 0x8b, 0x11, 0xed, 0x9a, 0x37, 0x4c, 0x47, 0x47, 0xb0, 0x14, 0xb4, 0xea, 0xd0, - 0x2c, 0x25, 0xcf, 0x4c, 0x5c, 0x90, 0xd0, 0x0e, 0x92, 0x2e, 0x88, 0x37, 0xc2, 0x40, 0x9f, 0x42, - 0x70, 0x12, 0xd8, 0x65, 0x6d, 0x99, 0x9c, 0x64, 0x96, 0xef, 0x5f, 0xb9, 0x85, 0x2b, 0x46, 0xb4, - 0xa0, 0x7f, 0x9c, 0x83, 0x8a, 0xb4, 0x02, 0x18, 0x1e, 0xf1, 0x2b, 0xc0, 0x2c, 0xb3, 0x7a, 0xfb, - 0x0a, 0xcd, 0x4f, 0x31, 0x42, 0xab, 0x41, 0x9f, 0x86, 0x54, 0x58, 0xe0, 0x96, 0x3c, 0xdb, 0xc6, - 0xb4, 0x50, 0xc1, 0xe5, 0xa6, 0x02, 0x08, 0xaf, 0x6f, 0x8a, 0xd3, 0xe8, 0x61, 0xb1, 0xbb, 0xd8, - 0x11, 0x0d, 0x01, 0xcb, 0x70, 0x73, 0x13, 0x0f, 0xcb, 0x78, 0xe7, 0x40, 0x0f, 0x8b, 0x1d, 0xa4, - 0xd2, 0x05, 0x6f, 0xfa, 0xad, 0x04, 0x3e, 0x61, 0xbd, 0x84, 0x3c, 0x3f, 0x71, 0xc1, 0xc3, 0xba, - 0x0e, 0xba, 0xe0, 0xcd, 0x61, 0x3a, 0xaa, 0xf8, 0x0d, 0xa7, 0x23, 0x7a, 0x09, 0x79, 0x61, 0xa2, - 0x97, 0xe3, 0x3d, 0x07, 0xf5, 0xd2, 0x0c, 0x52, 0xa9, 0x97, 0x96, 0xdd, 0x22, 0xb8, 0x37, 0xb8, - 0x53, 0x95, 0x17, 0x27, 0x7a, 0x19, 0x76, 0xfb, 0x4a, 0xbd, 0xb4, 0x86, 0xe9, 0x3c, 0x51, 0x9c, - 0x78, 0xb8, 0x4d, 0xe1, 0x3c, 0x6e, 0x71, 0x3c, 0x2f, 0x4b, 0x97, 0x24, 0x8a, 0x10, 0xe8, 0xcf, - 0x13, 0xc5, 0x30, 0x83, 0xee, 0x4b, 0x1f, 0x97, 0x37, 0xfb, 0xfd, 0x80, 0xbc, 0x34, 0x71, 0x5f, - 0x86, 0xf7, 0x0e, 0x45, 0x96, 0x93, 0x47, 0x38, 0x2c, 0x5f, 0x0a, 0xdb, 0xfe, 0x7e, 0x42, 0x93, - 0xf3, 0xe5, 0x58, 0xcf, 0xc0, 0xf2, 0x65, 0x90, 0x4a, 0x83, 0xab, 0xfb, 0x7d, 0x14, 0x76, 0x58, - 0x23, 0x25, 0x6f, 0x4e, 0x0c, 0x6e, 0x58, 0xcb, 0x45, 0x83, 0xab, 0x0f, 0xd3, 0xa9, 0x9b, 0xbc, - 0x8b, 0x18, 0xa4, 0xf5, 0xeb, 0x13, 0xdd, 0x1c, 0xef, 0x42, 0xa8, 0x9b, 0x6e, 0x90, 0x8a, 0x7e, - 0x16, 0x85, 0x3b, 0x63, 0x59, 0x84, 0x65, 0x62, 0xcc, 0x9e, 0x2a, 0xb0, 0xc3, 0xdb, 0x01, 0xf9, - 0x06, 0x1b, 0xe6, 0x7f, 0xae, 0x90, 0x58, 0x42, 0x3b, 0x89, 0x62, 0x44, 0xdb, 0xf6, 0xde, 0x20, - 0x48, 0x63, 0x66, 0x70, 0x9c, 0x8d, 0x6d, 0x01, 0xb4, 0xe5, 0xad, 0x89, 0x31, 0x0b, 0x83, 0xe4, - 0x34, 0x66, 0xc6, 0x30, 0x9d, 0x26, 0xf7, 0xde, 0xe0, 0x85, 0x00, 0x8b, 0x36, 0x59, 0xde, 0x9e, - 0x98, 0xdc, 0x27, 0xbc, 0x27, 0xd0, 0xe4, 0xde, 0x1b, 0x63, 0xa1, 0x67, 0x20, 0x05, 0x20, 0x07, - 0x83, 0xe2, 0x72, 0x9a, 0xd9, 0xce, 0x84, 0xd8, 0xbe, 0x04, 0xb9, 0xb3, 0x1c, 0x3f, 0xcc, 0x41, - 0x2f, 0xe0, 0x26, 0xed, 0xb3, 0x74, 0xde, 0xc3, 0x60, 0x32, 0x68, 0x62, 0x44, 0xcb, 0x72, 0x9b, - 0x8d, 0xf4, 0x30, 0x6c, 0x59, 0x2e, 0x6f, 0x7d, 0x8a, 0x11, 0x6d, 0xd3, 0x9b, 0x28, 0x42, 0x73, - 0x0d, 0xcf, 0xd0, 0xb4, 0xd6, 0x53, 0x00, 0x2f, 0xdf, 0x99, 0xb8, 0xcf, 0xc6, 0x81, 0x3e, 0xdd, - 0x67, 0x46, 0x90, 0x8a, 0x0e, 0x61, 0xa9, 0x43, 0x01, 0x3a, 0x36, 0x2c, 0xba, 0xb1, 0x18, 0x44, - 0x97, 0xef, 0x4e, 0x5c, 0xdb, 0x30, 0x30, 0x4f, 0xe3, 0xd3, 0x19, 0xa6, 0xa3, 0x4f, 0x04, 0xcc, - 0x39, 0x21, 0x6c, 0x65, 0x69, 0x05, 0x7c, 0x67, 0x22, 0x72, 0x0a, 0x01, 0xf4, 0x14, 0x39, 0xf5, - 0x0d, 0xf0, 0xea, 0xf7, 0x39, 0xac, 0x18, 0x41, 0x18, 0x8c, 0x9b, 0x0c, 0x07, 0xcb, 0xef, 0x32, - 0xbb, 0xef, 0x85, 0xce, 0x3f, 0x1c, 0x35, 0x17, 0x23, 0xda, 0xb2, 0x31, 0xce, 0x43, 0x8f, 0x61, - 0xd9, 0xe0, 0x28, 0x58, 0x60, 0x3e, 0xbe, 0x94, 0xf7, 0xc6, 0x9e, 0xe9, 0x06, 0x03, 0x8c, 0x60, - 0x66, 0x9a, 0xc3, 0x8c, 0x51, 0x22, 0xea, 0xc0, 0x86, 0xdd, 0x07, 0xd2, 0x98, 0x9c, 0xe9, 0x26, - 0x6e, 0xfa, 0x50, 0x5a, 0xbe, 0xcf, 0xac, 0xef, 0x84, 0x16, 0xb4, 0xc9, 0xe0, 0xbb, 0x18, 0xd1, - 0xd6, 0xed, 0x70, 0x3e, 0xfa, 0x32, 0x0a, 0xb7, 0x42, 0x00, 0x37, 0xee, 0x05, 0xa1, 0xb9, 0xfc, - 0x80, 0x8d, 0xfb, 0x5f, 0x61, 0x6b, 0xfc, 0x66, 0x4c, 0x5f, 0x8c, 0x68, 0xa9, 0xce, 0xa5, 0x62, - 0xb9, 0x19, 0x98, 0x62, 0x3d, 0xf3, 0x7e, 0x22, 0x79, 0x4d, 0x92, 0xf6, 0x13, 0xc9, 0x65, 0x69, - 0x65, 0x3f, 0x91, 0x5c, 0x91, 0x56, 0xf7, 0x13, 0xc9, 0x55, 0x69, 0x6d, 0x3f, 0x91, 0x5c, 0x93, - 0xd6, 0xf7, 0x13, 0xc9, 0x75, 0x49, 0xde, 0x4f, 0x24, 0x65, 0x69, 0x63, 0x3f, 0x91, 0xdc, 0x90, - 0x36, 0xf7, 0x13, 0xc9, 0x9b, 0x52, 0x6a, 0x3f, 0x91, 0x4c, 0x49, 0x5b, 0xfb, 0x89, 0xe4, 0x2d, - 0x29, 0x9d, 0xbe, 0xcf, 0x60, 0x79, 0xcd, 0x76, 0x59, 0xd1, 0x45, 0x9b, 0x30, 0x45, 0x57, 0xef, - 0x5c, 0xdc, 0x00, 0x71, 0x38, 0xcf, 0x49, 0xe9, 0xaf, 0xa6, 0x60, 0xca, 0x7f, 0xc5, 0x1b, 0xb9, - 0x17, 0xdb, 0x10, 0xd7, 0x3a, 0x4b, 0x81, 0x97, 0x32, 0x2e, 0x30, 0xb8, 0x2c, 0xfb, 0xd1, 0x30, - 0xde, 0x74, 0x08, 0x7b, 0x00, 0x64, 0x68, 0x7a, 0x31, 0xf4, 0x88, 0x0d, 0xe5, 0x58, 0x26, 0x9c, - 0xbb, 0x23, 0xc6, 0xb9, 0x31, 0x18, 0x67, 0x5c, 0x6a, 0x08, 0x8e, 0x0a, 0x1a, 0xca, 0xc3, 0x42, - 0xcf, 0x22, 0xe7, 0x5d, 0xdb, 0xa5, 0x4d, 0xcd, 0xb9, 0x25, 0xc0, 0xf5, 0x1b, 0xda, 0x39, 0x6d, - 0xbe, 0xaf, 0x44, 0x21, 0xce, 0x0e, 0xcc, 0xd9, 0x8e, 0xd1, 0x36, 0x2c, 0x4c, 0x01, 0x00, 0x83, - 0xca, 0x53, 0xb9, 0x45, 0x71, 0xf5, 0x3d, 0x4d, 0xc1, 0x82, 0x5a, 0xd0, 0x80, 0x8b, 0xd0, 0x3f, - 0x54, 0x83, 0xe9, 0x16, 0xeb, 0x77, 0x04, 0xf4, 0x4d, 0x4d, 0xba, 0xb0, 0xe2, 0x5d, 0x51, 0x4e, - 0x16, 0xf3, 0x93, 0x06, 0xf3, 0xe3, 0x1c, 0x4d, 0xd8, 0x41, 0x07, 0xb0, 0x40, 0x13, 0x62, 0xab, - 0x9f, 0x0c, 0x39, 0x98, 0xdc, 0x0e, 0x18, 0xf6, 0x9f, 0xf6, 0x33, 0x0a, 0x17, 0x0c, 0xde, 0x88, - 0xcd, 0x93, 0x00, 0x0d, 0xfd, 0xa7, 0xbf, 0xda, 0x33, 0x97, 0x79, 0xe7, 0x6f, 0x0e, 0xb1, 0x0f, - 0x50, 0x0f, 0xe2, 0x96, 0xfd, 0x42, 0x60, 0xe3, 0x37, 0xf4, 0x83, 0x05, 0x11, 0x9c, 0x47, 0x57, - 0xbf, 0x23, 0xa3, 0x06, 0xf2, 0xa6, 0xdd, 0x7c, 0xde, 0xb7, 0xa2, 0xd1, 0xf1, 0xf8, 0x35, 0x1e, - 0xbf, 0x74, 0x7f, 0xf0, 0xd7, 0x18, 0xc8, 0x93, 0x5e, 0xa9, 0x90, 0x0c, 0x2b, 0xd9, 0x5c, 0x55, - 0x6b, 0xe0, 0xb1, 0xd7, 0x92, 0xbb, 0x70, 0x6b, 0x88, 0xc3, 0x7e, 0x94, 0x02, 0xd6, 0x94, 0x7c, - 0x55, 0x2b, 0xe0, 0xdd, 0xea, 0x61, 0xa5, 0x20, 0x45, 0x51, 0x0a, 0x36, 0x87, 0xc4, 0xf2, 0x25, - 0x55, 0xa9, 0xd0, 0xbf, 0x7d, 0x25, 0xdf, 0x90, 0xe2, 0x68, 0x0b, 0xae, 0x0f, 0xf1, 0x6b, 0x87, - 0xf5, 0xa2, 0xa2, 0xf9, 0xd6, 0xa4, 0x04, 0xba, 0x0e, 0xeb, 0xe3, 0xe3, 0xe0, 0x7a, 0x2d, 0x5b, - 0x91, 0xa6, 0xd0, 0x7f, 0xc3, 0x07, 0x43, 0x4c, 0x31, 0x78, 0xb6, 0xa4, 0x29, 0xd9, 0xc2, 0x53, - 0x7c, 0xa4, 0xa9, 0x8d, 0x86, 0x52, 0xc1, 0xb5, 0x6a, 0xbd, 0xae, 0xe6, 0x4a, 0x0a, 0xbb, 0x54, - 0xc9, 0x3e, 0x95, 0xa6, 0xd1, 0xbb, 0x70, 0x7b, 0x48, 0xb1, 0xa2, 0x1c, 0xf1, 0xdb, 0x0c, 0x5c, - 0xd3, 0x94, 0xc7, 0x4a, 0xa5, 0x51, 0xc7, 0x8d, 0x27, 0x15, 0x29, 0x89, 0xee, 0xc3, 0xdd, 0x21, - 0xc1, 0x86, 0x5a, 0x56, 0xea, 0x8d, 0x6c, 0xb9, 0x86, 0xf3, 0xd9, 0x7c, 0x51, 0x11, 0x13, 0x51, - 0x0a, 0xd2, 0xcc, 0x66, 0xe2, 0xab, 0xaf, 0x53, 0x91, 0x34, 0x0d, 0x6a, 0xec, 0xc1, 0xef, 0x87, - 0x1f, 0xbb, 0x02, 0x0f, 0x67, 0xfc, 0x6e, 0xa5, 0xa1, 0x3d, 0x1d, 0x0f, 0x29, 0xbb, 0xc8, 0xa1, - 0x1c, 0xea, 0xb7, 0x82, 0x1b, 0xd5, 0x2a, 0xae, 0x96, 0x68, 0x10, 0xd9, 0xcd, 0x0f, 0x65, 0xd4, - 0x15, 0x4d, 0xcd, 0x96, 0xd4, 0x4f, 0xb3, 0xb9, 0x92, 0x22, 0xc5, 0xd1, 0x4d, 0xd8, 0xe0, 0xf4, - 0x6c, 0xfd, 0x69, 0x25, 0x2f, 0xd4, 0x76, 0xb3, 0x6a, 0xe9, 0x50, 0x53, 0xa4, 0x29, 0x94, 0x86, - 0x14, 0x67, 0xf3, 0xb7, 0x2c, 0x5c, 0x50, 0xb2, 0x85, 0x92, 0x5a, 0x51, 0x06, 0x0f, 0x2f, 0xd3, - 0xdc, 0xe9, 0x07, 0x1f, 0x03, 0x1a, 0x3f, 0xfb, 0x28, 0x09, 0x89, 0x4a, 0xb5, 0xa2, 0x48, 0x11, - 0x34, 0x07, 0x33, 0xb9, 0x6c, 0xfe, 0xa0, 0xba, 0xbb, 0x2b, 0x45, 0xd1, 0x02, 0xcc, 0xaa, 0xe5, - 0xb2, 0x52, 0x50, 0xb3, 0x0d, 0x45, 0x8a, 0xe5, 0xee, 0x7f, 0xf3, 0xcf, 0x54, 0xe4, 0x9b, 0x57, - 0xa9, 0xe8, 0xb7, 0xaf, 0x52, 0xd1, 0xef, 0x5e, 0xa5, 0xa2, 0xff, 0x78, 0x95, 0x8a, 0xfe, 0xe2, - 0x75, 0x2a, 0xf2, 0xed, 0xeb, 0x54, 0xe4, 0xbb, 0xd7, 0xa9, 0xc8, 0xa7, 0x33, 0x22, 0x1b, 0xfc, - 0x3b, 0x00, 0x00, 0xff, 0xff, 0x90, 0xa5, 0x78, 0xbd, 0x53, 0x23, 0x00, 0x00, + // 3258 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0xcd, 0x6f, 0xdb, 0xd8, + 0xb5, 0xd7, 0x97, 0x6d, 0xf9, 0xf8, 0x23, 0xf4, 0xf5, 0x17, 0xed, 0x24, 0xb2, 0xa3, 0x24, 0x33, + 0x49, 0x06, 0x23, 0x3f, 0x64, 0xde, 0xbc, 0xf7, 0x26, 0x2f, 0x6f, 0x21, 0x4b, 0xb4, 0x45, 0x59, + 0x5f, 0x43, 0xc9, 0x71, 0x32, 0xc1, 0xe0, 0x3e, 0x5a, 0xba, 0x96, 0xf9, 0x42, 0x91, 0x1a, 0x92, + 0x72, 0x6c, 0xe0, 0x2d, 0xda, 0xce, 0x66, 0xd0, 0x6e, 0xba, 0x29, 0xd0, 0x65, 0x81, 0x41, 0x17, + 0x05, 0x8a, 0xa2, 0x7f, 0x41, 0x57, 0x2d, 0x30, 0xab, 0x62, 0xd0, 0xd5, 0xa0, 0x8b, 0xb4, 0x4d, + 0xfa, 0x57, 0xcc, 0xaa, 0xb8, 0x1f, 0x94, 0x28, 0x89, 0x72, 0x9c, 0xd9, 0x91, 0xe7, 0xeb, 0x9e, + 0x7b, 0xee, 0xe1, 0x39, 0xbf, 0x73, 0x09, 0x2b, 0x8e, 0xad, 0x37, 0x4f, 0xbb, 0xc7, 0x3b, 0xc4, + 0x71, 0x6c, 0xc7, 0xcd, 0x74, 0x1d, 0xdb, 0xb3, 0xd1, 0x52, 0xd3, 0x6e, 0xbe, 0x60, 0x9c, 0xcc, + 0x8b, 0xb3, 0xcc, 0x8b, 0xb3, 0xee, 0xf1, 0xe6, 0x2a, 0x17, 0x18, 0x91, 0xdc, 0x44, 0xbe, 0x7e, + 0x4b, 0xf7, 0x74, 0x41, 0x5b, 0xf3, 0x69, 0x1d, 0xe2, 0xe9, 0x01, 0xba, 0xdc, 0xf3, 0x0c, 0x73, + 0xe7, 0xd4, 0x6c, 0xee, 0x78, 0x46, 0x87, 0xb8, 0x9e, 0xde, 0xe9, 0x0a, 0xce, 0x4a, 0xdb, 0x6e, + 0xdb, 0xec, 0x71, 0x87, 0x3e, 0x71, 0x6a, 0xfa, 0xf7, 0x31, 0x58, 0xae, 0xd8, 0x5e, 0x89, 0xe8, + 0x2e, 0x29, 0xd8, 0x66, 0x8b, 0x38, 0x0a, 0x5d, 0x1a, 0xe5, 0x61, 0xc6, 0x21, 0x5d, 0xd3, 0x68, + 0xea, 0x72, 0x74, 0x3b, 0x7a, 0x6f, 0xee, 0xe1, 0x9d, 0xcc, 0xc0, 0x5f, 0xb1, 0x76, 0x46, 0xe3, + 0x12, 0x79, 0xe2, 0x36, 0x1d, 0xa3, 0xeb, 0xd9, 0xce, 0x6e, 0xe2, 0x9b, 0x57, 0x5b, 0x11, 0xcd, + 0x57, 0x45, 0xfb, 0x30, 0x6f, 0x52, 0xcb, 0xf8, 0x94, 0x99, 0x96, 0x63, 0x57, 0x37, 0xa5, 0xcd, + 0x99, 0x03, 0x9f, 0x50, 0x06, 0xa6, 0xd8, 0xab, 0x9c, 0x60, 0x16, 0xe4, 0x10, 0x0b, 0x6c, 0x0b, + 0x1a, 0x17, 0x43, 0x1f, 0x43, 0xd2, 0xd1, 0xad, 0x36, 0xc1, 0x46, 0x4b, 0x8e, 0x6f, 0x47, 0xef, + 0xc5, 0x77, 0x37, 0xa9, 0x67, 0xaf, 0x5f, 0x6d, 0xcd, 0x68, 0x94, 0xae, 0xe6, 0xbf, 0x1f, 0x3c, + 0x6a, 0x33, 0x4c, 0x56, 0x6d, 0xa1, 0xdb, 0x00, 0xcd, 0x9e, 0xeb, 0xd9, 0x1d, 0xdc, 0x71, 0xdb, + 0xf2, 0xd4, 0x76, 0xf4, 0xde, 0xac, 0xd8, 0xd2, 0x2c, 0xa7, 0x97, 0xdd, 0x76, 0x7a, 0x0d, 0x56, + 0x2a, 0x76, 0x8b, 0x1c, 0x5a, 0xfa, 0x99, 0x6e, 0x98, 0xfa, 0xb1, 0x49, 0x58, 0xc8, 0xd2, 0x1b, + 0xb0, 0x7e, 0x68, 0xb9, 0xbd, 0x6e, 0xd7, 0x76, 0x3c, 0xd2, 0xd2, 0xc8, 0x17, 0x3d, 0xe2, 0x7a, + 0x9c, 0xf5, 0x93, 0x28, 0x20, 0xb6, 0x58, 0xc5, 0xf6, 0xf6, 0xec, 0x9e, 0xd5, 0xe2, 0x41, 0x0e, + 0x7a, 0x19, 0xbd, 0xba, 0x97, 0x1f, 0x43, 0xd2, 0xf5, 0x6c, 0x87, 0xa9, 0xc5, 0x86, 0xd5, 0xea, + 0x94, 0xce, 0xd5, 0xc4, 0xa3, 0x36, 0xc3, 0x64, 0xd5, 0x56, 0xfa, 0x4f, 0x51, 0x58, 0x65, 0xb6, + 0x0e, 0xc8, 0x45, 0xd9, 0x70, 0x3b, 0xba, 0xd7, 0x3c, 0xe5, 0x7e, 0x7c, 0x04, 0x4b, 0x0e, 0x77, + 0x17, 0xbb, 0x9e, 0xee, 0x78, 0xf8, 0x05, 0xb9, 0x60, 0x0e, 0xcd, 0xef, 0xce, 0x7c, 0xff, 0x6a, + 0x2b, 0x7e, 0x40, 0x2e, 0xb4, 0x6b, 0x42, 0xa2, 0x4e, 0x05, 0x0e, 0xc8, 0x05, 0xda, 0x01, 0x9f, + 0x84, 0x89, 0xd5, 0x62, 0x2a, 0xb1, 0x61, 0x95, 0x05, 0xc1, 0x57, 0xac, 0x16, 0x55, 0x78, 0x04, + 0xd3, 0x6c, 0x07, 0xae, 0x3c, 0xb5, 0x1d, 0xbf, 0x37, 0xf7, 0xf0, 0x46, 0x58, 0x1a, 0xb0, 0x2d, + 0x5a, 0x27, 0xb6, 0x08, 0xbb, 0xd0, 0x28, 0x26, 0x92, 0x71, 0x29, 0x51, 0x4c, 0x24, 0x13, 0xd2, + 0x54, 0xfa, 0x4d, 0x1c, 0xd2, 0x1a, 0xd1, 0x5b, 0x47, 0x86, 0x77, 0x6a, 0x58, 0x87, 0x56, 0x93, + 0x38, 0x9e, 0x6e, 0x58, 0xde, 0x85, 0x6a, 0x79, 0xc4, 0x39, 0xd3, 0x4d, 0xbe, 0xa9, 0x22, 0x2c, + 0x3a, 0x44, 0x6f, 0xe1, 0xfe, 0x77, 0x20, 0x12, 0xf9, 0x66, 0x60, 0x59, 0xfa, 0xb1, 0x64, 0x4e, + 0xcd, 0x66, 0xa6, 0xe1, 0x0b, 0x89, 0x75, 0x17, 0xa8, 0x6a, 0x9f, 0x88, 0x34, 0x40, 0xe4, 0xdc, + 0x70, 0x3d, 0xc3, 0x6a, 0x07, 0xec, 0xc5, 0xae, 0x6e, 0x6f, 0xc9, 0x57, 0x1f, 0xd8, 0x7c, 0x0e, + 0xeb, 0xa6, 0xdd, 0xd4, 0x4d, 0xdc, 0x1b, 0xec, 0x00, 0x9b, 0x46, 0xc7, 0xf0, 0x58, 0xe2, 0x5d, + 0xd1, 0xf0, 0x2a, 0xb3, 0x11, 0x08, 0x42, 0x89, 0x5a, 0x40, 0x9f, 0x83, 0xdc, 0x36, 0xed, 0xe3, + 0x50, 0xeb, 0xf1, 0xab, 0x5b, 0x5f, 0xe3, 0x46, 0xc6, 0xcc, 0x3f, 0x87, 0x65, 0xfb, 0xd8, 0x25, + 0xce, 0x19, 0x09, 0xc4, 0xd7, 0x95, 0x13, 0xec, 0x5c, 0xc3, 0x3e, 0xef, 0xaa, 0x90, 0x1e, 0x5d, + 0x00, 0xd9, 0xa3, 0x0c, 0xf7, 0x51, 0xe2, 0x97, 0xbf, 0xda, 0x8a, 0xa4, 0x5b, 0xb0, 0xde, 0x70, + 0x74, 0xcb, 0xd5, 0x9b, 0x9e, 0x61, 0x5b, 0xd9, 0x63, 0xf6, 0x51, 0xf1, 0x93, 0x55, 0x61, 0xda, + 0x21, 0xba, 0x6b, 0x5b, 0xec, 0x44, 0x17, 0x1f, 0x7e, 0x90, 0x19, 0x2b, 0xa5, 0x99, 0x71, 0x5d, + 0x8d, 0xa9, 0xf4, 0xf3, 0x8a, 0xbd, 0xa5, 0x9f, 0xc3, 0x4a, 0x40, 0xb2, 0xd6, 0x73, 0xc5, 0x17, + 0x91, 0x03, 0xe8, 0xf6, 0xdc, 0x53, 0x42, 0xb0, 0x77, 0x6e, 0x89, 0xc4, 0x49, 0x85, 0xec, 0x2b, + 0xa0, 0xec, 0x17, 0x0a, 0xae, 0xd7, 0x38, 0xb7, 0xd2, 0x5f, 0x46, 0x61, 0x35, 0x20, 0xa0, 0x11, + 0xcf, 0xb9, 0xe0, 0xe6, 0xf7, 0x47, 0x76, 0x70, 0xff, 0xf2, 0x1d, 0x30, 0xcd, 0x30, 0xff, 0xd1, + 0x2d, 0x98, 0x25, 0xe7, 0x9e, 0xa3, 0xb3, 0x7a, 0x15, 0x0b, 0xd4, 0xab, 0x24, 0x23, 0xd3, 0x72, + 0xf5, 0x87, 0x28, 0xac, 0x05, 0x6c, 0xd5, 0x3d, 0xdd, 0xeb, 0xb9, 0xdc, 0x8d, 0x35, 0x88, 0x53, + 0xbd, 0x68, 0x40, 0x8f, 0x12, 0x50, 0xa5, 0xef, 0x5e, 0x8c, 0xb9, 0xf7, 0x6f, 0x97, 0xbb, 0x17, + 0x30, 0x99, 0x09, 0x8d, 0xf2, 0x63, 0x98, 0xe6, 0x74, 0x84, 0x60, 0x51, 0x53, 0xb2, 0xf5, 0x6a, + 0x05, 0x1f, 0x56, 0x0e, 0x2a, 0xd5, 0xa3, 0x8a, 0x14, 0x41, 0x32, 0xac, 0x08, 0x5a, 0xe3, 0x69, + 0x05, 0xe7, 0xaa, 0xe5, 0xb2, 0xda, 0x68, 0x28, 0x79, 0x29, 0x96, 0x4e, 0x24, 0xa3, 0x52, 0x34, + 0xfd, 0xb7, 0x18, 0x48, 0x47, 0x8e, 0xe1, 0x11, 0xfa, 0x7d, 0x5b, 0xbc, 0xa2, 0xa2, 0x4f, 0x60, + 0xc6, 0x60, 0xaf, 0xae, 0x1c, 0x65, 0x59, 0xb7, 0x11, 0x72, 0x3a, 0x5c, 0xc1, 0x6f, 0x4a, 0x42, + 0x1e, 0x3d, 0x86, 0x45, 0xde, 0x94, 0x5c, 0x5a, 0x9e, 0xac, 0x26, 0x11, 0x1d, 0x62, 0x95, 0x8a, + 0x7d, 0xff, 0x6a, 0x6b, 0x81, 0x75, 0x92, 0xba, 0x60, 0x6a, 0x0b, 0x66, 0xf0, 0x15, 0x15, 0xfa, + 0xb1, 0x49, 0xb0, 0xd8, 0x3c, 0x08, 0x89, 0xcd, 0xa8, 0xb7, 0xe1, 0x51, 0xf9, 0x71, 0xb4, 0x1f, + 0x96, 0x35, 0x40, 0xfd, 0xb0, 0xd4, 0x6b, 0x4a, 0x4e, 0xdd, 0x53, 0x95, 0xbc, 0x14, 0x09, 0xd0, + 0x8f, 0xb2, 0x6a, 0x03, 0xd7, 0xaa, 0x25, 0x35, 0xf7, 0x4c, 0x8a, 0xa2, 0x75, 0x58, 0x16, 0xf4, + 0x52, 0x35, 0x77, 0x80, 0x1b, 0x6a, 0x59, 0xa9, 0x1e, 0x36, 0xa4, 0x18, 0xca, 0xc0, 0x83, 0x20, + 0x83, 0x69, 0x7d, 0x7a, 0xa8, 0x1c, 0x2a, 0xb8, 0x9c, 0x7d, 0x8a, 0x4b, 0x4a, 0x65, 0xbf, 0x51, + 0xc0, 0xca, 0xd3, 0x9c, 0xa2, 0xe4, 0x95, 0xbc, 0x14, 0x2f, 0x26, 0x92, 0x31, 0x29, 0x9e, 0xfe, + 0x75, 0x54, 0x44, 0xb8, 0x61, 0xdb, 0x55, 0x53, 0x7c, 0x65, 0x59, 0x98, 0xfd, 0x41, 0xa5, 0x73, + 0xa0, 0x85, 0x2a, 0x20, 0xe9, 0x4d, 0xaf, 0xa7, 0x9b, 0x3f, 0xac, 0x68, 0x5e, 0xe3, 0xca, 0x7d, + 0x72, 0x7a, 0x05, 0x50, 0xb5, 0x4b, 0x1b, 0xab, 0xe1, 0x10, 0xb7, 0x71, 0x6e, 0xf1, 0xe6, 0x5a, + 0x87, 0x95, 0x9c, 0x6d, 0xb5, 0x0c, 0x9a, 0x8a, 0x7b, 0xba, 0x61, 0xfa, 0x65, 0xe2, 0xbf, 0x61, + 0x5e, 0xac, 0x7e, 0xa6, 0x9b, 0x3d, 0x22, 0xf6, 0x10, 0x06, 0x1d, 0x9e, 0x50, 0xbe, 0x36, 0xc7, + 0xa5, 0xd9, 0x4b, 0xfa, 0x77, 0x51, 0x40, 0x1c, 0x51, 0x90, 0xff, 0x23, 0xcd, 0x7e, 0xe9, 0x49, + 0xc1, 0x4c, 0x87, 0xb8, 0xae, 0xde, 0x26, 0x43, 0x5f, 0x8d, 0x4f, 0x44, 0x8f, 0x61, 0x56, 0x34, + 0x3d, 0xd2, 0x12, 0x5b, 0x9d, 0x88, 0x55, 0xfc, 0x78, 0xf5, 0x15, 0xd0, 0x23, 0x48, 0xfa, 0x7d, + 0x42, 0x54, 0xe9, 0xb7, 0x29, 0xf7, 0xe5, 0xd3, 0x5f, 0xc0, 0x4a, 0xb6, 0x73, 0x6c, 0xb4, 0x7b, + 0x76, 0xcf, 0xd5, 0x88, 0xdb, 0x33, 0xbd, 0xab, 0x79, 0xfc, 0x09, 0xcc, 0xbd, 0x74, 0xf4, 0x6e, + 0x97, 0xb4, 0x30, 0x71, 0x9c, 0x10, 0x9f, 0xfd, 0xa4, 0x66, 0xe6, 0x34, 0x10, 0xc2, 0x8a, 0xe3, + 0xa4, 0xd7, 0x29, 0x9e, 0x38, 0xf1, 0xf6, 0x1d, 0xbb, 0xd7, 0xcd, 0x13, 0x93, 0xf8, 0x51, 0x4a, + 0x63, 0x58, 0x13, 0x78, 0x2e, 0x67, 0x3b, 0x4e, 0xaf, 0x4b, 0x4f, 0x86, 0x7b, 0x43, 0xeb, 0x15, + 0x7d, 0xc0, 0xa3, 0x75, 0x27, 0xc9, 0xc8, 0x65, 0xb7, 0x8d, 0xd2, 0x30, 0xdb, 0x75, 0xec, 0x26, + 0x71, 0x5d, 0x11, 0xc2, 0x64, 0xbf, 0xb2, 0xfa, 0xe4, 0x74, 0x1d, 0x90, 0x58, 0x20, 0x98, 0xb1, + 0xff, 0x03, 0x20, 0x80, 0xa7, 0x0f, 0xa8, 0xa6, 0x76, 0x53, 0x02, 0x19, 0xcd, 0x0a, 0x79, 0x86, + 0x8d, 0x06, 0x2f, 0x34, 0xfa, 0xfc, 0xb1, 0x95, 0x3e, 0x00, 0xc4, 0x30, 0xd3, 0x18, 0x46, 0xeb, + 0x83, 0xad, 0xe8, 0xd5, 0xc1, 0x56, 0x9d, 0x82, 0xc1, 0x53, 0xdd, 0x6a, 0x99, 0xb4, 0xf3, 0x78, + 0xce, 0x45, 0x1f, 0x27, 0xa2, 0x87, 0x90, 0xe8, 0x2a, 0x8e, 0x13, 0x92, 0x8f, 0x43, 0xa1, 0x16, + 0xbb, 0x66, 0xb2, 0xa2, 0x27, 0xfe, 0x33, 0x0a, 0x77, 0x47, 0xdb, 0x02, 0x45, 0x41, 0x35, 0x0a, + 0xe5, 0x35, 0x72, 0xe2, 0x10, 0xbf, 0x7f, 0x4d, 0xaa, 0xec, 0xcf, 0x61, 0xda, 0x3b, 0xb7, 0x7c, + 0xe0, 0x38, 0xbf, 0x9b, 0xa7, 0xac, 0xbf, 0xbe, 0xda, 0xfa, 0xa8, 0x6d, 0x78, 0xa7, 0xbd, 0xe3, + 0x4c, 0xd3, 0xee, 0xec, 0xf4, 0xfd, 0x69, 0x1d, 0x0f, 0x9e, 0x77, 0xba, 0x2f, 0xda, 0x3b, 0x6c, + 0xb6, 0xe8, 0xf5, 0x8c, 0x56, 0xe6, 0xf0, 0x50, 0xcd, 0xbf, 0x7e, 0xb5, 0x35, 0xd5, 0x38, 0xb7, + 0xd4, 0xbc, 0x36, 0xe5, 0x9d, 0x5b, 0x6a, 0x0b, 0xed, 0xc1, 0x9c, 0x37, 0xf0, 0x4e, 0x64, 0xf0, + 0xd5, 0xba, 0x66, 0x50, 0x31, 0xbd, 0x07, 0x5b, 0x8d, 0x73, 0x2b, 0x6b, 0x52, 0x0c, 0x76, 0xa1, + 0x58, 0x4d, 0xbb, 0x47, 0x81, 0x9d, 0x48, 0x2e, 0xbe, 0xbf, 0xdb, 0x00, 0x5d, 0x87, 0x9c, 0x61, + 0x96, 0x35, 0x43, 0xdb, 0x9c, 0xa5, 0x74, 0x9e, 0x86, 0x3f, 0x8b, 0xc2, 0x0a, 0xad, 0xc2, 0x6d, + 0xe2, 0x54, 0xcf, 0x88, 0x73, 0x62, 0xda, 0x2f, 0xb9, 0xf6, 0x06, 0xc4, 0x43, 0x10, 0x2e, 0xa5, + 0xa1, 0xfb, 0xb0, 0xd0, 0xec, 0x39, 0x0e, 0xb1, 0x3c, 0x51, 0x35, 0x38, 0xc0, 0xe6, 0xb6, 0xe7, + 0x05, 0x8b, 0x95, 0x08, 0xf4, 0x21, 0x5c, 0x33, 0xac, 0xa6, 0x43, 0x3a, 0x03, 0xe1, 0x78, 0x40, + 0x78, 0xb1, 0xcf, 0xe4, 0x15, 0xe5, 0xeb, 0x28, 0x5c, 0xdf, 0xa5, 0x98, 0x7b, 0x50, 0xe6, 0xc8, + 0x89, 0xed, 0x90, 0xfd, 0x5c, 0xbf, 0xde, 0x36, 0x7e, 0x50, 0xbd, 0x1d, 0x40, 0x4a, 0x6a, 0xe2, + 0x94, 0x26, 0x81, 0x6d, 0xb6, 0xde, 0xa5, 0xd0, 0x0e, 0xb4, 0xd2, 0x1d, 0x40, 0xbc, 0x71, 0x95, + 0x0d, 0xd7, 0x35, 0xac, 0x36, 0xf7, 0xed, 0x31, 0xcc, 0xbf, 0x74, 0x6c, 0xab, 0x8d, 0x79, 0x0f, + 0x15, 0xee, 0x4d, 0x6e, 0xb9, 0xda, 0x1c, 0x13, 0xe7, 0x2f, 0x7e, 0xb8, 0x63, 0xe3, 0xe1, 0xa6, + 0xb3, 0x54, 0x99, 0x38, 0x14, 0xf2, 0xd7, 0x1c, 0xbb, 0xed, 0x10, 0x97, 0xc3, 0x88, 0xf4, 0x6f, + 0x62, 0xb0, 0xcc, 0x66, 0x81, 0x3d, 0x22, 0xbe, 0x1f, 0xee, 0xc8, 0xc1, 0x08, 0x70, 0xfa, 0x30, + 0xe4, 0xeb, 0x09, 0xd1, 0x0b, 0x6f, 0xc0, 0x7f, 0x1c, 0x34, 0xe0, 0x4d, 0x58, 0x13, 0x7d, 0x53, + 0x53, 0x6a, 0x25, 0x35, 0x97, 0xc5, 0x9a, 0x52, 0xae, 0x3e, 0x19, 0x69, 0xc2, 0x5a, 0xb6, 0xb2, + 0xaf, 0xe0, 0x7a, 0xad, 0xa4, 0x36, 0x86, 0x9a, 0x30, 0xa7, 0x97, 0x15, 0x6d, 0x9f, 0xc2, 0x96, + 0x00, 0xa0, 0xd1, 0xb2, 0x7b, 0x0d, 0x5c, 0xaf, 0x64, 0x6b, 0xf5, 0x42, 0xb5, 0x21, 0xc5, 0x51, + 0x0a, 0x36, 0xfb, 0xed, 0x79, 0x5f, 0xcd, 0x65, 0x4b, 0xb8, 0x5a, 0xab, 0xe3, 0xb2, 0x5a, 0xaf, + 0xab, 0x95, 0x7d, 0x29, 0x11, 0xd0, 0xac, 0x97, 0xaa, 0x47, 0x38, 0x57, 0xad, 0xd4, 0x0f, 0xcb, + 0x8a, 0x26, 0x4d, 0xa1, 0x0d, 0x58, 0x15, 0x9c, 0x4a, 0x15, 0x97, 0x94, 0x6c, 0x5d, 0x29, 0x54, + 0x4b, 0x79, 0x45, 0x93, 0xa6, 0xd3, 0x3a, 0xc8, 0xaa, 0xd5, 0x22, 0x1e, 0x71, 0x3a, 0x86, 0xa5, + 0x7b, 0x24, 0x67, 0x77, 0x3a, 0x86, 0xa8, 0xfe, 0x0a, 0xcc, 0xb9, 0x9e, 0xde, 0x66, 0x73, 0xcb, + 0x3b, 0x02, 0x59, 0x10, 0x8a, 0x14, 0xc9, 0x2e, 0xc3, 0x92, 0x6a, 0x9d, 0xe9, 0xa6, 0xd1, 0x62, + 0xcd, 0x87, 0x9f, 0x51, 0x0a, 0x6e, 0x54, 0xbb, 0x9e, 0xd1, 0xa1, 0x0d, 0xa8, 0xa9, 0x9c, 0xe9, + 0x66, 0xce, 0xb6, 0x4e, 0x4c, 0xa3, 0xe9, 0x89, 0x33, 0xfc, 0x73, 0x14, 0x6e, 0x97, 0x0d, 0x6b, + 0x90, 0x6c, 0xb4, 0xa8, 0x1e, 0x5a, 0xae, 0xee, 0x19, 0xee, 0x89, 0x31, 0xa8, 0x87, 0x75, 0x58, + 0xee, 0x18, 0xd6, 0x00, 0x22, 0xe0, 0x63, 0x2a, 0xf8, 0x2e, 0x9f, 0xc0, 0x52, 0x67, 0x74, 0x19, + 0x3a, 0xb1, 0x39, 0xc4, 0xb5, 0xcd, 0xa1, 0x09, 0xe5, 0x9d, 0x26, 0x36, 0x5f, 0x7d, 0x00, 0x3f, + 0x7e, 0xb1, 0x0e, 0x73, 0xcc, 0xe5, 0x3c, 0xf1, 0x74, 0xc3, 0x44, 0x1a, 0x48, 0x96, 0xed, 0xe1, + 0xa1, 0x1b, 0x0e, 0xee, 0xf5, 0x7b, 0x21, 0x69, 0x19, 0x72, 0xcb, 0x52, 0x88, 0x68, 0x8b, 0xd6, + 0x10, 0x19, 0x55, 0xe1, 0x1a, 0xbf, 0x12, 0xa0, 0x96, 0x4f, 0x58, 0x20, 0xb8, 0xd3, 0x77, 0x27, + 0x65, 0xfa, 0x50, 0xbb, 0x2a, 0xd0, 0xd1, 0x35, 0x48, 0x45, 0x4f, 0x01, 0x71, 0x83, 0x2f, 0xc8, + 0x05, 0xee, 0x88, 0xb1, 0x5f, 0xd4, 0xe6, 0x7b, 0x93, 0x6c, 0x8e, 0xde, 0x10, 0x14, 0x22, 0x9a, + 0xe4, 0x8c, 0x30, 0xd0, 0x8f, 0xa2, 0xb0, 0xcd, 0x26, 0xec, 0x97, 0x6c, 0x10, 0x1f, 0x9a, 0x34, + 0x0d, 0x31, 0x8a, 0x8b, 0xfb, 0x9a, 0x8f, 0xc3, 0x16, 0x7a, 0xeb, 0x08, 0x5f, 0x88, 0x68, 0x37, + 0x9d, 0xcb, 0xa4, 0xd0, 0xe7, 0xb0, 0x1c, 0x68, 0x1c, 0x58, 0xe7, 0x93, 0x9e, 0x98, 0x9f, 0x1f, + 0x5c, 0x69, 0x2c, 0xf4, 0x57, 0x42, 0xde, 0x18, 0x0b, 0x35, 0x40, 0x0a, 0x9a, 0xa7, 0x93, 0x9d, + 0x3c, 0xcd, 0x6c, 0xbf, 0x7f, 0xb9, 0xed, 0xfe, 0x20, 0x59, 0x88, 0x68, 0xd7, 0xbc, 0x61, 0x3a, + 0x3a, 0x82, 0xa5, 0xa0, 0x55, 0x87, 0x56, 0x29, 0x79, 0x66, 0xe2, 0x81, 0x84, 0x4e, 0x90, 0xf4, + 0x40, 0xbc, 0x11, 0x06, 0xfa, 0x0c, 0x82, 0x9b, 0xc0, 0x2e, 0x1b, 0xcb, 0xe4, 0x24, 0xb3, 0x7c, + 0xff, 0xca, 0x23, 0x5c, 0x21, 0xa2, 0x05, 0xfd, 0xe3, 0x1c, 0x54, 0xa0, 0x1d, 0xc0, 0xf0, 0x88, + 0xdf, 0x01, 0x66, 0x99, 0xd5, 0xdb, 0x57, 0x18, 0x7e, 0x0a, 0x11, 0xda, 0x0d, 0xfa, 0x34, 0xa4, + 0xc2, 0x02, 0xb7, 0xe4, 0xd9, 0x36, 0xa6, 0x8d, 0x0a, 0x2e, 0x37, 0x15, 0x40, 0x78, 0x7d, 0x53, + 0x9c, 0x46, 0x3f, 0x16, 0xbb, 0x8b, 0x1d, 0x31, 0x10, 0xb0, 0x0a, 0x37, 0x37, 0xf1, 0x63, 0x19, + 0x9f, 0x1c, 0xe8, 0xc7, 0x62, 0x07, 0xa9, 0xf4, 0xc0, 0x9b, 0xfe, 0x28, 0x81, 0x4f, 0xd8, 0x2c, + 0x21, 0xcf, 0x4f, 0x3c, 0xf0, 0xb0, 0xa9, 0x83, 0x1e, 0x78, 0x73, 0x98, 0x8e, 0x2a, 0xfe, 0xc0, + 0xe9, 0x88, 0x59, 0x42, 0x5e, 0x98, 0xe8, 0xe5, 0xf8, 0xcc, 0x41, 0xbd, 0x34, 0x83, 0x54, 0xea, + 0xa5, 0x65, 0xb7, 0x08, 0xee, 0x0d, 0x6e, 0x20, 0xe5, 0xc5, 0x89, 0x5e, 0x86, 0xdd, 0x55, 0x52, + 0x2f, 0xad, 0x61, 0x3a, 0x2f, 0x14, 0x27, 0x1e, 0x6e, 0x53, 0x38, 0x8f, 0x5b, 0x1c, 0xcf, 0xcb, + 0xd2, 0x25, 0x85, 0x22, 0x04, 0xfa, 0xf3, 0x42, 0x31, 0xcc, 0xa0, 0x79, 0xe9, 0xe3, 0xf2, 0x66, + 0x7f, 0x1e, 0x90, 0x97, 0x26, 0xe6, 0x65, 0xf8, 0xec, 0x50, 0x60, 0x35, 0x79, 0x84, 0xc3, 0xea, + 0xa5, 0xb0, 0xed, 0xe7, 0x13, 0x9a, 0x5c, 0x2f, 0xc7, 0x66, 0x06, 0x56, 0x2f, 0x83, 0x54, 0x1a, + 0x5c, 0xdd, 0x9f, 0xa3, 0xb0, 0xc3, 0x06, 0x29, 0x79, 0x73, 0x62, 0x70, 0xc3, 0x46, 0x2e, 0x1a, + 0x5c, 0x7d, 0x98, 0x4e, 0xdd, 0xe4, 0x53, 0xc4, 0xa0, 0xac, 0x5f, 0x9f, 0xe8, 0xe6, 0xf8, 0x14, + 0x42, 0xdd, 0x74, 0x83, 0x54, 0xf4, 0xd3, 0x28, 0xdc, 0x19, 0xab, 0x22, 0xac, 0x12, 0x63, 0x76, + 0xb1, 0x8f, 0x1d, 0x3e, 0x0e, 0xc8, 0x37, 0xd8, 0x32, 0xff, 0x75, 0x85, 0xc2, 0x12, 0x3a, 0x49, + 0x14, 0x22, 0xda, 0xb6, 0xf7, 0x16, 0x41, 0x1a, 0x33, 0x83, 0xe3, 0x6c, 0x6c, 0x0b, 0xa0, 0x2d, + 0x6f, 0x4d, 0x8c, 0x59, 0x18, 0x24, 0xa7, 0x31, 0x33, 0x86, 0xe9, 0xb4, 0xb8, 0xf7, 0x06, 0xf7, + 0xe9, 0x58, 0x8c, 0xc9, 0xf2, 0xf6, 0xc4, 0xe2, 0x3e, 0xe1, 0xf6, 0x9d, 0x16, 0xf7, 0xde, 0x18, + 0x0b, 0x3d, 0x07, 0x29, 0x00, 0x39, 0x18, 0x14, 0x97, 0xd3, 0xcc, 0x76, 0x26, 0xc4, 0xf6, 0x25, + 0xc8, 0x9d, 0xd5, 0xf8, 0x61, 0x0e, 0x7a, 0x09, 0x37, 0xe9, 0x9c, 0xa5, 0xf3, 0x19, 0x06, 0x93, + 0xc1, 0x10, 0x23, 0x46, 0x96, 0xdb, 0x6c, 0xa5, 0x87, 0x61, 0xc7, 0x72, 0xf9, 0xe8, 0x53, 0x88, + 0x68, 0x9b, 0xde, 0x44, 0x11, 0x5a, 0x6b, 0x78, 0x85, 0xa6, 0xbd, 0x9e, 0x02, 0x78, 0xf9, 0xce, + 0xc4, 0x3c, 0x1b, 0x07, 0xfa, 0x34, 0xcf, 0x8c, 0x20, 0x15, 0x1d, 0xc2, 0x52, 0x87, 0x02, 0x74, + 0x6c, 0x58, 0x34, 0xb1, 0x18, 0x44, 0x97, 0xef, 0x4e, 0x3c, 0xdb, 0x30, 0x30, 0x4f, 0xe3, 0xd3, + 0x19, 0xa6, 0xa3, 0x4f, 0x05, 0xcc, 0x39, 0x21, 0xec, 0x64, 0x69, 0x07, 0x7c, 0x6f, 0x22, 0x72, + 0x0a, 0x01, 0xf4, 0x14, 0x39, 0xf5, 0x0d, 0xf0, 0xee, 0xf7, 0xbf, 0xb0, 0x62, 0x04, 0x61, 0x30, + 0x6e, 0x32, 0x1c, 0x2c, 0xbf, 0xcf, 0xec, 0x7e, 0x10, 0xba, 0xff, 0x70, 0xd4, 0x5c, 0x88, 0x68, + 0xcb, 0xc6, 0x38, 0x0f, 0x3d, 0x81, 0x65, 0x83, 0xa3, 0x60, 0x81, 0xf9, 0xf8, 0x51, 0xde, 0x1b, + 0xfb, 0xa9, 0x35, 0x58, 0x60, 0x04, 0x33, 0xd3, 0x1a, 0x66, 0x8c, 0x12, 0x51, 0x07, 0x36, 0xec, + 0x3e, 0x90, 0xc6, 0xe4, 0x4c, 0x37, 0x71, 0xd3, 0x87, 0xd2, 0xf2, 0x7d, 0x66, 0x7d, 0x27, 0xb4, + 0xa1, 0x4d, 0x06, 0xdf, 0x85, 0x88, 0xb6, 0x6e, 0x87, 0xf3, 0xd1, 0x97, 0x51, 0xb8, 0x15, 0x02, + 0xb8, 0x71, 0x2f, 0x08, 0xcd, 0xe5, 0x07, 0x6c, 0xdd, 0xff, 0x08, 0x3b, 0xe3, 0xb7, 0x63, 0xfa, + 0x42, 0x44, 0x4b, 0x75, 0x2e, 0x15, 0xdb, 0x9d, 0x81, 0x29, 0x36, 0x33, 0x17, 0x13, 0xc9, 0x6b, + 0x92, 0x54, 0x4c, 0x24, 0x97, 0xa5, 0x95, 0x62, 0x22, 0xb9, 0x22, 0xad, 0x16, 0x13, 0xc9, 0x55, + 0x69, 0xad, 0x98, 0x48, 0xae, 0x49, 0xeb, 0xc5, 0x44, 0x72, 0x5d, 0x92, 0x8b, 0x89, 0xa4, 0x2c, + 0x6d, 0x14, 0x13, 0xc9, 0x0d, 0x69, 0xb3, 0x98, 0x48, 0xde, 0x94, 0x52, 0xc5, 0x44, 0x32, 0x25, + 0x6d, 0x15, 0x13, 0xc9, 0x5b, 0x52, 0x3a, 0x7d, 0x9f, 0xc1, 0xf2, 0x9a, 0xed, 0xb2, 0xa6, 0x8b, + 0x36, 0x61, 0x8a, 0x9e, 0xde, 0xb9, 0xb8, 0x01, 0xe2, 0x70, 0x9e, 0x93, 0xd2, 0x5f, 0x4d, 0xc1, + 0x94, 0xff, 0xcf, 0x6b, 0xe4, 0x5e, 0x6c, 0x43, 0x5c, 0xeb, 0x2c, 0xb5, 0x48, 0xd7, 0x21, 0x4d, + 0xdd, 0x23, 0xad, 0x32, 0x17, 0x18, 0x5c, 0x96, 0xfd, 0xff, 0x30, 0xde, 0x74, 0x08, 0xfb, 0x5d, + 0xc6, 0xd0, 0xf4, 0x62, 0xe8, 0x27, 0x36, 0x54, 0x63, 0x99, 0xf0, 0xee, 0x1d, 0xb1, 0xce, 0x8d, + 0xc1, 0x3a, 0xe3, 0x52, 0x43, 0x70, 0x54, 0xd0, 0x50, 0x0e, 0x16, 0x7a, 0x16, 0x39, 0xef, 0xda, + 0x2e, 0x1d, 0x6a, 0xce, 0x2d, 0x01, 0xae, 0xdf, 0x32, 0xce, 0x69, 0xf3, 0x7d, 0x25, 0x0a, 0x71, + 0x76, 0x60, 0xce, 0x76, 0x8c, 0xb6, 0x61, 0x61, 0x0a, 0x00, 0x18, 0x54, 0x9e, 0xda, 0x5d, 0x14, + 0x57, 0xdf, 0xd3, 0x14, 0x2c, 0xa8, 0x79, 0x0d, 0xb8, 0x08, 0x7d, 0x43, 0x35, 0x98, 0x6e, 0xb1, + 0x79, 0x47, 0x40, 0xdf, 0xd4, 0xa4, 0x0b, 0x2b, 0x3e, 0x15, 0xed, 0xca, 0x62, 0x7f, 0xd2, 0x60, + 0x7f, 0x9c, 0xa3, 0x09, 0x3b, 0xe8, 0x00, 0x16, 0x68, 0x41, 0x6c, 0xf5, 0x8b, 0x21, 0x07, 0x93, + 0xdb, 0x01, 0xc3, 0xfe, 0x8f, 0xf0, 0x8c, 0xc2, 0x05, 0x83, 0x37, 0x62, 0xf3, 0x24, 0x40, 0x43, + 0xff, 0xee, 0x9f, 0xf6, 0xcc, 0x65, 0xde, 0xf9, 0xc9, 0x21, 0xf2, 0x00, 0xf5, 0x20, 0x6e, 0xd9, + 0x2f, 0x05, 0x36, 0x7e, 0xcb, 0x3c, 0x98, 0x17, 0xc1, 0x79, 0x7c, 0xf5, 0x3b, 0x32, 0x6a, 0x20, + 0x67, 0xda, 0xcd, 0x17, 0x7d, 0x2b, 0x1a, 0x5d, 0x8f, 0x5f, 0xe3, 0xf1, 0x4b, 0xf7, 0x07, 0x7f, + 0x89, 0x81, 0x3c, 0xe9, 0x2f, 0x15, 0x92, 0x61, 0x25, 0xbb, 0x5b, 0xd5, 0x1a, 0x78, 0xec, 0x6f, + 0xc9, 0x5d, 0xb8, 0x35, 0xc4, 0x61, 0x2f, 0x4a, 0x1e, 0x6b, 0x4a, 0xae, 0xaa, 0xe5, 0xf1, 0x5e, + 0xf5, 0xb0, 0x92, 0x97, 0xa2, 0x28, 0x05, 0x9b, 0x43, 0x62, 0xb9, 0x92, 0xaa, 0x54, 0xe8, 0x5b, + 0x51, 0xc9, 0x35, 0xa4, 0x38, 0xda, 0x82, 0xeb, 0x43, 0xfc, 0xda, 0x61, 0xbd, 0xa0, 0x68, 0xbe, + 0x35, 0x29, 0x81, 0xae, 0xc3, 0xfa, 0xf8, 0x3a, 0xb8, 0x5e, 0xcb, 0x56, 0xa4, 0x29, 0xf4, 0x9f, + 0xf0, 0xd1, 0x10, 0x53, 0x2c, 0x9e, 0x2d, 0x69, 0x4a, 0x36, 0xff, 0x0c, 0x1f, 0x69, 0x6a, 0xa3, + 0xa1, 0x54, 0x70, 0xad, 0x5a, 0xaf, 0xab, 0xbb, 0x25, 0x85, 0x5d, 0xaa, 0x64, 0x9f, 0x49, 0xd3, + 0xe8, 0x7d, 0xb8, 0x3d, 0xa4, 0x58, 0x51, 0x8e, 0xf8, 0x6d, 0x06, 0xae, 0x69, 0xca, 0x13, 0xa5, + 0xd2, 0xa8, 0xe3, 0xc6, 0xd3, 0x8a, 0x94, 0x44, 0xf7, 0xe1, 0xee, 0x90, 0x60, 0x43, 0x2d, 0x2b, + 0xf5, 0x46, 0xb6, 0x5c, 0xc3, 0xb9, 0x6c, 0xae, 0xa0, 0x88, 0x8d, 0x28, 0x79, 0x69, 0x66, 0x33, + 0xf1, 0xd5, 0xd7, 0xa9, 0x48, 0x9a, 0x06, 0x35, 0xf6, 0xe0, 0xb7, 0xc3, 0x3f, 0xbb, 0x02, 0x3f, + 0xce, 0xf8, 0xdd, 0x4a, 0x43, 0x7b, 0x36, 0x1e, 0x52, 0x76, 0x91, 0x43, 0x39, 0xd4, 0x6f, 0x05, + 0x37, 0xaa, 0x55, 0x5c, 0x2d, 0xd1, 0x20, 0xb2, 0x9b, 0x1f, 0xca, 0xa8, 0x2b, 0x9a, 0x9a, 0x2d, + 0xa9, 0x9f, 0x65, 0x77, 0x4b, 0x8a, 0x14, 0x47, 0x37, 0x61, 0x83, 0xd3, 0xb3, 0xf5, 0x67, 0x95, + 0x9c, 0x50, 0xdb, 0xcb, 0xaa, 0xa5, 0x43, 0x4d, 0x91, 0xa6, 0x50, 0x1a, 0x52, 0x9c, 0xcd, 0xff, + 0x65, 0xe1, 0xbc, 0x92, 0xcd, 0x97, 0xd4, 0x8a, 0x32, 0xf8, 0xf1, 0x32, 0xcd, 0x9d, 0x7e, 0xf0, + 0x08, 0xd0, 0xf8, 0xb7, 0x8f, 0x92, 0x90, 0xa8, 0x54, 0x2b, 0x8a, 0x14, 0x41, 0x73, 0x30, 0xb3, + 0x9b, 0xcd, 0x1d, 0x54, 0xf7, 0xf6, 0xa4, 0x28, 0x5a, 0x80, 0x59, 0xb5, 0x5c, 0x56, 0xf2, 0x6a, + 0xb6, 0xa1, 0x48, 0xb1, 0xdd, 0xfb, 0xdf, 0xfc, 0x23, 0x15, 0xf9, 0xe6, 0x75, 0x2a, 0xfa, 0xed, + 0xeb, 0x54, 0xf4, 0xbb, 0xd7, 0xa9, 0xe8, 0xdf, 0x5f, 0xa7, 0xa2, 0x3f, 0x7f, 0x93, 0x8a, 0x7c, + 0xfb, 0x26, 0x15, 0xf9, 0xee, 0x4d, 0x2a, 0xf2, 0xd9, 0x8c, 0xa8, 0x06, 0xff, 0x0a, 0x00, 0x00, + 0xff, 0xff, 0x58, 0x87, 0xd7, 0x3e, 0x81, 0x22, 0x00, 0x00, } func (m *NotLeaseHolderError) Marshal() (dAtA []byte, err error) { @@ -2684,10 +2676,10 @@ func (m *RangeKeyMismatchError) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if len(m.rangesInternal) > 0 { - for iNdEx := len(m.rangesInternal) - 1; iNdEx >= 0; iNdEx-- { + if len(m.Ranges) > 0 { + for iNdEx := len(m.Ranges) - 1; iNdEx >= 0; iNdEx-- { { - size, err := m.rangesInternal[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + size, err := m.Ranges[iNdEx].MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } @@ -2698,28 +2690,6 @@ func (m *RangeKeyMismatchError) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x2a } } - if m.DeprecatedSuggestedRange != nil { - { - size, err := m.DeprecatedSuggestedRange.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintErrors(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - { - size, err := m.DeprecatedMismatchedRange.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintErrors(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a if m.RequestEndKey != nil { i -= len(m.RequestEndKey) copy(dAtA[i:], m.RequestEndKey) @@ -4586,14 +4556,8 @@ func (m *RangeKeyMismatchError) Size() (n int) { l = len(m.RequestEndKey) n += 1 + l + sovErrors(uint64(l)) } - l = m.DeprecatedMismatchedRange.Size() - n += 1 + l + sovErrors(uint64(l)) - if m.DeprecatedSuggestedRange != nil { - l = m.DeprecatedSuggestedRange.Size() - n += 1 + l + sovErrors(uint64(l)) - } - if len(m.rangesInternal) > 0 { - for _, e := range m.rangesInternal { + if len(m.Ranges) > 0 { + for _, e := range m.Ranges { l = e.Size() n += 1 + l + sovErrors(uint64(l)) } @@ -5853,78 +5817,9 @@ func (m *RangeKeyMismatchError) Unmarshal(dAtA []byte) error { m.RequestEndKey = []byte{} } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeprecatedMismatchedRange", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowErrors - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthErrors - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthErrors - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.DeprecatedMismatchedRange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeprecatedSuggestedRange", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowErrors - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthErrors - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthErrors - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.DeprecatedSuggestedRange == nil { - m.DeprecatedSuggestedRange = &RangeDescriptor{} - } - if err := m.DeprecatedSuggestedRange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field rangesInternal", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Ranges", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -5951,8 +5846,8 @@ func (m *RangeKeyMismatchError) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.rangesInternal = append(m.rangesInternal, RangeInfo{}) - if err := m.rangesInternal[len(m.rangesInternal)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Ranges = append(m.Ranges, RangeInfo{}) + if err := m.Ranges[len(m.Ranges)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/pkg/roachpb/errors.proto b/pkg/roachpb/errors.proto index 5a06dc54ff62..cb4e10969591 100644 --- a/pkg/roachpb/errors.proto +++ b/pkg/roachpb/errors.proto @@ -90,24 +90,18 @@ message RangeKeyMismatchError { optional bytes request_start_key = 1 [(gogoproto.casttype) = "Key"]; optional bytes request_end_key = 2 [(gogoproto.casttype) = "Key"]; - // deprecated_mismatched_range is an older version of mismatched_range. Can go - // away in 21.1, when we don't worry about 20.1 kvservers not populating rangesInternal. - optional roachpb.RangeDescriptor deprecated_mismatched_range = 3 [(gogoproto.nullable) = false]; - // deprecated_suggested_range is an older version of suggested_range. Can go - // away in 21.1, when we don't worry about 20.1 kvservers not populating - // rangesInternal. - optional roachpb.RangeDescriptor deprecated_suggested_range = 4; - - // ranges contains information intended for the client's range cache. The + // Ranges contains information intended for the client's range cache. The // server populates it with info on the range with the ID addressed by the // client (always the first in the array) and then all other ranges // overlapping the requested key range, or in between the addressed range and // the requested key range. // - // In 21.1 the customname can be removed, together with the Ranges() accessor. - repeated roachpb.RangeInfo ranges = 5 [(gogoproto.customname) = "rangesInternal", - (gogoproto.nullable) = false]; + // The slice should always have a length of at least 1. However, users should + // call MismatchedRange instead of relying on this in cases where they require + // at least one entry. + repeated roachpb.RangeInfo ranges = 5 [(gogoproto.nullable) = false]; + reserved 3, 4; } // A ReadWithinUncertaintyIntervalError indicates that a read at timestamp diff --git a/pkg/server/server.go b/pkg/server/server.go index 33badc992a08..0f33404c6529 100644 --- a/pkg/server/server.go +++ b/pkg/server/server.go @@ -1590,20 +1590,25 @@ func (s *Server) PreStart(ctx context.Context) error { } }) - // NB: if this store is freshly initialized (or no upper bound was - // persisted), hlcUpperBound will be zero. - hlcUpperBound, err := kvserver.ReadMaxHLCUpperBound(ctx, s.engines) - if err != nil { - return errors.Wrap(err, "reading max HLC upper bound") - } + // If the server is being restarted, sleep to ensure monotonicity of the HLC + // clock. This can be skipped on server bootstrap because the server has never + // been used before. + var hlcUpperBoundExists bool + if !initialStart { + hlcUpperBound, err := kvserver.ReadMaxHLCUpperBound(ctx, s.engines) + if err != nil { + return errors.Wrap(err, "reading max HLC upper bound") + } + hlcUpperBoundExists = hlcUpperBound > 0 - ensureClockMonotonicity( - ctx, - s.clock, - s.startTime, - hlcUpperBound, - s.clock.SleepUntil, - ) + ensureClockMonotonicity( + ctx, + s.clock, + s.startTime, + hlcUpperBound, + s.clock.SleepUntil, + ) + } // Record a walltime that is lower than the lowest hlc timestamp this current // instance of the node can use. We do not use startTime because it is lower @@ -1642,7 +1647,7 @@ func (s *Server) PreStart(ctx context.Context) error { log.Event(ctx, "started node") if err := s.startPersistingHLCUpperBound( ctx, - hlcUpperBound > 0, + hlcUpperBoundExists, func(t int64) error { /* function to persist upper bound of HLC to all stores */ return s.node.SetHLCUpperBound(context.Background(), t) }, diff --git a/pkg/sql/logictest/testdata/logic_test/interval b/pkg/sql/logictest/testdata/logic_test/interval index 5ba8617b78d1..2c001f6e7210 100644 --- a/pkg/sql/logictest/testdata/logic_test/interval +++ b/pkg/sql/logictest/testdata/logic_test/interval @@ -623,3 +623,30 @@ SELECT i, i::INTERVAL FROM interval_parsing ORDER BY pk -10 years -22 months 1 day 01:02:03 -11-10 +1 +1:02:03 -10 years 22 months -1 day 01:02:03 -8-2 -1 +1:02:03 -10 years 22 months -1 day -01:02:03 -8-2 -1 -1:02:03 + +# Test intervalstyle being respected in pg_indexes. + +statement ok +CREATE TABLE intervalstyle_in_index ( + a INT8 PRIMARY KEY, b INTERVAL, + INDEX idx (b) WHERE b > 'P3Y' +) + +query TT +SELECT indexname, indexdef +FROM pg_indexes +WHERE tablename = 'intervalstyle_in_index' +AND indexname = 'idx' +---- +idx CREATE INDEX idx ON test.public.intervalstyle_in_index USING btree (b ASC) WHERE (b > '3-0'::INTERVAL) + +statement ok +SET intervalstyle = 'iso_8601' + +query TT +SELECT indexname, indexdef +FROM pg_indexes +WHERE tablename = 'intervalstyle_in_index' +AND indexname = 'idx' +---- +idx CREATE INDEX idx ON test.public.intervalstyle_in_index USING btree (b ASC) WHERE (b > 'P3Y'::INTERVAL) diff --git a/pkg/sql/pg_catalog.go b/pkg/sql/pg_catalog.go index 61d7f62bb534..49d5ec915fa3 100644 --- a/pkg/sql/pg_catalog.go +++ b/pkg/sql/pg_catalog.go @@ -1889,7 +1889,7 @@ func indexDefFromDescriptor( } indexDef.Predicate = pred } - fmtCtx := tree.NewFmtCtx(tree.FmtPGCatalog) + fmtCtx := tree.NewFmtCtx(tree.FmtPGCatalog, tree.FmtDataConversionConfig(p.SessionData().DataConversionConfig)) fmtCtx.FormatNode(&indexDef) return fmtCtx.String(), nil } @@ -2960,7 +2960,9 @@ https://www.postgresql.org/docs/9.5/catalog-pg-type.html`, if typDesc.GetKind() == descpb.TypeDescriptor_TABLE_IMPLICIT_RECORD_TYPE { table, err := p.Descriptors().GetImmutableTableByID(ctx, p.txn, id, tree.ObjectLookupFlags{}) if err != nil { - if errors.Is(err, catalog.ErrDescriptorNotFound) || pgerror.GetPGCode(err) == pgcode.UndefinedObject { + if errors.Is(err, catalog.ErrDescriptorNotFound) || + pgerror.GetPGCode(err) == pgcode.UndefinedObject || + pgerror.GetPGCode(err) == pgcode.UndefinedTable { return false, nil } return false, err