diff --git a/pkg/configpb/configpb.pb.gw.go b/pkg/configpb/configpb.pb.gw.go index 9b4675b32..c0385b0e4 100644 --- a/pkg/configpb/configpb.pb.gw.go +++ b/pkg/configpb/configpb.pb.gw.go @@ -20,7 +20,6 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/grpclog" - "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" ) @@ -31,7 +30,6 @@ var _ status.Status var _ = runtime.String var _ = utilities.NewDoubleArray var _ = descriptor.ForMessage -var _ = metadata.Join var ( filter_Config_Get_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)} @@ -57,10 +55,7 @@ func local_request_Config_Get_0(ctx context.Context, marshaler runtime.Marshaler var protoReq GetRequest var metadata runtime.ServerMetadata - if err := req.ParseForm(); err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) - } - if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Config_Get_0); err != nil { + if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Get_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -127,10 +122,7 @@ func local_request_Config_Delete_0(ctx context.Context, marshaler runtime.Marsha var protoReq DeleteRequest var metadata runtime.ServerMetadata - if err := req.ParseForm(); err != nil { - return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) - } - if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Config_Delete_0); err != nil { + if err := runtime.PopulateQueryParameters(&protoReq, req.URL.Query(), filter_Config_Delete_0); err != nil { return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) } @@ -142,14 +134,11 @@ func local_request_Config_Delete_0(ctx context.Context, marshaler runtime.Marsha // RegisterConfigHandlerServer registers the http handlers for service Config to "mux". // UnaryRPC :call ConfigServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. -// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterConfigHandlerFromEndpoint instead. func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ConfigServer) error { mux.Handle("GET", pattern_Config_Get_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() - var stream runtime.ServerTransportStream - ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -157,7 +146,6 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Get_0(rctx, inboundMarshaler, server, req, pathParams) - md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -171,8 +159,6 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser mux.Handle("POST", pattern_Config_Update_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() - var stream runtime.ServerTransportStream - ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -180,7 +166,6 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Update_0(rctx, inboundMarshaler, server, req, pathParams) - md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -194,8 +179,6 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser mux.Handle("DELETE", pattern_Config_Delete_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() - var stream runtime.ServerTransportStream - ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -203,7 +186,6 @@ func RegisterConfigHandlerServer(ctx context.Context, mux *runtime.ServeMux, ser return } resp, md, err := local_request_Config_Delete_0(rctx, inboundMarshaler, server, req, pathParams) - md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) diff --git a/pkg/raft_serverpb/raft_serverpb.pb.go b/pkg/raft_serverpb/raft_serverpb.pb.go index cdc685a1a..fecd8d87b 100644 --- a/pkg/raft_serverpb/raft_serverpb.pb.go +++ b/pkg/raft_serverpb/raft_serverpb.pb.go @@ -87,6 +87,8 @@ const ( ExtraMessageType_MsgGcPeerResponse ExtraMessageType = 12 ExtraMessageType_MsgFlushMemtable ExtraMessageType = 13 ExtraMessageType_MsgRefreshBuckets ExtraMessageType = 14 + // Message means that `from` should be tombstone. Leader can then remove this peer. + ExtraMessageType_MsgTombstonePeerRequest ExtraMessageType = 15 ) var ExtraMessageType_name = map[int32]string{ @@ -105,6 +107,7 @@ var ExtraMessageType_name = map[int32]string{ 12: "MsgGcPeerResponse", 13: "MsgFlushMemtable", 14: "MsgRefreshBuckets", + 15: "MsgTombstonePeerRequest", } var ExtraMessageType_value = map[string]int32{ @@ -123,6 +126,7 @@ var ExtraMessageType_value = map[string]int32{ "MsgGcPeerResponse": 12, "MsgFlushMemtable": 13, "MsgRefreshBuckets": 14, + "MsgTombstonePeerRequest": 15, } func (x ExtraMessageType) String() string { @@ -2268,152 +2272,153 @@ func init() { func init() { proto.RegisterFile("raft_serverpb.proto", fileDescriptor_130ebc2f2c37a342) } var fileDescriptor_130ebc2f2c37a342 = []byte{ - // 2320 bytes of a gzipped FileDescriptorProto + // 2327 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x58, 0x4b, 0x73, 0x1b, 0x59, 0xf5, 0xb7, 0x1e, 0xd6, 0xe3, 0xe8, 0x61, 0xe5, 0x3a, 0x4e, 0x34, 0xf1, 0x24, 0x71, 0x3a, 0x93, 0xc4, 0x93, 0xf9, 0xff, 0x9d, 0x1a, 0x4f, 0x18, 0xa6, 0x86, 0xaa, 0x80, 0xed, 0x24, 0x38, 0x04, 0xa5, 0x52, 0xd7, 0x4e, 0x52, 0xac, 0xba, 0xae, 0x5a, 0x47, 0x52, 0xa3, 0x7e, 0x4d, 0xdf, 0x2b, - 0x25, 0x9a, 0xe2, 0x5b, 0xb0, 0x99, 0x25, 0x4b, 0x8a, 0x0d, 0xc5, 0x8e, 0x0f, 0xc0, 0x82, 0x82, - 0x0d, 0x4b, 0x96, 0x54, 0xd8, 0xb0, 0x84, 0x25, 0x3b, 0xea, 0x3e, 0xba, 0xd5, 0x2d, 0x2b, 0x0e, - 0x64, 0xa5, 0x7b, 0xcf, 0xe3, 0xde, 0xf3, 0xf8, 0x9d, 0x73, 0x4f, 0x0b, 0x36, 0x63, 0x36, 0x14, - 0x36, 0xc7, 0x78, 0x86, 0x71, 0xd4, 0xdf, 0x8b, 0xe2, 0x50, 0x84, 0xa4, 0x95, 0x23, 0x5e, 0x69, - 0xa1, 0xdc, 0x27, 0xdc, 0x2b, 0x4d, 0x1f, 0x05, 0x4b, 0x77, 0xad, 0xc9, 0x2c, 0x8e, 0x9c, 0x74, - 0xdb, 0x19, 0xb8, 0x7c, 0x62, 0x4f, 0x39, 0x1b, 0xa1, 0xa1, 0x10, 0x0c, 0x9c, 0x78, 0x1e, 0x09, - 0x37, 0x0c, 0x52, 0xa9, 0x8d, 0x78, 0xca, 0x85, 0x5a, 0x6a, 0x82, 0xf5, 0xef, 0x12, 0x34, 0x28, - 0x1b, 0x8a, 0x1e, 0x72, 0xa9, 0x4a, 0xb6, 0xa1, 0x1e, 0xe3, 0xc8, 0x0d, 0x03, 0xdb, 0x1d, 0x74, - 0x0b, 0x3b, 0x85, 0xdd, 0x32, 0xad, 0x69, 0xc2, 0x93, 0x01, 0xf9, 0x14, 0xea, 0xc3, 0x38, 0xf4, - 0xed, 0x08, 0x31, 0xee, 0x16, 0x77, 0x0a, 0xbb, 0x8d, 0xfd, 0xe6, 0x9e, 0x31, 0xea, 0x39, 0x62, - 0x4c, 0x6b, 0x92, 0x2d, 0x57, 0xe4, 0x16, 0x54, 0x45, 0xa8, 0x05, 0x4b, 0x2b, 0x04, 0x2b, 0x22, - 0x54, 0x62, 0x77, 0xa1, 0xea, 0xeb, 0x9b, 0xbb, 0x65, 0x25, 0xd6, 0xd9, 0x4b, 0x7c, 0x36, 0x16, - 0xd1, 0x44, 0x80, 0x7c, 0x09, 0x4d, 0x63, 0x1a, 0x46, 0xa1, 0x33, 0xee, 0xae, 0x2b, 0x85, 0xcd, - 0xe4, 0x5c, 0xaa, 0x78, 0x8f, 0x24, 0x8b, 0x36, 0xe2, 0xc5, 0x86, 0xdc, 0x80, 0xa6, 0xcb, 0x6d, - 0x11, 0xfa, 0x7d, 0x2e, 0xc2, 0x00, 0xbb, 0x95, 0x9d, 0xc2, 0x6e, 0x8d, 0x36, 0x5c, 0x7e, 0x9a, - 0x90, 0xa4, 0xd7, 0x5c, 0xb0, 0x58, 0xd8, 0x13, 0x9c, 0x77, 0xab, 0x3b, 0x85, 0xdd, 0x26, 0xad, - 0x29, 0xc2, 0x53, 0x9c, 0x93, 0xcb, 0x50, 0xc5, 0x60, 0xa0, 0x58, 0x35, 0xc5, 0xaa, 0x60, 0x30, - 0x90, 0x8c, 0xcf, 0xa1, 0xe9, 0x63, 0x3c, 0x42, 0x5b, 0xb0, 0x78, 0x84, 0xa2, 0x5b, 0x57, 0x06, - 0xb5, 0xf3, 0x06, 0xd1, 0x86, 0x92, 0x39, 0x55, 0x22, 0xe4, 0x2b, 0xa8, 0xe3, 0x1b, 0x11, 0x33, - 0xdb, 0xe7, 0xa3, 0x2e, 0x28, 0xf9, 0xed, 0xbd, 0x3c, 0x12, 0x1e, 0x49, 0x7e, 0xe2, 0x7c, 0x4d, - 0x49, 0xf7, 0xf8, 0x48, 0x9a, 0xa8, 0x35, 0x1d, 0xf1, 0xa6, 0xdb, 0xd0, 0x26, 0x2a, 0xc2, 0x91, - 0x78, 0x43, 0xee, 0x03, 0x2c, 0xd2, 0xdf, 0x6d, 0xee, 0x14, 0x76, 0xdb, 0xfb, 0x5b, 0x7b, 0x19, - 0x44, 0x3c, 0x74, 0xf9, 0xe4, 0x85, 0x3a, 0xb1, 0x3e, 0x48, 0x96, 0xd6, 0x03, 0x20, 0x32, 0xf5, - 0xa7, 0xf1, 0x34, 0x70, 0x98, 0xc0, 0xc1, 0x89, 0x60, 0x02, 0xc9, 0x45, 0x58, 0x77, 0x83, 0x01, - 0xbe, 0x31, 0xd9, 0xd7, 0x1b, 0x42, 0xa0, 0x2c, 0x30, 0xf6, 0x55, 0xd6, 0xcb, 0x54, 0xad, 0xad, - 0xe7, 0xd0, 0x3e, 0x09, 0x58, 0xc4, 0xc7, 0xa1, 0x38, 0x7a, 0xfc, 0xd8, 0xf5, 0x90, 0xb4, 0xa1, - 0xe8, 0x0c, 0x95, 0x62, 0x9d, 0x16, 0x9d, 0xa1, 0xd4, 0xe2, 0xee, 0xb7, 0x98, 0x68, 0xc9, 0x35, - 0xb9, 0x02, 0x35, 0x67, 0x8c, 0xce, 0x84, 0x4f, 0x7d, 0x05, 0x8d, 0x16, 0x4d, 0xf7, 0xd6, 0x6f, - 0x8a, 0xd0, 0x4c, 0x8e, 0xec, 0xa1, 0x60, 0xe4, 0x2b, 0xa8, 0x39, 0x43, 0x7b, 0xe8, 0x7a, 0xc8, - 0xbb, 0x85, 0x9d, 0xd2, 0x6e, 0x63, 0xff, 0xea, 0x52, 0xb8, 0xf2, 0x16, 0xd0, 0xaa, 0x33, 0x94, - 0xbf, 0x9c, 0x5c, 0x87, 0xc6, 0x30, 0x8c, 0xed, 0x3e, 0xf3, 0x58, 0xe0, 0x68, 0x0b, 0x6a, 0x14, - 0x86, 0x61, 0x7c, 0xa8, 0x29, 0x89, 0xc0, 0x6b, 0x57, 0x04, 0xc8, 0xb9, 0x32, 0x45, 0x0b, 0xbc, - 0xd2, 0x14, 0x19, 0x08, 0x85, 0x01, 0x85, 0xcc, 0x32, 0xd5, 0x1b, 0xb2, 0x0f, 0x5b, 0x23, 0x0c, - 0x30, 0x66, 0x02, 0xed, 0xc1, 0x34, 0x66, 0xb2, 0xbc, 0x6c, 0x8e, 0x8e, 0x82, 0x63, 0x99, 0x6e, - 0x26, 0xcc, 0x87, 0x86, 0x77, 0x82, 0x0e, 0xd9, 0x85, 0x8e, 0x60, 0x7d, 0x0f, 0x85, 0xcd, 0x03, - 0x16, 0xd9, 0x11, 0x13, 0x63, 0x85, 0xc2, 0x3a, 0x6d, 0x6b, 0xba, 0x74, 0xe2, 0x39, 0x13, 0x63, - 0x72, 0x17, 0x2e, 0x38, 0xa1, 0xef, 0xbb, 0xc2, 0x56, 0x61, 0xb7, 0xc7, 0x6e, 0x20, 0x14, 0x20, - 0xcb, 0x74, 0x43, 0x33, 0x9e, 0x48, 0xfa, 0xb1, 0x1b, 0x08, 0xeb, 0x67, 0xd0, 0x4a, 0x9d, 0x1f, - 0x4f, 0x83, 0x09, 0xb9, 0xbf, 0x28, 0xa6, 0x82, 0x82, 0xd6, 0x95, 0xa5, 0x58, 0x65, 0x0a, 0x7d, - 0x51, 0x56, 0x04, 0xca, 0x03, 0x26, 0x98, 0x8a, 0x50, 0x93, 0xaa, 0xb5, 0x55, 0x81, 0xf2, 0xc3, - 0x30, 0x40, 0xeb, 0xbb, 0x02, 0x5c, 0x3a, 0x4d, 0x2d, 0x94, 0x37, 0xc9, 0xe0, 0xaa, 0xcc, 0x6c, - 0x43, 0x5d, 0xa6, 0xc5, 0x56, 0xf9, 0x35, 0x8d, 0x42, 0x12, 0x4e, 0x64, 0x8e, 0x13, 0x66, 0xc0, - 0x7c, 0x1d, 0xfa, 0xba, 0x66, 0x3e, 0x63, 0x3e, 0x92, 0xab, 0x00, 0x63, 0x64, 0x03, 0xdb, 0x91, - 0x46, 0xab, 0xb8, 0x37, 0x69, 0x5d, 0x52, 0xb4, 0x17, 0xb7, 0xa0, 0x2d, 0x62, 0xe6, 0x7a, 0x6e, - 0x30, 0x32, 0x22, 0x65, 0x25, 0xd2, 0x4a, 0xa8, 0x4a, 0xcc, 0x1a, 0xc2, 0x56, 0xde, 0xb2, 0xe7, - 0x31, 0xce, 0x5c, 0x7c, 0x4d, 0x7e, 0x00, 0xeb, 0xb2, 0x00, 0x13, 0xbc, 0xdc, 0x5a, 0x8a, 0xc1, - 0x6a, 0x77, 0xa8, 0xd6, 0x21, 0x1d, 0x28, 0x61, 0x30, 0x30, 0x68, 0x91, 0x4b, 0xeb, 0x57, 0x05, - 0xb8, 0x7c, 0x56, 0x47, 0x9b, 0xfa, 0xe1, 0x31, 0x48, 0x82, 0x5e, 0x5a, 0x04, 0x5d, 0x16, 0x8f, - 0x3b, 0x33, 0xce, 0x16, 0xdd, 0x19, 0xb9, 0x03, 0x25, 0xd9, 0x73, 0x74, 0x9b, 0xdb, 0xda, 0xcb, - 0x75, 0xf3, 0x87, 0x4c, 0xb0, 0xa7, 0x38, 0xa7, 0x52, 0xc2, 0x1a, 0x01, 0xc9, 0x5b, 0x78, 0x8c, - 0x6c, 0xf0, 0x81, 0x68, 0xd8, 0x86, 0xfa, 0x94, 0xa3, 0xed, 0x30, 0x67, 0x9c, 0x14, 0x4d, 0x6d, - 0xca, 0xf1, 0x48, 0xee, 0xad, 0x7b, 0x70, 0x21, 0x7f, 0xd1, 0xa3, 0x60, 0x90, 0xab, 0x67, 0x13, - 0x83, 0xb4, 0x9e, 0x7f, 0x59, 0x5c, 0xce, 0x12, 0xc5, 0x6f, 0xa6, 0xc8, 0x05, 0xf9, 0x3e, 0x94, - 0x65, 0xca, 0x8d, 0x69, 0x37, 0xce, 0x4d, 0x92, 0x74, 0xe7, 0x78, 0x8d, 0x2a, 0x05, 0xf2, 0x23, - 0xa8, 0x46, 0x3a, 0xd3, 0xe6, 0x05, 0xfa, 0xe4, 0x5c, 0x5d, 0x83, 0x8a, 0xe3, 0x35, 0x9a, 0xa8, - 0x91, 0x07, 0xb0, 0xbe, 0x80, 0x5e, 0x63, 0xff, 0xf6, 0x7b, 0x01, 0xa2, 0x92, 0x7d, 0xbc, 0x46, - 0xb5, 0x1a, 0xb9, 0xaf, 0x31, 0xa2, 0xdf, 0xab, 0x9d, 0x73, 0xb5, 0x1f, 0x05, 0xd2, 0x70, 0x29, - 0x7e, 0x58, 0x87, 0x6a, 0xc4, 0xe6, 0x5e, 0xc8, 0x06, 0xd6, 0x7d, 0xd8, 0x3a, 0x70, 0x1c, 0x8c, - 0x64, 0xcb, 0xcd, 0x5c, 0xc3, 0xf3, 0x90, 0x91, 0xf0, 0xcd, 0x40, 0xc6, 0x3a, 0x5d, 0x2e, 0x45, - 0x8a, 0x3c, 0x0a, 0x03, 0x8e, 0xe4, 0x6b, 0x58, 0x4f, 0x3a, 0xe4, 0xaa, 0x80, 0xac, 0xbc, 0x8b, - 0x6a, 0x15, 0x6b, 0x1f, 0x6a, 0x4f, 0x71, 0xfe, 0x92, 0x79, 0x53, 0x94, 0xe0, 0x97, 0x80, 0x2b, - 0x28, 0x04, 0xca, 0xa5, 0x6c, 0x81, 0x33, 0xc9, 0x32, 0xcd, 0x41, 0x6f, 0xac, 0x3f, 0x15, 0xa1, - 0x23, 0xc1, 0x93, 0x1c, 0x28, 0xc1, 0x48, 0x6e, 0x43, 0x45, 0x3f, 0xba, 0xc6, 0x8a, 0xe5, 0x67, - 0xd0, 0x70, 0xf3, 0x35, 0x53, 0x5c, 0xaa, 0x99, 0xcf, 0xd2, 0xb2, 0x90, 0xa5, 0x7b, 0x79, 0xc9, - 0x91, 0xc4, 0x50, 0x53, 0x2f, 0x5d, 0xa8, 0xce, 0x30, 0xe6, 0xf2, 0x4a, 0xdd, 0xa1, 0x93, 0x2d, - 0xb9, 0x07, 0x65, 0x79, 0xb9, 0x29, 0x9d, 0xed, 0x77, 0xbc, 0x18, 0xaa, 0xee, 0x95, 0x20, 0xf9, - 0x1e, 0x6c, 0xc4, 0xe8, 0x87, 0x33, 0x1c, 0xd8, 0x31, 0x3a, 0x61, 0x3c, 0xe0, 0xdd, 0x8a, 0x32, - 0x21, 0x3f, 0xb5, 0xb4, 0x8d, 0x10, 0xd5, 0x32, 0xe4, 0x10, 0xda, 0xea, 0x71, 0x5f, 0x68, 0x55, - 0x95, 0xd6, 0xf2, 0x8d, 0x3d, 0x25, 0xa4, 0xb5, 0x68, 0xcb, 0xcf, 0xec, 0xb8, 0xf5, 0x0b, 0x80, - 0x13, 0x11, 0xc6, 0xf8, 0x64, 0x80, 0x81, 0x90, 0xbd, 0xd1, 0xf1, 0xa6, 0x5c, 0x60, 0xbc, 0x98, - 0xbf, 0xea, 0x86, 0xf2, 0x64, 0x40, 0x3e, 0x82, 0x1a, 0x97, 0xc2, 0x92, 0xa9, 0x63, 0x57, 0xe5, - 0x5a, 0x99, 0xdc, 0x87, 0x06, 0x8b, 0x5c, 0x3b, 0x89, 0x48, 0x49, 0xcd, 0x00, 0x9b, 0x7b, 0xc9, - 0x90, 0x78, 0xf0, 0xfc, 0xc9, 0x4b, 0xcd, 0xa2, 0xc0, 0x22, 0xd7, 0xac, 0xad, 0x4f, 0xe1, 0x82, - 0xba, 0x5d, 0x5a, 0x33, 0xc3, 0x38, 0x9d, 0x00, 0x38, 0x7e, 0x13, 0x84, 0xc9, 0x04, 0xa0, 0x36, - 0x56, 0x1f, 0xda, 0x32, 0xe9, 0x3f, 0x0d, 0x1d, 0xe6, 0x69, 0xb9, 0xcf, 0x01, 0xc6, 0x2c, 0x1e, - 0xd8, 0x5c, 0xee, 0x4c, 0xda, 0x49, 0x3a, 0xbf, 0x1d, 0xb3, 0x58, 0x4f, 0x14, 0xb4, 0x3e, 0x4e, - 0x96, 0xd2, 0x3f, 0x8f, 0x71, 0xf3, 0xba, 0x19, 0x17, 0xea, 0x92, 0xa2, 0x9e, 0x35, 0xeb, 0x5f, - 0x05, 0x7d, 0xc9, 0x41, 0x14, 0x79, 0x73, 0xad, 0x71, 0x13, 0x5a, 0x2c, 0x8a, 0x3c, 0x17, 0x07, - 0x76, 0x76, 0x2c, 0x69, 0x1a, 0xa2, 0xd2, 0x93, 0xcf, 0xa6, 0x3a, 0x36, 0xfb, 0x76, 0xaa, 0x10, - 0x94, 0xe9, 0x86, 0x64, 0x1c, 0x2d, 0x9e, 0x4e, 0x39, 0x0e, 0xe6, 0xc4, 0x34, 0x76, 0x1a, 0x99, - 0xd7, 0x55, 0x8e, 0x06, 0x46, 0x44, 0xcd, 0x3c, 0xfa, 0x65, 0x07, 0x4d, 0x3a, 0xc5, 0xd8, 0x27, - 0x3f, 0x81, 0x0d, 0x91, 0x4c, 0x4d, 0xc6, 0xfd, 0xe2, 0xca, 0x46, 0x76, 0x76, 0xbe, 0xa2, 0x6d, - 0x91, 0xdb, 0x5b, 0x2e, 0x80, 0xc2, 0x87, 0x76, 0x77, 0x1b, 0xea, 0xbe, 0x1b, 0xe4, 0x5c, 0xad, - 0xf9, 0x6e, 0xa0, 0xed, 0xba, 0x0d, 0x15, 0x33, 0x6a, 0x16, 0x57, 0xd7, 0x98, 0xe6, 0x92, 0x4b, - 0x50, 0xd1, 0xc6, 0x9a, 0x18, 0x98, 0x9d, 0xf5, 0xbb, 0x12, 0x34, 0xb3, 0x58, 0x94, 0x83, 0x09, - 0x0f, 0xa7, 0xb1, 0x83, 0xf6, 0xf2, 0xd0, 0xdf, 0xd6, 0x74, 0x9a, 0x8c, 0xfe, 0x5f, 0x42, 0xd3, - 0x48, 0xea, 0xe1, 0xbb, 0x78, 0xce, 0xf0, 0xad, 0x05, 0xf5, 0xf0, 0x7d, 0x2f, 0xd5, 0x93, 0xdf, - 0x02, 0xdc, 0x54, 0x76, 0xbe, 0xac, 0x8c, 0x82, 0x5c, 0xcb, 0x9a, 0xba, 0x94, 0x9a, 0x94, 0xaf, - 0xc8, 0xfa, 0x0a, 0xd5, 0x8b, 0x89, 0x99, 0xb9, 0xba, 0x54, 0xf3, 0x96, 0x8c, 0x44, 0xc6, 0x2d, - 0x9d, 0xe6, 0xb6, 0xa6, 0x67, 0xdd, 0x32, 0x92, 0xef, 0xff, 0xa6, 0xd0, 0x82, 0xa9, 0x5b, 0x46, - 0x4f, 0xbb, 0xb5, 0xaa, 0x5b, 0x18, 0x05, 0xed, 0x56, 0x3a, 0x55, 0x57, 0xb3, 0x53, 0xf5, 0x8d, - 0x34, 0x3a, 0x9a, 0x59, 0xd3, 0x58, 0xd4, 0x34, 0x5d, 0x12, 0x7f, 0x90, 0xcd, 0x56, 0x99, 0x91, - 0xa9, 0xbc, 0x3d, 0x35, 0x9a, 0x9a, 0xa2, 0x6b, 0xef, 0x77, 0x97, 0x50, 0x27, 0xaf, 0xd4, 0x60, - 0xd3, 0x62, 0x99, 0xe6, 0x5c, 0x3c, 0xb7, 0x39, 0x7f, 0x0d, 0xfa, 0x6b, 0xc5, 0x60, 0x5a, 0x3f, - 0x90, 0x1f, 0xad, 0xea, 0x66, 0xfa, 0x78, 0xf0, 0x17, 0xc8, 0xbd, 0x21, 0x43, 0xa2, 0x86, 0xdc, - 0x5c, 0x5d, 0x69, 0x9a, 0xc6, 0xef, 0x8a, 0x36, 0xbb, 0xfe, 0x41, 0x6d, 0xb6, 0xf2, 0x3f, 0xb7, - 0xd9, 0x7f, 0x14, 0xe0, 0x63, 0xed, 0xec, 0x89, 0x9c, 0x40, 0x02, 0x07, 0x9f, 0x4d, 0xfd, 0x3e, - 0xc6, 0x14, 0x3d, 0x35, 0xa6, 0x9f, 0xff, 0xe1, 0x7b, 0x07, 0x36, 0xb8, 0x51, 0xb3, 0x03, 0xa5, - 0x67, 0x7a, 0x57, 0x9b, 0xe7, 0x4e, 0x23, 0x0f, 0x64, 0x17, 0x8e, 0xbc, 0x79, 0x2e, 0x80, 0x57, - 0x57, 0x34, 0x85, 0x45, 0x87, 0x93, 0xfd, 0x38, 0xed, 0x76, 0x87, 0xe9, 0x37, 0xae, 0x3e, 0x40, - 0x0f, 0x19, 0xd7, 0x97, 0x0f, 0x58, 0xc2, 0x43, 0xf2, 0xbd, 0xab, 0x1b, 0xca, 0xef, 0x0b, 0xb0, - 0x79, 0x30, 0x63, 0xae, 0xc7, 0xfa, 0xae, 0xe7, 0x8a, 0xf9, 0x51, 0x18, 0x08, 0x7c, 0x23, 0xc8, - 0x27, 0xd0, 0x56, 0x5f, 0xef, 0xcb, 0x6e, 0x36, 0x25, 0x35, 0xad, 0x88, 0x1f, 0xc2, 0x85, 0xac, - 0xd4, 0x7b, 0xab, 0x7d, 0x63, 0xa1, 0xad, 0x4b, 0x63, 0x07, 0x1a, 0xd3, 0x80, 0xe9, 0xfb, 0x3d, - 0x34, 0xdf, 0x55, 0x59, 0x92, 0x7c, 0xb8, 0x45, 0xec, 0xfa, 0x3e, 0xea, 0xaa, 0xac, 0xd1, 0x64, - 0x6b, 0xfd, 0x1f, 0xb4, 0x1e, 0x7b, 0x53, 0x3e, 0xee, 0xa1, 0xaf, 0x70, 0x73, 0x6e, 0x56, 0xac, - 0x53, 0x68, 0x53, 0x1c, 0xc6, 0xc8, 0xc7, 0x87, 0x53, 0x67, 0x82, 0x82, 0x67, 0x47, 0x82, 0x42, - 0x7e, 0x24, 0x20, 0x50, 0x9e, 0xe0, 0x9c, 0x77, 0x8b, 0x3b, 0x25, 0x39, 0x70, 0xcb, 0xb5, 0x7a, - 0xe7, 0xdc, 0x6f, 0x51, 0x37, 0x25, 0xf9, 0xce, 0xc9, 0x8d, 0xf5, 0xe7, 0x02, 0x34, 0x8e, 0xe4, - 0x00, 0xfb, 0x63, 0x47, 0xfd, 0x45, 0xf1, 0xdf, 0x85, 0xed, 0x36, 0x6c, 0xa8, 0xa9, 0x37, 0x23, - 0xa6, 0x11, 0xd2, 0x52, 0xe4, 0x54, 0xee, 0x00, 0x48, 0x4e, 0x4e, 0xc7, 0xb7, 0xf4, 0xee, 0xf8, - 0x76, 0x32, 0xfa, 0x3a, 0xc0, 0x9f, 0x01, 0xe8, 0x23, 0xd4, 0xbf, 0x2b, 0xe5, 0x15, 0xff, 0xae, - 0xd4, 0x15, 0x5f, 0x2e, 0xad, 0x7f, 0x96, 0xa0, 0x99, 0xfd, 0x47, 0x81, 0x7c, 0x01, 0x65, 0x31, - 0x8f, 0x92, 0xce, 0x71, 0xfd, 0x9c, 0x3f, 0x1f, 0x4e, 0xe7, 0x11, 0x52, 0x25, 0xbc, 0xe8, 0x5e, - 0xc5, 0x6c, 0xf7, 0xfa, 0x7f, 0x68, 0x2c, 0x0c, 0x59, 0xdd, 0xda, 0x21, 0xb5, 0x44, 0x4d, 0xb7, - 0xaf, 0x99, 0x2b, 0x6c, 0x35, 0xe1, 0xe9, 0xc4, 0xd7, 0x24, 0x41, 0x8d, 0x8f, 0xb7, 0xa0, 0x3d, - 0x0c, 0x63, 0x07, 0xbd, 0xb9, 0xcd, 0x5e, 0xb3, 0x09, 0x06, 0xaa, 0x15, 0xd7, 0x68, 0xcb, 0x50, - 0x0f, 0x14, 0x91, 0x3c, 0x00, 0x1d, 0x4f, 0x7b, 0xe4, 0x68, 0xf7, 0x2b, 0x2b, 0x3f, 0x6d, 0x32, - 0xf9, 0xa3, 0xda, 0x46, 0x93, 0xcc, 0x23, 0x68, 0x0f, 0x25, 0xc0, 0x6c, 0xdf, 0x20, 0x4c, 0xf5, - 0xe3, 0xc6, 0xfe, 0xc7, 0x4b, 0x07, 0xe4, 0x50, 0x48, 0x5b, 0xc3, 0x1c, 0x28, 0x5f, 0xc0, 0x45, - 0x96, 0xa9, 0x2f, 0xdb, 0xd1, 0x05, 0xa6, 0xba, 0x77, 0x63, 0xdf, 0x5a, 0x1e, 0xbf, 0xcf, 0x96, - 0x22, 0xdd, 0x64, 0x2b, 0xea, 0xf3, 0xb1, 0xec, 0x8e, 0x0a, 0xce, 0x76, 0x5f, 0xe3, 0xd9, 0xfc, - 0xa3, 0x74, 0xa6, 0x7f, 0xe4, 0x40, 0x2f, 0xdb, 0x65, 0x76, 0x7f, 0x97, 0x42, 0x3d, 0x7d, 0x00, - 0x08, 0x40, 0xe5, 0x59, 0x18, 0xfb, 0xcc, 0xeb, 0xac, 0x91, 0x26, 0xd4, 0x54, 0xdb, 0x71, 0x83, - 0x51, 0xa7, 0x40, 0x5a, 0x50, 0x4f, 0xff, 0x00, 0xeb, 0x14, 0x49, 0x03, 0xaa, 0xb2, 0x7f, 0x4a, - 0x5e, 0x89, 0x6c, 0x40, 0xe3, 0xc5, 0xa2, 0x60, 0x3b, 0xe5, 0xbb, 0xbf, 0x2d, 0x41, 0x67, 0x19, - 0x1b, 0x64, 0x13, 0x36, 0x7a, 0x7c, 0xa4, 0xa1, 0xf9, 0x8a, 0x4d, 0xf0, 0x45, 0xd4, 0x59, 0x23, - 0x5d, 0xb8, 0xd8, 0xe3, 0xa3, 0x57, 0x2c, 0x10, 0x34, 0xf4, 0xbc, 0x3e, 0x73, 0x26, 0xaa, 0x2d, - 0x77, 0x0a, 0x64, 0x0b, 0x2e, 0xf4, 0xf8, 0x48, 0xa5, 0xe6, 0x44, 0x30, 0x4f, 0xbd, 0xf7, 0x9d, - 0x22, 0xb9, 0x0a, 0x1f, 0x9d, 0x21, 0x27, 0x9f, 0x36, 0x9d, 0x12, 0xb9, 0x0c, 0x9b, 0x3d, 0x3e, - 0x3a, 0x76, 0xfb, 0x18, 0x07, 0xb2, 0xd5, 0xe9, 0xef, 0xc7, 0x4e, 0xd9, 0x5c, 0x94, 0x61, 0x18, - 0x95, 0x75, 0x72, 0x07, 0x6e, 0x2a, 0xbb, 0x7e, 0x8e, 0x8e, 0xd0, 0x23, 0xeb, 0xe8, 0x88, 0x4d, - 0x39, 0x0e, 0x0e, 0xe7, 0x3d, 0xf4, 0xc3, 0x78, 0xae, 0xfe, 0xfe, 0xea, 0x54, 0xc8, 0x15, 0xb8, - 0xd4, 0xe3, 0xa3, 0x6c, 0x82, 0x92, 0xe3, 0xab, 0x64, 0x1b, 0x2e, 0x9f, 0xe1, 0x99, 0x1b, 0x6a, - 0xc4, 0x82, 0x6b, 0x3d, 0x3e, 0x7a, 0x19, 0x0a, 0x69, 0x6a, 0xe4, 0xb9, 0x6a, 0x9c, 0x53, 0x6f, - 0x5c, 0x72, 0x40, 0x9d, 0xdc, 0x84, 0xeb, 0xef, 0x94, 0x31, 0x07, 0x01, 0xb9, 0x08, 0x9d, 0x1e, - 0x1f, 0x19, 0xa4, 0x1a, 0xd5, 0x86, 0x89, 0x54, 0x42, 0x35, 0xc2, 0x4d, 0x23, 0x9c, 0x83, 0x66, - 0xa7, 0x65, 0x84, 0xf3, 0x98, 0xe8, 0xb4, 0x0f, 0x6f, 0xff, 0xf5, 0xd7, 0xb5, 0xc2, 0x1f, 0xdf, - 0x5e, 0x2b, 0xfc, 0xe5, 0xed, 0xb5, 0xc2, 0xdf, 0xde, 0x5e, 0x2b, 0x7c, 0xf7, 0xf7, 0x6b, 0x6b, - 0xd0, 0x09, 0xe3, 0xd1, 0x9e, 0x70, 0x27, 0xb3, 0xbd, 0xc9, 0x4c, 0xfd, 0x01, 0xdc, 0xaf, 0xa8, - 0x9f, 0x2f, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x00, 0x13, 0x20, 0xd2, 0x90, 0x16, 0x00, 0x00, + 0x25, 0x9a, 0xe2, 0x5b, 0xb0, 0x99, 0x25, 0x4b, 0x8a, 0x1d, 0x3b, 0x3e, 0x00, 0x0b, 0x0a, 0x58, + 0xb0, 0x64, 0x49, 0x85, 0x0d, 0x4b, 0x58, 0xb2, 0xa3, 0xee, 0xa3, 0x5b, 0xdd, 0xb2, 0xe2, 0x40, + 0x56, 0xba, 0xf7, 0x3c, 0xee, 0x3d, 0x8f, 0xdf, 0x39, 0xf7, 0xb4, 0x60, 0x33, 0x66, 0x43, 0x61, + 0x73, 0x8c, 0x67, 0x18, 0x47, 0xfd, 0xbd, 0x28, 0x0e, 0x45, 0x48, 0x5a, 0x39, 0xe2, 0x95, 0x16, + 0xca, 0x7d, 0xc2, 0xbd, 0xd2, 0xf4, 0x51, 0xb0, 0x74, 0xd7, 0x9a, 0xcc, 0xe2, 0xc8, 0x49, 0xb7, + 0x9d, 0x81, 0xcb, 0x27, 0xf6, 0x94, 0xb3, 0x11, 0x1a, 0x0a, 0xc1, 0xc0, 0x89, 0xe7, 0x91, 0x70, + 0xc3, 0x20, 0x95, 0xda, 0x88, 0xa7, 0x5c, 0xa8, 0xa5, 0x26, 0x58, 0xff, 0x2e, 0x41, 0x83, 0xb2, + 0xa1, 0xe8, 0x21, 0x97, 0xaa, 0x64, 0x1b, 0xea, 0x31, 0x8e, 0xdc, 0x30, 0xb0, 0xdd, 0x41, 0xb7, + 0xb0, 0x53, 0xd8, 0x2d, 0xd3, 0x9a, 0x26, 0x3c, 0x19, 0x90, 0x4f, 0xa1, 0x3e, 0x8c, 0x43, 0xdf, + 0x8e, 0x10, 0xe3, 0x6e, 0x71, 0xa7, 0xb0, 0xdb, 0xd8, 0x6f, 0xee, 0x19, 0xa3, 0x9e, 0x23, 0xc6, + 0xb4, 0x26, 0xd9, 0x72, 0x45, 0x6e, 0x41, 0x55, 0x84, 0x5a, 0xb0, 0xb4, 0x42, 0xb0, 0x22, 0x42, + 0x25, 0x76, 0x17, 0xaa, 0xbe, 0xbe, 0xb9, 0x5b, 0x56, 0x62, 0x9d, 0xbd, 0xc4, 0x67, 0x63, 0x11, + 0x4d, 0x04, 0xc8, 0x97, 0xd0, 0x34, 0xa6, 0x61, 0x14, 0x3a, 0xe3, 0xee, 0xba, 0x52, 0xd8, 0x4c, + 0xce, 0xa5, 0x8a, 0xf7, 0x48, 0xb2, 0x68, 0x23, 0x5e, 0x6c, 0xc8, 0x0d, 0x68, 0xba, 0xdc, 0x16, + 0xa1, 0xdf, 0xe7, 0x22, 0x0c, 0xb0, 0x5b, 0xd9, 0x29, 0xec, 0xd6, 0x68, 0xc3, 0xe5, 0xa7, 0x09, + 0x49, 0x7a, 0xcd, 0x05, 0x8b, 0x85, 0x3d, 0xc1, 0x79, 0xb7, 0xba, 0x53, 0xd8, 0x6d, 0xd2, 0x9a, + 0x22, 0x3c, 0xc5, 0x39, 0xb9, 0x0c, 0x55, 0x0c, 0x06, 0x8a, 0x55, 0x53, 0xac, 0x0a, 0x06, 0x03, + 0xc9, 0xf8, 0x1c, 0x9a, 0x3e, 0xc6, 0x23, 0xb4, 0x05, 0x8b, 0x47, 0x28, 0xba, 0x75, 0x65, 0x50, + 0x3b, 0x6f, 0x10, 0x6d, 0x28, 0x99, 0x53, 0x25, 0x42, 0xbe, 0x82, 0x3a, 0xbe, 0x11, 0x31, 0xb3, + 0x7d, 0x3e, 0xea, 0x82, 0x92, 0xdf, 0xde, 0xcb, 0x23, 0xe1, 0x91, 0xe4, 0x27, 0xce, 0xd7, 0x94, + 0x74, 0x8f, 0x8f, 0xa4, 0x89, 0x5a, 0xd3, 0x11, 0x6f, 0xba, 0x0d, 0x6d, 0xa2, 0x22, 0x1c, 0x89, + 0x37, 0xe4, 0x3e, 0xc0, 0x22, 0xfd, 0xdd, 0xe6, 0x4e, 0x61, 0xb7, 0xbd, 0xbf, 0xb5, 0x97, 0x41, + 0xc4, 0x43, 0x97, 0x4f, 0x5e, 0xa8, 0x13, 0xeb, 0x83, 0x64, 0x69, 0x3d, 0x00, 0x22, 0x53, 0x7f, + 0x1a, 0x4f, 0x03, 0x87, 0x09, 0x1c, 0x9c, 0x08, 0x26, 0x90, 0x5c, 0x84, 0x75, 0x37, 0x18, 0xe0, + 0x1b, 0x93, 0x7d, 0xbd, 0x21, 0x04, 0xca, 0x02, 0x63, 0x5f, 0x65, 0xbd, 0x4c, 0xd5, 0xda, 0x7a, + 0x0e, 0xed, 0x93, 0x80, 0x45, 0x7c, 0x1c, 0x8a, 0xa3, 0xc7, 0x8f, 0x5d, 0x0f, 0x49, 0x1b, 0x8a, + 0xce, 0x50, 0x29, 0xd6, 0x69, 0xd1, 0x19, 0x4a, 0x2d, 0xee, 0x7e, 0x8b, 0x89, 0x96, 0x5c, 0x93, + 0x2b, 0x50, 0x73, 0xc6, 0xe8, 0x4c, 0xf8, 0xd4, 0x57, 0xd0, 0x68, 0xd1, 0x74, 0x6f, 0xfd, 0xa6, + 0x08, 0xcd, 0xe4, 0xc8, 0x1e, 0x0a, 0x46, 0xbe, 0x82, 0x9a, 0x33, 0xb4, 0x87, 0xae, 0x87, 0xbc, + 0x5b, 0xd8, 0x29, 0xed, 0x36, 0xf6, 0xaf, 0x2e, 0x85, 0x2b, 0x6f, 0x01, 0xad, 0x3a, 0x43, 0xf9, + 0xcb, 0xc9, 0x75, 0x68, 0x0c, 0xc3, 0xd8, 0xee, 0x33, 0x8f, 0x05, 0x8e, 0xb6, 0xa0, 0x46, 0x61, + 0x18, 0xc6, 0x87, 0x9a, 0x92, 0x08, 0xbc, 0x76, 0x45, 0x80, 0x9c, 0x2b, 0x53, 0xb4, 0xc0, 0x2b, + 0x4d, 0x91, 0x81, 0x50, 0x18, 0x50, 0xc8, 0x2c, 0x53, 0xbd, 0x21, 0xfb, 0xb0, 0x35, 0xc2, 0x00, + 0x63, 0x26, 0xd0, 0x1e, 0x4c, 0x63, 0x26, 0xcb, 0xcb, 0xe6, 0xe8, 0x28, 0x38, 0x96, 0xe9, 0x66, + 0xc2, 0x7c, 0x68, 0x78, 0x27, 0xe8, 0x90, 0x5d, 0xe8, 0x08, 0xd6, 0xf7, 0x50, 0xd8, 0x3c, 0x60, + 0x91, 0x1d, 0x31, 0x31, 0x56, 0x28, 0xac, 0xd3, 0xb6, 0xa6, 0x4b, 0x27, 0x9e, 0x33, 0x31, 0x26, + 0x77, 0xe1, 0x82, 0x13, 0xfa, 0xbe, 0x2b, 0x6c, 0x15, 0x76, 0x7b, 0xec, 0x06, 0x42, 0x01, 0xb2, + 0x4c, 0x37, 0x34, 0xe3, 0x89, 0xa4, 0x1f, 0xbb, 0x81, 0xb0, 0x7e, 0x06, 0xad, 0xd4, 0xf9, 0xf1, + 0x34, 0x98, 0x90, 0xfb, 0x8b, 0x62, 0x2a, 0x28, 0x68, 0x5d, 0x59, 0x8a, 0x55, 0xa6, 0xd0, 0x17, + 0x65, 0x45, 0xa0, 0x3c, 0x60, 0x82, 0xa9, 0x08, 0x35, 0xa9, 0x5a, 0x5b, 0x15, 0x28, 0x3f, 0x0c, + 0x03, 0xb4, 0xbe, 0x2b, 0xc0, 0xa5, 0xd3, 0xd4, 0x42, 0x79, 0x93, 0x0c, 0xae, 0xca, 0xcc, 0x36, + 0xd4, 0x65, 0x5a, 0x6c, 0x95, 0x5f, 0xd3, 0x28, 0x24, 0xe1, 0x44, 0xe6, 0x38, 0x61, 0x06, 0xcc, + 0xd7, 0xa1, 0xaf, 0x6b, 0xe6, 0x33, 0xe6, 0x23, 0xb9, 0x0a, 0x30, 0x46, 0x36, 0xb0, 0x1d, 0x69, + 0xb4, 0x8a, 0x7b, 0x93, 0xd6, 0x25, 0x45, 0x7b, 0x71, 0x0b, 0xda, 0x22, 0x66, 0xae, 0xe7, 0x06, + 0x23, 0x23, 0x52, 0x56, 0x22, 0xad, 0x84, 0xaa, 0xc4, 0xac, 0x21, 0x6c, 0xe5, 0x2d, 0x7b, 0x1e, + 0xe3, 0xcc, 0xc5, 0xd7, 0xe4, 0x07, 0xb0, 0x2e, 0x0b, 0x30, 0xc1, 0xcb, 0xad, 0xa5, 0x18, 0xac, + 0x76, 0x87, 0x6a, 0x1d, 0xd2, 0x81, 0x12, 0x06, 0x03, 0x83, 0x16, 0xb9, 0xb4, 0x7e, 0x55, 0x80, + 0xcb, 0x67, 0x75, 0xb4, 0xa9, 0x1f, 0x1e, 0x83, 0x24, 0xe8, 0xa5, 0x45, 0xd0, 0x65, 0xf1, 0xb8, + 0x33, 0xe3, 0x6c, 0xd1, 0x9d, 0x91, 0x3b, 0x50, 0x92, 0x3d, 0x47, 0xb7, 0xb9, 0xad, 0xbd, 0x5c, + 0x37, 0x7f, 0xc8, 0x04, 0x7b, 0x8a, 0x73, 0x2a, 0x25, 0xac, 0x11, 0x90, 0xbc, 0x85, 0xc7, 0xc8, + 0x06, 0x1f, 0x88, 0x86, 0x6d, 0xa8, 0x4f, 0x39, 0xda, 0x0e, 0x73, 0xc6, 0x49, 0xd1, 0xd4, 0xa6, + 0x1c, 0x8f, 0xe4, 0xde, 0xba, 0x07, 0x17, 0xf2, 0x17, 0x3d, 0x0a, 0x06, 0xb9, 0x7a, 0x36, 0x31, + 0x48, 0xeb, 0xf9, 0x97, 0xc5, 0xe5, 0x2c, 0x51, 0xfc, 0x66, 0x8a, 0x5c, 0x90, 0xef, 0x43, 0x59, + 0xa6, 0xdc, 0x98, 0x76, 0xe3, 0xdc, 0x24, 0x49, 0x77, 0x8e, 0xd7, 0xa8, 0x52, 0x20, 0x3f, 0x82, + 0x6a, 0xa4, 0x33, 0x6d, 0x5e, 0xa0, 0x4f, 0xce, 0xd5, 0x35, 0xa8, 0x38, 0x5e, 0xa3, 0x89, 0x1a, + 0x79, 0x00, 0xeb, 0x0b, 0xe8, 0x35, 0xf6, 0x6f, 0xbf, 0x17, 0x20, 0x2a, 0xd9, 0xc7, 0x6b, 0x54, + 0xab, 0x91, 0xfb, 0x1a, 0x23, 0xfa, 0xbd, 0xda, 0x39, 0x57, 0xfb, 0x51, 0x20, 0x0d, 0x97, 0xe2, + 0x87, 0x75, 0xa8, 0x46, 0x6c, 0xee, 0x85, 0x6c, 0x60, 0xdd, 0x87, 0xad, 0x03, 0xc7, 0xc1, 0x48, + 0xb6, 0xdc, 0xcc, 0x35, 0x3c, 0x0f, 0x19, 0x09, 0xdf, 0x0c, 0x64, 0xac, 0xd3, 0xe5, 0x52, 0xa4, + 0xc8, 0xa3, 0x30, 0xe0, 0x48, 0xbe, 0x86, 0xf5, 0xa4, 0x43, 0xae, 0x0a, 0xc8, 0xca, 0xbb, 0xa8, + 0x56, 0xb1, 0xf6, 0xa1, 0xf6, 0x14, 0xe7, 0x2f, 0x99, 0x37, 0x45, 0x09, 0x7e, 0x09, 0xb8, 0x82, + 0x42, 0xa0, 0x5c, 0xca, 0x16, 0x38, 0x93, 0x2c, 0xd3, 0x1c, 0xf4, 0xc6, 0xfa, 0x63, 0x11, 0x3a, + 0x12, 0x3c, 0xc9, 0x81, 0x12, 0x8c, 0xe4, 0x36, 0x54, 0xf4, 0xa3, 0x6b, 0xac, 0x58, 0x7e, 0x06, + 0x0d, 0x37, 0x5f, 0x33, 0xc5, 0xa5, 0x9a, 0xf9, 0x2c, 0x2d, 0x0b, 0x59, 0xba, 0x97, 0x97, 0x1c, + 0x49, 0x0c, 0x35, 0xf5, 0xd2, 0x85, 0xea, 0x0c, 0x63, 0x2e, 0xaf, 0xd4, 0x1d, 0x3a, 0xd9, 0x92, + 0x7b, 0x50, 0x96, 0x97, 0x9b, 0xd2, 0xd9, 0x7e, 0xc7, 0x8b, 0xa1, 0xea, 0x5e, 0x09, 0x92, 0xef, + 0xc1, 0x46, 0x8c, 0x7e, 0x38, 0xc3, 0x81, 0x1d, 0xa3, 0x13, 0xc6, 0x03, 0xde, 0xad, 0x28, 0x13, + 0xf2, 0x53, 0x4b, 0xdb, 0x08, 0x51, 0x2d, 0x43, 0x0e, 0xa1, 0xad, 0x1e, 0xf7, 0x85, 0x56, 0x55, + 0x69, 0x2d, 0xdf, 0xd8, 0x53, 0x42, 0x5a, 0x8b, 0xb6, 0xfc, 0xcc, 0x8e, 0x5b, 0xbf, 0x00, 0x38, + 0x11, 0x61, 0x8c, 0x4f, 0x06, 0x18, 0x08, 0xd9, 0x1b, 0x1d, 0x6f, 0xca, 0x05, 0xc6, 0x8b, 0xf9, + 0xab, 0x6e, 0x28, 0x4f, 0x06, 0xe4, 0x23, 0xa8, 0x71, 0x29, 0x2c, 0x99, 0x3a, 0x76, 0x55, 0xae, + 0x95, 0xc9, 0x7d, 0x68, 0xb0, 0xc8, 0xb5, 0x93, 0x88, 0x94, 0xd4, 0x0c, 0xb0, 0xb9, 0x97, 0x0c, + 0x89, 0x07, 0xcf, 0x9f, 0xbc, 0xd4, 0x2c, 0x0a, 0x2c, 0x72, 0xcd, 0xda, 0xfa, 0x14, 0x2e, 0xa8, + 0xdb, 0xa5, 0x35, 0x33, 0x8c, 0xd3, 0x09, 0x80, 0xe3, 0x37, 0x41, 0x98, 0x4c, 0x00, 0x6a, 0x63, + 0xf5, 0xa1, 0x2d, 0x93, 0xfe, 0xd3, 0xd0, 0x61, 0x9e, 0x96, 0xfb, 0x1c, 0x60, 0xcc, 0xe2, 0x81, + 0xcd, 0xe5, 0xce, 0xa4, 0x9d, 0xa4, 0xf3, 0xdb, 0x31, 0x8b, 0xf5, 0x44, 0x41, 0xeb, 0xe3, 0x64, + 0x29, 0xfd, 0xf3, 0x18, 0x37, 0xaf, 0x9b, 0x71, 0xa1, 0x2e, 0x29, 0xea, 0x59, 0xb3, 0xfe, 0x55, + 0xd0, 0x97, 0x1c, 0x44, 0x91, 0x37, 0xd7, 0x1a, 0x37, 0xa1, 0xc5, 0xa2, 0xc8, 0x73, 0x71, 0x60, + 0x67, 0xc7, 0x92, 0xa6, 0x21, 0x2a, 0x3d, 0xf9, 0x6c, 0xaa, 0x63, 0xb3, 0x6f, 0xa7, 0x0a, 0x41, + 0x99, 0x6e, 0x48, 0xc6, 0xd1, 0xe2, 0xe9, 0x94, 0xe3, 0x60, 0x4e, 0x4c, 0x63, 0xa7, 0x91, 0x79, + 0x5d, 0xe5, 0x68, 0x60, 0x44, 0xd4, 0xcc, 0xa3, 0x5f, 0x76, 0xd0, 0xa4, 0x53, 0x8c, 0x7d, 0xf2, + 0x13, 0xd8, 0x10, 0xc9, 0xd4, 0x64, 0xdc, 0x2f, 0xae, 0x6c, 0x64, 0x67, 0xe7, 0x2b, 0xda, 0x16, + 0xb9, 0xbd, 0xe5, 0x02, 0x28, 0x7c, 0x68, 0x77, 0xb7, 0xa1, 0xee, 0xbb, 0x41, 0xce, 0xd5, 0x9a, + 0xef, 0x06, 0xda, 0xae, 0xdb, 0x50, 0x31, 0xa3, 0x66, 0x71, 0x75, 0x8d, 0x69, 0x2e, 0xb9, 0x04, + 0x15, 0x6d, 0xac, 0x89, 0x81, 0xd9, 0x59, 0xbf, 0x2d, 0x41, 0x33, 0x8b, 0x45, 0x39, 0x98, 0xf0, + 0x70, 0x1a, 0x3b, 0x68, 0x2f, 0x0f, 0xfd, 0x6d, 0x4d, 0xa7, 0xc9, 0xe8, 0xff, 0x25, 0x34, 0x8d, + 0xa4, 0x1e, 0xbe, 0x8b, 0xe7, 0x0c, 0xdf, 0x5a, 0x50, 0x0f, 0xdf, 0xf7, 0x52, 0x3d, 0xf9, 0x2d, + 0xc0, 0x4d, 0x65, 0xe7, 0xcb, 0xca, 0x28, 0xc8, 0xb5, 0xac, 0xa9, 0x4b, 0xa9, 0x49, 0xf9, 0x8a, + 0xac, 0xaf, 0x50, 0xbd, 0x98, 0x98, 0x99, 0xab, 0x4b, 0x35, 0x6f, 0xc9, 0x48, 0x64, 0xdc, 0xd2, + 0x69, 0x6e, 0x6b, 0x7a, 0xd6, 0x2d, 0x23, 0xf9, 0xfe, 0x6f, 0x0a, 0x2d, 0x98, 0xba, 0x65, 0xf4, + 0xb4, 0x5b, 0xab, 0xba, 0x85, 0x51, 0xd0, 0x6e, 0xa5, 0x53, 0x75, 0x35, 0x3b, 0x55, 0xdf, 0x48, + 0xa3, 0xa3, 0x99, 0x35, 0x8d, 0x45, 0x4d, 0xd3, 0x25, 0xf1, 0x7b, 0xd9, 0x6c, 0x95, 0x19, 0x99, + 0xca, 0xdb, 0x53, 0xa3, 0xa9, 0x29, 0xba, 0xf6, 0x7e, 0x77, 0x09, 0x75, 0xf2, 0x4a, 0x0d, 0x36, + 0x2d, 0x96, 0x69, 0xce, 0xc5, 0x73, 0x9b, 0xf3, 0xd7, 0xa0, 0xbf, 0x56, 0x0c, 0xa6, 0xf5, 0x03, + 0xf9, 0xd1, 0xaa, 0x6e, 0xa6, 0x8f, 0x07, 0x7f, 0x81, 0xdc, 0x1b, 0x32, 0x24, 0x6a, 0xc8, 0xcd, + 0xd5, 0x95, 0xa6, 0x69, 0xfc, 0xae, 0x68, 0xb3, 0xeb, 0x1f, 0xd4, 0x66, 0x2b, 0xff, 0x73, 0x9b, + 0xfd, 0x47, 0x01, 0x3e, 0xd6, 0xce, 0x9e, 0xc8, 0x09, 0x24, 0x70, 0xf0, 0xd9, 0xd4, 0xef, 0x63, + 0x4c, 0xd1, 0x53, 0x63, 0xfa, 0xf9, 0x1f, 0xbe, 0x77, 0x60, 0x83, 0x1b, 0x35, 0x3b, 0x50, 0x7a, + 0xa6, 0x77, 0xb5, 0x79, 0xee, 0x34, 0xf2, 0x40, 0x76, 0xe1, 0xc8, 0x9b, 0xe7, 0x02, 0x78, 0x75, + 0x45, 0x53, 0x58, 0x74, 0x38, 0xd9, 0x8f, 0xd3, 0x6e, 0x77, 0x98, 0x7e, 0xe3, 0xea, 0x03, 0xf4, + 0x90, 0x71, 0x7d, 0xf9, 0x80, 0x25, 0x3c, 0x24, 0xdf, 0xbb, 0xba, 0xa1, 0xfc, 0xae, 0x00, 0x9b, + 0x07, 0x33, 0xe6, 0x7a, 0xac, 0xef, 0x7a, 0xae, 0x98, 0x1f, 0x85, 0x81, 0xc0, 0x37, 0x82, 0x7c, + 0x02, 0x6d, 0xf5, 0xf5, 0xbe, 0xec, 0x66, 0x53, 0x52, 0xd3, 0x8a, 0xf8, 0x21, 0x5c, 0xc8, 0x4a, + 0xbd, 0xb7, 0xda, 0x37, 0x16, 0xda, 0xba, 0x34, 0x76, 0xa0, 0x31, 0x0d, 0x98, 0xbe, 0xdf, 0x43, + 0xf3, 0x5d, 0x95, 0x25, 0xc9, 0x87, 0x5b, 0xc4, 0xae, 0xef, 0xa3, 0xae, 0xca, 0x1a, 0x4d, 0xb6, + 0xd6, 0xff, 0x41, 0xeb, 0xb1, 0x37, 0xe5, 0xe3, 0x1e, 0xfa, 0x0a, 0x37, 0xe7, 0x66, 0xc5, 0x3a, + 0x85, 0x36, 0xc5, 0x61, 0x8c, 0x7c, 0x7c, 0x38, 0x75, 0x26, 0x28, 0x78, 0x76, 0x24, 0x28, 0xe4, + 0x47, 0x02, 0x02, 0xe5, 0x09, 0xce, 0x79, 0xb7, 0xb8, 0x53, 0x92, 0x03, 0xb7, 0x5c, 0xab, 0x77, + 0xce, 0xfd, 0x16, 0x75, 0x53, 0x92, 0xef, 0x9c, 0xdc, 0x58, 0x7f, 0x2a, 0x40, 0xe3, 0x48, 0x0e, + 0xb0, 0x3f, 0x76, 0xd4, 0x5f, 0x14, 0xff, 0x5d, 0xd8, 0x6e, 0xc3, 0x86, 0x9a, 0x7a, 0x33, 0x62, + 0x1a, 0x21, 0x2d, 0x45, 0x4e, 0xe5, 0x0e, 0x80, 0xe4, 0xe4, 0x74, 0x7c, 0x4b, 0xef, 0x8e, 0x6f, + 0x27, 0xa3, 0xaf, 0x03, 0xfc, 0x19, 0x80, 0x3e, 0x42, 0xfd, 0xbb, 0x52, 0x5e, 0xf1, 0xef, 0x4a, + 0x5d, 0xf1, 0xe5, 0xd2, 0xfa, 0x67, 0x09, 0x9a, 0xd9, 0x7f, 0x14, 0xc8, 0x17, 0x50, 0x16, 0xf3, + 0x28, 0xe9, 0x1c, 0xd7, 0xcf, 0xf9, 0xf3, 0xe1, 0x74, 0x1e, 0x21, 0x55, 0xc2, 0x8b, 0xee, 0x55, + 0xcc, 0x76, 0xaf, 0xff, 0x87, 0xc6, 0xc2, 0x90, 0xd5, 0xad, 0x1d, 0x52, 0x4b, 0xd4, 0x74, 0xfb, + 0x9a, 0xb9, 0xc2, 0x56, 0x13, 0x9e, 0x4e, 0x7c, 0x4d, 0x12, 0xd4, 0xf8, 0x78, 0x0b, 0xda, 0xc3, + 0x30, 0x76, 0xd0, 0x9b, 0xdb, 0xec, 0x35, 0x9b, 0x60, 0xa0, 0x5a, 0x71, 0x8d, 0xb6, 0x0c, 0xf5, + 0x40, 0x11, 0xc9, 0x03, 0xd0, 0xf1, 0xb4, 0x47, 0x8e, 0x76, 0xbf, 0xb2, 0xf2, 0xd3, 0x26, 0x93, + 0x3f, 0xaa, 0x6d, 0x34, 0xc9, 0x3c, 0x82, 0xf6, 0x50, 0x02, 0xcc, 0xf6, 0x0d, 0xc2, 0x54, 0x3f, + 0x6e, 0xec, 0x7f, 0xbc, 0x74, 0x40, 0x0e, 0x85, 0xb4, 0x35, 0xcc, 0x81, 0xf2, 0x05, 0x5c, 0x64, + 0x99, 0xfa, 0xb2, 0x1d, 0x5d, 0x60, 0xaa, 0x7b, 0x37, 0xf6, 0xad, 0xe5, 0xf1, 0xfb, 0x6c, 0x29, + 0xd2, 0x4d, 0xb6, 0xa2, 0x3e, 0x1f, 0xcb, 0xee, 0xa8, 0xe0, 0x6c, 0xf7, 0x35, 0x9e, 0xcd, 0x3f, + 0x4a, 0x67, 0xfa, 0x47, 0x0e, 0xf4, 0xb2, 0x5d, 0x66, 0xf7, 0x77, 0x29, 0xd4, 0xd3, 0x07, 0x80, + 0x00, 0x54, 0x9e, 0x85, 0xb1, 0xcf, 0xbc, 0xce, 0x1a, 0x69, 0x42, 0x4d, 0xb5, 0x1d, 0x37, 0x18, + 0x75, 0x0a, 0xa4, 0x05, 0xf5, 0xf4, 0x0f, 0xb0, 0x4e, 0x91, 0x34, 0xa0, 0x2a, 0xfb, 0xa7, 0xe4, + 0x95, 0xc8, 0x06, 0x34, 0x5e, 0x2c, 0x0a, 0xb6, 0x53, 0xbe, 0xfb, 0xe7, 0x12, 0x74, 0x96, 0xb1, + 0x41, 0x36, 0x61, 0xa3, 0xc7, 0x47, 0x1a, 0x9a, 0xaf, 0xd8, 0x04, 0x5f, 0x44, 0x9d, 0x35, 0xd2, + 0x85, 0x8b, 0x3d, 0x3e, 0x7a, 0xc5, 0x02, 0x41, 0x43, 0xcf, 0xeb, 0x33, 0x67, 0xa2, 0xda, 0x72, + 0xa7, 0x40, 0xb6, 0xe0, 0x42, 0x8f, 0x8f, 0x54, 0x6a, 0x4e, 0x04, 0xf3, 0xd4, 0x7b, 0xdf, 0x29, + 0x92, 0xab, 0xf0, 0xd1, 0x19, 0x72, 0xf2, 0x69, 0xd3, 0x29, 0x91, 0xcb, 0xb0, 0xd9, 0xe3, 0xa3, + 0x63, 0xb7, 0x8f, 0x71, 0x20, 0x5b, 0x9d, 0xfe, 0x7e, 0xec, 0x94, 0xcd, 0x45, 0x19, 0x86, 0x51, + 0x59, 0x27, 0x77, 0xe0, 0xa6, 0xb2, 0xeb, 0xe7, 0xe8, 0x08, 0x3d, 0xb2, 0x8e, 0x8e, 0xd8, 0x94, + 0xe3, 0xe0, 0x70, 0xde, 0x43, 0x3f, 0x8c, 0xe7, 0xea, 0xef, 0xaf, 0x4e, 0x85, 0x5c, 0x81, 0x4b, + 0x3d, 0x3e, 0xca, 0x26, 0x28, 0x39, 0xbe, 0x4a, 0xb6, 0xe1, 0xf2, 0x19, 0x9e, 0xb9, 0xa1, 0x46, + 0x2c, 0xb8, 0xd6, 0xe3, 0xa3, 0x97, 0xa1, 0x90, 0xa6, 0x46, 0x9e, 0xab, 0xc6, 0x39, 0xf5, 0xc6, + 0x25, 0x07, 0xd4, 0xc9, 0x4d, 0xb8, 0xfe, 0x4e, 0x19, 0x73, 0x10, 0x90, 0x8b, 0xd0, 0xe9, 0xf1, + 0x91, 0x41, 0xaa, 0x51, 0x6d, 0x98, 0x48, 0x25, 0x54, 0x23, 0xdc, 0x34, 0xc2, 0x39, 0x68, 0x76, + 0x5a, 0x46, 0x38, 0x8f, 0x89, 0x4e, 0xdb, 0xd8, 0x9f, 0x66, 0x38, 0x7b, 0xc1, 0xc6, 0xe1, 0xed, + 0xbf, 0xfe, 0xba, 0x56, 0xf8, 0xc3, 0xdb, 0x6b, 0x85, 0xbf, 0xbc, 0xbd, 0x56, 0xf8, 0xdb, 0xdb, + 0x6b, 0x85, 0xef, 0xfe, 0x7e, 0x6d, 0x0d, 0x3a, 0x61, 0x3c, 0xda, 0x13, 0xee, 0x64, 0xb6, 0x37, + 0x99, 0xa9, 0x7f, 0x87, 0xfb, 0x15, 0xf5, 0xf3, 0xc5, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x44, + 0x1f, 0x7d, 0x2a, 0xad, 0x16, 0x00, 0x00, } func (m *RaftMessage) Marshal() (dAtA []byte, err error) { diff --git a/proto/raft_serverpb.proto b/proto/raft_serverpb.proto index 49d513cee..15c0e79e4 100644 --- a/proto/raft_serverpb.proto +++ b/proto/raft_serverpb.proto @@ -252,6 +252,8 @@ enum ExtraMessageType { MsgGcPeerResponse = 12; MsgFlushMemtable = 13; MsgRefreshBuckets = 14; + // Message means that `from` should be tombstone. Leader can then remove this peer. + MsgTombstonePeerRequest = 15; } message FlushMemtable { diff --git a/scripts/proto.lock b/scripts/proto.lock index fd59f9c7f..4f3054338 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -17491,6 +17491,10 @@ { "name": "MsgRefreshBuckets", "integer": 14 + }, + { + "name": "MsgTombstonePeerRequest", + "integer": 15 } ] }