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:
authorAlejandro Rodríguez <alejorro70@gmail.com>2018-01-22 19:42:12 +0300
committerAlejandro Rodríguez <alejorro70@gmail.com>2018-01-22 19:42:12 +0300
commit6841327adea214666417ee339ca37b58b20c649c (patch)
tree1f8282dd53d61ebf37ece500593a5ac6f0ad7934
parent20c948082a0df9031c1699bf3026a27e58ca7cbe (diff)
parent00b1953fbb7dfa06965fb918b5c3517149bf3bc6 (diff)
Merge branch 'proto-0-77' into 'master'
Use gitaly-proto v0.77.0 See merge request gitlab-org/gitaly!556
-rw-r--r--CHANGELOG.md2
-rw-r--r--internal/service/operations/squash.go11
-rw-r--r--internal/service/repository/squash_in_progress.go11
-rw-r--r--internal/service/repository/write_config.go11
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION2
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go6
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go317
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go328
-rw-r--r--vendor/vendor.json10
9 files changed, 520 insertions, 178 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 00e79235f..3b01d373c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
UNRELEASED
+- Use gitaly-proto v0.77.0
+ https://gitlab.com/gitlab-org/gitaly/merge_requests/556
- Automatically remove tempdir when context is over
https://gitlab.com/gitlab-org/gitaly/merge_requests/555
- Add automatic tempdir cleaner
diff --git a/internal/service/operations/squash.go b/internal/service/operations/squash.go
new file mode 100644
index 000000000..e1fc2220f
--- /dev/null
+++ b/internal/service/operations/squash.go
@@ -0,0 +1,11 @@
+package operations
+
+import (
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+ "golang.org/x/net/context"
+)
+
+func (*server) UserSquash(context.Context, *pb.UserSquashRequest) (*pb.UserSquashResponse, error) {
+ return nil, helper.Unimplemented
+}
diff --git a/internal/service/repository/squash_in_progress.go b/internal/service/repository/squash_in_progress.go
new file mode 100644
index 000000000..08ead64a4
--- /dev/null
+++ b/internal/service/repository/squash_in_progress.go
@@ -0,0 +1,11 @@
+package repository
+
+import (
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+ "golang.org/x/net/context"
+)
+
+func (*server) IsSquashInProgress(context.Context, *pb.IsSquashInProgressRequest) (*pb.IsSquashInProgressResponse, error) {
+ return nil, helper.Unimplemented
+}
diff --git a/internal/service/repository/write_config.go b/internal/service/repository/write_config.go
new file mode 100644
index 000000000..fb83eb0aa
--- /dev/null
+++ b/internal/service/repository/write_config.go
@@ -0,0 +1,11 @@
+package repository
+
+import (
+ pb "gitlab.com/gitlab-org/gitaly-proto/go"
+ "gitlab.com/gitlab-org/gitaly/internal/helper"
+ "golang.org/x/net/context"
+)
+
+func (*server) WriteConfig(context.Context, *pb.WriteConfigRequest) (*pb.WriteConfigResponse, error) {
+ return nil, helper.Unimplemented
+}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
index 62df9f538..4a7076db0 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/VERSION
@@ -1 +1 @@
-0.76.0
+0.77.0
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
index cb2bd24c5..5f28445de 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/blob.pb.go
@@ -116,6 +116,8 @@ It has these top-level messages:
UserCommitFilesResponse
UserRebaseRequest
UserRebaseResponse
+ UserSquashRequest
+ UserSquashResponse
FindDefaultBranchNameRequest
FindDefaultBranchNameResponse
FindAllBranchNamesRequest
@@ -188,10 +190,14 @@ It has these top-level messages:
CreateForkResponse
IsRebaseInProgressRequest
IsRebaseInProgressResponse
+ IsSquashInProgressRequest
+ IsSquashInProgressResponse
CreateRepositoryFromURLRequest
CreateRepositoryFromURLResponse
CreateBundleRequest
CreateBundleResponse
+ WriteConfigRequest
+ WriteConfigResponse
Repository
GitCommit
CommitAuthor
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
index 3a06b6749..b569686d0 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/operations.pb.go
@@ -1163,6 +1163,110 @@ func (m *UserRebaseResponse) GetGitError() string {
return ""
}
+type UserSquashRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+ User *User `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"`
+ SquashId string `protobuf:"bytes,3,opt,name=squash_id,json=squashId" json:"squash_id,omitempty"`
+ Branch []byte `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
+ StartSha string `protobuf:"bytes,5,opt,name=start_sha,json=startSha" json:"start_sha,omitempty"`
+ EndSha string `protobuf:"bytes,6,opt,name=end_sha,json=endSha" json:"end_sha,omitempty"`
+ Author *User `protobuf:"bytes,7,opt,name=author" json:"author,omitempty"`
+ CommitMessage []byte `protobuf:"bytes,8,opt,name=commit_message,json=commitMessage,proto3" json:"commit_message,omitempty"`
+}
+
+func (m *UserSquashRequest) Reset() { *m = UserSquashRequest{} }
+func (m *UserSquashRequest) String() string { return proto.CompactTextString(m) }
+func (*UserSquashRequest) ProtoMessage() {}
+func (*UserSquashRequest) Descriptor() ([]byte, []int) { return fileDescriptor7, []int{24} }
+
+func (m *UserSquashRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+func (m *UserSquashRequest) GetUser() *User {
+ if m != nil {
+ return m.User
+ }
+ return nil
+}
+
+func (m *UserSquashRequest) GetSquashId() string {
+ if m != nil {
+ return m.SquashId
+ }
+ return ""
+}
+
+func (m *UserSquashRequest) GetBranch() []byte {
+ if m != nil {
+ return m.Branch
+ }
+ return nil
+}
+
+func (m *UserSquashRequest) GetStartSha() string {
+ if m != nil {
+ return m.StartSha
+ }
+ return ""
+}
+
+func (m *UserSquashRequest) GetEndSha() string {
+ if m != nil {
+ return m.EndSha
+ }
+ return ""
+}
+
+func (m *UserSquashRequest) GetAuthor() *User {
+ if m != nil {
+ return m.Author
+ }
+ return nil
+}
+
+func (m *UserSquashRequest) GetCommitMessage() []byte {
+ if m != nil {
+ return m.CommitMessage
+ }
+ return nil
+}
+
+type UserSquashResponse struct {
+ SquashSha string `protobuf:"bytes,1,opt,name=squash_sha,json=squashSha" json:"squash_sha,omitempty"`
+ PreReceiveError string `protobuf:"bytes,2,opt,name=pre_receive_error,json=preReceiveError" json:"pre_receive_error,omitempty"`
+ GitError string `protobuf:"bytes,3,opt,name=git_error,json=gitError" json:"git_error,omitempty"`
+}
+
+func (m *UserSquashResponse) Reset() { *m = UserSquashResponse{} }
+func (m *UserSquashResponse) String() string { return proto.CompactTextString(m) }
+func (*UserSquashResponse) ProtoMessage() {}
+func (*UserSquashResponse) Descriptor() ([]byte, []int) { return fileDescriptor7, []int{25} }
+
+func (m *UserSquashResponse) GetSquashSha() string {
+ if m != nil {
+ return m.SquashSha
+ }
+ return ""
+}
+
+func (m *UserSquashResponse) GetPreReceiveError() string {
+ if m != nil {
+ return m.PreReceiveError
+ }
+ return ""
+}
+
+func (m *UserSquashResponse) GetGitError() string {
+ if m != nil {
+ return m.GitError
+ }
+ return ""
+}
+
func init() {
proto.RegisterType((*UserCreateBranchRequest)(nil), "gitaly.UserCreateBranchRequest")
proto.RegisterType((*UserCreateBranchResponse)(nil), "gitaly.UserCreateBranchResponse")
@@ -1188,6 +1292,8 @@ func init() {
proto.RegisterType((*UserCommitFilesResponse)(nil), "gitaly.UserCommitFilesResponse")
proto.RegisterType((*UserRebaseRequest)(nil), "gitaly.UserRebaseRequest")
proto.RegisterType((*UserRebaseResponse)(nil), "gitaly.UserRebaseResponse")
+ proto.RegisterType((*UserSquashRequest)(nil), "gitaly.UserSquashRequest")
+ proto.RegisterType((*UserSquashResponse)(nil), "gitaly.UserSquashResponse")
proto.RegisterEnum("gitaly.UserCommitFilesActionHeader_ActionType", UserCommitFilesActionHeader_ActionType_name, UserCommitFilesActionHeader_ActionType_value)
}
@@ -1212,6 +1318,7 @@ type OperationServiceClient interface {
UserRevert(ctx context.Context, in *UserRevertRequest, opts ...grpc.CallOption) (*UserRevertResponse, error)
UserCommitFiles(ctx context.Context, opts ...grpc.CallOption) (OperationService_UserCommitFilesClient, error)
UserRebase(ctx context.Context, in *UserRebaseRequest, opts ...grpc.CallOption) (*UserRebaseResponse, error)
+ UserSquash(ctx context.Context, in *UserSquashRequest, opts ...grpc.CallOption) (*UserSquashResponse, error)
}
type operationServiceClient struct {
@@ -1359,6 +1466,15 @@ func (c *operationServiceClient) UserRebase(ctx context.Context, in *UserRebaseR
return out, nil
}
+func (c *operationServiceClient) UserSquash(ctx context.Context, in *UserSquashRequest, opts ...grpc.CallOption) (*UserSquashResponse, error) {
+ out := new(UserSquashResponse)
+ err := grpc.Invoke(ctx, "/gitaly.OperationService/UserSquash", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// Server API for OperationService service
type OperationServiceServer interface {
@@ -1372,6 +1488,7 @@ type OperationServiceServer interface {
UserRevert(context.Context, *UserRevertRequest) (*UserRevertResponse, error)
UserCommitFiles(OperationService_UserCommitFilesServer) error
UserRebase(context.Context, *UserRebaseRequest) (*UserRebaseResponse, error)
+ UserSquash(context.Context, *UserSquashRequest) (*UserSquashResponse, error)
}
func RegisterOperationServiceServer(s *grpc.Server, srv OperationServiceServer) {
@@ -1574,6 +1691,24 @@ func _OperationService_UserRebase_Handler(srv interface{}, ctx context.Context,
return interceptor(ctx, in, info, handler)
}
+func _OperationService_UserSquash_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(UserSquashRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(OperationServiceServer).UserSquash(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.OperationService/UserSquash",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(OperationServiceServer).UserSquash(ctx, req.(*UserSquashRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _OperationService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.OperationService",
HandlerType: (*OperationServiceServer)(nil),
@@ -1610,6 +1745,10 @@ var _OperationService_serviceDesc = grpc.ServiceDesc{
MethodName: "UserRebase",
Handler: _OperationService_UserRebase_Handler,
},
+ {
+ MethodName: "UserSquash",
+ Handler: _OperationService_UserSquash_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
@@ -1630,90 +1769,96 @@ var _OperationService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("operations.proto", fileDescriptor7) }
var fileDescriptor7 = []byte{
- // 1357 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0xcd, 0x6f, 0x1b, 0x45,
- 0x14, 0xf7, 0xda, 0xee, 0xc6, 0x79, 0x76, 0x1c, 0x7b, 0xfa, 0x81, 0xeb, 0x36, 0x4d, 0xba, 0xa5,
- 0x50, 0x2a, 0x64, 0xa1, 0x80, 0xe0, 0x54, 0x50, 0x3e, 0x1c, 0xd2, 0x42, 0xda, 0xb0, 0x4d, 0x0a,
- 0xb7, 0xd5, 0xc4, 0x1e, 0xec, 0x15, 0xb6, 0x77, 0x99, 0x9d, 0x44, 0x35, 0x42, 0x88, 0x0b, 0x70,
- 0xe5, 0xc4, 0x81, 0x13, 0x12, 0x37, 0x6e, 0x5c, 0x38, 0x70, 0xe0, 0xc4, 0x89, 0x6b, 0x0f, 0xfc,
- 0x3b, 0x68, 0x66, 0xde, 0xda, 0xbb, 0xeb, 0xdd, 0x28, 0x81, 0x44, 0x54, 0x88, 0xdb, 0xee, 0x7b,
- 0x6f, 0xde, 0xbc, 0xf7, 0x7b, 0x1f, 0xf3, 0x66, 0xa0, 0xe6, 0xf9, 0x8c, 0x53, 0xe1, 0x7a, 0xa3,
- 0xa0, 0xe5, 0x73, 0x4f, 0x78, 0xc4, 0xec, 0xb9, 0x82, 0x0e, 0xc6, 0xcd, 0x4a, 0xd0, 0xa7, 0x9c,
- 0x75, 0x35, 0xd5, 0xfa, 0xd9, 0x80, 0x17, 0xf6, 0x03, 0xc6, 0x37, 0x38, 0xa3, 0x82, 0xad, 0x73,
- 0x3a, 0xea, 0xf4, 0x6d, 0xf6, 0xe9, 0x21, 0x0b, 0x04, 0x59, 0x05, 0xe0, 0xcc, 0xf7, 0x02, 0x57,
- 0x78, 0x7c, 0xdc, 0x30, 0x56, 0x8c, 0x3b, 0xe5, 0x55, 0xd2, 0xd2, 0x6a, 0x5a, 0xf6, 0x84, 0x63,
- 0x47, 0xa4, 0xc8, 0x32, 0x94, 0x0f, 0x94, 0x12, 0x67, 0x44, 0x87, 0xac, 0x91, 0x5f, 0x31, 0xee,
- 0x54, 0x6c, 0xd0, 0xa4, 0x87, 0x74, 0xc8, 0xc8, 0x0a, 0x14, 0x0f, 0x03, 0xc6, 0x1b, 0x05, 0xa5,
- 0xae, 0x12, 0xaa, 0x93, 0x36, 0xd8, 0x8a, 0x23, 0x55, 0x04, 0x82, 0x72, 0xe1, 0xf8, 0x9e, 0x3b,
- 0x12, 0x8d, 0xa2, 0x56, 0xa1, 0x48, 0xbb, 0x92, 0x62, 0x8d, 0xa0, 0x31, 0x6b, 0x72, 0xe0, 0x7b,
- 0xa3, 0x80, 0x91, 0x97, 0xc0, 0xd4, 0x9b, 0xa1, 0xbd, 0xd5, 0x70, 0x03, 0x94, 0x43, 0x2e, 0xb9,
- 0x0b, 0x75, 0x9f, 0x33, 0x87, 0xb3, 0x0e, 0x73, 0x8f, 0x98, 0xc3, 0x38, 0xf7, 0xb8, 0xb2, 0x76,
- 0xde, 0x5e, 0xf4, 0x39, 0xb3, 0x35, 0xbd, 0x2d, 0xc9, 0xd6, 0xb7, 0x88, 0xd1, 0x26, 0x1b, 0xb0,
- 0xe7, 0x03, 0x23, 0x6b, 0x4b, 0x43, 0x10, 0xb7, 0x08, 0x21, 0x48, 0x75, 0xcd, 0x48, 0x77, 0xed,
- 0x1b, 0x03, 0x2e, 0x4d, 0x15, 0xed, 0xd1, 0xde, 0x3f, 0xf1, 0xeb, 0x2a, 0x94, 0x04, 0xed, 0x45,
- 0x9d, 0x9a, 0x13, 0xb4, 0x77, 0x42, 0x8f, 0x36, 0xe0, 0x72, 0xc2, 0x90, 0xbf, 0xe1, 0xce, 0x1f,
- 0xe8, 0x8e, 0x4e, 0x8d, 0x7f, 0xd1, 0x1d, 0xf2, 0x32, 0x2c, 0x0a, 0xca, 0x7b, 0x4c, 0x38, 0x9c,
- 0x1d, 0xb9, 0x81, 0xeb, 0x8d, 0x30, 0x91, 0xab, 0x9a, 0x6c, 0x23, 0x95, 0x34, 0x60, 0x6e, 0xc8,
- 0x82, 0x80, 0xf6, 0x58, 0xe3, 0x82, 0xde, 0x04, 0x7f, 0xad, 0xcf, 0x34, 0x22, 0x11, 0x5f, 0x10,
- 0x91, 0x25, 0x28, 0x08, 0xda, 0x43, 0x2f, 0xca, 0xe1, 0xe6, 0x52, 0x42, 0xd2, 0xc9, 0x15, 0x30,
- 0xd9, 0x53, 0x37, 0x10, 0x81, 0xb2, 0xba, 0x64, 0xe3, 0x5f, 0x3a, 0x90, 0x85, 0x74, 0x20, 0x9f,
- 0x19, 0x70, 0x45, 0x6e, 0xbe, 0xc3, 0x78, 0xef, 0x0c, 0x32, 0x3e, 0xc4, 0x2b, 0x9f, 0x89, 0xd7,
- 0x35, 0x98, 0xef, 0x78, 0xc3, 0xa1, 0x2b, 0x1c, 0xb7, 0x8b, 0x46, 0x95, 0x34, 0xe1, 0x7e, 0x57,
- 0x7a, 0x84, 0x45, 0xad, 0x31, 0x0c, 0x8b, 0x38, 0x13, 0x3b, 0x72, 0x09, 0x2e, 0x50, 0xdf, 0x1f,
- 0x8c, 0x1b, 0xa6, 0x82, 0x40, 0xff, 0x58, 0x5f, 0x62, 0x21, 0xc7, 0xbc, 0x42, 0x50, 0x63, 0x06,
- 0x18, 0x09, 0x03, 0xd6, 0x61, 0x01, 0x2b, 0xf6, 0xd0, 0xef, 0x52, 0xc1, 0x30, 0xf0, 0x4b, 0xa1,
- 0x23, 0x8f, 0xc2, 0x66, 0xab, 0x95, 0xee, 0x2b, 0x21, 0xbb, 0x72, 0x10, 0xf9, 0x7b, 0x50, 0x2c,
- 0xe5, 0x6b, 0x05, 0xeb, 0x0b, 0xb8, 0x9c, 0x2a, 0x7c, 0xfc, 0xfe, 0x37, 0xa1, 0x22, 0xd1, 0x74,
- 0x3a, 0x2a, 0x17, 0xba, 0x18, 0xd8, 0xb2, 0xa4, 0xe9, 0xf4, 0xe8, 0x92, 0xdb, 0x50, 0x45, 0x13,
- 0x43, 0xa1, 0x82, 0x12, 0x42, 0xc3, 0x51, 0xcc, 0xfa, 0xc1, 0x80, 0x8b, 0x12, 0x82, 0xad, 0xad,
- 0xe7, 0x35, 0xaa, 0xd6, 0xd7, 0x58, 0xc4, 0x53, 0x13, 0x31, 0x44, 0x33, 0x51, 0x30, 0x4e, 0x1d,
- 0x85, 0x53, 0xf5, 0xfd, 0xdf, 0xf2, 0x58, 0x81, 0x7d, 0xc6, 0xf9, 0x78, 0xd7, 0xed, 0x7c, 0x72,
- 0xbe, 0x68, 0xbd, 0x02, 0xa6, 0x06, 0x07, 0xd3, 0xab, 0x1e, 0xca, 0xbc, 0xeb, 0x8a, 0x0d, 0xc5,
- 0xb0, 0x51, 0x20, 0x79, 0x84, 0x14, 0x67, 0x8e, 0x90, 0xec, 0xd2, 0xb8, 0x0b, 0x75, 0x7d, 0xbc,
- 0x46, 0x15, 0x98, 0x4a, 0x66, 0x51, 0x31, 0xd6, 0xa7, 0x5a, 0xee, 0x41, 0x4d, 0xcb, 0x46, 0xbc,
- 0x9d, 0xcb, 0xf4, 0x56, 0x2f, 0x9f, 0x12, 0xac, 0x3f, 0xb1, 0x8b, 0x44, 0x01, 0x3c, 0xdb, 0x58,
- 0xea, 0x5c, 0x77, 0x04, 0x67, 0x89, 0x58, 0x6a, 0xc6, 0x1e, 0x67, 0x3a, 0x96, 0xb2, 0x82, 0x30,
- 0x13, 0xa3, 0x7d, 0xaf, 0xac, 0x69, 0x5a, 0x24, 0x35, 0x35, 0x8a, 0xe9, 0xa9, 0xf1, 0x6b, 0x1e,
- 0xea, 0x2a, 0x72, 0xec, 0x88, 0x49, 0x97, 0xff, 0x4f, 0x8b, 0x53, 0xa4, 0xc5, 0x33, 0x03, 0x48,
- 0x14, 0xbc, 0xff, 0x46, 0x4a, 0x7c, 0x9f, 0x87, 0x6b, 0x2a, 0xd9, 0xd5, 0xfa, 0x2d, 0x77, 0xc0,
- 0x82, 0xb5, 0x8e, 0x34, 0x77, 0x9b, 0xd1, 0x2e, 0xe3, 0x64, 0x0b, 0x4c, 0xaa, 0xfe, 0x95, 0x5f,
- 0xd5, 0xd5, 0x56, 0x34, 0xd4, 0x19, 0x8b, 0x5a, 0xfa, 0x67, 0x6f, 0xec, 0x33, 0x1b, 0x57, 0xcb,
- 0x9e, 0xfa, 0xb1, 0x3b, 0x60, 0x8e, 0x4f, 0x45, 0x1f, 0xe7, 0x92, 0x92, 0x24, 0xec, 0x52, 0xd1,
- 0x27, 0xb7, 0x60, 0xc1, 0x97, 0x03, 0x87, 0x77, 0x18, 0x68, 0x81, 0x82, 0x12, 0xa8, 0x84, 0x44,
- 0x25, 0x24, 0x8f, 0x0a, 0x1a, 0xb0, 0x37, 0xdf, 0x70, 0x3a, 0xde, 0x48, 0x30, 0x9c, 0xb1, 0xe5,
- 0x51, 0xa1, 0xa8, 0x1b, 0x9a, 0x68, 0x3d, 0x00, 0x98, 0x6e, 0x4f, 0x00, 0xcc, 0x0d, 0xbb, 0xbd,
- 0xb6, 0xd7, 0xae, 0xe5, 0x48, 0x15, 0x40, 0x7f, 0x3b, 0x9b, 0xf7, 0xed, 0x9a, 0x21, 0x79, 0xfb,
- 0xbb, 0x9b, 0x92, 0x97, 0x27, 0x25, 0x28, 0xee, 0x3c, 0x7a, 0xd2, 0xae, 0x15, 0x24, 0x75, 0xb3,
- 0xfd, 0x7e, 0x7b, 0xaf, 0x5d, 0x2b, 0x5a, 0xdf, 0x19, 0xd8, 0x4a, 0x93, 0x7e, 0x92, 0x7b, 0x60,
- 0xf6, 0x95, 0xaf, 0x18, 0xee, 0x5b, 0x27, 0x80, 0x65, 0x3b, 0x67, 0xe3, 0x22, 0xd2, 0x84, 0xb9,
- 0xd0, 0x09, 0x85, 0xc5, 0x76, 0xce, 0x0e, 0x09, 0xeb, 0x16, 0xac, 0xc8, 0x02, 0x72, 0x30, 0xca,
- 0x12, 0xa4, 0xc0, 0xd1, 0x28, 0x3a, 0x3e, 0x1d, 0x0f, 0x3c, 0xda, 0xb5, 0xbe, 0x2a, 0xc0, 0xf5,
- 0xc4, 0x4e, 0x58, 0xcd, 0x18, 0xb6, 0xf3, 0xa9, 0xe9, 0x44, 0xa1, 0x16, 0x66, 0x0a, 0xf5, 0x36,
- 0x54, 0xd1, 0xec, 0xb0, 0x5e, 0x75, 0x31, 0x2f, 0x68, 0xea, 0x0e, 0x56, 0xed, 0xab, 0x40, 0x50,
- 0x8c, 0x1e, 0x8a, 0xbe, 0xc7, 0xb5, 0x3a, 0x5d, 0xda, 0x35, 0xcd, 0x59, 0x53, 0x0c, 0xa5, 0xb4,
- 0x05, 0x17, 0xe3, 0xd2, 0x6c, 0x48, 0xdd, 0x01, 0x56, 0x79, 0x3d, 0x2a, 0xde, 0x96, 0x8c, 0xf4,
- 0x9e, 0x30, 0x77, 0xf2, 0x9e, 0x50, 0x3a, 0x79, 0x4f, 0xf8, 0x25, 0x3c, 0x2a, 0x66, 0xe2, 0x40,
- 0xde, 0x4e, 0x64, 0xc8, 0x8b, 0x19, 0x19, 0x12, 0x8b, 0x5b, 0x24, 0x45, 0xde, 0x9a, 0x14, 0x5e,
- 0x3e, 0xde, 0x50, 0xd2, 0x33, 0x2c, 0x17, 0x56, 0xda, 0xfa, 0x2d, 0xb8, 0x39, 0x9b, 0x3f, 0x5c,
- 0xef, 0x32, 0x49, 0xa0, 0x9f, 0xc2, 0x0b, 0x74, 0xd4, 0x90, 0x33, 0xec, 0x68, 0xcb, 0x50, 0x76,
- 0x47, 0x5d, 0xf6, 0x34, 0xd6, 0xcb, 0x40, 0x91, 0x8e, 0xe9, 0x51, 0x19, 0x63, 0xfd, 0x8f, 0x93,
- 0x63, 0x4b, 0x96, 0xfa, 0xb9, 0xcf, 0x7e, 0x5c, 0x6d, 0x13, 0x99, 0xfd, 0x34, 0xe1, 0x98, 0x89,
- 0x7e, 0x09, 0xb0, 0x08, 0x9c, 0xa0, 0x4f, 0x55, 0x1e, 0xcf, 0xdb, 0xf3, 0x9a, 0xf2, 0xb8, 0x4f,
- 0xc9, 0x3b, 0x50, 0xe7, 0x6c, 0xe8, 0x09, 0x16, 0xcd, 0x32, 0x33, 0xd3, 0xe0, 0x9a, 0x16, 0x9e,
- 0x52, 0x64, 0x7f, 0x44, 0x05, 0xb8, 0xbd, 0xce, 0xe6, 0x8a, 0x26, 0xea, 0x30, 0x58, 0x9f, 0x87,
- 0xc7, 0x93, 0x06, 0x69, 0x72, 0xeb, 0x02, 0xf4, 0x47, 0x9a, 0xa6, 0x27, 0x74, 0xf4, 0x50, 0x9a,
- 0x76, 0x8a, 0xc1, 0x52, 0x42, 0xd3, 0x4b, 0x1c, 0x3b, 0xa5, 0x1e, 0x9e, 0x39, 0xab, 0xbf, 0x9b,
- 0x50, 0x9b, 0x24, 0xc6, 0x63, 0xc6, 0x8f, 0xdc, 0x0e, 0x23, 0x1f, 0x42, 0x2d, 0xf9, 0xe4, 0x41,
- 0x96, 0x63, 0x79, 0x3c, 0xfb, 0x7e, 0xd3, 0x5c, 0xc9, 0x16, 0xd0, 0x3e, 0x59, 0xb9, 0x50, 0x71,
- 0xf4, 0x21, 0x21, 0xae, 0x38, 0xe5, 0xd1, 0x23, 0xae, 0x38, 0xed, 0x0d, 0xc2, 0xca, 0x91, 0x87,
- 0xb0, 0x10, 0xbb, 0xbd, 0x92, 0xeb, 0xb3, 0xd6, 0x4c, 0x2f, 0xe8, 0xcd, 0xa5, 0x0c, 0x6e, 0x52,
- 0xdf, 0xe4, 0x7d, 0x20, 0xae, 0x2f, 0xf9, 0x7e, 0x11, 0xd7, 0x37, 0xf3, 0xa8, 0x60, 0xe5, 0xc8,
- 0x47, 0xb0, 0x98, 0xb8, 0x0a, 0x92, 0x1b, 0xd1, 0x35, 0xb3, 0x37, 0xdf, 0xe6, 0x72, 0x26, 0x3f,
- 0xd4, 0x7a, 0xc7, 0x78, 0xcd, 0x20, 0xef, 0x41, 0x25, 0x7a, 0x7d, 0x21, 0xd7, 0xa2, 0xcb, 0x12,
- 0xf7, 0xae, 0xe6, 0xf5, 0x74, 0xe6, 0xc4, 0xcc, 0x0f, 0xa0, 0x1a, 0x9f, 0xa0, 0x49, 0x1c, 0xa9,
- 0xe4, 0xd5, 0xa4, 0x79, 0x23, 0x8b, 0x3d, 0x51, 0xd9, 0x06, 0x98, 0x4e, 0x5f, 0xe4, 0x6a, 0xac,
- 0x74, 0xa3, 0xe3, 0x6c, 0xb3, 0x99, 0xc6, 0x9a, 0xa8, 0x79, 0xa2, 0x01, 0x8c, 0xf4, 0xbd, 0x38,
- 0x80, 0xb3, 0x9d, 0x39, 0x0e, 0x60, 0x4a, 0xc3, 0x94, 0x00, 0x4e, 0xcd, 0x93, 0x95, 0x95, 0x34,
- 0x2f, 0xd2, 0xb6, 0x92, 0xe6, 0x45, 0x8b, 0xd5, 0xca, 0x1d, 0x98, 0xea, 0x7d, 0xf3, 0xf5, 0xbf,
- 0x02, 0x00, 0x00, 0xff, 0xff, 0x39, 0x0c, 0xa6, 0xa6, 0x09, 0x15, 0x00, 0x00,
+ // 1448 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x4f, 0x73, 0xdb, 0x44,
+ 0x14, 0xb7, 0x6c, 0x57, 0x76, 0x5e, 0x1c, 0xc7, 0xd9, 0xfe, 0x73, 0xdd, 0xa6, 0x49, 0xd5, 0x16,
+ 0x4a, 0x87, 0xc9, 0x30, 0x81, 0x81, 0x53, 0x61, 0x9a, 0xc4, 0xa1, 0x2d, 0xb4, 0x0d, 0x6a, 0x5a,
+ 0xb8, 0x69, 0x36, 0xf6, 0x62, 0x6b, 0xb0, 0x2d, 0x75, 0xa5, 0x64, 0x1a, 0x86, 0x61, 0xb8, 0x00,
+ 0x07, 0x2e, 0x9c, 0x38, 0x70, 0x82, 0xe1, 0xc6, 0x8d, 0x0b, 0x07, 0x0e, 0x7c, 0x00, 0xae, 0x3d,
+ 0xf0, 0x75, 0x98, 0xdd, 0xf7, 0x64, 0x4b, 0xb2, 0x94, 0x49, 0x20, 0x19, 0x3a, 0x0c, 0x37, 0xe9,
+ 0xbd, 0xb7, 0x6f, 0xdf, 0xfb, 0xbd, 0x7f, 0xbb, 0x0b, 0x0d, 0xcf, 0x17, 0x92, 0x87, 0xae, 0x37,
+ 0x0a, 0x56, 0x7c, 0xe9, 0x85, 0x1e, 0x33, 0x7b, 0x6e, 0xc8, 0x07, 0xfb, 0xad, 0x5a, 0xd0, 0xe7,
+ 0x52, 0x74, 0x91, 0x6a, 0xfd, 0x62, 0xc0, 0xf9, 0xc7, 0x81, 0x90, 0xeb, 0x52, 0xf0, 0x50, 0xac,
+ 0x49, 0x3e, 0xea, 0xf4, 0x6d, 0xf1, 0x74, 0x57, 0x04, 0x21, 0x5b, 0x05, 0x90, 0xc2, 0xf7, 0x02,
+ 0x37, 0xf4, 0xe4, 0x7e, 0xd3, 0x58, 0x36, 0x6e, 0xcc, 0xae, 0xb2, 0x15, 0x54, 0xb3, 0x62, 0x8f,
+ 0x39, 0x76, 0x4c, 0x8a, 0x2d, 0xc1, 0xec, 0x8e, 0x56, 0xe2, 0x8c, 0xf8, 0x50, 0x34, 0x8b, 0xcb,
+ 0xc6, 0x8d, 0x9a, 0x0d, 0x48, 0x7a, 0xc0, 0x87, 0x82, 0x2d, 0x43, 0x79, 0x37, 0x10, 0xb2, 0x59,
+ 0xd2, 0xea, 0x6a, 0x91, 0x3a, 0x65, 0x83, 0xad, 0x39, 0x4a, 0x45, 0x10, 0x72, 0x19, 0x3a, 0xbe,
+ 0xe7, 0x8e, 0xc2, 0x66, 0x19, 0x55, 0x68, 0xd2, 0x96, 0xa2, 0x58, 0x23, 0x68, 0x4e, 0x9b, 0x1c,
+ 0xf8, 0xde, 0x28, 0x10, 0xec, 0x25, 0x30, 0x71, 0x33, 0xb2, 0xb7, 0x1e, 0x6d, 0x40, 0x72, 0xc4,
+ 0x65, 0x37, 0x61, 0xc1, 0x97, 0xc2, 0x91, 0xa2, 0x23, 0xdc, 0x3d, 0xe1, 0x08, 0x29, 0x3d, 0xa9,
+ 0xad, 0x9d, 0xb1, 0xe7, 0x7d, 0x29, 0x6c, 0xa4, 0xb7, 0x15, 0xd9, 0xfa, 0x96, 0x30, 0xda, 0x10,
+ 0x03, 0xf1, 0x62, 0x60, 0x64, 0x6d, 0x22, 0x04, 0x49, 0x8b, 0x08, 0x82, 0x4c, 0xd7, 0x8c, 0x6c,
+ 0xd7, 0xbe, 0x36, 0xe0, 0xcc, 0x44, 0xd1, 0x36, 0xef, 0xfd, 0x13, 0xbf, 0x2e, 0x40, 0x35, 0xe4,
+ 0xbd, 0xb8, 0x53, 0x95, 0x90, 0xf7, 0x0e, 0xe9, 0xd1, 0x3a, 0x9c, 0x4d, 0x19, 0xf2, 0x37, 0xdc,
+ 0xf9, 0x83, 0xdc, 0xc1, 0xd4, 0xf8, 0x17, 0xdd, 0x61, 0x2f, 0xc3, 0x7c, 0xc8, 0x65, 0x4f, 0x84,
+ 0x8e, 0x14, 0x7b, 0x6e, 0xe0, 0x7a, 0x23, 0x4a, 0xe4, 0x3a, 0x92, 0x6d, 0xa2, 0xb2, 0x26, 0x54,
+ 0x86, 0x22, 0x08, 0x78, 0x4f, 0x34, 0x4f, 0xe1, 0x26, 0xf4, 0x6b, 0x7d, 0x8a, 0x88, 0xc4, 0x7c,
+ 0x21, 0x44, 0x16, 0xa1, 0x14, 0xf2, 0x1e, 0x79, 0x31, 0x1b, 0x6d, 0xae, 0x24, 0x14, 0x9d, 0x9d,
+ 0x03, 0x53, 0x3c, 0x73, 0x83, 0x30, 0xd0, 0x56, 0x57, 0x6d, 0xfa, 0xcb, 0x06, 0xb2, 0x94, 0x0d,
+ 0xe4, 0x73, 0x03, 0xce, 0xa9, 0xcd, 0xef, 0x0b, 0xd9, 0x3b, 0x86, 0x8c, 0x8f, 0xf0, 0x2a, 0xe6,
+ 0xe2, 0x75, 0x11, 0x66, 0x3a, 0xde, 0x70, 0xe8, 0x86, 0x8e, 0xdb, 0x25, 0xa3, 0xaa, 0x48, 0xb8,
+ 0xdb, 0x55, 0x1e, 0x51, 0x51, 0x23, 0x86, 0x51, 0x11, 0xe7, 0x62, 0xc7, 0xce, 0xc0, 0x29, 0xee,
+ 0xfb, 0x83, 0xfd, 0xa6, 0xa9, 0x21, 0xc0, 0x1f, 0xeb, 0x0b, 0x2a, 0xe4, 0x84, 0x57, 0x04, 0x6a,
+ 0xc2, 0x00, 0x23, 0x65, 0xc0, 0x1a, 0xcc, 0x51, 0xc5, 0xee, 0xfa, 0x5d, 0x1e, 0x0a, 0x0a, 0xfc,
+ 0x62, 0xe4, 0xc8, 0xc3, 0xa8, 0xd9, 0xa2, 0xd2, 0xc7, 0x5a, 0xc8, 0xae, 0xed, 0xc4, 0xfe, 0xee,
+ 0x95, 0xab, 0xc5, 0x46, 0xc9, 0xfa, 0x1c, 0xce, 0x66, 0x0a, 0x1f, 0xbc, 0xff, 0x15, 0xa8, 0x29,
+ 0x34, 0x9d, 0x8e, 0xce, 0x85, 0x2e, 0x05, 0x76, 0x56, 0xd1, 0x30, 0x3d, 0xba, 0xec, 0x3a, 0xd4,
+ 0xc9, 0xc4, 0x48, 0xa8, 0xa4, 0x85, 0xc8, 0x70, 0x12, 0xb3, 0x7e, 0x30, 0xe0, 0xb4, 0x82, 0x60,
+ 0x73, 0xf3, 0x45, 0x8d, 0xaa, 0xf5, 0x15, 0x15, 0xf1, 0xc4, 0x44, 0x0a, 0xd1, 0x54, 0x14, 0x8c,
+ 0x23, 0x47, 0xe1, 0x48, 0x7d, 0xff, 0xf7, 0x22, 0x55, 0x60, 0x5f, 0x48, 0xb9, 0xbf, 0xe5, 0x76,
+ 0x3e, 0x39, 0x59, 0xb4, 0x5e, 0x01, 0x13, 0xc1, 0xa1, 0xf4, 0x5a, 0x88, 0x64, 0xde, 0x75, 0xc3,
+ 0x75, 0xcd, 0xb0, 0x49, 0x20, 0x3d, 0x42, 0xca, 0x53, 0x23, 0x24, 0xbf, 0x34, 0x6e, 0xc2, 0x02,
+ 0x8e, 0xd7, 0xb8, 0x02, 0x53, 0xcb, 0xcc, 0x6b, 0xc6, 0xda, 0x44, 0xcb, 0x2d, 0x68, 0xa0, 0x6c,
+ 0xcc, 0xdb, 0x4a, 0xae, 0xb7, 0xb8, 0x7c, 0x42, 0xb0, 0xfe, 0xa4, 0x2e, 0x12, 0x07, 0xf0, 0x78,
+ 0x63, 0x89, 0xb9, 0xee, 0x84, 0x52, 0xa4, 0x62, 0x89, 0x8c, 0x6d, 0x29, 0x30, 0x96, 0xaa, 0x82,
+ 0x28, 0x13, 0xe3, 0x7d, 0x6f, 0x16, 0x69, 0x28, 0x92, 0x99, 0x1a, 0xe5, 0xec, 0xd4, 0xf8, 0xad,
+ 0x08, 0x0b, 0x3a, 0x72, 0x62, 0x4f, 0x28, 0x97, 0xff, 0x4f, 0x8b, 0x23, 0xa4, 0xc5, 0x73, 0x03,
+ 0x58, 0x1c, 0xbc, 0xff, 0x46, 0x4a, 0x7c, 0x5f, 0x84, 0x8b, 0x3a, 0xd9, 0xf5, 0xfa, 0x4d, 0x77,
+ 0x20, 0x82, 0xdb, 0x1d, 0x65, 0xee, 0x1d, 0xc1, 0xbb, 0x42, 0xb2, 0x4d, 0x30, 0xb9, 0xfe, 0xd7,
+ 0x7e, 0xd5, 0x57, 0x57, 0xe2, 0xa1, 0xce, 0x59, 0xb4, 0x82, 0x3f, 0xdb, 0xfb, 0xbe, 0xb0, 0x69,
+ 0xb5, 0xea, 0xa9, 0x1f, 0xbb, 0x03, 0xe1, 0xf8, 0x3c, 0xec, 0xd3, 0xb9, 0xa4, 0xaa, 0x08, 0x5b,
+ 0x3c, 0xec, 0xb3, 0xab, 0x30, 0xe7, 0xab, 0x03, 0x87, 0xb7, 0x1b, 0xa0, 0x40, 0x49, 0x0b, 0xd4,
+ 0x22, 0xa2, 0x16, 0x52, 0xa3, 0x82, 0x07, 0xe2, 0xcd, 0x37, 0x9c, 0x8e, 0x37, 0x0a, 0x05, 0x9d,
+ 0xb1, 0xd5, 0xa8, 0xd0, 0xd4, 0x75, 0x24, 0x5a, 0xf7, 0x00, 0x26, 0xdb, 0x33, 0x00, 0x73, 0xdd,
+ 0x6e, 0xdf, 0xde, 0x6e, 0x37, 0x0a, 0xac, 0x0e, 0x80, 0xdf, 0xce, 0xc6, 0x5d, 0xbb, 0x61, 0x28,
+ 0xde, 0xe3, 0xad, 0x0d, 0xc5, 0x2b, 0xb2, 0x2a, 0x94, 0xef, 0x3f, 0x7c, 0xd2, 0x6e, 0x94, 0x14,
+ 0x75, 0xa3, 0xfd, 0x7e, 0x7b, 0xbb, 0xdd, 0x28, 0x5b, 0xdf, 0x19, 0xd4, 0x4a, 0xd3, 0x7e, 0xb2,
+ 0x5b, 0x60, 0xf6, 0xb5, 0xaf, 0x14, 0xee, 0xab, 0x87, 0x80, 0xe5, 0x4e, 0xc1, 0xa6, 0x45, 0xac,
+ 0x05, 0x95, 0xc8, 0x09, 0x8d, 0xc5, 0x9d, 0x82, 0x1d, 0x11, 0xd6, 0x2c, 0x58, 0x56, 0x05, 0xe4,
+ 0x50, 0x94, 0x15, 0x48, 0x81, 0x83, 0x28, 0x3a, 0x3e, 0xdf, 0x1f, 0x78, 0xbc, 0x6b, 0x7d, 0x59,
+ 0x82, 0x4b, 0xa9, 0x9d, 0xa8, 0x9a, 0x29, 0x6c, 0x27, 0x53, 0xd3, 0xa9, 0x42, 0x2d, 0x4d, 0x15,
+ 0xea, 0x75, 0xa8, 0x93, 0xd9, 0x51, 0xbd, 0x62, 0x31, 0xcf, 0x21, 0xf5, 0x3e, 0x55, 0xed, 0xab,
+ 0xc0, 0x48, 0x8c, 0xef, 0x86, 0x7d, 0x4f, 0xa2, 0x3a, 0x2c, 0xed, 0x06, 0x72, 0x6e, 0x6b, 0x86,
+ 0x56, 0xba, 0x02, 0xa7, 0x93, 0xd2, 0x62, 0xc8, 0xdd, 0x01, 0x55, 0xf9, 0x42, 0x5c, 0xbc, 0xad,
+ 0x18, 0xd9, 0x3d, 0xa1, 0x72, 0xf8, 0x9e, 0x50, 0x3d, 0x7c, 0x4f, 0xf8, 0x35, 0x1a, 0x15, 0x53,
+ 0x71, 0x60, 0x6f, 0xa7, 0x32, 0xe4, 0x5a, 0x4e, 0x86, 0x24, 0xe2, 0x16, 0x4b, 0x91, 0xb7, 0xc6,
+ 0x85, 0x57, 0x4c, 0x36, 0x94, 0xec, 0x0c, 0x2b, 0x44, 0x95, 0xb6, 0x76, 0x15, 0xae, 0x4c, 0xe7,
+ 0x8f, 0xc4, 0x5d, 0xc6, 0x09, 0xf4, 0x73, 0x74, 0x81, 0x8e, 0x1b, 0x72, 0x8c, 0x1d, 0x6d, 0x09,
+ 0x66, 0xdd, 0x51, 0x57, 0x3c, 0x4b, 0xf4, 0x32, 0xd0, 0xa4, 0x03, 0x7a, 0x54, 0xce, 0xb1, 0xfe,
+ 0xa7, 0xf1, 0xd8, 0x52, 0xa5, 0x7e, 0xe2, 0x67, 0x3f, 0xa9, 0xb7, 0x89, 0x9d, 0xfd, 0x90, 0x70,
+ 0xc0, 0x89, 0x7e, 0x11, 0xa8, 0x08, 0x9c, 0xa0, 0xcf, 0x75, 0x1e, 0xcf, 0xd8, 0x33, 0x48, 0x79,
+ 0xd4, 0xe7, 0xec, 0x1d, 0x58, 0x90, 0x62, 0xe8, 0x85, 0x22, 0x9e, 0x65, 0x66, 0xae, 0xc1, 0x0d,
+ 0x14, 0x9e, 0x50, 0x54, 0x7f, 0x24, 0x05, 0xb4, 0x3d, 0x66, 0x73, 0x0d, 0x89, 0x18, 0x06, 0xeb,
+ 0xb3, 0x68, 0x3c, 0x21, 0x48, 0xe3, 0x5b, 0x17, 0x90, 0x3f, 0xca, 0x34, 0x3c, 0xa1, 0x93, 0x87,
+ 0xca, 0xb4, 0x23, 0x1c, 0x2c, 0x15, 0x34, 0xbd, 0xd4, 0xd8, 0xa9, 0xf6, 0x68, 0xe6, 0x58, 0x3f,
+ 0x52, 0x8c, 0x1e, 0x3d, 0xdd, 0xe5, 0xc1, 0xc9, 0x9f, 0xcf, 0x03, 0xbd, 0x4d, 0x2c, 0x46, 0x48,
+ 0x38, 0x20, 0x46, 0x6a, 0x91, 0xae, 0xf4, 0x49, 0x88, 0xaa, 0x9a, 0xa0, 0x60, 0x38, 0x0f, 0x15,
+ 0x31, 0xea, 0x6a, 0x96, 0xa9, 0x59, 0xa6, 0x18, 0x75, 0x15, 0xe3, 0x1a, 0x98, 0xd8, 0x74, 0xe8,
+ 0xa4, 0x90, 0x34, 0x87, 0x78, 0x19, 0x6d, 0xaf, 0x9a, 0xd1, 0xf6, 0xa2, 0x08, 0x45, 0x10, 0x4d,
+ 0x22, 0x44, 0xde, 0xc4, 0x22, 0x84, 0x94, 0xe3, 0x8c, 0xd0, 0xea, 0x37, 0x15, 0x68, 0x8c, 0x4b,
+ 0xf7, 0x91, 0x90, 0x7b, 0x6e, 0x47, 0xb0, 0x0f, 0xa1, 0x91, 0x7e, 0x94, 0x62, 0x4b, 0x89, 0x4e,
+ 0x33, 0xfd, 0xc2, 0xd6, 0x5a, 0xce, 0x17, 0x40, 0x9f, 0xac, 0x42, 0xa4, 0x38, 0xfe, 0xd4, 0x93,
+ 0x54, 0x9c, 0xf1, 0x2c, 0x95, 0x54, 0x9c, 0xf5, 0x4a, 0x64, 0x15, 0xd8, 0x03, 0x98, 0x4b, 0xbc,
+ 0x2f, 0xb0, 0x4b, 0xd3, 0xd6, 0x4c, 0x9e, 0x50, 0x5a, 0x8b, 0x39, 0xdc, 0xb4, 0xbe, 0xf1, 0x0b,
+ 0x4e, 0x52, 0x5f, 0xfa, 0x85, 0x29, 0xa9, 0x6f, 0xea, 0xd9, 0xc7, 0x2a, 0xb0, 0x8f, 0x60, 0x3e,
+ 0x75, 0x59, 0x67, 0x97, 0xe3, 0x6b, 0xa6, 0xdf, 0x26, 0x5a, 0x4b, 0xb9, 0xfc, 0x48, 0xeb, 0x0d,
+ 0xe3, 0x35, 0x83, 0xbd, 0x07, 0xb5, 0xf8, 0x05, 0x93, 0x5d, 0x8c, 0x2f, 0x4b, 0xdd, 0x8c, 0x5b,
+ 0x97, 0xb2, 0x99, 0x63, 0x33, 0x3f, 0x80, 0x7a, 0xf2, 0x8e, 0xc3, 0x92, 0x48, 0xa5, 0x2f, 0x8f,
+ 0xad, 0xcb, 0x79, 0xec, 0xb1, 0xca, 0x36, 0xc0, 0xe4, 0x7c, 0xcc, 0x2e, 0x24, 0x2a, 0x25, 0x7e,
+ 0xe1, 0x68, 0xb5, 0xb2, 0x58, 0x63, 0x35, 0x4f, 0x10, 0xc0, 0xd8, 0x64, 0x4a, 0x02, 0x38, 0x3d,
+ 0x3b, 0x93, 0x00, 0x66, 0x8c, 0x34, 0x05, 0xe0, 0xc4, 0x3c, 0xd5, 0xfb, 0xd2, 0xe6, 0xc5, 0x06,
+ 0x4b, 0xda, 0xbc, 0x78, 0x3b, 0x9d, 0x78, 0x89, 0x45, 0x9c, 0x54, 0x93, 0xe8, 0x7d, 0x49, 0x35,
+ 0xc9, 0x9a, 0xb7, 0x0a, 0x3b, 0xa6, 0x7e, 0xc8, 0x7e, 0xfd, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0x89, 0xd3, 0x10, 0xb4, 0xf2, 0x16, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
index bdd473dfb..438f827a6 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/repository-service.pb.go
@@ -722,6 +722,46 @@ func (m *IsRebaseInProgressResponse) GetInProgress() bool {
return false
}
+type IsSquashInProgressRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+ SquashId string `protobuf:"bytes,2,opt,name=squash_id,json=squashId" json:"squash_id,omitempty"`
+}
+
+func (m *IsSquashInProgressRequest) Reset() { *m = IsSquashInProgressRequest{} }
+func (m *IsSquashInProgressRequest) String() string { return proto.CompactTextString(m) }
+func (*IsSquashInProgressRequest) ProtoMessage() {}
+func (*IsSquashInProgressRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{34} }
+
+func (m *IsSquashInProgressRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+func (m *IsSquashInProgressRequest) GetSquashId() string {
+ if m != nil {
+ return m.SquashId
+ }
+ return ""
+}
+
+type IsSquashInProgressResponse struct {
+ InProgress bool `protobuf:"varint,1,opt,name=in_progress,json=inProgress" json:"in_progress,omitempty"`
+}
+
+func (m *IsSquashInProgressResponse) Reset() { *m = IsSquashInProgressResponse{} }
+func (m *IsSquashInProgressResponse) String() string { return proto.CompactTextString(m) }
+func (*IsSquashInProgressResponse) ProtoMessage() {}
+func (*IsSquashInProgressResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{35} }
+
+func (m *IsSquashInProgressResponse) GetInProgress() bool {
+ if m != nil {
+ return m.InProgress
+ }
+ return false
+}
+
type CreateRepositoryFromURLRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
@@ -731,7 +771,7 @@ func (m *CreateRepositoryFromURLRequest) Reset() { *m = CreateRepository
func (m *CreateRepositoryFromURLRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromURLRequest) ProtoMessage() {}
func (*CreateRepositoryFromURLRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor10, []int{34}
+ return fileDescriptor10, []int{36}
}
func (m *CreateRepositoryFromURLRequest) GetRepository() *Repository {
@@ -755,7 +795,7 @@ func (m *CreateRepositoryFromURLResponse) Reset() { *m = CreateRepositor
func (m *CreateRepositoryFromURLResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromURLResponse) ProtoMessage() {}
func (*CreateRepositoryFromURLResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor10, []int{35}
+ return fileDescriptor10, []int{37}
}
type CreateBundleRequest struct {
@@ -765,7 +805,7 @@ type CreateBundleRequest struct {
func (m *CreateBundleRequest) Reset() { *m = CreateBundleRequest{} }
func (m *CreateBundleRequest) String() string { return proto.CompactTextString(m) }
func (*CreateBundleRequest) ProtoMessage() {}
-func (*CreateBundleRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{36} }
+func (*CreateBundleRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{38} }
func (m *CreateBundleRequest) GetRepository() *Repository {
if m != nil {
@@ -781,7 +821,7 @@ type CreateBundleResponse struct {
func (m *CreateBundleResponse) Reset() { *m = CreateBundleResponse{} }
func (m *CreateBundleResponse) String() string { return proto.CompactTextString(m) }
func (*CreateBundleResponse) ProtoMessage() {}
-func (*CreateBundleResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{37} }
+func (*CreateBundleResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{39} }
func (m *CreateBundleResponse) GetData() []byte {
if m != nil {
@@ -790,6 +830,46 @@ func (m *CreateBundleResponse) GetData() []byte {
return nil
}
+type WriteConfigRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository" json:"repository,omitempty"`
+ FullPath string `protobuf:"bytes,2,opt,name=full_path,json=fullPath" json:"full_path,omitempty"`
+}
+
+func (m *WriteConfigRequest) Reset() { *m = WriteConfigRequest{} }
+func (m *WriteConfigRequest) String() string { return proto.CompactTextString(m) }
+func (*WriteConfigRequest) ProtoMessage() {}
+func (*WriteConfigRequest) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{40} }
+
+func (m *WriteConfigRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+func (m *WriteConfigRequest) GetFullPath() string {
+ if m != nil {
+ return m.FullPath
+ }
+ return ""
+}
+
+type WriteConfigResponse struct {
+ Error []byte `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
+}
+
+func (m *WriteConfigResponse) Reset() { *m = WriteConfigResponse{} }
+func (m *WriteConfigResponse) String() string { return proto.CompactTextString(m) }
+func (*WriteConfigResponse) ProtoMessage() {}
+func (*WriteConfigResponse) Descriptor() ([]byte, []int) { return fileDescriptor10, []int{41} }
+
+func (m *WriteConfigResponse) GetError() []byte {
+ if m != nil {
+ return m.Error
+ }
+ return nil
+}
+
func init() {
proto.RegisterType((*RepositoryExistsRequest)(nil), "gitaly.RepositoryExistsRequest")
proto.RegisterType((*RepositoryExistsResponse)(nil), "gitaly.RepositoryExistsResponse")
@@ -825,10 +905,14 @@ func init() {
proto.RegisterType((*CreateForkResponse)(nil), "gitaly.CreateForkResponse")
proto.RegisterType((*IsRebaseInProgressRequest)(nil), "gitaly.IsRebaseInProgressRequest")
proto.RegisterType((*IsRebaseInProgressResponse)(nil), "gitaly.IsRebaseInProgressResponse")
+ proto.RegisterType((*IsSquashInProgressRequest)(nil), "gitaly.IsSquashInProgressRequest")
+ proto.RegisterType((*IsSquashInProgressResponse)(nil), "gitaly.IsSquashInProgressResponse")
proto.RegisterType((*CreateRepositoryFromURLRequest)(nil), "gitaly.CreateRepositoryFromURLRequest")
proto.RegisterType((*CreateRepositoryFromURLResponse)(nil), "gitaly.CreateRepositoryFromURLResponse")
proto.RegisterType((*CreateBundleRequest)(nil), "gitaly.CreateBundleRequest")
proto.RegisterType((*CreateBundleResponse)(nil), "gitaly.CreateBundleResponse")
+ proto.RegisterType((*WriteConfigRequest)(nil), "gitaly.WriteConfigRequest")
+ proto.RegisterType((*WriteConfigResponse)(nil), "gitaly.WriteConfigResponse")
proto.RegisterEnum("gitaly.GetArchiveRequest_Format", GetArchiveRequest_Format_name, GetArchiveRequest_Format_value)
}
@@ -860,8 +944,10 @@ type RepositoryServiceClient interface {
FindMergeBase(ctx context.Context, in *FindMergeBaseRequest, opts ...grpc.CallOption) (*FindMergeBaseResponse, error)
CreateFork(ctx context.Context, in *CreateForkRequest, opts ...grpc.CallOption) (*CreateForkResponse, error)
IsRebaseInProgress(ctx context.Context, in *IsRebaseInProgressRequest, opts ...grpc.CallOption) (*IsRebaseInProgressResponse, error)
+ IsSquashInProgress(ctx context.Context, in *IsSquashInProgressRequest, opts ...grpc.CallOption) (*IsSquashInProgressResponse, error)
CreateRepositoryFromURL(ctx context.Context, in *CreateRepositoryFromURLRequest, opts ...grpc.CallOption) (*CreateRepositoryFromURLResponse, error)
CreateBundle(ctx context.Context, in *CreateBundleRequest, opts ...grpc.CallOption) (RepositoryService_CreateBundleClient, error)
+ WriteConfig(ctx context.Context, in *WriteConfigRequest, opts ...grpc.CallOption) (*WriteConfigResponse, error)
}
type repositoryServiceClient struct {
@@ -1048,6 +1134,15 @@ func (c *repositoryServiceClient) IsRebaseInProgress(ctx context.Context, in *Is
return out, nil
}
+func (c *repositoryServiceClient) IsSquashInProgress(ctx context.Context, in *IsSquashInProgressRequest, opts ...grpc.CallOption) (*IsSquashInProgressResponse, error) {
+ out := new(IsSquashInProgressResponse)
+ err := grpc.Invoke(ctx, "/gitaly.RepositoryService/IsSquashInProgress", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *repositoryServiceClient) CreateRepositoryFromURL(ctx context.Context, in *CreateRepositoryFromURLRequest, opts ...grpc.CallOption) (*CreateRepositoryFromURLResponse, error) {
out := new(CreateRepositoryFromURLResponse)
err := grpc.Invoke(ctx, "/gitaly.RepositoryService/CreateRepositoryFromURL", in, out, c.cc, opts...)
@@ -1089,6 +1184,15 @@ func (x *repositoryServiceCreateBundleClient) Recv() (*CreateBundleResponse, err
return m, nil
}
+func (c *repositoryServiceClient) WriteConfig(ctx context.Context, in *WriteConfigRequest, opts ...grpc.CallOption) (*WriteConfigResponse, error) {
+ out := new(WriteConfigResponse)
+ err := grpc.Invoke(ctx, "/gitaly.RepositoryService/WriteConfig", in, out, c.cc, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// Server API for RepositoryService service
type RepositoryServiceServer interface {
@@ -1109,8 +1213,10 @@ type RepositoryServiceServer interface {
FindMergeBase(context.Context, *FindMergeBaseRequest) (*FindMergeBaseResponse, error)
CreateFork(context.Context, *CreateForkRequest) (*CreateForkResponse, error)
IsRebaseInProgress(context.Context, *IsRebaseInProgressRequest) (*IsRebaseInProgressResponse, error)
+ IsSquashInProgress(context.Context, *IsSquashInProgressRequest) (*IsSquashInProgressResponse, error)
CreateRepositoryFromURL(context.Context, *CreateRepositoryFromURLRequest) (*CreateRepositoryFromURLResponse, error)
CreateBundle(*CreateBundleRequest, RepositoryService_CreateBundleServer) error
+ WriteConfig(context.Context, *WriteConfigRequest) (*WriteConfigResponse, error)
}
func RegisterRepositoryServiceServer(s *grpc.Server, srv RepositoryServiceServer) {
@@ -1426,6 +1532,24 @@ func _RepositoryService_IsRebaseInProgress_Handler(srv interface{}, ctx context.
return interceptor(ctx, in, info, handler)
}
+func _RepositoryService_IsSquashInProgress_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(IsSquashInProgressRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).IsSquashInProgress(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/IsSquashInProgress",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).IsSquashInProgress(ctx, req.(*IsSquashInProgressRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _RepositoryService_CreateRepositoryFromURL_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateRepositoryFromURLRequest)
if err := dec(in); err != nil {
@@ -1465,6 +1589,24 @@ func (x *repositoryServiceCreateBundleServer) Send(m *CreateBundleResponse) erro
return x.ServerStream.SendMsg(m)
}
+func _RepositoryService_WriteConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(WriteConfigRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(RepositoryServiceServer).WriteConfig(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/gitaly.RepositoryService/WriteConfig",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(RepositoryServiceServer).WriteConfig(ctx, req.(*WriteConfigRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _RepositoryService_serviceDesc = grpc.ServiceDesc{
ServiceName: "gitaly.RepositoryService",
HandlerType: (*RepositoryServiceServer)(nil),
@@ -1534,9 +1676,17 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
Handler: _RepositoryService_IsRebaseInProgress_Handler,
},
{
+ MethodName: "IsSquashInProgress",
+ Handler: _RepositoryService_IsSquashInProgress_Handler,
+ },
+ {
MethodName: "CreateRepositoryFromURL",
Handler: _RepositoryService_CreateRepositoryFromURL_Handler,
},
+ {
+ MethodName: "WriteConfig",
+ Handler: _RepositoryService_WriteConfig_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
@@ -1556,86 +1706,92 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("repository-service.proto", fileDescriptor10) }
var fileDescriptor10 = []byte{
- // 1291 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xdd, 0x6e, 0xdb, 0xb6,
- 0x17, 0xb7, 0xe3, 0xc6, 0x49, 0x8e, 0xdd, 0xfe, 0x1d, 0xd6, 0x69, 0x14, 0x25, 0x6d, 0x52, 0xfe,
- 0x87, 0x2d, 0xd8, 0x47, 0x50, 0x38, 0xc0, 0xb0, 0x9b, 0xa1, 0x48, 0x8a, 0x3a, 0x35, 0xda, 0x14,
- 0x9d, 0xda, 0xa1, 0x40, 0x80, 0xc1, 0x90, 0x65, 0xda, 0x16, 0x2c, 0x8b, 0x1e, 0x49, 0x67, 0x75,
- 0x9f, 0x60, 0xcf, 0xb4, 0xcb, 0xbd, 0xc2, 0x1e, 0x61, 0x97, 0x7b, 0x89, 0x41, 0x24, 0x2d, 0x4a,
- 0x96, 0xd4, 0x5d, 0x08, 0xc3, 0xee, 0xc4, 0xc3, 0xc3, 0xdf, 0x39, 0x3c, 0x3c, 0x1f, 0x3f, 0x1b,
- 0x2c, 0x46, 0xe6, 0x94, 0xfb, 0x82, 0xb2, 0xe5, 0x37, 0x9c, 0xb0, 0x5b, 0xdf, 0x23, 0x67, 0x73,
- 0x46, 0x05, 0x45, 0xf5, 0xb1, 0x2f, 0xdc, 0x60, 0x69, 0x37, 0xf9, 0xc4, 0x65, 0x64, 0xa8, 0xa4,
- 0xf8, 0x1a, 0xf6, 0x9d, 0xf8, 0xc4, 0xf3, 0x0f, 0x3e, 0x17, 0xdc, 0x21, 0x3f, 0x2f, 0x08, 0x17,
- 0xa8, 0x03, 0x60, 0xc0, 0xac, 0xea, 0x49, 0xf5, 0xb4, 0xd1, 0x41, 0x67, 0x0a, 0xe5, 0xcc, 0x1c,
- 0x72, 0x12, 0x5a, 0xb8, 0x03, 0x56, 0x16, 0x8e, 0xcf, 0x69, 0xc8, 0x09, 0x7a, 0x00, 0x75, 0x22,
- 0x25, 0x12, 0x6b, 0xdb, 0xd1, 0x2b, 0xfc, 0x3a, 0x79, 0xa6, 0xc7, 0x9f, 0xcf, 0xe6, 0x62, 0x59,
- 0xc6, 0x87, 0x6f, 0xe1, 0x20, 0x07, 0x4f, 0x3b, 0x71, 0x00, 0xdb, 0x3e, 0xef, 0x93, 0x48, 0xa6,
- 0xdd, 0xd8, 0xf2, 0x95, 0x8a, 0xf6, 0xc3, 0xf5, 0xa6, 0xbd, 0xd0, 0x63, 0x64, 0x46, 0x42, 0xe1,
- 0x06, 0x65, 0xfc, 0x38, 0x94, 0x7e, 0xac, 0xe3, 0x29, 0x3f, 0x70, 0x00, 0xbb, 0x6a, 0xb3, 0xbb,
- 0x08, 0xca, 0x58, 0x41, 0xff, 0x87, 0xbb, 0x1e, 0x23, 0xae, 0x20, 0xfd, 0x81, 0x2f, 0x66, 0xee,
- 0xdc, 0xda, 0x90, 0xb7, 0x6a, 0x2a, 0xe1, 0xa5, 0x94, 0xe1, 0x36, 0xa0, 0xa4, 0x35, 0xed, 0xc3,
- 0x1c, 0xf6, 0xae, 0x5c, 0x36, 0x70, 0xc7, 0xe4, 0x19, 0x0d, 0x02, 0xe2, 0x89, 0x7f, 0xdd, 0x0f,
- 0x0b, 0x1e, 0xac, 0x5b, 0xd4, 0xbe, 0xbc, 0x84, 0x3d, 0x03, 0xfc, 0xd6, 0xff, 0x48, 0xca, 0x44,
- 0xfe, 0x6b, 0x78, 0xb0, 0x0e, 0xa6, 0x9f, 0x1f, 0xc1, 0x1d, 0xee, 0x7f, 0x24, 0x12, 0xa7, 0xe6,
- 0xc8, 0x6f, 0x3c, 0x85, 0x83, 0x8b, 0xf9, 0x3c, 0x58, 0x5e, 0xf9, 0xc2, 0x15, 0x82, 0xf9, 0x83,
- 0x85, 0x20, 0x65, 0x8a, 0x00, 0xd9, 0xb0, 0xcd, 0xc8, 0xad, 0xcf, 0x7d, 0x1a, 0xca, 0x28, 0x34,
- 0x9d, 0x78, 0x8d, 0x8f, 0xc0, 0xce, 0x33, 0xa6, 0xa3, 0xf0, 0x67, 0x15, 0x50, 0x97, 0x08, 0x6f,
- 0xe2, 0x90, 0x19, 0x15, 0x65, 0x62, 0x10, 0x55, 0x1b, 0x93, 0x20, 0xd2, 0x85, 0x1d, 0x47, 0xaf,
- 0x50, 0x1b, 0x36, 0x47, 0x94, 0x79, 0xc4, 0xaa, 0xc9, 0xf7, 0x51, 0x0b, 0xb4, 0x0f, 0x5b, 0x21,
- 0xed, 0x0b, 0x77, 0xcc, 0xad, 0x3b, 0xaa, 0x38, 0x43, 0xfa, 0xce, 0x1d, 0x73, 0x64, 0xc1, 0x96,
- 0xf0, 0x67, 0x84, 0x2e, 0x84, 0xb5, 0x79, 0x52, 0x3d, 0xdd, 0x74, 0x56, 0xcb, 0xe8, 0x08, 0xe7,
- 0x93, 0xfe, 0x94, 0x2c, 0xad, 0xba, 0xb2, 0xc0, 0xf9, 0xe4, 0x25, 0x59, 0xa2, 0x63, 0x68, 0x4c,
- 0x43, 0xfa, 0x4b, 0xd8, 0x9f, 0xd0, 0xa8, 0xd8, 0xb7, 0xe4, 0x26, 0x48, 0xd1, 0x8b, 0x48, 0x82,
- 0xf7, 0xe0, 0x7e, 0xea, 0x92, 0xfa, 0xf2, 0xd7, 0xb0, 0xff, 0x4c, 0x26, 0x4b, 0xe2, 0x46, 0x25,
- 0x92, 0xc0, 0x06, 0x2b, 0x0b, 0xa7, 0x4d, 0xfd, 0x55, 0x85, 0xdd, 0x2b, 0x22, 0x2e, 0x98, 0x37,
- 0xf1, 0x6f, 0x4b, 0x85, 0xf9, 0x10, 0x76, 0x3c, 0x3a, 0x9b, 0xf9, 0xa2, 0xef, 0x0f, 0x75, 0xa4,
- 0xb7, 0x95, 0xa0, 0x37, 0x8c, 0xde, 0x60, 0xce, 0xc8, 0xc8, 0xff, 0x20, 0x83, 0xbd, 0xe3, 0xe8,
- 0x15, 0xfa, 0x0e, 0xea, 0x23, 0xca, 0x66, 0xae, 0x90, 0xc1, 0xbe, 0xd7, 0x39, 0x59, 0x19, 0xc9,
- 0xf8, 0x74, 0xd6, 0x95, 0x7a, 0x8e, 0xd6, 0xc7, 0xe7, 0x50, 0x57, 0x12, 0xb4, 0x05, 0xb5, 0x9b,
- 0xde, 0x9b, 0x56, 0x25, 0xfa, 0x78, 0x77, 0xe1, 0xb4, 0xaa, 0x08, 0xa0, 0xfe, 0xee, 0xc2, 0xe9,
- 0x5f, 0xdd, 0xb4, 0x36, 0x50, 0x03, 0xb6, 0xa2, 0xef, 0xcb, 0x9b, 0x4e, 0xab, 0x86, 0x4f, 0x01,
- 0x25, 0x81, 0x4d, 0x29, 0x0c, 0x5d, 0xe1, 0xca, 0x7b, 0x36, 0x1d, 0xf9, 0x1d, 0x3d, 0xc1, 0x0b,
- 0x97, 0xbf, 0xa2, 0x9e, 0x1b, 0x5c, 0x32, 0x37, 0xf4, 0x26, 0xa5, 0x0a, 0x01, 0x3f, 0x01, 0x2b,
- 0x0b, 0xa7, 0xcd, 0xb7, 0x61, 0xf3, 0xd6, 0x0d, 0x16, 0x44, 0x77, 0x61, 0xb5, 0xc0, 0x7f, 0x54,
- 0xc1, 0x92, 0xb9, 0xf1, 0x96, 0x2e, 0x98, 0x47, 0xd4, 0xa9, 0x32, 0xef, 0xf3, 0x14, 0x76, 0xb9,
- 0x84, 0xea, 0x27, 0x8e, 0x6e, 0x14, 0x1e, 0x6d, 0x29, 0x65, 0x27, 0xd5, 0xd7, 0x34, 0xc0, 0x40,
- 0x3a, 0x23, 0x9f, 0xb2, 0xe9, 0x34, 0x79, 0xc2, 0x41, 0xf4, 0x10, 0x40, 0xb8, 0x6c, 0x4c, 0x44,
- 0x9f, 0x91, 0x91, 0x7c, 0xd4, 0xa6, 0xb3, 0xa3, 0x24, 0x0e, 0x19, 0xe1, 0x73, 0x38, 0xc8, 0xb9,
- 0x94, 0x19, 0x8b, 0x8c, 0xf0, 0x45, 0x20, 0x56, 0x63, 0x51, 0xad, 0xf0, 0x05, 0x34, 0xba, 0xdc,
- 0x9b, 0x96, 0x89, 0xff, 0x67, 0xd0, 0x54, 0x10, 0x26, 0xe6, 0x84, 0x31, 0xca, 0xf4, 0x9b, 0xab,
- 0x05, 0xfe, 0xbd, 0x0a, 0xff, 0x7b, 0xcf, 0xfc, 0xa8, 0x50, 0x46, 0x65, 0x42, 0xdd, 0x82, 0x5a,
- 0x74, 0x7b, 0xd5, 0xf1, 0xa2, 0xcf, 0x54, 0x23, 0xac, 0xa5, 0x1b, 0x21, 0x7a, 0x0c, 0x4d, 0x1a,
- 0x0c, 0xfb, 0xf1, 0xbe, 0x0a, 0x5a, 0x83, 0x06, 0x43, 0x67, 0xa5, 0x12, 0xb7, 0xaa, 0xcd, 0x64,
- 0xab, 0x6a, 0xc3, 0x26, 0x9f, 0x90, 0x20, 0x90, 0x5d, 0x67, 0xdb, 0x51, 0x0b, 0x7c, 0x0a, 0x2d,
- 0x73, 0x87, 0x4f, 0x5e, 0x77, 0x02, 0xed, 0xae, 0x1f, 0x0e, 0xaf, 0x09, 0x1b, 0x93, 0x4b, 0x97,
- 0x97, 0xaa, 0xfe, 0x23, 0xd8, 0x59, 0x5d, 0x80, 0x5b, 0x1b, 0x27, 0xb5, 0xe8, 0xd9, 0x63, 0x01,
- 0xfe, 0x0a, 0xf6, 0xd6, 0x2c, 0x99, 0xd2, 0x1b, 0xb8, 0x5c, 0xa5, 0xfe, 0x8e, 0x23, 0xbf, 0xf1,
- 0xaf, 0x55, 0xd8, 0x55, 0xfd, 0xaa, 0x4b, 0xd9, 0xf4, 0xbf, 0x4c, 0xf9, 0x88, 0x2d, 0x24, 0x3d,
- 0x89, 0x19, 0xcb, 0x41, 0x8f, 0x3b, 0x24, 0x72, 0xb6, 0x17, 0xbe, 0x61, 0x74, 0xcc, 0x08, 0xe7,
- 0x25, 0x5b, 0x27, 0x93, 0x70, 0x89, 0xd6, 0xa9, 0x04, 0xbd, 0x21, 0xfe, 0x1e, 0xec, 0x3c, 0x6b,
- 0x3a, 0x80, 0xc7, 0xd0, 0xf0, 0xc3, 0xfe, 0x5c, 0x8b, 0x75, 0xe1, 0x80, 0x1f, 0x2b, 0xe2, 0x11,
- 0x3c, 0x5a, 0x6f, 0xfe, 0x5d, 0x46, 0x67, 0x3f, 0x3a, 0xaf, 0x4a, 0x66, 0xf8, 0x82, 0x05, 0xda,
- 0xd7, 0xe8, 0x13, 0x3f, 0x86, 0xe3, 0x42, 0x3b, 0x3a, 0x6e, 0x3d, 0xb8, 0xaf, 0x54, 0x2e, 0x17,
- 0xe1, 0x30, 0x28, 0xc5, 0x6b, 0xbe, 0x84, 0x76, 0x1a, 0xaa, 0xb8, 0x95, 0x77, 0x7e, 0x6b, 0x4a,
- 0x86, 0xb9, 0x22, 0x41, 0xea, 0xa7, 0x00, 0x7a, 0x0f, 0xad, 0x75, 0x7e, 0x8e, 0x8e, 0xb3, 0x56,
- 0x53, 0x3f, 0x04, 0xec, 0x93, 0x62, 0x05, 0x7d, 0xc7, 0x0a, 0xba, 0x49, 0x5a, 0xd3, 0xa4, 0x1b,
- 0xe5, 0x1c, 0x4c, 0xf3, 0x7b, 0xfb, 0xf1, 0x27, 0x34, 0xd6, 0xb0, 0xd3, 0x44, 0x3a, 0x85, 0x9d,
- 0xcb, 0xd9, 0x53, 0xd8, 0x05, 0x2c, 0xbc, 0x82, 0x9e, 0x03, 0x18, 0x66, 0x8c, 0x0e, 0xd2, 0x47,
- 0x12, 0xdc, 0xdc, 0xb6, 0xf3, 0xb6, 0x62, 0x98, 0x1f, 0xe0, 0x5e, 0x9a, 0xd8, 0xa2, 0x87, 0xf1,
- 0x4c, 0xcf, 0xa3, 0xd8, 0xf6, 0xa3, 0xa2, 0xed, 0x24, 0x64, 0x9a, 0xc4, 0x1a, 0xc8, 0x5c, 0xa6,
- 0x6c, 0x20, 0xf3, 0xb9, 0x2f, 0xae, 0xa0, 0x9f, 0x00, 0x65, 0xc9, 0x27, 0x8a, 0xe3, 0x54, 0xc8,
- 0x82, 0x6d, 0xfc, 0x29, 0x95, 0x18, 0xfe, 0x05, 0x34, 0x12, 0xbc, 0x0e, 0xc5, 0x11, 0xcb, 0x32,
- 0x5a, 0xfb, 0x30, 0x77, 0x2f, 0x46, 0x7a, 0x0f, 0xad, 0xf5, 0xb2, 0x32, 0x69, 0x5a, 0x40, 0x12,
- 0x4d, 0x9a, 0x16, 0xd2, 0xbe, 0x0a, 0xba, 0x02, 0x30, 0x54, 0xc8, 0x3c, 0x77, 0x86, 0x77, 0x99,
- 0xe7, 0xce, 0x32, 0x27, 0x5c, 0x79, 0x52, 0x8d, 0x3c, 0x5c, 0xa7, 0x36, 0xc6, 0xc3, 0x02, 0x0e,
- 0x65, 0x3c, 0x2c, 0x62, 0x45, 0x2a, 0xd9, 0x33, 0x5c, 0xc1, 0x24, 0x7b, 0x11, 0x37, 0x32, 0xc9,
- 0x5e, 0x48, 0x34, 0x70, 0x05, 0x9d, 0xc3, 0x9d, 0x88, 0x0f, 0xa0, 0xfb, 0xb1, 0xb2, 0x21, 0x18,
- 0x76, 0x3b, 0x2d, 0x8c, 0x0f, 0x3d, 0x85, 0xed, 0xd5, 0x64, 0x45, 0xfb, 0x2b, 0x9d, 0x35, 0xbe,
- 0x60, 0x5b, 0xd9, 0x8d, 0x18, 0xe0, 0x35, 0xdc, 0x4d, 0x8d, 0x41, 0x74, 0x14, 0x5b, 0xca, 0x99,
- 0xc3, 0xf6, 0xc3, 0x82, 0xdd, 0x64, 0xc9, 0x9a, 0xf1, 0x64, 0xde, 0x30, 0x33, 0x3c, 0xcd, 0x1b,
- 0xe6, 0x4c, 0x33, 0x59, 0x0c, 0xd9, 0x09, 0x63, 0x8a, 0xa1, 0x70, 0xd6, 0x99, 0x62, 0x28, 0x1e,
- 0x50, 0xb8, 0x82, 0x82, 0xec, 0xaf, 0x19, 0x3d, 0x19, 0xd0, 0xe7, 0x45, 0x89, 0x9a, 0x1e, 0x51,
- 0xf6, 0x17, 0xff, 0xa8, 0x17, 0x5b, 0xbb, 0x86, 0x66, 0x72, 0x32, 0xa0, 0xc3, 0xf4, 0xd1, 0xd4,
- 0xe8, 0xb1, 0x8f, 0xf2, 0x37, 0x4d, 0x76, 0x0f, 0xea, 0xf2, 0xcf, 0xa1, 0xf3, 0xbf, 0x03, 0x00,
- 0x00, 0xff, 0xff, 0x95, 0x8c, 0x0d, 0x05, 0x4e, 0x12, 0x00, 0x00,
+ // 1381 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xe1, 0x6e, 0xdb, 0xb6,
+ 0x13, 0xb7, 0xe3, 0xc6, 0x49, 0xce, 0x6e, 0xff, 0x0e, 0xe3, 0x34, 0x8a, 0x92, 0x36, 0x29, 0xff,
+ 0xc3, 0x16, 0xac, 0x5b, 0x50, 0x24, 0xc0, 0xb0, 0x2f, 0x43, 0x91, 0x14, 0x75, 0x62, 0xb4, 0x29,
+ 0x3a, 0xb5, 0x43, 0x80, 0x00, 0x83, 0xa1, 0xc8, 0xb4, 0x2d, 0x44, 0x16, 0x5d, 0x92, 0xce, 0xea,
+ 0x3e, 0xc1, 0x9e, 0x6b, 0xaf, 0xb0, 0x47, 0xe8, 0xc7, 0xbd, 0xc4, 0x20, 0x92, 0x16, 0x25, 0x4b,
+ 0xca, 0x06, 0x68, 0xc3, 0xbe, 0x89, 0x47, 0xf2, 0x77, 0xc7, 0x3b, 0x1e, 0xef, 0x77, 0x02, 0x8b,
+ 0x91, 0x09, 0xe5, 0xbe, 0xa0, 0x6c, 0xf6, 0x2d, 0x27, 0xec, 0xd6, 0xf7, 0xc8, 0xe1, 0x84, 0x51,
+ 0x41, 0x51, 0x7d, 0xe8, 0x0b, 0x37, 0x98, 0xd9, 0x4d, 0x3e, 0x72, 0x19, 0xe9, 0x2b, 0x29, 0xbe,
+ 0x80, 0x2d, 0x27, 0xde, 0xf1, 0xf2, 0xa3, 0xcf, 0x05, 0x77, 0xc8, 0x87, 0x29, 0xe1, 0x02, 0x1d,
+ 0x01, 0x18, 0x30, 0xab, 0xba, 0x5f, 0x3d, 0x68, 0x1c, 0xa1, 0x43, 0x85, 0x72, 0x68, 0x36, 0x39,
+ 0x89, 0x55, 0xf8, 0x08, 0xac, 0x2c, 0x1c, 0x9f, 0xd0, 0x90, 0x13, 0xf4, 0x10, 0xea, 0x44, 0x4a,
+ 0x24, 0xd6, 0xaa, 0xa3, 0x47, 0xf8, 0x4d, 0x72, 0x4f, 0x97, 0xbf, 0x1c, 0x4f, 0xc4, 0xac, 0x8c,
+ 0x0d, 0xdf, 0xc1, 0x76, 0x0e, 0x9e, 0x36, 0x62, 0x1b, 0x56, 0x7d, 0xde, 0x23, 0x91, 0x4c, 0x9b,
+ 0xb1, 0xe2, 0xab, 0x25, 0xda, 0x0e, 0xd7, 0xbb, 0xe9, 0x86, 0x1e, 0x23, 0x63, 0x12, 0x0a, 0x37,
+ 0x28, 0x63, 0xc7, 0x8e, 0xb4, 0x63, 0x11, 0x4f, 0xd9, 0x81, 0x03, 0x58, 0x57, 0x93, 0x9d, 0x69,
+ 0x50, 0x46, 0x0b, 0xfa, 0x3f, 0xdc, 0xf7, 0x18, 0x71, 0x05, 0xe9, 0x5d, 0xfb, 0x62, 0xec, 0x4e,
+ 0xac, 0x25, 0x79, 0xaa, 0xa6, 0x12, 0x9e, 0x4a, 0x19, 0x6e, 0x03, 0x4a, 0x6a, 0xd3, 0x36, 0x4c,
+ 0x60, 0xf3, 0xcc, 0x65, 0xd7, 0xee, 0x90, 0xbc, 0xa0, 0x41, 0x40, 0x3c, 0xf1, 0xaf, 0xdb, 0x61,
+ 0xc1, 0xc3, 0x45, 0x8d, 0xda, 0x96, 0x57, 0xb0, 0x69, 0x80, 0xdf, 0xf9, 0x9f, 0x48, 0x19, 0xcf,
+ 0x7f, 0x03, 0x0f, 0x17, 0xc1, 0x74, 0xf8, 0x11, 0xdc, 0xe3, 0xfe, 0x27, 0x22, 0x71, 0x6a, 0x8e,
+ 0xfc, 0xc6, 0x37, 0xb0, 0x7d, 0x32, 0x99, 0x04, 0xb3, 0x33, 0x5f, 0xb8, 0x42, 0x30, 0xff, 0x7a,
+ 0x2a, 0x48, 0x99, 0x24, 0x40, 0x36, 0xac, 0x32, 0x72, 0xeb, 0x73, 0x9f, 0x86, 0xd2, 0x0b, 0x4d,
+ 0x27, 0x1e, 0xe3, 0x5d, 0xb0, 0xf3, 0x94, 0x69, 0x2f, 0x7c, 0xae, 0x02, 0xea, 0x10, 0xe1, 0x8d,
+ 0x1c, 0x32, 0xa6, 0xa2, 0x8c, 0x0f, 0xa2, 0x6c, 0x63, 0x12, 0x44, 0x9a, 0xb0, 0xe6, 0xe8, 0x11,
+ 0x6a, 0xc3, 0xf2, 0x80, 0x32, 0x8f, 0x58, 0x35, 0x19, 0x1f, 0x35, 0x40, 0x5b, 0xb0, 0x12, 0xd2,
+ 0x9e, 0x70, 0x87, 0xdc, 0xba, 0xa7, 0x92, 0x33, 0xa4, 0xef, 0xdd, 0x21, 0x47, 0x16, 0xac, 0x08,
+ 0x7f, 0x4c, 0xe8, 0x54, 0x58, 0xcb, 0xfb, 0xd5, 0x83, 0x65, 0x67, 0x3e, 0x8c, 0xb6, 0x70, 0x3e,
+ 0xea, 0xdd, 0x90, 0x99, 0x55, 0x57, 0x1a, 0x38, 0x1f, 0xbd, 0x22, 0x33, 0xb4, 0x07, 0x8d, 0x9b,
+ 0x90, 0xfe, 0x12, 0xf6, 0x46, 0x34, 0x4a, 0xf6, 0x15, 0x39, 0x09, 0x52, 0x74, 0x1e, 0x49, 0xf0,
+ 0x26, 0x6c, 0xa4, 0x0e, 0xa9, 0x0f, 0x7f, 0x01, 0x5b, 0x2f, 0xe4, 0x65, 0x49, 0x9c, 0xa8, 0xc4,
+ 0x25, 0xb0, 0xc1, 0xca, 0xc2, 0x69, 0x55, 0x7f, 0x54, 0x61, 0xfd, 0x8c, 0x88, 0x13, 0xe6, 0x8d,
+ 0xfc, 0xdb, 0x52, 0x6e, 0xde, 0x81, 0x35, 0x8f, 0x8e, 0xc7, 0xbe, 0xe8, 0xf9, 0x7d, 0xed, 0xe9,
+ 0x55, 0x25, 0xe8, 0xf6, 0xa3, 0x18, 0x4c, 0x18, 0x19, 0xf8, 0x1f, 0xa5, 0xb3, 0xd7, 0x1c, 0x3d,
+ 0x42, 0xdf, 0x43, 0x7d, 0x40, 0xd9, 0xd8, 0x15, 0xd2, 0xd9, 0x0f, 0x8e, 0xf6, 0xe7, 0x4a, 0x32,
+ 0x36, 0x1d, 0x76, 0xe4, 0x3a, 0x47, 0xaf, 0xc7, 0xc7, 0x50, 0x57, 0x12, 0xb4, 0x02, 0xb5, 0xab,
+ 0xee, 0xdb, 0x56, 0x25, 0xfa, 0x78, 0x7f, 0xe2, 0xb4, 0xaa, 0x08, 0xa0, 0xfe, 0xfe, 0xc4, 0xe9,
+ 0x9d, 0x5d, 0xb5, 0x96, 0x50, 0x03, 0x56, 0xa2, 0xef, 0xd3, 0xab, 0xa3, 0x56, 0x0d, 0x1f, 0x00,
+ 0x4a, 0x02, 0x9b, 0x54, 0xe8, 0xbb, 0xc2, 0x95, 0xe7, 0x6c, 0x3a, 0xf2, 0x3b, 0x0a, 0xc1, 0xb9,
+ 0xcb, 0x5f, 0x53, 0xcf, 0x0d, 0x4e, 0x99, 0x1b, 0x7a, 0xa3, 0x52, 0x89, 0x80, 0x9f, 0x81, 0x95,
+ 0x85, 0xd3, 0xea, 0xdb, 0xb0, 0x7c, 0xeb, 0x06, 0x53, 0xa2, 0x5f, 0x61, 0x35, 0xc0, 0xbf, 0x57,
+ 0xc1, 0x92, 0x77, 0xe3, 0x1d, 0x9d, 0x32, 0x8f, 0xa8, 0x5d, 0x65, 0xe2, 0xf3, 0x1c, 0xd6, 0xb9,
+ 0x84, 0xea, 0x25, 0xb6, 0x2e, 0x15, 0x6e, 0x6d, 0xa9, 0xc5, 0x4e, 0xea, 0x5d, 0xd3, 0x00, 0xd7,
+ 0xd2, 0x18, 0x19, 0xca, 0xa6, 0xd3, 0xe4, 0x09, 0x03, 0xd1, 0x23, 0x00, 0xe1, 0xb2, 0x21, 0x11,
+ 0x3d, 0x46, 0x06, 0x32, 0xa8, 0x4d, 0x67, 0x4d, 0x49, 0x1c, 0x32, 0xc0, 0xc7, 0xb0, 0x9d, 0x73,
+ 0x28, 0x53, 0x16, 0x19, 0xe1, 0xd3, 0x40, 0xcc, 0xcb, 0xa2, 0x1a, 0xe1, 0x13, 0x68, 0x74, 0xb8,
+ 0x77, 0x53, 0xc6, 0xff, 0x5f, 0x40, 0x53, 0x41, 0x18, 0x9f, 0x13, 0xc6, 0x28, 0xd3, 0x31, 0x57,
+ 0x03, 0xfc, 0x5b, 0x15, 0xfe, 0x77, 0xc9, 0xfc, 0x28, 0x51, 0x06, 0x65, 0x5c, 0xdd, 0x82, 0x5a,
+ 0x74, 0x7a, 0xf5, 0xe2, 0x45, 0x9f, 0xa9, 0x87, 0xb0, 0x96, 0x7e, 0x08, 0xd1, 0x13, 0x68, 0xd2,
+ 0xa0, 0xdf, 0x8b, 0xe7, 0x95, 0xd3, 0x1a, 0x34, 0xe8, 0x3b, 0xf3, 0x25, 0xf1, 0x53, 0xb5, 0x9c,
+ 0x7c, 0xaa, 0xda, 0xb0, 0xcc, 0x47, 0x24, 0x08, 0xe4, 0xab, 0xb3, 0xea, 0xa8, 0x01, 0x3e, 0x80,
+ 0x96, 0x39, 0xc3, 0x9d, 0xc7, 0x1d, 0x41, 0xbb, 0xe3, 0x87, 0xfd, 0x0b, 0xc2, 0x86, 0xe4, 0xd4,
+ 0xe5, 0xa5, 0xb2, 0x7f, 0x17, 0xd6, 0xe6, 0x07, 0xe0, 0xd6, 0xd2, 0x7e, 0x2d, 0x0a, 0x7b, 0x2c,
+ 0xc0, 0x4f, 0x61, 0x73, 0x41, 0x93, 0x49, 0xbd, 0x6b, 0x97, 0xab, 0xab, 0xbf, 0xe6, 0xc8, 0x6f,
+ 0xfc, 0x6b, 0x15, 0xd6, 0xd5, 0x7b, 0xd5, 0xa1, 0xec, 0xe6, 0xbf, 0xbc, 0xf2, 0x11, 0x5b, 0x48,
+ 0x5a, 0x12, 0x33, 0x96, 0xed, 0x2e, 0x77, 0x48, 0x64, 0x6c, 0x37, 0x7c, 0xcb, 0xe8, 0x90, 0x11,
+ 0xce, 0x4b, 0x3e, 0x9d, 0x4c, 0xc2, 0x25, 0x9e, 0x4e, 0x25, 0xe8, 0xf6, 0xf1, 0x0f, 0x60, 0xe7,
+ 0x69, 0xd3, 0x0e, 0xdc, 0x83, 0x86, 0x1f, 0xf6, 0x26, 0x5a, 0xac, 0x13, 0x07, 0xfc, 0x78, 0xa1,
+ 0x32, 0xf6, 0xdd, 0x87, 0xa9, 0xcb, 0x47, 0xff, 0x98, 0xb1, 0x5c, 0xc2, 0x25, 0x8c, 0x55, 0x82,
+ 0xb9, 0xb1, 0x59, 0x6d, 0x7f, 0xd7, 0xd8, 0x01, 0x3c, 0x5e, 0xac, 0x54, 0x1d, 0x46, 0xc7, 0x3f,
+ 0x39, 0xaf, 0x4b, 0xa6, 0xe3, 0x94, 0x05, 0xda, 0xd6, 0xe8, 0x13, 0x3f, 0x81, 0xbd, 0x42, 0x3d,
+ 0x3a, 0xc8, 0x5d, 0xd8, 0x50, 0x4b, 0x4e, 0xa7, 0x61, 0x3f, 0x28, 0x45, 0xc2, 0xbe, 0x86, 0x76,
+ 0x1a, 0xea, 0x8e, 0xba, 0x43, 0x00, 0xc9, 0xec, 0x7d, 0x41, 0xc3, 0x81, 0x3f, 0x2c, 0x19, 0xa7,
+ 0xc1, 0x34, 0x08, 0x7a, 0x13, 0x57, 0x8c, 0xe6, 0x71, 0x8a, 0x04, 0x6f, 0x5d, 0x31, 0xc2, 0x4f,
+ 0x61, 0x23, 0xa5, 0xe6, 0xae, 0x77, 0xe2, 0xe8, 0xf3, 0x7d, 0x49, 0xd1, 0xe7, 0x2c, 0x52, 0xf5,
+ 0x52, 0xe8, 0x12, 0x5a, 0x8b, 0x0d, 0x0e, 0xda, 0xcb, 0xda, 0x94, 0xea, 0xa4, 0xec, 0xfd, 0xe2,
+ 0x05, 0xda, 0xef, 0x15, 0x74, 0x95, 0xd4, 0xa6, 0xbb, 0x16, 0x94, 0xb3, 0x31, 0xdd, 0x20, 0xd9,
+ 0x4f, 0xee, 0x58, 0xb1, 0x80, 0x9d, 0xee, 0x44, 0x52, 0xd8, 0xb9, 0x4d, 0x4f, 0x0a, 0xbb, 0xa0,
+ 0x8d, 0xa9, 0xa0, 0x97, 0x00, 0xa6, 0xb5, 0x40, 0xdb, 0xe9, 0x2d, 0x89, 0xe6, 0xc6, 0xb6, 0xf3,
+ 0xa6, 0x62, 0x98, 0x1f, 0xe1, 0x41, 0xba, 0x33, 0x40, 0x8f, 0x62, 0x52, 0x94, 0xd7, 0xa3, 0xd8,
+ 0x8f, 0x8b, 0xa6, 0x93, 0x90, 0xe9, 0x2e, 0xc0, 0x40, 0xe6, 0xb6, 0x1a, 0x06, 0x32, 0xbf, 0x79,
+ 0xc0, 0x15, 0xf4, 0x33, 0xa0, 0x2c, 0x7b, 0x47, 0xb1, 0x9f, 0x0a, 0xdb, 0x08, 0x1b, 0xdf, 0xb5,
+ 0x24, 0x86, 0x3f, 0x87, 0x46, 0x82, 0x18, 0xa3, 0xd8, 0x63, 0xd9, 0x96, 0xc0, 0xde, 0xc9, 0x9d,
+ 0x8b, 0x91, 0x2e, 0xa1, 0xb5, 0x98, 0xea, 0xe6, 0x9a, 0x16, 0xb0, 0x6c, 0x73, 0x4d, 0x0b, 0x79,
+ 0x73, 0x05, 0x9d, 0x01, 0x18, 0x2e, 0x69, 0xc2, 0x9d, 0x21, 0xae, 0x26, 0xdc, 0x59, 0xea, 0x89,
+ 0x2b, 0xcf, 0xaa, 0x91, 0x85, 0x8b, 0xdc, 0xd0, 0x58, 0x58, 0x40, 0x42, 0x8d, 0x85, 0x45, 0xb4,
+ 0x52, 0x5d, 0xf6, 0x0c, 0xd9, 0x32, 0x97, 0xbd, 0x88, 0x5c, 0x9a, 0xcb, 0x5e, 0xc8, 0xd4, 0x70,
+ 0x05, 0x1d, 0xc3, 0xbd, 0x88, 0x50, 0xa1, 0x8d, 0x78, 0xb1, 0x61, 0x68, 0x76, 0x3b, 0x2d, 0x8c,
+ 0x37, 0x3d, 0x87, 0xd5, 0x39, 0x35, 0x41, 0x5b, 0xf3, 0x35, 0x0b, 0x84, 0xcb, 0xb6, 0xb2, 0x13,
+ 0x31, 0xc0, 0x1b, 0xb8, 0x9f, 0xe2, 0x11, 0x68, 0x37, 0xd6, 0x94, 0x43, 0x64, 0xec, 0x47, 0x05,
+ 0xb3, 0xc9, 0x94, 0x35, 0xf5, 0xdd, 0xc4, 0x30, 0xc3, 0x3e, 0x4c, 0x0c, 0x73, 0xe8, 0x80, 0x4c,
+ 0x86, 0x6c, 0x89, 0x36, 0xc9, 0x50, 0x48, 0x16, 0x4c, 0x32, 0x14, 0x57, 0xf8, 0x39, 0xfc, 0x62,
+ 0x51, 0x4d, 0xc2, 0x17, 0x94, 0xf7, 0x24, 0x7c, 0x51, 0x4d, 0xc6, 0x15, 0x14, 0x64, 0xbb, 0x4d,
+ 0x5d, 0x0c, 0xd1, 0x97, 0x45, 0x79, 0x90, 0xae, 0xca, 0xf6, 0x57, 0x7f, 0xb9, 0x2e, 0xd6, 0x76,
+ 0x01, 0xcd, 0x64, 0x31, 0x44, 0x3b, 0xe9, 0xad, 0xa9, 0x6a, 0x6b, 0xef, 0xe6, 0x4f, 0x26, 0x92,
+ 0xe7, 0x1c, 0x1a, 0x89, 0x42, 0x66, 0x1e, 0x8a, 0x6c, 0x11, 0x35, 0x0f, 0x45, 0x4e, 0xe5, 0xc3,
+ 0x95, 0xeb, 0xba, 0xfc, 0x0d, 0x78, 0xfc, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe2, 0x3e, 0x23,
+ 0x40, 0x38, 0x14, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index a573cdf78..281a14b74 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -201,12 +201,12 @@
"revisionTime": "2017-12-31T12:27:32Z"
},
{
- "checksumSHA1": "dL3K85T4kdU2Je6rWweC3gj9lcg=",
+ "checksumSHA1": "HRwH8wsOtJ/CyxCg0RR9GTSeInU=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go",
- "revision": "30e826049b0364c146c3a9c64e44d8840203e431",
- "revisionTime": "2018-01-18T19:34:58Z",
- "version": "v0.76.0",
- "versionExact": "v0.76.0"
+ "revision": "06b06fd73af2594ac470e61063962412220eadc5",
+ "revisionTime": "2018-01-19T20:56:55Z",
+ "version": "v0.77.0",
+ "versionExact": "v0.77.0"
},
{
"checksumSHA1": "nqWNlnMmVpt628zzvyo6Yv2CX5Q=",