Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2019-09-04 00:54:58 +0300
committerJohn Cai <jcai@gitlab.com>2019-09-05 20:16:17 +0300
commitcee443aac0518d2f80aa8e3b9668d43390a918b3 (patch)
tree6c3c72a5b835602d46945defb032562d74ad5863
parent934d09b8fac8301d787ca5322aab90da75b7675d (diff)
Add RemoveRepository RPC
-rw-r--r--changelogs/unreleased/jc-remove-repository.yml5
-rw-r--r--internal/service/repository/remove.go42
-rw-r--r--internal/service/repository/remove_test.go43
-rw-r--r--proto/go/gitalypb/repository-service.pb.go476
-rw-r--r--proto/repository-service.proto13
-rw-r--r--ruby/proto/gitaly/repository-service_pb.rb7
-rw-r--r--ruby/proto/gitaly/repository-service_services_pb.rb1
7 files changed, 404 insertions, 183 deletions
diff --git a/changelogs/unreleased/jc-remove-repository.yml b/changelogs/unreleased/jc-remove-repository.yml
new file mode 100644
index 000000000..7e040d964
--- /dev/null
+++ b/changelogs/unreleased/jc-remove-repository.yml
@@ -0,0 +1,5 @@
+---
+title: Add RemoveRepository RPC
+merge_request: 1470
+author:
+type: other
diff --git a/internal/service/repository/remove.go b/internal/service/repository/remove.go
new file mode 100644
index 000000000..d81bf7b27
--- /dev/null
+++ b/internal/service/repository/remove.go
@@ -0,0 +1,42 @@
+package repository
+
+import (
+ "context"
+ "os"
+ "path/filepath"
+
+ "gitlab.com/gitlab-org/gitaly/internal/config"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+ "gitlab.com/gitlab-org/gitaly/internal/tempdir"
+ "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
+)
+
+func (s *server) RemoveRepository(ctx context.Context, in *gitalypb.RemoveRepositoryRequest) (*gitalypb.RemoveRepositoryResponse, error) {
+ path, err := helper.GetPath(in.Repository)
+ if err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ storage, ok := config.Config.Storage(in.GetRepository().GetStorageName())
+ if !ok {
+ return nil, helper.ErrInvalidArgumentf("storage %v not found", in.GetRepository().GetStorageName())
+ }
+
+ base := filepath.Base(path)
+
+ tempDir := tempdir.TempDir(storage)
+ destDir := filepath.Join(tempDir, base+"+removed")
+
+ if err = os.Rename(path, destDir); err != nil {
+ if os.IsNotExist(err) {
+ return &gitalypb.RemoveRepositoryResponse{}, nil
+ }
+ return nil, helper.ErrInternal(err)
+ }
+
+ if err = os.RemoveAll(destDir); err != nil {
+ return nil, helper.ErrInternal(err)
+ }
+
+ return &gitalypb.RemoveRepositoryResponse{}, nil
+}
diff --git a/internal/service/repository/remove_test.go b/internal/service/repository/remove_test.go
new file mode 100644
index 000000000..652bccbe5
--- /dev/null
+++ b/internal/service/repository/remove_test.go
@@ -0,0 +1,43 @@
+package repository
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+ "gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
+)
+
+func TestRemoveRepository(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ testRepo, testRepoPath, cleanupFn := testhelper.NewTestRepo(t)
+ defer cleanupFn()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ _, err := client.RemoveRepository(ctx, &gitalypb.RemoveRepositoryRequest{Repository: testRepo})
+ require.NoError(t, err)
+
+ testhelper.AssertPathNotExists(t, testRepoPath)
+}
+
+func TestRemoveRepositoryDoesNotExist(t *testing.T) {
+ server, serverSocketPath := runRepoServer(t)
+ defer server.Stop()
+
+ client, conn := newRepositoryClient(t, serverSocketPath)
+ defer conn.Close()
+
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ _, err := client.RemoveRepository(ctx, &gitalypb.RemoveRepositoryRequest{
+ Repository: &gitalypb.Repository{StorageName: "default", RelativePath: "/does/not/exist"}})
+ require.NoError(t, err)
+}
diff --git a/proto/go/gitalypb/repository-service.pb.go b/proto/go/gitalypb/repository-service.pb.go
index 688adcbbf..15b81767f 100644
--- a/proto/go/gitalypb/repository-service.pb.go
+++ b/proto/go/gitalypb/repository-service.pb.go
@@ -3680,6 +3680,76 @@ func (m *CloneFromPoolInternalResponse) XXX_DiscardUnknown() {
var xxx_messageInfo_CloneFromPoolInternalResponse proto.InternalMessageInfo
+type RemoveRepositoryRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *RemoveRepositoryRequest) Reset() { *m = RemoveRepositoryRequest{} }
+func (m *RemoveRepositoryRequest) String() string { return proto.CompactTextString(m) }
+func (*RemoveRepositoryRequest) ProtoMessage() {}
+func (*RemoveRepositoryRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_e9b1768cf174c79b, []int{79}
+}
+
+func (m *RemoveRepositoryRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_RemoveRepositoryRequest.Unmarshal(m, b)
+}
+func (m *RemoveRepositoryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_RemoveRepositoryRequest.Marshal(b, m, deterministic)
+}
+func (m *RemoveRepositoryRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RemoveRepositoryRequest.Merge(m, src)
+}
+func (m *RemoveRepositoryRequest) XXX_Size() int {
+ return xxx_messageInfo_RemoveRepositoryRequest.Size(m)
+}
+func (m *RemoveRepositoryRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_RemoveRepositoryRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RemoveRepositoryRequest proto.InternalMessageInfo
+
+func (m *RemoveRepositoryRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+type RemoveRepositoryResponse struct {
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *RemoveRepositoryResponse) Reset() { *m = RemoveRepositoryResponse{} }
+func (m *RemoveRepositoryResponse) String() string { return proto.CompactTextString(m) }
+func (*RemoveRepositoryResponse) ProtoMessage() {}
+func (*RemoveRepositoryResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_e9b1768cf174c79b, []int{80}
+}
+
+func (m *RemoveRepositoryResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_RemoveRepositoryResponse.Unmarshal(m, b)
+}
+func (m *RemoveRepositoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_RemoveRepositoryResponse.Marshal(b, m, deterministic)
+}
+func (m *RemoveRepositoryResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RemoveRepositoryResponse.Merge(m, src)
+}
+func (m *RemoveRepositoryResponse) XXX_Size() int {
+ return xxx_messageInfo_RemoveRepositoryResponse.Size(m)
+}
+func (m *RemoveRepositoryResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_RemoveRepositoryResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RemoveRepositoryResponse proto.InternalMessageInfo
+
func init() {
proto.RegisterEnum("gitaly.GetArchiveRequest_Format", GetArchiveRequest_Format_name, GetArchiveRequest_Format_value)
proto.RegisterEnum("gitaly.GetRawChangesResponse_RawChange_Operation", GetRawChangesResponse_RawChange_Operation_name, GetRawChangesResponse_RawChange_Operation_value)
@@ -3764,195 +3834,199 @@ func init() {
proto.RegisterType((*CloneFromPoolResponse)(nil), "gitaly.CloneFromPoolResponse")
proto.RegisterType((*CloneFromPoolInternalRequest)(nil), "gitaly.CloneFromPoolInternalRequest")
proto.RegisterType((*CloneFromPoolInternalResponse)(nil), "gitaly.CloneFromPoolInternalResponse")
+ proto.RegisterType((*RemoveRepositoryRequest)(nil), "gitaly.RemoveRepositoryRequest")
+ proto.RegisterType((*RemoveRepositoryResponse)(nil), "gitaly.RemoveRepositoryResponse")
}
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor_e9b1768cf174c79b) }
var fileDescriptor_e9b1768cf174c79b = []byte{
- // 2923 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4b, 0x6f, 0xdc, 0xc8,
- 0xf1, 0x37, 0x35, 0x92, 0x66, 0xa6, 0x66, 0x64, 0x8f, 0x5a, 0xb2, 0x34, 0xa2, 0x25, 0xcb, 0xa6,
- 0xbd, 0x5e, 0xef, 0x4b, 0xf6, 0xca, 0x7f, 0xe0, 0xbf, 0xc8, 0x03, 0x0b, 0xbd, 0xa5, 0xb5, 0xf5,
- 0x08, 0x25, 0xc3, 0x58, 0x03, 0x0b, 0x2e, 0xc5, 0xe9, 0xd1, 0x30, 0xc3, 0x61, 0xcf, 0x36, 0x39,
- 0xd6, 0x6a, 0x4f, 0x39, 0x24, 0xc0, 0x1e, 0x82, 0x20, 0x7b, 0x5a, 0x20, 0xe7, 0x7c, 0x82, 0xdc,
- 0x82, 0x20, 0xf7, 0xdc, 0x73, 0xca, 0x57, 0xd9, 0x4b, 0x82, 0x7e, 0x0c, 0x9b, 0x1c, 0x92, 0x63,
- 0x2f, 0xe8, 0x6c, 0x6e, 0xec, 0xaa, 0xee, 0xaa, 0xea, 0xea, 0xae, 0xee, 0xae, 0x5f, 0x11, 0x9a,
- 0x14, 0xf7, 0x49, 0xe0, 0x86, 0x84, 0x5e, 0x7d, 0x14, 0x60, 0xfa, 0xca, 0x75, 0xf0, 0x5a, 0x9f,
- 0x92, 0x90, 0xa0, 0xe9, 0x0b, 0x37, 0xb4, 0xbd, 0x2b, 0xbd, 0x1e, 0x74, 0x6c, 0x8a, 0x5b, 0x82,
- 0x6a, 0x1c, 0xc2, 0xa2, 0x19, 0x8d, 0xd8, 0xf9, 0xda, 0x0d, 0xc2, 0xc0, 0xc4, 0x5f, 0x0d, 0x70,
- 0x10, 0xa2, 0x75, 0x00, 0x25, 0xac, 0xa9, 0xdd, 0xd1, 0x1e, 0xd6, 0xd6, 0xd1, 0x9a, 0x90, 0xb2,
- 0xa6, 0x06, 0x99, 0xb1, 0x5e, 0xc6, 0x3a, 0x34, 0xd3, 0xe2, 0x82, 0x3e, 0xf1, 0x03, 0x8c, 0x16,
- 0x60, 0x1a, 0x73, 0x0a, 0x97, 0x55, 0x31, 0x65, 0xcb, 0x38, 0xe2, 0x63, 0x6c, 0xa7, 0x7b, 0xe0,
- 0x3b, 0x14, 0xf7, 0xb0, 0x1f, 0xda, 0x5e, 0x11, 0x1b, 0x6e, 0xc1, 0x52, 0x86, 0x3c, 0x61, 0x84,
- 0xe1, 0xc1, 0xac, 0x60, 0xee, 0x0e, 0xbc, 0x22, 0x5a, 0xd0, 0x3d, 0x98, 0x71, 0x28, 0xb6, 0x43,
- 0x6c, 0x9d, 0xbb, 0x61, 0xcf, 0xee, 0x37, 0x27, 0xf8, 0xa4, 0xea, 0x82, 0xb8, 0xc9, 0x69, 0xc6,
- 0x3c, 0xa0, 0xb8, 0x36, 0x69, 0x43, 0x1f, 0x6e, 0xee, 0xd9, 0xf4, 0xdc, 0xbe, 0xc0, 0x5b, 0xc4,
- 0xf3, 0xb0, 0x13, 0xfe, 0xd7, 0xed, 0x68, 0xc2, 0xc2, 0xa8, 0x46, 0x69, 0xcb, 0x36, 0x5c, 0xdf,
- 0xf2, 0xb0, 0xed, 0x0f, 0xfa, 0x45, 0x5c, 0x3e, 0x0b, 0x37, 0x22, 0x29, 0x52, 0xf0, 0x53, 0xb8,
- 0xa9, 0x3a, 0x9f, 0xba, 0xdf, 0xe0, 0x22, 0xf2, 0x3f, 0x84, 0x85, 0x51, 0x61, 0x72, 0x53, 0x21,
- 0x98, 0x0c, 0xdc, 0x6f, 0x30, 0x97, 0x53, 0x32, 0xf9, 0xb7, 0xd1, 0x85, 0xa5, 0x8d, 0x7e, 0xdf,
- 0xbb, 0xda, 0x73, 0x43, 0x3b, 0x0c, 0xa9, 0x7b, 0x3e, 0x08, 0x71, 0x91, 0x5d, 0x8d, 0x74, 0xa8,
- 0x50, 0xfc, 0xca, 0x0d, 0x5c, 0xe2, 0x73, 0xf7, 0xd6, 0xcd, 0xa8, 0x6d, 0x2c, 0x83, 0x9e, 0xa5,
- 0x4c, 0x7a, 0xe1, 0xaf, 0x13, 0x80, 0x76, 0x71, 0xe8, 0x74, 0x4c, 0xdc, 0x23, 0x61, 0x11, 0x1f,
- 0xb0, 0xf0, 0xa1, 0x5c, 0x08, 0x37, 0xa1, 0x6a, 0xca, 0x16, 0x9a, 0x87, 0xa9, 0x36, 0xa1, 0x0e,
- 0x6e, 0x96, 0xf8, 0xc2, 0x8b, 0x06, 0x5a, 0x84, 0xb2, 0x4f, 0xac, 0xd0, 0xbe, 0x08, 0x9a, 0x93,
- 0x22, 0xda, 0x7c, 0x72, 0x66, 0x5f, 0x04, 0xa8, 0x09, 0xe5, 0xd0, 0xed, 0x61, 0x32, 0x08, 0x9b,
- 0x53, 0x77, 0xb4, 0x87, 0x53, 0xe6, 0xb0, 0xc9, 0x86, 0x04, 0x41, 0xc7, 0xea, 0xe2, 0xab, 0xe6,
- 0xb4, 0xd0, 0x10, 0x04, 0x9d, 0xa7, 0xf8, 0x0a, 0xad, 0x42, 0xad, 0xeb, 0x93, 0x4b, 0xdf, 0xea,
- 0x10, 0x16, 0xbd, 0x65, 0xce, 0x04, 0x4e, 0xda, 0x67, 0x14, 0xb4, 0x04, 0x15, 0x9f, 0x58, 0x7d,
- 0x3a, 0xf0, 0x71, 0xb3, 0xca, 0xb5, 0x95, 0x7d, 0x72, 0xc2, 0x9a, 0xe8, 0x09, 0xcc, 0x08, 0x3b,
- 0xad, 0xbe, 0x4d, 0xed, 0x5e, 0xd0, 0x04, 0x3e, 0xd9, 0xeb, 0x6a, 0xb2, 0xdc, 0x2f, 0x75, 0xd1,
- 0xe9, 0x84, 0xf7, 0xf9, 0x6c, 0xb2, 0x52, 0x69, 0x54, 0x8d, 0x9b, 0x30, 0x97, 0x70, 0x9d, 0x74,
- 0xe9, 0x21, 0x2c, 0x6e, 0xf1, 0xbd, 0x1d, 0xf3, 0x53, 0x81, 0xad, 0xa5, 0x43, 0x33, 0x2d, 0x4e,
- 0xaa, 0xfa, 0xb7, 0x06, 0xb3, 0x7b, 0x38, 0xdc, 0xa0, 0x4e, 0xc7, 0x7d, 0x55, 0x68, 0xf1, 0x6e,
- 0x41, 0xd5, 0x21, 0xbd, 0x9e, 0x1b, 0x5a, 0x6e, 0x4b, 0xae, 0x5f, 0x45, 0x10, 0x0e, 0x5a, 0x6c,
- 0x65, 0xfb, 0x14, 0xb7, 0xdd, 0xaf, 0xf9, 0x12, 0x56, 0x4d, 0xd9, 0x42, 0x9f, 0xc0, 0x74, 0x9b,
- 0xd0, 0x9e, 0x1d, 0xf2, 0x25, 0xbc, 0xbe, 0x7e, 0x67, 0xa8, 0x24, 0x65, 0xd3, 0xda, 0x2e, 0xef,
- 0x67, 0xca, 0xfe, 0x2c, 0x2a, 0xfa, 0x76, 0xd8, 0xe1, 0x2b, 0x5c, 0x37, 0xf9, 0xb7, 0xf1, 0x04,
- 0xa6, 0x45, 0x2f, 0x54, 0x86, 0xd2, 0xcb, 0x83, 0x93, 0xc6, 0x35, 0xf6, 0x71, 0xb6, 0x61, 0x36,
- 0x34, 0x04, 0x30, 0x7d, 0xb6, 0x61, 0x5a, 0x7b, 0x2f, 0x1b, 0x13, 0xa8, 0x06, 0x65, 0xf6, 0xbd,
- 0xf9, 0x72, 0xbd, 0x51, 0x32, 0x1e, 0x02, 0x8a, 0x2b, 0x53, 0x41, 0xd7, 0xb2, 0x43, 0x9b, 0xcf,
- 0xbd, 0x6e, 0xf2, 0x6f, 0xb6, 0x2c, 0xfb, 0x76, 0xf0, 0x8c, 0x38, 0xb6, 0xb7, 0x49, 0x6d, 0xdf,
- 0xe9, 0x14, 0x0a, 0x39, 0xe3, 0x31, 0x34, 0xd3, 0xe2, 0xa4, 0xfa, 0x79, 0x98, 0x7a, 0x65, 0x7b,
- 0x03, 0x2c, 0xef, 0x11, 0xd1, 0x30, 0xfe, 0xa9, 0x41, 0x93, 0xef, 0x97, 0x53, 0x32, 0xa0, 0x0e,
- 0x16, 0xa3, 0x8a, 0xac, 0xd9, 0xa7, 0x30, 0x1b, 0x70, 0x51, 0x56, 0x6c, 0xe8, 0x44, 0xee, 0xd0,
- 0x86, 0xe8, 0x6c, 0x26, 0x8e, 0x66, 0x29, 0xe0, 0x9c, 0x1b, 0xc3, 0x97, 0xb7, 0x6e, 0xd6, 0x83,
- 0x98, 0x81, 0x68, 0x05, 0x20, 0xb4, 0xe9, 0x05, 0x0e, 0x2d, 0x8a, 0xdb, 0x7c, 0xa1, 0xeb, 0x66,
- 0x55, 0x50, 0x4c, 0xdc, 0x36, 0x9e, 0xc0, 0x52, 0xc6, 0xa4, 0xd4, 0x8d, 0x4a, 0x71, 0x30, 0xf0,
- 0xc2, 0xe1, 0x8d, 0x2a, 0x5a, 0xc6, 0x06, 0xd4, 0x76, 0x03, 0xa7, 0x5b, 0xc4, 0xff, 0xf7, 0xa1,
- 0x2e, 0x44, 0x28, 0x9f, 0x63, 0x4a, 0x09, 0x95, 0x6b, 0x2e, 0x1a, 0xc6, 0x5f, 0x34, 0xb8, 0xf1,
- 0x82, 0xba, 0x2c, 0x78, 0xda, 0x45, 0x5c, 0xdd, 0x80, 0x12, 0x9b, 0xbd, 0x38, 0x5b, 0xd9, 0x67,
- 0xe2, 0xc8, 0x2d, 0x25, 0x8f, 0x5c, 0x74, 0x17, 0xea, 0xc4, 0x6b, 0x59, 0x11, 0x5f, 0x38, 0xad,
- 0x46, 0xbc, 0x96, 0x39, 0xec, 0x12, 0x1d, 0x8a, 0x53, 0xb1, 0x43, 0xf1, 0xb3, 0xc9, 0xca, 0x74,
- 0xa3, 0x6c, 0x34, 0xa1, 0xa1, 0x6c, 0x16, 0xd3, 0xfb, 0x6c, 0xb2, 0xa2, 0x35, 0x26, 0x8c, 0x0e,
- 0xcc, 0xef, 0xba, 0x7e, 0xeb, 0x10, 0xd3, 0x0b, 0xbc, 0x69, 0x07, 0x85, 0x22, 0x7e, 0x19, 0xaa,
- 0x43, 0x03, 0x83, 0xe6, 0xc4, 0x9d, 0x12, 0x5b, 0xd6, 0x88, 0x60, 0x7c, 0x00, 0x37, 0x47, 0x34,
- 0xa9, 0xd0, 0x3a, 0xb7, 0x03, 0xb1, 0xb5, 0xab, 0x26, 0xff, 0x36, 0xbe, 0xd5, 0x60, 0x56, 0x9c,
- 0x51, 0xbb, 0x84, 0x76, 0xff, 0x97, 0x5b, 0x9a, 0x3d, 0x68, 0xe2, 0x96, 0x44, 0x8f, 0xaa, 0xa5,
- 0x83, 0xc0, 0xc4, 0xcc, 0xd8, 0x03, 0xff, 0x84, 0x92, 0x0b, 0x8a, 0x83, 0xa0, 0xe0, 0x71, 0x49,
- 0xb9, 0xb8, 0xd8, 0x71, 0x29, 0x08, 0x07, 0x2d, 0xe3, 0x97, 0xa0, 0x67, 0x69, 0x93, 0x0e, 0x5c,
- 0x85, 0x9a, 0xeb, 0x5b, 0x7d, 0x49, 0x96, 0x81, 0x01, 0x6e, 0xd4, 0x51, 0x18, 0x7b, 0xfa, 0xd5,
- 0xc0, 0x0e, 0x3a, 0x6f, 0xcd, 0xd8, 0x80, 0x8b, 0x8b, 0x19, 0x2b, 0x08, 0x43, 0x63, 0xd3, 0xda,
- 0xde, 0xd4, 0xd8, 0x36, 0xdc, 0x1e, 0xbd, 0x9d, 0x76, 0x29, 0xe9, 0x3d, 0x37, 0x9f, 0x15, 0x0c,
- 0xb7, 0x01, 0xf5, 0xa4, 0xad, 0xec, 0xd3, 0xb8, 0x0b, 0xab, 0xb9, 0x7a, 0xe4, 0x22, 0x1f, 0xc0,
- 0x9c, 0xe8, 0xb2, 0x39, 0xf0, 0x5b, 0x5e, 0xa1, 0xe7, 0xdc, 0xfb, 0x30, 0x9f, 0x14, 0x35, 0xe6,
- 0x5e, 0xc1, 0x80, 0x78, 0xb4, 0x6e, 0x11, 0xbf, 0xed, 0x5e, 0x14, 0x5c, 0xa7, 0xf6, 0xc0, 0xf3,
- 0x2c, 0x7e, 0x33, 0xca, 0x75, 0x62, 0x84, 0x13, 0x76, 0x3b, 0x7e, 0x00, 0x73, 0x09, 0x35, 0x63,
- 0x8f, 0xbd, 0x6f, 0x27, 0xa0, 0x71, 0x8a, 0xc3, 0xe2, 0x26, 0x7d, 0x02, 0x65, 0xec, 0x87, 0xd4,
- 0xc5, 0xe2, 0x88, 0xa8, 0xad, 0xdf, 0x1e, 0x0e, 0x18, 0x15, 0xbf, 0xb6, 0xe3, 0x87, 0xf4, 0xca,
- 0x1c, 0x76, 0xd7, 0x7f, 0xa7, 0xc1, 0x14, 0x27, 0xb1, 0xc5, 0x64, 0x4f, 0x36, 0x71, 0x60, 0xb0,
- 0x4f, 0xb4, 0x02, 0x55, 0x7e, 0x25, 0x5a, 0x41, 0x48, 0xc5, 0x44, 0xf7, 0xaf, 0x99, 0x15, 0x4e,
- 0x3a, 0x0d, 0x29, 0xba, 0x0b, 0x35, 0xc1, 0x76, 0xfd, 0xf0, 0xc9, 0x3a, 0x3f, 0x5d, 0xa7, 0xf6,
- 0xaf, 0x99, 0xc0, 0x89, 0x07, 0x8c, 0x86, 0x56, 0x41, 0xb4, 0xac, 0x73, 0x42, 0x3c, 0xf1, 0x80,
- 0xdc, 0xbf, 0x66, 0x0a, 0xa9, 0x9b, 0x84, 0x78, 0x9b, 0x65, 0x79, 0x05, 0x1b, 0x73, 0x30, 0x1b,
- 0x33, 0x55, 0x6e, 0x95, 0x2f, 0x60, 0x6e, 0x1b, 0x7b, 0xf8, 0x6d, 0x2c, 0x1a, 0x82, 0xc9, 0x2e,
- 0xbe, 0x12, 0xee, 0xa9, 0x9a, 0xfc, 0xdb, 0x58, 0x80, 0xf9, 0xa4, 0x78, 0xa9, 0xd6, 0x61, 0x89,
- 0x5f, 0x10, 0x12, 0x8a, 0xb7, 0x06, 0x41, 0x48, 0x7a, 0xfb, 0x84, 0x74, 0x83, 0x82, 0xca, 0xf9,
- 0x7e, 0x9c, 0x88, 0xed, 0xc7, 0x65, 0xd0, 0xb3, 0x94, 0x48, 0x13, 0x8e, 0xa0, 0xb9, 0x69, 0x3b,
- 0xdd, 0x41, 0xff, 0xed, 0x58, 0x60, 0x3c, 0x82, 0xa5, 0x0c, 0x79, 0x63, 0xc2, 0xa5, 0x0b, 0x77,
- 0xb3, 0x02, 0xb9, 0x70, 0xcc, 0x66, 0xfa, 0xe2, 0x3e, 0x18, 0xe3, 0x94, 0x49, 0x9f, 0xec, 0x03,
- 0x62, 0x77, 0xdd, 0x33, 0xd7, 0xc1, 0x7e, 0xa1, 0x3b, 0xd5, 0xd8, 0x82, 0xb9, 0x84, 0x24, 0xe9,
- 0x87, 0x0f, 0x01, 0x79, 0x82, 0x64, 0x05, 0x1d, 0x42, 0x43, 0xcb, 0xb7, 0x7b, 0xc3, 0x1b, 0xb4,
- 0x21, 0x39, 0xa7, 0x8c, 0x71, 0x64, 0xf7, 0xf8, 0x12, 0xed, 0xe1, 0xf0, 0xc0, 0x6f, 0x93, 0x8d,
- 0xb7, 0x91, 0x1c, 0x1a, 0x3f, 0x87, 0xa5, 0x0c, 0x79, 0xd2, 0xb4, 0xdb, 0x00, 0x2a, 0x2b, 0x94,
- 0x0b, 0x15, 0xa3, 0x30, 0x63, 0xb6, 0x6c, 0xcf, 0x19, 0x78, 0x76, 0x88, 0xb7, 0x3a, 0xd8, 0xe9,
- 0x06, 0x83, 0x5e, 0x11, 0x63, 0xfe, 0x1f, 0x96, 0x32, 0xe4, 0x49, 0x63, 0x74, 0xa8, 0x38, 0x92,
- 0x26, 0xbd, 0x13, 0xb5, 0xd9, 0x22, 0xed, 0xe1, 0xf0, 0xd4, 0xb7, 0xfb, 0x41, 0x87, 0x14, 0x01,
- 0x24, 0x8c, 0xf7, 0x60, 0x2e, 0x21, 0x69, 0xcc, 0x66, 0xfd, 0x4e, 0x83, 0x7b, 0x59, 0x1b, 0xe8,
- 0x2d, 0x98, 0xc1, 0x72, 0xd2, 0x4e, 0x18, 0xf6, 0x2d, 0x75, 0xd1, 0x95, 0x59, 0xfb, 0x39, 0xf5,
- 0xd8, 0x45, 0xc0, 0x59, 0xf6, 0x20, 0xec, 0xc8, 0x94, 0x8b, 0xf7, 0xdd, 0x18, 0x84, 0x1d, 0xe3,
- 0x01, 0xdc, 0x1f, 0x6f, 0x92, 0xdc, 0xd5, 0x7f, 0xd4, 0x60, 0x7e, 0x0f, 0x87, 0xa6, 0x7d, 0xb9,
- 0xd5, 0xb1, 0xfd, 0x8b, 0x62, 0x00, 0xc3, 0x3d, 0x98, 0x69, 0x53, 0xd2, 0xb3, 0x12, 0x28, 0x43,
+ // 2951 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4b, 0x73, 0xdc, 0xc6,
+ 0xf1, 0x17, 0xb8, 0x24, 0x77, 0xb7, 0x77, 0x29, 0x2d, 0x87, 0x14, 0xb9, 0x84, 0x48, 0x51, 0x82,
+ 0x64, 0x59, 0x7e, 0x51, 0x32, 0xf5, 0xaf, 0xfa, 0xbb, 0xfe, 0x8f, 0x72, 0xf1, 0x4d, 0x5a, 0xe2,
+ 0x23, 0x20, 0x55, 0x2a, 0xab, 0xca, 0x05, 0x83, 0xd8, 0x59, 0x2e, 0xb2, 0x58, 0xcc, 0x7a, 0x80,
+ 0x15, 0x4d, 0x9f, 0x72, 0x48, 0xaa, 0x7c, 0x4a, 0xc5, 0x27, 0x57, 0xe5, 0x9c, 0x4f, 0x90, 0x5b,
+ 0x2a, 0x95, 0x7b, 0xee, 0x39, 0xe5, 0x4b, 0xe4, 0x03, 0xf8, 0x92, 0xd4, 0x3c, 0x16, 0x03, 0x2c,
+ 0x80, 0xb5, 0x5c, 0x60, 0x9c, 0x1b, 0xa6, 0xbb, 0xa7, 0xbb, 0xa7, 0xe7, 0xd9, 0xbf, 0x06, 0x34,
+ 0x29, 0xee, 0x93, 0xc0, 0x0d, 0x09, 0xbd, 0xfa, 0x28, 0xc0, 0xf4, 0x8d, 0xeb, 0xe0, 0xb5, 0x3e,
+ 0x25, 0x21, 0x41, 0xd3, 0x17, 0x6e, 0x68, 0x7b, 0x57, 0x7a, 0x3d, 0xe8, 0xd8, 0x14, 0xb7, 0x04,
+ 0xd5, 0x38, 0x84, 0x45, 0x33, 0xea, 0xb1, 0xf3, 0xb5, 0x1b, 0x84, 0x81, 0x89, 0xbf, 0x1a, 0xe0,
+ 0x20, 0x44, 0xeb, 0x00, 0x4a, 0x59, 0x53, 0xbb, 0xa7, 0x3d, 0xae, 0xad, 0xa3, 0x35, 0xa1, 0x65,
+ 0x4d, 0x75, 0x32, 0x63, 0x52, 0xc6, 0x3a, 0x34, 0xd3, 0xea, 0x82, 0x3e, 0xf1, 0x03, 0x8c, 0x16,
+ 0x60, 0x1a, 0x73, 0x0a, 0xd7, 0x55, 0x31, 0x65, 0xcb, 0x38, 0xe2, 0x7d, 0x6c, 0xa7, 0x7b, 0xe0,
+ 0x3b, 0x14, 0xf7, 0xb0, 0x1f, 0xda, 0x5e, 0x11, 0x1f, 0xee, 0xc0, 0x52, 0x86, 0x3e, 0xe1, 0x84,
+ 0xe1, 0xc1, 0xac, 0x60, 0xee, 0x0e, 0xbc, 0x22, 0x56, 0xd0, 0x03, 0x98, 0x71, 0x28, 0xb6, 0x43,
+ 0x6c, 0x9d, 0xbb, 0x61, 0xcf, 0xee, 0x37, 0x27, 0xf8, 0xa0, 0xea, 0x82, 0xb8, 0xc9, 0x69, 0xc6,
+ 0x3c, 0xa0, 0xb8, 0x35, 0xe9, 0x43, 0x1f, 0x6e, 0xef, 0xd9, 0xf4, 0xdc, 0xbe, 0xc0, 0x5b, 0xc4,
+ 0xf3, 0xb0, 0x13, 0xfe, 0xdb, 0xfd, 0x68, 0xc2, 0xc2, 0xa8, 0x45, 0xe9, 0xcb, 0x36, 0xdc, 0xdc,
+ 0xf2, 0xb0, 0xed, 0x0f, 0xfa, 0x45, 0x42, 0x3e, 0x0b, 0xb7, 0x22, 0x2d, 0x52, 0xf1, 0x73, 0xb8,
+ 0xad, 0x84, 0x4f, 0xdd, 0x6f, 0x70, 0x11, 0xfd, 0x1f, 0xc2, 0xc2, 0xa8, 0x32, 0xb9, 0xa8, 0x10,
+ 0x4c, 0x06, 0xee, 0x37, 0x98, 0xeb, 0x29, 0x99, 0xfc, 0xdb, 0xe8, 0xc2, 0xd2, 0x46, 0xbf, 0xef,
+ 0x5d, 0xed, 0xb9, 0xa1, 0x1d, 0x86, 0xd4, 0x3d, 0x1f, 0x84, 0xb8, 0xc8, 0xaa, 0x46, 0x3a, 0x54,
+ 0x28, 0x7e, 0xe3, 0x06, 0x2e, 0xf1, 0x79, 0x78, 0xeb, 0x66, 0xd4, 0x36, 0x96, 0x41, 0xcf, 0x32,
+ 0x26, 0xa3, 0xf0, 0xa7, 0x09, 0x40, 0xbb, 0x38, 0x74, 0x3a, 0x26, 0xee, 0x91, 0xb0, 0x48, 0x0c,
+ 0xd8, 0xf6, 0xa1, 0x5c, 0x09, 0x77, 0xa1, 0x6a, 0xca, 0x16, 0x9a, 0x87, 0xa9, 0x36, 0xa1, 0x0e,
+ 0x6e, 0x96, 0xf8, 0xc4, 0x8b, 0x06, 0x5a, 0x84, 0xb2, 0x4f, 0xac, 0xd0, 0xbe, 0x08, 0x9a, 0x93,
+ 0x62, 0xb7, 0xf9, 0xe4, 0xcc, 0xbe, 0x08, 0x50, 0x13, 0xca, 0xa1, 0xdb, 0xc3, 0x64, 0x10, 0x36,
+ 0xa7, 0xee, 0x69, 0x8f, 0xa7, 0xcc, 0x61, 0x93, 0x75, 0x09, 0x82, 0x8e, 0xd5, 0xc5, 0x57, 0xcd,
+ 0x69, 0x61, 0x21, 0x08, 0x3a, 0xcf, 0xf1, 0x15, 0x5a, 0x85, 0x5a, 0xd7, 0x27, 0x97, 0xbe, 0xd5,
+ 0x21, 0x6c, 0xf7, 0x96, 0x39, 0x13, 0x38, 0x69, 0x9f, 0x51, 0xd0, 0x12, 0x54, 0x7c, 0x62, 0xf5,
+ 0xe9, 0xc0, 0xc7, 0xcd, 0x2a, 0xb7, 0x56, 0xf6, 0xc9, 0x09, 0x6b, 0xa2, 0x67, 0x30, 0x23, 0xfc,
+ 0xb4, 0xfa, 0x36, 0xb5, 0x7b, 0x41, 0x13, 0xf8, 0x60, 0x6f, 0xaa, 0xc1, 0xf2, 0xb8, 0xd4, 0x85,
+ 0xd0, 0x09, 0x97, 0xf9, 0x6c, 0xb2, 0x52, 0x69, 0x54, 0x8d, 0xdb, 0x30, 0x97, 0x08, 0x9d, 0x0c,
+ 0xe9, 0x21, 0x2c, 0x6e, 0xf1, 0xb5, 0x1d, 0x8b, 0x53, 0x81, 0xa5, 0xa5, 0x43, 0x33, 0xad, 0x4e,
+ 0x9a, 0xfa, 0xa7, 0x06, 0xb3, 0x7b, 0x38, 0xdc, 0xa0, 0x4e, 0xc7, 0x7d, 0x53, 0x68, 0xf2, 0xee,
+ 0x40, 0xd5, 0x21, 0xbd, 0x9e, 0x1b, 0x5a, 0x6e, 0x4b, 0xce, 0x5f, 0x45, 0x10, 0x0e, 0x5a, 0x6c,
+ 0x66, 0xfb, 0x14, 0xb7, 0xdd, 0xaf, 0xf9, 0x14, 0x56, 0x4d, 0xd9, 0x42, 0x9f, 0xc0, 0x74, 0x9b,
+ 0xd0, 0x9e, 0x1d, 0xf2, 0x29, 0xbc, 0xb9, 0x7e, 0x6f, 0x68, 0x24, 0xe5, 0xd3, 0xda, 0x2e, 0x97,
+ 0x33, 0xa5, 0x3c, 0xdb, 0x15, 0x7d, 0x3b, 0xec, 0xf0, 0x19, 0xae, 0x9b, 0xfc, 0xdb, 0x78, 0x06,
+ 0xd3, 0x42, 0x0a, 0x95, 0xa1, 0xf4, 0xfa, 0xe0, 0xa4, 0x71, 0x83, 0x7d, 0x9c, 0x6d, 0x98, 0x0d,
+ 0x0d, 0x01, 0x4c, 0x9f, 0x6d, 0x98, 0xd6, 0xde, 0xeb, 0xc6, 0x04, 0xaa, 0x41, 0x99, 0x7d, 0x6f,
+ 0xbe, 0x5e, 0x6f, 0x94, 0x8c, 0xc7, 0x80, 0xe2, 0xc6, 0xd4, 0xa6, 0x6b, 0xd9, 0xa1, 0xcd, 0xc7,
+ 0x5e, 0x37, 0xf9, 0x37, 0x9b, 0x96, 0x7d, 0x3b, 0x78, 0x41, 0x1c, 0xdb, 0xdb, 0xa4, 0xb6, 0xef,
+ 0x74, 0x0a, 0x6d, 0x39, 0xe3, 0x29, 0x34, 0xd3, 0xea, 0xa4, 0xf9, 0x79, 0x98, 0x7a, 0x63, 0x7b,
+ 0x03, 0x2c, 0xef, 0x11, 0xd1, 0x30, 0xfe, 0xa6, 0x41, 0x93, 0xaf, 0x97, 0x53, 0x32, 0xa0, 0x0e,
+ 0x16, 0xbd, 0x8a, 0xcc, 0xd9, 0xa7, 0x30, 0x1b, 0x70, 0x55, 0x56, 0xac, 0xeb, 0x44, 0x6e, 0xd7,
+ 0x86, 0x10, 0x36, 0x13, 0x47, 0xb3, 0x54, 0x70, 0xce, 0x9d, 0xe1, 0xd3, 0x5b, 0x37, 0xeb, 0x41,
+ 0xcc, 0x41, 0xb4, 0x02, 0x10, 0xda, 0xf4, 0x02, 0x87, 0x16, 0xc5, 0x6d, 0x3e, 0xd1, 0x75, 0xb3,
+ 0x2a, 0x28, 0x26, 0x6e, 0x1b, 0xcf, 0x60, 0x29, 0x63, 0x50, 0xea, 0x46, 0xa5, 0x38, 0x18, 0x78,
+ 0xe1, 0xf0, 0x46, 0x15, 0x2d, 0x63, 0x03, 0x6a, 0xbb, 0x81, 0xd3, 0x2d, 0x12, 0xff, 0x87, 0x50,
+ 0x17, 0x2a, 0x54, 0xcc, 0x31, 0xa5, 0x84, 0xca, 0x39, 0x17, 0x0d, 0xe3, 0x8f, 0x1a, 0xdc, 0x7a,
+ 0x45, 0x5d, 0xb6, 0x79, 0xda, 0x45, 0x42, 0xdd, 0x80, 0x12, 0x1b, 0xbd, 0x38, 0x5b, 0xd9, 0x67,
+ 0xe2, 0xc8, 0x2d, 0x25, 0x8f, 0x5c, 0x74, 0x1f, 0xea, 0xc4, 0x6b, 0x59, 0x11, 0x5f, 0x04, 0xad,
+ 0x46, 0xbc, 0x96, 0x39, 0x14, 0x89, 0x0e, 0xc5, 0xa9, 0xd8, 0xa1, 0xf8, 0xd9, 0x64, 0x65, 0xba,
+ 0x51, 0x36, 0x9a, 0xd0, 0x50, 0x3e, 0x8b, 0xe1, 0x7d, 0x36, 0x59, 0xd1, 0x1a, 0x13, 0x46, 0x07,
+ 0xe6, 0x77, 0x5d, 0xbf, 0x75, 0x88, 0xe9, 0x05, 0xde, 0xb4, 0x83, 0x42, 0x3b, 0x7e, 0x19, 0xaa,
+ 0x43, 0x07, 0x83, 0xe6, 0xc4, 0xbd, 0x12, 0x9b, 0xd6, 0x88, 0x60, 0x7c, 0x00, 0xb7, 0x47, 0x2c,
+ 0xa9, 0xad, 0x75, 0x6e, 0x07, 0x62, 0x69, 0x57, 0x4d, 0xfe, 0x6d, 0x7c, 0xab, 0xc1, 0xac, 0x38,
+ 0xa3, 0x76, 0x09, 0xed, 0xfe, 0x27, 0x97, 0x34, 0x7b, 0xd0, 0xc4, 0x3d, 0x89, 0x1e, 0x55, 0x4b,
+ 0x07, 0x81, 0x89, 0x99, 0xb3, 0x07, 0xfe, 0x09, 0x25, 0x17, 0x14, 0x07, 0x41, 0xc1, 0xe3, 0x92,
+ 0x72, 0x75, 0xb1, 0xe3, 0x52, 0x10, 0x0e, 0x5a, 0xc6, 0xff, 0x83, 0x9e, 0x65, 0x4d, 0x06, 0x70,
+ 0x15, 0x6a, 0xae, 0x6f, 0xf5, 0x25, 0x59, 0x6e, 0x0c, 0x70, 0x23, 0x41, 0xe1, 0xec, 0xe9, 0x57,
+ 0x03, 0x3b, 0xe8, 0x5c, 0x9b, 0xb3, 0x01, 0x57, 0x17, 0x73, 0x56, 0x10, 0x86, 0xce, 0xa6, 0xad,
+ 0xbd, 0xad, 0xb3, 0x6d, 0xb8, 0x3b, 0x7a, 0x3b, 0xed, 0x52, 0xd2, 0x7b, 0x69, 0xbe, 0x28, 0xb8,
+ 0xdd, 0x06, 0xd4, 0x93, 0xbe, 0xb2, 0x4f, 0xe3, 0x3e, 0xac, 0xe6, 0xda, 0x91, 0x93, 0x7c, 0x00,
+ 0x73, 0x42, 0x64, 0x73, 0xe0, 0xb7, 0xbc, 0x42, 0xcf, 0xb9, 0xf7, 0x61, 0x3e, 0xa9, 0x6a, 0xcc,
+ 0xbd, 0x82, 0x01, 0xf1, 0xdd, 0xba, 0x45, 0xfc, 0xb6, 0x7b, 0x51, 0x70, 0x9e, 0xda, 0x03, 0xcf,
+ 0xb3, 0xf8, 0xcd, 0x28, 0xe7, 0x89, 0x11, 0x4e, 0xd8, 0xed, 0xf8, 0x01, 0xcc, 0x25, 0xcc, 0x8c,
+ 0x3d, 0xf6, 0xbe, 0x9d, 0x80, 0xc6, 0x29, 0x0e, 0x8b, 0xbb, 0xf4, 0x09, 0x94, 0xb1, 0x1f, 0x52,
+ 0x17, 0x8b, 0x23, 0xa2, 0xb6, 0x7e, 0x77, 0xd8, 0x61, 0x54, 0xfd, 0xda, 0x8e, 0x1f, 0xd2, 0x2b,
+ 0x73, 0x28, 0xae, 0xff, 0x46, 0x83, 0x29, 0x4e, 0x62, 0x93, 0xc9, 0x9e, 0x6c, 0xe2, 0xc0, 0x60,
+ 0x9f, 0x68, 0x05, 0xaa, 0xfc, 0x4a, 0xb4, 0x82, 0x90, 0x8a, 0x81, 0xee, 0xdf, 0x30, 0x2b, 0x9c,
+ 0x74, 0x1a, 0x52, 0x74, 0x1f, 0x6a, 0x82, 0xed, 0xfa, 0xe1, 0xb3, 0x75, 0x7e, 0xba, 0x4e, 0xed,
+ 0xdf, 0x30, 0x81, 0x13, 0x0f, 0x18, 0x0d, 0xad, 0x82, 0x68, 0x59, 0xe7, 0x84, 0x78, 0xe2, 0x01,
+ 0xb9, 0x7f, 0xc3, 0x14, 0x5a, 0x37, 0x09, 0xf1, 0x36, 0xcb, 0xf2, 0x0a, 0x36, 0xe6, 0x60, 0x36,
+ 0xe6, 0xaa, 0x5c, 0x2a, 0x5f, 0xc0, 0xdc, 0x36, 0xf6, 0xf0, 0x75, 0x4c, 0x1a, 0x82, 0xc9, 0x2e,
+ 0xbe, 0x12, 0xe1, 0xa9, 0x9a, 0xfc, 0xdb, 0x58, 0x80, 0xf9, 0xa4, 0x7a, 0x69, 0xd6, 0x61, 0x89,
+ 0x5f, 0x10, 0x12, 0x8a, 0xb7, 0x06, 0x41, 0x48, 0x7a, 0xfb, 0x84, 0x74, 0x83, 0x82, 0xc6, 0xf9,
+ 0x7a, 0x9c, 0x88, 0xad, 0xc7, 0x65, 0xd0, 0xb3, 0x8c, 0x48, 0x17, 0x8e, 0xa0, 0xb9, 0x69, 0x3b,
+ 0xdd, 0x41, 0xff, 0x7a, 0x3c, 0x30, 0x9e, 0xc0, 0x52, 0x86, 0xbe, 0x31, 0xdb, 0xa5, 0x0b, 0xf7,
+ 0xb3, 0x36, 0x72, 0xe1, 0x3d, 0x9b, 0x19, 0x8b, 0x87, 0x60, 0x8c, 0x33, 0x26, 0x63, 0xb2, 0x0f,
+ 0x88, 0xdd, 0x75, 0x2f, 0x5c, 0x07, 0xfb, 0x85, 0xee, 0x54, 0x63, 0x0b, 0xe6, 0x12, 0x9a, 0x64,
+ 0x1c, 0x3e, 0x04, 0xe4, 0x09, 0x92, 0x15, 0x74, 0x08, 0x0d, 0x2d, 0xdf, 0xee, 0x0d, 0x6f, 0xd0,
+ 0x86, 0xe4, 0x9c, 0x32, 0xc6, 0x91, 0xdd, 0xe3, 0x53, 0xb4, 0x87, 0xc3, 0x03, 0xbf, 0x4d, 0x36,
+ 0xae, 0x23, 0x39, 0x34, 0xfe, 0x17, 0x96, 0x32, 0xf4, 0x49, 0xd7, 0xee, 0x02, 0xa8, 0xac, 0x50,
+ 0x4e, 0x54, 0x8c, 0xc2, 0x9c, 0xd9, 0xb2, 0x3d, 0x67, 0xe0, 0xd9, 0x21, 0xde, 0xea, 0x60, 0xa7,
+ 0x1b, 0x0c, 0x7a, 0x45, 0x9c, 0xf9, 0x6f, 0x58, 0xca, 0xd0, 0x27, 0x9d, 0xd1, 0xa1, 0xe2, 0x48,
+ 0x9a, 0x8c, 0x4e, 0xd4, 0x66, 0x93, 0xb4, 0x87, 0xc3, 0x53, 0xdf, 0xee, 0x07, 0x1d, 0x52, 0x04,
+ 0x90, 0x30, 0xde, 0x83, 0xb9, 0x84, 0xa6, 0x31, 0x8b, 0xf5, 0x3b, 0x0d, 0x1e, 0x64, 0x2d, 0xa0,
+ 0x6b, 0x70, 0x83, 0xe5, 0xa4, 0x9d, 0x30, 0xec, 0x5b, 0xea, 0xa2, 0x2b, 0xb3, 0xf6, 0x4b, 0xea,
+ 0xb1, 0x8b, 0x80, 0xb3, 0xec, 0x41, 0xd8, 0x91, 0x29, 0x17, 0x97, 0xdd, 0x18, 0x84, 0x1d, 0xe3,
+ 0x11, 0x3c, 0x1c, 0xef, 0x92, 0x5c, 0xd5, 0xbf, 0xd3, 0x60, 0x7e, 0x0f, 0x87, 0xa6, 0x7d, 0xb9,
+ 0xd5, 0xb1, 0xfd, 0x8b, 0x62, 0x00, 0xc3, 0x03, 0x98, 0x69, 0x53, 0xd2, 0xb3, 0x12, 0x28, 0x43,
0xd5, 0xac, 0x33, 0x62, 0xf4, 0xa6, 0x5d, 0x85, 0x5a, 0x48, 0xac, 0xc4, 0xab, 0xb8, 0x6a, 0x42,
- 0x48, 0x86, 0x1d, 0x8c, 0xbf, 0x4f, 0xc2, 0xcd, 0x11, 0x93, 0xa4, 0xf3, 0xf7, 0xa1, 0x46, 0xed,
- 0x4b, 0xcb, 0x11, 0xe4, 0xa6, 0xc6, 0xef, 0x9a, 0x77, 0x63, 0xe9, 0x64, 0x7a, 0xcc, 0x5a, 0x44,
- 0x32, 0x81, 0x46, 0x5c, 0xfd, 0x5f, 0x25, 0xa8, 0x46, 0x1c, 0xb4, 0x08, 0xe5, 0x73, 0x8f, 0x9c,
- 0xb3, 0x87, 0x8f, 0xd8, 0x50, 0xd3, 0xac, 0x79, 0xd0, 0x8a, 0x60, 0x99, 0x09, 0x05, 0xcb, 0xa0,
- 0x15, 0xa8, 0xf8, 0xf8, 0x52, 0x5c, 0xbf, 0xdc, 0xf8, 0xcd, 0x89, 0xa6, 0x66, 0x96, 0x7d, 0x7c,
- 0xc9, 0x6e, 0x60, 0xc6, 0x66, 0xaf, 0x7a, 0xce, 0x9e, 0x54, 0x6c, 0xe2, 0xb5, 0x38, 0xfb, 0x18,
- 0xaa, 0xa4, 0x8f, 0xa9, 0x1d, 0xb2, 0xb9, 0x4f, 0xf1, 0x7c, 0xf8, 0xe3, 0x37, 0x9c, 0xc0, 0xda,
- 0xf1, 0x70, 0xa0, 0xa9, 0x64, 0x30, 0x9f, 0x33, 0x9f, 0x28, 0xa1, 0x02, 0xf4, 0xa8, 0x53, 0xfb,
- 0x32, 0xea, 0xcf, 0x76, 0x11, 0x33, 0xaa, 0x47, 0x5a, 0x98, 0xe3, 0x1e, 0x53, 0xdc, 0xa0, 0x43,
- 0xd2, 0xc2, 0x1c, 0xf4, 0xc0, 0x97, 0x82, 0x55, 0x11, 0x2c, 0x1f, 0x5f, 0x72, 0xd6, 0x7d, 0xb8,
- 0x3e, 0x9c, 0xa9, 0x75, 0x7e, 0xc5, 0x22, 0xbf, 0x2a, 0x32, 0x3f, 0x39, 0xd7, 0x4d, 0x46, 0x63,
- 0xbd, 0x86, 0x13, 0x96, 0xbd, 0x40, 0xf4, 0x92, 0x53, 0xe6, 0xbd, 0x0c, 0x17, 0xaa, 0xca, 0x9c,
- 0x1a, 0x94, 0x9f, 0x1f, 0x3d, 0x3d, 0x3a, 0x7e, 0x71, 0xd4, 0xb8, 0x86, 0xaa, 0x30, 0xb5, 0xb1,
- 0xbd, 0xbd, 0xb3, 0x2d, 0xf2, 0xf7, 0xad, 0xe3, 0x93, 0x83, 0x9d, 0x6d, 0x91, 0xbf, 0x6f, 0xef,
- 0x3c, 0xdb, 0x39, 0xdb, 0xd9, 0x6e, 0x94, 0x50, 0x1d, 0x2a, 0x87, 0xc7, 0xdb, 0x07, 0xbb, 0x8c,
- 0x35, 0xc9, 0x58, 0xe6, 0xce, 0xd1, 0xc6, 0xe1, 0xce, 0x76, 0x63, 0x0a, 0x35, 0xa0, 0x7e, 0xf6,
- 0xf9, 0xc9, 0x8e, 0xb5, 0xb5, 0xbf, 0x71, 0xb4, 0xb7, 0xb3, 0xdd, 0x98, 0x36, 0x5e, 0x41, 0xf3,
- 0x14, 0xdb, 0xd4, 0xe9, 0xec, 0xba, 0x1e, 0x0e, 0x36, 0xaf, 0xd8, 0x71, 0x59, 0x64, 0x57, 0xcf,
- 0xc3, 0xd4, 0x57, 0x03, 0x2c, 0x33, 0x8c, 0xaa, 0x29, 0x1a, 0xc3, 0x5c, 0xaf, 0x14, 0xe5, 0x7a,
- 0xc6, 0xc7, 0xb0, 0x94, 0xa1, 0x57, 0xbd, 0xc0, 0xda, 0x8c, 0xcc, 0x37, 0x6d, 0xdd, 0x14, 0x0d,
- 0xe3, 0xcf, 0x1a, 0xdc, 0x4a, 0x8c, 0xd9, 0x22, 0x7e, 0x88, 0xfd, 0xf0, 0x27, 0x30, 0x17, 0xbd,
- 0x07, 0x0d, 0xa7, 0x33, 0xf0, 0xbb, 0x98, 0xa5, 0xa0, 0xc2, 0x4a, 0x89, 0xb1, 0xdd, 0x90, 0xf4,
- 0xe8, 0x90, 0xb8, 0x82, 0xe5, 0x6c, 0x2b, 0xe5, 0xe4, 0x9a, 0x50, 0xee, 0xd9, 0xa1, 0xd3, 0x89,
- 0xa6, 0x37, 0x6c, 0xa2, 0x15, 0x00, 0xfe, 0x69, 0xc5, 0x2e, 0xdd, 0x2a, 0xa7, 0x6c, 0xdb, 0xa1,
- 0x8d, 0xee, 0x40, 0x1d, 0xfb, 0x2d, 0x8b, 0xb4, 0x2d, 0x4e, 0x93, 0xd8, 0x1f, 0x60, 0xbf, 0x75,
- 0xdc, 0x3e, 0x64, 0x14, 0xe3, 0x1f, 0x1a, 0xdc, 0x38, 0xa1, 0x58, 0x22, 0x68, 0xc2, 0x2b, 0x99,
- 0xe9, 0x9f, 0xf6, 0x23, 0x10, 0x8d, 0x4f, 0x61, 0x36, 0x02, 0x2b, 0xde, 0x24, 0x7f, 0x1c, 0xe2,
- 0x18, 0x91, 0x80, 0x27, 0x50, 0x23, 0xe7, 0xbf, 0xc6, 0x4e, 0x68, 0xf5, 0xd9, 0xcb, 0xb2, 0x94,
- 0x1c, 0x7a, 0xcc, 0x59, 0x27, 0x84, 0x78, 0x26, 0x90, 0xe8, 0xdb, 0x40, 0xd0, 0x50, 0x33, 0x91,
- 0x9e, 0xfd, 0x4e, 0x83, 0x69, 0x01, 0x0c, 0x0e, 0xb3, 0x19, 0x2d, 0xca, 0x66, 0xd8, 0xe9, 0xc3,
- 0x9f, 0x00, 0x62, 0x21, 0xf9, 0x37, 0xfa, 0x19, 0x2c, 0x45, 0x87, 0x3e, 0xa1, 0xee, 0x37, 0x3c,
- 0xa0, 0xac, 0x0e, 0xb6, 0x5b, 0x98, 0xca, 0xb3, 0x74, 0x71, 0x78, 0x09, 0x44, 0xfc, 0x7d, 0xce,
- 0x46, 0xef, 0xc0, 0xf5, 0x9e, 0xcb, 0x5e, 0xfe, 0x16, 0xc5, 0xed, 0x9e, 0xdd, 0x0f, 0x9a, 0x93,
- 0xfc, 0x39, 0x3a, 0x23, 0xa8, 0xa6, 0x20, 0x1a, 0x7f, 0xd0, 0x60, 0x81, 0x5b, 0xb9, 0x7f, 0x76,
- 0x76, 0x52, 0x1c, 0xf0, 0x7d, 0x90, 0x00, 0x7c, 0xd3, 0x98, 0xe9, 0x10, 0x00, 0x8e, 0x21, 0xba,
- 0xa5, 0x04, 0xa2, 0x6b, 0x2c, 0xc1, 0x62, 0xca, 0x1e, 0xe9, 0xbf, 0x53, 0x58, 0xd9, 0xc3, 0xa1,
- 0x70, 0xf8, 0xb6, 0x4b, 0xb1, 0xf3, 0x36, 0x60, 0xfa, 0xff, 0x83, 0xdb, 0x79, 0x42, 0xc7, 0xc0,
- 0xf5, 0x7f, 0xd2, 0x60, 0x7e, 0xcb, 0x23, 0x3e, 0x66, 0xf7, 0x2c, 0x5f, 0xfc, 0x42, 0x4e, 0x9b,
- 0xe4, 0x3b, 0x6b, 0x22, 0x77, 0x67, 0x71, 0x7e, 0xcc, 0xb9, 0xa5, 0x71, 0xce, 0x35, 0x16, 0xe1,
- 0xe6, 0x88, 0x6d, 0xd2, 0x81, 0x7f, 0xd3, 0x60, 0x39, 0xc1, 0x39, 0xf0, 0x43, 0x4c, 0x7d, 0xfb,
- 0x27, 0xb1, 0x3e, 0x33, 0x90, 0x4b, 0x3f, 0x02, 0xc7, 0x59, 0x85, 0x95, 0x1c, 0xe3, 0xc5, 0xf4,
- 0xd6, 0x7f, 0xbf, 0xc2, 0x0b, 0x65, 0xc3, 0x92, 0x8b, 0xa8, 0x24, 0xa2, 0x2f, 0xa1, 0x31, 0x5a,
- 0xde, 0x43, 0xab, 0x69, 0x85, 0x89, 0x3a, 0xa2, 0x7e, 0x27, 0xbf, 0x83, 0xf4, 0x65, 0xf5, 0x87,
- 0xef, 0x1f, 0x4e, 0x55, 0x26, 0x74, 0xed, 0x63, 0xe4, 0x0c, 0xeb, 0x73, 0xb1, 0xe2, 0x1d, 0x8a,
- 0x4b, 0xc8, 0xac, 0x13, 0xea, 0x77, 0xc7, 0xf4, 0x48, 0x28, 0xd1, 0x98, 0x92, 0x23, 0x00, 0x55,
- 0x96, 0x43, 0x4b, 0xc9, 0xb1, 0xb1, 0xc2, 0xa0, 0xae, 0x67, 0xb1, 0xd2, 0xf2, 0x5e, 0xc2, 0xf5,
- 0x64, 0x79, 0x0d, 0xad, 0x44, 0x4f, 0x93, 0xac, 0x42, 0x9f, 0x7e, 0x3b, 0x8f, 0x9d, 0x29, 0x3b,
- 0x59, 0xfa, 0x52, 0xb2, 0x33, 0xeb, 0x6b, 0x4a, 0x76, 0x76, 0xc5, 0x2c, 0x2e, 0xbb, 0x0d, 0x28,
- 0x5d, 0xbb, 0x42, 0x91, 0x2f, 0x73, 0x8b, 0x68, 0xba, 0x31, 0xae, 0x4b, 0x5a, 0xcf, 0xaf, 0xa0,
- 0x16, 0xab, 0xe4, 0xa0, 0xc8, 0xab, 0xe9, 0xca, 0x98, 0x7e, 0x2b, 0x93, 0x97, 0x16, 0xf9, 0x25,
- 0x34, 0x46, 0x9f, 0xe9, 0x6a, 0x27, 0xe6, 0xd4, 0x87, 0xd4, 0x4e, 0xcc, 0xad, 0xf8, 0xc4, 0x34,
- 0x9c, 0x00, 0xa8, 0xd2, 0x87, 0xda, 0x24, 0xa9, 0xda, 0x8b, 0xda, 0x24, 0xe9, 0x4a, 0x49, 0x4c,
- 0xde, 0x63, 0x8d, 0xd9, 0x3c, 0x5a, 0xd3, 0x50, 0x36, 0xe7, 0x14, 0x4f, 0x94, 0xcd, 0x79, 0xe5,
- 0x90, 0x91, 0xe8, 0x49, 0x55, 0x0b, 0x54, 0xf4, 0xe4, 0x55, 0x47, 0x54, 0xf4, 0xe4, 0x96, 0x1a,
- 0xe2, 0x8e, 0xf9, 0x05, 0x4c, 0xee, 0x06, 0x4e, 0x17, 0xcd, 0x45, 0xa3, 0x54, 0xad, 0x41, 0x9f,
- 0x4f, 0x12, 0xd3, 0xa3, 0xf7, 0xa1, 0x32, 0x44, 0xdf, 0xd1, 0xe2, 0xb0, 0xf3, 0x48, 0x0d, 0x41,
- 0x6f, 0xa6, 0x19, 0x69, 0x49, 0x2f, 0x60, 0x26, 0x81, 0xa1, 0xa3, 0xe5, 0x48, 0x77, 0x06, 0x88,
- 0xaf, 0xaf, 0xe4, 0x70, 0xd3, 0x5e, 0x3c, 0x02, 0x50, 0x20, 0xb7, 0x5a, 0xf9, 0x14, 0x04, 0xaf,
- 0x56, 0x3e, 0x03, 0x13, 0x4f, 0x86, 0x59, 0x1a, 0xb0, 0x56, 0x61, 0x96, 0x0b, 0x9d, 0xab, 0x30,
- 0xcb, 0xc7, 0xbb, 0xe3, 0x76, 0x73, 0x3d, 0xa3, 0x58, 0x73, 0x5c, 0x4f, 0x0e, 0xea, 0x1d, 0xd7,
- 0x93, 0x07, 0x55, 0xc7, 0xf5, 0x0c, 0xd2, 0x15, 0x58, 0x09, 0x16, 0xa3, 0x07, 0x79, 0x11, 0x96,
- 0x44, 0xad, 0xf5, 0x77, 0x5f, 0xdb, 0x2f, 0xed, 0xc6, 0xe7, 0x50, 0x8f, 0xa3, 0xc6, 0xe8, 0x56,
- 0x52, 0x46, 0x02, 0xe2, 0xd2, 0x97, 0xb3, 0x99, 0x52, 0x6a, 0xe5, 0x87, 0xef, 0x1f, 0x4e, 0x56,
- 0xb4, 0x86, 0xf6, 0x58, 0x43, 0xbf, 0xd1, 0x40, 0xcf, 0x47, 0xb1, 0xd0, 0x7b, 0xe3, 0x2c, 0x4d,
- 0xea, 0x7c, 0xff, 0x4d, 0xba, 0xa6, 0xe6, 0xf5, 0x50, 0x63, 0xe7, 0x63, 0x0c, 0x7c, 0x56, 0xe7,
- 0x63, 0x1a, 0xf8, 0x56, 0xe7, 0x63, 0x06, 0x5a, 0x1d, 0x77, 0xd6, 0x53, 0xa8, 0x46, 0xb8, 0x2c,
- 0x6a, 0xe6, 0xa1, 0xca, 0xfa, 0x52, 0x06, 0x27, 0x2d, 0xec, 0x0c, 0xea, 0x71, 0xc0, 0x55, 0x79,
- 0x3e, 0x03, 0xe5, 0x55, 0x9e, 0xcf, 0xc4, 0x68, 0x47, 0x6e, 0x05, 0x85, 0xe6, 0xc5, 0x6e, 0x85,
- 0x14, 0x58, 0x18, 0xbb, 0x15, 0xd2, 0xf0, 0x5f, 0x7c, 0x67, 0x62, 0x5e, 0xaf, 0x4f, 0x62, 0x71,
- 0x28, 0x5e, 0x36, 0xcf, 0x84, 0xfd, 0xd4, 0xf9, 0x97, 0x0b, 0xe4, 0xc5, 0x94, 0x3c, 0xd6, 0xd8,
- 0x31, 0x9b, 0x42, 0xd9, 0x94, 0x9a, 0x3c, 0x40, 0x4f, 0xa9, 0xc9, 0x85, 0xe8, 0xe2, 0x73, 0xd9,
- 0x81, 0xb2, 0xfc, 0xa7, 0x06, 0x2d, 0x44, 0x03, 0x13, 0xbf, 0xea, 0xe8, 0x8b, 0x29, 0x7a, 0xda,
- 0xcb, 0xa7, 0x50, 0x8b, 0xc1, 0x71, 0x28, 0x7e, 0x59, 0x8d, 0xc0, 0x6c, 0xca, 0xcb, 0x19, 0xf8,
- 0x5d, 0xd2, 0x01, 0xbf, 0x65, 0x8f, 0xdf, 0x31, 0x28, 0x19, 0xfa, 0x60, 0x5c, 0x28, 0x8c, 0xea,
- 0xfd, 0xf0, 0xcd, 0x3a, 0xa7, 0xe7, 0xf6, 0x39, 0xcc, 0x24, 0xa0, 0x1f, 0x75, 0x03, 0x64, 0x21,
- 0x73, 0xea, 0x06, 0xc8, 0xc4, 0x8b, 0x92, 0x33, 0xf4, 0x61, 0x3e, 0x2b, 0x73, 0x47, 0xf7, 0x54,
- 0xc0, 0xe4, 0xa2, 0x0f, 0xfa, 0xfd, 0xf1, 0x9d, 0xb2, 0xf4, 0x61, 0x98, 0x4d, 0x61, 0x20, 0x6a,
- 0x4b, 0xe5, 0xc1, 0x32, 0x6a, 0x4b, 0xe5, 0x02, 0x28, 0x49, 0x35, 0x1d, 0x40, 0xe9, 0xea, 0x05,
- 0x8a, 0xbd, 0x9e, 0x73, 0xca, 0x27, 0xea, 0x8a, 0x18, 0x53, 0xfc, 0x48, 0x9c, 0x69, 0x18, 0x66,
- 0x53, 0x95, 0x0b, 0x35, 0xa1, 0xbc, 0x22, 0x89, 0x9a, 0x50, 0x6e, 0xd9, 0x23, 0x39, 0xa1, 0x7d,
- 0xa8, 0x0c, 0xb1, 0x01, 0xf5, 0x9c, 0x18, 0xc1, 0x3d, 0xd4, 0x73, 0x22, 0x05, 0x23, 0xc4, 0x36,
- 0xd3, 0x17, 0x70, 0x63, 0x24, 0x59, 0x46, 0xb7, 0x13, 0xef, 0xa2, 0x54, 0x56, 0xaf, 0xaf, 0xe6,
- 0xf2, 0xd3, 0xe2, 0x29, 0x2c, 0x64, 0xe7, 0xc6, 0xe8, 0x9d, 0xd8, 0xb6, 0xcc, 0x4f, 0xc8, 0xf5,
- 0x07, 0xaf, 0xeb, 0x96, 0x3e, 0x42, 0x5e, 0xc0, 0x4c, 0x22, 0xcb, 0x53, 0xf1, 0x91, 0x95, 0x6f,
- 0xab, 0xf8, 0xc8, 0xce, 0x78, 0x63, 0x93, 0x21, 0x23, 0x59, 0xf1, 0x30, 0x7d, 0x44, 0xf7, 0x33,
- 0x45, 0x8c, 0xa4, 0xc6, 0xfa, 0x3b, 0xaf, 0xe9, 0x95, 0x52, 0xb8, 0xf9, 0xf8, 0x25, 0x1b, 0xe2,
- 0xd9, 0xe7, 0x6b, 0x0e, 0xe9, 0x3d, 0x12, 0x9f, 0x1f, 0x11, 0x7a, 0xf1, 0x48, 0x08, 0x7a, 0xc4,
- 0x7f, 0x66, 0x7d, 0x74, 0x41, 0x64, 0xbb, 0x7f, 0x7e, 0x3e, 0xcd, 0x49, 0x4f, 0xfe, 0x13, 0x00,
- 0x00, 0xff, 0xff, 0x51, 0x47, 0xf2, 0x7d, 0x11, 0x2b, 0x00, 0x00,
+ 0x48, 0x86, 0x02, 0xc6, 0x5f, 0x26, 0xe1, 0xf6, 0x88, 0x4b, 0x32, 0xf8, 0xfb, 0x50, 0xa3, 0xf6,
+ 0xa5, 0xe5, 0x08, 0x72, 0x53, 0xe3, 0x77, 0xcd, 0xbb, 0xb1, 0x74, 0x32, 0xdd, 0x67, 0x2d, 0x22,
+ 0x99, 0x40, 0x23, 0xae, 0xfe, 0xf7, 0x12, 0x54, 0x23, 0x0e, 0x5a, 0x84, 0xf2, 0xb9, 0x47, 0xce,
+ 0xd9, 0xc3, 0x47, 0x2c, 0xa8, 0x69, 0xd6, 0x3c, 0x68, 0x45, 0xb0, 0xcc, 0x84, 0x82, 0x65, 0xd0,
+ 0x0a, 0x54, 0x7c, 0x7c, 0x29, 0xae, 0x5f, 0xee, 0xfc, 0xe6, 0x44, 0x53, 0x33, 0xcb, 0x3e, 0xbe,
+ 0x64, 0x37, 0x30, 0x63, 0xb3, 0x57, 0x3d, 0x67, 0x4f, 0x2a, 0x36, 0xf1, 0x5a, 0x9c, 0x7d, 0x0c,
+ 0x55, 0xd2, 0xc7, 0xd4, 0x0e, 0xd9, 0xd8, 0xa7, 0x78, 0x3e, 0xfc, 0xf1, 0x5b, 0x0e, 0x60, 0xed,
+ 0x78, 0xd8, 0xd1, 0x54, 0x3a, 0x58, 0xcc, 0x59, 0x4c, 0x94, 0x52, 0x01, 0x7a, 0xd4, 0xa9, 0x7d,
+ 0x19, 0xc9, 0xb3, 0x55, 0xc4, 0x9c, 0xea, 0x91, 0x16, 0xe6, 0xb8, 0xc7, 0x14, 0x77, 0xe8, 0x90,
+ 0xb4, 0x30, 0x07, 0x3d, 0xf0, 0xa5, 0x60, 0x55, 0x04, 0xcb, 0xc7, 0x97, 0x9c, 0xf5, 0x10, 0x6e,
+ 0x0e, 0x47, 0x6a, 0x9d, 0x5f, 0xb1, 0x9d, 0x5f, 0x15, 0x99, 0x9f, 0x1c, 0xeb, 0x26, 0xa3, 0x31,
+ 0xa9, 0xe1, 0x80, 0xa5, 0x14, 0x08, 0x29, 0x39, 0x64, 0x2e, 0x65, 0xb8, 0x50, 0x55, 0xee, 0xd4,
+ 0xa0, 0xfc, 0xf2, 0xe8, 0xf9, 0xd1, 0xf1, 0xab, 0xa3, 0xc6, 0x0d, 0x54, 0x85, 0xa9, 0x8d, 0xed,
+ 0xed, 0x9d, 0x6d, 0x91, 0xbf, 0x6f, 0x1d, 0x9f, 0x1c, 0xec, 0x6c, 0x8b, 0xfc, 0x7d, 0x7b, 0xe7,
+ 0xc5, 0xce, 0xd9, 0xce, 0x76, 0xa3, 0x84, 0xea, 0x50, 0x39, 0x3c, 0xde, 0x3e, 0xd8, 0x65, 0xac,
+ 0x49, 0xc6, 0x32, 0x77, 0x8e, 0x36, 0x0e, 0x77, 0xb6, 0x1b, 0x53, 0xa8, 0x01, 0xf5, 0xb3, 0xcf,
+ 0x4f, 0x76, 0xac, 0xad, 0xfd, 0x8d, 0xa3, 0xbd, 0x9d, 0xed, 0xc6, 0xb4, 0xf1, 0x06, 0x9a, 0xa7,
+ 0xd8, 0xa6, 0x4e, 0x67, 0xd7, 0xf5, 0x70, 0xb0, 0x79, 0xc5, 0x8e, 0xcb, 0x22, 0xab, 0x7a, 0x1e,
+ 0xa6, 0xbe, 0x1a, 0x60, 0x99, 0x61, 0x54, 0x4d, 0xd1, 0x18, 0xe6, 0x7a, 0xa5, 0x28, 0xd7, 0x33,
+ 0x3e, 0x86, 0xa5, 0x0c, 0xbb, 0xea, 0x05, 0xd6, 0x66, 0x64, 0xbe, 0x68, 0xeb, 0xa6, 0x68, 0x18,
+ 0x7f, 0xd0, 0xe0, 0x4e, 0xa2, 0xcf, 0x16, 0xf1, 0x43, 0xec, 0x87, 0x3f, 0x83, 0xbb, 0xe8, 0x3d,
+ 0x68, 0x38, 0x9d, 0x81, 0xdf, 0xc5, 0x2c, 0x05, 0x15, 0x5e, 0x4a, 0x8c, 0xed, 0x96, 0xa4, 0x47,
+ 0x87, 0xc4, 0x15, 0x2c, 0x67, 0x7b, 0x29, 0x07, 0xd7, 0x84, 0x72, 0xcf, 0x0e, 0x9d, 0x4e, 0x34,
+ 0xbc, 0x61, 0x13, 0xad, 0x00, 0xf0, 0x4f, 0x2b, 0x76, 0xe9, 0x56, 0x39, 0x65, 0xdb, 0x0e, 0x6d,
+ 0x74, 0x0f, 0xea, 0xd8, 0x6f, 0x59, 0xa4, 0x6d, 0x71, 0x9a, 0xc4, 0xfe, 0x00, 0xfb, 0xad, 0xe3,
+ 0xf6, 0x21, 0xa3, 0x18, 0x7f, 0xd5, 0xe0, 0xd6, 0x09, 0xc5, 0x12, 0x41, 0x13, 0x51, 0xc9, 0x4c,
+ 0xff, 0xb4, 0x9f, 0x80, 0x68, 0x7c, 0x0a, 0xb3, 0x11, 0x58, 0xf1, 0x36, 0xf9, 0xe3, 0x10, 0xc7,
+ 0x88, 0x14, 0x3c, 0x83, 0x1a, 0x39, 0xff, 0x25, 0x76, 0x42, 0xab, 0xcf, 0x5e, 0x96, 0xa5, 0x64,
+ 0xd7, 0x63, 0xce, 0x3a, 0x21, 0xc4, 0x33, 0x81, 0x44, 0xdf, 0x06, 0x82, 0x86, 0x1a, 0x89, 0x8c,
+ 0xec, 0x77, 0x1a, 0x4c, 0x0b, 0x60, 0x70, 0x98, 0xcd, 0x68, 0x51, 0x36, 0xc3, 0x4e, 0x1f, 0xfe,
+ 0x04, 0x10, 0x13, 0xc9, 0xbf, 0xd1, 0xff, 0xc0, 0x52, 0x74, 0xe8, 0x13, 0xea, 0x7e, 0xc3, 0x37,
+ 0x94, 0xd5, 0xc1, 0x76, 0x0b, 0x53, 0x79, 0x96, 0x2e, 0x0e, 0x2f, 0x81, 0x88, 0xbf, 0xcf, 0xd9,
+ 0xe8, 0x1d, 0xb8, 0xd9, 0x73, 0xd9, 0xcb, 0xdf, 0xa2, 0xb8, 0xdd, 0xb3, 0xfb, 0x41, 0x73, 0x92,
+ 0x3f, 0x47, 0x67, 0x04, 0xd5, 0x14, 0x44, 0xe3, 0xb7, 0x1a, 0x2c, 0x70, 0x2f, 0xf7, 0xcf, 0xce,
+ 0x4e, 0x8a, 0x03, 0xbe, 0x8f, 0x12, 0x80, 0x6f, 0x1a, 0x33, 0x1d, 0x02, 0xc0, 0x31, 0x44, 0xb7,
+ 0x94, 0x40, 0x74, 0x8d, 0x25, 0x58, 0x4c, 0xf9, 0x23, 0xe3, 0x77, 0x0a, 0x2b, 0x7b, 0x38, 0x14,
+ 0x01, 0xdf, 0x76, 0x29, 0x76, 0xae, 0x03, 0xa6, 0xff, 0x2f, 0xb8, 0x9b, 0xa7, 0x74, 0x0c, 0x5c,
+ 0xff, 0x7b, 0x0d, 0xe6, 0xb7, 0x3c, 0xe2, 0x63, 0x76, 0xcf, 0xf2, 0xc9, 0x2f, 0x14, 0xb4, 0x49,
+ 0xbe, 0xb2, 0x26, 0x72, 0x57, 0x16, 0xe7, 0xc7, 0x82, 0x5b, 0x1a, 0x17, 0x5c, 0x63, 0x11, 0x6e,
+ 0x8f, 0xf8, 0x26, 0x03, 0xf8, 0x67, 0x0d, 0x96, 0x13, 0x9c, 0x03, 0x3f, 0xc4, 0xd4, 0xb7, 0x7f,
+ 0x16, 0xef, 0x33, 0x37, 0x72, 0xe9, 0x27, 0xe0, 0x38, 0xab, 0xb0, 0x92, 0xe3, 0xbc, 0x42, 0xd9,
+ 0x59, 0x24, 0xde, 0x5c, 0x1f, 0xca, 0x9e, 0x56, 0x27, 0x4c, 0xad, 0xff, 0x63, 0x85, 0xd7, 0xe4,
+ 0x86, 0xd5, 0x1d, 0x51, 0xb4, 0x44, 0x5f, 0x42, 0x63, 0xb4, 0x92, 0x88, 0x56, 0xd3, 0x56, 0x12,
+ 0x25, 0x4b, 0xfd, 0x5e, 0xbe, 0x80, 0x1c, 0x57, 0xf5, 0x87, 0xef, 0x1f, 0x4f, 0x55, 0x26, 0x74,
+ 0xed, 0x63, 0xe4, 0x0c, 0x4b, 0x81, 0xb1, 0x3a, 0x21, 0x8a, 0x6b, 0xc8, 0x2c, 0x49, 0xea, 0xf7,
+ 0xc7, 0x48, 0x24, 0x8c, 0x68, 0xcc, 0xc8, 0x11, 0x80, 0xaa, 0x00, 0xa2, 0xa5, 0x64, 0xdf, 0x58,
+ 0x0d, 0x52, 0xd7, 0xb3, 0x58, 0x69, 0x7d, 0xaf, 0xe1, 0x66, 0xb2, 0x92, 0x87, 0x56, 0xa2, 0x57,
+ 0x50, 0x56, 0x4d, 0x51, 0xbf, 0x9b, 0xc7, 0xce, 0xd4, 0x9d, 0xac, 0xb2, 0x29, 0xdd, 0x99, 0xa5,
+ 0x3c, 0xa5, 0x3b, 0xbb, 0x38, 0x17, 0xd7, 0xdd, 0x06, 0x94, 0x2e, 0x93, 0xa1, 0x28, 0x96, 0xb9,
+ 0xf5, 0x3a, 0xdd, 0x18, 0x27, 0x92, 0xb6, 0xf3, 0x0b, 0xa8, 0xc5, 0x8a, 0x46, 0x28, 0x8a, 0x6a,
+ 0xba, 0x08, 0xa7, 0xdf, 0xc9, 0xe4, 0xa5, 0x55, 0x7e, 0x09, 0x8d, 0xd1, 0x8c, 0x40, 0xad, 0xc4,
+ 0x9c, 0x52, 0x94, 0x5a, 0x89, 0xb9, 0xc5, 0xa5, 0x98, 0x85, 0x13, 0x00, 0x55, 0x65, 0x51, 0x8b,
+ 0x24, 0x55, 0xe6, 0x51, 0x8b, 0x24, 0x5d, 0x94, 0x89, 0xe9, 0x7b, 0xaa, 0x31, 0x9f, 0x47, 0xcb,
+ 0x27, 0xca, 0xe7, 0x9c, 0x3a, 0x8d, 0xf2, 0x39, 0xaf, 0xf2, 0x32, 0xb2, 0x7b, 0x52, 0x85, 0x09,
+ 0xb5, 0x7b, 0xf2, 0x0a, 0x31, 0x6a, 0xf7, 0xe4, 0x56, 0x35, 0xe2, 0x81, 0xf9, 0x3f, 0x98, 0xdc,
+ 0x0d, 0x9c, 0x2e, 0x9a, 0x8b, 0x7a, 0xa9, 0xb2, 0x86, 0x3e, 0x9f, 0x24, 0xa6, 0x7b, 0xef, 0x43,
+ 0x65, 0x08, 0xf4, 0xa3, 0xc5, 0xa1, 0xf0, 0x48, 0xb9, 0x42, 0x6f, 0xa6, 0x19, 0x69, 0x4d, 0xaf,
+ 0x60, 0x26, 0x01, 0xd7, 0xa3, 0xe5, 0xc8, 0x76, 0x46, 0xbd, 0x40, 0x5f, 0xc9, 0xe1, 0xa6, 0xa3,
+ 0x78, 0x04, 0xa0, 0xf0, 0x74, 0x35, 0xf3, 0x29, 0xb4, 0x5f, 0xcd, 0x7c, 0x06, 0xfc, 0x9e, 0xdc,
+ 0x66, 0x69, 0x6c, 0x5c, 0x6d, 0xb3, 0x5c, 0x94, 0x5e, 0x6d, 0xb3, 0x7c, 0x68, 0x3d, 0xee, 0x37,
+ 0xb7, 0x33, 0x0a, 0x6b, 0xc7, 0xed, 0xe4, 0x00, 0xec, 0x71, 0x3b, 0x79, 0xa8, 0x78, 0xdc, 0xce,
+ 0x20, 0x5d, 0xec, 0x95, 0xb8, 0x34, 0x7a, 0x94, 0xb7, 0xc3, 0x92, 0x00, 0xb9, 0xfe, 0xee, 0x8f,
+ 0xca, 0xa5, 0xc3, 0xf8, 0x12, 0xea, 0x71, 0x80, 0x1a, 0xdd, 0x49, 0xea, 0x48, 0xa0, 0x69, 0xfa,
+ 0x72, 0x36, 0x53, 0x6a, 0xad, 0xfc, 0xf0, 0xfd, 0xe3, 0xc9, 0x8a, 0xd6, 0xd0, 0x9e, 0x6a, 0xe8,
+ 0x57, 0x1a, 0xe8, 0xf9, 0x80, 0x19, 0x7a, 0x6f, 0x9c, 0xa7, 0x49, 0x9b, 0xef, 0xbf, 0x8d, 0x68,
+ 0x6a, 0x5c, 0x8f, 0x35, 0x76, 0x3e, 0xc6, 0x70, 0x6e, 0x75, 0x3e, 0xa6, 0x31, 0x76, 0x75, 0x3e,
+ 0x66, 0x00, 0xe3, 0xf1, 0x60, 0x3d, 0x87, 0x6a, 0x04, 0x01, 0xa3, 0x66, 0x1e, 0x80, 0xad, 0x2f,
+ 0x65, 0x70, 0xd2, 0xca, 0xce, 0xa0, 0x1e, 0xc7, 0x76, 0x55, 0xe4, 0x33, 0x00, 0x65, 0x15, 0xf9,
+ 0x4c, 0x38, 0x78, 0xe4, 0x56, 0x50, 0xc0, 0x61, 0xec, 0x56, 0x48, 0xe1, 0x92, 0xb1, 0x5b, 0x21,
+ 0x8d, 0x34, 0xc6, 0x57, 0x26, 0xe6, 0xbf, 0x06, 0x24, 0x61, 0x3f, 0x14, 0xaf, 0xd0, 0x67, 0x22,
+ 0x8c, 0xea, 0xfc, 0xcb, 0xc5, 0x0c, 0x63, 0x46, 0x9e, 0x6a, 0xec, 0x98, 0x4d, 0x01, 0x7a, 0xca,
+ 0x4c, 0x1e, 0x76, 0xa8, 0xcc, 0xe4, 0xa2, 0x81, 0xf1, 0xb1, 0xec, 0x40, 0x59, 0xfe, 0xbe, 0x83,
+ 0x16, 0xa2, 0x8e, 0x89, 0xbf, 0x82, 0xf4, 0xc5, 0x14, 0x3d, 0x1d, 0xe5, 0x53, 0xa8, 0xc5, 0x90,
+ 0x3f, 0x14, 0xbf, 0xac, 0x46, 0x10, 0x3d, 0x15, 0xe5, 0x0c, 0xa8, 0x30, 0x19, 0x80, 0x5f, 0xb3,
+ 0x77, 0xf6, 0x18, 0x40, 0x0e, 0x7d, 0x30, 0x6e, 0x2b, 0x8c, 0xda, 0xfd, 0xf0, 0xed, 0x84, 0xd3,
+ 0x63, 0xfb, 0x1c, 0x66, 0x12, 0x28, 0x93, 0xba, 0x01, 0xb2, 0x40, 0x40, 0x75, 0x03, 0x64, 0x42,
+ 0x53, 0xc9, 0x11, 0xfa, 0x30, 0x9f, 0x05, 0x12, 0xa0, 0x07, 0x6a, 0xc3, 0xe4, 0x02, 0x1d, 0xfa,
+ 0xc3, 0xf1, 0x42, 0x59, 0xf6, 0x30, 0xcc, 0xa6, 0xe0, 0x16, 0xb5, 0xa4, 0xf2, 0x10, 0x20, 0xb5,
+ 0xa4, 0x72, 0xb1, 0x9a, 0xa4, 0x99, 0x0e, 0xa0, 0x74, 0xa1, 0x04, 0xc5, 0x5e, 0xcf, 0x39, 0x95,
+ 0x1a, 0x75, 0x45, 0x8c, 0xa9, 0xb3, 0x24, 0xce, 0x34, 0x0c, 0xb3, 0xa9, 0x22, 0x89, 0x1a, 0x50,
+ 0x5e, 0x3d, 0x46, 0x0d, 0x28, 0xb7, 0xc2, 0x92, 0x1c, 0xd0, 0x3e, 0x54, 0x86, 0x30, 0x84, 0x7a,
+ 0x4e, 0x8c, 0x40, 0x2c, 0xea, 0x39, 0x91, 0x42, 0x2c, 0x62, 0x8b, 0xe9, 0x0b, 0xb8, 0x35, 0x92,
+ 0x97, 0xa3, 0xbb, 0x89, 0x77, 0x51, 0x0a, 0x40, 0xd0, 0x57, 0x73, 0xf9, 0x69, 0xf5, 0x14, 0x16,
+ 0xb2, 0xd3, 0x70, 0xf4, 0x4e, 0x6c, 0x59, 0xe6, 0xe7, 0xfe, 0xfa, 0xa3, 0x1f, 0x13, 0x4b, 0x1f,
+ 0x21, 0xaf, 0x60, 0x26, 0x91, 0x50, 0xaa, 0xfd, 0x91, 0x95, 0xda, 0xab, 0xfd, 0x91, 0x9d, 0x5c,
+ 0xc7, 0x06, 0x43, 0x46, 0x12, 0xf0, 0x61, 0xa6, 0x8a, 0x1e, 0x66, 0xaa, 0x18, 0xc9, 0xc2, 0xf5,
+ 0x77, 0x7e, 0x44, 0x2a, 0xf3, 0xb9, 0x3f, 0x9a, 0xaa, 0xc6, 0x13, 0xcf, 0xcc, 0x9c, 0x38, 0x9e,
+ 0x78, 0x66, 0x67, 0xb9, 0x31, 0x0b, 0x9b, 0x4f, 0x5f, 0x33, 0x69, 0xcf, 0x3e, 0x5f, 0x73, 0x48,
+ 0xef, 0x89, 0xf8, 0xfc, 0x88, 0xd0, 0x8b, 0x27, 0x42, 0xc7, 0x13, 0xfe, 0x67, 0xee, 0x93, 0x0b,
+ 0x22, 0xdb, 0xfd, 0xf3, 0xf3, 0x69, 0x4e, 0x7a, 0xf6, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf7,
+ 0x13, 0x59, 0x6b, 0xde, 0x2b, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -4006,6 +4080,7 @@ type RepositoryServiceClient interface {
GetObjectDirectorySize(ctx context.Context, in *GetObjectDirectorySizeRequest, opts ...grpc.CallOption) (*GetObjectDirectorySizeResponse, error)
CloneFromPool(ctx context.Context, in *CloneFromPoolRequest, opts ...grpc.CallOption) (*CloneFromPoolResponse, error)
CloneFromPoolInternal(ctx context.Context, in *CloneFromPoolInternalRequest, opts ...grpc.CallOption) (*CloneFromPoolInternalResponse, error)
+ RemoveRepository(ctx context.Context, in *RemoveRepositoryRequest, opts ...grpc.CallOption) (*RemoveRepositoryResponse, error)
}
type repositoryServiceClient struct {
@@ -4601,6 +4676,15 @@ func (c *repositoryServiceClient) CloneFromPoolInternal(ctx context.Context, in
return out, nil
}
+func (c *repositoryServiceClient) RemoveRepository(ctx context.Context, in *RemoveRepositoryRequest, opts ...grpc.CallOption) (*RemoveRepositoryResponse, error) {
+ out := new(RemoveRepositoryResponse)
+ err := c.cc.Invoke(ctx, "/gitaly.RepositoryService/RemoveRepository", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// RepositoryServiceServer is the server API for RepositoryService service.
type RepositoryServiceServer interface {
RepositoryExists(context.Context, *RepositoryExistsRequest) (*RepositoryExistsResponse, error)
@@ -4642,6 +4726,7 @@ type RepositoryServiceServer interface {
GetObjectDirectorySize(context.Context, *GetObjectDirectorySizeRequest) (*GetObjectDirectorySizeResponse, error)
CloneFromPool(context.Context, *CloneFromPoolRequest) (*CloneFromPoolResponse, error)
CloneFromPoolInternal(context.Context, *CloneFromPoolInternalRequest) (*CloneFromPoolInternalResponse, error)
+ RemoveRepository(context.Context, *RemoveRepositoryRequest) (*RemoveRepositoryResponse, error)
}
// UnimplementedRepositoryServiceServer can be embedded to have forward compatible implementations.
@@ -4765,6 +4850,9 @@ func (*UnimplementedRepositoryServiceServer) CloneFromPool(ctx context.Context,
func (*UnimplementedRepositoryServiceServer) CloneFromPoolInternal(ctx context.Context, req *CloneFromPoolInternalRequest) (*CloneFromPoolInternalResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CloneFromPoolInternal not implemented")
}
+func (*UnimplementedRepositoryServiceServer) RemoveRepository(ctx context.Context, req *RemoveRepositoryRequest) (*RemoveRepositoryResponse, error) {
+ return nil, status.Errorf(codes.Unimplemented, "method RemoveRepository not implemented")
+}
func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) {
s.RegisterService(&_RepositoryService_serviceDesc, srv)
@@ -5512,6 +5600,24 @@ func _RepositoryService_CloneFromPoolInternal_Handler(srv interface{}, ctx conte
return interceptor(ctx, in, info, handler)
}
+func _RepositoryService_RemoveRepository_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(RemoveRepositoryRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).RemoveRepository(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/RemoveRepository",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).RemoveRepository(ctx, req.(*RemoveRepositoryRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _RepositoryService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RepositoryService",
HandlerType: (*RepositoryServiceServer)(nil),
@@ -5632,6 +5738,10 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
MethodName: "CloneFromPoolInternal",
Handler: _RepositoryService_CloneFromPoolInternal_Handler,
},
+ {
+ MethodName: "RemoveRepository",
+ Handler: _RepositoryService_RemoveRepository_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index 11bc25293..e4c558135 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -242,6 +242,12 @@ service RepositoryService {
target_repository_field: "1"
};
}
+ rpc RemoveRepository(RemoveRepositoryRequest) returns (RemoveRepositoryResponse) {
+ option (op_type) = {
+ op: MUTATOR
+ target_repository_field: "1"
+ };
+ }
}
message RepositoryExistsRequest {
@@ -634,3 +640,10 @@ message CloneFromPoolInternalRequest {
message CloneFromPoolInternalResponse {
}
+
+message RemoveRepositoryRequest {
+ Repository repository = 1;
+}
+
+message RemoveRepositoryResponse {
+}
diff --git a/ruby/proto/gitaly/repository-service_pb.rb b/ruby/proto/gitaly/repository-service_pb.rb
index 2f20bbf85..45bbb1275 100644
--- a/ruby/proto/gitaly/repository-service_pb.rb
+++ b/ruby/proto/gitaly/repository-service_pb.rb
@@ -312,6 +312,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
end
add_message "gitaly.CloneFromPoolInternalResponse" do
end
+ add_message "gitaly.RemoveRepositoryRequest" do
+ optional :repository, :message, 1, "gitaly.Repository"
+ end
+ add_message "gitaly.RemoveRepositoryResponse" do
+ end
end
module Gitaly
@@ -398,4 +403,6 @@ module Gitaly
CloneFromPoolResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolResponse").msgclass
CloneFromPoolInternalRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalRequest").msgclass
CloneFromPoolInternalResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CloneFromPoolInternalResponse").msgclass
+ RemoveRepositoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRepositoryRequest").msgclass
+ RemoveRepositoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.RemoveRepositoryResponse").msgclass
end
diff --git a/ruby/proto/gitaly/repository-service_services_pb.rb b/ruby/proto/gitaly/repository-service_services_pb.rb
index 70db374d6..30aa32255 100644
--- a/ruby/proto/gitaly/repository-service_services_pb.rb
+++ b/ruby/proto/gitaly/repository-service_services_pb.rb
@@ -53,6 +53,7 @@ module Gitaly
rpc :GetObjectDirectorySize, GetObjectDirectorySizeRequest, GetObjectDirectorySizeResponse
rpc :CloneFromPool, CloneFromPoolRequest, CloneFromPoolResponse
rpc :CloneFromPoolInternal, CloneFromPoolInternalRequest, CloneFromPoolInternalResponse
+ rpc :RemoveRepository, RemoveRepositoryRequest, RemoveRepositoryResponse
end
Stub = Service.rpc_stub_class