diff --git a/posting/index.go b/posting/index.go index 76b133d23f6..e4e2404a2f4 100644 --- a/posting/index.go +++ b/posting/index.go @@ -575,7 +575,6 @@ func (r *rebuilder) Run(ctx context.Context) error { WithNumVersionsToKeep(math.MaxInt32). WithLogger(&x.ToGlog{}). WithCompression(options.None). - WithEncryptionKey(x.WorkerConfig.EncryptionKey). WithLoggingLevel(badger.WARNING). WithMetricsEnabled(false) @@ -1243,24 +1242,24 @@ func DeleteData(ns uint64) error { // DeletePredicate deletes all entries and indices for a given predicate. The delete may be logical // based on DB options set. -func DeletePredicate(ctx context.Context, attr string) error { +func DeletePredicate(ctx context.Context, attr string, ts uint64) error { glog.Infof("Dropping predicate: [%s]", attr) prefix := x.PredicatePrefix(attr) if err := pstore.DropPrefix(prefix); err != nil { return err } - return schema.State().Delete(attr) + return schema.State().Delete(attr, ts) } // DeletePredicateBlocking deletes all entries and indices for a given predicate. It also blocks the // writes. -func DeletePredicateBlocking(ctx context.Context, attr string) error { +func DeletePredicateBlocking(ctx context.Context, attr string, ts uint64) error { glog.Infof("Dropping predicate: [%s]", attr) prefix := x.PredicatePrefix(attr) if err := pstore.DropPrefixBlocking(prefix); err != nil { return err } - return schema.State().Delete(attr) + return schema.State().Delete(attr, ts) } // DeleteNamespace bans the namespace and deletes its predicates/types from the schema. diff --git a/protos/pb.proto b/protos/pb.proto index 0201dffab6e..a6773b15281 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -334,6 +334,8 @@ message Proposal { RestoreRequest restore = 12; CDCState cdc_state = 13; DeleteNsRequest delete_ns = 14; // Used to delete namespace. + // Skipping 15 as it is used for uint64 key in master and might be needed later here. + uint64 start_ts = 16; } message CDCState { diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index bbb89d5ccf4..ea69cf6978a 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -2438,6 +2438,8 @@ type Proposal struct { Restore *RestoreRequest `protobuf:"bytes,12,opt,name=restore,proto3" json:"restore,omitempty"` CdcState *CDCState `protobuf:"bytes,13,opt,name=cdc_state,json=cdcState,proto3" json:"cdc_state,omitempty"` DeleteNs *DeleteNsRequest `protobuf:"bytes,14,opt,name=delete_ns,json=deleteNs,proto3" json:"delete_ns,omitempty"` + // Skipping 15 as it is used for uint64 key in master and might be needed later here. + StartTs uint64 `protobuf:"varint,16,opt,name=start_ts,json=startTs,proto3" json:"start_ts,omitempty"` } func (m *Proposal) Reset() { *m = Proposal{} } @@ -2550,6 +2552,13 @@ func (m *Proposal) GetDeleteNs() *DeleteNsRequest { return nil } +func (m *Proposal) GetStartTs() uint64 { + if m != nil { + return m.StartTs + } + return 0 +} + type CDCState struct { SentTs uint64 `protobuf:"varint,1,opt,name=sent_ts,json=sentTs,proto3" json:"sent_ts,omitempty"` } @@ -5561,342 +5570,343 @@ func init() { func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 5358 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x3b, 0x4b, 0x6f, 0x1c, 0x67, - 0x72, 0x9c, 0xf7, 0x74, 0xcd, 0x43, 0xc3, 0x4f, 0xb2, 0x3c, 0x3b, 0xb2, 0x45, 0xba, 0x65, 0xd9, - 0xb4, 0x64, 0x51, 0x12, 0xb5, 0x8b, 0xac, 0xbd, 0x58, 0x20, 0x7c, 0x0c, 0x65, 0x5a, 0x14, 0xa9, - 0x6d, 0x8e, 0xb4, 0x0f, 0x20, 0x19, 0x34, 0xbb, 0x3f, 0x92, 0xbd, 0xec, 0xe9, 0xee, 0xed, 0xee, - 0xe1, 0x92, 0xbe, 0x2d, 0x02, 0xec, 0x5e, 0x72, 0x58, 0x20, 0x97, 0x9c, 0x12, 0x20, 0xd7, 0x9c, - 0x12, 0x20, 0x40, 0x10, 0x20, 0xb7, 0x20, 0x08, 0x72, 0xc9, 0x1e, 0x13, 0x24, 0x31, 0x02, 0x6f, - 0x90, 0x83, 0x0f, 0x01, 0x82, 0xfc, 0x81, 0xa0, 0xaa, 0xbe, 0x7e, 0x0d, 0x47, 0x92, 0xbd, 0x41, - 0x0e, 0x39, 0xcd, 0x57, 0xf5, 0xbd, 0xeb, 0xab, 0x77, 0xf5, 0x40, 0x33, 0x38, 0x5c, 0x0d, 0x42, - 0x3f, 0xf6, 0x45, 0x39, 0x38, 0x1c, 0x68, 0x66, 0xe0, 0x30, 0x38, 0xb8, 0x73, 0xec, 0xc4, 0x27, - 0xd3, 0xc3, 0x55, 0xcb, 0x9f, 0xdc, 0xb7, 0x8f, 0x43, 0x33, 0x38, 0xb9, 0xe7, 0xf8, 0xf7, 0x0f, - 0x4d, 0xfb, 0x58, 0x86, 0xf7, 0xcf, 0x1e, 0xdd, 0x0f, 0x0e, 0xef, 0x27, 0x53, 0x07, 0xf7, 0x72, - 0x63, 0x8f, 0xfd, 0x63, 0xff, 0x3e, 0xa1, 0x0f, 0xa7, 0x47, 0x04, 0x11, 0x40, 0x2d, 0x1e, 0xae, - 0x0f, 0xa0, 0xba, 0xeb, 0x44, 0xb1, 0x10, 0x50, 0x9d, 0x3a, 0x76, 0xd4, 0x2f, 0x2d, 0x57, 0x56, - 0xea, 0x06, 0xb5, 0xf5, 0xa7, 0xa0, 0x8d, 0xcc, 0xe8, 0xf4, 0x85, 0xe9, 0x4e, 0xa5, 0xe8, 0x41, - 0xe5, 0xcc, 0x74, 0xfb, 0xa5, 0xe5, 0xd2, 0x4a, 0xdb, 0xc0, 0xa6, 0x58, 0x85, 0xe6, 0x99, 0xe9, - 0x8e, 0xe3, 0x8b, 0x40, 0xf6, 0xcb, 0xcb, 0xa5, 0x95, 0xee, 0xda, 0xd5, 0xd5, 0xe0, 0x70, 0xf5, - 0x99, 0x1f, 0xc5, 0x8e, 0x77, 0xbc, 0xfa, 0xc2, 0x74, 0x47, 0x17, 0x81, 0x34, 0x1a, 0x67, 0xdc, - 0xd0, 0xf7, 0xa1, 0x75, 0x10, 0x5a, 0xdb, 0x53, 0xcf, 0x8a, 0x1d, 0xdf, 0xc3, 0x1d, 0x3d, 0x73, - 0x22, 0x69, 0x45, 0xcd, 0xa0, 0x36, 0xe2, 0xcc, 0xf0, 0x38, 0xea, 0x57, 0x96, 0x2b, 0x88, 0xc3, - 0xb6, 0xe8, 0x43, 0xc3, 0x89, 0x36, 0xfd, 0xa9, 0x17, 0xf7, 0xab, 0xcb, 0xa5, 0x95, 0xa6, 0x91, - 0x80, 0xfa, 0x1f, 0x57, 0xa0, 0xf6, 0xbd, 0xa9, 0x0c, 0x2f, 0x68, 0x5e, 0x1c, 0x87, 0xc9, 0x5a, - 0xd8, 0x16, 0xd7, 0xa0, 0xe6, 0x9a, 0xde, 0x71, 0xd4, 0x2f, 0xd3, 0x62, 0x0c, 0x88, 0x1b, 0xa0, - 0x99, 0x47, 0xb1, 0x0c, 0xc7, 0x53, 0xc7, 0xee, 0x57, 0x96, 0x4b, 0x2b, 0x75, 0xa3, 0x49, 0x88, - 0xe7, 0x8e, 0x2d, 0xbe, 0x01, 0x4d, 0xdb, 0x1f, 0x5b, 0xf9, 0xbd, 0x6c, 0x9f, 0xf6, 0x12, 0xb7, - 0xa0, 0x39, 0x75, 0xec, 0xb1, 0xeb, 0x44, 0x71, 0xbf, 0xb6, 0x5c, 0x5a, 0x69, 0xad, 0x35, 0xf1, - 0xb2, 0x48, 0x3b, 0xa3, 0x31, 0x75, 0x6c, 0x22, 0xe2, 0x1d, 0x68, 0x46, 0xa1, 0x35, 0x3e, 0x9a, - 0x7a, 0x56, 0xbf, 0x4e, 0x83, 0xae, 0xe0, 0xa0, 0xdc, 0xad, 0x8d, 0x46, 0xc4, 0x00, 0x5e, 0x2b, - 0x94, 0x67, 0x32, 0x8c, 0x64, 0xbf, 0xc1, 0x5b, 0x29, 0x50, 0x3c, 0x80, 0xd6, 0x91, 0x69, 0xc9, - 0x78, 0x1c, 0x98, 0xa1, 0x39, 0xe9, 0x37, 0xb3, 0x85, 0xb6, 0x11, 0xfd, 0x0c, 0xb1, 0x91, 0x01, - 0x47, 0x29, 0x20, 0x1e, 0x41, 0x87, 0xa0, 0x68, 0x7c, 0xe4, 0xb8, 0xb1, 0x0c, 0xfb, 0x1a, 0xcd, - 0xe9, 0xd2, 0x1c, 0xc2, 0x8c, 0x42, 0x29, 0x8d, 0x36, 0x0f, 0x62, 0x8c, 0x78, 0x1b, 0x40, 0x9e, - 0x07, 0xa6, 0x67, 0x8f, 0x4d, 0xd7, 0xed, 0x03, 0x9d, 0x41, 0x63, 0xcc, 0xba, 0xeb, 0x8a, 0x37, - 0xf1, 0x7c, 0xa6, 0x3d, 0x8e, 0xa3, 0x7e, 0x67, 0xb9, 0xb4, 0x52, 0x35, 0xea, 0x08, 0x8e, 0x22, - 0xa4, 0xab, 0x65, 0x5a, 0x27, 0xb2, 0xdf, 0x5d, 0x2e, 0xad, 0xd4, 0x0c, 0x06, 0x10, 0x7b, 0xe4, - 0x84, 0x51, 0xdc, 0xbf, 0xc2, 0x58, 0x02, 0xf4, 0x35, 0xd0, 0x88, 0x7b, 0x88, 0x3a, 0xb7, 0xa1, - 0x7e, 0x86, 0x00, 0x33, 0x59, 0x6b, 0xad, 0x83, 0xc7, 0x4b, 0x19, 0xcc, 0x50, 0x9d, 0xfa, 0x4d, - 0x68, 0xee, 0x9a, 0xde, 0x71, 0xc2, 0x95, 0xf8, 0x6c, 0x34, 0x41, 0x33, 0xa8, 0xad, 0xff, 0x61, - 0x19, 0xea, 0x86, 0x8c, 0xa6, 0x6e, 0x2c, 0xde, 0x07, 0xc0, 0x47, 0x99, 0x98, 0x71, 0xe8, 0x9c, - 0xab, 0x55, 0xb3, 0x67, 0xd1, 0xa6, 0x8e, 0xfd, 0x94, 0xba, 0xc4, 0x03, 0x68, 0xd3, 0xea, 0xc9, - 0xd0, 0x72, 0x76, 0x80, 0xf4, 0x7c, 0x46, 0x8b, 0x86, 0xa8, 0x19, 0xd7, 0xa1, 0x4e, 0x7c, 0xc0, - 0xbc, 0xd8, 0x31, 0x14, 0x24, 0x6e, 0x43, 0xd7, 0xf1, 0x62, 0x7c, 0x27, 0x2b, 0x1e, 0xdb, 0x32, - 0x4a, 0x18, 0xa5, 0x93, 0x62, 0xb7, 0x64, 0x14, 0x8b, 0x87, 0xc0, 0xc4, 0x4e, 0x36, 0xac, 0xd1, - 0x86, 0xdd, 0xf4, 0x11, 0x23, 0xde, 0x91, 0xc6, 0xa8, 0x1d, 0xef, 0x41, 0x0b, 0xef, 0x97, 0xcc, - 0xa8, 0xd3, 0x8c, 0x36, 0xdd, 0x46, 0x91, 0xc3, 0x00, 0x1c, 0xa0, 0x86, 0x23, 0x69, 0x90, 0x19, - 0x99, 0x79, 0xa8, 0xad, 0x0f, 0xa1, 0xb6, 0x1f, 0xda, 0x32, 0x9c, 0x2b, 0x0f, 0x02, 0xaa, 0xb6, - 0x8c, 0x2c, 0x12, 0xd5, 0xa6, 0x41, 0xed, 0x4c, 0x46, 0x2a, 0x39, 0x19, 0xd1, 0xff, 0xa8, 0x04, - 0xad, 0x03, 0x3f, 0x8c, 0x9f, 0xca, 0x28, 0x32, 0x8f, 0xa5, 0x58, 0x82, 0x9a, 0x8f, 0xcb, 0x2a, - 0x0a, 0x6b, 0x78, 0x26, 0xda, 0xc7, 0x60, 0xfc, 0xcc, 0x3b, 0x94, 0x5f, 0xfe, 0x0e, 0xc8, 0x3b, - 0x24, 0x5d, 0x15, 0xc5, 0x3b, 0x24, 0x5b, 0xd7, 0xa1, 0xee, 0x1f, 0x1d, 0x45, 0x92, 0x69, 0x59, - 0x33, 0x14, 0xf4, 0x52, 0x16, 0xd4, 0xbf, 0x05, 0x80, 0xe7, 0xfb, 0x9a, 0x5c, 0xa0, 0xff, 0xa2, - 0x04, 0x2d, 0xc3, 0x3c, 0x8a, 0x37, 0x7d, 0x2f, 0x96, 0xe7, 0xb1, 0xe8, 0x42, 0xd9, 0xb1, 0x89, - 0x46, 0x75, 0xa3, 0xec, 0xd8, 0x78, 0xba, 0xe3, 0xd0, 0x9f, 0x06, 0x44, 0xa2, 0x8e, 0xc1, 0x00, - 0xd1, 0xd2, 0xb6, 0x43, 0x3a, 0x32, 0xd2, 0xd2, 0xb6, 0x43, 0xb1, 0x04, 0xad, 0xc8, 0x33, 0x83, - 0xe8, 0xc4, 0x8f, 0xf1, 0x74, 0x55, 0x3a, 0x1d, 0x24, 0xa8, 0x51, 0x84, 0xc2, 0xe5, 0x44, 0x63, - 0x57, 0x9a, 0xa1, 0x27, 0x43, 0x52, 0x18, 0x4d, 0x43, 0x73, 0xa2, 0x5d, 0x46, 0xe8, 0xbf, 0xa8, - 0x40, 0xfd, 0xa9, 0x9c, 0x1c, 0xca, 0xf0, 0xd2, 0x21, 0x1e, 0x40, 0x93, 0xf6, 0x1d, 0x3b, 0x36, - 0x9f, 0x63, 0xe3, 0x8d, 0x2f, 0x3f, 0x5f, 0x5a, 0x24, 0xdc, 0x8e, 0xfd, 0xa1, 0x3f, 0x71, 0x62, - 0x39, 0x09, 0xe2, 0x0b, 0xa3, 0xa1, 0x50, 0x73, 0x0f, 0x78, 0x1d, 0xea, 0xae, 0x34, 0xf1, 0xcd, - 0x98, 0x3d, 0x15, 0x24, 0xee, 0x41, 0xc3, 0x9c, 0x8c, 0x6d, 0x69, 0xda, 0x7c, 0xa8, 0x8d, 0x6b, - 0x5f, 0x7e, 0xbe, 0xd4, 0x33, 0x27, 0x5b, 0xd2, 0xcc, 0xaf, 0x5d, 0x67, 0x8c, 0xf8, 0x08, 0x79, - 0x32, 0x8a, 0xc7, 0xd3, 0xc0, 0x36, 0x63, 0x49, 0x3a, 0xad, 0xba, 0xd1, 0xff, 0xf2, 0xf3, 0xa5, - 0x6b, 0x88, 0x7e, 0x4e, 0xd8, 0xdc, 0x34, 0xc8, 0xb0, 0xa8, 0xdf, 0x92, 0xeb, 0x2b, 0xfd, 0xa6, - 0x40, 0xb1, 0x03, 0x8b, 0x96, 0x3b, 0x8d, 0x50, 0x09, 0x3b, 0xde, 0x91, 0x3f, 0xf6, 0x3d, 0xf7, - 0x82, 0x1e, 0xb8, 0xb9, 0xf1, 0xf6, 0x97, 0x9f, 0x2f, 0x7d, 0x43, 0x75, 0xee, 0x78, 0x47, 0xfe, - 0xbe, 0xe7, 0x5e, 0xe4, 0xd6, 0xbf, 0x32, 0xd3, 0x25, 0x7e, 0x1b, 0xba, 0x47, 0x7e, 0x68, 0xc9, - 0x71, 0x4a, 0xb2, 0x2e, 0xad, 0x33, 0xf8, 0xf2, 0xf3, 0xa5, 0xeb, 0xd4, 0xf3, 0xf8, 0x12, 0xdd, - 0xda, 0x79, 0xbc, 0xfe, 0xaf, 0x65, 0xa8, 0x51, 0x5b, 0x3c, 0x80, 0xc6, 0x84, 0x9e, 0x24, 0xd1, - 0x4f, 0xd7, 0x91, 0x87, 0xa8, 0x6f, 0x95, 0xdf, 0x2a, 0x1a, 0x7a, 0x71, 0x78, 0x61, 0x24, 0xc3, - 0x70, 0x46, 0x6c, 0x1e, 0xba, 0x32, 0x8e, 0x14, 0xcf, 0xe7, 0x66, 0x8c, 0xb8, 0x43, 0xcd, 0x50, - 0xc3, 0x66, 0xf9, 0xa6, 0x72, 0x89, 0x6f, 0x06, 0xd0, 0xb4, 0x4e, 0xa4, 0x75, 0x1a, 0x4d, 0x27, - 0x8a, 0xab, 0x52, 0x58, 0xdc, 0x82, 0x0e, 0xb5, 0x03, 0xdf, 0xf1, 0x68, 0x7a, 0x8d, 0x06, 0xb4, - 0x33, 0xe4, 0x28, 0x1a, 0x6c, 0x43, 0x3b, 0x7f, 0x58, 0x34, 0xdb, 0xa7, 0xf2, 0x82, 0xf8, 0xab, - 0x6a, 0x60, 0x53, 0x2c, 0x43, 0x8d, 0x14, 0x1d, 0x71, 0x57, 0x6b, 0x0d, 0xf0, 0xcc, 0x3c, 0xc5, - 0xe0, 0x8e, 0x8f, 0xcb, 0xdf, 0x2e, 0xe1, 0x3a, 0xf9, 0x2b, 0xe4, 0xd7, 0xd1, 0x5e, 0xbe, 0x0e, - 0x4f, 0xc9, 0xad, 0xa3, 0xfb, 0xd0, 0xd8, 0x75, 0x2c, 0xe9, 0x45, 0x64, 0xdc, 0xa7, 0x91, 0x4c, - 0x95, 0x12, 0xb6, 0xf1, 0xbe, 0x13, 0xf3, 0x7c, 0xcf, 0xb7, 0x65, 0x44, 0xeb, 0x54, 0x8d, 0x14, - 0xc6, 0x3e, 0x79, 0x1e, 0x38, 0xe1, 0xc5, 0x88, 0x29, 0x55, 0x31, 0x52, 0x18, 0xb9, 0x4b, 0x7a, - 0xb8, 0x99, 0x9d, 0x18, 0x6a, 0x05, 0xea, 0x3f, 0xaf, 0x42, 0xfb, 0x47, 0x32, 0xf4, 0x9f, 0x85, - 0x7e, 0xe0, 0x47, 0xa6, 0x2b, 0xd6, 0x8b, 0x34, 0xe7, 0xb7, 0x5d, 0xc6, 0xd3, 0xe6, 0x87, 0xad, - 0x1e, 0xa4, 0x8f, 0xc0, 0x6f, 0x96, 0x7f, 0x15, 0x1d, 0xea, 0xfc, 0xe6, 0x73, 0x68, 0xa6, 0x7a, - 0x70, 0x0c, 0xbf, 0x32, 0x9d, 0xb5, 0x48, 0x0f, 0xd5, 0x83, 0x52, 0x39, 0x31, 0xcf, 0x9f, 0xef, - 0x6c, 0xa9, 0xb7, 0x55, 0x90, 0xa2, 0xc2, 0xe8, 0xdc, 0x1b, 0x25, 0x8f, 0x9a, 0xc2, 0x78, 0x53, - 0xa4, 0x48, 0xb4, 0xb3, 0xd5, 0x6f, 0x53, 0x57, 0x02, 0x8a, 0xb7, 0x40, 0x9b, 0x98, 0xe7, 0xa8, - 0xd0, 0x76, 0x6c, 0x16, 0x4d, 0x23, 0x43, 0x88, 0x77, 0xa0, 0x12, 0x9f, 0x7b, 0x24, 0x7b, 0xe8, - 0x3d, 0xa0, 0x33, 0x39, 0x3a, 0xf7, 0x94, 0xea, 0x33, 0xb0, 0x0f, 0xdf, 0xd4, 0x72, 0x6c, 0x72, - 0x16, 0x34, 0x03, 0x9b, 0xe2, 0x36, 0x34, 0x5c, 0x7e, 0x2d, 0x72, 0x08, 0x5a, 0x6b, 0x2d, 0xd6, - 0xa3, 0x84, 0x32, 0x92, 0x3e, 0xf1, 0x21, 0x34, 0x13, 0xea, 0xf4, 0x5b, 0x34, 0xae, 0x97, 0xd0, - 0x33, 0x21, 0xa3, 0x91, 0x8e, 0x10, 0x0f, 0x40, 0xb3, 0xa5, 0x2b, 0x63, 0x39, 0xf6, 0x58, 0x91, - 0xb7, 0xd8, 0x51, 0xdc, 0x22, 0xe4, 0x5e, 0x64, 0xc8, 0x9f, 0x4c, 0x65, 0x14, 0x1b, 0x4d, 0x5b, - 0x21, 0x06, 0xdf, 0x85, 0x2b, 0x33, 0xcf, 0x91, 0xe7, 0xbf, 0x0e, 0xf3, 0xdf, 0xb5, 0x3c, 0xff, - 0x55, 0x73, 0x3c, 0xf7, 0x69, 0xb5, 0xd9, 0xec, 0x69, 0xfa, 0x7f, 0x55, 0xe0, 0x8a, 0x12, 0x85, - 0x13, 0x27, 0x38, 0x88, 0x95, 0x52, 0x22, 0x93, 0xa3, 0xb8, 0xb0, 0x6a, 0x24, 0xa0, 0xf8, 0x2d, - 0xa8, 0x93, 0x0e, 0x49, 0x44, 0x79, 0x29, 0x7b, 0xe2, 0x74, 0x3a, 0x8b, 0xb6, 0xe2, 0x0f, 0x35, - 0x5c, 0x7c, 0x13, 0x6a, 0x9f, 0xc9, 0xd0, 0x67, 0x13, 0xda, 0x5a, 0xbb, 0x39, 0x6f, 0x1e, 0x12, - 0x46, 0x4d, 0xe3, 0xc1, 0xff, 0x5b, 0x4e, 0x80, 0xaf, 0xc3, 0x09, 0xef, 0xa2, 0x19, 0x9d, 0xf8, - 0x67, 0xd2, 0xee, 0x37, 0xe8, 0x8c, 0x79, 0xf6, 0x4d, 0xba, 0x12, 0x66, 0x68, 0xce, 0x65, 0x06, - 0xed, 0xe5, 0xcc, 0x30, 0xd8, 0x82, 0x56, 0x8e, 0x2e, 0x73, 0x1e, 0x6a, 0xa9, 0xa8, 0x28, 0xb4, - 0x54, 0x49, 0xe6, 0xf5, 0xcd, 0x16, 0x40, 0x46, 0xa5, 0xdf, 0x54, 0x6b, 0xe9, 0x3f, 0x2b, 0xc1, - 0x95, 0x4d, 0xdf, 0xf3, 0x24, 0x39, 0xdb, 0xfc, 0xe6, 0x99, 0xf0, 0x96, 0x5e, 0x2a, 0xbc, 0x1f, - 0x40, 0x2d, 0xc2, 0xc1, 0x6a, 0xf5, 0xab, 0x73, 0x1e, 0xd1, 0xe0, 0x11, 0xa8, 0xc2, 0x27, 0xe6, - 0xf9, 0x38, 0x90, 0x9e, 0xed, 0x78, 0xc7, 0x89, 0x0a, 0x9f, 0x98, 0xe7, 0xcf, 0x18, 0xa3, 0xff, - 0x65, 0x19, 0xe0, 0x13, 0x69, 0xba, 0xf1, 0x09, 0x9a, 0x29, 0x7c, 0x51, 0xc7, 0x8b, 0x62, 0xd3, - 0xb3, 0x92, 0x50, 0x27, 0x85, 0xf1, 0x45, 0xd1, 0x5a, 0xcb, 0x88, 0x95, 0x9f, 0x66, 0x24, 0x20, - 0xf2, 0x07, 0x6e, 0x37, 0x8d, 0x94, 0x55, 0x57, 0x50, 0xe6, 0xa2, 0x54, 0x09, 0xad, 0x5c, 0x94, - 0x3e, 0x34, 0x30, 0x74, 0x70, 0x7c, 0x8f, 0x98, 0x46, 0x33, 0x12, 0x10, 0xd7, 0x99, 0x06, 0xb1, - 0x33, 0x61, 0xdb, 0x5d, 0x31, 0x14, 0x84, 0xa7, 0x42, 0x5b, 0x3d, 0xb4, 0x4e, 0x7c, 0x52, 0x11, - 0x15, 0x23, 0x85, 0x71, 0x35, 0xdf, 0x3b, 0xf6, 0xf1, 0x76, 0x4d, 0x72, 0x0b, 0x13, 0x90, 0xef, - 0x62, 0xcb, 0x73, 0xec, 0xd2, 0xa8, 0x2b, 0x85, 0x91, 0x2e, 0x52, 0x8e, 0x8f, 0xa4, 0x19, 0x4f, - 0x43, 0x19, 0xf5, 0x81, 0xba, 0x41, 0xca, 0x6d, 0x85, 0x11, 0xef, 0x40, 0x1b, 0x09, 0x67, 0x46, - 0x91, 0x73, 0xec, 0x49, 0x9b, 0x14, 0x47, 0xd5, 0x40, 0x62, 0xae, 0x2b, 0x94, 0xfe, 0xd7, 0x65, - 0xa8, 0xb3, 0xca, 0x2c, 0xb8, 0x41, 0xa5, 0xaf, 0xe4, 0x06, 0xbd, 0x05, 0x5a, 0x10, 0x4a, 0xdb, - 0xb1, 0x92, 0x77, 0xd4, 0x8c, 0x0c, 0x41, 0xf1, 0x09, 0xda, 0x7d, 0xa2, 0x67, 0xd3, 0x60, 0x40, - 0xe8, 0xd0, 0xf1, 0xbd, 0xb1, 0xed, 0x44, 0xa7, 0xe3, 0xc3, 0x8b, 0x58, 0x46, 0x8a, 0x16, 0x2d, - 0xdf, 0xdb, 0x72, 0xa2, 0xd3, 0x0d, 0x44, 0x21, 0x09, 0x59, 0x46, 0x48, 0x36, 0x9a, 0x86, 0x82, - 0xc4, 0x23, 0xd0, 0xc8, 0x3b, 0x25, 0xf7, 0x45, 0x23, 0xb7, 0xe3, 0xfa, 0x97, 0x9f, 0x2f, 0x09, - 0x44, 0xce, 0xf8, 0x2d, 0xcd, 0x04, 0x87, 0xfe, 0x17, 0x4e, 0x46, 0x43, 0x44, 0x32, 0xcc, 0xfe, - 0x17, 0xa2, 0x46, 0x51, 0xde, 0xff, 0x62, 0x8c, 0xb8, 0x07, 0x62, 0xea, 0x59, 0xfe, 0x24, 0x40, - 0xa6, 0x90, 0xb6, 0x3a, 0x64, 0x8b, 0x0e, 0xb9, 0x98, 0xef, 0xa1, 0xa3, 0xea, 0xff, 0x52, 0x86, - 0xf6, 0x96, 0x13, 0x4a, 0x2b, 0x96, 0xf6, 0xd0, 0x3e, 0x96, 0x78, 0x76, 0xe9, 0xc5, 0x4e, 0x7c, - 0xa1, 0x1c, 0x4c, 0x05, 0xa5, 0xf1, 0x41, 0xb9, 0x18, 0x2f, 0xb3, 0x84, 0x55, 0x28, 0xc4, 0x67, - 0x40, 0xac, 0x01, 0x70, 0xe4, 0x44, 0x61, 0x7e, 0xf5, 0xe5, 0x61, 0xbe, 0x46, 0xc3, 0xb0, 0x89, - 0x61, 0x34, 0xcf, 0x71, 0xd8, 0xcb, 0xac, 0x53, 0x0e, 0x60, 0x2a, 0xd9, 0x57, 0xa5, 0x80, 0xae, - 0xc1, 0x1b, 0x63, 0x5b, 0xdc, 0x82, 0xb2, 0x1f, 0x10, 0x71, 0xd5, 0xd2, 0xf9, 0x2b, 0xac, 0xee, - 0x07, 0x46, 0xd9, 0x0f, 0x50, 0x8a, 0x39, 0x7a, 0x25, 0xc6, 0x43, 0x29, 0x46, 0x8b, 0x46, 0xb1, - 0x94, 0xa1, 0x7a, 0x84, 0x0e, 0x6d, 0xd3, 0x75, 0xfd, 0x9f, 0x4a, 0xfb, 0x59, 0x28, 0xed, 0x84, - 0x07, 0x0b, 0x38, 0xe4, 0x12, 0xcf, 0x9c, 0xc8, 0x28, 0x30, 0x2d, 0xa9, 0x58, 0x30, 0x43, 0xe8, - 0xd7, 0xa1, 0xbc, 0x1f, 0x88, 0x06, 0x54, 0x0e, 0x86, 0xa3, 0xde, 0x02, 0x36, 0xb6, 0x86, 0xbb, - 0x3d, 0xb4, 0x28, 0xf5, 0x5e, 0x43, 0xff, 0xa2, 0x0c, 0xda, 0xd3, 0x69, 0x6c, 0xa2, 0x6e, 0x89, - 0xf0, 0x96, 0x45, 0x0e, 0xcd, 0x58, 0xf1, 0x1b, 0xd0, 0x8c, 0x62, 0x33, 0x24, 0x7f, 0x83, 0xad, - 0x53, 0x83, 0xe0, 0x51, 0x24, 0xde, 0x83, 0x9a, 0xb4, 0x8f, 0x65, 0x62, 0x2e, 0x7a, 0xb3, 0xf7, - 0x35, 0xb8, 0x5b, 0xac, 0x40, 0x3d, 0xb2, 0x4e, 0xe4, 0xc4, 0xec, 0x57, 0xb3, 0x81, 0x07, 0x84, - 0x61, 0x07, 0xdb, 0x50, 0xfd, 0xe2, 0x5d, 0xa8, 0xe1, 0xdb, 0x44, 0x2a, 0x62, 0xa4, 0x18, 0x13, - 0x9f, 0x41, 0x0d, 0xe3, 0x4e, 0x64, 0x3c, 0x3b, 0xf4, 0x83, 0xb1, 0x1f, 0x10, 0xed, 0xbb, 0x6b, - 0xd7, 0x48, 0xc7, 0x25, 0xb7, 0x59, 0xdd, 0x0a, 0xfd, 0x60, 0x3f, 0x30, 0xea, 0x36, 0xfd, 0x62, - 0xfc, 0x42, 0xc3, 0x99, 0x23, 0xd8, 0x28, 0x68, 0x88, 0xe1, 0x64, 0xd0, 0x0a, 0x34, 0x27, 0x32, - 0x36, 0x6d, 0x33, 0x36, 0x95, 0x6d, 0x68, 0xb3, 0xca, 0x64, 0x9c, 0x91, 0xf6, 0xea, 0xf7, 0xa1, - 0xce, 0x4b, 0x8b, 0x26, 0x54, 0xf7, 0xf6, 0xf7, 0x86, 0x4c, 0xd6, 0xf5, 0xdd, 0xdd, 0x5e, 0x09, - 0x51, 0x5b, 0xeb, 0xa3, 0xf5, 0x5e, 0x19, 0x5b, 0xa3, 0x1f, 0x3e, 0x1b, 0xf6, 0x2a, 0xfa, 0xdf, - 0x97, 0xa0, 0x99, 0xac, 0x23, 0x3e, 0x06, 0x40, 0x11, 0x1e, 0x9f, 0x38, 0x5e, 0xea, 0xba, 0xdd, - 0xc8, 0xef, 0xb4, 0x8a, 0xaf, 0xfa, 0x09, 0xf6, 0xb2, 0x79, 0x25, 0x89, 0x27, 0x78, 0x70, 0x00, - 0xdd, 0x62, 0xe7, 0x1c, 0x1f, 0xf6, 0x6e, 0xde, 0xaa, 0x74, 0xd7, 0xde, 0x28, 0x2c, 0x8d, 0x33, - 0x89, 0xb5, 0x73, 0x06, 0xe6, 0x1e, 0x34, 0x13, 0xb4, 0x68, 0x41, 0x63, 0x6b, 0xb8, 0xbd, 0xfe, - 0x7c, 0x17, 0x59, 0x05, 0xa0, 0x7e, 0xb0, 0xb3, 0xf7, 0x78, 0x77, 0xc8, 0xd7, 0xda, 0xdd, 0x39, - 0x18, 0xf5, 0xca, 0xfa, 0x1f, 0x94, 0xa0, 0x99, 0x78, 0x32, 0xe2, 0x03, 0x74, 0x3e, 0xc8, 0xfd, - 0x52, 0x96, 0x88, 0x72, 0x3a, 0xb9, 0x80, 0xd4, 0x48, 0xfa, 0x51, 0x16, 0x49, 0xb1, 0x26, 0xbe, - 0x0d, 0x01, 0xf9, 0x78, 0xb8, 0x52, 0x48, 0xc9, 0x60, 0x68, 0xef, 0x7b, 0x52, 0xb9, 0xc2, 0xd4, - 0x26, 0x1e, 0x74, 0x3c, 0x4b, 0x66, 0x81, 0x42, 0x83, 0xe0, 0x51, 0xa4, 0xc7, 0xec, 0x21, 0xa7, - 0x07, 0x4b, 0x77, 0x2b, 0xe5, 0x77, 0xbb, 0x14, 0x6e, 0x94, 0x2f, 0x87, 0x1b, 0x99, 0xe1, 0xac, - 0xbd, 0xce, 0x70, 0xea, 0x7f, 0x56, 0x85, 0xae, 0x21, 0xa3, 0xd8, 0x0f, 0xa5, 0xf2, 0xf8, 0x5e, - 0x25, 0x42, 0x6f, 0x03, 0x84, 0x3c, 0x38, 0xdb, 0x5a, 0x53, 0x18, 0x8e, 0x93, 0x5c, 0xdf, 0x22, - 0xde, 0x55, 0x16, 0x32, 0x85, 0xc5, 0x0d, 0xd0, 0x0e, 0x4d, 0xeb, 0x94, 0x97, 0x65, 0x3b, 0xd9, - 0x64, 0x04, 0xaf, 0x6b, 0x5a, 0x96, 0x8c, 0xa2, 0x31, 0xb2, 0x02, 0x5b, 0x4b, 0x8d, 0x31, 0x4f, - 0xe4, 0x05, 0x76, 0x47, 0xd2, 0x0a, 0x65, 0x4c, 0xdd, 0x75, 0xee, 0x66, 0x0c, 0x76, 0xdf, 0x82, - 0x4e, 0x24, 0x23, 0xb4, 0xac, 0xe3, 0xd8, 0x3f, 0x95, 0x9e, 0xd2, 0x63, 0x6d, 0x85, 0x1c, 0x21, - 0x0e, 0x55, 0x8c, 0xe9, 0xf9, 0xde, 0xc5, 0xc4, 0x9f, 0x46, 0xca, 0x66, 0x64, 0x08, 0xb1, 0x0a, - 0x57, 0xa5, 0x67, 0x85, 0x17, 0x01, 0x9e, 0x15, 0x77, 0x19, 0x1f, 0x39, 0xae, 0x54, 0x4e, 0xf8, - 0x62, 0xd6, 0xf5, 0x44, 0x5e, 0x6c, 0x3b, 0xae, 0xc4, 0x13, 0x9d, 0x99, 0x53, 0x37, 0x1e, 0x53, - 0x8c, 0x0f, 0x7c, 0x22, 0xc2, 0xac, 0x63, 0xa0, 0x7f, 0x07, 0x16, 0xb9, 0x3b, 0xf4, 0x5d, 0xe9, - 0xd8, 0xbc, 0x58, 0x8b, 0x46, 0x5d, 0xa1, 0x0e, 0x83, 0xf0, 0xb4, 0xd4, 0x2a, 0x5c, 0xe5, 0xb1, - 0x7c, 0xa1, 0x64, 0x74, 0x9b, 0xb7, 0xa6, 0xae, 0x03, 0xd5, 0x53, 0xdc, 0x3a, 0x30, 0xe3, 0x13, - 0xf2, 0xdc, 0x93, 0xad, 0x9f, 0x99, 0xf1, 0x09, 0x5a, 0x7c, 0xee, 0x3e, 0x72, 0xa4, 0xcb, 0x91, - 0xb7, 0x66, 0xf0, 0x8c, 0x6d, 0xc4, 0xa0, 0xc5, 0x57, 0x03, 0xfc, 0x70, 0x62, 0x72, 0x6a, 0x50, - 0x33, 0x78, 0xd2, 0x36, 0xa1, 0x70, 0x0b, 0xf5, 0x56, 0xde, 0x74, 0xd2, 0xef, 0xf1, 0x33, 0x33, - 0x66, 0x6f, 0x3a, 0xd1, 0xff, 0xa1, 0x02, 0xcd, 0x34, 0x90, 0xbb, 0x0b, 0xda, 0x24, 0xd1, 0x57, - 0xca, 0x51, 0xeb, 0x14, 0x94, 0x98, 0x91, 0xf5, 0x8b, 0xb7, 0xa1, 0x7c, 0x7a, 0xa6, 0x74, 0x67, - 0x67, 0x95, 0x53, 0xe5, 0xc1, 0xe1, 0xa3, 0xd5, 0x27, 0x2f, 0x8c, 0xf2, 0xe9, 0xd9, 0xd7, 0xe0, - 0x5b, 0xf1, 0x3e, 0x5c, 0xb1, 0x5c, 0x69, 0x7a, 0xe3, 0xcc, 0xbb, 0x60, 0xbe, 0xe8, 0x12, 0xfa, - 0x59, 0xea, 0x62, 0xdc, 0x86, 0x9a, 0x2d, 0xdd, 0xd8, 0xcc, 0x67, 0x6c, 0xf7, 0x43, 0xd3, 0x72, - 0xe5, 0x16, 0xa2, 0x0d, 0xee, 0x45, 0xdd, 0x99, 0x06, 0x4f, 0x39, 0xdd, 0x39, 0x27, 0x70, 0x4a, - 0xe5, 0x12, 0xf2, 0x72, 0x79, 0x17, 0x16, 0xe5, 0x79, 0x40, 0x06, 0x63, 0x9c, 0xe6, 0x0a, 0xd8, - 0x92, 0xf5, 0x92, 0x8e, 0xcd, 0x24, 0x67, 0xf0, 0x21, 0xaa, 0x0c, 0x12, 0x1a, 0x7a, 0xe6, 0xd6, - 0x9a, 0x20, 0x9d, 0x53, 0x10, 0x43, 0x23, 0x19, 0x22, 0x3e, 0x00, 0xcd, 0xb2, 0xad, 0x31, 0x53, - 0xa6, 0x93, 0x9d, 0x6d, 0x73, 0x6b, 0x93, 0x49, 0xd2, 0xb4, 0x6c, 0x8b, 0xbd, 0xea, 0x42, 0x50, - 0xd7, 0xfd, 0x0a, 0x41, 0xdd, 0xa7, 0xd5, 0x66, 0xa3, 0xd7, 0xd4, 0x6f, 0x41, 0x33, 0x59, 0x0d, - 0xf5, 0x59, 0x24, 0x3d, 0x15, 0x95, 0x93, 0x3e, 0x43, 0x70, 0x14, 0xe9, 0x16, 0x54, 0x9e, 0xbc, - 0x38, 0x20, 0xb5, 0x86, 0x16, 0xa6, 0x46, 0x0e, 0x09, 0xb5, 0x53, 0x55, 0x57, 0xce, 0xa9, 0xba, - 0x9b, 0x6c, 0x25, 0xe8, 0x15, 0x92, 0x54, 0x66, 0x0e, 0x83, 0x74, 0x64, 0x0b, 0x59, 0xe5, 0x2c, - 0x27, 0x01, 0xfa, 0x7f, 0x54, 0xa0, 0xa1, 0x9c, 0x18, 0xb4, 0x0c, 0xd3, 0x34, 0x0b, 0x87, 0xcd, - 0x62, 0x74, 0x99, 0x7a, 0x43, 0xf9, 0x92, 0x47, 0xe5, 0xf5, 0x25, 0x0f, 0xf1, 0x31, 0xb4, 0x03, - 0xee, 0xcb, 0xfb, 0x4f, 0x6f, 0xe6, 0xe7, 0xa8, 0x5f, 0x9a, 0xd7, 0x0a, 0x32, 0x00, 0x95, 0x23, - 0xe5, 0x83, 0x63, 0xf3, 0x58, 0x51, 0xa0, 0x81, 0xf0, 0xc8, 0x3c, 0xfe, 0x4a, 0xce, 0x50, 0x97, - 0xbc, 0xaa, 0x36, 0x69, 0x55, 0x74, 0xa0, 0xf2, 0x3e, 0x49, 0xa7, 0xe8, 0x93, 0xdc, 0x00, 0xcd, - 0xf2, 0x27, 0x13, 0x87, 0xfa, 0xba, 0x2a, 0xeb, 0x44, 0x88, 0x51, 0xa4, 0xff, 0xbc, 0x04, 0x0d, - 0x75, 0xaf, 0x4b, 0x16, 0x6f, 0x63, 0x67, 0x6f, 0xdd, 0xf8, 0x61, 0xaf, 0x84, 0x16, 0x7d, 0x67, - 0x6f, 0xd4, 0x2b, 0x0b, 0x0d, 0x6a, 0xdb, 0xbb, 0xfb, 0xeb, 0xa3, 0x5e, 0x05, 0xad, 0xe0, 0xc6, - 0xfe, 0xfe, 0x6e, 0xaf, 0x2a, 0xda, 0xd0, 0xdc, 0x5a, 0x1f, 0x0d, 0x47, 0x3b, 0x4f, 0x87, 0xbd, - 0x1a, 0x8e, 0x7d, 0x3c, 0xdc, 0xef, 0xd5, 0xb1, 0xf1, 0x7c, 0x67, 0xab, 0xd7, 0xc0, 0xfe, 0x67, - 0xeb, 0x07, 0x07, 0xdf, 0xdf, 0x37, 0xb6, 0x7a, 0x4d, 0xb2, 0xa4, 0x23, 0x63, 0x67, 0xef, 0x71, - 0x4f, 0xc3, 0xf6, 0xfe, 0xc6, 0xa7, 0xc3, 0xcd, 0x51, 0x0f, 0xf4, 0x87, 0xd0, 0xca, 0xd1, 0x0a, - 0x67, 0x1b, 0xc3, 0xed, 0xde, 0x02, 0x6e, 0xf9, 0x62, 0x7d, 0xf7, 0x39, 0x1a, 0xde, 0x2e, 0x00, - 0x35, 0xc7, 0xbb, 0xeb, 0x7b, 0x8f, 0x7b, 0x65, 0xe5, 0xb6, 0x7d, 0x0f, 0x9a, 0xcf, 0x1d, 0x7b, - 0xc3, 0xf5, 0xad, 0x53, 0x64, 0x9f, 0x43, 0x33, 0x92, 0x8a, 0xdf, 0xa8, 0x8d, 0x4e, 0x32, 0x49, - 0x66, 0xa4, 0xde, 0x5a, 0x41, 0x48, 0x31, 0x6f, 0x3a, 0x19, 0x53, 0x59, 0xac, 0xc2, 0xd6, 0xc9, - 0x9b, 0x4e, 0x9e, 0x3b, 0x76, 0xa4, 0x9f, 0x42, 0xe3, 0xb9, 0x63, 0x3f, 0x33, 0xad, 0x53, 0xd2, - 0x60, 0xb8, 0xf4, 0x38, 0x72, 0x3e, 0x93, 0xca, 0x8a, 0x69, 0x84, 0x39, 0x70, 0x3e, 0x93, 0xe2, - 0x5d, 0xa8, 0x13, 0x90, 0xe4, 0x15, 0x48, 0x9e, 0x92, 0xe3, 0x18, 0xaa, 0x8f, 0xaa, 0x52, 0xae, - 0xeb, 0x5b, 0xe3, 0x50, 0x1e, 0xf5, 0xdf, 0xe4, 0x17, 0x20, 0x84, 0x21, 0x8f, 0xf4, 0xdf, 0x2f, - 0xa5, 0x37, 0xa7, 0xa2, 0xc8, 0x12, 0x54, 0x03, 0xd3, 0x3a, 0x55, 0x4e, 0x44, 0x4b, 0x2d, 0x88, - 0x87, 0x31, 0xa8, 0x43, 0xbc, 0x0f, 0x4d, 0xc5, 0x48, 0xc9, 0xae, 0xad, 0x1c, 0xc7, 0x19, 0x69, - 0x67, 0xf1, 0xe1, 0x2b, 0xc5, 0x87, 0xa7, 0x10, 0x34, 0x70, 0x9d, 0x98, 0xc5, 0x06, 0x85, 0x93, - 0x20, 0xfd, 0x9b, 0x00, 0x59, 0x1d, 0x6a, 0x8e, 0x4f, 0x75, 0x0d, 0x6a, 0xa6, 0xeb, 0x98, 0x49, - 0x48, 0xcb, 0x80, 0xbe, 0x07, 0xad, 0x5c, 0xf5, 0x0a, 0x69, 0x6b, 0xba, 0x2e, 0x9a, 0x3f, 0x96, - 0xfd, 0xa6, 0xd1, 0x30, 0x5d, 0xf7, 0x89, 0xbc, 0x88, 0xd0, 0x9f, 0xe5, 0xc2, 0x57, 0x79, 0xa6, - 0x66, 0x42, 0x53, 0x0d, 0xee, 0xd4, 0x3f, 0x84, 0xfa, 0x76, 0xe2, 0xf5, 0x27, 0xc2, 0x50, 0x7a, - 0x99, 0x30, 0xe8, 0x1f, 0xa9, 0x33, 0x53, 0xd9, 0x45, 0xdc, 0x55, 0x05, 0xb6, 0x88, 0xcb, 0x79, - 0xa5, 0x2c, 0x29, 0xc2, 0x83, 0x54, 0x6d, 0x8d, 0x06, 0xeb, 0x5b, 0xd0, 0x7c, 0x65, 0xc9, 0x52, - 0x11, 0xa0, 0x9c, 0x11, 0x60, 0x4e, 0x11, 0x53, 0xff, 0x31, 0x40, 0x56, 0x88, 0x53, 0xb2, 0xc9, - 0xab, 0xa0, 0x6c, 0xde, 0x81, 0xa6, 0x75, 0xe2, 0xb8, 0x76, 0x28, 0xbd, 0xc2, 0xad, 0xb3, 0xd2, - 0x5d, 0xda, 0x2f, 0x96, 0xa1, 0x4a, 0xf5, 0xc5, 0x4a, 0xa6, 0x9e, 0xd3, 0xe2, 0x22, 0xf5, 0xe8, - 0xe7, 0xd0, 0xe1, 0x40, 0xe1, 0x2b, 0xb8, 0x59, 0x45, 0xd5, 0x59, 0xbe, 0xa4, 0x3a, 0xaf, 0x43, - 0x9d, 0xac, 0x7b, 0x72, 0x1b, 0x05, 0xbd, 0x44, 0xa5, 0xfe, 0x5e, 0x19, 0x80, 0xb7, 0xde, 0xf3, - 0x6d, 0x59, 0x8c, 0xc8, 0x4b, 0xb3, 0x11, 0xb9, 0x80, 0x6a, 0x5a, 0x3a, 0xd6, 0x0c, 0x6a, 0x67, - 0x16, 0x4f, 0x45, 0xe9, 0x6c, 0xf1, 0xde, 0x02, 0x8d, 0xbc, 0x2d, 0xe7, 0x33, 0xaa, 0x67, 0xe0, - 0x86, 0x19, 0x22, 0x5f, 0x48, 0xad, 0x15, 0x0b, 0xa9, 0x69, 0xb5, 0xa9, 0xce, 0xab, 0x71, 0xb5, - 0x69, 0x4e, 0xe1, 0x8c, 0xd3, 0x24, 0x91, 0x0c, 0xe3, 0x24, 0xc6, 0x67, 0x28, 0x0d, 0x57, 0x35, - 0x35, 0xd6, 0xe4, 0x44, 0x87, 0xe7, 0x8f, 0x2d, 0xdf, 0x3b, 0x72, 0x1d, 0x2b, 0x56, 0x85, 0x53, - 0xf0, 0xfc, 0x4d, 0x85, 0xd1, 0x3f, 0x86, 0x76, 0x42, 0x7f, 0xaa, 0x4f, 0xdd, 0x49, 0x43, 0xb9, - 0x52, 0xf6, 0xb6, 0x19, 0x99, 0x36, 0xca, 0xfd, 0x52, 0x12, 0xcc, 0xe9, 0xff, 0x5d, 0x49, 0x26, - 0xab, 0x32, 0xca, 0xab, 0x69, 0x58, 0x8c, 0xce, 0xcb, 0x5f, 0x29, 0x3a, 0xff, 0x36, 0x68, 0x36, - 0x05, 0x9c, 0xce, 0x59, 0x62, 0xc4, 0x06, 0xb3, 0xc1, 0xa5, 0x0a, 0x49, 0x9d, 0x33, 0x69, 0x64, - 0x83, 0x5f, 0xf3, 0x0e, 0x29, 0xb5, 0x6b, 0xf3, 0xa8, 0x5d, 0xff, 0x0d, 0xa9, 0xfd, 0x0e, 0xb4, - 0x3d, 0xdf, 0x1b, 0x7b, 0x53, 0xd7, 0x35, 0x0f, 0x5d, 0xa9, 0xc8, 0xdd, 0xf2, 0x7c, 0x6f, 0x4f, - 0xa1, 0xd0, 0x05, 0xce, 0x0f, 0x61, 0xa1, 0x6e, 0xd1, 0xb8, 0x2b, 0xb9, 0x71, 0x24, 0xfa, 0x2b, - 0xd0, 0xf3, 0x0f, 0x7f, 0x2c, 0xad, 0x98, 0x28, 0x36, 0x26, 0x69, 0x66, 0xff, 0xb7, 0xcb, 0x78, - 0x24, 0xd1, 0x1e, 0xca, 0xf5, 0xcc, 0x33, 0x77, 0x2e, 0x3d, 0xf3, 0x47, 0xa0, 0xa5, 0x54, 0xca, - 0x05, 0xb7, 0x1a, 0xd4, 0x76, 0xf6, 0xb6, 0x86, 0x3f, 0xe8, 0x95, 0xd0, 0x5c, 0x1a, 0xc3, 0x17, - 0x43, 0xe3, 0x60, 0xd8, 0x2b, 0xa3, 0x29, 0xdb, 0x1a, 0xee, 0x0e, 0x47, 0xc3, 0x5e, 0x85, 0x5d, - 0x21, 0xaa, 0x66, 0xb8, 0x8e, 0xe5, 0xc4, 0xfa, 0x01, 0x40, 0x16, 0xb1, 0xa3, 0x56, 0xce, 0x0e, - 0xa7, 0x52, 0x86, 0x71, 0x72, 0xac, 0x95, 0x54, 0x20, 0xcb, 0x2f, 0xcb, 0x0b, 0x70, 0xbf, 0xbe, - 0x06, 0xda, 0x53, 0x33, 0xf8, 0x84, 0xeb, 0x7e, 0xb7, 0xa1, 0x1b, 0x98, 0x61, 0xec, 0x24, 0x41, - 0x07, 0x2b, 0xcb, 0xb6, 0xd1, 0x49, 0xb1, 0xa8, 0x7b, 0xf5, 0x3f, 0x2f, 0xc1, 0xb5, 0xa7, 0xfe, - 0x99, 0x4c, 0x9d, 0xda, 0x67, 0xe6, 0x85, 0xeb, 0x9b, 0xf6, 0x6b, 0xd8, 0x10, 0xa3, 0x26, 0x7f, - 0x4a, 0x75, 0xb8, 0xa4, 0x6a, 0x69, 0x68, 0x8c, 0x79, 0xac, 0x3e, 0xab, 0x90, 0x51, 0x4c, 0x9d, - 0xca, 0x90, 0x22, 0x8c, 0x5d, 0x6f, 0x40, 0x3d, 0x3e, 0xf7, 0xb2, 0x1a, 0x6a, 0x2d, 0xa6, 0x54, - 0xf7, 0x5c, 0x1f, 0xb7, 0x36, 0xdf, 0xc7, 0xd5, 0x37, 0x41, 0x1b, 0x9d, 0x53, 0xb2, 0x77, 0x1a, - 0x15, 0xdc, 0x9c, 0xd2, 0x2b, 0xdc, 0x9c, 0xf2, 0x8c, 0x9b, 0xf3, 0xef, 0x25, 0x68, 0xe5, 0x9c, - 0x75, 0xf1, 0x0e, 0x54, 0xe3, 0x73, 0xaf, 0xf8, 0xa9, 0x42, 0xb2, 0x89, 0x41, 0x5d, 0x97, 0x12, - 0x9a, 0xe5, 0x4b, 0x09, 0x4d, 0xb1, 0x0b, 0x57, 0x58, 0xf3, 0x26, 0x97, 0x48, 0xf2, 0x3e, 0xb7, - 0x66, 0x82, 0x03, 0x4e, 0x88, 0x27, 0x57, 0x52, 0xc9, 0x8c, 0xee, 0x71, 0x01, 0x39, 0x58, 0x87, - 0xab, 0x73, 0x86, 0x7d, 0x9d, 0xd2, 0x88, 0xbe, 0x04, 0x9d, 0xd1, 0xb9, 0x37, 0x72, 0x26, 0x32, - 0x8a, 0xcd, 0x49, 0x40, 0x6e, 0xa2, 0xb2, 0x9c, 0x55, 0xa3, 0x1c, 0x47, 0xfa, 0x7b, 0xd0, 0x7e, - 0x26, 0x65, 0x68, 0xc8, 0x28, 0xf0, 0x3d, 0x76, 0x8e, 0x54, 0x22, 0x9a, 0xcd, 0xb4, 0x82, 0xf4, - 0xdf, 0x05, 0xcd, 0x30, 0x8f, 0xe2, 0x0d, 0x33, 0xb6, 0x4e, 0xbe, 0x4e, 0x66, 0xe3, 0x3d, 0x68, - 0x04, 0xcc, 0x53, 0x2a, 0x84, 0x6b, 0x93, 0xb9, 0x56, 0x7c, 0x66, 0x24, 0x9d, 0xfa, 0xef, 0xc0, - 0xd5, 0x83, 0xe9, 0x61, 0x64, 0x85, 0x0e, 0x45, 0xc3, 0x89, 0x29, 0x1b, 0x40, 0x33, 0x08, 0xe5, - 0x91, 0x73, 0x2e, 0x13, 0x0e, 0x4e, 0x61, 0x71, 0x07, 0x1a, 0x13, 0x3c, 0x8e, 0xcc, 0x64, 0x23, - 0x8b, 0xfb, 0x9e, 0x62, 0x8f, 0x91, 0x0c, 0xd0, 0xbf, 0x03, 0xd7, 0x8a, 0xcb, 0xab, 0xeb, 0xde, - 0x82, 0xca, 0xe9, 0x59, 0xa4, 0x6e, 0xb1, 0x58, 0x88, 0x1b, 0xe9, 0x6b, 0x02, 0xec, 0xd5, 0xff, - 0xaa, 0x04, 0x95, 0xbd, 0xe9, 0x24, 0xff, 0x49, 0x54, 0x95, 0x3f, 0x89, 0xba, 0x91, 0xcf, 0x09, - 0x73, 0x88, 0x92, 0xe5, 0x7e, 0xdf, 0x02, 0xed, 0xc8, 0x0f, 0x7f, 0x6a, 0x86, 0xb6, 0xb4, 0x95, - 0x81, 0xcb, 0x10, 0xe4, 0x99, 0x4e, 0x27, 0x81, 0xd2, 0x9e, 0xd4, 0x16, 0xb7, 0x95, 0x89, 0xe4, - 0xb0, 0x61, 0x11, 0x89, 0xba, 0x37, 0x9d, 0xac, 0xba, 0xd2, 0x8c, 0x48, 0x97, 0xb3, 0xd5, 0xd4, - 0xef, 0x82, 0x96, 0xa2, 0x50, 0xff, 0xec, 0x1d, 0x8c, 0x77, 0xb6, 0x38, 0xcf, 0x86, 0x0e, 0x76, - 0x09, 0x75, 0xcf, 0xe8, 0x07, 0x7b, 0xe3, 0xd1, 0x41, 0xaf, 0xac, 0xff, 0x08, 0x5a, 0x09, 0x7b, - 0xee, 0xd8, 0x54, 0x54, 0x22, 0xf9, 0xd8, 0xb1, 0x0b, 0xe2, 0xb2, 0x43, 0x11, 0x90, 0xf4, 0xec, - 0x9d, 0x84, 0xaf, 0x19, 0x28, 0xde, 0x50, 0x55, 0xa8, 0x92, 0x1b, 0xea, 0x43, 0x58, 0x34, 0x28, - 0x39, 0x8e, 0x76, 0x2d, 0x79, 0xb2, 0xeb, 0x50, 0xf7, 0x7c, 0x5b, 0xa6, 0x1b, 0x28, 0x08, 0x77, - 0x56, 0x5e, 0x88, 0xd2, 0x18, 0x09, 0xa8, 0x4b, 0x58, 0x44, 0x25, 0xa4, 0x8a, 0xa7, 0x6a, 0x99, - 0x42, 0xe2, 0xb6, 0x34, 0x93, 0xb8, 0xc5, 0x4d, 0x54, 0xf5, 0x95, 0xdd, 0x89, 0xa4, 0xe2, 0x3a, - 0x80, 0xa6, 0x1d, 0xc5, 0x24, 0x35, 0x4a, 0xf5, 0xa4, 0xb0, 0x7e, 0x1f, 0xae, 0xae, 0x07, 0x81, - 0x7b, 0x91, 0x54, 0xb4, 0xd4, 0x46, 0xfd, 0xac, 0xec, 0x55, 0x52, 0x61, 0x17, 0x83, 0xfa, 0x36, - 0xb4, 0x93, 0x28, 0xfd, 0xa9, 0x8c, 0x4d, 0x52, 0x28, 0xae, 0x53, 0x88, 0x60, 0x9b, 0x8c, 0x18, - 0x15, 0xd3, 0xc3, 0x33, 0xf7, 0x5b, 0x85, 0xba, 0xd2, 0x56, 0x02, 0xaa, 0x96, 0x6f, 0xf3, 0x46, - 0x35, 0x83, 0xda, 0xc8, 0x55, 0x93, 0xe8, 0x38, 0x71, 0x28, 0x27, 0xd1, 0xb1, 0xfe, 0x4f, 0x65, - 0xe8, 0x6c, 0x50, 0x4e, 0x24, 0x39, 0x63, 0x2e, 0x13, 0x58, 0x2a, 0x64, 0x02, 0xf3, 0x59, 0xbf, - 0x72, 0x21, 0xeb, 0x57, 0x38, 0x50, 0xa5, 0xe8, 0x05, 0xbe, 0x09, 0x8d, 0xa9, 0xe7, 0x9c, 0x27, - 0x6a, 0x58, 0x33, 0xea, 0x08, 0x8e, 0x22, 0xb1, 0x0c, 0x2d, 0xd4, 0xd4, 0x8e, 0xc7, 0x99, 0x36, - 0x4e, 0x97, 0xe5, 0x51, 0x33, 0xf9, 0xb4, 0xfa, 0xab, 0xf3, 0x69, 0x8d, 0xd7, 0xe6, 0xd3, 0x9a, - 0xaf, 0xcb, 0xa7, 0x69, 0xb3, 0xf9, 0xb4, 0xa2, 0x07, 0x0b, 0x97, 0x3c, 0xd8, 0xb7, 0x01, 0xf8, - 0x13, 0x91, 0xa3, 0xa9, 0xeb, 0x2a, 0xb7, 0x40, 0x23, 0xcc, 0xf6, 0xd4, 0x75, 0xf5, 0x5d, 0xe8, - 0x26, 0xa4, 0x55, 0x2a, 0xe0, 0x63, 0xb8, 0xa2, 0x32, 0xe5, 0x32, 0x54, 0xc9, 0x26, 0x36, 0x02, - 0x24, 0x7f, 0x9c, 0xcc, 0x56, 0x3d, 0x46, 0xd7, 0xce, 0x83, 0x91, 0xfe, 0xcb, 0x12, 0x74, 0x0a, - 0x23, 0xc4, 0xc3, 0x2c, 0xef, 0x5e, 0x22, 0x29, 0xee, 0x5f, 0x5a, 0xe5, 0xd5, 0xb9, 0xf7, 0xf2, - 0x4c, 0xee, 0x5d, 0xbf, 0x97, 0x66, 0xd4, 0x55, 0x1e, 0x7d, 0x21, 0xcd, 0xa3, 0x53, 0xea, 0x79, - 0x7d, 0x34, 0x32, 0x7a, 0x65, 0x51, 0x87, 0xf2, 0xde, 0x41, 0xaf, 0xa2, 0xff, 0x45, 0x19, 0x3a, - 0xc3, 0xf3, 0x80, 0x3e, 0x97, 0x7a, 0x6d, 0x38, 0x90, 0xe3, 0xab, 0x72, 0x81, 0xaf, 0x72, 0x1c, - 0x52, 0x51, 0x85, 0x44, 0xe6, 0x10, 0x0c, 0x10, 0x38, 0xbb, 0xa7, 0x38, 0x87, 0xa1, 0xff, 0x0f, - 0x9c, 0x53, 0xd0, 0x28, 0x30, 0x5b, 0x0a, 0xda, 0x85, 0x6e, 0x42, 0x36, 0xc5, 0x18, 0x5f, 0x49, - 0x58, 0xf9, 0x43, 0x48, 0x37, 0xcd, 0x43, 0x31, 0xa0, 0xff, 0x69, 0x19, 0x34, 0xe6, 0x33, 0x3c, - 0xfc, 0x07, 0x4a, 0xaf, 0x97, 0xb2, 0xaa, 0x43, 0xda, 0xb9, 0xfa, 0x44, 0x5e, 0x64, 0xba, 0x7d, - 0x6e, 0xa5, 0x4e, 0x65, 0xab, 0x38, 0x60, 0xa7, 0x6c, 0xd5, 0x0d, 0xd0, 0xd8, 0xeb, 0x99, 0xaa, - 0x94, 0x77, 0xd5, 0x60, 0x37, 0xe8, 0xb9, 0x43, 0x96, 0x25, 0x96, 0xe1, 0x44, 0xbd, 0x01, 0xb5, - 0x8b, 0xa1, 0x51, 0x27, 0x71, 0xd6, 0x0b, 0x14, 0x69, 0xcc, 0x52, 0xe4, 0x04, 0x1a, 0xea, 0x6c, - 0xe8, 0xd9, 0x3e, 0xdf, 0x7b, 0xb2, 0xb7, 0xff, 0xfd, 0xbd, 0x02, 0xf7, 0xa5, 0xbe, 0x6f, 0x39, - 0xef, 0xfb, 0x56, 0x10, 0xbf, 0xb9, 0xff, 0x7c, 0x6f, 0xd4, 0xab, 0x8a, 0x0e, 0x68, 0xd4, 0x1c, - 0x1b, 0xc3, 0x17, 0xbd, 0x1a, 0x25, 0x7b, 0x36, 0x3f, 0x19, 0x3e, 0x5d, 0xef, 0xd5, 0xd3, 0x1a, - 0x50, 0x43, 0xff, 0x93, 0x12, 0x2c, 0x32, 0x41, 0xf2, 0x79, 0x8f, 0xfc, 0x27, 0xca, 0x55, 0xfe, - 0x44, 0xf9, 0xff, 0x36, 0xd5, 0x81, 0x93, 0xa6, 0x4e, 0x52, 0x75, 0xe5, 0x1c, 0x5c, 0x73, 0xea, - 0xa8, 0x62, 0xeb, 0xdf, 0x96, 0x60, 0xc0, 0x2e, 0xf7, 0xe3, 0xd0, 0x0c, 0x4e, 0xbe, 0xb7, 0x7b, - 0x29, 0xe8, 0x7e, 0x99, 0x23, 0x7a, 0x1b, 0xba, 0xf4, 0x11, 0xf7, 0x4f, 0xdc, 0xb1, 0x0a, 0x0c, - 0xf9, 0x75, 0x3b, 0x0a, 0xcb, 0x0b, 0x89, 0x47, 0xd0, 0xe6, 0x8f, 0xbd, 0x29, 0xf3, 0x5c, 0xa8, - 0x18, 0x16, 0x1c, 0xfe, 0x16, 0x8f, 0xe2, 0xfa, 0xe6, 0xc3, 0x74, 0x52, 0x16, 0x9f, 0x5f, 0x2e, - 0x0a, 0xaa, 0x29, 0x23, 0x8a, 0xda, 0xef, 0xc3, 0x8d, 0xb9, 0xf7, 0x50, 0x6c, 0x9f, 0xcb, 0x8d, - 0x32, 0xb7, 0xe9, 0xff, 0x5c, 0x82, 0xe6, 0xc6, 0xd4, 0x3d, 0x25, 0x23, 0xf8, 0x36, 0x80, 0xb4, - 0x8f, 0xa5, 0xfa, 0x6a, 0xba, 0x44, 0xca, 0x41, 0x43, 0x0c, 0x7f, 0x37, 0xfd, 0x31, 0x00, 0xdf, - 0x71, 0x3c, 0x31, 0x03, 0xf5, 0x44, 0x54, 0xc1, 0x4b, 0x16, 0x50, 0x77, 0x79, 0x6a, 0x06, 0xaa, - 0x82, 0x17, 0x25, 0x70, 0x56, 0xd9, 0xac, 0xbc, 0xa2, 0xb2, 0x39, 0xd8, 0x83, 0x6e, 0x71, 0x89, - 0x39, 0x39, 0xa9, 0xf7, 0x8a, 0x5f, 0x8f, 0x5c, 0xa6, 0x61, 0xce, 0x45, 0xfe, 0x14, 0xae, 0xcc, - 0x24, 0xb1, 0x5f, 0xa5, 0x31, 0x0b, 0x22, 0x53, 0x9e, 0x15, 0x99, 0x0f, 0x61, 0x71, 0x64, 0x46, - 0xa7, 0x2a, 0x6c, 0xc8, 0x8c, 0x77, 0x6c, 0x46, 0xa7, 0xe3, 0x94, 0xa8, 0x75, 0x04, 0x77, 0x6c, - 0xfd, 0x21, 0x88, 0xfc, 0x68, 0x45, 0x7f, 0x0c, 0x07, 0x71, 0xf8, 0x44, 0xc6, 0x66, 0xe2, 0x65, - 0x20, 0x02, 0x89, 0xb7, 0xf6, 0x37, 0x25, 0xa8, 0xa2, 0x9f, 0x2d, 0xee, 0x81, 0xf6, 0x89, 0x34, - 0xc3, 0xf8, 0x50, 0x9a, 0xb1, 0x28, 0xf8, 0xd4, 0x03, 0xa2, 0x5b, 0xf6, 0x45, 0x8a, 0xbe, 0xf0, - 0xa0, 0x24, 0x56, 0xf9, 0x4b, 0xd8, 0xe4, 0x0b, 0xdf, 0x4e, 0xe2, 0xaf, 0x93, 0x3f, 0x3f, 0x28, - 0xcc, 0xd7, 0x17, 0x56, 0x68, 0xfc, 0xa7, 0xbe, 0xe3, 0x6d, 0xf2, 0xf7, 0x97, 0x62, 0xd6, 0xbf, - 0x9f, 0x9d, 0x21, 0xee, 0x41, 0x7d, 0x27, 0xc2, 0x40, 0xe2, 0xf2, 0x50, 0x22, 0x7e, 0x3e, 0xc6, - 0xd0, 0x17, 0xd6, 0x7e, 0x56, 0x83, 0xea, 0x8f, 0x64, 0xe8, 0x8b, 0x0f, 0xa1, 0xa1, 0xbe, 0xdf, - 0x11, 0xb9, 0xef, 0x74, 0x06, 0x94, 0xd3, 0x98, 0xf9, 0xb0, 0x87, 0x76, 0xe9, 0xf1, 0xfb, 0x65, - 0xa5, 0x1b, 0x91, 0x7d, 0x5e, 0x74, 0xe9, 0x50, 0x1f, 0x41, 0xef, 0x20, 0x0e, 0xa5, 0x39, 0xc9, - 0x0d, 0x2f, 0x92, 0x6a, 0x5e, 0x1d, 0x88, 0xe8, 0x75, 0x17, 0xea, 0x1c, 0xad, 0xcd, 0x4c, 0x98, - 0x2d, 0xf2, 0xd0, 0xe0, 0xf7, 0xa1, 0x75, 0x70, 0xe2, 0x4f, 0x5d, 0xfb, 0x40, 0x86, 0x67, 0x52, - 0xe4, 0xbe, 0x04, 0x1c, 0xe4, 0xda, 0xfa, 0x82, 0x78, 0x1f, 0x34, 0xf6, 0xc5, 0xd1, 0x13, 0x6f, - 0x28, 0xf7, 0x9e, 0xd7, 0xcc, 0xf9, 0xe8, 0xfa, 0x82, 0x58, 0x01, 0xc8, 0xc5, 0x6c, 0xaf, 0x1a, - 0xf9, 0x08, 0x3a, 0x9b, 0xa4, 0xd6, 0xf6, 0xc3, 0xf5, 0x43, 0x3f, 0x8c, 0xc5, 0xec, 0xa7, 0x7f, - 0x83, 0x59, 0x84, 0xbe, 0x20, 0x1e, 0x40, 0x73, 0x14, 0x5e, 0xf0, 0xf8, 0x45, 0x15, 0xea, 0x66, - 0xfb, 0xcd, 0xb9, 0xa4, 0xf8, 0x66, 0x2a, 0x24, 0xa9, 0x0b, 0x3e, 0xaf, 0xfc, 0xc3, 0xf7, 0x65, - 0x86, 0xd6, 0x17, 0xc4, 0x43, 0x80, 0x2c, 0x3e, 0x10, 0x6f, 0x70, 0x29, 0x6a, 0x26, 0x5e, 0xb8, - 0x3c, 0x25, 0x8b, 0x05, 0x78, 0xca, 0xa5, 0xd8, 0x60, 0x66, 0xca, 0xb7, 0xa0, 0x9d, 0xf7, 0xeb, - 0x05, 0x95, 0x5b, 0xe6, 0x78, 0xfa, 0xc5, 0x69, 0x6b, 0xff, 0x59, 0x83, 0xfa, 0xf7, 0xfd, 0xf0, - 0x54, 0x86, 0xe2, 0x0e, 0xd4, 0xa9, 0xa8, 0xa8, 0x04, 0x23, 0x2d, 0x30, 0xce, 0xa3, 0xdd, 0xbb, - 0xa0, 0xd1, 0x33, 0xa3, 0xe4, 0x32, 0xf3, 0xd1, 0x5f, 0x52, 0x78, 0x71, 0xce, 0x00, 0x12, 0xa7, - 0x76, 0x99, 0xf5, 0xd2, 0xa2, 0x7b, 0xa1, 0xe8, 0x37, 0xa0, 0x27, 0x7d, 0xf2, 0xe2, 0x00, 0x85, - 0xed, 0x41, 0x09, 0x1d, 0x84, 0x03, 0x7e, 0x3c, 0x1c, 0x94, 0x7d, 0x8a, 0xcf, 0xb2, 0x9c, 0x7d, - 0xfb, 0xae, 0x2f, 0x88, 0xfb, 0x50, 0x57, 0xf6, 0x62, 0x31, 0xd3, 0x6a, 0xc9, 0x0d, 0x7b, 0x79, - 0x94, 0x9a, 0xf0, 0x10, 0xea, 0x6c, 0x5b, 0x79, 0x42, 0x21, 0xb0, 0x18, 0x88, 0x3c, 0x2a, 0x11, - 0x4f, 0x71, 0x17, 0x1a, 0xaa, 0x64, 0x28, 0xe6, 0xd4, 0x0f, 0x2f, 0xbd, 0x58, 0x9d, 0x1d, 0x27, - 0x5e, 0xbf, 0xe0, 0x7b, 0xf2, 0xfa, 0x45, 0xbf, 0x8a, 0xe5, 0xd8, 0x90, 0x96, 0x74, 0x72, 0x89, - 0x27, 0x91, 0x50, 0x64, 0x8e, 0x32, 0xfa, 0x08, 0x3a, 0x85, 0x24, 0x95, 0xe8, 0x27, 0x6c, 0x31, - 0x9b, 0xb7, 0xba, 0xa4, 0x02, 0xbe, 0x03, 0x9a, 0x8a, 0xfb, 0x0f, 0x15, 0x63, 0xcc, 0xc9, 0x32, - 0x0c, 0x2e, 0x07, 0xfe, 0x24, 0xd7, 0x3f, 0x80, 0xab, 0x73, 0x0c, 0xa5, 0xa0, 0x4f, 0x3e, 0x5f, - 0xee, 0x09, 0x0c, 0x96, 0x5e, 0xda, 0x9f, 0x12, 0xe0, 0x37, 0x13, 0xa7, 0xef, 0x02, 0x64, 0xf6, - 0x82, 0x65, 0xe3, 0x92, 0xb5, 0x19, 0x5c, 0x9f, 0x45, 0x27, 0x9b, 0x6e, 0xf4, 0xff, 0xee, 0x8b, - 0x9b, 0xa5, 0x5f, 0x7d, 0x71, 0xb3, 0xf4, 0x6f, 0x5f, 0xdc, 0x2c, 0xfd, 0xf2, 0xd7, 0x37, 0x17, - 0x7e, 0xf5, 0xeb, 0x9b, 0x0b, 0xff, 0xf8, 0xeb, 0x9b, 0x0b, 0x87, 0x75, 0xfa, 0x6f, 0xd8, 0xa3, - 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x8c, 0x03, 0xba, 0x91, 0x36, 0x00, 0x00, + // 5365 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7b, 0x4b, 0x6f, 0x1c, 0x67, + 0x76, 0x28, 0xfb, 0xdd, 0x75, 0xfa, 0xa1, 0xe6, 0x27, 0x59, 0xee, 0x69, 0xd9, 0x22, 0x5d, 0xb2, + 0x6c, 0x5a, 0xb2, 0x28, 0x89, 0x9a, 0xc1, 0x1d, 0x7b, 0x30, 0xc0, 0xe5, 0xa3, 0x29, 0xd3, 0xa2, + 0x48, 0x4d, 0xb1, 0xa5, 0x79, 0x00, 0xf7, 0x36, 0x8a, 0x55, 0x1f, 0xc9, 0x1a, 0x56, 0x57, 0xd5, + 0x54, 0x55, 0x73, 0x48, 0xef, 0x06, 0x17, 0x98, 0xd9, 0xdc, 0xc5, 0x00, 0xd9, 0x64, 0x95, 0x00, + 0xd9, 0x66, 0x95, 0x00, 0x01, 0x82, 0x00, 0xd9, 0x05, 0x41, 0x90, 0xd5, 0x2c, 0x13, 0x24, 0x31, + 0x02, 0x4f, 0x90, 0x85, 0x16, 0x01, 0x82, 0xfc, 0x81, 0xe0, 0x9c, 0xf3, 0xd5, 0xab, 0xd9, 0x92, + 0xec, 0x09, 0xb2, 0xc8, 0xaa, 0xbf, 0x73, 0xbe, 0xf7, 0xf9, 0xce, 0xfb, 0x54, 0x43, 0x33, 0x38, + 0x5c, 0x0d, 0x42, 0x3f, 0xf6, 0x45, 0x39, 0x38, 0x1c, 0x68, 0x66, 0xe0, 0x30, 0x38, 0xb8, 0x73, + 0xec, 0xc4, 0x27, 0xd3, 0xc3, 0x55, 0xcb, 0x9f, 0xdc, 0xb7, 0x8f, 0x43, 0x33, 0x38, 0xb9, 0xe7, + 0xf8, 0xf7, 0x0f, 0x4d, 0xfb, 0x58, 0x86, 0xf7, 0xcf, 0x1e, 0xdd, 0x0f, 0x0e, 0xef, 0x27, 0x53, + 0x07, 0xf7, 0x72, 0x63, 0x8f, 0xfd, 0x63, 0xff, 0x3e, 0xa1, 0x0f, 0xa7, 0x47, 0x04, 0x11, 0x40, + 0x2d, 0x1e, 0xae, 0x0f, 0xa0, 0xba, 0xeb, 0x44, 0xb1, 0x10, 0x50, 0x9d, 0x3a, 0x76, 0xd4, 0x2f, + 0x2d, 0x57, 0x56, 0xea, 0x06, 0xb5, 0xf5, 0xa7, 0xa0, 0x8d, 0xcc, 0xe8, 0xf4, 0x85, 0xe9, 0x4e, + 0xa5, 0xe8, 0x41, 0xe5, 0xcc, 0x74, 0xfb, 0xa5, 0xe5, 0xd2, 0x4a, 0xdb, 0xc0, 0xa6, 0x58, 0x85, + 0xe6, 0x99, 0xe9, 0x8e, 0xe3, 0x8b, 0x40, 0xf6, 0xcb, 0xcb, 0xa5, 0x95, 0xee, 0xda, 0xd5, 0xd5, + 0xe0, 0x70, 0xf5, 0x99, 0x1f, 0xc5, 0x8e, 0x77, 0xbc, 0xfa, 0xc2, 0x74, 0x47, 0x17, 0x81, 0x34, + 0x1a, 0x67, 0xdc, 0xd0, 0xf7, 0xa1, 0x75, 0x10, 0x5a, 0xdb, 0x53, 0xcf, 0x8a, 0x1d, 0xdf, 0xc3, + 0x1d, 0x3d, 0x73, 0x22, 0x69, 0x45, 0xcd, 0xa0, 0x36, 0xe2, 0xcc, 0xf0, 0x38, 0xea, 0x57, 0x96, + 0x2b, 0x88, 0xc3, 0xb6, 0xe8, 0x43, 0xc3, 0x89, 0x36, 0xfd, 0xa9, 0x17, 0xf7, 0xab, 0xcb, 0xa5, + 0x95, 0xa6, 0x91, 0x80, 0xfa, 0x1f, 0x56, 0xa0, 0xf6, 0x83, 0xa9, 0x0c, 0x2f, 0x68, 0x5e, 0x1c, + 0x87, 0xc9, 0x5a, 0xd8, 0x16, 0xd7, 0xa0, 0xe6, 0x9a, 0xde, 0x71, 0xd4, 0x2f, 0xd3, 0x62, 0x0c, + 0x88, 0x1b, 0xa0, 0x99, 0x47, 0xb1, 0x0c, 0xc7, 0x53, 0xc7, 0xee, 0x57, 0x96, 0x4b, 0x2b, 0x75, + 0xa3, 0x49, 0x88, 0xe7, 0x8e, 0x2d, 0xbe, 0x05, 0x4d, 0xdb, 0x1f, 0x5b, 0xf9, 0xbd, 0x6c, 0x9f, + 0xf6, 0x12, 0xb7, 0xa0, 0x39, 0x75, 0xec, 0xb1, 0xeb, 0x44, 0x71, 0xbf, 0xb6, 0x5c, 0x5a, 0x69, + 0xad, 0x35, 0xf1, 0xb2, 0x48, 0x3b, 0xa3, 0x31, 0x75, 0x6c, 0x22, 0xe2, 0x1d, 0x68, 0x46, 0xa1, + 0x35, 0x3e, 0x9a, 0x7a, 0x56, 0xbf, 0x4e, 0x83, 0xae, 0xe0, 0xa0, 0xdc, 0xad, 0x8d, 0x46, 0xc4, + 0x00, 0x5e, 0x2b, 0x94, 0x67, 0x32, 0x8c, 0x64, 0xbf, 0xc1, 0x5b, 0x29, 0x50, 0x3c, 0x80, 0xd6, + 0x91, 0x69, 0xc9, 0x78, 0x1c, 0x98, 0xa1, 0x39, 0xe9, 0x37, 0xb3, 0x85, 0xb6, 0x11, 0xfd, 0x0c, + 0xb1, 0x91, 0x01, 0x47, 0x29, 0x20, 0x1e, 0x41, 0x87, 0xa0, 0x68, 0x7c, 0xe4, 0xb8, 0xb1, 0x0c, + 0xfb, 0x1a, 0xcd, 0xe9, 0xd2, 0x1c, 0xc2, 0x8c, 0x42, 0x29, 0x8d, 0x36, 0x0f, 0x62, 0x8c, 0x78, + 0x17, 0x40, 0x9e, 0x07, 0xa6, 0x67, 0x8f, 0x4d, 0xd7, 0xed, 0x03, 0x9d, 0x41, 0x63, 0xcc, 0xba, + 0xeb, 0x8a, 0xb7, 0xf1, 0x7c, 0xa6, 0x3d, 0x8e, 0xa3, 0x7e, 0x67, 0xb9, 0xb4, 0x52, 0x35, 0xea, + 0x08, 0x8e, 0x22, 0xa4, 0xab, 0x65, 0x5a, 0x27, 0xb2, 0xdf, 0x5d, 0x2e, 0xad, 0xd4, 0x0c, 0x06, + 0x10, 0x7b, 0xe4, 0x84, 0x51, 0xdc, 0xbf, 0xc2, 0x58, 0x02, 0xf4, 0x35, 0xd0, 0x88, 0x7b, 0x88, + 0x3a, 0xb7, 0xa1, 0x7e, 0x86, 0x00, 0x33, 0x59, 0x6b, 0xad, 0x83, 0xc7, 0x4b, 0x19, 0xcc, 0x50, + 0x9d, 0xfa, 0x4d, 0x68, 0xee, 0x9a, 0xde, 0x71, 0xc2, 0x95, 0xf8, 0x6c, 0x34, 0x41, 0x33, 0xa8, + 0xad, 0xff, 0x7e, 0x19, 0xea, 0x86, 0x8c, 0xa6, 0x6e, 0x2c, 0x3e, 0x04, 0xc0, 0x47, 0x99, 0x98, + 0x71, 0xe8, 0x9c, 0xab, 0x55, 0xb3, 0x67, 0xd1, 0xa6, 0x8e, 0xfd, 0x94, 0xba, 0xc4, 0x03, 0x68, + 0xd3, 0xea, 0xc9, 0xd0, 0x72, 0x76, 0x80, 0xf4, 0x7c, 0x46, 0x8b, 0x86, 0xa8, 0x19, 0xd7, 0xa1, + 0x4e, 0x7c, 0xc0, 0xbc, 0xd8, 0x31, 0x14, 0x24, 0x6e, 0x43, 0xd7, 0xf1, 0x62, 0x7c, 0x27, 0x2b, + 0x1e, 0xdb, 0x32, 0x4a, 0x18, 0xa5, 0x93, 0x62, 0xb7, 0x64, 0x14, 0x8b, 0x87, 0xc0, 0xc4, 0x4e, + 0x36, 0xac, 0xd1, 0x86, 0xdd, 0xf4, 0x11, 0x23, 0xde, 0x91, 0xc6, 0xa8, 0x1d, 0xef, 0x41, 0x0b, + 0xef, 0x97, 0xcc, 0xa8, 0xd3, 0x8c, 0x36, 0xdd, 0x46, 0x91, 0xc3, 0x00, 0x1c, 0xa0, 0x86, 0x23, + 0x69, 0x90, 0x19, 0x99, 0x79, 0xa8, 0xad, 0x0f, 0xa1, 0xb6, 0x1f, 0xda, 0x32, 0x9c, 0x2b, 0x0f, + 0x02, 0xaa, 0xb6, 0x8c, 0x2c, 0x12, 0xd5, 0xa6, 0x41, 0xed, 0x4c, 0x46, 0x2a, 0x39, 0x19, 0xd1, + 0xff, 0xa0, 0x04, 0xad, 0x03, 0x3f, 0x8c, 0x9f, 0xca, 0x28, 0x32, 0x8f, 0xa5, 0x58, 0x82, 0x9a, + 0x8f, 0xcb, 0x2a, 0x0a, 0x6b, 0x78, 0x26, 0xda, 0xc7, 0x60, 0xfc, 0xcc, 0x3b, 0x94, 0x5f, 0xfd, + 0x0e, 0xc8, 0x3b, 0x24, 0x5d, 0x15, 0xc5, 0x3b, 0x24, 0x5b, 0xd7, 0xa1, 0xee, 0x1f, 0x1d, 0x45, + 0x92, 0x69, 0x59, 0x33, 0x14, 0xf4, 0x4a, 0x16, 0xd4, 0xbf, 0x03, 0x80, 0xe7, 0xfb, 0x86, 0x5c, + 0xa0, 0xff, 0xaa, 0x04, 0x2d, 0xc3, 0x3c, 0x8a, 0x37, 0x7d, 0x2f, 0x96, 0xe7, 0xb1, 0xe8, 0x42, + 0xd9, 0xb1, 0x89, 0x46, 0x75, 0xa3, 0xec, 0xd8, 0x78, 0xba, 0xe3, 0xd0, 0x9f, 0x06, 0x44, 0xa2, + 0x8e, 0xc1, 0x00, 0xd1, 0xd2, 0xb6, 0x43, 0x3a, 0x32, 0xd2, 0xd2, 0xb6, 0x43, 0xb1, 0x04, 0xad, + 0xc8, 0x33, 0x83, 0xe8, 0xc4, 0x8f, 0xf1, 0x74, 0x55, 0x3a, 0x1d, 0x24, 0xa8, 0x51, 0x84, 0xc2, + 0xe5, 0x44, 0x63, 0x57, 0x9a, 0xa1, 0x27, 0x43, 0x52, 0x18, 0x4d, 0x43, 0x73, 0xa2, 0x5d, 0x46, + 0xe8, 0xbf, 0xaa, 0x40, 0xfd, 0xa9, 0x9c, 0x1c, 0xca, 0xf0, 0xd2, 0x21, 0x1e, 0x40, 0x93, 0xf6, + 0x1d, 0x3b, 0x36, 0x9f, 0x63, 0xe3, 0xad, 0x97, 0x5f, 0x2e, 0x2d, 0x12, 0x6e, 0xc7, 0xfe, 0xd8, + 0x9f, 0x38, 0xb1, 0x9c, 0x04, 0xf1, 0x85, 0xd1, 0x50, 0xa8, 0xb9, 0x07, 0xbc, 0x0e, 0x75, 0x57, + 0x9a, 0xf8, 0x66, 0xcc, 0x9e, 0x0a, 0x12, 0xf7, 0xa0, 0x61, 0x4e, 0xc6, 0xb6, 0x34, 0x6d, 0x3e, + 0xd4, 0xc6, 0xb5, 0x97, 0x5f, 0x2e, 0xf5, 0xcc, 0xc9, 0x96, 0x34, 0xf3, 0x6b, 0xd7, 0x19, 0x23, + 0x3e, 0x41, 0x9e, 0x8c, 0xe2, 0xf1, 0x34, 0xb0, 0xcd, 0x58, 0x92, 0x4e, 0xab, 0x6e, 0xf4, 0x5f, + 0x7e, 0xb9, 0x74, 0x0d, 0xd1, 0xcf, 0x09, 0x9b, 0x9b, 0x06, 0x19, 0x16, 0xf5, 0x5b, 0x72, 0x7d, + 0xa5, 0xdf, 0x14, 0x28, 0x76, 0x60, 0xd1, 0x72, 0xa7, 0x11, 0x2a, 0x61, 0xc7, 0x3b, 0xf2, 0xc7, + 0xbe, 0xe7, 0x5e, 0xd0, 0x03, 0x37, 0x37, 0xde, 0x7d, 0xf9, 0xe5, 0xd2, 0xb7, 0x54, 0xe7, 0x8e, + 0x77, 0xe4, 0xef, 0x7b, 0xee, 0x45, 0x6e, 0xfd, 0x2b, 0x33, 0x5d, 0xe2, 0x7f, 0x43, 0xf7, 0xc8, + 0x0f, 0x2d, 0x39, 0x4e, 0x49, 0xd6, 0xa5, 0x75, 0x06, 0x2f, 0xbf, 0x5c, 0xba, 0x4e, 0x3d, 0x8f, + 0x2f, 0xd1, 0xad, 0x9d, 0xc7, 0xeb, 0xff, 0x54, 0x86, 0x1a, 0xb5, 0xc5, 0x03, 0x68, 0x4c, 0xe8, + 0x49, 0x12, 0xfd, 0x74, 0x1d, 0x79, 0x88, 0xfa, 0x56, 0xf9, 0xad, 0xa2, 0xa1, 0x17, 0x87, 0x17, + 0x46, 0x32, 0x0c, 0x67, 0xc4, 0xe6, 0xa1, 0x2b, 0xe3, 0x48, 0xf1, 0x7c, 0x6e, 0xc6, 0x88, 0x3b, + 0xd4, 0x0c, 0x35, 0x6c, 0x96, 0x6f, 0x2a, 0x97, 0xf8, 0x66, 0x00, 0x4d, 0xeb, 0x44, 0x5a, 0xa7, + 0xd1, 0x74, 0xa2, 0xb8, 0x2a, 0x85, 0xc5, 0x2d, 0xe8, 0x50, 0x3b, 0xf0, 0x1d, 0x8f, 0xa6, 0xd7, + 0x68, 0x40, 0x3b, 0x43, 0x8e, 0xa2, 0xc1, 0x36, 0xb4, 0xf3, 0x87, 0x45, 0xb3, 0x7d, 0x2a, 0x2f, + 0x88, 0xbf, 0xaa, 0x06, 0x36, 0xc5, 0x32, 0xd4, 0x48, 0xd1, 0x11, 0x77, 0xb5, 0xd6, 0x00, 0xcf, + 0xcc, 0x53, 0x0c, 0xee, 0xf8, 0xb4, 0xfc, 0xdd, 0x12, 0xae, 0x93, 0xbf, 0x42, 0x7e, 0x1d, 0xed, + 0xd5, 0xeb, 0xf0, 0x94, 0xdc, 0x3a, 0xba, 0x0f, 0x8d, 0x5d, 0xc7, 0x92, 0x5e, 0x44, 0xc6, 0x7d, + 0x1a, 0xc9, 0x54, 0x29, 0x61, 0x1b, 0xef, 0x3b, 0x31, 0xcf, 0xf7, 0x7c, 0x5b, 0x46, 0xb4, 0x4e, + 0xd5, 0x48, 0x61, 0xec, 0x93, 0xe7, 0x81, 0x13, 0x5e, 0x8c, 0x98, 0x52, 0x15, 0x23, 0x85, 0x91, + 0xbb, 0xa4, 0x87, 0x9b, 0xd9, 0x89, 0xa1, 0x56, 0xa0, 0xfe, 0xcb, 0x2a, 0xb4, 0x7f, 0x22, 0x43, + 0xff, 0x59, 0xe8, 0x07, 0x7e, 0x64, 0xba, 0x62, 0xbd, 0x48, 0x73, 0x7e, 0xdb, 0x65, 0x3c, 0x6d, + 0x7e, 0xd8, 0xea, 0x41, 0xfa, 0x08, 0xfc, 0x66, 0xf9, 0x57, 0xd1, 0xa1, 0xce, 0x6f, 0x3e, 0x87, + 0x66, 0xaa, 0x07, 0xc7, 0xf0, 0x2b, 0xd3, 0x59, 0x8b, 0xf4, 0x50, 0x3d, 0x28, 0x95, 0x13, 0xf3, + 0xfc, 0xf9, 0xce, 0x96, 0x7a, 0x5b, 0x05, 0x29, 0x2a, 0x8c, 0xce, 0xbd, 0x51, 0xf2, 0xa8, 0x29, + 0x8c, 0x37, 0x45, 0x8a, 0x44, 0x3b, 0x5b, 0xfd, 0x36, 0x75, 0x25, 0xa0, 0x78, 0x07, 0xb4, 0x89, + 0x79, 0x8e, 0x0a, 0x6d, 0xc7, 0x66, 0xd1, 0x34, 0x32, 0x84, 0x78, 0x0f, 0x2a, 0xf1, 0xb9, 0x47, + 0xb2, 0x87, 0xde, 0x03, 0x3a, 0x93, 0xa3, 0x73, 0x4f, 0xa9, 0x3e, 0x03, 0xfb, 0xf0, 0x4d, 0x2d, + 0xc7, 0x26, 0x67, 0x41, 0x33, 0xb0, 0x29, 0x6e, 0x43, 0xc3, 0xe5, 0xd7, 0x22, 0x87, 0xa0, 0xb5, + 0xd6, 0x62, 0x3d, 0x4a, 0x28, 0x23, 0xe9, 0x13, 0x1f, 0x43, 0x33, 0xa1, 0x4e, 0xbf, 0x45, 0xe3, + 0x7a, 0x09, 0x3d, 0x13, 0x32, 0x1a, 0xe9, 0x08, 0xf1, 0x00, 0x34, 0x5b, 0xba, 0x32, 0x96, 0x63, + 0x8f, 0x15, 0x79, 0x8b, 0x1d, 0xc5, 0x2d, 0x42, 0xee, 0x45, 0x86, 0xfc, 0xd9, 0x54, 0x46, 0xb1, + 0xd1, 0xb4, 0x15, 0x62, 0xf0, 0x7d, 0xb8, 0x32, 0xf3, 0x1c, 0x79, 0xfe, 0xeb, 0x30, 0xff, 0x5d, + 0xcb, 0xf3, 0x5f, 0x35, 0xc7, 0x73, 0x9f, 0x57, 0x9b, 0xcd, 0x9e, 0xa6, 0xff, 0x7b, 0x05, 0xae, + 0x28, 0x51, 0x38, 0x71, 0x82, 0x83, 0x58, 0x29, 0x25, 0x32, 0x39, 0x8a, 0x0b, 0xab, 0x46, 0x02, + 0x8a, 0xff, 0x05, 0x75, 0xd2, 0x21, 0x89, 0x28, 0x2f, 0x65, 0x4f, 0x9c, 0x4e, 0x67, 0xd1, 0x56, + 0xfc, 0xa1, 0x86, 0x8b, 0x6f, 0x43, 0xed, 0x0b, 0x19, 0xfa, 0x6c, 0x42, 0x5b, 0x6b, 0x37, 0xe7, + 0xcd, 0x43, 0xc2, 0xa8, 0x69, 0x3c, 0xf8, 0xbf, 0xca, 0x09, 0xf0, 0x4d, 0x38, 0xe1, 0x7d, 0x34, + 0xa3, 0x13, 0xff, 0x4c, 0xda, 0xfd, 0x06, 0x9d, 0x31, 0xcf, 0xbe, 0x49, 0x57, 0xc2, 0x0c, 0xcd, + 0xb9, 0xcc, 0xa0, 0xbd, 0x9a, 0x19, 0x06, 0x5b, 0xd0, 0xca, 0xd1, 0x65, 0xce, 0x43, 0x2d, 0x15, + 0x15, 0x85, 0x96, 0x2a, 0xc9, 0xbc, 0xbe, 0xd9, 0x02, 0xc8, 0xa8, 0xf4, 0xbb, 0x6a, 0x2d, 0xfd, + 0x17, 0x25, 0xb8, 0xb2, 0xe9, 0x7b, 0x9e, 0x24, 0x67, 0x9b, 0xdf, 0x3c, 0x13, 0xde, 0xd2, 0x2b, + 0x85, 0xf7, 0x23, 0xa8, 0x45, 0x38, 0x58, 0xad, 0x7e, 0x75, 0xce, 0x23, 0x1a, 0x3c, 0x02, 0x55, + 0xf8, 0xc4, 0x3c, 0x1f, 0x07, 0xd2, 0xb3, 0x1d, 0xef, 0x38, 0x51, 0xe1, 0x13, 0xf3, 0xfc, 0x19, + 0x63, 0xf4, 0x3f, 0x2f, 0x03, 0x7c, 0x26, 0x4d, 0x37, 0x3e, 0x41, 0x33, 0x85, 0x2f, 0xea, 0x78, + 0x51, 0x6c, 0x7a, 0x56, 0x12, 0xea, 0xa4, 0x30, 0xbe, 0x28, 0x5a, 0x6b, 0x19, 0xb1, 0xf2, 0xd3, + 0x8c, 0x04, 0x44, 0xfe, 0xc0, 0xed, 0xa6, 0x91, 0xb2, 0xea, 0x0a, 0xca, 0x5c, 0x94, 0x2a, 0xa1, + 0x95, 0x8b, 0xd2, 0x87, 0x06, 0x86, 0x0e, 0x8e, 0xef, 0x11, 0xd3, 0x68, 0x46, 0x02, 0xe2, 0x3a, + 0xd3, 0x20, 0x76, 0x26, 0x6c, 0xbb, 0x2b, 0x86, 0x82, 0xf0, 0x54, 0x68, 0xab, 0x87, 0xd6, 0x89, + 0x4f, 0x2a, 0xa2, 0x62, 0xa4, 0x30, 0xae, 0xe6, 0x7b, 0xc7, 0x3e, 0xde, 0xae, 0x49, 0x6e, 0x61, + 0x02, 0xf2, 0x5d, 0x6c, 0x79, 0x8e, 0x5d, 0x1a, 0x75, 0xa5, 0x30, 0xd2, 0x45, 0xca, 0xf1, 0x91, + 0x34, 0xe3, 0x69, 0x28, 0xa3, 0x3e, 0x50, 0x37, 0x48, 0xb9, 0xad, 0x30, 0xe2, 0x3d, 0x68, 0x23, + 0xe1, 0xcc, 0x28, 0x72, 0x8e, 0x3d, 0x69, 0x93, 0xe2, 0xa8, 0x1a, 0x48, 0xcc, 0x75, 0x85, 0xd2, + 0xff, 0xb2, 0x0c, 0x75, 0x56, 0x99, 0x05, 0x37, 0xa8, 0xf4, 0xb5, 0xdc, 0xa0, 0x77, 0x40, 0x0b, + 0x42, 0x69, 0x3b, 0x56, 0xf2, 0x8e, 0x9a, 0x91, 0x21, 0x28, 0x3e, 0x41, 0xbb, 0x4f, 0xf4, 0x6c, + 0x1a, 0x0c, 0x08, 0x1d, 0x3a, 0xbe, 0x37, 0xb6, 0x9d, 0xe8, 0x74, 0x7c, 0x78, 0x11, 0xcb, 0x48, + 0xd1, 0xa2, 0xe5, 0x7b, 0x5b, 0x4e, 0x74, 0xba, 0x81, 0x28, 0x24, 0x21, 0xcb, 0x08, 0xc9, 0x46, + 0xd3, 0x50, 0x90, 0x78, 0x04, 0x1a, 0x79, 0xa7, 0xe4, 0xbe, 0x68, 0xe4, 0x76, 0x5c, 0x7f, 0xf9, + 0xe5, 0x92, 0x40, 0xe4, 0x8c, 0xdf, 0xd2, 0x4c, 0x70, 0xe8, 0x7f, 0xe1, 0x64, 0x34, 0x44, 0x24, + 0xc3, 0xec, 0x7f, 0x21, 0x6a, 0x14, 0xe5, 0xfd, 0x2f, 0xc6, 0x88, 0x7b, 0x20, 0xa6, 0x9e, 0xe5, + 0x4f, 0x02, 0x64, 0x0a, 0x69, 0xab, 0x43, 0xb6, 0xe8, 0x90, 0x8b, 0xf9, 0x1e, 0x3a, 0xaa, 0xfe, + 0x8f, 0x65, 0x68, 0x6f, 0x39, 0xa1, 0xb4, 0x62, 0x69, 0x0f, 0xed, 0x63, 0x89, 0x67, 0x97, 0x5e, + 0xec, 0xc4, 0x17, 0xca, 0xc1, 0x54, 0x50, 0x1a, 0x1f, 0x94, 0x8b, 0xf1, 0x32, 0x4b, 0x58, 0x85, + 0x42, 0x7c, 0x06, 0xc4, 0x1a, 0x00, 0x47, 0x4e, 0x14, 0xe6, 0x57, 0x5f, 0x1d, 0xe6, 0x6b, 0x34, + 0x0c, 0x9b, 0x18, 0x46, 0xf3, 0x1c, 0x87, 0xbd, 0xcc, 0x3a, 0xe5, 0x00, 0xa6, 0x92, 0x7d, 0x55, + 0x0a, 0xe8, 0x1a, 0xbc, 0x31, 0xb6, 0xc5, 0x2d, 0x28, 0xfb, 0x01, 0x11, 0x57, 0x2d, 0x9d, 0xbf, + 0xc2, 0xea, 0x7e, 0x60, 0x94, 0xfd, 0x00, 0xa5, 0x98, 0xa3, 0x57, 0x62, 0x3c, 0x94, 0x62, 0xb4, + 0x68, 0x14, 0x4b, 0x19, 0xaa, 0x47, 0xe8, 0xd0, 0x36, 0x5d, 0xd7, 0xff, 0xb9, 0xb4, 0x9f, 0x85, + 0xd2, 0x4e, 0x78, 0xb0, 0x80, 0x43, 0x2e, 0xf1, 0xcc, 0x89, 0x8c, 0x02, 0xd3, 0x92, 0x8a, 0x05, + 0x33, 0x84, 0x7e, 0x1d, 0xca, 0xfb, 0x81, 0x68, 0x40, 0xe5, 0x60, 0x38, 0xea, 0x2d, 0x60, 0x63, + 0x6b, 0xb8, 0xdb, 0x43, 0x8b, 0x52, 0xef, 0x35, 0xf4, 0xaf, 0xca, 0xa0, 0x3d, 0x9d, 0xc6, 0x26, + 0xea, 0x96, 0x08, 0x6f, 0x59, 0xe4, 0xd0, 0x8c, 0x15, 0xbf, 0x05, 0xcd, 0x28, 0x36, 0x43, 0xf2, + 0x37, 0xd8, 0x3a, 0x35, 0x08, 0x1e, 0x45, 0xe2, 0x03, 0xa8, 0x49, 0xfb, 0x58, 0x26, 0xe6, 0xa2, + 0x37, 0x7b, 0x5f, 0x83, 0xbb, 0xc5, 0x0a, 0xd4, 0x23, 0xeb, 0x44, 0x4e, 0xcc, 0x7e, 0x35, 0x1b, + 0x78, 0x40, 0x18, 0x76, 0xb0, 0x0d, 0xd5, 0x2f, 0xde, 0x87, 0x1a, 0xbe, 0x4d, 0xa4, 0x22, 0x46, + 0x8a, 0x31, 0xf1, 0x19, 0xd4, 0x30, 0xee, 0x44, 0xc6, 0xb3, 0x43, 0x3f, 0x18, 0xfb, 0x01, 0xd1, + 0xbe, 0xbb, 0x76, 0x8d, 0x74, 0x5c, 0x72, 0x9b, 0xd5, 0xad, 0xd0, 0x0f, 0xf6, 0x03, 0xa3, 0x6e, + 0xd3, 0x2f, 0xc6, 0x2f, 0x34, 0x9c, 0x39, 0x82, 0x8d, 0x82, 0x86, 0x18, 0x4e, 0x06, 0xad, 0x40, + 0x73, 0x22, 0x63, 0xd3, 0x36, 0x63, 0x53, 0xd9, 0x86, 0x36, 0xab, 0x4c, 0xc6, 0x19, 0x69, 0xaf, + 0x7e, 0x1f, 0xea, 0xbc, 0xb4, 0x68, 0x42, 0x75, 0x6f, 0x7f, 0x6f, 0xc8, 0x64, 0x5d, 0xdf, 0xdd, + 0xed, 0x95, 0x10, 0xb5, 0xb5, 0x3e, 0x5a, 0xef, 0x95, 0xb1, 0x35, 0xfa, 0xf1, 0xb3, 0x61, 0xaf, + 0xa2, 0xff, 0x6d, 0x09, 0x9a, 0xc9, 0x3a, 0xe2, 0x53, 0x00, 0x14, 0xe1, 0xf1, 0x89, 0xe3, 0xa5, + 0xae, 0xdb, 0x8d, 0xfc, 0x4e, 0xab, 0xf8, 0xaa, 0x9f, 0x61, 0x2f, 0x9b, 0x57, 0x92, 0x78, 0x82, + 0x07, 0x07, 0xd0, 0x2d, 0x76, 0xce, 0xf1, 0x61, 0xef, 0xe6, 0xad, 0x4a, 0x77, 0xed, 0xad, 0xc2, + 0xd2, 0x38, 0x93, 0x58, 0x3b, 0x67, 0x60, 0xee, 0x41, 0x33, 0x41, 0x8b, 0x16, 0x34, 0xb6, 0x86, + 0xdb, 0xeb, 0xcf, 0x77, 0x91, 0x55, 0x00, 0xea, 0x07, 0x3b, 0x7b, 0x8f, 0x77, 0x87, 0x7c, 0xad, + 0xdd, 0x9d, 0x83, 0x51, 0xaf, 0xac, 0xff, 0x5e, 0x09, 0x9a, 0x89, 0x27, 0x23, 0x3e, 0x42, 0xe7, + 0x83, 0xdc, 0x2f, 0x65, 0x89, 0x28, 0xa7, 0x93, 0x0b, 0x48, 0x8d, 0xa4, 0x1f, 0x65, 0x91, 0x14, + 0x6b, 0xe2, 0xdb, 0x10, 0x90, 0x8f, 0x87, 0x2b, 0x85, 0x94, 0x0c, 0x86, 0xf6, 0xbe, 0x27, 0x95, + 0x2b, 0x4c, 0x6d, 0xe2, 0x41, 0xc7, 0xb3, 0x64, 0x16, 0x28, 0x34, 0x08, 0x1e, 0x45, 0x7a, 0xcc, + 0x1e, 0x72, 0x7a, 0xb0, 0x74, 0xb7, 0x52, 0x7e, 0xb7, 0x4b, 0xe1, 0x46, 0xf9, 0x72, 0xb8, 0x91, + 0x19, 0xce, 0xda, 0x9b, 0x0c, 0xa7, 0xfe, 0x27, 0x55, 0xe8, 0x1a, 0x32, 0x8a, 0xfd, 0x50, 0x2a, + 0x8f, 0xef, 0x75, 0x22, 0xf4, 0x2e, 0x40, 0xc8, 0x83, 0xb3, 0xad, 0x35, 0x85, 0xe1, 0x38, 0xc9, + 0xf5, 0x2d, 0xe2, 0x5d, 0x65, 0x21, 0x53, 0x58, 0xdc, 0x00, 0xed, 0xd0, 0xb4, 0x4e, 0x79, 0x59, + 0xb6, 0x93, 0x4d, 0x46, 0xf0, 0xba, 0xa6, 0x65, 0xc9, 0x28, 0x1a, 0x23, 0x2b, 0xb0, 0xb5, 0xd4, + 0x18, 0xf3, 0x44, 0x5e, 0x60, 0x77, 0x24, 0xad, 0x50, 0xc6, 0xd4, 0x5d, 0xe7, 0x6e, 0xc6, 0x60, + 0xf7, 0x2d, 0xe8, 0x44, 0x32, 0x42, 0xcb, 0x3a, 0x8e, 0xfd, 0x53, 0xe9, 0x29, 0x3d, 0xd6, 0x56, + 0xc8, 0x11, 0xe2, 0x50, 0xc5, 0x98, 0x9e, 0xef, 0x5d, 0x4c, 0xfc, 0x69, 0xa4, 0x6c, 0x46, 0x86, + 0x10, 0xab, 0x70, 0x55, 0x7a, 0x56, 0x78, 0x11, 0xe0, 0x59, 0x71, 0x97, 0xf1, 0x91, 0xe3, 0x4a, + 0xe5, 0x84, 0x2f, 0x66, 0x5d, 0x4f, 0xe4, 0xc5, 0xb6, 0xe3, 0x4a, 0x3c, 0xd1, 0x99, 0x39, 0x75, + 0xe3, 0x31, 0xc5, 0xf8, 0xc0, 0x27, 0x22, 0xcc, 0x3a, 0x06, 0xfa, 0x77, 0x60, 0x91, 0xbb, 0x43, + 0xdf, 0x95, 0x8e, 0xcd, 0x8b, 0xb5, 0x68, 0xd4, 0x15, 0xea, 0x30, 0x08, 0x4f, 0x4b, 0xad, 0xc2, + 0x55, 0x1e, 0xcb, 0x17, 0x4a, 0x46, 0xb7, 0x79, 0x6b, 0xea, 0x3a, 0x50, 0x3d, 0xc5, 0xad, 0x03, + 0x33, 0x3e, 0x21, 0xcf, 0x3d, 0xd9, 0xfa, 0x99, 0x19, 0x9f, 0xa0, 0xc5, 0xe7, 0xee, 0x23, 0x47, + 0xba, 0x1c, 0x79, 0x6b, 0x06, 0xcf, 0xd8, 0x46, 0x0c, 0x5a, 0x7c, 0x35, 0xc0, 0x0f, 0x27, 0x26, + 0xa7, 0x06, 0x35, 0x83, 0x27, 0x6d, 0x13, 0x0a, 0xb7, 0x50, 0x6f, 0xe5, 0x4d, 0x27, 0xfd, 0x1e, + 0x3f, 0x33, 0x63, 0xf6, 0xa6, 0x13, 0xfd, 0x65, 0x05, 0x9a, 0x69, 0x20, 0x77, 0x17, 0xb4, 0x49, + 0xa2, 0xaf, 0x94, 0xa3, 0xd6, 0x29, 0x28, 0x31, 0x23, 0xeb, 0x17, 0xef, 0x42, 0xf9, 0xf4, 0x4c, + 0xe9, 0xce, 0xce, 0x2a, 0xa7, 0xca, 0x83, 0xc3, 0x47, 0xab, 0x4f, 0x5e, 0x18, 0xe5, 0xd3, 0xb3, + 0x6f, 0xc0, 0xb7, 0xe2, 0x43, 0xb8, 0x62, 0xb9, 0xd2, 0xf4, 0xc6, 0x99, 0x77, 0xc1, 0x7c, 0xd1, + 0x25, 0xf4, 0xb3, 0xd4, 0xc5, 0xb8, 0x0d, 0x35, 0x5b, 0xba, 0xb1, 0x99, 0xcf, 0xd8, 0xee, 0x87, + 0xa6, 0xe5, 0xca, 0x2d, 0x44, 0x1b, 0xdc, 0x8b, 0xba, 0x33, 0x0d, 0x9e, 0x72, 0xba, 0x73, 0x4e, + 0xe0, 0x94, 0xca, 0x25, 0xe4, 0xe5, 0xf2, 0x2e, 0x2c, 0xca, 0xf3, 0x80, 0x0c, 0xc6, 0x38, 0xcd, + 0x15, 0xb0, 0x25, 0xeb, 0x25, 0x1d, 0x9b, 0x49, 0xce, 0xe0, 0x63, 0x54, 0x19, 0x24, 0x34, 0xf4, + 0xcc, 0xad, 0x35, 0x41, 0x3a, 0xa7, 0x20, 0x86, 0x46, 0x32, 0x44, 0x7c, 0x04, 0x9a, 0x65, 0x5b, + 0x63, 0xa6, 0x4c, 0x27, 0x3b, 0xdb, 0xe6, 0xd6, 0x26, 0x93, 0xa4, 0x69, 0xd9, 0x16, 0x7b, 0xd5, + 0x85, 0xa0, 0xae, 0xfb, 0x35, 0x82, 0xba, 0x82, 0x51, 0xec, 0x15, 0x8c, 0xe2, 0xe7, 0xd5, 0x66, + 0xa3, 0xd7, 0xd4, 0x6f, 0x41, 0x33, 0xd9, 0x08, 0x55, 0x5d, 0x24, 0x3d, 0x15, 0xb0, 0x93, 0xaa, + 0x43, 0x70, 0x14, 0xe9, 0x16, 0x54, 0x9e, 0xbc, 0x38, 0x20, 0x8d, 0x87, 0xc6, 0xa7, 0x46, 0xbe, + 0x0a, 0xb5, 0x53, 0x2d, 0x58, 0xce, 0x69, 0xc1, 0x9b, 0x6c, 0x40, 0xe8, 0x81, 0x92, 0x2c, 0x67, + 0x0e, 0x83, 0x24, 0x66, 0xe3, 0x59, 0xe5, 0x04, 0x28, 0x01, 0xfa, 0xbf, 0x56, 0xa0, 0xa1, 0xfc, + 0x1b, 0x34, 0x1a, 0xd3, 0x34, 0x41, 0x87, 0xcd, 0x62, 0xe0, 0x99, 0x3a, 0x4a, 0xf9, 0x6a, 0x48, + 0xe5, 0xcd, 0xd5, 0x10, 0xf1, 0x29, 0xb4, 0x03, 0xee, 0xcb, 0xbb, 0x56, 0x6f, 0xe7, 0xe7, 0xa8, + 0x5f, 0x9a, 0xd7, 0x0a, 0x32, 0x00, 0x49, 0x49, 0xa9, 0xe2, 0xd8, 0x3c, 0x56, 0x14, 0x68, 0x20, + 0x3c, 0x32, 0x8f, 0xbf, 0x96, 0x9f, 0xd4, 0x25, 0x87, 0xab, 0x4d, 0x0a, 0x17, 0x7d, 0xab, 0xfc, + 0xcb, 0x74, 0x8a, 0xee, 0xca, 0x0d, 0xd0, 0x2c, 0x7f, 0x32, 0x71, 0xa8, 0xaf, 0xab, 0x12, 0x52, + 0x84, 0x18, 0x45, 0xfa, 0x2f, 0x4b, 0xd0, 0x50, 0xf7, 0xba, 0x64, 0x0c, 0x37, 0x76, 0xf6, 0xd6, + 0x8d, 0x1f, 0xf7, 0x4a, 0x68, 0xec, 0x77, 0xf6, 0x46, 0xbd, 0xb2, 0xd0, 0xa0, 0xb6, 0xbd, 0xbb, + 0xbf, 0x3e, 0xea, 0x55, 0xd0, 0x40, 0x6e, 0xec, 0xef, 0xef, 0xf6, 0xaa, 0xa2, 0x0d, 0xcd, 0xad, + 0xf5, 0xd1, 0x70, 0xb4, 0xf3, 0x74, 0xd8, 0xab, 0xe1, 0xd8, 0xc7, 0xc3, 0xfd, 0x5e, 0x1d, 0x1b, + 0xcf, 0x77, 0xb6, 0x7a, 0x0d, 0xec, 0x7f, 0xb6, 0x7e, 0x70, 0xf0, 0xc3, 0x7d, 0x63, 0xab, 0xd7, + 0x24, 0x23, 0x3b, 0x32, 0x76, 0xf6, 0x1e, 0xf7, 0x34, 0x6c, 0xef, 0x6f, 0x7c, 0x3e, 0xdc, 0x1c, + 0xf5, 0x40, 0x7f, 0x08, 0xad, 0x1c, 0xad, 0x70, 0xb6, 0x31, 0xdc, 0xee, 0x2d, 0xe0, 0x96, 0x2f, + 0xd6, 0x77, 0x9f, 0xa3, 0x4d, 0xee, 0x02, 0x50, 0x73, 0xbc, 0xbb, 0xbe, 0xf7, 0xb8, 0x57, 0x56, + 0x1e, 0xdd, 0x0f, 0xa0, 0xf9, 0xdc, 0xb1, 0x37, 0x5c, 0xdf, 0x3a, 0x45, 0xf6, 0x39, 0x34, 0x23, + 0xa9, 0xf8, 0x8d, 0xda, 0xe8, 0x3f, 0x93, 0xd0, 0x46, 0xea, 0xad, 0x15, 0x84, 0x14, 0xf3, 0xa6, + 0x93, 0x31, 0x55, 0xcc, 0x2a, 0x6c, 0xb8, 0xbc, 0xe9, 0xe4, 0xb9, 0x63, 0x47, 0xfa, 0x29, 0x34, + 0x9e, 0x3b, 0xf6, 0x33, 0xd3, 0x3a, 0x25, 0xe5, 0x86, 0x4b, 0x8f, 0x23, 0xe7, 0x0b, 0xa9, 0x0c, + 0x9c, 0x46, 0x98, 0x03, 0xe7, 0x0b, 0x29, 0xde, 0x87, 0x3a, 0x01, 0x49, 0xca, 0x81, 0x44, 0x2d, + 0x39, 0x8e, 0xa1, 0xfa, 0xa8, 0x60, 0xe5, 0xba, 0xbe, 0x35, 0x0e, 0xe5, 0x51, 0xff, 0x6d, 0x7e, + 0x01, 0x42, 0x18, 0xf2, 0x48, 0xff, 0xff, 0xa5, 0xf4, 0xe6, 0x54, 0x2f, 0x59, 0x82, 0x6a, 0x60, + 0x5a, 0xa7, 0xca, 0xbf, 0x68, 0xa9, 0x05, 0xf1, 0x30, 0x06, 0x75, 0x88, 0x0f, 0xa1, 0xa9, 0x18, + 0x29, 0xd9, 0xb5, 0x95, 0xe3, 0x38, 0x23, 0xed, 0x2c, 0x3e, 0x7c, 0xa5, 0xf8, 0xf0, 0x14, 0x9d, + 0x06, 0xae, 0x13, 0xb3, 0xd8, 0xa0, 0x70, 0x12, 0xa4, 0x7f, 0x1b, 0x20, 0x2b, 0x51, 0xcd, 0x71, + 0xb7, 0xae, 0x41, 0xcd, 0x74, 0x1d, 0x33, 0x89, 0x76, 0x19, 0xd0, 0xf7, 0xa0, 0x95, 0x2b, 0x6c, + 0x21, 0x6d, 0x4d, 0xd7, 0x45, 0xcb, 0xc8, 0xb2, 0xdf, 0x34, 0x1a, 0xa6, 0xeb, 0x3e, 0x91, 0x17, + 0x11, 0xba, 0xba, 0x5c, 0x13, 0x2b, 0xcf, 0x94, 0x53, 0x68, 0xaa, 0xc1, 0x9d, 0xfa, 0xc7, 0x50, + 0xdf, 0x4e, 0x02, 0x82, 0x44, 0x18, 0x4a, 0xaf, 0x12, 0x06, 0xfd, 0x13, 0x75, 0x66, 0xaa, 0xc8, + 0x88, 0xbb, 0xaa, 0xf6, 0x16, 0x71, 0xa5, 0xaf, 0x94, 0xe5, 0x4b, 0x78, 0x90, 0x2a, 0xbb, 0xd1, + 0x60, 0x7d, 0x0b, 0x9a, 0xaf, 0xad, 0x66, 0x2a, 0x02, 0x94, 0x33, 0x02, 0xcc, 0xa9, 0x6f, 0xea, + 0x3f, 0x05, 0xc8, 0x6a, 0x74, 0x4a, 0x36, 0x79, 0x15, 0x94, 0xcd, 0x3b, 0xd0, 0xb4, 0x4e, 0x1c, + 0xd7, 0x0e, 0xa5, 0x57, 0xb8, 0x75, 0x56, 0xd5, 0x4b, 0xfb, 0xc5, 0x32, 0x54, 0xa9, 0xf4, 0x58, + 0xc9, 0x34, 0x77, 0x5a, 0x77, 0xa4, 0x1e, 0xfd, 0x1c, 0x3a, 0x1c, 0x43, 0x7c, 0x0d, 0x0f, 0xac, + 0xa8, 0x3a, 0xcb, 0x97, 0x54, 0xe7, 0x75, 0xa8, 0x93, 0xe1, 0x4f, 0x6e, 0xa3, 0xa0, 0x57, 0xa8, + 0xd4, 0xff, 0x57, 0x06, 0xe0, 0xad, 0xf7, 0x7c, 0x5b, 0x16, 0x83, 0xf5, 0xd2, 0x6c, 0xb0, 0x2e, + 0xa0, 0x9a, 0x56, 0x95, 0x35, 0x83, 0xda, 0x99, 0x31, 0x54, 0x01, 0x3c, 0x1b, 0xc3, 0x77, 0x40, + 0x23, 0x47, 0xcc, 0xf9, 0x82, 0x4a, 0x1d, 0xb8, 0x61, 0x86, 0xc8, 0xd7, 0x58, 0x6b, 0xc5, 0x1a, + 0x6b, 0x5a, 0x88, 0xaa, 0xf3, 0x6a, 0x5c, 0x88, 0x9a, 0x53, 0x53, 0xe3, 0x0c, 0x4a, 0x24, 0xc3, + 0x38, 0x09, 0xff, 0x19, 0x4a, 0x23, 0x59, 0x4d, 0x8d, 0x35, 0x39, 0x07, 0xe2, 0xf9, 0x63, 0xcb, + 0xf7, 0x8e, 0x5c, 0xc7, 0x8a, 0x55, 0x4d, 0x15, 0x3c, 0x7f, 0x53, 0x61, 0xf4, 0x4f, 0xa1, 0x9d, + 0xd0, 0x9f, 0x4a, 0x57, 0x77, 0xd2, 0x28, 0xaf, 0x94, 0xbd, 0x6d, 0x46, 0xa6, 0x8d, 0x72, 0xbf, + 0x94, 0xc4, 0x79, 0xfa, 0x7f, 0x54, 0x92, 0xc9, 0xaa, 0xc2, 0xf2, 0x7a, 0x1a, 0x16, 0x03, 0xf7, + 0xf2, 0xd7, 0x0a, 0xdc, 0xbf, 0x0b, 0x9a, 0x4d, 0xb1, 0xa8, 0x73, 0x96, 0x18, 0xb1, 0xc1, 0x6c, + 0xdc, 0xa9, 0xa2, 0x55, 0xe7, 0x4c, 0x1a, 0xd9, 0xe0, 0x37, 0xbc, 0x43, 0x4a, 0xed, 0xda, 0x3c, + 0x6a, 0xd7, 0x7f, 0x47, 0x6a, 0xbf, 0x07, 0x6d, 0xcf, 0xf7, 0xc6, 0xde, 0xd4, 0x75, 0xcd, 0x43, + 0x57, 0x2a, 0x72, 0xb7, 0x3c, 0xdf, 0xdb, 0x53, 0x28, 0xf4, 0x8e, 0xf3, 0x43, 0x58, 0xa8, 0x5b, + 0x34, 0xee, 0x4a, 0x6e, 0x1c, 0x89, 0xfe, 0x0a, 0xf4, 0xfc, 0xc3, 0x9f, 0x4a, 0x2b, 0x26, 0x8a, + 0x8d, 0x49, 0x9a, 0xd9, 0x35, 0xee, 0x32, 0x1e, 0x49, 0xb4, 0x87, 0x72, 0x3d, 0xf3, 0xcc, 0x9d, + 0x4b, 0xcf, 0xfc, 0x09, 0x68, 0x29, 0x95, 0x72, 0x71, 0xaf, 0x06, 0xb5, 0x9d, 0xbd, 0xad, 0xe1, + 0x8f, 0x7a, 0x25, 0x34, 0x97, 0xc6, 0xf0, 0xc5, 0xd0, 0x38, 0x18, 0xf6, 0xca, 0x68, 0xca, 0xb6, + 0x86, 0xbb, 0xc3, 0xd1, 0xb0, 0x57, 0x61, 0x57, 0x88, 0x0a, 0x1d, 0xae, 0x63, 0x39, 0xb1, 0x7e, + 0x00, 0x90, 0x05, 0xf3, 0xa8, 0x95, 0xb3, 0xc3, 0xa9, 0x6c, 0x62, 0x9c, 0x1c, 0x6b, 0x25, 0x15, + 0xc8, 0xf2, 0xab, 0x52, 0x06, 0xdc, 0xaf, 0xaf, 0x81, 0xf6, 0xd4, 0x0c, 0x3e, 0xe3, 0x92, 0xe0, + 0x6d, 0xe8, 0x06, 0x66, 0x18, 0x3b, 0x49, 0x3c, 0xc2, 0xca, 0xb2, 0x6d, 0x74, 0x52, 0x2c, 0xea, + 0x5e, 0xfd, 0x4f, 0x4b, 0x70, 0xed, 0xa9, 0x7f, 0x26, 0x53, 0x7f, 0xf7, 0x99, 0x79, 0xe1, 0xfa, + 0xa6, 0xfd, 0x06, 0x36, 0xc4, 0x80, 0xca, 0x9f, 0x52, 0x89, 0x2e, 0x29, 0x68, 0x1a, 0x1a, 0x63, + 0x1e, 0xab, 0x2f, 0x2e, 0x64, 0x14, 0x53, 0xa7, 0x32, 0xa4, 0x08, 0x63, 0xd7, 0x5b, 0x50, 0x8f, + 0xcf, 0xbd, 0xac, 0xbc, 0x5a, 0x8b, 0x29, 0x0b, 0x3e, 0xd7, 0xfd, 0xad, 0xcd, 0x77, 0x7f, 0xf5, + 0x4d, 0xd0, 0x46, 0xe7, 0x94, 0x07, 0x9e, 0x16, 0x1d, 0xd0, 0xd2, 0x6b, 0xdc, 0x9c, 0xf2, 0x8c, + 0x9b, 0xf3, 0x2f, 0x25, 0x68, 0xe5, 0xfc, 0x78, 0xf1, 0x1e, 0x54, 0xe3, 0x73, 0xaf, 0xf8, 0x15, + 0x43, 0xb2, 0x89, 0x41, 0x5d, 0x97, 0x72, 0x9d, 0xe5, 0x4b, 0xb9, 0x4e, 0xb1, 0x0b, 0x57, 0x58, + 0xf3, 0x26, 0x97, 0x48, 0x52, 0x42, 0xb7, 0x66, 0xe2, 0x06, 0xce, 0x95, 0x27, 0x57, 0x52, 0x79, + 0x8e, 0xee, 0x71, 0x01, 0x39, 0x58, 0x87, 0xab, 0x73, 0x86, 0x7d, 0x93, 0xaa, 0x89, 0xbe, 0x04, + 0x9d, 0xd1, 0xb9, 0x37, 0x72, 0x26, 0x32, 0x8a, 0xcd, 0x49, 0x40, 0x6e, 0xa2, 0xb2, 0x9c, 0x55, + 0xa3, 0x1c, 0x47, 0xfa, 0x07, 0xd0, 0x7e, 0x26, 0x65, 0x68, 0xc8, 0x28, 0xf0, 0x3d, 0x76, 0x8e, + 0x54, 0x8e, 0x9a, 0xcd, 0xb4, 0x82, 0xf4, 0xff, 0x0b, 0x9a, 0x61, 0x1e, 0xc5, 0x1b, 0x66, 0x6c, + 0x9d, 0x7c, 0x93, 0xa4, 0xc7, 0x07, 0xd0, 0x08, 0x98, 0xa7, 0x54, 0x74, 0xd7, 0x26, 0x73, 0xad, + 0xf8, 0xcc, 0x48, 0x3a, 0xf5, 0xff, 0x03, 0x57, 0x0f, 0xa6, 0x87, 0x91, 0x15, 0x3a, 0x14, 0x28, + 0x27, 0xa6, 0x6c, 0x00, 0xcd, 0x20, 0x94, 0x47, 0xce, 0xb9, 0x4c, 0x38, 0x38, 0x85, 0xc5, 0x1d, + 0x68, 0x4c, 0xf0, 0x38, 0x32, 0x93, 0x8d, 0x2c, 0x24, 0x7c, 0x8a, 0x3d, 0x46, 0x32, 0x40, 0xff, + 0x1e, 0x5c, 0x2b, 0x2e, 0xaf, 0xae, 0x7b, 0x0b, 0x2a, 0xa7, 0x67, 0x91, 0xba, 0xc5, 0x62, 0x21, + 0xa4, 0xa4, 0x0f, 0x0d, 0xb0, 0x57, 0xff, 0x8b, 0x12, 0x54, 0xf6, 0xa6, 0x93, 0xfc, 0xd7, 0x52, + 0x55, 0xfe, 0x5a, 0xea, 0x46, 0x3e, 0x5d, 0xcc, 0x21, 0x4a, 0x96, 0x16, 0x7e, 0x07, 0xb4, 0x23, + 0x3f, 0xfc, 0xb9, 0x19, 0xda, 0xd2, 0x56, 0x06, 0x2e, 0x43, 0x90, 0x67, 0x3a, 0x9d, 0x04, 0x4a, + 0x7b, 0x52, 0x5b, 0xdc, 0x56, 0x26, 0x92, 0xc3, 0x86, 0x45, 0x24, 0xea, 0xde, 0x74, 0xb2, 0xea, + 0x4a, 0x33, 0x22, 0x5d, 0xce, 0x56, 0x53, 0xbf, 0x0b, 0x5a, 0x8a, 0x42, 0xfd, 0xb3, 0x77, 0x30, + 0xde, 0xd9, 0xe2, 0x14, 0x1c, 0x3a, 0xd8, 0x25, 0xd4, 0x3d, 0xa3, 0x1f, 0xed, 0x8d, 0x47, 0x07, + 0xbd, 0xb2, 0xfe, 0x13, 0x68, 0x25, 0xec, 0xb9, 0x63, 0x53, 0xbd, 0x89, 0xe4, 0x63, 0xc7, 0x2e, + 0x88, 0xcb, 0x0e, 0x45, 0x40, 0xd2, 0xb3, 0x77, 0x12, 0xbe, 0x66, 0xa0, 0x78, 0x43, 0x55, 0xbc, + 0x4a, 0x6e, 0xa8, 0x0f, 0x61, 0xd1, 0xa0, 0xbc, 0x39, 0xda, 0xb5, 0xe4, 0xc9, 0xae, 0x43, 0xdd, + 0xf3, 0x6d, 0x99, 0x6e, 0xa0, 0x20, 0xdc, 0x59, 0x79, 0x21, 0x4a, 0x63, 0x24, 0xa0, 0x2e, 0x61, + 0x11, 0x95, 0x90, 0xaa, 0xab, 0xaa, 0x65, 0x0a, 0x39, 0xdd, 0xd2, 0x4c, 0x4e, 0x17, 0x37, 0x51, + 0x85, 0x59, 0x76, 0x27, 0x92, 0x62, 0xec, 0x00, 0x9a, 0x76, 0x14, 0x93, 0xd4, 0x28, 0xd5, 0x93, + 0xc2, 0xfa, 0x7d, 0xb8, 0xba, 0x1e, 0x04, 0xee, 0x45, 0x52, 0xec, 0x52, 0x1b, 0xf5, 0xb3, 0x8a, + 0x58, 0x49, 0x85, 0x5d, 0x0c, 0xea, 0xdb, 0xd0, 0x4e, 0x02, 0xf8, 0xa7, 0x32, 0x36, 0x49, 0xa1, + 0xb8, 0x4e, 0x21, 0x82, 0x6d, 0x32, 0x62, 0x54, 0xcc, 0x1c, 0xcf, 0xdc, 0x6f, 0x15, 0xea, 0x4a, + 0x5b, 0x09, 0xa8, 0x5a, 0xbe, 0xcd, 0x1b, 0xd5, 0x0c, 0x6a, 0x23, 0x57, 0x4d, 0xa2, 0xe3, 0xc4, + 0xa1, 0x9c, 0x44, 0xc7, 0xfa, 0xdf, 0x97, 0xa1, 0xb3, 0x41, 0xe9, 0x92, 0xe4, 0x8c, 0xb9, 0x24, + 0x61, 0xa9, 0x90, 0x24, 0xcc, 0x27, 0x04, 0xcb, 0x85, 0x84, 0x60, 0xe1, 0x40, 0x95, 0xa2, 0x17, + 0xf8, 0x36, 0x34, 0xa6, 0x9e, 0x73, 0x9e, 0xa8, 0x61, 0xcd, 0xa8, 0x23, 0x38, 0x8a, 0xc4, 0x32, + 0xb4, 0x50, 0x53, 0x3b, 0x1e, 0x27, 0xe1, 0x38, 0x93, 0x96, 0x47, 0xcd, 0xa4, 0xda, 0xea, 0xaf, + 0x4f, 0xb5, 0x35, 0xde, 0x98, 0x6a, 0x6b, 0xbe, 0x29, 0xd5, 0xa6, 0xcd, 0xa6, 0xda, 0x8a, 0x1e, + 0x2c, 0x5c, 0xf2, 0x60, 0xdf, 0x05, 0xe0, 0xaf, 0x47, 0x8e, 0xa6, 0xae, 0xab, 0xdc, 0x02, 0x8d, + 0x30, 0xdb, 0x53, 0xd7, 0xd5, 0x77, 0xa1, 0x9b, 0x90, 0x56, 0xa9, 0x80, 0x4f, 0xe1, 0x8a, 0x4a, + 0xa2, 0xcb, 0x50, 0xe5, 0xa1, 0xd8, 0x08, 0x90, 0xfc, 0x71, 0x9e, 0x5b, 0xf5, 0x18, 0x5d, 0x3b, + 0x0f, 0x46, 0xfa, 0xaf, 0x4b, 0xd0, 0x29, 0x8c, 0x10, 0x0f, 0xb3, 0x94, 0x7c, 0x89, 0xa4, 0xb8, + 0x7f, 0x69, 0x95, 0xd7, 0xa7, 0xe5, 0xcb, 0x33, 0x69, 0x79, 0xfd, 0x5e, 0x9a, 0x6c, 0x57, 0x29, + 0xf6, 0x85, 0x34, 0xc5, 0x4e, 0x59, 0xe9, 0xf5, 0xd1, 0xc8, 0xe8, 0x95, 0x45, 0x1d, 0xca, 0x7b, + 0x07, 0xbd, 0x8a, 0xfe, 0x67, 0x65, 0xe8, 0x0c, 0xcf, 0x03, 0xfa, 0x92, 0xea, 0x8d, 0xe1, 0x40, + 0x8e, 0xaf, 0xca, 0x05, 0xbe, 0xca, 0x71, 0x48, 0x45, 0xd5, 0x18, 0x99, 0x43, 0x30, 0x40, 0xe0, + 0xc4, 0x9f, 0xe2, 0x1c, 0x86, 0xfe, 0x27, 0x70, 0x4e, 0x41, 0xa3, 0xc0, 0x6c, 0x95, 0x68, 0x17, + 0xba, 0x09, 0xd9, 0x14, 0x63, 0x7c, 0x2d, 0x61, 0xe5, 0x6f, 0x24, 0xdd, 0x34, 0x0f, 0xc5, 0x80, + 0xfe, 0xc7, 0x65, 0xd0, 0x98, 0xcf, 0xf0, 0xf0, 0x1f, 0x29, 0xbd, 0x5e, 0xca, 0x0a, 0x12, 0x69, + 0xe7, 0xea, 0x13, 0x79, 0x91, 0xe9, 0xf6, 0xb9, 0x45, 0x3c, 0x95, 0xad, 0xe2, 0x80, 0x9d, 0xb2, + 0x55, 0x37, 0x40, 0x63, 0xaf, 0x67, 0xaa, 0xb2, 0xe1, 0x55, 0x83, 0xdd, 0xa0, 0xe7, 0x0e, 0x59, + 0x96, 0x58, 0x86, 0x13, 0xf5, 0x06, 0xd4, 0x2e, 0x86, 0x46, 0x9d, 0xc4, 0x59, 0x2f, 0x50, 0xa4, + 0x31, 0x4b, 0x91, 0x13, 0x68, 0xa8, 0xb3, 0xa1, 0x67, 0xfb, 0x7c, 0xef, 0xc9, 0xde, 0xfe, 0x0f, + 0xf7, 0x0a, 0xdc, 0x97, 0xfa, 0xbe, 0xe5, 0xbc, 0xef, 0x5b, 0x41, 0xfc, 0xe6, 0xfe, 0xf3, 0xbd, + 0x51, 0xaf, 0x2a, 0x3a, 0xa0, 0x51, 0x73, 0x6c, 0x0c, 0x5f, 0xf4, 0x6a, 0x94, 0xec, 0xd9, 0xfc, + 0x6c, 0xf8, 0x74, 0xbd, 0x57, 0x4f, 0xcb, 0x43, 0x0d, 0xfd, 0x8f, 0x4a, 0xb0, 0xc8, 0x04, 0xc9, + 0xe7, 0x3d, 0xf2, 0x5f, 0x2f, 0x57, 0xf9, 0xeb, 0xe5, 0xff, 0xde, 0x54, 0x07, 0x4e, 0x9a, 0x3a, + 0x49, 0x41, 0x96, 0x73, 0x70, 0xcd, 0xa9, 0xa3, 0xea, 0xb0, 0x7f, 0x5d, 0x82, 0x01, 0xbb, 0xdc, + 0x8f, 0x43, 0x33, 0x38, 0xf9, 0xc1, 0xee, 0xa5, 0xa0, 0xfb, 0x55, 0x8e, 0xe8, 0x6d, 0xe8, 0xd2, + 0xf7, 0xdd, 0x3f, 0x73, 0xc7, 0x2a, 0x30, 0xe4, 0xd7, 0xed, 0x28, 0x2c, 0x2f, 0x24, 0x1e, 0x41, + 0x9b, 0xbf, 0x03, 0xa7, 0xa4, 0x74, 0xa1, 0x98, 0x58, 0x70, 0xf8, 0x5b, 0x3c, 0x8a, 0x4b, 0x9f, + 0x0f, 0xd3, 0x49, 0x59, 0x7c, 0x7e, 0xb9, 0x5e, 0xa8, 0xa6, 0x8c, 0x28, 0x6a, 0xbf, 0x0f, 0x37, + 0xe6, 0xde, 0x43, 0xb1, 0x7d, 0x2e, 0x37, 0xca, 0xdc, 0xa6, 0xff, 0x43, 0x09, 0x9a, 0x1b, 0x53, + 0xf7, 0x94, 0x8c, 0xe0, 0xbb, 0x00, 0xd2, 0x3e, 0x96, 0xea, 0x83, 0xea, 0x12, 0x29, 0x07, 0x0d, + 0x31, 0xfc, 0x49, 0xf5, 0xa7, 0x00, 0x7c, 0xc7, 0xf1, 0xc4, 0x0c, 0xd4, 0x13, 0x51, 0x71, 0x2f, + 0x59, 0x40, 0xdd, 0xe5, 0xa9, 0x19, 0xa8, 0xe2, 0x5e, 0x94, 0xc0, 0x59, 0xd1, 0xb3, 0xf2, 0x9a, + 0xa2, 0xe7, 0x60, 0x0f, 0xba, 0xc5, 0x25, 0xe6, 0xe4, 0xa4, 0x3e, 0x28, 0x7e, 0x58, 0x72, 0x99, + 0x86, 0x39, 0x17, 0xf9, 0x73, 0xb8, 0x32, 0x93, 0xdf, 0x7e, 0x9d, 0xc6, 0x2c, 0x88, 0x4c, 0x79, + 0x56, 0x64, 0x3e, 0x86, 0xc5, 0x91, 0x19, 0x9d, 0xaa, 0xb0, 0x21, 0x33, 0xde, 0xb1, 0x19, 0x9d, + 0x8e, 0x53, 0xa2, 0xd6, 0x11, 0xdc, 0xb1, 0xf5, 0x87, 0x20, 0xf2, 0xa3, 0x15, 0xfd, 0x31, 0x1c, + 0xc4, 0xe1, 0x13, 0x19, 0x9b, 0x89, 0x97, 0x81, 0x08, 0x24, 0xde, 0xda, 0x5f, 0x95, 0xa0, 0x8a, + 0x7e, 0xb6, 0xb8, 0x07, 0xda, 0x67, 0xd2, 0x0c, 0xe3, 0x43, 0x69, 0xc6, 0xa2, 0xe0, 0x53, 0x0f, + 0x88, 0x6e, 0xd9, 0xc7, 0x2a, 0xfa, 0xc2, 0x83, 0x92, 0x58, 0xe5, 0x8f, 0x64, 0x93, 0x8f, 0x7f, + 0x3b, 0x89, 0xbf, 0x4e, 0xfe, 0xfc, 0xa0, 0x30, 0x5f, 0x5f, 0x58, 0xa1, 0xf1, 0x9f, 0xfb, 0x8e, + 0xb7, 0xc9, 0x9f, 0x66, 0x8a, 0x59, 0xff, 0x7e, 0x76, 0x86, 0xb8, 0x07, 0xf5, 0x9d, 0x08, 0x03, + 0x89, 0xcb, 0x43, 0x89, 0xf8, 0xf9, 0x18, 0x43, 0x5f, 0x58, 0xfb, 0x45, 0x0d, 0xaa, 0x3f, 0x91, + 0xa1, 0x2f, 0x3e, 0x86, 0x86, 0xfa, 0xb4, 0x47, 0xe4, 0x3e, 0xe1, 0x19, 0x50, 0x4e, 0x63, 0xe6, + 0x9b, 0x1f, 0xda, 0xa5, 0xc7, 0xef, 0x97, 0x55, 0x75, 0x44, 0xf6, 0xe5, 0xd1, 0xa5, 0x43, 0x7d, + 0x02, 0xbd, 0x83, 0x38, 0x94, 0xe6, 0x24, 0x37, 0xbc, 0x48, 0xaa, 0x79, 0x25, 0x22, 0xa2, 0xd7, + 0x5d, 0xa8, 0x73, 0xb4, 0x36, 0x33, 0x61, 0xb6, 0xfe, 0x43, 0x83, 0x3f, 0x84, 0xd6, 0xc1, 0x89, + 0x3f, 0x75, 0xed, 0x03, 0x19, 0x9e, 0x49, 0x91, 0xfb, 0x48, 0x70, 0x90, 0x6b, 0xeb, 0x0b, 0xe2, + 0x43, 0xd0, 0xd8, 0x17, 0x47, 0x4f, 0xbc, 0xa1, 0xdc, 0x7b, 0x5e, 0x33, 0xe7, 0xa3, 0xeb, 0x0b, + 0x62, 0x05, 0x20, 0x17, 0xb3, 0xbd, 0x6e, 0xe4, 0x23, 0xe8, 0x6c, 0x92, 0x5a, 0xdb, 0x0f, 0xd7, + 0x0f, 0xfd, 0x30, 0x16, 0xb3, 0x5f, 0x05, 0x0e, 0x66, 0x11, 0xfa, 0x82, 0x78, 0x00, 0xcd, 0x51, + 0x78, 0xc1, 0xe3, 0x17, 0x55, 0xa8, 0x9b, 0xed, 0x37, 0xe7, 0x92, 0xe2, 0xdb, 0xa9, 0x90, 0xa4, + 0x2e, 0xf8, 0xbc, 0xca, 0x10, 0xdf, 0x97, 0x19, 0x5a, 0x5f, 0x10, 0x0f, 0x01, 0xb2, 0xf8, 0x40, + 0xbc, 0xc5, 0x55, 0xaa, 0x99, 0x78, 0xe1, 0xf2, 0x94, 0x2c, 0x16, 0xe0, 0x29, 0x97, 0x62, 0x83, + 0x99, 0x29, 0xdf, 0x81, 0x76, 0xde, 0xaf, 0x17, 0x54, 0x6e, 0x99, 0xe3, 0xe9, 0x17, 0xa7, 0xad, + 0xfd, 0x5b, 0x0d, 0xea, 0x3f, 0xf4, 0xc3, 0x53, 0x19, 0x8a, 0x3b, 0x50, 0xa7, 0x7a, 0xa3, 0x12, + 0x8c, 0xb4, 0xf6, 0x38, 0x8f, 0x76, 0xef, 0x83, 0x46, 0xcf, 0x8c, 0x92, 0xcb, 0xcc, 0x47, 0xff, + 0x56, 0xe1, 0xc5, 0x39, 0x03, 0x48, 0x9c, 0xda, 0x65, 0xd6, 0x4b, 0xeb, 0xf1, 0x85, 0x7a, 0xe0, + 0x80, 0x9e, 0xf4, 0xc9, 0x8b, 0x03, 0x14, 0xb6, 0x07, 0x25, 0x74, 0x10, 0x0e, 0xf8, 0xf1, 0x70, + 0x50, 0xf6, 0x95, 0x3e, 0xcb, 0x72, 0xf6, 0x59, 0xbc, 0xbe, 0x20, 0xee, 0x43, 0x5d, 0xd9, 0x8b, + 0xc5, 0x4c, 0xab, 0x25, 0x37, 0xec, 0xe5, 0x51, 0x6a, 0xc2, 0x43, 0xa8, 0xb3, 0x6d, 0xe5, 0x09, + 0x85, 0xc0, 0x62, 0x20, 0xf2, 0xa8, 0x44, 0x3c, 0xc5, 0x5d, 0x68, 0xa8, 0x6a, 0xa2, 0x98, 0x53, + 0x5a, 0xbc, 0xf4, 0x62, 0x75, 0x76, 0x9c, 0x78, 0xfd, 0x82, 0xef, 0xc9, 0xeb, 0x17, 0xfd, 0x2a, + 0x96, 0x63, 0x43, 0x5a, 0xd2, 0xc9, 0x25, 0x9e, 0x44, 0x42, 0x91, 0x39, 0xca, 0xe8, 0x13, 0xe8, + 0x14, 0x92, 0x54, 0xa2, 0x9f, 0xb0, 0xc5, 0x6c, 0xde, 0xea, 0x92, 0x0a, 0xf8, 0x1e, 0x68, 0x2a, + 0xee, 0x3f, 0x54, 0x8c, 0x31, 0x27, 0xcb, 0x30, 0xb8, 0x1c, 0xf8, 0x93, 0x5c, 0xff, 0x08, 0xae, + 0xce, 0x31, 0x94, 0x82, 0xbe, 0x06, 0x7d, 0xb5, 0x27, 0x30, 0x58, 0x7a, 0x65, 0x7f, 0x4a, 0x80, + 0xdf, 0x4d, 0x9c, 0xbe, 0x0f, 0x90, 0xd9, 0x0b, 0x96, 0x8d, 0x4b, 0xd6, 0x66, 0x70, 0x7d, 0x16, + 0x9d, 0x6c, 0xba, 0xd1, 0xff, 0x9b, 0xaf, 0x6e, 0x96, 0x7e, 0xf3, 0xd5, 0xcd, 0xd2, 0x3f, 0x7f, + 0x75, 0xb3, 0xf4, 0xeb, 0xdf, 0xde, 0x5c, 0xf8, 0xcd, 0x6f, 0x6f, 0x2e, 0xfc, 0xdd, 0x6f, 0x6f, + 0x2e, 0x1c, 0xd6, 0xe9, 0x6f, 0x63, 0x8f, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, 0x58, 0xdd, 0x61, + 0xf6, 0xac, 0x36, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9218,6 +9228,13 @@ func (m *Proposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.StartTs != 0 { + i = encodeVarintPb(dAtA, i, uint64(m.StartTs)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x80 + } if m.DeleteNs != nil { { size, err := m.DeleteNs.MarshalToSizedBuffer(dAtA[:i]) @@ -12541,6 +12558,9 @@ func (m *Proposal) Size() (n int) { l = m.DeleteNs.Size() n += 1 + l + sovPb(uint64(l)) } + if m.StartTs != 0 { + n += 2 + sovPb(uint64(m.StartTs)) + } return n } @@ -19616,6 +19636,25 @@ func (m *Proposal) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 16: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) + } + m.StartTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipPb(dAtA[iNdEx:]) diff --git a/schema/schema.go b/schema/schema.go index c7120325e4c..ce67e9c548c 100644 --- a/schema/schema.go +++ b/schema/schema.go @@ -21,6 +21,7 @@ import ( "context" "encoding/hex" "fmt" + "math" "sync" "github.com/golang/glog" @@ -96,17 +97,17 @@ func (s *state) DeleteAll() { } // Delete updates the schema in memory and disk -func (s *state) Delete(attr string) error { +func (s *state) Delete(attr string, ts uint64) error { s.Lock() defer s.Unlock() glog.Infof("Deleting schema for predicate: [%s]", attr) - txn := pstore.NewTransactionAt(1, true) + txn := pstore.NewTransactionAt(ts, true) if err := txn.Delete(x.SchemaKey(attr)); err != nil { return err } // Delete is called rarely so sync write should be fine. - if err := txn.CommitAt(1, nil); err != nil { + if err := txn.CommitAt(ts, nil); err != nil { return err } @@ -116,7 +117,7 @@ func (s *state) Delete(attr string) error { } // DeleteType updates the schema in memory and disk -func (s *state) DeleteType(typeName string) error { +func (s *state) DeleteType(typeName string, ts uint64) error { if s == nil { return nil } @@ -125,12 +126,12 @@ func (s *state) DeleteType(typeName string) error { defer s.Unlock() glog.Infof("Deleting type definition for type: [%s]", typeName) - txn := pstore.NewTransactionAt(1, true) + txn := pstore.NewTransactionAt(ts, true) if err := txn.Delete(x.TypeKey(typeName)); err != nil { return err } // Delete is called rarely so sync write should be fine. - if err := txn.CommitAt(1, nil); err != nil { + if err := txn.CommitAt(ts, nil); err != nil { return err } @@ -466,14 +467,14 @@ func Init(ps *badger.DB) { reset() } -// Load reads the schema for the given predicate from the DB. +// Load reads the latest schema for the given predicate from the DB. func Load(predicate string) error { if len(predicate) == 0 { return errors.Errorf("Empty predicate") } delete(State().mutSchema, predicate) key := x.SchemaKey(predicate) - txn := pstore.NewTransactionAt(1, false) + txn := pstore.NewTransactionAt(math.MaxUint64, false) defer txn.Discard() item, err := txn.Get(key) if err == badger.ErrKeyNotFound || err == badger.ErrBannedKey { @@ -507,7 +508,7 @@ func LoadFromDb() error { // LoadSchemaFromDb iterates through the DB and loads all the stored schema updates. func LoadSchemaFromDb() error { prefix := x.SchemaPrefix() - txn := pstore.NewTransactionAt(1, false) + txn := pstore.NewTransactionAt(math.MaxUint64, false) defer txn.Discard() itr := txn.NewIterator(badger.DefaultIteratorOptions) // Need values, reversed=false. defer itr.Close() @@ -543,7 +544,7 @@ func LoadSchemaFromDb() error { // LoadTypesFromDb iterates through the DB and loads all the stored type updates. func LoadTypesFromDb() error { prefix := x.TypePrefix() - txn := pstore.NewTransactionAt(1, false) + txn := pstore.NewTransactionAt(math.MaxUint64, false) defer txn.Discard() itr := txn.NewIterator(badger.DefaultIteratorOptions) // Need values, reversed=false. defer itr.Close() diff --git a/systest/backup/encryption/backup_test.go b/systest/backup/encryption/backup_test.go index 19c9653d781..4ccf62151b0 100644 --- a/systest/backup/encryption/backup_test.go +++ b/systest/backup/encryption/backup_test.go @@ -104,13 +104,13 @@ func TestBackupMinioE(t *testing.T) { t.Log("Pausing to let zero move tablet...") moveOk := false for retry := 5; retry > 0; retry-- { - time.Sleep(3 * time.Second) state, err := testutil.GetStateHttps(testutil.GetAlphaClientConfig(t)) require.NoError(t, err) if _, ok := state.Groups["1"].Tablets[tabletName]; ok { moveOk = true break } + time.Sleep(1 * time.Second) } require.True(t, moveOk) diff --git a/systest/backup/filesystem/backup_test.go b/systest/backup/filesystem/backup_test.go index ac5cc3d1186..8ba4ebae6f8 100644 --- a/systest/backup/filesystem/backup_test.go +++ b/systest/backup/filesystem/backup_test.go @@ -139,7 +139,6 @@ func TestBackupOfOldRestore(t *testing.T) { require.NoError(t, err) testutil.DropAll(t, dg) - time.Sleep(2 * time.Second) _ = runBackup(t, 3, 1) @@ -155,7 +154,6 @@ func TestBackupOfOldRestore(t *testing.T) { // Clean the cluster and try restoring the backups created above. testutil.DropAll(t, dg) - time.Sleep(2 * time.Second) sendRestoreRequest(t, alphaBackupDir) testutil.WaitForRestore(t, dg) @@ -214,13 +212,13 @@ func TestBackupFilesystem(t *testing.T) { t.Log("Pausing to let zero move tablet...") moveOk := false for retry := 5; retry > 0; retry-- { - time.Sleep(3 * time.Second) state, err := testutil.GetStateHttps(testutil.GetAlphaClientConfig(t)) require.NoError(t, err) if _, ok := state.Groups["1"].Tablets[x.NamespaceAttr(x.GalaxyNamespace, "movie")]; ok { moveOk = true break } + time.Sleep(1 * time.Second) } require.True(t, moveOk) diff --git a/systest/backup/minio-large/backup_test.go b/systest/backup/minio-large/backup_test.go index 137daf91c79..eb6019b6c7e 100644 --- a/systest/backup/minio-large/backup_test.go +++ b/systest/backup/minio-large/backup_test.go @@ -110,7 +110,6 @@ func setupTablets(t *testing.T, dg *dgo.Dgraph) { t.Log("Pausing to let zero move tablets...") moveOk := false for retry := 5; retry > 0; retry-- { - time.Sleep(3 * time.Second) state, err := testutil.GetStateHttps(testutil.GetAlphaClientConfig(t)) require.NoError(t, err) _, ok1 := state.Groups["1"].Tablets[x.GalaxyAttr("name1")] @@ -120,6 +119,7 @@ func setupTablets(t *testing.T, dg *dgo.Dgraph) { moveOk = true break } + time.Sleep(1 * time.Second) } require.True(t, moveOk) } diff --git a/systest/backup/minio/backup_test.go b/systest/backup/minio/backup_test.go index b759dae2ce0..fb3c20c7c70 100644 --- a/systest/backup/minio/backup_test.go +++ b/systest/backup/minio/backup_test.go @@ -99,13 +99,13 @@ func TestBackupMinio(t *testing.T) { t.Log("Pausing to let zero move tablet...") moveOk := false for retry := 5; retry > 0; retry-- { - time.Sleep(3 * time.Second) state, err := testutil.GetStateHttps(testutil.GetAlphaClientConfig(t)) require.NoError(t, err) if _, ok := state.Groups["1"].Tablets[x.NamespaceAttr(x.GalaxyNamespace, "movie")]; ok { moveOk = true break } + time.Sleep(1 * time.Second) } require.True(t, moveOk) diff --git a/testutil/backup.go b/testutil/backup.go index a98b348c878..8e637a4ecff 100644 --- a/testutil/backup.go +++ b/testutil/backup.go @@ -20,6 +20,7 @@ import ( "context" "fmt" "io/ioutil" + "math" "net/http" "strings" "testing" @@ -178,8 +179,7 @@ func readSchema(pdir string, dType dataType) ([]string, error) { defer db.Close() values := make([]string, 0) - // Predicates and types in the schema are written with timestamp 1. - txn := db.NewTransactionAt(1, false) + txn := db.NewTransactionAt(math.MaxUint64, false) defer txn.Discard() itr := txn.NewIterator(badger.DefaultIteratorOptions) defer itr.Close() diff --git a/worker/backup_ee.go b/worker/backup_ee.go index e2bbaf05c12..38a5e319035 100644 --- a/worker/backup_ee.go +++ b/worker/backup_ee.go @@ -63,7 +63,7 @@ func backupCurrentGroup(ctx context.Context, req *pb.BackupRequest) (*pb.BackupR return nil, err } - closer, err := g.Node.startTask(opBackup) + closer, err := g.Node.startTaskAtTs(opBackup, req.ReadTs) if err != nil { return nil, errors.Wrapf(err, "cannot start backup operation") } @@ -460,8 +460,7 @@ func (pr *BackupProcessor) WriteBackup(ctx context.Context) (*pb.BackupResponse, } defer tl.alloc.Release() - // Schema and types are written at Ts=1. - txn := pr.DB.NewTransactionAt(1, false) + txn := pr.DB.NewTransactionAt(pr.Request.ReadTs, false) defer txn.Discard() // We don't need to iterate over all versions. iopts := badger.DefaultIteratorOptions diff --git a/worker/draft.go b/worker/draft.go index fd1d293de30..844150c093b 100644 --- a/worker/draft.go +++ b/worker/draft.go @@ -52,6 +52,11 @@ import ( "github.com/dgraph-io/ristretto/z" ) +type operation struct { + *z.Closer + ts uint64 +} + type node struct { // This needs to be 64 bit aligned for atomics to work on 32 bit machine. pendingSize int64 @@ -69,7 +74,7 @@ type node struct { streaming int32 // Used to avoid calculating snapshot // Used to track the ops going on in the system. - ops map[op]*z.Closer + ops map[op]operation opsLock sync.Mutex cdcTracker *CDC canCampaign bool @@ -108,13 +113,20 @@ const ( opPredMove ) -// startTask is used to check whether an op is already running. If a rollup is running, +// startTask is used for the tasks that do not require tracking of timestamp. +// Currently, only the timestamps for backup and indexing needs to be tracked because they can +// run concurrently. +func (n *node) startTask(id op) (*z.Closer, error) { + return n.startTaskAtTs(id, 0) +} + +// startTaskAtTs is used to check whether an op is already running. If a rollup is running, // it is canceled and startTask will wait until it completes before returning. // If the same task is already running, this method returns an errror. // Restore operations have preference and cancel all other operations, not just rollups. // You should only call Done() on the returned closer. Calling other functions (such as // SignalAndWait) for closer could result in panics. For more details, see GitHub issue #5034. -func (n *node) startTask(id op) (*z.Closer, error) { +func (n *node) startTaskAtTs(id op, ts uint64) (*z.Closer, error) { n.opsLock.Lock() defer n.opsLock.Unlock() @@ -143,31 +155,50 @@ func (n *node) startTask(id op) (*z.Closer, error) { case opRestore: // Restores cancel all other operations, except for other restores since // only one restore operation should be active any given moment. - for otherId, otherCloser := range n.ops { + for otherId, otherOp := range n.ops { if otherId == opRestore { return nil, errors.Errorf("another restore operation is already running") } // Remove from map and signal the closer to cancel the operation. delete(n.ops, otherId) - otherCloser.SignalAndWait() + otherOp.SignalAndWait() } case opBackup: // Backup cancels all other operations, except for other backups since - // only one restore operation should be active any given moment. - for otherId, otherCloser := range n.ops { + // only one backup operation should be active any given moment. Also, indexing at higher + // timestamp can also run concurrently with backup. + for otherId, otherOp := range n.ops { if otherId == opBackup { return nil, errors.Errorf("another backup operation is already running") } // Remove from map and signal the closer to cancel the operation. delete(n.ops, otherId) - otherCloser.SignalAndWait() + otherOp.SignalAndWait() } - case opSnapshot, opIndexing, opPredMove: - for otherId, otherCloser := range n.ops { + case opIndexing: + for otherId, otherOp := range n.ops { + switch otherId { + case opBackup: + if otherOp.ts < ts { + // If backup is running at higher timestamp, then indexing can't be executed. + continue + } else { + return nil, errors.Errorf("operation %s is already running", otherId) + } + case opRollup: + // Remove from map and signal the closer to cancel the operation. + delete(n.ops, otherId) + otherOp.SignalAndWait() + default: + return nil, errors.Errorf("operation %s is already running", otherId) + } + } + case opSnapshot, opPredMove: + for otherId, otherOp := range n.ops { if otherId == opRollup { // Remove from map and signal the closer to cancel the operation. delete(n.ops, otherId) - otherCloser.SignalAndWait() + otherOp.SignalAndWait() } else { return nil, errors.Errorf("operation %s is already running", otherId) } @@ -177,7 +208,7 @@ func (n *node) startTask(id op) (*z.Closer, error) { return nil, nil } - n.ops[id] = closer + n.ops[id] = operation{Closer: closer, ts: ts} glog.Infof("Operation started with id: %s", id) go func(id op, closer *z.Closer) { closer.Wait() @@ -259,7 +290,7 @@ func newNode(store *raftwal.DiskStorage, gid uint32, id uint64, myAddr string) * applyCh: make(chan []raftpb.Entry, 1000), elog: trace.NewEventLog("Dgraph", "ApplyCh"), closer: z.NewCloser(4), // Matches CLOSER:1 - ops: make(map[op]*z.Closer), + ops: make(map[op]operation), cdcTracker: newCDC(), } if x.WorkerConfig.LudicrousEnabled { @@ -350,17 +381,20 @@ func (n *node) applyMutations(ctx context.Context, proposal *pb.Proposal) (rerr // Clear entire cache. posting.ResetCache() + // It should be okay to set the schema at timestamp 1 after drop all operation. if groups().groupId() == 1 { initialSchema := schema.InitialSchema(x.GalaxyNamespace) for _, s := range initialSchema { - applySchema(s) + if err := applySchema(s, 1); err != nil { + return err + } } } // Propose initial types as well after a drop all as they would have been cleared. initialTypes := schema.InitialTypes(x.GalaxyNamespace) for _, t := range initialTypes { - if err := updateType(t.GetTypeName(), *t); err != nil { + if err := updateType(t.GetTypeName(), *t, 1); err != nil { return err } } @@ -369,7 +403,7 @@ func (n *node) applyMutations(ctx context.Context, proposal *pb.Proposal) (rerr } if proposal.Mutations.DropOp == pb.Mutations_TYPE { - return schema.State().DeleteType(proposal.Mutations.DropValue) + return schema.State().DeleteType(proposal.Mutations.DropValue, proposal.StartTs) } if proposal.Mutations.StartTs == 0 { @@ -411,7 +445,7 @@ func (n *node) applyMutations(ctx context.Context, proposal *pb.Proposal) (rerr } for _, tupdate := range proposal.Mutations.Types { - if err := runTypeMutation(ctx, tupdate); err != nil { + if err := runTypeMutation(ctx, tupdate, startTs); err != nil { return err } } @@ -436,7 +470,7 @@ func (n *node) applyMutations(ctx context.Context, proposal *pb.Proposal) (rerr return err } span.Annotatef(nil, "Deleting predicate: %s", edge.Attr) - return posting.DeletePredicate(ctx, edge.Attr) + return posting.DeletePredicate(ctx, edge.Attr, proposal.StartTs) } // Don't derive schema when doing deletion. if edge.Op == pb.DirectedEdge_DEL { @@ -466,7 +500,7 @@ func (n *node) applyMutations(ctx context.Context, proposal *pb.Proposal) (rerr if mutHint, ok := proposal.GetMutations().GetMetadata().GetPredHints()[attr]; ok { hint = mutHint } - if err := createSchema(attr, storageType, hint); err != nil { + if err = createSchema(attr, storageType, hint, proposal.StartTs); err != nil { return err } } @@ -592,7 +626,7 @@ func (n *node) applyCommitted(proposal *pb.Proposal, key uint64) error { proposal.CleanPredicate, proposal.ExpectedChecksum) return nil } - return posting.DeletePredicate(ctx, proposal.CleanPredicate) + return posting.DeletePredicate(ctx, proposal.CleanPredicate, proposal.StartTs) case proposal.Delta != nil: n.elog.Printf("Applying Oracle Delta for key: %d", key) @@ -680,6 +714,24 @@ func (n *node) processTabletSizes() { } } +func updateStartTs(p *pb.Proposal) { + switch { + case p.Mutations != nil: + p.StartTs = p.Mutations.StartTs + case p.Snapshot != nil: + p.StartTs = p.Snapshot.ReadTs + case p.Delta != nil: + p.StartTs = 0 // Run this asap. + case len(p.CleanPredicate) > 0 && p.StartTs == 0: + // proposal.StartTs did not exist earlier. So, it would be zero when reading an old + // proposal. This startTs is used for writing the schema. + // Hence, use the ts=1 for such proposals. + p.StartTs = 1 + default: + // For now, not covering everything. + } +} + func (n *node) processApplyCh() { defer n.closer.Done() // CLOSER:1 @@ -705,6 +757,7 @@ func (n *node) processApplyCh() { key := binary.BigEndian.Uint64(entry.Data[:8]) x.Check(proposal.Unmarshal(entry.Data[8:])) proposal.Index = entry.Index + updateStartTs(&proposal) // Ignore the start ts in case of ludicrous mode. We get a new ts and use that as the // commit ts. @@ -1355,7 +1408,7 @@ func (n *node) Run() { // Send the whole lot to applyCh in one go, instead of sending proposals one by one. if len(entries) > 0 { // Apply the meter this before adding size to pending size so some crazy big - // proposal can be pushed to applyCh. If this do this after adding its size to + // proposal can be pushed to applyCh. If we do this after adding its size to // pending size, we could block forever in rampMeter. rampMeter(&n.pendingSize, maxPendingSize, nodeApplyChan) var pendingSize int64 diff --git a/worker/groups.go b/worker/groups.go index 0a656d52c48..1c08073ca46 100644 --- a/worker/groups.go +++ b/worker/groups.go @@ -206,7 +206,8 @@ func (g *groupi) applyInitialTypes() { if _, ok := schema.State().GetType(t.TypeName); ok { continue } - if err := updateType(t.GetTypeName(), *t); err != nil { + // It is okay to write initial types at ts=1. + if err := updateType(t.GetTypeName(), *t, 1); err != nil { glog.Errorf("Error while applying initial type: %s", err) } } @@ -220,7 +221,10 @@ func (g *groupi) applyInitialSchema() { ctx := g.Ctx() apply := func(s *pb.SchemaUpdate) { - if err := applySchema(s); err != nil { + // There are 2 cases: either the alpha is fresh or it restarted. If it is fresh cluster + // then we can write the schema at ts=1. If alpha restarted, then we will already have the + // schema at higher version and this operation will be a no-op. + if err := applySchema(s, 1); err != nil { glog.Errorf("Error while applying initial schema: %s", err) } } @@ -246,8 +250,8 @@ func (g *groupi) applyInitialSchema() { } } -func applySchema(s *pb.SchemaUpdate) error { - if err := updateSchema(s); err != nil { +func applySchema(s *pb.SchemaUpdate, ts uint64) error { + if err := updateSchema(s, ts); err != nil { return err } if servesTablet, err := groups().ServesTablet(s.Predicate); err != nil { diff --git a/worker/mutation.go b/worker/mutation.go index 827f6a699c2..29cd76afff5 100644 --- a/worker/mutation.go +++ b/worker/mutation.go @@ -181,7 +181,7 @@ func runSchemaMutation(ctx context.Context, updates []*pb.SchemaUpdate, startTs if err := rebuild.BuildIndexes(wrtCtx); err != nil { return err } - if err := updateSchema(update); err != nil { + if err := updateSchema(update, rebuild.StartTs); err != nil { return err } @@ -249,7 +249,7 @@ func runSchemaMutation(ctx context.Context, updates []*pb.SchemaUpdate, startTs // Start opIndexing task only if schema update needs to build the indexes. if shouldRebuild && !gr.Node.isRunningTask(opIndexing) { - closer, err = gr.Node.startTask(opIndexing) + closer, err = gr.Node.startTaskAtTs(opIndexing, startTs) if err != nil { return err } @@ -280,7 +280,7 @@ func runSchemaMutation(ctx context.Context, updates []*pb.SchemaUpdate, startTs if shouldRebuild { go buildIndexes(su, rebuild, closer) - } else if err := updateSchema(su); err != nil { + } else if err := updateSchema(su, rebuild.StartTs); err != nil { return err } } @@ -290,25 +290,25 @@ func runSchemaMutation(ctx context.Context, updates []*pb.SchemaUpdate, startTs // updateSchema commits the schema to disk in blocking way, should be ok because this happens // only during schema mutations or we see a new predicate. -func updateSchema(s *pb.SchemaUpdate) error { +func updateSchema(s *pb.SchemaUpdate, ts uint64) error { schema.State().Set(s.Predicate, s) schema.State().DeleteMutSchema(s.Predicate) - txn := pstore.NewTransactionAt(1, true) + txn := pstore.NewTransactionAt(ts, true) defer txn.Discard() data, err := s.Marshal() x.Check(err) - err = txn.SetEntry(&badger.Entry{ + e := &badger.Entry{ Key: x.SchemaKey(s.Predicate), Value: data, UserMeta: posting.BitSchemaPosting, - }) - if err != nil { + } + if err = txn.SetEntry(e.WithDiscard()); err != nil { return err } - return txn.CommitAt(1, nil) + return txn.CommitAt(ts, nil) } -func createSchema(attr string, typ types.TypeID, hint pb.Metadata_HintType) error { +func createSchema(attr string, typ types.TypeID, hint pb.Metadata_HintType, ts uint64) error { ctx := schema.GetWriteContext(context.Background()) // Don't overwrite schema blindly, acl's might have been set even though @@ -335,32 +335,32 @@ func createSchema(attr string, typ types.TypeID, hint pb.Metadata_HintType) erro if err := checkSchema(&s); err != nil { return err } - return updateSchema(&s) + return updateSchema(&s, ts) } -func runTypeMutation(ctx context.Context, update *pb.TypeUpdate) error { +func runTypeMutation(ctx context.Context, update *pb.TypeUpdate, ts uint64) error { current := *update schema.State().SetType(update.TypeName, current) - return updateType(update.TypeName, *update) + return updateType(update.TypeName, *update, ts) } // We commit schema to disk in blocking way, should be ok because this happens // only during schema mutations or we see a new predicate. -func updateType(typeName string, t pb.TypeUpdate) error { +func updateType(typeName string, t pb.TypeUpdate, ts uint64) error { schema.State().SetType(typeName, t) - txn := pstore.NewTransactionAt(1, true) + txn := pstore.NewTransactionAt(ts, true) defer txn.Discard() data, err := t.Marshal() x.Check(err) - err = txn.SetEntry(&badger.Entry{ + e := &badger.Entry{ Key: x.TypeKey(typeName), Value: data, UserMeta: posting.BitSchemaPosting, - }) - if err != nil { + } + if err := txn.SetEntry(e.WithDiscard()); err != nil { return err } - return txn.CommitAt(1, nil) + return txn.CommitAt(ts, nil) } func hasEdges(attr string, startTs uint64) bool { diff --git a/worker/predicate_move.go b/worker/predicate_move.go index 38caaa54ebf..3eb9c2d731d 100644 --- a/worker/predicate_move.go +++ b/worker/predicate_move.go @@ -87,8 +87,9 @@ func batchAndProposeKeyValues(ctx context.Context, kvs chan *pb.KVS) error { return errors.Errorf("Expecting first key to be schema key: %+v", kv) } - // Delete on all nodes. - p := &pb.Proposal{CleanPredicate: pk.Attr} + // Delete on all nodes. Remove the schema at timestamp kv.Version-1 and set it at + // kv.Version. kv.Version will be the TxnTs of the predicate move. + p := &pb.Proposal{CleanPredicate: pk.Attr, StartTs: kv.Version - 1} glog.Infof("Predicate being received: %v", pk.Attr) if err := n.proposeAndWait(ctx, p); err != nil { glog.Errorf("Error while cleaning predicate %v %v\n", pk.Attr, err) @@ -213,7 +214,11 @@ func (w *grpcWorker) MovePredicate(ctx context.Context, // know that they are no longer serving this predicate, before they delete it from their // state. Without this checksum, the members could end up deleting the predicate and then // serve a request asking for that predicate, causing Jepsen failures. - p := &pb.Proposal{CleanPredicate: in.Predicate, ExpectedChecksum: in.ExpectedChecksum} + p := &pb.Proposal{ + CleanPredicate: in.Predicate, + ExpectedChecksum: in.ExpectedChecksum, + StartTs: in.TxnTs, + } return &emptyPayload, groups().Node.proposeAndWait(ctx, p) } if err := posting.Oracle().WaitForTs(ctx, in.TxnTs); err != nil { @@ -263,8 +268,6 @@ func movePredicateHelper(ctx context.Context, in *pb.MovePredicatePayload) error return errors.Wrapf(err, "while calling ReceivePredicate") } - // This txn is only reading the schema. Doesn't really matter what read timestamp we use, - // because schema keys are always set at ts=1. txn := pstore.NewTransactionAt(in.TxnTs, false) defer txn.Discard() @@ -288,7 +291,7 @@ func movePredicateHelper(ctx context.Context, in *pb.MovePredicatePayload) error kv := &bpb.KV{} kv.Key = schemaKey kv.Value = val - kv.Version = 1 + kv.Version = in.TxnTs kv.UserMeta = []byte{item.UserMeta()} badger.KVToBuffer(kv, buf) diff --git a/worker/snapshot.go b/worker/snapshot.go index 0b22ada7745..d9b9ac595ce 100644 --- a/worker/snapshot.go +++ b/worker/snapshot.go @@ -112,7 +112,7 @@ func (n *node) populateSnapshot(snap pb.Snapshot, pl *conn.Pool) error { return err } - if err := deleteStalePreds(ctx, done); err != nil { + if err := deleteStalePreds(ctx, done, snap.ReadTs); err != nil { return err } @@ -127,7 +127,7 @@ func (n *node) populateSnapshot(snap pb.Snapshot, pl *conn.Pool) error { return nil } -func deleteStalePreds(ctx context.Context, kvs *pb.KVS) error { +func deleteStalePreds(ctx context.Context, kvs *pb.KVS, ts uint64) error { if kvs == nil { return nil } @@ -147,7 +147,7 @@ func deleteStalePreds(ctx context.Context, kvs *pb.KVS) error { // While retrieving the snapshot, we mark the node as unhealthy. So it is better to // a blocking delete of predicate as we know that no new writes will arrive at // this alpha. - err := posting.DeletePredicateBlocking(ctx, pred) + err := posting.DeletePredicateBlocking(ctx, pred, ts) switch err { case badger.ErrBlockedWrites: time.Sleep(1 * time.Second) @@ -174,7 +174,7 @@ func deleteStalePreds(ctx context.Context, kvs *pb.KVS) error { } for _, typ := range currTypes { if _, ok := snapshotTypes[typ]; !ok { - if err := schema.State().DeleteType(typ); err != nil { + if err := schema.State().DeleteType(typ, ts); err != nil { return errors.Wrapf(err, "cannot delete removed type %s after streaming snapshot", typ) }