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:
authorJacob Vosmaer <jacob@gitlab.com>2019-04-12 16:52:29 +0300
committerJacob Vosmaer <jacob@gitlab.com>2019-04-12 16:52:29 +0300
commitfb06aa871d117443f3012f3e7548e374972e68fd (patch)
tree8807849d70b79ef7cd54a5fc2c81f69e8c8a2616
parent8d891401c2f845df7273f760d8b268498772960f (diff)
parent0972c23b0f4af3cf9ea8c26f486f8a1cf882676d (diff)
Merge branch 'id-add-option-avoid-loading-wiki-page-content' into 'master'
Introduce WikiListPages RPC call See merge request gitlab-org/gitaly!1194
-rw-r--r--changelogs/unreleased/id-add-option-avoid-loading-wiki-page-content.yml5
-rw-r--r--internal/service/wiki/list_pages.go35
-rw-r--r--internal/service/wiki/list_pages_test.go197
-rw-r--r--ruby/Gemfile2
-rw-r--r--ruby/Gemfile.lock8
-rw-r--r--ruby/lib/gitaly_server/wiki_service.rb28
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/commit.pb.go360
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go521
-rw-r--r--vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/wiki.pb.go384
-rw-r--r--vendor/vendor.json10
10 files changed, 1016 insertions, 534 deletions
diff --git a/changelogs/unreleased/id-add-option-avoid-loading-wiki-page-content.yml b/changelogs/unreleased/id-add-option-avoid-loading-wiki-page-content.yml
new file mode 100644
index 000000000..b1797a3aa
--- /dev/null
+++ b/changelogs/unreleased/id-add-option-avoid-loading-wiki-page-content.yml
@@ -0,0 +1,5 @@
+---
+title: Add WikiListPages RPC call
+merge_request: 1194
+author:
+type: added
diff --git a/internal/service/wiki/list_pages.go b/internal/service/wiki/list_pages.go
new file mode 100644
index 000000000..d740b26a4
--- /dev/null
+++ b/internal/service/wiki/list_pages.go
@@ -0,0 +1,35 @@
+package wiki
+
+import (
+ "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/rubyserver"
+)
+
+func (s *server) WikiListPages(request *gitalypb.WikiListPagesRequest, stream gitalypb.WikiService_WikiListPagesServer) error {
+ ctx := stream.Context()
+
+ client, err := s.WikiServiceClient(ctx)
+ if err != nil {
+ return err
+ }
+
+ clientCtx, err := rubyserver.SetHeaders(ctx, request.GetRepository())
+ if err != nil {
+ return err
+ }
+
+ rubyStream, err := client.WikiListPages(clientCtx, request)
+ if err != nil {
+ return err
+ }
+
+ return rubyserver.Proxy(func() error {
+ resp, err := rubyStream.Recv()
+ if err != nil {
+ md := rubyStream.Trailer()
+ stream.SetTrailer(md)
+ return err
+ }
+ return stream.Send(resp)
+ })
+}
diff --git a/internal/service/wiki/list_pages_test.go b/internal/service/wiki/list_pages_test.go
new file mode 100644
index 000000000..07b46a02b
--- /dev/null
+++ b/internal/service/wiki/list_pages_test.go
@@ -0,0 +1,197 @@
+package wiki
+
+import (
+ "io"
+ "testing"
+
+ "github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+)
+
+func TestSuccessfulWikiListPagesRequest(t *testing.T) {
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ server, serverSocketPath := runWikiServiceServer(t)
+ defer server.Stop()
+
+ client, conn := newWikiClient(t, serverSocketPath)
+ defer conn.Close()
+
+ wikiRepo, _, cleanupFunc := setupWikiRepo(t)
+ defer cleanupFunc()
+
+ expectedPages := createTestWikiPages(t, client, wikiRepo)
+
+ testcases := []struct {
+ desc string
+ limit uint32
+ expectedCount int
+ }{
+ {
+ desc: "No limit",
+ limit: 0,
+ expectedCount: 3,
+ },
+ {
+ desc: "Limit of 1",
+ limit: 1,
+ expectedCount: 1,
+ },
+ {
+ desc: "Limit of 3",
+ limit: 3,
+ expectedCount: 3,
+ },
+ }
+
+ for _, tc := range testcases {
+ t.Run(tc.desc, func(t *testing.T) {
+ rpcRequest := gitalypb.WikiListPagesRequest{Repository: wikiRepo, Limit: tc.limit}
+
+ c, err := client.WikiListPages(ctx, &rpcRequest)
+ require.NoError(t, err)
+
+ receivedPages := readWikiPagesFromWikiListPagesClient(t, c)
+
+ require.Len(t, receivedPages, tc.expectedCount)
+
+ for i := 0; i < tc.expectedCount; i++ {
+ receivedPage := receivedPages[i]
+ require.Equal(t, expectedPages[i].GetTitle(), receivedPage.GetTitle())
+ require.Len(t, receivedPage.GetRawData(), 0, "page data should not be returned")
+ }
+ })
+ }
+}
+
+func TestWikiListPagesSorting(t *testing.T) {
+ ctx, cancel := testhelper.Context()
+ defer cancel()
+
+ server, serverSocketPath := runWikiServiceServer(t)
+ defer server.Stop()
+
+ client, conn := newWikiClient(t, serverSocketPath)
+ defer conn.Close()
+
+ wikiRepo, _, cleanupFunc := setupWikiRepo(t)
+ defer cleanupFunc()
+
+ expectedPages := createTestWikiPages(t, client, wikiRepo)
+
+ testcasesWithSorting := []struct {
+ desc string
+ limit uint32
+ sort gitalypb.WikiListPagesRequest_SortBy
+ directionDesc bool
+ expectedCount int
+ }{
+ {
+ desc: "Sorting by title with no limit",
+ limit: 0,
+ directionDesc: false,
+ sort: gitalypb.WikiListPagesRequest_TITLE,
+ expectedCount: 3,
+ },
+ {
+ desc: "Sorting by title with limit of 1",
+ limit: 1,
+ directionDesc: false,
+ sort: gitalypb.WikiListPagesRequest_TITLE,
+ expectedCount: 1,
+ },
+ {
+ desc: "Sorting by title with limit of 3",
+ limit: 3,
+ directionDesc: false,
+ sort: gitalypb.WikiListPagesRequest_TITLE,
+ expectedCount: 3,
+ },
+ {
+ desc: "Sorting by title with limit of 3 and reversed direction",
+ limit: 3,
+ directionDesc: true,
+ sort: gitalypb.WikiListPagesRequest_TITLE,
+ expectedCount: 3,
+ },
+ {
+ desc: "Sorting by created_at with no limit",
+ limit: 0,
+ directionDesc: false,
+ sort: gitalypb.WikiListPagesRequest_CREATED_AT,
+ expectedCount: 3,
+ },
+ {
+ desc: "Sorting by created_at with limit of 1",
+ limit: 1,
+ directionDesc: false,
+ sort: gitalypb.WikiListPagesRequest_CREATED_AT,
+ expectedCount: 1,
+ },
+ {
+ desc: "Sorting by created_at with limit of 3",
+ limit: 3,
+ directionDesc: false,
+ sort: gitalypb.WikiListPagesRequest_CREATED_AT,
+ expectedCount: 3,
+ },
+ {
+ desc: "Sorting by created_at with limit of 3 and reversed direction",
+ limit: 3,
+ directionDesc: true,
+ sort: gitalypb.WikiListPagesRequest_CREATED_AT,
+ expectedCount: 3,
+ },
+ }
+
+ expectedSortedByCreatedAtPages := []*gitalypb.WikiPage{expectedPages[1], expectedPages[0], expectedPages[2]}
+
+ for _, tc := range testcasesWithSorting {
+ t.Run(tc.desc, func(t *testing.T) {
+ rpcRequest := gitalypb.WikiListPagesRequest{Repository: wikiRepo, Limit: tc.limit, DirectionDesc: tc.directionDesc, Sort: tc.sort}
+
+ c, err := client.WikiListPages(ctx, &rpcRequest)
+ require.NoError(t, err)
+
+ receivedPages := readWikiPagesFromWikiListPagesClient(t, c)
+
+ require.Len(t, receivedPages, tc.expectedCount)
+
+ if tc.sort == gitalypb.WikiListPagesRequest_CREATED_AT {
+ expectedPages = expectedSortedByCreatedAtPages
+ }
+
+ for i := 0; i < tc.expectedCount; i++ {
+ var index int
+ if tc.directionDesc {
+ index = tc.expectedCount - i - 1
+ } else {
+ index = i
+ }
+
+ receivedPage := receivedPages[i]
+ require.Equal(t, expectedPages[index].GetTitle(), receivedPage.GetTitle())
+ require.Len(t, receivedPage.GetRawData(), 0, "page data should not be returned")
+ }
+ })
+ }
+}
+
+func readWikiPagesFromWikiListPagesClient(t *testing.T, c gitalypb.WikiService_WikiListPagesClient) []*gitalypb.WikiPage {
+ var wikiPages []*gitalypb.WikiPage
+
+ for {
+ resp, err := c.Recv()
+ if err == io.EOF {
+ break
+ } else {
+ require.NoError(t, err)
+ }
+
+ wikiPages = append(wikiPages, resp.GetPage())
+ }
+
+ return wikiPages
+}
diff --git a/ruby/Gemfile b/ruby/Gemfile
index 700d759b1..c111744a1 100644
--- a/ruby/Gemfile
+++ b/ruby/Gemfile
@@ -6,7 +6,7 @@ gem 'bundler', '>= 1.16.5'
gem 'rugged', '~> 0.28'
gem 'github-linguist', '~> 6.1', require: 'linguist'
gem 'gitlab-markup', '~> 1.7.0'
-gem 'gitaly-proto', '~> 1.19.0'
+gem 'gitaly-proto', '~> 1.22.0'
gem 'activesupport', '~> 5.0.2'
gem 'rdoc', '~> 4.2'
gem 'gitlab-gollum-lib', '~> 4.2.7.7', require: false
diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock
index 67c88a7ff..d3a8caad8 100644
--- a/ruby/Gemfile.lock
+++ b/ruby/Gemfile.lock
@@ -36,7 +36,7 @@ GEM
ffi (1.10.0)
gemojione (3.3.0)
json
- gitaly-proto (1.19.0)
+ gitaly-proto (1.22.0)
grpc (~> 1.0)
github-linguist (6.4.1)
charlock_holmes (~> 0.7.6)
@@ -63,8 +63,8 @@ GEM
gitlab-markup (1.7.0)
gollum-grit_adapter (1.0.1)
gitlab-grit (~> 2.7, >= 2.7.1)
- google-protobuf (3.6.1)
- googleapis-common-protos-types (1.0.3)
+ google-protobuf (3.7.1)
+ googleapis-common-protos-types (1.0.4)
google-protobuf (~> 3.0)
grpc (1.15.0)
google-protobuf (~> 3.1)
@@ -182,7 +182,7 @@ DEPENDENCIES
bundler (>= 1.16.5)
factory_bot
faraday (~> 0.12)
- gitaly-proto (~> 1.19.0)
+ gitaly-proto (~> 1.22.0)
github-linguist (~> 6.1)
gitlab-gollum-lib (~> 4.2.7.7)
gitlab-gollum-rugged_adapter (~> 0.4.4.2)
diff --git a/ruby/lib/gitaly_server/wiki_service.rb b/ruby/lib/gitaly_server/wiki_service.rb
index 00ae83e98..76ab62b25 100644
--- a/ruby/lib/gitaly_server/wiki_service.rb
+++ b/ruby/lib/gitaly_server/wiki_service.rb
@@ -67,14 +67,10 @@ module GitalyServer
end
def wiki_get_all_pages(request, call)
- repo = Gitlab::Git::Repository.from_gitaly(request.repository, call)
- wiki = Gitlab::Git::Wiki.new(repo)
- pages_limit = request.limit.zero? ? nil : request.limit
+ pages = get_wiki_pages(request, call)
Enumerator.new do |y|
- wiki.pages(
- limit: pages_limit, sort: request.sort.to_s.downcase, direction_desc: request.direction_desc
- ).each do |page|
+ pages.each do |page|
y.yield Gitaly::WikiGetAllPagesResponse.new(page: build_gitaly_wiki_page(page))
io = StringIO.new(page.text_data)
@@ -89,6 +85,18 @@ module GitalyServer
end
end
+ def wiki_list_pages(request, call)
+ pages = get_wiki_pages(request, call)
+
+ Enumerator.new do |y|
+ pages.each do |page|
+ wiki_page = build_gitaly_wiki_page(page)
+
+ y.yield Gitaly::WikiListPagesResponse.new(page: wiki_page)
+ end
+ end
+ end
+
def wiki_find_file(request, call)
repo = Gitlab::Git::Repository.from_gitaly(request.repository, call)
wiki = Gitlab::Git::Wiki.new(repo)
@@ -193,6 +201,14 @@ module GitalyServer
private
+ def get_wiki_pages(request, call)
+ repo = Gitlab::Git::Repository.from_gitaly(request.repository, call)
+ wiki = Gitlab::Git::Wiki.new(repo)
+ pages_limit = request.limit.zero? ? nil : request.limit
+
+ wiki.pages(limit: pages_limit, sort: request.sort.to_s.downcase, direction_desc: request.direction_desc)
+ end
+
def build_gitaly_wiki_page(page = nil)
return Gitaly::WikiPage.new unless page
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/commit.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/commit.pb.go
index 2cebc8e33..35384d9ae 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/commit.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/commit.pb.go
@@ -50,7 +50,7 @@ func (x TreeEntryResponse_ObjectType) String() string {
return proto.EnumName(TreeEntryResponse_ObjectType_name, int32(x))
}
func (TreeEntryResponse_ObjectType) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{5, 0}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{5, 0}
}
type TreeEntry_EntryType int32
@@ -76,7 +76,7 @@ func (x TreeEntry_EntryType) String() string {
return proto.EnumName(TreeEntry_EntryType_name, int32(x))
}
func (TreeEntry_EntryType) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{12, 0}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{12, 0}
}
type FindAllCommitsRequest_Order int32
@@ -102,7 +102,7 @@ func (x FindAllCommitsRequest_Order) String() string {
return proto.EnumName(FindAllCommitsRequest_Order_name, int32(x))
}
func (FindAllCommitsRequest_Order) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{21, 0}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{21, 0}
}
type CommitStatsRequest struct {
@@ -117,7 +117,7 @@ func (m *CommitStatsRequest) Reset() { *m = CommitStatsRequest{} }
func (m *CommitStatsRequest) String() string { return proto.CompactTextString(m) }
func (*CommitStatsRequest) ProtoMessage() {}
func (*CommitStatsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{0}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{0}
}
func (m *CommitStatsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitStatsRequest.Unmarshal(m, b)
@@ -165,7 +165,7 @@ func (m *CommitStatsResponse) Reset() { *m = CommitStatsResponse{} }
func (m *CommitStatsResponse) String() string { return proto.CompactTextString(m) }
func (*CommitStatsResponse) ProtoMessage() {}
func (*CommitStatsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{1}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{1}
}
func (m *CommitStatsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitStatsResponse.Unmarshal(m, b)
@@ -219,7 +219,7 @@ func (m *CommitIsAncestorRequest) Reset() { *m = CommitIsAncestorRequest
func (m *CommitIsAncestorRequest) String() string { return proto.CompactTextString(m) }
func (*CommitIsAncestorRequest) ProtoMessage() {}
func (*CommitIsAncestorRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{2}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{2}
}
func (m *CommitIsAncestorRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitIsAncestorRequest.Unmarshal(m, b)
@@ -271,7 +271,7 @@ func (m *CommitIsAncestorResponse) Reset() { *m = CommitIsAncestorRespon
func (m *CommitIsAncestorResponse) String() string { return proto.CompactTextString(m) }
func (*CommitIsAncestorResponse) ProtoMessage() {}
func (*CommitIsAncestorResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{3}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{3}
}
func (m *CommitIsAncestorResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitIsAncestorResponse.Unmarshal(m, b)
@@ -314,7 +314,7 @@ func (m *TreeEntryRequest) Reset() { *m = TreeEntryRequest{} }
func (m *TreeEntryRequest) String() string { return proto.CompactTextString(m) }
func (*TreeEntryRequest) ProtoMessage() {}
func (*TreeEntryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{4}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{4}
}
func (m *TreeEntryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TreeEntryRequest.Unmarshal(m, b)
@@ -380,7 +380,7 @@ func (m *TreeEntryResponse) Reset() { *m = TreeEntryResponse{} }
func (m *TreeEntryResponse) String() string { return proto.CompactTextString(m) }
func (*TreeEntryResponse) ProtoMessage() {}
func (*TreeEntryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{5}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{5}
}
func (m *TreeEntryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TreeEntryResponse.Unmarshal(m, b)
@@ -448,7 +448,7 @@ func (m *CommitsBetweenRequest) Reset() { *m = CommitsBetweenRequest{} }
func (m *CommitsBetweenRequest) String() string { return proto.CompactTextString(m) }
func (*CommitsBetweenRequest) ProtoMessage() {}
func (*CommitsBetweenRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{6}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{6}
}
func (m *CommitsBetweenRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitsBetweenRequest.Unmarshal(m, b)
@@ -500,7 +500,7 @@ func (m *CommitsBetweenResponse) Reset() { *m = CommitsBetweenResponse{}
func (m *CommitsBetweenResponse) String() string { return proto.CompactTextString(m) }
func (*CommitsBetweenResponse) ProtoMessage() {}
func (*CommitsBetweenResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{7}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{7}
}
func (m *CommitsBetweenResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitsBetweenResponse.Unmarshal(m, b)
@@ -545,7 +545,7 @@ func (m *CountCommitsRequest) Reset() { *m = CountCommitsRequest{} }
func (m *CountCommitsRequest) String() string { return proto.CompactTextString(m) }
func (*CountCommitsRequest) ProtoMessage() {}
func (*CountCommitsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{8}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{8}
}
func (m *CountCommitsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CountCommitsRequest.Unmarshal(m, b)
@@ -625,7 +625,7 @@ func (m *CountCommitsResponse) Reset() { *m = CountCommitsResponse{} }
func (m *CountCommitsResponse) String() string { return proto.CompactTextString(m) }
func (*CountCommitsResponse) ProtoMessage() {}
func (*CountCommitsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{9}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{9}
}
func (m *CountCommitsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CountCommitsResponse.Unmarshal(m, b)
@@ -666,7 +666,7 @@ func (m *CountDivergingCommitsRequest) Reset() { *m = CountDivergingComm
func (m *CountDivergingCommitsRequest) String() string { return proto.CompactTextString(m) }
func (*CountDivergingCommitsRequest) ProtoMessage() {}
func (*CountDivergingCommitsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{10}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{10}
}
func (m *CountDivergingCommitsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CountDivergingCommitsRequest.Unmarshal(m, b)
@@ -726,7 +726,7 @@ func (m *CountDivergingCommitsResponse) Reset() { *m = CountDivergingCom
func (m *CountDivergingCommitsResponse) String() string { return proto.CompactTextString(m) }
func (*CountDivergingCommitsResponse) ProtoMessage() {}
func (*CountDivergingCommitsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{11}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{11}
}
func (m *CountDivergingCommitsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CountDivergingCommitsResponse.Unmarshal(m, b)
@@ -783,7 +783,7 @@ func (m *TreeEntry) Reset() { *m = TreeEntry{} }
func (m *TreeEntry) String() string { return proto.CompactTextString(m) }
func (*TreeEntry) ProtoMessage() {}
func (*TreeEntry) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{12}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{12}
}
func (m *TreeEntry) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TreeEntry.Unmarshal(m, b)
@@ -866,7 +866,7 @@ func (m *GetTreeEntriesRequest) Reset() { *m = GetTreeEntriesRequest{} }
func (m *GetTreeEntriesRequest) String() string { return proto.CompactTextString(m) }
func (*GetTreeEntriesRequest) ProtoMessage() {}
func (*GetTreeEntriesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{13}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{13}
}
func (m *GetTreeEntriesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetTreeEntriesRequest.Unmarshal(m, b)
@@ -925,7 +925,7 @@ func (m *GetTreeEntriesResponse) Reset() { *m = GetTreeEntriesResponse{}
func (m *GetTreeEntriesResponse) String() string { return proto.CompactTextString(m) }
func (*GetTreeEntriesResponse) ProtoMessage() {}
func (*GetTreeEntriesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{14}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{14}
}
func (m *GetTreeEntriesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetTreeEntriesResponse.Unmarshal(m, b)
@@ -964,7 +964,7 @@ func (m *ListFilesRequest) Reset() { *m = ListFilesRequest{} }
func (m *ListFilesRequest) String() string { return proto.CompactTextString(m) }
func (*ListFilesRequest) ProtoMessage() {}
func (*ListFilesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{15}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{15}
}
func (m *ListFilesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListFilesRequest.Unmarshal(m, b)
@@ -1011,7 +1011,7 @@ func (m *ListFilesResponse) Reset() { *m = ListFilesResponse{} }
func (m *ListFilesResponse) String() string { return proto.CompactTextString(m) }
func (*ListFilesResponse) ProtoMessage() {}
func (*ListFilesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{16}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{16}
}
func (m *ListFilesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListFilesResponse.Unmarshal(m, b)
@@ -1050,7 +1050,7 @@ func (m *FindCommitRequest) Reset() { *m = FindCommitRequest{} }
func (m *FindCommitRequest) String() string { return proto.CompactTextString(m) }
func (*FindCommitRequest) ProtoMessage() {}
func (*FindCommitRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{17}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{17}
}
func (m *FindCommitRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindCommitRequest.Unmarshal(m, b)
@@ -1096,7 +1096,7 @@ func (m *FindCommitResponse) Reset() { *m = FindCommitResponse{} }
func (m *FindCommitResponse) String() string { return proto.CompactTextString(m) }
func (*FindCommitResponse) ProtoMessage() {}
func (*FindCommitResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{18}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{18}
}
func (m *FindCommitResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindCommitResponse.Unmarshal(m, b)
@@ -1135,7 +1135,7 @@ func (m *ListCommitsByOidRequest) Reset() { *m = ListCommitsByOidRequest
func (m *ListCommitsByOidRequest) String() string { return proto.CompactTextString(m) }
func (*ListCommitsByOidRequest) ProtoMessage() {}
func (*ListCommitsByOidRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{19}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{19}
}
func (m *ListCommitsByOidRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListCommitsByOidRequest.Unmarshal(m, b)
@@ -1180,7 +1180,7 @@ func (m *ListCommitsByOidResponse) Reset() { *m = ListCommitsByOidRespon
func (m *ListCommitsByOidResponse) String() string { return proto.CompactTextString(m) }
func (*ListCommitsByOidResponse) ProtoMessage() {}
func (*ListCommitsByOidResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{20}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{20}
}
func (m *ListCommitsByOidResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListCommitsByOidResponse.Unmarshal(m, b)
@@ -1223,7 +1223,7 @@ func (m *FindAllCommitsRequest) Reset() { *m = FindAllCommitsRequest{} }
func (m *FindAllCommitsRequest) String() string { return proto.CompactTextString(m) }
func (*FindAllCommitsRequest) ProtoMessage() {}
func (*FindAllCommitsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{21}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{21}
}
func (m *FindAllCommitsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindAllCommitsRequest.Unmarshal(m, b)
@@ -1290,7 +1290,7 @@ func (m *FindAllCommitsResponse) Reset() { *m = FindAllCommitsResponse{}
func (m *FindAllCommitsResponse) String() string { return proto.CompactTextString(m) }
func (*FindAllCommitsResponse) ProtoMessage() {}
func (*FindAllCommitsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{22}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{22}
}
func (m *FindAllCommitsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindAllCommitsResponse.Unmarshal(m, b)
@@ -1339,7 +1339,7 @@ func (m *FindCommitsRequest) Reset() { *m = FindCommitsRequest{} }
func (m *FindCommitsRequest) String() string { return proto.CompactTextString(m) }
func (*FindCommitsRequest) ProtoMessage() {}
func (*FindCommitsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{23}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{23}
}
func (m *FindCommitsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindCommitsRequest.Unmarshal(m, b)
@@ -1448,7 +1448,7 @@ func (m *FindCommitsResponse) Reset() { *m = FindCommitsResponse{} }
func (m *FindCommitsResponse) String() string { return proto.CompactTextString(m) }
func (*FindCommitsResponse) ProtoMessage() {}
func (*FindCommitsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{24}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{24}
}
func (m *FindCommitsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindCommitsResponse.Unmarshal(m, b)
@@ -1487,7 +1487,7 @@ func (m *CommitLanguagesRequest) Reset() { *m = CommitLanguagesRequest{}
func (m *CommitLanguagesRequest) String() string { return proto.CompactTextString(m) }
func (*CommitLanguagesRequest) ProtoMessage() {}
func (*CommitLanguagesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{25}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{25}
}
func (m *CommitLanguagesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitLanguagesRequest.Unmarshal(m, b)
@@ -1532,7 +1532,7 @@ func (m *CommitLanguagesResponse) Reset() { *m = CommitLanguagesResponse
func (m *CommitLanguagesResponse) String() string { return proto.CompactTextString(m) }
func (*CommitLanguagesResponse) ProtoMessage() {}
func (*CommitLanguagesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{26}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{26}
}
func (m *CommitLanguagesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitLanguagesResponse.Unmarshal(m, b)
@@ -1572,7 +1572,7 @@ func (m *CommitLanguagesResponse_Language) Reset() { *m = CommitLanguage
func (m *CommitLanguagesResponse_Language) String() string { return proto.CompactTextString(m) }
func (*CommitLanguagesResponse_Language) ProtoMessage() {}
func (*CommitLanguagesResponse_Language) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{26, 0}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{26, 0}
}
func (m *CommitLanguagesResponse_Language) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitLanguagesResponse_Language.Unmarshal(m, b)
@@ -1626,7 +1626,7 @@ func (m *RawBlameRequest) Reset() { *m = RawBlameRequest{} }
func (m *RawBlameRequest) String() string { return proto.CompactTextString(m) }
func (*RawBlameRequest) ProtoMessage() {}
func (*RawBlameRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{27}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{27}
}
func (m *RawBlameRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RawBlameRequest.Unmarshal(m, b)
@@ -1678,7 +1678,7 @@ func (m *RawBlameResponse) Reset() { *m = RawBlameResponse{} }
func (m *RawBlameResponse) String() string { return proto.CompactTextString(m) }
func (*RawBlameResponse) ProtoMessage() {}
func (*RawBlameResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{28}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{28}
}
func (m *RawBlameResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RawBlameResponse.Unmarshal(m, b)
@@ -1718,7 +1718,7 @@ func (m *LastCommitForPathRequest) Reset() { *m = LastCommitForPathReque
func (m *LastCommitForPathRequest) String() string { return proto.CompactTextString(m) }
func (*LastCommitForPathRequest) ProtoMessage() {}
func (*LastCommitForPathRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{29}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{29}
}
func (m *LastCommitForPathRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LastCommitForPathRequest.Unmarshal(m, b)
@@ -1771,7 +1771,7 @@ func (m *LastCommitForPathResponse) Reset() { *m = LastCommitForPathResp
func (m *LastCommitForPathResponse) String() string { return proto.CompactTextString(m) }
func (*LastCommitForPathResponse) ProtoMessage() {}
func (*LastCommitForPathResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{30}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{30}
}
func (m *LastCommitForPathResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LastCommitForPathResponse.Unmarshal(m, b)
@@ -1814,7 +1814,7 @@ func (m *ListLastCommitsForTreeRequest) Reset() { *m = ListLastCommitsFo
func (m *ListLastCommitsForTreeRequest) String() string { return proto.CompactTextString(m) }
func (*ListLastCommitsForTreeRequest) ProtoMessage() {}
func (*ListLastCommitsForTreeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{31}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{31}
}
func (m *ListLastCommitsForTreeRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListLastCommitsForTreeRequest.Unmarshal(m, b)
@@ -1880,7 +1880,7 @@ func (m *ListLastCommitsForTreeResponse) Reset() { *m = ListLastCommitsF
func (m *ListLastCommitsForTreeResponse) String() string { return proto.CompactTextString(m) }
func (*ListLastCommitsForTreeResponse) ProtoMessage() {}
func (*ListLastCommitsForTreeResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{32}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{32}
}
func (m *ListLastCommitsForTreeResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListLastCommitsForTreeResponse.Unmarshal(m, b)
@@ -1909,7 +1909,8 @@ func (m *ListLastCommitsForTreeResponse) GetCommits() []*ListLastCommitsForTreeR
type ListLastCommitsForTreeResponse_CommitForTree struct {
Commit *GitCommit `protobuf:"bytes,2,opt,name=commit,proto3" json:"commit,omitempty"`
- Path string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
+ Path string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"` // Deprecated: Do not use.
+ PathBytes []byte `protobuf:"bytes,4,opt,name=path_bytes,json=pathBytes,proto3" json:"path_bytes,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1923,7 +1924,7 @@ func (m *ListLastCommitsForTreeResponse_CommitForTree) String() string {
}
func (*ListLastCommitsForTreeResponse_CommitForTree) ProtoMessage() {}
func (*ListLastCommitsForTreeResponse_CommitForTree) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{32, 0}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{32, 0}
}
func (m *ListLastCommitsForTreeResponse_CommitForTree) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListLastCommitsForTreeResponse_CommitForTree.Unmarshal(m, b)
@@ -1950,6 +1951,7 @@ func (m *ListLastCommitsForTreeResponse_CommitForTree) GetCommit() *GitCommit {
return nil
}
+// Deprecated: Do not use.
func (m *ListLastCommitsForTreeResponse_CommitForTree) GetPath() string {
if m != nil {
return m.Path
@@ -1957,6 +1959,13 @@ func (m *ListLastCommitsForTreeResponse_CommitForTree) GetPath() string {
return ""
}
+func (m *ListLastCommitsForTreeResponse_CommitForTree) GetPathBytes() []byte {
+ if m != nil {
+ return m.PathBytes
+ }
+ return nil
+}
+
type CommitsByMessageRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
Revision []byte `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
@@ -1973,7 +1982,7 @@ func (m *CommitsByMessageRequest) Reset() { *m = CommitsByMessageRequest
func (m *CommitsByMessageRequest) String() string { return proto.CompactTextString(m) }
func (*CommitsByMessageRequest) ProtoMessage() {}
func (*CommitsByMessageRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{33}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{33}
}
func (m *CommitsByMessageRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitsByMessageRequest.Unmarshal(m, b)
@@ -2047,7 +2056,7 @@ func (m *CommitsByMessageResponse) Reset() { *m = CommitsByMessageRespon
func (m *CommitsByMessageResponse) String() string { return proto.CompactTextString(m) }
func (*CommitsByMessageResponse) ProtoMessage() {}
func (*CommitsByMessageResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{34}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{34}
}
func (m *CommitsByMessageResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommitsByMessageResponse.Unmarshal(m, b)
@@ -2086,7 +2095,7 @@ func (m *FilterShasWithSignaturesRequest) Reset() { *m = FilterShasWithS
func (m *FilterShasWithSignaturesRequest) String() string { return proto.CompactTextString(m) }
func (*FilterShasWithSignaturesRequest) ProtoMessage() {}
func (*FilterShasWithSignaturesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{35}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{35}
}
func (m *FilterShasWithSignaturesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FilterShasWithSignaturesRequest.Unmarshal(m, b)
@@ -2131,7 +2140,7 @@ func (m *FilterShasWithSignaturesResponse) Reset() { *m = FilterShasWith
func (m *FilterShasWithSignaturesResponse) String() string { return proto.CompactTextString(m) }
func (*FilterShasWithSignaturesResponse) ProtoMessage() {}
func (*FilterShasWithSignaturesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{36}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{36}
}
func (m *FilterShasWithSignaturesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FilterShasWithSignaturesResponse.Unmarshal(m, b)
@@ -2170,7 +2179,7 @@ func (m *ExtractCommitSignatureRequest) Reset() { *m = ExtractCommitSign
func (m *ExtractCommitSignatureRequest) String() string { return proto.CompactTextString(m) }
func (*ExtractCommitSignatureRequest) ProtoMessage() {}
func (*ExtractCommitSignatureRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{37}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{37}
}
func (m *ExtractCommitSignatureRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExtractCommitSignatureRequest.Unmarshal(m, b)
@@ -2218,7 +2227,7 @@ func (m *ExtractCommitSignatureResponse) Reset() { *m = ExtractCommitSig
func (m *ExtractCommitSignatureResponse) String() string { return proto.CompactTextString(m) }
func (*ExtractCommitSignatureResponse) ProtoMessage() {}
func (*ExtractCommitSignatureResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{38}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{38}
}
func (m *ExtractCommitSignatureResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExtractCommitSignatureResponse.Unmarshal(m, b)
@@ -2264,7 +2273,7 @@ func (m *GetCommitSignaturesRequest) Reset() { *m = GetCommitSignaturesR
func (m *GetCommitSignaturesRequest) String() string { return proto.CompactTextString(m) }
func (*GetCommitSignaturesRequest) ProtoMessage() {}
func (*GetCommitSignaturesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{39}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{39}
}
func (m *GetCommitSignaturesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetCommitSignaturesRequest.Unmarshal(m, b)
@@ -2313,7 +2322,7 @@ func (m *GetCommitSignaturesResponse) Reset() { *m = GetCommitSignatures
func (m *GetCommitSignaturesResponse) String() string { return proto.CompactTextString(m) }
func (*GetCommitSignaturesResponse) ProtoMessage() {}
func (*GetCommitSignaturesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{40}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{40}
}
func (m *GetCommitSignaturesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetCommitSignaturesResponse.Unmarshal(m, b)
@@ -2366,7 +2375,7 @@ func (m *GetCommitMessagesRequest) Reset() { *m = GetCommitMessagesReque
func (m *GetCommitMessagesRequest) String() string { return proto.CompactTextString(m) }
func (*GetCommitMessagesRequest) ProtoMessage() {}
func (*GetCommitMessagesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{41}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{41}
}
func (m *GetCommitMessagesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetCommitMessagesRequest.Unmarshal(m, b)
@@ -2413,7 +2422,7 @@ func (m *GetCommitMessagesResponse) Reset() { *m = GetCommitMessagesResp
func (m *GetCommitMessagesResponse) String() string { return proto.CompactTextString(m) }
func (*GetCommitMessagesResponse) ProtoMessage() {}
func (*GetCommitMessagesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_commit_35518e4c3cf3fa03, []int{42}
+ return fileDescriptor_commit_7c6d8f89a2a6add9, []int{42}
}
func (m *GetCommitMessagesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetCommitMessagesResponse.Unmarshal(m, b)
@@ -3622,130 +3631,131 @@ var _CommitService_serviceDesc = grpc.ServiceDesc{
Metadata: "commit.proto",
}
-func init() { proto.RegisterFile("commit.proto", fileDescriptor_commit_35518e4c3cf3fa03) }
-
-var fileDescriptor_commit_35518e4c3cf3fa03 = []byte{
- // 1942 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x59, 0x4b, 0x6f, 0xe3, 0xc8,
- 0x11, 0x36, 0xf5, 0x24, 0x4b, 0x8e, 0x57, 0xee, 0x79, 0xc9, 0xb4, 0x3d, 0xf6, 0x72, 0x77, 0x36,
- 0x5e, 0x6c, 0x56, 0x36, 0x9c, 0x07, 0x92, 0x5c, 0x02, 0x7b, 0xc7, 0x76, 0xc6, 0x99, 0x19, 0x2d,
- 0x68, 0x01, 0x83, 0x2c, 0x02, 0x08, 0xb4, 0xd8, 0x92, 0xb9, 0xa6, 0x44, 0x0d, 0xd9, 0xb2, 0xad,
- 0x00, 0xb9, 0x04, 0x41, 0xee, 0x01, 0x82, 0xe4, 0x9c, 0x1f, 0xb0, 0x3f, 0x20, 0xc7, 0x1c, 0x73,
- 0xc9, 0x21, 0x3f, 0x25, 0xc7, 0x9c, 0x82, 0x7e, 0xb1, 0x49, 0x91, 0xb4, 0x67, 0xc6, 0xe3, 0xc9,
- 0x45, 0x60, 0x57, 0x77, 0xd7, 0xab, 0xbb, 0xbe, 0xaa, 0x6a, 0xc1, 0x62, 0x3f, 0x18, 0x8d, 0x3c,
- 0xd2, 0x9e, 0x84, 0x01, 0x09, 0x50, 0x6d, 0xe8, 0x11, 0xc7, 0x9f, 0x99, 0x8b, 0xd1, 0x99, 0x13,
- 0x62, 0x97, 0x53, 0xcd, 0x8d, 0x61, 0x10, 0x0c, 0x7d, 0xbc, 0xcd, 0x46, 0xa7, 0xd3, 0xc1, 0x36,
- 0xf1, 0x46, 0x38, 0x22, 0xce, 0x68, 0xc2, 0x17, 0x58, 0x3e, 0xa0, 0xaf, 0x18, 0x9b, 0x13, 0xe2,
- 0x90, 0xc8, 0xc6, 0xaf, 0xa7, 0x38, 0x22, 0x68, 0x17, 0x20, 0xc4, 0x93, 0x20, 0xf2, 0x48, 0x10,
- 0xce, 0x5a, 0xda, 0xa6, 0xb6, 0xd5, 0xd8, 0x45, 0x6d, 0x2e, 0xa1, 0x6d, 0xc7, 0x33, 0x76, 0x62,
- 0x15, 0x32, 0x41, 0x0f, 0xf1, 0x85, 0x17, 0x79, 0xc1, 0xb8, 0x55, 0xda, 0xd4, 0xb6, 0x16, 0xed,
- 0x78, 0xfc, 0xf3, 0xda, 0x7f, 0xfe, 0xba, 0x55, 0xd2, 0x4b, 0x56, 0x1f, 0xee, 0xa5, 0xa4, 0x45,
- 0x93, 0x60, 0x1c, 0x61, 0xd4, 0x84, 0x72, 0xe0, 0xb9, 0x4c, 0x8e, 0x61, 0xd3, 0x4f, 0xb4, 0x06,
- 0x86, 0xe3, 0xba, 0x1e, 0xf1, 0x82, 0x71, 0xc4, 0xb8, 0x55, 0x6d, 0x45, 0xa0, 0xb3, 0x2e, 0xf6,
- 0x31, 0x9f, 0x2d, 0xf3, 0xd9, 0x98, 0x60, 0xfd, 0x49, 0x83, 0x47, 0x5c, 0xca, 0xb3, 0x68, 0x6f,
- 0xdc, 0xc7, 0x11, 0x09, 0xc2, 0xdb, 0x18, 0xb6, 0x01, 0x0d, 0x47, 0xb0, 0xe9, 0x79, 0x2e, 0xd3,
- 0xc6, 0xb0, 0x41, 0x92, 0x9e, 0xb9, 0x68, 0x05, 0xf4, 0xfe, 0x99, 0xe7, 0xbb, 0x74, 0xb6, 0xcc,
- 0x66, 0xeb, 0x6c, 0xfc, 0xcc, 0x8d, 0x0d, 0xdf, 0x81, 0x56, 0x56, 0x25, 0x61, 0xfd, 0x7d, 0xa8,
- 0x5e, 0x38, 0xfe, 0x14, 0x33, 0x75, 0x74, 0x9b, 0x0f, 0xac, 0x3f, 0x6b, 0xd0, 0xec, 0x86, 0x18,
- 0x1f, 0x8c, 0x49, 0x38, 0xbb, 0xa3, 0x73, 0x41, 0x08, 0x2a, 0x13, 0x87, 0x9c, 0x31, 0xad, 0x17,
- 0x6d, 0xf6, 0x4d, 0xd5, 0xf1, 0xbd, 0x91, 0x47, 0x5a, 0x95, 0x4d, 0x6d, 0xab, 0x6c, 0xf3, 0x41,
- 0x6c, 0xc8, 0xbf, 0x35, 0x58, 0x4e, 0xa8, 0x25, 0x4c, 0xf8, 0x29, 0x54, 0xc8, 0x6c, 0xc2, 0x2d,
- 0x58, 0xda, 0xfd, 0x54, 0x6a, 0x94, 0x59, 0xd8, 0xee, 0x9c, 0x7e, 0x8b, 0xfb, 0xa4, 0x3b, 0x9b,
- 0x60, 0x9b, 0xed, 0x90, 0x47, 0x5f, 0x52, 0x47, 0x8f, 0xa0, 0x12, 0x79, 0xbf, 0xc5, 0x4c, 0xa7,
- 0xb2, 0xcd, 0xbe, 0x29, 0x6d, 0x14, 0xb8, 0x98, 0xa9, 0x54, 0xb5, 0xd9, 0x37, 0xa5, 0xb9, 0x0e,
- 0x71, 0x5a, 0x55, 0xae, 0x3b, 0xfd, 0xb6, 0x7e, 0x0c, 0xa0, 0x24, 0x20, 0x80, 0xda, 0x57, 0x9d,
- 0x17, 0x2f, 0x9e, 0x75, 0x9b, 0x0b, 0x48, 0x87, 0xca, 0xfe, 0xf3, 0xce, 0x7e, 0x53, 0xa3, 0x5f,
- 0x5d, 0xfb, 0xe0, 0xa0, 0x59, 0x42, 0x75, 0x28, 0x77, 0xf7, 0x8e, 0x9a, 0x65, 0xeb, 0x12, 0x1e,
- 0xf0, 0xd3, 0x89, 0xf6, 0x31, 0xb9, 0xc4, 0x78, 0x7c, 0x1b, 0x7f, 0x23, 0xa8, 0x0c, 0xc2, 0x60,
- 0x24, 0x7c, 0xcd, 0xbe, 0xd1, 0x12, 0x94, 0x48, 0x20, 0xbc, 0x5c, 0x22, 0x41, 0xec, 0xcd, 0x03,
- 0x78, 0x38, 0x2f, 0x58, 0x78, 0xf4, 0x0b, 0xa8, 0xf3, 0xf0, 0x8e, 0x5a, 0xda, 0x66, 0x79, 0xab,
- 0xb1, 0xbb, 0x2c, 0xc5, 0x1e, 0x79, 0x84, 0xef, 0xb1, 0xe5, 0x0a, 0xeb, 0x2f, 0x25, 0x1a, 0x57,
- 0xd3, 0xb1, 0x98, 0xb8, 0xab, 0x30, 0x46, 0x3b, 0x50, 0x75, 0x06, 0x04, 0x87, 0xcc, 0x92, 0xc6,
- 0xae, 0xd9, 0xe6, 0xe8, 0xd2, 0x96, 0xe8, 0xd2, 0xee, 0x4a, 0x74, 0xb1, 0xf9, 0x42, 0xb4, 0x0b,
- 0xb5, 0x53, 0x3c, 0x08, 0x42, 0x7e, 0x74, 0xd7, 0x6f, 0x11, 0x2b, 0xe3, 0x4b, 0x59, 0x4d, 0x5c,
- 0xca, 0x55, 0x30, 0x46, 0xce, 0x55, 0xaf, 0x4f, 0x8d, 0x6c, 0xd5, 0xd8, 0x2d, 0xd0, 0x47, 0xce,
- 0x15, 0x33, 0x9a, 0xde, 0x21, 0xc7, 0xf7, 0x5b, 0x75, 0x16, 0x3e, 0xf4, 0x33, 0xf6, 0xef, 0x0f,
- 0xe0, 0x7e, 0xda, 0x2f, 0x2a, 0xe4, 0x38, 0x2b, 0x8d, 0xb1, 0xe2, 0x03, 0xeb, 0x3b, 0x0d, 0xd6,
- 0xd8, 0xf2, 0xa7, 0xde, 0x05, 0x0e, 0x87, 0xde, 0x78, 0xf8, 0x1e, 0xfc, 0xf9, 0x06, 0xd7, 0x21,
- 0x6d, 0x5d, 0x3d, 0x6d, 0x9d, 0xb4, 0xe5, 0xb8, 0xa2, 0x57, 0x9a, 0xd5, 0xe3, 0x8a, 0x5e, 0x6d,
- 0xd6, 0x8e, 0x2b, 0x7a, 0xad, 0x59, 0xb7, 0x7a, 0xb0, 0x5e, 0xa0, 0xae, 0x30, 0x73, 0x1d, 0xc0,
- 0xc7, 0x03, 0xd2, 0x4b, 0xda, 0x6a, 0x50, 0x0a, 0xf7, 0xdb, 0x06, 0x34, 0x42, 0x6f, 0x78, 0x26,
- 0xe7, 0x39, 0xcc, 0x02, 0x23, 0xb1, 0x05, 0xd6, 0x7f, 0x35, 0x30, 0xe2, 0x18, 0xce, 0x41, 0xe9,
- 0x15, 0xd0, 0xc3, 0x20, 0x20, 0x3d, 0x15, 0xc1, 0x75, 0x3a, 0xee, 0xf0, 0x28, 0xce, 0x20, 0xcb,
- 0xb6, 0x40, 0x89, 0x0a, 0x43, 0x89, 0xd5, 0x0c, 0x4a, 0xb4, 0xd9, 0x6f, 0x02, 0x1c, 0x64, 0xd8,
- 0x57, 0x13, 0x61, 0xbf, 0x0e, 0xc0, 0xaf, 0x3d, 0x93, 0x5a, 0x63, 0x52, 0x0d, 0x4e, 0xa1, 0x72,
- 0x57, 0xc1, 0x18, 0xf8, 0x0e, 0xe9, 0x31, 0xe1, 0x75, 0x7e, 0x7f, 0x29, 0xe1, 0x6b, 0x87, 0x9c,
- 0x59, 0x5f, 0x80, 0x11, 0x8b, 0x88, 0x11, 0x61, 0x21, 0x46, 0x04, 0x2d, 0x81, 0x18, 0x65, 0xeb,
- 0x6f, 0x1a, 0x3c, 0x38, 0xc2, 0x44, 0x6a, 0xe7, 0xe1, 0xe8, 0x43, 0xa2, 0xf0, 0x1a, 0x18, 0x21,
- 0xee, 0x4f, 0xc3, 0xc8, 0xbb, 0xe0, 0x0e, 0xd3, 0x6d, 0x45, 0x48, 0xe2, 0xc7, 0xbc, 0x8a, 0x0a,
- 0x3f, 0x30, 0x27, 0xcd, 0xe3, 0x87, 0x02, 0x65, 0xb9, 0xc2, 0xfa, 0x16, 0x9a, 0xcf, 0xbd, 0x88,
- 0x1c, 0x7a, 0x3e, 0xbe, 0xf3, 0x12, 0xe0, 0x73, 0x58, 0x4e, 0xc8, 0x52, 0xf1, 0x48, 0xad, 0xe6,
- 0xba, 0x2e, 0xda, 0x7c, 0x60, 0x9d, 0xc3, 0xf2, 0xa1, 0x37, 0x76, 0x05, 0xda, 0xdd, 0xb1, 0x5e,
- 0xbf, 0x00, 0x94, 0x14, 0x26, 0x14, 0xfb, 0x1c, 0x6a, 0xfc, 0x6e, 0x09, 0x49, 0x39, 0x28, 0x2c,
- 0x16, 0x58, 0x43, 0x78, 0x44, 0x0d, 0x93, 0x78, 0x3e, 0xeb, 0x78, 0xee, 0x6d, 0x74, 0x8e, 0x13,
- 0x63, 0x59, 0x44, 0x5b, 0xac, 0xe9, 0x11, 0xb4, 0xb2, 0x82, 0xde, 0x25, 0x6d, 0xfc, 0xbe, 0x04,
- 0x0f, 0xa8, 0xcd, 0x7b, 0xbe, 0x7f, 0xc7, 0x89, 0x23, 0x05, 0x70, 0xe5, 0x39, 0xf8, 0xa6, 0x09,
- 0xff, 0xdc, 0x9b, 0xc8, 0xe4, 0x4e, 0xbf, 0xd1, 0xcf, 0xa0, 0x1a, 0x84, 0x2e, 0x0e, 0x59, 0xe8,
- 0x2f, 0xed, 0x7e, 0x22, 0x65, 0xe7, 0xaa, 0xdb, 0xee, 0xd0, 0xa5, 0x36, 0xdf, 0x61, 0x3d, 0x81,
- 0x2a, 0x1b, 0xd3, 0xb0, 0x7e, 0xd9, 0x79, 0x79, 0x20, 0x02, 0xbc, 0xf3, 0x75, 0x87, 0x27, 0xff,
- 0xa7, 0x7b, 0xdd, 0x83, 0x66, 0x29, 0x19, 0x42, 0xf3, 0x4c, 0xdf, 0xc5, 0x97, 0x7f, 0x28, 0x27,
- 0xef, 0xcf, 0x9d, 0x39, 0x32, 0x2e, 0xce, 0xb8, 0x13, 0xf9, 0x00, 0x3d, 0x84, 0x5a, 0x30, 0x18,
- 0x44, 0x98, 0x08, 0x1f, 0x8a, 0x91, 0x0a, 0xab, 0x6a, 0x22, 0xac, 0xe8, 0xea, 0x41, 0xe0, 0xfb,
- 0xc1, 0x25, 0x43, 0x4f, 0xdd, 0x16, 0x23, 0x9a, 0x0e, 0xa8, 0xef, 0x7b, 0x23, 0x1c, 0x0e, 0x71,
- 0x24, 0xd2, 0x29, 0x50, 0xd2, 0x0b, 0x46, 0x41, 0x1f, 0xc3, 0xa2, 0xeb, 0x45, 0xce, 0xa9, 0x8f,
- 0x7b, 0x97, 0x8e, 0x7f, 0xde, 0xd2, 0xd9, 0x8a, 0x86, 0xa0, 0xbd, 0x72, 0xfc, 0x73, 0x55, 0x21,
- 0x18, 0x6f, 0x5f, 0x21, 0xc0, 0x1b, 0x57, 0x08, 0x22, 0xe1, 0x37, 0xb2, 0x09, 0x7f, 0x1f, 0xee,
- 0xa5, 0x4e, 0xe1, 0x5d, 0x8e, 0x72, 0x22, 0x8b, 0xb2, 0xe7, 0xce, 0x78, 0x38, 0x75, 0x86, 0x77,
- 0x8f, 0x89, 0xdf, 0xc5, 0x1d, 0x4b, 0x42, 0xa4, 0x50, 0xfd, 0x10, 0x0c, 0x5f, 0x12, 0x85, 0xf2,
- 0x5b, 0x52, 0x64, 0xc1, 0x9e, 0xb6, 0xa4, 0xd8, 0x6a, 0xab, 0x79, 0x0c, 0xba, 0x24, 0xd3, 0x88,
- 0x1b, 0x3b, 0x23, 0x2c, 0x52, 0x39, 0xfb, 0xa6, 0x77, 0x85, 0x75, 0x8e, 0x4c, 0xc9, 0x92, 0xcd,
- 0x07, 0xbc, 0x50, 0xf2, 0x83, 0x50, 0xf4, 0x35, 0x7c, 0x60, 0xfd, 0x0e, 0x3e, 0xb2, 0x9d, 0xcb,
- 0x7d, 0xdf, 0x19, 0xe1, 0x0f, 0x98, 0x13, 0x63, 0x77, 0x7d, 0x06, 0x4d, 0x25, 0x5e, 0xb8, 0x49,
- 0x76, 0x03, 0x5a, 0xa2, 0x1b, 0xf8, 0xa3, 0x06, 0xad, 0xe7, 0x8e, 0x44, 0xca, 0xc3, 0x20, 0xa4,
- 0x45, 0xc0, 0xff, 0x43, 0xe1, 0x43, 0x58, 0xc9, 0xd1, 0xe3, 0xed, 0x53, 0xcc, 0xdf, 0x35, 0x58,
- 0xa7, 0xd0, 0xaf, 0x98, 0x45, 0x87, 0x41, 0x48, 0x13, 0xfa, 0xfb, 0xb4, 0xca, 0x78, 0x9b, 0x06,
- 0x31, 0x07, 0x83, 0xaa, 0x49, 0x0c, 0x8a, 0x7d, 0xf0, 0x2f, 0x0d, 0x1e, 0x17, 0xe9, 0x2e, 0x3c,
- 0xf1, 0x72, 0x3e, 0x4a, 0x7f, 0x24, 0x35, 0xbf, 0x7e, 0x63, 0x3b, 0x76, 0x2c, 0xa3, 0x4a, 0x26,
- 0x66, 0x17, 0xbe, 0x97, 0x9a, 0x49, 0xb8, 0xba, 0x74, 0x83, 0xab, 0x53, 0x86, 0x1b, 0xdc, 0xf0,
- 0xe3, 0x8a, 0xae, 0x25, 0x12, 0xc7, 0x3f, 0xe3, 0xa0, 0x8d, 0xf6, 0x67, 0x2f, 0x70, 0x14, 0xd1,
- 0x80, 0xbb, 0xa3, 0xcb, 0xa5, 0x9c, 0x5b, 0x9e, 0x07, 0xf8, 0x9c, 0xa3, 0xc8, 0x6b, 0xa0, 0xee,
- 0x43, 0xf5, 0xf5, 0x14, 0x87, 0x33, 0x51, 0x31, 0xf3, 0x41, 0xb2, 0xa4, 0xc8, 0x9a, 0xf2, 0x2e,
- 0xd8, 0xf9, 0x1a, 0x36, 0x0e, 0x3d, 0x9f, 0xe0, 0xf0, 0xe4, 0xcc, 0x89, 0x5e, 0x79, 0xe4, 0xec,
- 0xc4, 0x1b, 0x8e, 0x1d, 0x32, 0x0d, 0xf1, 0x6d, 0x9b, 0xa8, 0xe8, 0xcc, 0x89, 0x58, 0x35, 0xb4,
- 0x68, 0xb3, 0xef, 0x58, 0xf7, 0x9f, 0xc0, 0x66, 0xb1, 0x48, 0x85, 0x0e, 0x6c, 0xbf, 0xa6, 0xf6,
- 0x5b, 0x57, 0xb0, 0x7e, 0x70, 0x45, 0x42, 0xa7, 0x2f, 0x8c, 0x88, 0xb7, 0xdd, 0x46, 0xd1, 0x55,
- 0x10, 0xbd, 0x88, 0x7a, 0x29, 0xd2, 0x39, 0x21, 0xf1, 0x18, 0xd4, 0x83, 0xc7, 0x45, 0x92, 0x85,
- 0xbe, 0x6b, 0x60, 0x44, 0x92, 0x28, 0x20, 0x4d, 0x11, 0x58, 0xa2, 0xf6, 0x86, 0x63, 0xec, 0xf6,
- 0x08, 0xbe, 0x22, 0xe2, 0xb2, 0x00, 0x27, 0x75, 0xf1, 0x15, 0xb1, 0x2e, 0xc1, 0x3c, 0xc2, 0xf3,
- 0xcc, 0x6f, 0x75, 0x00, 0xaa, 0xeb, 0xf2, 0xdc, 0x48, 0x14, 0xa5, 0x86, 0x34, 0x4c, 0x9d, 0xc5,
- 0x0c, 0x56, 0x73, 0x05, 0x0b, 0xb3, 0x52, 0xde, 0xd1, 0xd2, 0xde, 0x49, 0xdb, 0x5c, 0xba, 0xc1,
- 0xe6, 0x72, 0xc6, 0xe6, 0x29, 0xb4, 0x62, 0xd1, 0xe2, 0x0a, 0x7f, 0x08, 0x8b, 0x6d, 0x58, 0xc9,
- 0x11, 0xfb, 0x26, 0xf6, 0xb6, 0xa0, 0x3e, 0xe2, 0x1b, 0x84, 0xb5, 0x72, 0xb8, 0xfb, 0x8f, 0x25,
- 0x09, 0x5c, 0x27, 0x38, 0xbc, 0xf0, 0xfa, 0x18, 0xbd, 0x82, 0xe6, 0xfc, 0xf3, 0x21, 0xda, 0x48,
- 0x57, 0x01, 0x99, 0xb7, 0x4e, 0x73, 0xb3, 0x78, 0x01, 0xd7, 0xcf, 0x5a, 0x40, 0x4f, 0x93, 0x0d,
- 0x7e, 0x2b, 0xe7, 0xdd, 0x8e, 0xb3, 0x5a, 0x29, 0x7c, 0xd1, 0xb3, 0x16, 0x76, 0x34, 0x74, 0x02,
- 0x4b, 0xe9, 0x67, 0x2c, 0xb4, 0x9e, 0x96, 0x3d, 0xf7, 0xae, 0x66, 0x3e, 0x2e, 0x9a, 0x4e, 0x30,
- 0xfd, 0x15, 0x2c, 0x26, 0xdf, 0x6e, 0xd0, 0xaa, 0xda, 0x93, 0x79, 0xe9, 0x32, 0xd7, 0xf2, 0x27,
- 0x63, 0x3b, 0x07, 0xf0, 0x20, 0xf7, 0xa9, 0x04, 0x7d, 0x9a, 0xda, 0x58, 0xf0, 0xf0, 0x63, 0x3e,
- 0xb9, 0x61, 0x55, 0x2c, 0xe7, 0x04, 0x96, 0xd2, 0x0d, 0xb9, 0xf2, 0x44, 0xee, 0x5b, 0x82, 0xf2,
- 0x44, 0x7e, 0x1f, 0xcf, 0x3c, 0xf1, 0x14, 0x8c, 0xb8, 0x65, 0x56, 0x87, 0x34, 0xdf, 0xb1, 0xab,
- 0x43, 0xca, 0xf4, 0xd7, 0x8c, 0xcb, 0x01, 0x80, 0x2a, 0x8d, 0xd1, 0x4a, 0xb2, 0xa3, 0x4a, 0x75,
- 0xd8, 0xa6, 0x99, 0x37, 0x15, 0x5b, 0xf8, 0x4b, 0x68, 0x24, 0x9e, 0xf0, 0x91, 0x99, 0x3e, 0xc9,
- 0xe4, 0xbf, 0x08, 0xe6, 0x6a, 0xee, 0x5c, 0xd2, 0x57, 0xe9, 0xce, 0x4b, 0xf9, 0x2a, 0xb7, 0xcd,
- 0x53, 0xbe, 0xca, 0x6f, 0xd8, 0x98, 0x95, 0xc7, 0xd0, 0x48, 0x34, 0x00, 0x28, 0xc7, 0x96, 0xac,
- 0x7a, 0x39, 0x1d, 0x03, 0xe3, 0xd5, 0x85, 0x8f, 0xe6, 0x2a, 0x6c, 0xf4, 0xb8, 0xb0, 0xf4, 0xe6,
- 0x3c, 0x37, 0x6e, 0x28, 0xcd, 0xad, 0x05, 0xb4, 0x07, 0xba, 0xac, 0x5e, 0xd1, 0xa3, 0x18, 0x84,
- 0xd2, 0xe5, 0xb4, 0xd9, 0xca, 0x4e, 0x24, 0x14, 0xfb, 0x06, 0x96, 0x33, 0xf5, 0x24, 0x8a, 0xc3,
- 0xbd, 0xa8, 0xe4, 0x35, 0x3f, 0xbe, 0x66, 0x45, 0xac, 0xde, 0x39, 0x3c, 0xcc, 0xaf, 0xb6, 0xd0,
- 0x93, 0x9b, 0xaa, 0x31, 0x2e, 0xe5, 0xb3, 0x37, 0x2b, 0xda, 0x98, 0x21, 0xbf, 0x96, 0xb8, 0xa6,
- 0xea, 0x8e, 0x79, 0x5c, 0xcb, 0x14, 0x57, 0xf3, 0xb8, 0x96, 0x2d, 0x59, 0x24, 0xeb, 0xf9, 0x57,
- 0x12, 0xc5, 0xba, 0xe0, 0xa1, 0x46, 0xb1, 0x2e, 0x7a, 0x60, 0x61, 0xac, 0x23, 0x68, 0x15, 0x55,
- 0x1c, 0xe8, 0xfb, 0xea, 0x52, 0x5d, 0x5b, 0x06, 0x99, 0x5b, 0x37, 0x2f, 0x94, 0x22, 0xb7, 0xb4,
- 0x1d, 0x8d, 0x9e, 0x4b, 0x7e, 0xd1, 0xa0, 0xce, 0xe5, 0xda, 0x72, 0x46, 0x9d, 0xcb, 0xf5, 0xb5,
- 0x07, 0xb3, 0xf0, 0x14, 0xee, 0xe5, 0xe4, 0x71, 0x64, 0x25, 0xc0, 0xaa, 0xa0, 0xba, 0x30, 0x3f,
- 0xb9, 0x76, 0x4d, 0x42, 0xc6, 0x6f, 0x60, 0x39, 0x93, 0x39, 0xd5, 0x25, 0x2e, 0xca, 0xe5, 0xea,
- 0x12, 0x17, 0xa6, 0x5d, 0xca, 0x7d, 0x7f, 0xe7, 0x1b, 0xba, 0xce, 0x77, 0x4e, 0xdb, 0xfd, 0x60,
- 0xb4, 0xcd, 0x3f, 0xbf, 0x0c, 0xc2, 0xe1, 0x36, 0xdf, 0xfd, 0x25, 0x7b, 0x5d, 0xd8, 0x1e, 0x06,
- 0x62, 0x3c, 0x39, 0x3d, 0xad, 0x31, 0xd2, 0x0f, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xad, 0x41,
- 0x2d, 0xba, 0x57, 0x1d, 0x00, 0x00,
+func init() { proto.RegisterFile("commit.proto", fileDescriptor_commit_7c6d8f89a2a6add9) }
+
+var fileDescriptor_commit_7c6d8f89a2a6add9 = []byte{
+ // 1964 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x59, 0x49, 0x6f, 0xe3, 0xc8,
+ 0x15, 0x36, 0xb5, 0x99, 0x7c, 0x52, 0x3c, 0x72, 0xf5, 0x46, 0xd3, 0x76, 0xdb, 0xc3, 0x99, 0x9e,
+ 0x78, 0x30, 0x19, 0xd9, 0x70, 0x16, 0x24, 0xb9, 0x04, 0xd6, 0xb4, 0xed, 0xb4, 0xd3, 0xdd, 0x1a,
+ 0xd0, 0x02, 0x1a, 0x19, 0x04, 0x10, 0x28, 0xb1, 0x24, 0x73, 0x4c, 0x89, 0x6a, 0xb2, 0x64, 0x5b,
+ 0x01, 0x72, 0x09, 0x82, 0xdc, 0x03, 0x04, 0xc9, 0x39, 0x3f, 0x60, 0x7e, 0x40, 0x8e, 0x39, 0xe6,
+ 0x9a, 0x7f, 0x92, 0x1c, 0x73, 0x0a, 0x6a, 0x21, 0x8b, 0x14, 0x49, 0xbb, 0xbb, 0xdd, 0xee, 0x5c,
+ 0x6c, 0xd6, 0xab, 0xe5, 0x2d, 0x55, 0xef, 0x7b, 0x8b, 0xa0, 0x31, 0xf0, 0xc7, 0x63, 0x97, 0xb4,
+ 0xa6, 0x81, 0x4f, 0x7c, 0x54, 0x1b, 0xb9, 0xc4, 0xf6, 0xe6, 0x46, 0x23, 0x3c, 0xb3, 0x03, 0xec,
+ 0x70, 0xaa, 0xb1, 0x35, 0xf2, 0xfd, 0x91, 0x87, 0x77, 0xd9, 0xa8, 0x3f, 0x1b, 0xee, 0x12, 0x77,
+ 0x8c, 0x43, 0x62, 0x8f, 0xa7, 0x7c, 0x81, 0xe9, 0x01, 0xfa, 0x8a, 0x1d, 0x73, 0x4a, 0x6c, 0x12,
+ 0x5a, 0xf8, 0xf5, 0x0c, 0x87, 0x04, 0xed, 0x03, 0x04, 0x78, 0xea, 0x87, 0x2e, 0xf1, 0x83, 0xb9,
+ 0xae, 0x6c, 0x2b, 0x3b, 0xf5, 0x7d, 0xd4, 0xe2, 0x1c, 0x5a, 0x56, 0x3c, 0x63, 0x25, 0x56, 0x21,
+ 0x03, 0xd4, 0x00, 0x5f, 0xb8, 0xa1, 0xeb, 0x4f, 0xf4, 0xd2, 0xb6, 0xb2, 0xd3, 0xb0, 0xe2, 0xf1,
+ 0xcf, 0x6b, 0xff, 0xf9, 0xeb, 0x4e, 0x49, 0x2d, 0x99, 0x03, 0xb8, 0x97, 0xe2, 0x16, 0x4e, 0xfd,
+ 0x49, 0x88, 0x51, 0x13, 0xca, 0xbe, 0xeb, 0x30, 0x3e, 0x9a, 0x45, 0x3f, 0xd1, 0x06, 0x68, 0xb6,
+ 0xe3, 0xb8, 0xc4, 0xf5, 0x27, 0x21, 0x3b, 0xad, 0x6a, 0x49, 0x02, 0x9d, 0x75, 0xb0, 0x87, 0xf9,
+ 0x6c, 0x99, 0xcf, 0xc6, 0x04, 0xf3, 0x4f, 0x0a, 0x3c, 0xe2, 0x5c, 0x9e, 0x85, 0x07, 0x93, 0x01,
+ 0x0e, 0x89, 0x1f, 0xdc, 0x46, 0xb1, 0x2d, 0xa8, 0xdb, 0xe2, 0x98, 0x9e, 0xeb, 0x30, 0x69, 0x34,
+ 0x0b, 0x22, 0xd2, 0x33, 0x07, 0xad, 0x81, 0x3a, 0x38, 0x73, 0x3d, 0x87, 0xce, 0x96, 0xd9, 0xec,
+ 0x32, 0x1b, 0x3f, 0x73, 0x62, 0xc5, 0xf7, 0x40, 0xcf, 0x8a, 0x24, 0xb4, 0xbf, 0x0f, 0xd5, 0x0b,
+ 0xdb, 0x9b, 0x61, 0x26, 0x8e, 0x6a, 0xf1, 0x81, 0xf9, 0x67, 0x05, 0x9a, 0xdd, 0x00, 0xe3, 0xc3,
+ 0x09, 0x09, 0xe6, 0x77, 0x74, 0x2f, 0x08, 0x41, 0x65, 0x6a, 0x93, 0x33, 0x26, 0x75, 0xc3, 0x62,
+ 0xdf, 0x54, 0x1c, 0xcf, 0x1d, 0xbb, 0x44, 0xaf, 0x6c, 0x2b, 0x3b, 0x65, 0x8b, 0x0f, 0x62, 0x45,
+ 0xfe, 0xa5, 0xc0, 0x6a, 0x42, 0x2c, 0xa1, 0xc2, 0x4f, 0xa1, 0x42, 0xe6, 0x53, 0xae, 0xc1, 0xca,
+ 0xfe, 0xa7, 0x91, 0x44, 0x99, 0x85, 0xad, 0x4e, 0xff, 0x5b, 0x3c, 0x20, 0xdd, 0xf9, 0x14, 0x5b,
+ 0x6c, 0x47, 0x74, 0xf5, 0x25, 0x79, 0xf5, 0x08, 0x2a, 0xa1, 0xfb, 0x5b, 0xcc, 0x64, 0x2a, 0x5b,
+ 0xec, 0x9b, 0xd2, 0xc6, 0xbe, 0x83, 0x99, 0x48, 0x55, 0x8b, 0x7d, 0x53, 0x9a, 0x63, 0x13, 0x5b,
+ 0xaf, 0x72, 0xd9, 0xe9, 0xb7, 0xf9, 0x63, 0x00, 0xc9, 0x01, 0x01, 0xd4, 0xbe, 0xea, 0xbc, 0x78,
+ 0xf1, 0xac, 0xdb, 0x5c, 0x42, 0x2a, 0x54, 0xda, 0xcf, 0x3b, 0xed, 0xa6, 0x42, 0xbf, 0xba, 0xd6,
+ 0xe1, 0x61, 0xb3, 0x84, 0x96, 0xa1, 0xdc, 0x3d, 0x38, 0x6e, 0x96, 0xcd, 0x4b, 0x78, 0xc0, 0x6f,
+ 0x27, 0x6c, 0x63, 0x72, 0x89, 0xf1, 0xe4, 0x36, 0xf6, 0x46, 0x50, 0x19, 0x06, 0xfe, 0x58, 0xd8,
+ 0x9a, 0x7d, 0xa3, 0x15, 0x28, 0x11, 0x5f, 0x58, 0xb9, 0x44, 0xfc, 0xd8, 0x9a, 0x87, 0xf0, 0x70,
+ 0x91, 0xb1, 0xb0, 0xe8, 0x17, 0xb0, 0xcc, 0xdd, 0x3b, 0xd4, 0x95, 0xed, 0xf2, 0x4e, 0x7d, 0x7f,
+ 0x35, 0x62, 0x7b, 0xec, 0x12, 0xbe, 0xc7, 0x8a, 0x56, 0x98, 0x7f, 0x29, 0x51, 0xbf, 0x9a, 0x4d,
+ 0xc4, 0xc4, 0x5d, 0xb9, 0x31, 0xda, 0x83, 0xaa, 0x3d, 0x24, 0x38, 0x60, 0x9a, 0xd4, 0xf7, 0x8d,
+ 0x16, 0x47, 0x97, 0x56, 0x84, 0x2e, 0xad, 0x6e, 0x84, 0x2e, 0x16, 0x5f, 0x88, 0xf6, 0xa1, 0xd6,
+ 0xc7, 0x43, 0x3f, 0xe0, 0x57, 0x77, 0xfd, 0x16, 0xb1, 0x32, 0x7e, 0x94, 0xd5, 0xc4, 0xa3, 0x5c,
+ 0x07, 0x6d, 0x6c, 0x5f, 0xf5, 0x06, 0x54, 0x49, 0xbd, 0xc6, 0x5e, 0x81, 0x3a, 0xb6, 0xaf, 0x98,
+ 0xd2, 0xf4, 0x0d, 0xd9, 0x9e, 0xa7, 0x2f, 0x33, 0xf7, 0xa1, 0x9f, 0xb1, 0x7d, 0x7f, 0x00, 0xf7,
+ 0xd3, 0x76, 0x91, 0x2e, 0xc7, 0x8f, 0x52, 0xd8, 0x51, 0x7c, 0x60, 0x7e, 0xa7, 0xc0, 0x06, 0x5b,
+ 0xfe, 0xd4, 0xbd, 0xc0, 0xc1, 0xc8, 0x9d, 0x8c, 0xde, 0x83, 0x3d, 0xdf, 0xe0, 0x39, 0xa4, 0xb5,
+ 0x5b, 0x4e, 0x6b, 0x17, 0xe9, 0x72, 0x52, 0x51, 0x2b, 0xcd, 0xea, 0x49, 0x45, 0xad, 0x36, 0x6b,
+ 0x27, 0x15, 0xb5, 0xd6, 0x5c, 0x36, 0x7b, 0xb0, 0x59, 0x20, 0xae, 0x50, 0x73, 0x13, 0xc0, 0xc3,
+ 0x43, 0xd2, 0x4b, 0xea, 0xaa, 0x51, 0x0a, 0xb7, 0xdb, 0x16, 0xd4, 0x03, 0x77, 0x74, 0x16, 0xcd,
+ 0x73, 0x98, 0x05, 0x46, 0x62, 0x0b, 0xcc, 0xff, 0x2a, 0xa0, 0xc5, 0x3e, 0x9c, 0x83, 0xd2, 0x6b,
+ 0xa0, 0x06, 0xbe, 0x4f, 0x7a, 0xd2, 0x83, 0x97, 0xe9, 0xb8, 0xc3, 0xbd, 0x38, 0x83, 0x2c, 0xbb,
+ 0x02, 0x25, 0x2a, 0x0c, 0x25, 0xd6, 0x33, 0x28, 0xd1, 0x62, 0x7f, 0x13, 0xe0, 0x10, 0xb9, 0x7d,
+ 0x35, 0xe1, 0xf6, 0x9b, 0x00, 0xfc, 0xd9, 0x33, 0xae, 0x35, 0xc6, 0x55, 0xe3, 0x14, 0xca, 0x77,
+ 0x1d, 0xb4, 0xa1, 0x67, 0x93, 0x1e, 0x63, 0xbe, 0xcc, 0xdf, 0x2f, 0x25, 0x7c, 0x6d, 0x93, 0x33,
+ 0xf3, 0x0b, 0xd0, 0x62, 0x16, 0x31, 0x22, 0x2c, 0xc5, 0x88, 0xa0, 0x24, 0x10, 0xa3, 0x6c, 0xfe,
+ 0x4d, 0x81, 0x07, 0xc7, 0x98, 0x44, 0xd2, 0xb9, 0x38, 0xfc, 0x90, 0x28, 0xbc, 0x01, 0x5a, 0x80,
+ 0x07, 0xb3, 0x20, 0x74, 0x2f, 0xb8, 0xc1, 0x54, 0x4b, 0x12, 0x92, 0xf8, 0xb1, 0x28, 0xa2, 0xc4,
+ 0x0f, 0xcc, 0x49, 0x8b, 0xf8, 0x21, 0x41, 0x39, 0x5a, 0x61, 0x7e, 0x0b, 0xcd, 0xe7, 0x6e, 0x48,
+ 0x8e, 0x5c, 0x0f, 0xdf, 0x79, 0x0a, 0xf0, 0x39, 0xac, 0x26, 0x78, 0x49, 0x7f, 0xa4, 0x5a, 0x73,
+ 0x59, 0x1b, 0x16, 0x1f, 0x98, 0xe7, 0xb0, 0x7a, 0xe4, 0x4e, 0x1c, 0x81, 0x76, 0x77, 0x2c, 0xd7,
+ 0x2f, 0x00, 0x25, 0x99, 0x09, 0xc1, 0x3e, 0x87, 0x1a, 0x7f, 0x5b, 0x82, 0x53, 0x0e, 0x0a, 0x8b,
+ 0x05, 0xe6, 0x08, 0x1e, 0x51, 0xc5, 0x22, 0x3c, 0x9f, 0x77, 0x5c, 0xe7, 0x36, 0x32, 0xc7, 0x81,
+ 0xb1, 0x2c, 0xbc, 0x2d, 0x96, 0xf4, 0x18, 0xf4, 0x2c, 0xa3, 0x77, 0x09, 0x1b, 0xbf, 0x2f, 0xc1,
+ 0x03, 0xaa, 0xf3, 0x81, 0xe7, 0xdd, 0x71, 0xe0, 0x48, 0x01, 0x5c, 0x79, 0x01, 0xbe, 0x69, 0xc0,
+ 0x3f, 0x77, 0xa7, 0x51, 0x70, 0xa7, 0xdf, 0xe8, 0x67, 0x50, 0xf5, 0x03, 0x07, 0x07, 0xcc, 0xf5,
+ 0x57, 0xf6, 0x3f, 0x89, 0x78, 0xe7, 0x8a, 0xdb, 0xea, 0xd0, 0xa5, 0x16, 0xdf, 0x61, 0x3e, 0x81,
+ 0x2a, 0x1b, 0x53, 0xb7, 0x7e, 0xd9, 0x79, 0x79, 0x28, 0x1c, 0xbc, 0xf3, 0x75, 0x87, 0x07, 0xff,
+ 0xa7, 0x07, 0xdd, 0xc3, 0x66, 0x29, 0xe9, 0x42, 0x8b, 0x87, 0xbe, 0x8b, 0x2d, 0xff, 0x50, 0x4e,
+ 0xbe, 0x9f, 0x3b, 0x33, 0x64, 0x9c, 0x9c, 0x71, 0x23, 0xf2, 0x01, 0x7a, 0x08, 0x35, 0x7f, 0x38,
+ 0x0c, 0x31, 0x11, 0x36, 0x14, 0x23, 0xe9, 0x56, 0xd5, 0x84, 0x5b, 0xd1, 0xd5, 0x43, 0xdf, 0xf3,
+ 0xfc, 0x4b, 0x86, 0x9e, 0xaa, 0x25, 0x46, 0x34, 0x1c, 0x50, 0xdb, 0xf7, 0xc6, 0x38, 0x18, 0xe1,
+ 0x50, 0x84, 0x53, 0xa0, 0xa4, 0x17, 0x8c, 0x82, 0x3e, 0x86, 0x86, 0xe3, 0x86, 0x76, 0xdf, 0xc3,
+ 0xbd, 0x4b, 0xdb, 0x3b, 0xd7, 0x55, 0xb6, 0xa2, 0x2e, 0x68, 0xaf, 0x6c, 0xef, 0x5c, 0x66, 0x08,
+ 0xda, 0xdb, 0x67, 0x08, 0xf0, 0xc6, 0x19, 0x82, 0x08, 0xf8, 0xf5, 0x6c, 0xc0, 0x6f, 0xc3, 0xbd,
+ 0xd4, 0x2d, 0xbc, 0xcb, 0x55, 0x4e, 0xa3, 0xa4, 0xec, 0xb9, 0x3d, 0x19, 0xcd, 0xec, 0xd1, 0xdd,
+ 0x63, 0xe2, 0x77, 0x71, 0xc5, 0x92, 0x60, 0x29, 0x44, 0x3f, 0x02, 0xcd, 0x8b, 0x88, 0x42, 0xf8,
+ 0x9d, 0x88, 0x65, 0xc1, 0x9e, 0x56, 0x44, 0xb1, 0xe4, 0x56, 0xe3, 0x04, 0xd4, 0x88, 0x4c, 0x3d,
+ 0x6e, 0x62, 0x8f, 0xb1, 0x08, 0xe5, 0xec, 0x9b, 0xbe, 0x15, 0x56, 0x39, 0x32, 0x21, 0x4b, 0x16,
+ 0x1f, 0xf0, 0x44, 0xc9, 0xf3, 0x03, 0x51, 0xd7, 0xf0, 0x81, 0xf9, 0x3b, 0xf8, 0xc8, 0xb2, 0x2f,
+ 0xdb, 0x9e, 0x3d, 0xc6, 0x1f, 0x30, 0x26, 0xc6, 0xe6, 0xfa, 0x0c, 0x9a, 0x92, 0xbd, 0x30, 0x53,
+ 0x54, 0x0d, 0x28, 0x89, 0x6a, 0xe0, 0x8f, 0x0a, 0xe8, 0xcf, 0xed, 0x08, 0x29, 0x8f, 0xfc, 0x80,
+ 0x26, 0x01, 0xff, 0x0f, 0x81, 0x8f, 0x60, 0x2d, 0x47, 0x8e, 0xb7, 0x0f, 0x31, 0x7f, 0x57, 0x60,
+ 0x93, 0x42, 0xbf, 0x3c, 0x2c, 0x3c, 0xf2, 0x03, 0x1a, 0xd0, 0xdf, 0xa7, 0x56, 0xda, 0xdb, 0x14,
+ 0x88, 0x39, 0x18, 0x54, 0x4d, 0x62, 0x50, 0x6c, 0x83, 0x7f, 0x2b, 0xf0, 0xb8, 0x48, 0x76, 0x61,
+ 0x89, 0x97, 0x8b, 0x5e, 0xfa, 0xa3, 0x48, 0xf2, 0xeb, 0x37, 0xb6, 0x62, 0xc3, 0x32, 0x6a, 0x74,
+ 0x88, 0x71, 0x09, 0xdf, 0x4b, 0xcd, 0x24, 0x4c, 0x5d, 0xba, 0xc1, 0xd4, 0xe8, 0x61, 0x42, 0x71,
+ 0xad, 0x5d, 0xd2, 0x15, 0xa1, 0xfc, 0x26, 0x00, 0xfd, 0xdf, 0xeb, 0xcf, 0x09, 0x0e, 0x99, 0x05,
+ 0x1a, 0x96, 0x46, 0x29, 0x6d, 0x4a, 0x38, 0xa9, 0xa8, 0x4a, 0x22, 0xb6, 0xfc, 0x33, 0xf6, 0xeb,
+ 0xb0, 0x3d, 0x7f, 0x81, 0xc3, 0x90, 0xfa, 0xe4, 0x1d, 0xbd, 0x3f, 0x69, 0xff, 0xf2, 0x62, 0x0c,
+ 0xc8, 0xb9, 0xad, 0xbc, 0x1a, 0xeb, 0x3e, 0x54, 0x5f, 0xcf, 0x70, 0x30, 0x17, 0x49, 0x35, 0x1f,
+ 0x24, 0xb3, 0x8e, 0xac, 0x2a, 0xef, 0x02, 0xaf, 0xaf, 0x61, 0xeb, 0xc8, 0xf5, 0x08, 0x0e, 0x4e,
+ 0xcf, 0xec, 0xf0, 0x95, 0x4b, 0xce, 0x4e, 0xdd, 0xd1, 0xc4, 0x26, 0xb3, 0x00, 0xdf, 0xb6, 0xce,
+ 0x0a, 0xcf, 0xec, 0x90, 0x25, 0x4c, 0x0d, 0x8b, 0x7d, 0xc7, 0xb2, 0xff, 0x04, 0xb6, 0x8b, 0x59,
+ 0x4a, 0x00, 0x61, 0xfb, 0x15, 0xb9, 0xdf, 0xbc, 0x82, 0xcd, 0xc3, 0x2b, 0x12, 0xd8, 0x03, 0xa1,
+ 0x44, 0xbc, 0xed, 0x36, 0x82, 0xae, 0x83, 0x28, 0x57, 0x64, 0x33, 0x49, 0xe5, 0x84, 0x44, 0xbf,
+ 0xa8, 0x07, 0x8f, 0x8b, 0x38, 0x0b, 0x79, 0x37, 0x40, 0x0b, 0x23, 0xa2, 0x40, 0x3d, 0x49, 0x60,
+ 0xb1, 0xdc, 0x1d, 0x4d, 0xb0, 0xd3, 0x23, 0xf8, 0x8a, 0x88, 0xc7, 0x02, 0x9c, 0xd4, 0xc5, 0x57,
+ 0xc4, 0xbc, 0x04, 0xe3, 0x18, 0x2f, 0x1e, 0x7e, 0xab, 0x0b, 0x90, 0x85, 0x99, 0xeb, 0x84, 0x22,
+ 0x6f, 0xd5, 0x22, 0xc5, 0xe4, 0x5d, 0xcc, 0x61, 0x3d, 0x97, 0xb1, 0x50, 0x2b, 0x65, 0x1d, 0x25,
+ 0x6d, 0x9d, 0xb4, 0xce, 0xa5, 0x1b, 0x74, 0x2e, 0x67, 0x74, 0x9e, 0x81, 0x1e, 0xb3, 0x16, 0x4f,
+ 0xf8, 0x43, 0x68, 0x6c, 0xc1, 0x5a, 0x0e, 0xdb, 0x37, 0xd1, 0x57, 0x87, 0xe5, 0x31, 0xdf, 0x20,
+ 0xb4, 0x8d, 0x86, 0xfb, 0xff, 0x58, 0x89, 0xb0, 0xed, 0x14, 0x07, 0x17, 0xee, 0x00, 0xa3, 0x57,
+ 0xd0, 0x5c, 0xec, 0x30, 0xa2, 0xad, 0x74, 0xa2, 0x90, 0x69, 0x87, 0x1a, 0xdb, 0xc5, 0x0b, 0xb8,
+ 0x7c, 0xe6, 0x12, 0x7a, 0x9a, 0xec, 0x01, 0xe8, 0x39, 0xad, 0x3d, 0x7e, 0xd4, 0x5a, 0x61, 0xd3,
+ 0xcf, 0x5c, 0xda, 0x53, 0xd0, 0x29, 0xac, 0xa4, 0x3b, 0x5d, 0x68, 0x33, 0xcd, 0x7b, 0xa1, 0xf5,
+ 0x66, 0x3c, 0x2e, 0x9a, 0x4e, 0x1c, 0xfa, 0x2b, 0x68, 0x24, 0xdb, 0x3b, 0x68, 0x5d, 0xee, 0xc9,
+ 0x34, 0xc3, 0x8c, 0x8d, 0xfc, 0xc9, 0x58, 0xcf, 0x21, 0x3c, 0xc8, 0xed, 0xa6, 0xa0, 0x4f, 0x53,
+ 0x1b, 0x0b, 0x7a, 0x43, 0xc6, 0x93, 0x1b, 0x56, 0xc5, 0x7c, 0x4e, 0x61, 0x25, 0x5d, 0xb3, 0x4b,
+ 0x4b, 0xe4, 0xb6, 0x1b, 0xa4, 0x25, 0xf2, 0x4b, 0x7d, 0x66, 0x89, 0xa7, 0xa0, 0xc5, 0x55, 0xb5,
+ 0xbc, 0xa4, 0xc5, 0xa2, 0x5e, 0x5e, 0x52, 0xa6, 0x04, 0x67, 0xa7, 0x1c, 0x02, 0xc8, 0xec, 0x19,
+ 0xad, 0x25, 0x8b, 0xae, 0x54, 0x11, 0x6e, 0x18, 0x79, 0x53, 0xb1, 0x86, 0xbf, 0x84, 0x7a, 0xa2,
+ 0xcb, 0x8f, 0x8c, 0xf4, 0x4d, 0x26, 0x7f, 0x68, 0x30, 0xd6, 0x73, 0xe7, 0x92, 0xb6, 0x4a, 0x17,
+ 0x67, 0xd2, 0x56, 0xb9, 0x95, 0xa0, 0xb4, 0x55, 0x7e, 0x4d, 0xc7, 0xb4, 0x3c, 0x81, 0x7a, 0xa2,
+ 0x46, 0x40, 0x39, 0xba, 0x64, 0xc5, 0xcb, 0x29, 0x2a, 0xd8, 0x59, 0x5d, 0xf8, 0x68, 0x21, 0x09,
+ 0x47, 0x8f, 0x0b, 0xb3, 0x73, 0x7e, 0xe6, 0xd6, 0x0d, 0xd9, 0xbb, 0xb9, 0x84, 0x0e, 0x40, 0x8d,
+ 0x12, 0x5c, 0xf4, 0x28, 0x06, 0xa1, 0x74, 0xc6, 0x6d, 0xe8, 0xd9, 0x89, 0x84, 0x60, 0xdf, 0xc0,
+ 0x6a, 0x26, 0xe5, 0x44, 0xb1, 0xbb, 0x17, 0x65, 0xc5, 0xc6, 0xc7, 0xd7, 0xac, 0x88, 0xc5, 0x3b,
+ 0x87, 0x87, 0xf9, 0x09, 0x19, 0x7a, 0x72, 0x53, 0xc2, 0xc6, 0xb9, 0x7c, 0xf6, 0x66, 0x79, 0x1d,
+ 0x53, 0xe4, 0xd7, 0x11, 0xae, 0xc9, 0xbc, 0x63, 0x11, 0xd7, 0x32, 0xc9, 0xd5, 0x22, 0xae, 0x65,
+ 0x53, 0x96, 0xe8, 0xe8, 0xc5, 0x46, 0x8a, 0x3c, 0xba, 0xa0, 0x97, 0x23, 0x8f, 0x2e, 0xea, 0xc1,
+ 0xb0, 0xa3, 0x43, 0xd0, 0x8b, 0x32, 0x0e, 0xf4, 0x7d, 0xf9, 0xa8, 0xae, 0x4d, 0x83, 0x8c, 0x9d,
+ 0x9b, 0x17, 0x46, 0x2c, 0x77, 0x94, 0x3d, 0x85, 0xde, 0x4b, 0x7e, 0xd2, 0x20, 0xef, 0xe5, 0xda,
+ 0x74, 0x46, 0xde, 0xcb, 0xf5, 0xb9, 0x07, 0xd3, 0xb0, 0x0f, 0xf7, 0x72, 0xe2, 0x38, 0x32, 0x13,
+ 0x60, 0x55, 0x90, 0x5d, 0x18, 0x9f, 0x5c, 0xbb, 0x26, 0xc1, 0xe3, 0x37, 0xb0, 0x9a, 0x89, 0x9c,
+ 0xf2, 0x11, 0x17, 0xc5, 0x72, 0xf9, 0x88, 0x0b, 0xc3, 0x2e, 0x3d, 0xbd, 0xbd, 0xf7, 0x0d, 0x5d,
+ 0xe7, 0xd9, 0xfd, 0xd6, 0xc0, 0x1f, 0xef, 0xf2, 0xcf, 0x2f, 0xfd, 0x60, 0xb4, 0xcb, 0x77, 0x7f,
+ 0xc9, 0x1a, 0x10, 0xbb, 0x23, 0x5f, 0x8c, 0xa7, 0xfd, 0x7e, 0x8d, 0x91, 0x7e, 0xf8, 0xbf, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0x3a, 0x20, 0x66, 0x97, 0x7a, 0x1d, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
index 77710e1a9..e9abe8cca 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/repository-service.pb.go
@@ -49,7 +49,7 @@ func (x GetArchiveRequest_Format) String() string {
return proto.EnumName(GetArchiveRequest_Format_name, int32(x))
}
func (GetArchiveRequest_Format) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{18, 0}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{18, 0}
}
type GetRawChangesResponse_RawChange_Operation int32
@@ -87,7 +87,7 @@ func (x GetRawChangesResponse_RawChange_Operation) String() string {
return proto.EnumName(GetRawChangesResponse_RawChange_Operation_name, int32(x))
}
func (GetRawChangesResponse_RawChange_Operation) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{63, 0, 0}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{63, 0, 0}
}
type RepositoryExistsRequest struct {
@@ -101,7 +101,7 @@ func (m *RepositoryExistsRequest) Reset() { *m = RepositoryExistsRequest
func (m *RepositoryExistsRequest) String() string { return proto.CompactTextString(m) }
func (*RepositoryExistsRequest) ProtoMessage() {}
func (*RepositoryExistsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{0}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{0}
}
func (m *RepositoryExistsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositoryExistsRequest.Unmarshal(m, b)
@@ -139,7 +139,7 @@ func (m *RepositoryExistsResponse) Reset() { *m = RepositoryExistsRespon
func (m *RepositoryExistsResponse) String() string { return proto.CompactTextString(m) }
func (*RepositoryExistsResponse) ProtoMessage() {}
func (*RepositoryExistsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{1}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{1}
}
func (m *RepositoryExistsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositoryExistsResponse.Unmarshal(m, b)
@@ -177,7 +177,7 @@ func (m *RepackIncrementalRequest) Reset() { *m = RepackIncrementalReque
func (m *RepackIncrementalRequest) String() string { return proto.CompactTextString(m) }
func (*RepackIncrementalRequest) ProtoMessage() {}
func (*RepackIncrementalRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{2}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{2}
}
func (m *RepackIncrementalRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackIncrementalRequest.Unmarshal(m, b)
@@ -214,7 +214,7 @@ func (m *RepackIncrementalResponse) Reset() { *m = RepackIncrementalResp
func (m *RepackIncrementalResponse) String() string { return proto.CompactTextString(m) }
func (*RepackIncrementalResponse) ProtoMessage() {}
func (*RepackIncrementalResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{3}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{3}
}
func (m *RepackIncrementalResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackIncrementalResponse.Unmarshal(m, b)
@@ -246,7 +246,7 @@ func (m *RepackFullRequest) Reset() { *m = RepackFullRequest{} }
func (m *RepackFullRequest) String() string { return proto.CompactTextString(m) }
func (*RepackFullRequest) ProtoMessage() {}
func (*RepackFullRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{4}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{4}
}
func (m *RepackFullRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackFullRequest.Unmarshal(m, b)
@@ -290,7 +290,7 @@ func (m *RepackFullResponse) Reset() { *m = RepackFullResponse{} }
func (m *RepackFullResponse) String() string { return proto.CompactTextString(m) }
func (*RepackFullResponse) ProtoMessage() {}
func (*RepackFullResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{5}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{5}
}
func (m *RepackFullResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepackFullResponse.Unmarshal(m, b)
@@ -322,7 +322,7 @@ func (m *GarbageCollectRequest) Reset() { *m = GarbageCollectRequest{} }
func (m *GarbageCollectRequest) String() string { return proto.CompactTextString(m) }
func (*GarbageCollectRequest) ProtoMessage() {}
func (*GarbageCollectRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{6}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{6}
}
func (m *GarbageCollectRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GarbageCollectRequest.Unmarshal(m, b)
@@ -366,7 +366,7 @@ func (m *GarbageCollectResponse) Reset() { *m = GarbageCollectResponse{}
func (m *GarbageCollectResponse) String() string { return proto.CompactTextString(m) }
func (*GarbageCollectResponse) ProtoMessage() {}
func (*GarbageCollectResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{7}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{7}
}
func (m *GarbageCollectResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GarbageCollectResponse.Unmarshal(m, b)
@@ -397,7 +397,7 @@ func (m *CleanupRequest) Reset() { *m = CleanupRequest{} }
func (m *CleanupRequest) String() string { return proto.CompactTextString(m) }
func (*CleanupRequest) ProtoMessage() {}
func (*CleanupRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{8}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{8}
}
func (m *CleanupRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CleanupRequest.Unmarshal(m, b)
@@ -434,7 +434,7 @@ func (m *CleanupResponse) Reset() { *m = CleanupResponse{} }
func (m *CleanupResponse) String() string { return proto.CompactTextString(m) }
func (*CleanupResponse) ProtoMessage() {}
func (*CleanupResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{9}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{9}
}
func (m *CleanupResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CleanupResponse.Unmarshal(m, b)
@@ -465,7 +465,7 @@ func (m *RepositorySizeRequest) Reset() { *m = RepositorySizeRequest{} }
func (m *RepositorySizeRequest) String() string { return proto.CompactTextString(m) }
func (*RepositorySizeRequest) ProtoMessage() {}
func (*RepositorySizeRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{10}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{10}
}
func (m *RepositorySizeRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositorySizeRequest.Unmarshal(m, b)
@@ -504,7 +504,7 @@ func (m *RepositorySizeResponse) Reset() { *m = RepositorySizeResponse{}
func (m *RepositorySizeResponse) String() string { return proto.CompactTextString(m) }
func (*RepositorySizeResponse) ProtoMessage() {}
func (*RepositorySizeResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{11}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{11}
}
func (m *RepositorySizeResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RepositorySizeResponse.Unmarshal(m, b)
@@ -543,7 +543,7 @@ func (m *ApplyGitattributesRequest) Reset() { *m = ApplyGitattributesReq
func (m *ApplyGitattributesRequest) String() string { return proto.CompactTextString(m) }
func (*ApplyGitattributesRequest) ProtoMessage() {}
func (*ApplyGitattributesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{12}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{12}
}
func (m *ApplyGitattributesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplyGitattributesRequest.Unmarshal(m, b)
@@ -587,7 +587,7 @@ func (m *ApplyGitattributesResponse) Reset() { *m = ApplyGitattributesRe
func (m *ApplyGitattributesResponse) String() string { return proto.CompactTextString(m) }
func (*ApplyGitattributesResponse) ProtoMessage() {}
func (*ApplyGitattributesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{13}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{13}
}
func (m *ApplyGitattributesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplyGitattributesResponse.Unmarshal(m, b)
@@ -616,6 +616,7 @@ type FetchRemoteRequest struct {
SshKey string `protobuf:"bytes,6,opt,name=ssh_key,json=sshKey,proto3" json:"ssh_key,omitempty"`
KnownHosts string `protobuf:"bytes,7,opt,name=known_hosts,json=knownHosts,proto3" json:"known_hosts,omitempty"`
NoPrune bool `protobuf:"varint,9,opt,name=no_prune,json=noPrune,proto3" json:"no_prune,omitempty"`
+ RemoteParams *Remote `protobuf:"bytes,10,opt,name=remote_params,json=remoteParams,proto3" json:"remote_params,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -625,7 +626,7 @@ func (m *FetchRemoteRequest) Reset() { *m = FetchRemoteRequest{} }
func (m *FetchRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchRemoteRequest) ProtoMessage() {}
func (*FetchRemoteRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{14}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{14}
}
func (m *FetchRemoteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchRemoteRequest.Unmarshal(m, b)
@@ -701,6 +702,13 @@ func (m *FetchRemoteRequest) GetNoPrune() bool {
return false
}
+func (m *FetchRemoteRequest) GetRemoteParams() *Remote {
+ if m != nil {
+ return m.RemoteParams
+ }
+ return nil
+}
+
type FetchRemoteResponse struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@@ -711,7 +719,7 @@ func (m *FetchRemoteResponse) Reset() { *m = FetchRemoteResponse{} }
func (m *FetchRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchRemoteResponse) ProtoMessage() {}
func (*FetchRemoteResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{15}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{15}
}
func (m *FetchRemoteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchRemoteResponse.Unmarshal(m, b)
@@ -742,7 +750,7 @@ func (m *CreateRepositoryRequest) Reset() { *m = CreateRepositoryRequest
func (m *CreateRepositoryRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryRequest) ProtoMessage() {}
func (*CreateRepositoryRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{16}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{16}
}
func (m *CreateRepositoryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryRequest.Unmarshal(m, b)
@@ -779,7 +787,7 @@ func (m *CreateRepositoryResponse) Reset() { *m = CreateRepositoryRespon
func (m *CreateRepositoryResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryResponse) ProtoMessage() {}
func (*CreateRepositoryResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{17}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{17}
}
func (m *CreateRepositoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryResponse.Unmarshal(m, b)
@@ -814,7 +822,7 @@ func (m *GetArchiveRequest) Reset() { *m = GetArchiveRequest{} }
func (m *GetArchiveRequest) String() string { return proto.CompactTextString(m) }
func (*GetArchiveRequest) ProtoMessage() {}
func (*GetArchiveRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{18}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{18}
}
func (m *GetArchiveRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetArchiveRequest.Unmarshal(m, b)
@@ -880,7 +888,7 @@ func (m *GetArchiveResponse) Reset() { *m = GetArchiveResponse{} }
func (m *GetArchiveResponse) String() string { return proto.CompactTextString(m) }
func (*GetArchiveResponse) ProtoMessage() {}
func (*GetArchiveResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{19}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{19}
}
func (m *GetArchiveResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetArchiveResponse.Unmarshal(m, b)
@@ -918,7 +926,7 @@ func (m *HasLocalBranchesRequest) Reset() { *m = HasLocalBranchesRequest
func (m *HasLocalBranchesRequest) String() string { return proto.CompactTextString(m) }
func (*HasLocalBranchesRequest) ProtoMessage() {}
func (*HasLocalBranchesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{20}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{20}
}
func (m *HasLocalBranchesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HasLocalBranchesRequest.Unmarshal(m, b)
@@ -956,7 +964,7 @@ func (m *HasLocalBranchesResponse) Reset() { *m = HasLocalBranchesRespon
func (m *HasLocalBranchesResponse) String() string { return proto.CompactTextString(m) }
func (*HasLocalBranchesResponse) ProtoMessage() {}
func (*HasLocalBranchesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{21}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{21}
}
func (m *HasLocalBranchesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HasLocalBranchesResponse.Unmarshal(m, b)
@@ -997,7 +1005,7 @@ func (m *FetchSourceBranchRequest) Reset() { *m = FetchSourceBranchReque
func (m *FetchSourceBranchRequest) String() string { return proto.CompactTextString(m) }
func (*FetchSourceBranchRequest) ProtoMessage() {}
func (*FetchSourceBranchRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{22}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{22}
}
func (m *FetchSourceBranchRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchSourceBranchRequest.Unmarshal(m, b)
@@ -1056,7 +1064,7 @@ func (m *FetchSourceBranchResponse) Reset() { *m = FetchSourceBranchResp
func (m *FetchSourceBranchResponse) String() string { return proto.CompactTextString(m) }
func (*FetchSourceBranchResponse) ProtoMessage() {}
func (*FetchSourceBranchResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{23}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{23}
}
func (m *FetchSourceBranchResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchSourceBranchResponse.Unmarshal(m, b)
@@ -1094,7 +1102,7 @@ func (m *FsckRequest) Reset() { *m = FsckRequest{} }
func (m *FsckRequest) String() string { return proto.CompactTextString(m) }
func (*FsckRequest) ProtoMessage() {}
func (*FsckRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{24}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{24}
}
func (m *FsckRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FsckRequest.Unmarshal(m, b)
@@ -1132,7 +1140,7 @@ func (m *FsckResponse) Reset() { *m = FsckResponse{} }
func (m *FsckResponse) String() string { return proto.CompactTextString(m) }
func (*FsckResponse) ProtoMessage() {}
func (*FsckResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{25}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{25}
}
func (m *FsckResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FsckResponse.Unmarshal(m, b)
@@ -1174,7 +1182,7 @@ func (m *WriteRefRequest) Reset() { *m = WriteRefRequest{} }
func (m *WriteRefRequest) String() string { return proto.CompactTextString(m) }
func (*WriteRefRequest) ProtoMessage() {}
func (*WriteRefRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{26}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{26}
}
func (m *WriteRefRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteRefRequest.Unmarshal(m, b)
@@ -1239,7 +1247,7 @@ func (m *WriteRefResponse) Reset() { *m = WriteRefResponse{} }
func (m *WriteRefResponse) String() string { return proto.CompactTextString(m) }
func (*WriteRefResponse) ProtoMessage() {}
func (*WriteRefResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{27}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{27}
}
func (m *WriteRefResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteRefResponse.Unmarshal(m, b)
@@ -1274,7 +1282,7 @@ func (m *FindMergeBaseRequest) Reset() { *m = FindMergeBaseRequest{} }
func (m *FindMergeBaseRequest) String() string { return proto.CompactTextString(m) }
func (*FindMergeBaseRequest) ProtoMessage() {}
func (*FindMergeBaseRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{28}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{28}
}
func (m *FindMergeBaseRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindMergeBaseRequest.Unmarshal(m, b)
@@ -1319,7 +1327,7 @@ func (m *FindMergeBaseResponse) Reset() { *m = FindMergeBaseResponse{} }
func (m *FindMergeBaseResponse) String() string { return proto.CompactTextString(m) }
func (*FindMergeBaseResponse) ProtoMessage() {}
func (*FindMergeBaseResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{29}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{29}
}
func (m *FindMergeBaseResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindMergeBaseResponse.Unmarshal(m, b)
@@ -1358,7 +1366,7 @@ func (m *CreateForkRequest) Reset() { *m = CreateForkRequest{} }
func (m *CreateForkRequest) String() string { return proto.CompactTextString(m) }
func (*CreateForkRequest) ProtoMessage() {}
func (*CreateForkRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{30}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{30}
}
func (m *CreateForkRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateForkRequest.Unmarshal(m, b)
@@ -1402,7 +1410,7 @@ func (m *CreateForkResponse) Reset() { *m = CreateForkResponse{} }
func (m *CreateForkResponse) String() string { return proto.CompactTextString(m) }
func (*CreateForkResponse) ProtoMessage() {}
func (*CreateForkResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{31}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{31}
}
func (m *CreateForkResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateForkResponse.Unmarshal(m, b)
@@ -1434,7 +1442,7 @@ func (m *IsRebaseInProgressRequest) Reset() { *m = IsRebaseInProgressReq
func (m *IsRebaseInProgressRequest) String() string { return proto.CompactTextString(m) }
func (*IsRebaseInProgressRequest) ProtoMessage() {}
func (*IsRebaseInProgressRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{32}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{32}
}
func (m *IsRebaseInProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsRebaseInProgressRequest.Unmarshal(m, b)
@@ -1479,7 +1487,7 @@ func (m *IsRebaseInProgressResponse) Reset() { *m = IsRebaseInProgressRe
func (m *IsRebaseInProgressResponse) String() string { return proto.CompactTextString(m) }
func (*IsRebaseInProgressResponse) ProtoMessage() {}
func (*IsRebaseInProgressResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{33}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{33}
}
func (m *IsRebaseInProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsRebaseInProgressResponse.Unmarshal(m, b)
@@ -1518,7 +1526,7 @@ func (m *IsSquashInProgressRequest) Reset() { *m = IsSquashInProgressReq
func (m *IsSquashInProgressRequest) String() string { return proto.CompactTextString(m) }
func (*IsSquashInProgressRequest) ProtoMessage() {}
func (*IsSquashInProgressRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{34}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{34}
}
func (m *IsSquashInProgressRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsSquashInProgressRequest.Unmarshal(m, b)
@@ -1563,7 +1571,7 @@ func (m *IsSquashInProgressResponse) Reset() { *m = IsSquashInProgressRe
func (m *IsSquashInProgressResponse) String() string { return proto.CompactTextString(m) }
func (*IsSquashInProgressResponse) ProtoMessage() {}
func (*IsSquashInProgressResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{35}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{35}
}
func (m *IsSquashInProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsSquashInProgressResponse.Unmarshal(m, b)
@@ -1602,7 +1610,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 fileDescriptor_repository_service_99ade1ae2bfb8239, []int{36}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{36}
}
func (m *CreateRepositoryFromURLRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromURLRequest.Unmarshal(m, b)
@@ -1646,7 +1654,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 fileDescriptor_repository_service_99ade1ae2bfb8239, []int{37}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{37}
}
func (m *CreateRepositoryFromURLResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromURLResponse.Unmarshal(m, b)
@@ -1677,7 +1685,7 @@ func (m *CreateBundleRequest) Reset() { *m = CreateBundleRequest{} }
func (m *CreateBundleRequest) String() string { return proto.CompactTextString(m) }
func (*CreateBundleRequest) ProtoMessage() {}
func (*CreateBundleRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{38}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{38}
}
func (m *CreateBundleRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateBundleRequest.Unmarshal(m, b)
@@ -1715,7 +1723,7 @@ func (m *CreateBundleResponse) Reset() { *m = CreateBundleResponse{} }
func (m *CreateBundleResponse) String() string { return proto.CompactTextString(m) }
func (*CreateBundleResponse) ProtoMessage() {}
func (*CreateBundleResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{39}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{39}
}
func (m *CreateBundleResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateBundleResponse.Unmarshal(m, b)
@@ -1754,7 +1762,7 @@ func (m *WriteConfigRequest) Reset() { *m = WriteConfigRequest{} }
func (m *WriteConfigRequest) String() string { return proto.CompactTextString(m) }
func (*WriteConfigRequest) ProtoMessage() {}
func (*WriteConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{40}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{40}
}
func (m *WriteConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteConfigRequest.Unmarshal(m, b)
@@ -1799,7 +1807,7 @@ func (m *WriteConfigResponse) Reset() { *m = WriteConfigResponse{} }
func (m *WriteConfigResponse) String() string { return proto.CompactTextString(m) }
func (*WriteConfigResponse) ProtoMessage() {}
func (*WriteConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{41}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{41}
}
func (m *WriteConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WriteConfigResponse.Unmarshal(m, b)
@@ -1838,7 +1846,7 @@ func (m *SetConfigRequest) Reset() { *m = SetConfigRequest{} }
func (m *SetConfigRequest) String() string { return proto.CompactTextString(m) }
func (*SetConfigRequest) ProtoMessage() {}
func (*SetConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{42}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{42}
}
func (m *SetConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigRequest.Unmarshal(m, b)
@@ -1888,7 +1896,7 @@ func (m *SetConfigRequest_Entry) Reset() { *m = SetConfigRequest_Entry{}
func (m *SetConfigRequest_Entry) String() string { return proto.CompactTextString(m) }
func (*SetConfigRequest_Entry) ProtoMessage() {}
func (*SetConfigRequest_Entry) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{42, 0}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{42, 0}
}
func (m *SetConfigRequest_Entry) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigRequest_Entry.Unmarshal(m, b)
@@ -2058,7 +2066,7 @@ func (m *SetConfigResponse) Reset() { *m = SetConfigResponse{} }
func (m *SetConfigResponse) String() string { return proto.CompactTextString(m) }
func (*SetConfigResponse) ProtoMessage() {}
func (*SetConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{43}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{43}
}
func (m *SetConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetConfigResponse.Unmarshal(m, b)
@@ -2090,7 +2098,7 @@ func (m *DeleteConfigRequest) Reset() { *m = DeleteConfigRequest{} }
func (m *DeleteConfigRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteConfigRequest) ProtoMessage() {}
func (*DeleteConfigRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{44}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{44}
}
func (m *DeleteConfigRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteConfigRequest.Unmarshal(m, b)
@@ -2134,7 +2142,7 @@ func (m *DeleteConfigResponse) Reset() { *m = DeleteConfigResponse{} }
func (m *DeleteConfigResponse) String() string { return proto.CompactTextString(m) }
func (*DeleteConfigResponse) ProtoMessage() {}
func (*DeleteConfigResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{45}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{45}
}
func (m *DeleteConfigResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteConfigResponse.Unmarshal(m, b)
@@ -2166,7 +2174,7 @@ func (m *RestoreCustomHooksRequest) Reset() { *m = RestoreCustomHooksReq
func (m *RestoreCustomHooksRequest) String() string { return proto.CompactTextString(m) }
func (*RestoreCustomHooksRequest) ProtoMessage() {}
func (*RestoreCustomHooksRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{46}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{46}
}
func (m *RestoreCustomHooksRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RestoreCustomHooksRequest.Unmarshal(m, b)
@@ -2210,7 +2218,7 @@ func (m *RestoreCustomHooksResponse) Reset() { *m = RestoreCustomHooksRe
func (m *RestoreCustomHooksResponse) String() string { return proto.CompactTextString(m) }
func (*RestoreCustomHooksResponse) ProtoMessage() {}
func (*RestoreCustomHooksResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{47}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{47}
}
func (m *RestoreCustomHooksResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RestoreCustomHooksResponse.Unmarshal(m, b)
@@ -2241,7 +2249,7 @@ func (m *BackupCustomHooksRequest) Reset() { *m = BackupCustomHooksReque
func (m *BackupCustomHooksRequest) String() string { return proto.CompactTextString(m) }
func (*BackupCustomHooksRequest) ProtoMessage() {}
func (*BackupCustomHooksRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{48}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{48}
}
func (m *BackupCustomHooksRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BackupCustomHooksRequest.Unmarshal(m, b)
@@ -2279,7 +2287,7 @@ func (m *BackupCustomHooksResponse) Reset() { *m = BackupCustomHooksResp
func (m *BackupCustomHooksResponse) String() string { return proto.CompactTextString(m) }
func (*BackupCustomHooksResponse) ProtoMessage() {}
func (*BackupCustomHooksResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{49}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{49}
}
func (m *BackupCustomHooksResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BackupCustomHooksResponse.Unmarshal(m, b)
@@ -2319,7 +2327,7 @@ func (m *CreateRepositoryFromBundleRequest) Reset() { *m = CreateReposit
func (m *CreateRepositoryFromBundleRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromBundleRequest) ProtoMessage() {}
func (*CreateRepositoryFromBundleRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{50}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{50}
}
func (m *CreateRepositoryFromBundleRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromBundleRequest.Unmarshal(m, b)
@@ -2363,7 +2371,7 @@ func (m *CreateRepositoryFromBundleResponse) Reset() { *m = CreateReposi
func (m *CreateRepositoryFromBundleResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromBundleResponse) ProtoMessage() {}
func (*CreateRepositoryFromBundleResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{51}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{51}
}
func (m *CreateRepositoryFromBundleResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromBundleResponse.Unmarshal(m, b)
@@ -2394,7 +2402,7 @@ func (m *FindLicenseRequest) Reset() { *m = FindLicenseRequest{} }
func (m *FindLicenseRequest) String() string { return proto.CompactTextString(m) }
func (*FindLicenseRequest) ProtoMessage() {}
func (*FindLicenseRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{52}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{52}
}
func (m *FindLicenseRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindLicenseRequest.Unmarshal(m, b)
@@ -2432,7 +2440,7 @@ func (m *FindLicenseResponse) Reset() { *m = FindLicenseResponse{} }
func (m *FindLicenseResponse) String() string { return proto.CompactTextString(m) }
func (*FindLicenseResponse) ProtoMessage() {}
func (*FindLicenseResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{53}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{53}
}
func (m *FindLicenseResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FindLicenseResponse.Unmarshal(m, b)
@@ -2470,7 +2478,7 @@ func (m *GetInfoAttributesRequest) Reset() { *m = GetInfoAttributesReque
func (m *GetInfoAttributesRequest) String() string { return proto.CompactTextString(m) }
func (*GetInfoAttributesRequest) ProtoMessage() {}
func (*GetInfoAttributesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{54}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{54}
}
func (m *GetInfoAttributesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfoAttributesRequest.Unmarshal(m, b)
@@ -2508,7 +2516,7 @@ func (m *GetInfoAttributesResponse) Reset() { *m = GetInfoAttributesResp
func (m *GetInfoAttributesResponse) String() string { return proto.CompactTextString(m) }
func (*GetInfoAttributesResponse) ProtoMessage() {}
func (*GetInfoAttributesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{55}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{55}
}
func (m *GetInfoAttributesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetInfoAttributesResponse.Unmarshal(m, b)
@@ -2546,7 +2554,7 @@ func (m *CalculateChecksumRequest) Reset() { *m = CalculateChecksumReque
func (m *CalculateChecksumRequest) String() string { return proto.CompactTextString(m) }
func (*CalculateChecksumRequest) ProtoMessage() {}
func (*CalculateChecksumRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{56}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{56}
}
func (m *CalculateChecksumRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CalculateChecksumRequest.Unmarshal(m, b)
@@ -2584,7 +2592,7 @@ func (m *CalculateChecksumResponse) Reset() { *m = CalculateChecksumResp
func (m *CalculateChecksumResponse) String() string { return proto.CompactTextString(m) }
func (*CalculateChecksumResponse) ProtoMessage() {}
func (*CalculateChecksumResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{57}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{57}
}
func (m *CalculateChecksumResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CalculateChecksumResponse.Unmarshal(m, b)
@@ -2622,7 +2630,7 @@ func (m *GetSnapshotRequest) Reset() { *m = GetSnapshotRequest{} }
func (m *GetSnapshotRequest) String() string { return proto.CompactTextString(m) }
func (*GetSnapshotRequest) ProtoMessage() {}
func (*GetSnapshotRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{58}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{58}
}
func (m *GetSnapshotRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetSnapshotRequest.Unmarshal(m, b)
@@ -2660,7 +2668,7 @@ func (m *GetSnapshotResponse) Reset() { *m = GetSnapshotResponse{} }
func (m *GetSnapshotResponse) String() string { return proto.CompactTextString(m) }
func (*GetSnapshotResponse) ProtoMessage() {}
func (*GetSnapshotResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{59}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{59}
}
func (m *GetSnapshotResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetSnapshotResponse.Unmarshal(m, b)
@@ -2700,7 +2708,7 @@ func (m *CreateRepositoryFromSnapshotRequest) Reset() { *m = CreateRepos
func (m *CreateRepositoryFromSnapshotRequest) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromSnapshotRequest) ProtoMessage() {}
func (*CreateRepositoryFromSnapshotRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{60}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{60}
}
func (m *CreateRepositoryFromSnapshotRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromSnapshotRequest.Unmarshal(m, b)
@@ -2751,7 +2759,7 @@ func (m *CreateRepositoryFromSnapshotResponse) Reset() { *m = CreateRepo
func (m *CreateRepositoryFromSnapshotResponse) String() string { return proto.CompactTextString(m) }
func (*CreateRepositoryFromSnapshotResponse) ProtoMessage() {}
func (*CreateRepositoryFromSnapshotResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{61}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{61}
}
func (m *CreateRepositoryFromSnapshotResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateRepositoryFromSnapshotResponse.Unmarshal(m, b)
@@ -2784,7 +2792,7 @@ func (m *GetRawChangesRequest) Reset() { *m = GetRawChangesRequest{} }
func (m *GetRawChangesRequest) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesRequest) ProtoMessage() {}
func (*GetRawChangesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{62}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{62}
}
func (m *GetRawChangesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesRequest.Unmarshal(m, b)
@@ -2836,7 +2844,7 @@ func (m *GetRawChangesResponse) Reset() { *m = GetRawChangesResponse{} }
func (m *GetRawChangesResponse) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesResponse) ProtoMessage() {}
func (*GetRawChangesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{63}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{63}
}
func (m *GetRawChangesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesResponse.Unmarshal(m, b)
@@ -2881,7 +2889,7 @@ func (m *GetRawChangesResponse_RawChange) Reset() { *m = GetRawChangesRe
func (m *GetRawChangesResponse_RawChange) String() string { return proto.CompactTextString(m) }
func (*GetRawChangesResponse_RawChange) ProtoMessage() {}
func (*GetRawChangesResponse_RawChange) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{63, 0}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{63, 0}
}
func (m *GetRawChangesResponse_RawChange) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRawChangesResponse_RawChange.Unmarshal(m, b)
@@ -2970,7 +2978,7 @@ func (m *SearchFilesByNameRequest) Reset() { *m = SearchFilesByNameReque
func (m *SearchFilesByNameRequest) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByNameRequest) ProtoMessage() {}
func (*SearchFilesByNameRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{64}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{64}
}
func (m *SearchFilesByNameRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByNameRequest.Unmarshal(m, b)
@@ -3022,7 +3030,7 @@ func (m *SearchFilesByNameResponse) Reset() { *m = SearchFilesByNameResp
func (m *SearchFilesByNameResponse) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByNameResponse) ProtoMessage() {}
func (*SearchFilesByNameResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{65}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{65}
}
func (m *SearchFilesByNameResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByNameResponse.Unmarshal(m, b)
@@ -3063,7 +3071,7 @@ func (m *SearchFilesByContentRequest) Reset() { *m = SearchFilesByConten
func (m *SearchFilesByContentRequest) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByContentRequest) ProtoMessage() {}
func (*SearchFilesByContentRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{66}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{66}
}
func (m *SearchFilesByContentRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentRequest.Unmarshal(m, b)
@@ -3124,7 +3132,7 @@ func (m *SearchFilesByContentResponse) Reset() { *m = SearchFilesByConte
func (m *SearchFilesByContentResponse) String() string { return proto.CompactTextString(m) }
func (*SearchFilesByContentResponse) ProtoMessage() {}
func (*SearchFilesByContentResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{67}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{67}
}
func (m *SearchFilesByContentResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SearchFilesByContentResponse.Unmarshal(m, b)
@@ -3178,7 +3186,7 @@ func (m *PreFetchRequest) Reset() { *m = PreFetchRequest{} }
func (m *PreFetchRequest) String() string { return proto.CompactTextString(m) }
func (*PreFetchRequest) ProtoMessage() {}
func (*PreFetchRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{68}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{68}
}
func (m *PreFetchRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PreFetchRequest.Unmarshal(m, b)
@@ -3229,7 +3237,7 @@ func (m *PreFetchResponse) Reset() { *m = PreFetchResponse{} }
func (m *PreFetchResponse) String() string { return proto.CompactTextString(m) }
func (*PreFetchResponse) ProtoMessage() {}
func (*PreFetchResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{69}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{69}
}
func (m *PreFetchResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PreFetchResponse.Unmarshal(m, b)
@@ -3253,6 +3261,7 @@ type Remote struct {
Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
HttpAuthorizationHeader string `protobuf:"bytes,3,opt,name=http_authorization_header,json=httpAuthorizationHeader,proto3" json:"http_authorization_header,omitempty"`
+ MirrorRefmaps []string `protobuf:"bytes,4,rep,name=mirror_refmaps,json=mirrorRefmaps,proto3" json:"mirror_refmaps,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -3262,7 +3271,7 @@ func (m *Remote) Reset() { *m = Remote{} }
func (m *Remote) String() string { return proto.CompactTextString(m) }
func (*Remote) ProtoMessage() {}
func (*Remote) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{70}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{70}
}
func (m *Remote) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Remote.Unmarshal(m, b)
@@ -3303,6 +3312,13 @@ func (m *Remote) GetHttpAuthorizationHeader() string {
return ""
}
+func (m *Remote) GetMirrorRefmaps() []string {
+ if m != nil {
+ return m.MirrorRefmaps
+ }
+ return nil
+}
+
type FetchHTTPRemoteRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
Remote *Remote `protobuf:"bytes,2,opt,name=remote,proto3" json:"remote,omitempty"`
@@ -3316,7 +3332,7 @@ func (m *FetchHTTPRemoteRequest) Reset() { *m = FetchHTTPRemoteRequest{}
func (m *FetchHTTPRemoteRequest) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteRequest) ProtoMessage() {}
func (*FetchHTTPRemoteRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{71}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{71}
}
func (m *FetchHTTPRemoteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchHTTPRemoteRequest.Unmarshal(m, b)
@@ -3367,7 +3383,7 @@ func (m *FetchHTTPRemoteResponse) Reset() { *m = FetchHTTPRemoteResponse
func (m *FetchHTTPRemoteResponse) String() string { return proto.CompactTextString(m) }
func (*FetchHTTPRemoteResponse) ProtoMessage() {}
func (*FetchHTTPRemoteResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_repository_service_99ade1ae2bfb8239, []int{72}
+ return fileDescriptor_repository_service_0ca6892fce27f4a0, []int{72}
}
func (m *FetchHTTPRemoteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FetchHTTPRemoteResponse.Unmarshal(m, b)
@@ -4980,178 +4996,181 @@ var _RepositoryService_serviceDesc = grpc.ServiceDesc{
}
func init() {
- proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_99ade1ae2bfb8239)
-}
-
-var fileDescriptor_repository_service_99ade1ae2bfb8239 = []byte{
- // 2698 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x73, 0xdb, 0xc6,
- 0xf5, 0xe7, 0x45, 0x12, 0xc9, 0x43, 0xda, 0xa6, 0x56, 0xb2, 0x45, 0xd2, 0x17, 0xd9, 0xb0, 0x27,
- 0x71, 0x6e, 0x72, 0x22, 0x3f, 0xfc, 0x33, 0xf9, 0xb7, 0xe3, 0xd1, 0x5d, 0x4a, 0x6c, 0x49, 0x81,
- 0xe4, 0x78, 0xea, 0x49, 0x07, 0x03, 0x81, 0x4b, 0x11, 0x11, 0x88, 0x65, 0x80, 0xa5, 0x15, 0xb9,
- 0x33, 0x7d, 0xcb, 0x74, 0x3a, 0xd3, 0x87, 0x3c, 0xf5, 0xf2, 0x1d, 0xfa, 0x09, 0xfa, 0x29, 0xfa,
- 0xde, 0x4f, 0xd0, 0xd7, 0x7e, 0x82, 0xce, 0x5e, 0xb0, 0x0b, 0x10, 0x00, 0xeb, 0x0e, 0x39, 0xe9,
- 0x1b, 0xf6, 0x9c, 0xdd, 0xb3, 0x67, 0xcf, 0x39, 0x7b, 0x76, 0xcf, 0x6f, 0x01, 0xad, 0x00, 0x0f,
- 0x49, 0xe8, 0x52, 0x12, 0x5c, 0x7d, 0x12, 0xe2, 0xe0, 0x8d, 0xeb, 0xe0, 0xb5, 0x61, 0x40, 0x28,
- 0x41, 0x0b, 0xe7, 0x2e, 0xb5, 0xbd, 0xab, 0x4e, 0x23, 0xec, 0xdb, 0x01, 0xee, 0x0a, 0xaa, 0xf1,
- 0x12, 0x56, 0x4c, 0x35, 0x62, 0xe7, 0x07, 0x37, 0xa4, 0xa1, 0x89, 0xbf, 0x1f, 0xe1, 0x90, 0xa2,
- 0x75, 0x00, 0x2d, 0xac, 0x55, 0xbc, 0x5f, 0x7c, 0x5c, 0x5f, 0x47, 0x6b, 0x42, 0xca, 0x9a, 0x1e,
- 0x64, 0xc6, 0x7a, 0x7d, 0xb1, 0xf0, 0xaf, 0x3f, 0x3d, 0x2e, 0x55, 0x4b, 0xc6, 0x3a, 0xb4, 0xd2,
- 0x62, 0xc3, 0x21, 0xf1, 0x43, 0x8c, 0x6e, 0xc1, 0x02, 0xe6, 0x14, 0x2e, 0xb3, 0x6a, 0xca, 0x96,
- 0xf1, 0x0d, 0x1f, 0x63, 0x3b, 0x17, 0x07, 0xbe, 0x13, 0xe0, 0x01, 0xf6, 0xa9, 0xed, 0x4d, 0xaf,
- 0x4b, 0xd1, 0xb8, 0x0d, 0xed, 0x0c, 0xb9, 0x42, 0x19, 0x83, 0xc2, 0xa2, 0x60, 0xee, 0x8e, 0xbc,
- 0x69, 0x66, 0x43, 0x0f, 0xe1, 0x9a, 0x13, 0x60, 0x9b, 0x62, 0xeb, 0xcc, 0xa5, 0x03, 0x7b, 0xd8,
- 0x2a, 0xf1, 0xc5, 0x35, 0x04, 0x71, 0x93, 0xd3, 0x94, 0x4a, 0xcb, 0x80, 0xe2, 0xb3, 0x4a, 0x5d,
- 0x7e, 0x80, 0x9b, 0x7b, 0x76, 0x70, 0x66, 0x9f, 0xe3, 0x2d, 0xe2, 0x79, 0xd8, 0xa1, 0x3f, 0x9b,
- 0x3e, 0x2d, 0xb8, 0x35, 0x3e, 0xb3, 0xd4, 0xe9, 0x39, 0x5c, 0xdf, 0xf2, 0xb0, 0xed, 0x8f, 0x86,
- 0xb3, 0x70, 0xc5, 0x22, 0xdc, 0x50, 0xd2, 0xe4, 0x04, 0x27, 0x70, 0x53, 0x0f, 0x3a, 0x71, 0xdf,
- 0xe2, 0x59, 0x84, 0xdf, 0xc7, 0x70, 0x6b, 0x5c, 0xa8, 0x0c, 0x3e, 0x04, 0x73, 0xa1, 0xfb, 0x16,
- 0x73, 0x79, 0x65, 0x93, 0x7f, 0x1b, 0x21, 0xb4, 0x37, 0x86, 0x43, 0xef, 0x6a, 0xcf, 0xa5, 0x36,
- 0xa5, 0x81, 0x7b, 0x36, 0xa2, 0x78, 0x9a, 0x5d, 0x80, 0x3a, 0x50, 0x0d, 0xf0, 0x1b, 0x37, 0x74,
- 0x89, 0xcf, 0xcd, 0xde, 0x30, 0x55, 0x5b, 0x99, 0xe2, 0x0e, 0x74, 0xb2, 0x26, 0x95, 0x56, 0xf9,
- 0x43, 0x09, 0xd0, 0x2e, 0xa6, 0x4e, 0xdf, 0xc4, 0x03, 0x42, 0xa7, 0xb1, 0x09, 0xdb, 0x6e, 0x01,
- 0x17, 0xc2, 0x55, 0xa9, 0x99, 0xb2, 0x85, 0x96, 0x61, 0xbe, 0x47, 0x02, 0x07, 0xb7, 0xca, 0x3c,
- 0x30, 0x44, 0x03, 0xad, 0x40, 0xc5, 0x27, 0x16, 0xb5, 0xcf, 0xc3, 0xd6, 0x9c, 0xd8, 0x9d, 0x3e,
- 0x39, 0xb5, 0xcf, 0x43, 0xd4, 0x82, 0x0a, 0x75, 0x07, 0x98, 0x8c, 0x68, 0x6b, 0xfe, 0x7e, 0xf1,
- 0xf1, 0xbc, 0x19, 0x35, 0xd9, 0x90, 0x30, 0xec, 0x5b, 0x17, 0xf8, 0xaa, 0xb5, 0x20, 0x66, 0x08,
- 0xc3, 0xfe, 0x57, 0xf8, 0x0a, 0xad, 0x42, 0xfd, 0xc2, 0x27, 0x97, 0xbe, 0xd5, 0x27, 0x6c, 0xb7,
- 0x57, 0x38, 0x13, 0x38, 0x69, 0x9f, 0x51, 0x50, 0x1b, 0xaa, 0x3e, 0xb1, 0x86, 0xc1, 0xc8, 0xc7,
- 0xad, 0x1a, 0x9f, 0xad, 0xe2, 0x93, 0x63, 0xd6, 0x8c, 0xcc, 0xf4, 0xe5, 0x5c, 0xb5, 0xda, 0xac,
- 0x19, 0x37, 0x61, 0x29, 0x61, 0x0d, 0x69, 0xa5, 0x97, 0xb0, 0xb2, 0xc5, 0xc3, 0x39, 0xb6, 0xf4,
- 0x19, 0x44, 0x69, 0x07, 0x5a, 0x69, 0xb1, 0x72, 0xca, 0xdf, 0x95, 0x60, 0x71, 0x0f, 0xd3, 0x8d,
- 0xc0, 0xe9, 0xbb, 0x6f, 0xa6, 0xf2, 0xcb, 0x6d, 0xa8, 0x39, 0x64, 0x30, 0x70, 0xa9, 0xe5, 0x76,
- 0xa5, 0x6b, 0xaa, 0x82, 0x70, 0xd0, 0x65, 0x4e, 0x1b, 0x06, 0xb8, 0xe7, 0xfe, 0xc0, 0xbd, 0x53,
- 0x33, 0x65, 0x0b, 0x7d, 0x0e, 0x0b, 0x3d, 0x12, 0x0c, 0x6c, 0xca, 0xbd, 0x73, 0x7d, 0xfd, 0x7e,
- 0x34, 0x49, 0x4a, 0xa7, 0xb5, 0x5d, 0xde, 0xcf, 0x94, 0xfd, 0x59, 0xe0, 0x0f, 0x6d, 0xda, 0xe7,
- 0xce, 0x6b, 0x98, 0xfc, 0xdb, 0x78, 0x0a, 0x0b, 0xa2, 0x17, 0xaa, 0x40, 0xf9, 0xf5, 0xc1, 0x71,
- 0xb3, 0xc0, 0x3e, 0x4e, 0x37, 0xcc, 0x66, 0x11, 0x01, 0x2c, 0x9c, 0x6e, 0x98, 0xd6, 0xde, 0xeb,
- 0x66, 0x09, 0xd5, 0xa1, 0xc2, 0xbe, 0x37, 0x5f, 0xaf, 0x37, 0xcb, 0x6a, 0x8f, 0x3d, 0x06, 0x14,
- 0x9f, 0x54, 0xef, 0xaf, 0xae, 0x4d, 0x6d, 0x6e, 0x83, 0x86, 0xc9, 0xbf, 0x99, 0x9b, 0xf6, 0xed,
- 0xf0, 0x39, 0x71, 0x6c, 0x6f, 0x33, 0xb0, 0x7d, 0xa7, 0x8f, 0x67, 0x72, 0xc6, 0x7c, 0x0a, 0xad,
- 0xb4, 0x58, 0xa9, 0xc6, 0x32, 0xcc, 0xbf, 0xb1, 0xbd, 0x11, 0x96, 0x47, 0x8c, 0x68, 0x18, 0xff,
- 0x28, 0x42, 0x8b, 0xc7, 0xd1, 0x09, 0x19, 0x05, 0x0e, 0x16, 0xa3, 0xa6, 0xf1, 0xe1, 0x33, 0x58,
- 0x0c, 0xb9, 0x28, 0x2b, 0x36, 0xb4, 0x94, 0x3b, 0xb4, 0x29, 0x3a, 0x9b, 0x89, 0x2c, 0x2d, 0x05,
- 0x9c, 0x71, 0x65, 0xb8, 0xbb, 0x1b, 0x66, 0x23, 0x8c, 0x29, 0x88, 0xee, 0x02, 0x50, 0x3b, 0x38,
- 0xc7, 0xd4, 0x0a, 0x70, 0x8f, 0x3b, 0xbe, 0x61, 0xd6, 0x04, 0xc5, 0xc4, 0x3d, 0x15, 0xb6, 0x4f,
- 0xa1, 0x9d, 0xb1, 0x38, 0x7d, 0xe8, 0x06, 0x38, 0x1c, 0x79, 0x34, 0x3a, 0x74, 0x45, 0xcb, 0x38,
- 0x80, 0xfa, 0x6e, 0xe8, 0x5c, 0xcc, 0x62, 0xdb, 0x3c, 0x82, 0x86, 0x10, 0xa5, 0x7d, 0x80, 0x83,
- 0x80, 0x04, 0x32, 0x16, 0x44, 0xc3, 0xf8, 0x5b, 0x11, 0x6e, 0xbc, 0x0a, 0x5c, 0xb6, 0xb9, 0x7a,
- 0xd3, 0x98, 0xbe, 0x09, 0x65, 0x66, 0x0d, 0x91, 0x5e, 0xd9, 0x67, 0x22, 0xeb, 0x96, 0x93, 0x59,
- 0x17, 0x3d, 0x80, 0x06, 0xf1, 0xba, 0x96, 0xe2, 0x0b, 0x23, 0xd6, 0x89, 0xd7, 0x35, 0xa3, 0x2e,
- 0x2a, 0x1f, 0xce, 0xc7, 0xf2, 0x61, 0x2c, 0x0f, 0x2d, 0x34, 0x2b, 0x46, 0x0b, 0x9a, 0x5a, 0x77,
- 0xb1, 0xcc, 0x2f, 0xe7, 0xaa, 0xc5, 0x66, 0xc9, 0x18, 0xc2, 0xf2, 0xae, 0xeb, 0x77, 0x5f, 0xe0,
- 0xe0, 0x1c, 0x6f, 0xda, 0xe1, 0x54, 0x99, 0xe1, 0x0e, 0xd4, 0x22, 0x45, 0xc3, 0x56, 0xe9, 0x7e,
- 0x99, 0xb9, 0x5b, 0x11, 0x54, 0xf8, 0x7f, 0x04, 0x37, 0xc7, 0x66, 0xd4, 0x5b, 0xf0, 0xcc, 0x0e,
- 0x45, 0xe8, 0xd7, 0x4c, 0xfe, 0x6d, 0xfc, 0x54, 0x84, 0x45, 0x91, 0xd3, 0x76, 0x49, 0x70, 0xf1,
- 0xbf, 0x0c, 0xf9, 0xf8, 0x1d, 0x28, 0xae, 0x91, 0xba, 0x8f, 0xb5, 0x0f, 0x42, 0x13, 0x33, 0xa5,
- 0x0f, 0xfc, 0xe3, 0x80, 0x9c, 0x07, 0x38, 0x0c, 0xa7, 0x4c, 0xb3, 0x01, 0x17, 0x17, 0x4b, 0xb3,
- 0x82, 0x70, 0xd0, 0x55, 0xb6, 0xfc, 0x25, 0x74, 0xb2, 0x66, 0x95, 0x06, 0x5d, 0x85, 0xba, 0xeb,
- 0x5b, 0x43, 0x49, 0x96, 0x1b, 0x08, 0x5c, 0xd5, 0x51, 0x28, 0x7d, 0xf2, 0xfd, 0xc8, 0x0e, 0xfb,
- 0x33, 0x53, 0x3a, 0xe4, 0xe2, 0x62, 0x4a, 0x0b, 0xc2, 0xb8, 0xd2, 0xe9, 0x59, 0xdf, 0x55, 0x69,
- 0x1f, 0xee, 0x8d, 0x9f, 0x72, 0xbb, 0x01, 0x19, 0xbc, 0x34, 0x9f, 0x4f, 0xb9, 0x2d, 0x47, 0x81,
- 0x27, 0x75, 0x66, 0x9f, 0xca, 0xdf, 0x0f, 0x60, 0x35, 0x77, 0x3e, 0xe9, 0xfc, 0xaf, 0x61, 0x49,
- 0x74, 0xd9, 0x1c, 0xf9, 0x5d, 0x6f, 0x26, 0x37, 0xc1, 0x0f, 0x61, 0x39, 0x29, 0x72, 0xc2, 0x39,
- 0x35, 0x00, 0xc4, 0x77, 0xf7, 0x16, 0xf1, 0x7b, 0xee, 0xf9, 0x94, 0xfe, 0xeb, 0x8d, 0x3c, 0xcf,
- 0xe2, 0x27, 0xae, 0xf4, 0x1f, 0x23, 0x1c, 0xdb, 0xb4, 0xaf, 0x0c, 0xf2, 0x11, 0x2c, 0x25, 0xa6,
- 0x9b, 0x98, 0x36, 0x7f, 0x2a, 0x41, 0xf3, 0x04, 0xd3, 0xe9, 0x55, 0xfb, 0x1c, 0x2a, 0xd8, 0xa7,
- 0x81, 0x8b, 0x45, 0x6a, 0xa9, 0xaf, 0xdf, 0x8b, 0x06, 0x8c, 0x8b, 0x5f, 0xdb, 0xf1, 0x69, 0x70,
- 0x65, 0x46, 0xdd, 0x3b, 0x3f, 0x16, 0x61, 0x9e, 0x93, 0x98, 0x93, 0xd9, 0x6d, 0x4f, 0x24, 0x18,
- 0xf6, 0x89, 0xee, 0x42, 0x8d, 0x1f, 0xb1, 0x56, 0x48, 0x03, 0xb1, 0xe0, 0xfd, 0x82, 0x59, 0xe5,
- 0xa4, 0x13, 0x1a, 0xa0, 0x07, 0x50, 0x17, 0x6c, 0xd7, 0xa7, 0x4f, 0xd7, 0x79, 0x76, 0x9e, 0xdf,
- 0x2f, 0x98, 0xc0, 0x89, 0x07, 0x8c, 0x86, 0x56, 0x41, 0xb4, 0xac, 0x33, 0x42, 0x3c, 0x71, 0xf7,
- 0xdc, 0x2f, 0x98, 0x42, 0xea, 0x26, 0x21, 0xde, 0x66, 0x45, 0x1e, 0xe9, 0xca, 0x7e, 0x4b, 0xb0,
- 0x18, 0x53, 0x59, 0x86, 0x10, 0x86, 0xa5, 0x6d, 0xec, 0xe1, 0x59, 0x38, 0x11, 0xc1, 0xdc, 0x05,
- 0xbe, 0x12, 0x66, 0xaa, 0x99, 0xfc, 0x5b, 0xcd, 0x7d, 0x0b, 0x96, 0x93, 0xd3, 0xc8, 0xe9, 0x2f,
- 0x58, 0xad, 0x19, 0x52, 0x12, 0xe0, 0xad, 0x51, 0x48, 0xc9, 0x60, 0x9f, 0x90, 0x8b, 0x70, 0x4a,
- 0x25, 0x78, 0x9c, 0x96, 0x74, 0x9c, 0xc6, 0x4b, 0x88, 0xac, 0xc9, 0xa4, 0x2a, 0xdf, 0x40, 0x6b,
- 0xd3, 0x76, 0x2e, 0x46, 0xc3, 0xd9, 0x68, 0xa2, 0x76, 0xd4, 0x13, 0x68, 0x67, 0xc8, 0x9d, 0xb0,
- 0xad, 0x42, 0x78, 0x90, 0xb5, 0xf1, 0xa7, 0xde, 0xe3, 0x13, 0x6d, 0xf3, 0x08, 0x8c, 0x49, 0x93,
- 0x4a, 0x1b, 0x1d, 0x03, 0x62, 0x67, 0xe8, 0x73, 0xd7, 0xc1, 0x7e, 0x38, 0x93, 0x7c, 0xb3, 0x05,
- 0x4b, 0x09, 0x89, 0xd2, 0x2e, 0x1f, 0x03, 0xf2, 0x04, 0xc9, 0x0a, 0xfb, 0x24, 0xa0, 0x96, 0x6f,
- 0x0f, 0xa2, 0x13, 0xba, 0x29, 0x39, 0x27, 0x8c, 0x71, 0x68, 0x0f, 0xb8, 0xeb, 0xf6, 0x30, 0x3d,
- 0xf0, 0x7b, 0x64, 0x63, 0x16, 0xf5, 0xa8, 0x52, 0xee, 0xff, 0xa1, 0x9d, 0x21, 0x57, 0xaa, 0x78,
- 0x0f, 0x40, 0x17, 0xa2, 0xd2, 0x81, 0x31, 0x0a, 0x53, 0x6a, 0xcb, 0xf6, 0x9c, 0x91, 0x67, 0x53,
- 0xbc, 0xd5, 0xc7, 0xce, 0x45, 0x38, 0x1a, 0xcc, 0x42, 0xa9, 0xff, 0x83, 0x76, 0x86, 0x5c, 0xa9,
- 0x54, 0x07, 0xaa, 0x8e, 0xa4, 0x49, 0x6b, 0xa9, 0x36, 0x73, 0xde, 0x1e, 0xa6, 0x27, 0xbe, 0x3d,
- 0x0c, 0xfb, 0x84, 0xce, 0x42, 0x95, 0x0f, 0x60, 0x29, 0x21, 0x71, 0x42, 0x50, 0xff, 0xa5, 0x08,
- 0x0f, 0xb3, 0x02, 0x6c, 0x06, 0xea, 0xb0, 0xb2, 0xb8, 0x4f, 0xe9, 0xd0, 0xd2, 0x07, 0x69, 0x85,
- 0xb5, 0x5f, 0x06, 0x1e, 0x3b, 0x58, 0x38, 0xcb, 0x1e, 0xd1, 0xbe, 0x2c, 0x0d, 0x79, 0xdf, 0x8d,
- 0x51, 0xec, 0x60, 0x79, 0x0f, 0x1e, 0x4d, 0x56, 0x4d, 0x46, 0xff, 0x9f, 0x8b, 0xb0, 0xbc, 0x87,
- 0xa9, 0x69, 0x5f, 0x6e, 0xf5, 0x6d, 0xff, 0x7c, 0x3a, 0xcc, 0xe3, 0x21, 0x5c, 0xeb, 0x05, 0x64,
- 0x60, 0x25, 0x80, 0x8f, 0x9a, 0xd9, 0x60, 0x44, 0x75, 0xc7, 0x5e, 0x85, 0x3a, 0x25, 0x56, 0xe2,
- 0x96, 0x5e, 0x33, 0x81, 0x12, 0x33, 0x89, 0x8e, 0x94, 0x8c, 0x7f, 0x96, 0xe1, 0xe6, 0x98, 0x6a,
- 0xd2, 0x19, 0xfb, 0x50, 0x0f, 0xec, 0x4b, 0xcb, 0x11, 0xe4, 0x56, 0x91, 0x9f, 0x61, 0xef, 0xc7,
- 0xca, 0xe0, 0xf4, 0x98, 0x35, 0x45, 0x32, 0x21, 0x50, 0xdc, 0xce, 0x8f, 0x65, 0xa8, 0x29, 0x0e,
- 0x5a, 0x81, 0xca, 0x99, 0x47, 0xce, 0xd8, 0x85, 0x4b, 0x04, 0xda, 0x02, 0x6b, 0x1e, 0x74, 0x15,
- 0x62, 0x54, 0xd2, 0x88, 0x11, 0x07, 0x2e, 0xf0, 0xa5, 0x38, 0xde, 0xc5, 0x22, 0x2a, 0x3e, 0xbe,
- 0x64, 0xa7, 0x3b, 0x63, 0xb1, 0x4a, 0x83, 0xb3, 0xe6, 0x04, 0x8b, 0x78, 0x5d, 0xce, 0x3a, 0x82,
- 0x1a, 0x19, 0xe2, 0xc0, 0xa6, 0x6c, 0xed, 0xf3, 0xbc, 0x7e, 0xff, 0xec, 0x1d, 0x15, 0x5f, 0x3b,
- 0x8a, 0x06, 0x9a, 0x5a, 0x06, 0xb3, 0x39, 0xb3, 0x85, 0x16, 0x2a, 0xf0, 0x97, 0x46, 0x60, 0x5f,
- 0xaa, 0xfe, 0x91, 0x42, 0x03, 0xd2, 0xc5, 0x1c, 0x82, 0x99, 0xe7, 0x0a, 0xbd, 0x20, 0x5d, 0xb5,
- 0x0c, 0xce, 0xaa, 0x0a, 0x96, 0x8f, 0x2f, 0x19, 0xcb, 0x70, 0xa1, 0xa6, 0x45, 0xd4, 0xa1, 0xf2,
- 0xf2, 0xf0, 0xab, 0xc3, 0xa3, 0x57, 0x87, 0xcd, 0x02, 0xaa, 0xc1, 0xfc, 0xc6, 0xf6, 0xf6, 0xce,
- 0xb6, 0xc0, 0x08, 0xb6, 0x8e, 0x8e, 0x0f, 0x76, 0xb6, 0x05, 0x46, 0xb0, 0xbd, 0xf3, 0x7c, 0xe7,
- 0x74, 0x67, 0xbb, 0x59, 0x46, 0x0d, 0xa8, 0xbe, 0x38, 0xda, 0x3e, 0xd8, 0x65, 0xac, 0x39, 0xc6,
- 0x32, 0x77, 0x0e, 0x37, 0x5e, 0xec, 0x6c, 0x37, 0xe7, 0x51, 0x13, 0x1a, 0xa7, 0xbf, 0x3a, 0xde,
- 0xb1, 0xb6, 0xf6, 0x37, 0x0e, 0xf7, 0x76, 0xb6, 0x9b, 0x0b, 0xc6, 0x6f, 0xa1, 0x75, 0x82, 0xed,
- 0xc0, 0xe9, 0xef, 0xba, 0x1e, 0x0e, 0x37, 0xaf, 0x58, 0x0a, 0x9c, 0x26, 0x12, 0x97, 0x61, 0xfe,
- 0xfb, 0x11, 0x96, 0x55, 0x49, 0xcd, 0x14, 0x8d, 0xa8, 0x5e, 0x2c, 0xab, 0x7a, 0x51, 0xc5, 0xda,
- 0x67, 0xd0, 0xce, 0x98, 0x5f, 0xdf, 0xc6, 0x7a, 0x8c, 0xcc, 0x03, 0xad, 0x61, 0x8a, 0x86, 0xf1,
- 0xd7, 0x22, 0xdc, 0x4e, 0x8c, 0xd9, 0x22, 0x3e, 0xc5, 0x3e, 0xfd, 0x19, 0xd4, 0x46, 0x1f, 0x40,
- 0xd3, 0xe9, 0x8f, 0xfc, 0x0b, 0xcc, 0xca, 0x59, 0xa1, 0xa5, 0x84, 0xea, 0x6e, 0x48, 0x7a, 0xa4,
- 0xbc, 0x5a, 0xe1, 0x15, 0xdc, 0xc9, 0xd6, 0x56, 0x2e, 0xb2, 0x05, 0x95, 0x81, 0x4d, 0x9d, 0xbe,
- 0x5a, 0x66, 0xd4, 0x44, 0x77, 0x01, 0xf8, 0xa7, 0x15, 0x3b, 0x68, 0x6b, 0x9c, 0xb2, 0x6d, 0x53,
- 0x1b, 0xdd, 0x87, 0x06, 0xf6, 0xbb, 0x16, 0xe9, 0x59, 0x9c, 0x26, 0xa1, 0x44, 0xc0, 0x7e, 0xf7,
- 0xa8, 0xf7, 0x82, 0x51, 0x8c, 0xbf, 0x17, 0xe1, 0xc6, 0x71, 0x80, 0x25, 0x7a, 0x27, 0xac, 0x93,
- 0x59, 0x42, 0x16, 0xff, 0x0b, 0xd4, 0xe4, 0x19, 0x2c, 0x2a, 0x40, 0xe4, 0x5d, 0x6a, 0xd0, 0x08,
- 0x2b, 0x51, 0x02, 0x9e, 0x42, 0x9d, 0x9c, 0x7d, 0x87, 0x1d, 0x6a, 0x0d, 0xd9, 0x6d, 0xb3, 0x9c,
- 0x1c, 0x7a, 0xc4, 0x59, 0xc7, 0x84, 0x78, 0x26, 0x10, 0xf5, 0xad, 0xac, 0x89, 0xa0, 0xa9, 0x57,
- 0x24, 0x53, 0xe9, 0x77, 0xb0, 0x20, 0xb0, 0xc9, 0xa8, 0x00, 0x2a, 0xaa, 0x02, 0x88, 0x25, 0x10,
- 0x7e, 0xda, 0x0b, 0xbf, 0xf2, 0x6f, 0xf4, 0x05, 0xb4, 0x55, 0x1e, 0x27, 0x81, 0xfb, 0x96, 0xef,
- 0x33, 0xab, 0x8f, 0xed, 0x2e, 0x0e, 0x64, 0x46, 0x59, 0x89, 0xf2, 0xba, 0xe2, 0xef, 0x73, 0xb6,
- 0xf1, 0xc7, 0x22, 0xdc, 0xe2, 0xb3, 0xef, 0x9f, 0x9e, 0x1e, 0x4f, 0x8f, 0x0f, 0xbf, 0x97, 0xc0,
- 0x87, 0xeb, 0xeb, 0xd7, 0x75, 0x7f, 0x2e, 0x3a, 0xc2, 0x8b, 0x63, 0x00, 0x70, 0x39, 0x01, 0x00,
- 0x2b, 0xc3, 0xb4, 0x61, 0x25, 0xa5, 0x97, 0xb0, 0xcf, 0xfa, 0xef, 0x5b, 0xfc, 0x9d, 0x25, 0x42,
- 0xe4, 0xc5, 0xc3, 0x14, 0x7a, 0x05, 0xcd, 0xf1, 0x57, 0x22, 0xb4, 0x9a, 0x56, 0x37, 0xf1, 0x2c,
- 0xd5, 0xb9, 0x9f, 0xdf, 0x41, 0x3a, 0xa3, 0x80, 0x5e, 0x47, 0xaf, 0x3a, 0xb1, 0x27, 0x1f, 0x14,
- 0x1f, 0x98, 0xf9, 0xca, 0xd4, 0x79, 0x30, 0xa1, 0x87, 0x92, 0xbd, 0x03, 0xa0, 0xdf, 0x6e, 0x50,
- 0x3b, 0x39, 0x24, 0xf6, 0x8a, 0xd4, 0xe9, 0x64, 0xb1, 0x94, 0x98, 0xaf, 0xe1, 0x7a, 0xf2, 0xc9,
- 0x05, 0xdd, 0x55, 0x67, 0x41, 0xd6, 0x23, 0x50, 0xe7, 0x5e, 0x1e, 0x3b, 0x2e, 0x32, 0xf9, 0xea,
- 0xa1, 0x45, 0x66, 0x3e, 0xb1, 0x68, 0x91, 0xd9, 0x8f, 0x25, 0x46, 0x01, 0xfd, 0x1a, 0x50, 0xfa,
- 0x95, 0x02, 0x29, 0x3b, 0xe5, 0x3e, 0x9b, 0x74, 0x8c, 0x49, 0x5d, 0x94, 0xf8, 0x7d, 0xa8, 0xc7,
- 0x70, 0x7d, 0xa4, 0x2c, 0x96, 0x7e, 0xfa, 0xe8, 0xdc, 0xce, 0xe4, 0x29, 0x49, 0xaf, 0xa0, 0x39,
- 0x7e, 0xe7, 0xd1, 0xa1, 0x94, 0xf3, 0x48, 0xa0, 0x43, 0x29, 0x17, 0xee, 0x2f, 0xa0, 0x3d, 0x00,
- 0x0d, 0x73, 0x6b, 0x77, 0xa7, 0xf0, 0x76, 0xed, 0xee, 0x34, 0x2a, 0x6e, 0x14, 0x3e, 0x2d, 0x32,
- 0x0d, 0xc7, 0xe1, 0x6a, 0xad, 0x61, 0x0e, 0x3e, 0xae, 0x35, 0xcc, 0x43, 0xba, 0x45, 0xb0, 0xa7,
- 0x70, 0x5f, 0x1d, 0xec, 0x79, 0x78, 0xb7, 0x0e, 0xf6, 0x5c, 0xd0, 0xd8, 0x28, 0xa0, 0xa7, 0x30,
- 0xb7, 0x1b, 0x3a, 0x17, 0x68, 0x49, 0x75, 0xd6, 0x60, 0x71, 0x67, 0x39, 0x49, 0x54, 0x83, 0x9e,
- 0x41, 0x35, 0x42, 0x49, 0xd1, 0x4a, 0xd4, 0x67, 0x0c, 0xf3, 0xed, 0xb4, 0xd2, 0x0c, 0x25, 0xe0,
- 0x10, 0xae, 0x25, 0xa0, 0x4d, 0x74, 0x47, 0xcd, 0x94, 0x81, 0xb1, 0x76, 0xee, 0xe6, 0x70, 0xe3,
- 0x5b, 0x56, 0x43, 0x8d, 0xda, 0x87, 0x29, 0x40, 0x54, 0xfb, 0x30, 0x03, 0x99, 0xe4, 0x9b, 0x21,
- 0x8d, 0x12, 0xea, 0xcd, 0x90, 0x8b, 0x5b, 0xea, 0xcd, 0x90, 0x0f, 0x32, 0x46, 0xe2, 0xc7, 0xf1,
- 0xbc, 0xb8, 0xf8, 0x1c, 0x84, 0x31, 0x2e, 0x3e, 0x0f, 0x0e, 0x34, 0x0a, 0xc8, 0x4b, 0x3f, 0x96,
- 0x49, 0xfc, 0x0d, 0xbd, 0x97, 0xb7, 0x0f, 0x92, 0x80, 0x60, 0xe7, 0xfd, 0xff, 0xd8, 0x4f, 0xcd,
- 0xf6, 0x02, 0x1a, 0x71, 0xdc, 0x0d, 0xdd, 0x4e, 0x0e, 0x4d, 0x14, 0xff, 0x9d, 0x3b, 0xd9, 0xcc,
- 0xd8, 0xe6, 0xb9, 0x84, 0x4e, 0x7e, 0x39, 0x8f, 0x3e, 0x98, 0xa4, 0x57, 0x72, 0xaa, 0x0f, 0xdf,
- 0xa5, 0x6b, 0x34, 0xf1, 0xe3, 0x22, 0xcb, 0x50, 0x31, 0x90, 0x4e, 0x67, 0xa8, 0x34, 0x50, 0xa8,
- 0x33, 0x54, 0x06, 0xaa, 0x67, 0x14, 0xd0, 0x26, 0xd4, 0x14, 0x5c, 0x85, 0x5a, 0x79, 0xa0, 0x5b,
- 0xa7, 0x9d, 0xc1, 0x51, 0x32, 0xbe, 0x82, 0x46, 0x1c, 0x76, 0xd2, 0x56, 0xcd, 0xc0, 0xbc, 0xb4,
- 0x55, 0x33, 0x91, 0x2a, 0x91, 0x7c, 0x35, 0x54, 0x11, 0x4b, 0xbe, 0x29, 0x44, 0x24, 0x96, 0x7c,
- 0xd3, 0xd8, 0x86, 0x51, 0x40, 0xdf, 0xf2, 0x37, 0xd1, 0x24, 0xae, 0x80, 0xe2, 0x4f, 0x93, 0x99,
- 0x50, 0x86, 0xce, 0x40, 0xb9, 0xa0, 0x04, 0xf7, 0xfd, 0x6b, 0x58, 0x4c, 0x01, 0x04, 0x5a, 0x7a,
- 0x1e, 0x26, 0xa1, 0xa5, 0xe7, 0xa2, 0x0b, 0x46, 0x01, 0xfd, 0x02, 0x2a, 0xf2, 0x87, 0x04, 0x74,
- 0x4b, 0xf5, 0x4f, 0xfc, 0xef, 0xd0, 0x59, 0x49, 0xd1, 0xd5, 0xe8, 0x2f, 0xa1, 0x1e, 0xc3, 0x0b,
- 0x50, 0xfc, 0x04, 0x18, 0xc3, 0x01, 0xb4, 0x05, 0x33, 0x00, 0x06, 0xbe, 0xca, 0xdf, 0xc0, 0x9d,
- 0x49, 0x45, 0x3b, 0xfa, 0x68, 0x52, 0xe0, 0x8e, 0xcf, 0xf6, 0xf1, 0xbb, 0x75, 0x56, 0x0b, 0x39,
- 0x86, 0x6b, 0x89, 0x02, 0x54, 0x27, 0xdc, 0x2c, 0x7c, 0x40, 0x27, 0xdc, 0xcc, 0xaa, 0x95, 0x2f,
- 0x07, 0xc3, 0x72, 0x56, 0xc9, 0x81, 0x1e, 0xea, 0xf0, 0xce, 0x2d, 0x9f, 0x3a, 0x8f, 0x26, 0x77,
- 0x8a, 0x4d, 0xf3, 0x2d, 0x2c, 0xa6, 0x6a, 0x37, 0x1d, 0x1b, 0x79, 0x65, 0xa5, 0x8e, 0x8d, 0xdc,
- 0xc2, 0x8f, 0x4b, 0xb7, 0x00, 0xa5, 0x01, 0x56, 0x14, 0xbb, 0x25, 0xe6, 0x20, 0xbd, 0x3a, 0x23,
- 0x4f, 0xc0, 0x67, 0x59, 0x76, 0xf9, 0x16, 0x16, 0x53, 0x58, 0xaa, 0x56, 0x3f, 0x0f, 0xbe, 0xd5,
- 0xea, 0xe7, 0x02, 0xb1, 0x5c, 0xfd, 0x67, 0x50, 0x8d, 0x0a, 0x15, 0x7d, 0x0e, 0x8f, 0x15, 0x63,
- 0xfa, 0x1c, 0x4e, 0xd5, 0x34, 0x05, 0x74, 0x0a, 0x37, 0xc6, 0x2e, 0xf4, 0xe8, 0x5e, 0xe2, 0xd6,
- 0x90, 0xaa, 0x40, 0x3a, 0xab, 0xb9, 0xfc, 0x48, 0xea, 0xe6, 0xa7, 0xaf, 0x59, 0x1f, 0xcf, 0x3e,
- 0x5b, 0x73, 0xc8, 0xe0, 0x89, 0xf8, 0xfc, 0x84, 0x04, 0xe7, 0x4f, 0xc4, 0xc8, 0x4f, 0xf8, 0x8f,
- 0x69, 0x4f, 0xce, 0x89, 0x6c, 0x0f, 0xcf, 0xce, 0x16, 0x38, 0xe9, 0xe9, 0xbf, 0x03, 0x00, 0x00,
- 0xff, 0xff, 0x8e, 0xfa, 0x34, 0xf8, 0xdd, 0x26, 0x00, 0x00,
+ proto.RegisterFile("repository-service.proto", fileDescriptor_repository_service_0ca6892fce27f4a0)
+}
+
+var fileDescriptor_repository_service_0ca6892fce27f4a0 = []byte{
+ // 2742 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xdd, 0x72, 0x1b, 0xb7,
+ 0x15, 0xe6, 0x8f, 0x24, 0x92, 0x87, 0xb4, 0x4d, 0x41, 0xb2, 0x45, 0xd2, 0xff, 0x6b, 0x37, 0x71,
+ 0xfe, 0xe4, 0x44, 0xba, 0x68, 0x26, 0x6d, 0xc7, 0xa3, 0x7f, 0x29, 0xb1, 0x25, 0x65, 0x25, 0xc7,
+ 0x53, 0x4f, 0x3a, 0x3b, 0xab, 0x25, 0x28, 0x6e, 0xb5, 0x5c, 0x30, 0x58, 0xd0, 0x8a, 0xd2, 0x99,
+ 0xde, 0x65, 0x3a, 0xbd, 0x4b, 0x6f, 0xfa, 0xf3, 0x0e, 0x7d, 0x82, 0xde, 0xf5, 0x0d, 0x7a, 0xdf,
+ 0x27, 0xe8, 0x6d, 0x9f, 0xa0, 0x03, 0x60, 0x17, 0xd8, 0xe5, 0xee, 0xb2, 0xee, 0x90, 0x93, 0xde,
+ 0x2d, 0xce, 0x01, 0x0e, 0x0e, 0xce, 0x39, 0x38, 0xc0, 0xf9, 0xb0, 0xd0, 0xa2, 0x78, 0x48, 0x02,
+ 0x97, 0x11, 0x7a, 0xf5, 0x51, 0x80, 0xe9, 0x1b, 0xd7, 0xc1, 0xab, 0x43, 0x4a, 0x18, 0x41, 0x0b,
+ 0xe7, 0x2e, 0xb3, 0xbd, 0xab, 0x4e, 0x23, 0xe8, 0xdb, 0x14, 0x77, 0x25, 0xd5, 0x78, 0x09, 0x2b,
+ 0xa6, 0x1a, 0xb1, 0xf3, 0xad, 0x1b, 0xb0, 0xc0, 0xc4, 0xdf, 0x8c, 0x70, 0xc0, 0xd0, 0x1a, 0x80,
+ 0x16, 0xd6, 0x2a, 0x3e, 0x28, 0x3e, 0xa9, 0xaf, 0xa1, 0x55, 0x29, 0x65, 0x55, 0x0f, 0x32, 0x63,
+ 0xbd, 0x3e, 0x5b, 0xf8, 0xf7, 0x9f, 0x9e, 0x94, 0xaa, 0x25, 0x63, 0x0d, 0x5a, 0x69, 0xb1, 0xc1,
+ 0x90, 0xf8, 0x01, 0x46, 0xb7, 0x60, 0x01, 0x0b, 0x8a, 0x90, 0x59, 0x35, 0xc3, 0x96, 0xf1, 0x95,
+ 0x18, 0x63, 0x3b, 0x17, 0x07, 0xbe, 0x43, 0xf1, 0x00, 0xfb, 0xcc, 0xf6, 0xa6, 0xd7, 0xa5, 0x68,
+ 0xdc, 0x86, 0x76, 0x86, 0x5c, 0xa9, 0x8c, 0xc1, 0x60, 0x51, 0x32, 0x77, 0x47, 0xde, 0x34, 0xb3,
+ 0xa1, 0x47, 0x70, 0xcd, 0xa1, 0xd8, 0x66, 0xd8, 0x3a, 0x73, 0xd9, 0xc0, 0x1e, 0xb6, 0x4a, 0x62,
+ 0x71, 0x0d, 0x49, 0xdc, 0x14, 0x34, 0xa5, 0xd2, 0x32, 0xa0, 0xf8, 0xac, 0xa1, 0x2e, 0xdf, 0xc2,
+ 0xcd, 0x3d, 0x9b, 0x9e, 0xd9, 0xe7, 0x78, 0x8b, 0x78, 0x1e, 0x76, 0xd8, 0x8f, 0xa6, 0x4f, 0x0b,
+ 0x6e, 0x8d, 0xcf, 0x1c, 0xea, 0xf4, 0x1c, 0xae, 0x6f, 0x79, 0xd8, 0xf6, 0x47, 0xc3, 0x59, 0xb8,
+ 0x62, 0x11, 0x6e, 0x28, 0x69, 0xe1, 0x04, 0x27, 0x70, 0x53, 0x0f, 0x3a, 0x71, 0xbf, 0xc3, 0xb3,
+ 0x08, 0xbf, 0x0f, 0xe1, 0xd6, 0xb8, 0xd0, 0x30, 0xf8, 0x10, 0xcc, 0x05, 0xee, 0x77, 0x58, 0xc8,
+ 0x2b, 0x9b, 0xe2, 0xdb, 0x08, 0xa0, 0xbd, 0x31, 0x1c, 0x7a, 0x57, 0x7b, 0x2e, 0xb3, 0x19, 0xa3,
+ 0xee, 0xd9, 0x88, 0xe1, 0x69, 0x76, 0x01, 0xea, 0x40, 0x95, 0xe2, 0x37, 0x6e, 0xe0, 0x12, 0x5f,
+ 0x98, 0xbd, 0x61, 0xaa, 0xb6, 0x32, 0xc5, 0x1d, 0xe8, 0x64, 0x4d, 0x1a, 0x5a, 0xe5, 0xef, 0x25,
+ 0x40, 0xbb, 0x98, 0x39, 0x7d, 0x13, 0x0f, 0x08, 0x9b, 0xc6, 0x26, 0x7c, 0xbb, 0x51, 0x21, 0x44,
+ 0xa8, 0x52, 0x33, 0xc3, 0x16, 0x5a, 0x86, 0xf9, 0x1e, 0xa1, 0x0e, 0x6e, 0x95, 0x45, 0x60, 0xc8,
+ 0x06, 0x5a, 0x81, 0x8a, 0x4f, 0x2c, 0x66, 0x9f, 0x07, 0xad, 0x39, 0xb9, 0x3b, 0x7d, 0x72, 0x6a,
+ 0x9f, 0x07, 0xa8, 0x05, 0x15, 0xe6, 0x0e, 0x30, 0x19, 0xb1, 0xd6, 0xfc, 0x83, 0xe2, 0x93, 0x79,
+ 0x33, 0x6a, 0xf2, 0x21, 0x41, 0xd0, 0xb7, 0x2e, 0xf0, 0x55, 0x6b, 0x41, 0xce, 0x10, 0x04, 0xfd,
+ 0x2f, 0xf0, 0x15, 0xba, 0x0f, 0xf5, 0x0b, 0x9f, 0x5c, 0xfa, 0x56, 0x9f, 0xf0, 0xdd, 0x5e, 0x11,
+ 0x4c, 0x10, 0xa4, 0x7d, 0x4e, 0x41, 0x6d, 0xa8, 0xfa, 0xc4, 0x1a, 0xd2, 0x91, 0x8f, 0x5b, 0x35,
+ 0x31, 0x5b, 0xc5, 0x27, 0xc7, 0xbc, 0x89, 0xd6, 0xe1, 0x9a, 0xd4, 0xd3, 0x1a, 0xda, 0xd4, 0x1e,
+ 0x04, 0x2d, 0x10, 0x8b, 0xbd, 0xae, 0x17, 0x2b, 0xec, 0xd2, 0x90, 0x9d, 0x8e, 0x45, 0x9f, 0xc8,
+ 0xb6, 0x9f, 0xcf, 0x55, 0xab, 0xcd, 0x9a, 0x71, 0x13, 0x96, 0x12, 0x26, 0x0c, 0x4d, 0xfb, 0x12,
+ 0x56, 0xb6, 0xc4, 0x1e, 0x88, 0xd9, 0x6b, 0x06, 0xa1, 0xdd, 0x81, 0x56, 0x5a, 0x6c, 0x38, 0xe5,
+ 0xef, 0x4a, 0xb0, 0xb8, 0x87, 0xd9, 0x06, 0x75, 0xfa, 0xee, 0x9b, 0xa9, 0x9c, 0x79, 0x1b, 0x6a,
+ 0x0e, 0x19, 0x0c, 0x5c, 0x66, 0xb9, 0xdd, 0xd0, 0x9f, 0x55, 0x49, 0x38, 0xe8, 0x72, 0x4f, 0x0f,
+ 0x29, 0xee, 0xb9, 0xdf, 0x0a, 0x97, 0xd6, 0xcc, 0xb0, 0x85, 0x3e, 0x85, 0x85, 0x1e, 0xa1, 0x03,
+ 0x9b, 0x09, 0x97, 0x5e, 0x5f, 0x7b, 0x10, 0x4d, 0x92, 0xd2, 0x69, 0x75, 0x57, 0xf4, 0x33, 0xc3,
+ 0xfe, 0x7c, 0xb7, 0x0c, 0x6d, 0xd6, 0x17, 0x1e, 0x6f, 0x98, 0xe2, 0xdb, 0x58, 0x87, 0x05, 0xd9,
+ 0x0b, 0x55, 0xa0, 0xfc, 0xfa, 0xe0, 0xb8, 0x59, 0xe0, 0x1f, 0xa7, 0x1b, 0x66, 0xb3, 0x88, 0x00,
+ 0x16, 0x4e, 0x37, 0x4c, 0x6b, 0xef, 0x75, 0xb3, 0x84, 0xea, 0x50, 0xe1, 0xdf, 0x9b, 0xaf, 0xd7,
+ 0x9a, 0x65, 0xb5, 0x31, 0x9f, 0x00, 0x8a, 0x4f, 0xaa, 0x37, 0x65, 0xd7, 0x66, 0xb6, 0xb0, 0x41,
+ 0xc3, 0x14, 0xdf, 0xdc, 0x4d, 0xfb, 0x76, 0xf0, 0x9c, 0x38, 0xb6, 0xb7, 0x49, 0x6d, 0xdf, 0xe9,
+ 0xe3, 0x99, 0x1c, 0x4c, 0x1f, 0x43, 0x2b, 0x2d, 0x36, 0x54, 0x63, 0x19, 0xe6, 0xdf, 0xd8, 0xde,
+ 0x08, 0x87, 0xe7, 0x92, 0x6c, 0x18, 0xff, 0x2c, 0x42, 0x4b, 0xc4, 0xd1, 0x09, 0x19, 0x51, 0x07,
+ 0xcb, 0x51, 0xd3, 0xf8, 0xf0, 0x19, 0x2c, 0x06, 0x42, 0x94, 0x15, 0x1b, 0x5a, 0xca, 0x1d, 0xda,
+ 0x94, 0x9d, 0xcd, 0x44, 0x6a, 0x0f, 0x05, 0x9c, 0x09, 0x65, 0x84, 0xbb, 0x1b, 0x66, 0x23, 0x88,
+ 0x29, 0x88, 0xee, 0x02, 0x30, 0x9b, 0x9e, 0x63, 0x66, 0x51, 0xdc, 0x13, 0x8e, 0x6f, 0x98, 0x35,
+ 0x49, 0x31, 0x71, 0x4f, 0x85, 0xed, 0x3a, 0xb4, 0x33, 0x16, 0xa7, 0x4f, 0x6a, 0x8a, 0x83, 0x91,
+ 0xc7, 0xa2, 0x93, 0x5a, 0xb6, 0x8c, 0x03, 0xa8, 0xef, 0x06, 0xce, 0xc5, 0x2c, 0xb6, 0xcd, 0x63,
+ 0x68, 0x48, 0x51, 0xda, 0x07, 0x98, 0x52, 0x42, 0xc3, 0x58, 0x90, 0x0d, 0xe3, 0x6f, 0x45, 0xb8,
+ 0xf1, 0x8a, 0xba, 0x7c, 0x73, 0xf5, 0xa6, 0x31, 0x7d, 0x13, 0xca, 0xdc, 0x1a, 0x32, 0x27, 0xf3,
+ 0xcf, 0x44, 0xaa, 0x2e, 0x27, 0x53, 0x35, 0x7a, 0x08, 0x0d, 0xe2, 0x75, 0x2d, 0xc5, 0x97, 0x46,
+ 0xac, 0x13, 0xaf, 0x6b, 0x46, 0x5d, 0x54, 0x12, 0x9d, 0x8f, 0x25, 0xd1, 0x58, 0x1e, 0x5a, 0x68,
+ 0x56, 0x8c, 0x16, 0x34, 0xb5, 0xee, 0x72, 0x99, 0x9f, 0xcf, 0x55, 0x8b, 0xcd, 0x92, 0x31, 0x84,
+ 0xe5, 0x5d, 0xd7, 0xef, 0xbe, 0xc0, 0xf4, 0x1c, 0x6f, 0xda, 0xc1, 0x54, 0x99, 0xe1, 0x0e, 0xd4,
+ 0x22, 0x45, 0x83, 0x56, 0xe9, 0x41, 0x99, 0xbb, 0x5b, 0x11, 0x54, 0xf8, 0x7f, 0x00, 0x37, 0xc7,
+ 0x66, 0xd4, 0x5b, 0xf0, 0xcc, 0x0e, 0x64, 0xe8, 0xd7, 0x4c, 0xf1, 0x6d, 0xfc, 0x50, 0x84, 0x45,
+ 0x99, 0xd3, 0x76, 0x09, 0xbd, 0xf8, 0x7f, 0x86, 0x7c, 0xfc, 0xe2, 0x14, 0xd7, 0x48, 0x5d, 0xe2,
+ 0xda, 0x07, 0x81, 0x89, 0xb9, 0xd2, 0x07, 0xfe, 0x31, 0x25, 0xe7, 0x14, 0x07, 0xc1, 0x94, 0x69,
+ 0x96, 0x0a, 0x71, 0xb1, 0x34, 0x2b, 0x09, 0x07, 0x5d, 0x65, 0xcb, 0x5f, 0x40, 0x27, 0x6b, 0xd6,
+ 0xd0, 0xa0, 0xf7, 0xa1, 0xee, 0xfa, 0xd6, 0x30, 0x24, 0x87, 0x1b, 0x08, 0x5c, 0xd5, 0x51, 0x2a,
+ 0x7d, 0xf2, 0xcd, 0xc8, 0x0e, 0xfa, 0x33, 0x53, 0x3a, 0x10, 0xe2, 0x62, 0x4a, 0x4b, 0xc2, 0xb8,
+ 0xd2, 0xe9, 0x59, 0xdf, 0x56, 0x69, 0x1f, 0xee, 0x8d, 0x9f, 0x72, 0xbb, 0x94, 0x0c, 0x5e, 0x9a,
+ 0xcf, 0xa7, 0xdc, 0x96, 0x23, 0xea, 0x85, 0x3a, 0xf3, 0x4f, 0xe5, 0xef, 0x87, 0x70, 0x3f, 0x77,
+ 0xbe, 0xd0, 0xf9, 0x5f, 0xc2, 0x92, 0xec, 0xb2, 0x39, 0xf2, 0xbb, 0xde, 0x4c, 0xae, 0x8f, 0xef,
+ 0xc3, 0x72, 0x52, 0xe4, 0x84, 0x73, 0x6a, 0x00, 0x48, 0xec, 0xee, 0x2d, 0xe2, 0xf7, 0xdc, 0xf3,
+ 0x29, 0xfd, 0xd7, 0x1b, 0x79, 0x9e, 0x25, 0x4e, 0xdc, 0xd0, 0x7f, 0x9c, 0x70, 0x6c, 0xb3, 0xbe,
+ 0x32, 0xc8, 0x07, 0xb0, 0x94, 0x98, 0x6e, 0x62, 0xda, 0xfc, 0xa1, 0x04, 0xcd, 0x13, 0xcc, 0xa6,
+ 0x57, 0xed, 0x53, 0xa8, 0x60, 0x9f, 0x51, 0x17, 0xcb, 0xd4, 0x52, 0x5f, 0xbb, 0x17, 0x0d, 0x18,
+ 0x17, 0xbf, 0xba, 0xe3, 0x33, 0x7a, 0x65, 0x46, 0xdd, 0x3b, 0xdf, 0x17, 0x61, 0x5e, 0x90, 0xb8,
+ 0x93, 0xf9, 0x15, 0x51, 0x26, 0x18, 0xfe, 0x89, 0xee, 0x42, 0x4d, 0x1c, 0xb1, 0x56, 0xc0, 0xa8,
+ 0x5c, 0xf0, 0x7e, 0xc1, 0xac, 0x0a, 0xd2, 0x09, 0xa3, 0xe8, 0x21, 0xd4, 0x25, 0xdb, 0xf5, 0xd9,
+ 0xfa, 0x9a, 0xc8, 0xce, 0xf3, 0xfb, 0x05, 0x13, 0x04, 0xf1, 0x80, 0xd3, 0xd0, 0x7d, 0x90, 0x2d,
+ 0xeb, 0x8c, 0x10, 0x4f, 0x5e, 0x58, 0xf7, 0x0b, 0xa6, 0x94, 0xba, 0x49, 0x88, 0xb7, 0x59, 0x09,
+ 0x8f, 0x74, 0x65, 0xbf, 0x25, 0x58, 0x8c, 0xa9, 0x1c, 0x86, 0x10, 0x86, 0xa5, 0x6d, 0xec, 0xe1,
+ 0x59, 0x38, 0x11, 0xc1, 0xdc, 0x05, 0xbe, 0x92, 0x66, 0xaa, 0x99, 0xe2, 0x5b, 0xcd, 0x7d, 0x0b,
+ 0x96, 0x93, 0xd3, 0x84, 0xd3, 0x5f, 0xf0, 0x02, 0x35, 0x60, 0x84, 0xe2, 0xad, 0x51, 0xc0, 0xc8,
+ 0x60, 0x9f, 0x90, 0x8b, 0x60, 0x4a, 0x25, 0x44, 0x9c, 0x96, 0x74, 0x9c, 0xc6, 0xeb, 0x8e, 0xac,
+ 0xc9, 0x42, 0x55, 0xbe, 0x82, 0xd6, 0xa6, 0xed, 0x5c, 0x8c, 0x86, 0xb3, 0xd1, 0x44, 0xed, 0xa8,
+ 0xa7, 0xd0, 0xce, 0x90, 0x3b, 0x61, 0x5b, 0x05, 0xf0, 0x30, 0x6b, 0xe3, 0x4f, 0xbd, 0xc7, 0x27,
+ 0xda, 0xe6, 0x31, 0x18, 0x93, 0x26, 0x0d, 0x6d, 0x74, 0x0c, 0x88, 0x9f, 0xa1, 0xcf, 0x5d, 0x07,
+ 0xfb, 0xc1, 0x4c, 0xf2, 0xcd, 0x16, 0x2c, 0x25, 0x24, 0x86, 0x76, 0xf9, 0x10, 0x90, 0x27, 0x49,
+ 0x56, 0xd0, 0x27, 0x94, 0x59, 0xbe, 0x3d, 0x88, 0x4e, 0xe8, 0x66, 0xc8, 0x39, 0xe1, 0x8c, 0x43,
+ 0x7b, 0x20, 0x5c, 0xb7, 0x87, 0xd9, 0x81, 0xdf, 0x23, 0x1b, 0xb3, 0x28, 0x62, 0x95, 0x72, 0x3f,
+ 0x83, 0x76, 0x86, 0xdc, 0x50, 0xc5, 0x7b, 0x00, 0xba, 0x7a, 0x0d, 0x1d, 0x18, 0xa3, 0x70, 0xa5,
+ 0xb6, 0x6c, 0xcf, 0x19, 0x79, 0x36, 0xc3, 0x5b, 0x7d, 0xec, 0x5c, 0x04, 0xa3, 0xc1, 0x2c, 0x94,
+ 0xfa, 0x29, 0xb4, 0x33, 0xe4, 0x86, 0x4a, 0x75, 0xa0, 0xea, 0x84, 0xb4, 0xd0, 0x5a, 0xaa, 0xcd,
+ 0x9d, 0xb7, 0x87, 0xd9, 0x89, 0x6f, 0x0f, 0x83, 0x3e, 0x61, 0xb3, 0x50, 0xe5, 0x3d, 0x58, 0x4a,
+ 0x48, 0x9c, 0x10, 0xd4, 0x7f, 0x29, 0xc2, 0xa3, 0xac, 0x00, 0x9b, 0x81, 0x3a, 0xbc, 0x96, 0xee,
+ 0x33, 0x36, 0xb4, 0xf4, 0x41, 0x5a, 0xe1, 0xed, 0x97, 0xd4, 0xe3, 0x07, 0x8b, 0x60, 0xd9, 0x23,
+ 0xd6, 0x0f, 0x4b, 0x43, 0xd1, 0x77, 0x63, 0x14, 0x3b, 0x58, 0xde, 0x81, 0xc7, 0x93, 0x55, 0x0b,
+ 0xa3, 0xff, 0xcf, 0x45, 0x58, 0xde, 0xc3, 0xcc, 0xb4, 0x2f, 0xb7, 0xfa, 0xb6, 0x7f, 0x3e, 0x1d,
+ 0x50, 0xf2, 0x08, 0xae, 0xf5, 0x28, 0x19, 0x58, 0x09, 0xb4, 0xa4, 0x66, 0x36, 0x38, 0x51, 0xdd,
+ 0xb1, 0xef, 0x43, 0x9d, 0x11, 0x2b, 0x71, 0x4b, 0xaf, 0x99, 0xc0, 0x88, 0x99, 0x84, 0x54, 0x4a,
+ 0xc6, 0xbf, 0xca, 0x70, 0x73, 0x4c, 0xb5, 0xd0, 0x19, 0xfb, 0x50, 0xa7, 0xf6, 0xa5, 0xe5, 0x48,
+ 0x72, 0xab, 0x28, 0xce, 0xb0, 0x77, 0x63, 0x65, 0x70, 0x7a, 0xcc, 0xaa, 0x22, 0x99, 0x40, 0x15,
+ 0xb7, 0xf3, 0x7d, 0x19, 0x6a, 0x8a, 0x83, 0x56, 0xa0, 0x72, 0xe6, 0x91, 0x33, 0x7e, 0xe1, 0x92,
+ 0x81, 0xb6, 0xc0, 0x9b, 0x07, 0x5d, 0x05, 0x33, 0x95, 0x34, 0xcc, 0x24, 0xd0, 0x0e, 0x7c, 0x29,
+ 0x8f, 0x77, 0xb9, 0x88, 0x8a, 0x8f, 0x2f, 0xf9, 0xe9, 0xce, 0x59, 0xbc, 0xd2, 0x10, 0xac, 0x39,
+ 0xc9, 0x22, 0x5e, 0x57, 0xb0, 0x8e, 0xa0, 0x46, 0x86, 0x98, 0xda, 0x8c, 0xaf, 0x7d, 0x5e, 0xd4,
+ 0xef, 0x9f, 0xbc, 0xa5, 0xe2, 0xab, 0x47, 0xd1, 0x40, 0x53, 0xcb, 0xe0, 0x36, 0xe7, 0xb6, 0xd0,
+ 0x42, 0x25, 0x68, 0xd3, 0xa0, 0xf6, 0xa5, 0xea, 0x1f, 0x29, 0x34, 0x20, 0x5d, 0x2c, 0x70, 0x9b,
+ 0x79, 0xa1, 0xd0, 0x0b, 0xd2, 0x55, 0xcb, 0x10, 0xac, 0xaa, 0x64, 0xf9, 0xf8, 0x92, 0xb3, 0x0c,
+ 0x17, 0x6a, 0x5a, 0x44, 0x1d, 0x2a, 0x2f, 0x0f, 0xbf, 0x38, 0x3c, 0x7a, 0x75, 0xd8, 0x2c, 0xa0,
+ 0x1a, 0xcc, 0x6f, 0x6c, 0x6f, 0xef, 0x6c, 0x4b, 0x8c, 0x60, 0xeb, 0xe8, 0xf8, 0x60, 0x67, 0x5b,
+ 0x62, 0x04, 0xdb, 0x3b, 0xcf, 0x77, 0x4e, 0x77, 0xb6, 0x9b, 0x65, 0xd4, 0x80, 0xea, 0x8b, 0xa3,
+ 0xed, 0x83, 0x5d, 0xce, 0x9a, 0xe3, 0x2c, 0x73, 0xe7, 0x70, 0xe3, 0xc5, 0xce, 0x76, 0x73, 0x1e,
+ 0x35, 0xa1, 0x71, 0xfa, 0xcb, 0xe3, 0x1d, 0x6b, 0x6b, 0x7f, 0xe3, 0x70, 0x6f, 0x67, 0xbb, 0xb9,
+ 0x60, 0xfc, 0x16, 0x5a, 0x27, 0xd8, 0xa6, 0x4e, 0x7f, 0xd7, 0xf5, 0x70, 0xb0, 0x79, 0xc5, 0x53,
+ 0xe0, 0x34, 0x91, 0xb8, 0x0c, 0xf3, 0xdf, 0x8c, 0x70, 0x58, 0x95, 0xd4, 0x4c, 0xd9, 0x88, 0xea,
+ 0xc5, 0xb2, 0xaa, 0x17, 0x55, 0xac, 0x7d, 0x02, 0xed, 0x8c, 0xf9, 0xf5, 0x6d, 0xac, 0xc7, 0xc9,
+ 0x22, 0xd0, 0x1a, 0xa6, 0x6c, 0x18, 0x7f, 0x2d, 0xc2, 0xed, 0xc4, 0x98, 0x2d, 0xe2, 0x33, 0xec,
+ 0xb3, 0x1f, 0x41, 0x6d, 0xf4, 0x1e, 0x34, 0x9d, 0xfe, 0xc8, 0xbf, 0xc0, 0xbc, 0x9c, 0x95, 0x5a,
+ 0x86, 0xf8, 0xde, 0x8d, 0x90, 0x1e, 0x29, 0xaf, 0x56, 0x78, 0x05, 0x77, 0xb2, 0xb5, 0x0d, 0x17,
+ 0xd9, 0x82, 0xca, 0xc0, 0x66, 0x4e, 0x5f, 0x2d, 0x33, 0x6a, 0xa2, 0xbb, 0x00, 0xe2, 0xd3, 0x8a,
+ 0x1d, 0xb4, 0x35, 0x41, 0xd9, 0xb6, 0x99, 0x8d, 0x1e, 0x40, 0x03, 0xfb, 0x5d, 0x8b, 0xf4, 0x2c,
+ 0x41, 0x0b, 0xf1, 0x47, 0xc0, 0x7e, 0xf7, 0xa8, 0xf7, 0x82, 0x53, 0x8c, 0x7f, 0x14, 0xe1, 0xc6,
+ 0x31, 0xc5, 0x21, 0x7a, 0x27, 0xad, 0x93, 0x59, 0x42, 0x16, 0xff, 0x07, 0xd4, 0xe4, 0x19, 0x2c,
+ 0x2a, 0x40, 0xe4, 0x6d, 0x6a, 0xd0, 0x08, 0x2b, 0x51, 0x02, 0xd6, 0xa1, 0x4e, 0xce, 0x7e, 0x8d,
+ 0x1d, 0x66, 0x0d, 0xf9, 0x6d, 0xb3, 0x9c, 0x1c, 0x7a, 0x24, 0x58, 0xc7, 0x84, 0x78, 0x26, 0x10,
+ 0xf5, 0xad, 0xac, 0x89, 0xa0, 0xa9, 0x57, 0x14, 0xa6, 0xd2, 0x3f, 0x14, 0x61, 0x41, 0x82, 0x93,
+ 0x51, 0x05, 0x54, 0x54, 0x15, 0x10, 0xcf, 0x20, 0xe2, 0xb8, 0x97, 0x8e, 0x15, 0xdf, 0xe8, 0x33,
+ 0x68, 0xab, 0x44, 0x4e, 0xa8, 0xfb, 0x9d, 0xd8, 0x68, 0x56, 0x1f, 0xdb, 0x5d, 0x4c, 0xc3, 0x94,
+ 0xb2, 0x12, 0x25, 0x76, 0xc5, 0xdf, 0x17, 0x6c, 0xf4, 0x13, 0xb8, 0x3e, 0x70, 0x79, 0x55, 0x60,
+ 0x51, 0xdc, 0x1b, 0xd8, 0xc3, 0xa0, 0x35, 0x27, 0xae, 0xa8, 0xd7, 0x24, 0xd5, 0x94, 0x44, 0xe3,
+ 0x8f, 0x45, 0xb8, 0x25, 0xb4, 0xdc, 0x3f, 0x3d, 0x3d, 0x9e, 0x1e, 0x7c, 0x7e, 0x27, 0x01, 0x3e,
+ 0xa7, 0xf1, 0xdb, 0x08, 0x8c, 0x8e, 0xa1, 0xcb, 0xe5, 0x04, 0xba, 0xac, 0x0c, 0xd8, 0x86, 0x95,
+ 0x94, 0x5e, 0xd2, 0x8e, 0x6b, 0xbf, 0x6f, 0x89, 0x47, 0x9c, 0x08, 0xee, 0x97, 0xaf, 0x5e, 0xe8,
+ 0x15, 0x34, 0xc7, 0x9f, 0xa0, 0xd0, 0xfd, 0xb4, 0xba, 0x89, 0x37, 0xaf, 0xce, 0x83, 0xfc, 0x0e,
+ 0xa1, 0xd3, 0x0a, 0xe8, 0x75, 0xf4, 0x64, 0x14, 0x7b, 0x4f, 0x42, 0xf1, 0x81, 0x99, 0x4f, 0x58,
+ 0x9d, 0x87, 0x13, 0x7a, 0x28, 0xd9, 0x3b, 0x00, 0xfa, 0x61, 0x08, 0xb5, 0x93, 0x43, 0x62, 0x4f,
+ 0x54, 0x9d, 0x4e, 0x16, 0x4b, 0x89, 0xf9, 0x12, 0xae, 0x27, 0xdf, 0x73, 0xd0, 0x5d, 0x75, 0x66,
+ 0x64, 0xbd, 0x30, 0x75, 0xee, 0xe5, 0xb1, 0xe3, 0x22, 0x93, 0x4f, 0x2a, 0x5a, 0x64, 0xe6, 0xfb,
+ 0x8d, 0x16, 0x99, 0xfd, 0x12, 0x63, 0x14, 0xd0, 0xaf, 0x00, 0xa5, 0x9f, 0x40, 0x90, 0xb2, 0x53,
+ 0xee, 0x9b, 0x4c, 0xc7, 0x98, 0xd4, 0x45, 0x89, 0xdf, 0x87, 0x7a, 0x0c, 0xff, 0x47, 0xca, 0x62,
+ 0xe9, 0x77, 0x95, 0xce, 0xed, 0x4c, 0x9e, 0x92, 0xf4, 0x0a, 0x9a, 0xe3, 0x77, 0x23, 0x1d, 0x4a,
+ 0x39, 0x8f, 0x09, 0x3a, 0x94, 0x72, 0x9f, 0x05, 0x0a, 0x68, 0x0f, 0x40, 0xc3, 0xe1, 0xda, 0xdd,
+ 0x29, 0x5c, 0x5e, 0xbb, 0x3b, 0x8d, 0x9e, 0x1b, 0x85, 0x8f, 0x8b, 0x5c, 0xc3, 0x71, 0x58, 0x5b,
+ 0x6b, 0x98, 0x83, 0xa3, 0x6b, 0x0d, 0xf3, 0x10, 0x71, 0x19, 0xec, 0x29, 0x7c, 0x58, 0x07, 0x7b,
+ 0x1e, 0x2e, 0xae, 0x83, 0x3d, 0x17, 0x5c, 0x36, 0x0a, 0x68, 0x1d, 0xe6, 0x76, 0x03, 0xe7, 0x02,
+ 0x2d, 0xa9, 0xce, 0x1a, 0x54, 0xee, 0x2c, 0x27, 0x89, 0x6a, 0xd0, 0x33, 0xa8, 0x46, 0x68, 0x2a,
+ 0x5a, 0x89, 0xfa, 0x8c, 0x61, 0xc3, 0x9d, 0x56, 0x9a, 0xa1, 0x04, 0x1c, 0xc2, 0xb5, 0x04, 0x04,
+ 0x8a, 0xee, 0xa8, 0x99, 0x32, 0xb0, 0xd8, 0xce, 0xdd, 0x1c, 0x6e, 0x7c, 0xcb, 0x6a, 0x48, 0x52,
+ 0xfb, 0x30, 0x05, 0x9c, 0x6a, 0x1f, 0x66, 0x20, 0x98, 0x62, 0x33, 0xa4, 0xd1, 0x44, 0xbd, 0x19,
+ 0x72, 0xf1, 0x4d, 0xbd, 0x19, 0xf2, 0xc1, 0xc8, 0x48, 0xfc, 0x38, 0xee, 0x17, 0x17, 0x9f, 0x83,
+ 0x44, 0xc6, 0xc5, 0xe7, 0xc1, 0x86, 0x46, 0x01, 0x79, 0xe9, 0x47, 0xb5, 0x10, 0xa7, 0x43, 0xef,
+ 0xe4, 0xed, 0x83, 0x24, 0x70, 0xd8, 0x79, 0xf7, 0xbf, 0xf6, 0x53, 0xb3, 0xbd, 0x80, 0x46, 0x1c,
+ 0x9f, 0x43, 0xb7, 0x93, 0x43, 0x13, 0x20, 0x41, 0xe7, 0x4e, 0x36, 0x33, 0xb6, 0x79, 0x2e, 0xa1,
+ 0x93, 0x5f, 0xf6, 0xa3, 0xf7, 0x26, 0xe9, 0x95, 0x9c, 0xea, 0xfd, 0xb7, 0xe9, 0x1a, 0x4d, 0xfc,
+ 0xa4, 0xc8, 0x33, 0x54, 0x0c, 0xcc, 0xd3, 0x19, 0x2a, 0x0d, 0x28, 0xea, 0x0c, 0x95, 0x81, 0xfe,
+ 0x19, 0x05, 0xb4, 0x09, 0x35, 0x05, 0x6b, 0xa1, 0x56, 0x1e, 0x38, 0xd7, 0x69, 0x67, 0x70, 0x94,
+ 0x8c, 0x2f, 0xa0, 0x11, 0x87, 0xa7, 0xb4, 0x55, 0x33, 0xb0, 0x31, 0x6d, 0xd5, 0x4c, 0x44, 0x4b,
+ 0x26, 0x5f, 0x0d, 0x69, 0xc4, 0x92, 0x6f, 0x0a, 0x39, 0x89, 0x25, 0xdf, 0x34, 0x06, 0x62, 0x14,
+ 0xd0, 0xd7, 0xe2, 0xed, 0x34, 0x89, 0x3f, 0xa0, 0xf8, 0x13, 0x66, 0x26, 0xe4, 0xa1, 0x33, 0x50,
+ 0x2e, 0x78, 0x21, 0x7c, 0xff, 0x1a, 0x16, 0x53, 0x40, 0x82, 0x96, 0x9e, 0x87, 0x5d, 0x68, 0xe9,
+ 0xb9, 0x28, 0x84, 0x51, 0x40, 0x3f, 0x87, 0x4a, 0xf8, 0xb7, 0x03, 0xba, 0xa5, 0xfa, 0x27, 0x7e,
+ 0xa6, 0xe8, 0xac, 0xa4, 0xe8, 0x6a, 0xf4, 0xe7, 0x50, 0x8f, 0xe1, 0x0a, 0x28, 0x7e, 0x02, 0x8c,
+ 0xe1, 0x05, 0xda, 0x82, 0x19, 0x40, 0x84, 0x58, 0xe5, 0x6f, 0xe0, 0xce, 0xa4, 0xe2, 0x1e, 0x7d,
+ 0x30, 0x29, 0x70, 0xc7, 0x67, 0xfb, 0xf0, 0xed, 0x3a, 0xab, 0x85, 0x1c, 0xc3, 0xb5, 0x44, 0xa1,
+ 0xaa, 0x13, 0x6e, 0x16, 0x8e, 0xa0, 0x13, 0x6e, 0x66, 0x75, 0x2b, 0x96, 0x83, 0x61, 0x39, 0xab,
+ 0x34, 0x41, 0x8f, 0x74, 0x78, 0xe7, 0x96, 0x59, 0x9d, 0xc7, 0x93, 0x3b, 0xc5, 0xa6, 0xf9, 0x1a,
+ 0x16, 0x53, 0x35, 0x9e, 0x8e, 0x8d, 0xbc, 0xf2, 0x53, 0xc7, 0x46, 0x6e, 0x81, 0x28, 0xa4, 0x5b,
+ 0x80, 0xd2, 0x40, 0x2c, 0x8a, 0xdd, 0x12, 0x73, 0x10, 0x61, 0x9d, 0x91, 0x27, 0xe0, 0xb8, 0x3c,
+ 0xbb, 0x7c, 0x0d, 0x8b, 0x29, 0xcc, 0x55, 0xab, 0x9f, 0x07, 0xf3, 0x6a, 0xf5, 0x73, 0x01, 0x5b,
+ 0xa1, 0xfe, 0x33, 0xa8, 0x46, 0x05, 0x8d, 0x3e, 0x87, 0xc7, 0x8a, 0x36, 0x7d, 0x0e, 0xa7, 0x6a,
+ 0x9f, 0x02, 0x3a, 0x85, 0x1b, 0x63, 0x17, 0x7a, 0x74, 0x2f, 0x71, 0x6b, 0x48, 0x55, 0x20, 0x9d,
+ 0xfb, 0xb9, 0xfc, 0x48, 0xea, 0xe6, 0xc7, 0xaf, 0x79, 0x1f, 0xcf, 0x3e, 0x5b, 0x75, 0xc8, 0xe0,
+ 0xa9, 0xfc, 0xfc, 0x88, 0xd0, 0xf3, 0xa7, 0x72, 0xe4, 0x47, 0xe2, 0xaf, 0xb7, 0xa7, 0xe7, 0x24,
+ 0x6c, 0x0f, 0xcf, 0xce, 0x16, 0x04, 0x69, 0xfd, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x1a,
+ 0xa9, 0x8e, 0x3a, 0x27, 0x00, 0x00,
}
diff --git a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/wiki.pb.go b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/wiki.pb.go
index 5147e2907..521fbb66e 100644
--- a/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/wiki.pb.go
+++ b/vendor/gitlab.com/gitlab-org/gitaly-proto/go/gitalypb/wiki.pb.go
@@ -43,7 +43,30 @@ func (x WikiGetAllPagesRequest_SortBy) String() string {
return proto.EnumName(WikiGetAllPagesRequest_SortBy_name, int32(x))
}
func (WikiGetAllPagesRequest_SortBy) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{15, 0}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{15, 0}
+}
+
+type WikiListPagesRequest_SortBy int32
+
+const (
+ WikiListPagesRequest_TITLE WikiListPagesRequest_SortBy = 0
+ WikiListPagesRequest_CREATED_AT WikiListPagesRequest_SortBy = 1
+)
+
+var WikiListPagesRequest_SortBy_name = map[int32]string{
+ 0: "TITLE",
+ 1: "CREATED_AT",
+}
+var WikiListPagesRequest_SortBy_value = map[string]int32{
+ "TITLE": 0,
+ "CREATED_AT": 1,
+}
+
+func (x WikiListPagesRequest_SortBy) String() string {
+ return proto.EnumName(WikiListPagesRequest_SortBy_name, int32(x))
+}
+func (WikiListPagesRequest_SortBy) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{19, 0}
}
type WikiCommitDetails struct {
@@ -61,7 +84,7 @@ func (m *WikiCommitDetails) Reset() { *m = WikiCommitDetails{} }
func (m *WikiCommitDetails) String() string { return proto.CompactTextString(m) }
func (*WikiCommitDetails) ProtoMessage() {}
func (*WikiCommitDetails) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{0}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{0}
}
func (m *WikiCommitDetails) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiCommitDetails.Unmarshal(m, b)
@@ -128,7 +151,7 @@ func (m *WikiPageVersion) Reset() { *m = WikiPageVersion{} }
func (m *WikiPageVersion) String() string { return proto.CompactTextString(m) }
func (*WikiPageVersion) ProtoMessage() {}
func (*WikiPageVersion) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{1}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{1}
}
func (m *WikiPageVersion) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiPageVersion.Unmarshal(m, b)
@@ -182,7 +205,7 @@ func (m *WikiPage) Reset() { *m = WikiPage{} }
func (m *WikiPage) String() string { return proto.CompactTextString(m) }
func (*WikiPage) ProtoMessage() {}
func (*WikiPage) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{2}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{2}
}
func (m *WikiPage) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiPage.Unmarshal(m, b)
@@ -272,7 +295,7 @@ func (m *WikiGetPageVersionsRequest) Reset() { *m = WikiGetPageVersionsR
func (m *WikiGetPageVersionsRequest) String() string { return proto.CompactTextString(m) }
func (*WikiGetPageVersionsRequest) ProtoMessage() {}
func (*WikiGetPageVersionsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{3}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{3}
}
func (m *WikiGetPageVersionsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiGetPageVersionsRequest.Unmarshal(m, b)
@@ -331,7 +354,7 @@ func (m *WikiGetPageVersionsResponse) Reset() { *m = WikiGetPageVersions
func (m *WikiGetPageVersionsResponse) String() string { return proto.CompactTextString(m) }
func (*WikiGetPageVersionsResponse) ProtoMessage() {}
func (*WikiGetPageVersionsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{4}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{4}
}
func (m *WikiGetPageVersionsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiGetPageVersionsResponse.Unmarshal(m, b)
@@ -376,7 +399,7 @@ func (m *WikiWritePageRequest) Reset() { *m = WikiWritePageRequest{} }
func (m *WikiWritePageRequest) String() string { return proto.CompactTextString(m) }
func (*WikiWritePageRequest) ProtoMessage() {}
func (*WikiWritePageRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{5}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{5}
}
func (m *WikiWritePageRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiWritePageRequest.Unmarshal(m, b)
@@ -442,7 +465,7 @@ func (m *WikiWritePageResponse) Reset() { *m = WikiWritePageResponse{} }
func (m *WikiWritePageResponse) String() string { return proto.CompactTextString(m) }
func (*WikiWritePageResponse) ProtoMessage() {}
func (*WikiWritePageResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{6}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{6}
}
func (m *WikiWritePageResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiWritePageResponse.Unmarshal(m, b)
@@ -487,7 +510,7 @@ func (m *WikiUpdatePageRequest) Reset() { *m = WikiUpdatePageRequest{} }
func (m *WikiUpdatePageRequest) String() string { return proto.CompactTextString(m) }
func (*WikiUpdatePageRequest) ProtoMessage() {}
func (*WikiUpdatePageRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{7}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{7}
}
func (m *WikiUpdatePageRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiUpdatePageRequest.Unmarshal(m, b)
@@ -560,7 +583,7 @@ func (m *WikiUpdatePageResponse) Reset() { *m = WikiUpdatePageResponse{}
func (m *WikiUpdatePageResponse) String() string { return proto.CompactTextString(m) }
func (*WikiUpdatePageResponse) ProtoMessage() {}
func (*WikiUpdatePageResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{8}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{8}
}
func (m *WikiUpdatePageResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiUpdatePageResponse.Unmarshal(m, b)
@@ -600,7 +623,7 @@ func (m *WikiDeletePageRequest) Reset() { *m = WikiDeletePageRequest{} }
func (m *WikiDeletePageRequest) String() string { return proto.CompactTextString(m) }
func (*WikiDeletePageRequest) ProtoMessage() {}
func (*WikiDeletePageRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{9}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{9}
}
func (m *WikiDeletePageRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiDeletePageRequest.Unmarshal(m, b)
@@ -651,7 +674,7 @@ func (m *WikiDeletePageResponse) Reset() { *m = WikiDeletePageResponse{}
func (m *WikiDeletePageResponse) String() string { return proto.CompactTextString(m) }
func (*WikiDeletePageResponse) ProtoMessage() {}
func (*WikiDeletePageResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{10}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{10}
}
func (m *WikiDeletePageResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiDeletePageResponse.Unmarshal(m, b)
@@ -685,7 +708,7 @@ func (m *WikiFindPageRequest) Reset() { *m = WikiFindPageRequest{} }
func (m *WikiFindPageRequest) String() string { return proto.CompactTextString(m) }
func (*WikiFindPageRequest) ProtoMessage() {}
func (*WikiFindPageRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{11}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{11}
}
func (m *WikiFindPageRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiFindPageRequest.Unmarshal(m, b)
@@ -746,7 +769,7 @@ func (m *WikiFindPageResponse) Reset() { *m = WikiFindPageResponse{} }
func (m *WikiFindPageResponse) String() string { return proto.CompactTextString(m) }
func (*WikiFindPageResponse) ProtoMessage() {}
func (*WikiFindPageResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{12}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{12}
}
func (m *WikiFindPageResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiFindPageResponse.Unmarshal(m, b)
@@ -787,7 +810,7 @@ func (m *WikiFindFileRequest) Reset() { *m = WikiFindFileRequest{} }
func (m *WikiFindFileRequest) String() string { return proto.CompactTextString(m) }
func (*WikiFindFileRequest) ProtoMessage() {}
func (*WikiFindFileRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{13}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{13}
}
func (m *WikiFindFileRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiFindFileRequest.Unmarshal(m, b)
@@ -843,7 +866,7 @@ func (m *WikiFindFileResponse) Reset() { *m = WikiFindFileResponse{} }
func (m *WikiFindFileResponse) String() string { return proto.CompactTextString(m) }
func (*WikiFindFileResponse) ProtoMessage() {}
func (*WikiFindFileResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{14}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{14}
}
func (m *WikiFindFileResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiFindFileResponse.Unmarshal(m, b)
@@ -906,7 +929,7 @@ func (m *WikiGetAllPagesRequest) Reset() { *m = WikiGetAllPagesRequest{}
func (m *WikiGetAllPagesRequest) String() string { return proto.CompactTextString(m) }
func (*WikiGetAllPagesRequest) ProtoMessage() {}
func (*WikiGetAllPagesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{15}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{15}
}
func (m *WikiGetAllPagesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiGetAllPagesRequest.Unmarshal(m, b)
@@ -968,7 +991,7 @@ func (m *WikiGetAllPagesResponse) Reset() { *m = WikiGetAllPagesResponse
func (m *WikiGetAllPagesResponse) String() string { return proto.CompactTextString(m) }
func (*WikiGetAllPagesResponse) ProtoMessage() {}
func (*WikiGetAllPagesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{16}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{16}
}
func (m *WikiGetAllPagesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiGetAllPagesResponse.Unmarshal(m, b)
@@ -1016,7 +1039,7 @@ func (m *WikiGetFormattedDataRequest) Reset() { *m = WikiGetFormattedDat
func (m *WikiGetFormattedDataRequest) String() string { return proto.CompactTextString(m) }
func (*WikiGetFormattedDataRequest) ProtoMessage() {}
func (*WikiGetFormattedDataRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{17}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{17}
}
func (m *WikiGetFormattedDataRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiGetFormattedDataRequest.Unmarshal(m, b)
@@ -1075,7 +1098,7 @@ func (m *WikiGetFormattedDataResponse) Reset() { *m = WikiGetFormattedDa
func (m *WikiGetFormattedDataResponse) String() string { return proto.CompactTextString(m) }
func (*WikiGetFormattedDataResponse) ProtoMessage() {}
func (*WikiGetFormattedDataResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_wiki_48d6ca74f1924b83, []int{18}
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{18}
}
func (m *WikiGetFormattedDataResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WikiGetFormattedDataResponse.Unmarshal(m, b)
@@ -1102,6 +1125,116 @@ func (m *WikiGetFormattedDataResponse) GetData() []byte {
return nil
}
+type WikiListPagesRequest struct {
+ Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
+ // Passing 0 means no limit is applied
+ Limit uint32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ DirectionDesc bool `protobuf:"varint,3,opt,name=direction_desc,json=directionDesc,proto3" json:"direction_desc,omitempty"`
+ Sort WikiListPagesRequest_SortBy `protobuf:"varint,4,opt,name=sort,proto3,enum=gitaly.WikiListPagesRequest_SortBy" json:"sort,omitempty"`
+ Offset uint32 `protobuf:"varint,5,opt,name=offset,proto3" json:"offset,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *WikiListPagesRequest) Reset() { *m = WikiListPagesRequest{} }
+func (m *WikiListPagesRequest) String() string { return proto.CompactTextString(m) }
+func (*WikiListPagesRequest) ProtoMessage() {}
+func (*WikiListPagesRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{19}
+}
+func (m *WikiListPagesRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_WikiListPagesRequest.Unmarshal(m, b)
+}
+func (m *WikiListPagesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_WikiListPagesRequest.Marshal(b, m, deterministic)
+}
+func (dst *WikiListPagesRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_WikiListPagesRequest.Merge(dst, src)
+}
+func (m *WikiListPagesRequest) XXX_Size() int {
+ return xxx_messageInfo_WikiListPagesRequest.Size(m)
+}
+func (m *WikiListPagesRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_WikiListPagesRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_WikiListPagesRequest proto.InternalMessageInfo
+
+func (m *WikiListPagesRequest) GetRepository() *Repository {
+ if m != nil {
+ return m.Repository
+ }
+ return nil
+}
+
+func (m *WikiListPagesRequest) GetLimit() uint32 {
+ if m != nil {
+ return m.Limit
+ }
+ return 0
+}
+
+func (m *WikiListPagesRequest) GetDirectionDesc() bool {
+ if m != nil {
+ return m.DirectionDesc
+ }
+ return false
+}
+
+func (m *WikiListPagesRequest) GetSort() WikiListPagesRequest_SortBy {
+ if m != nil {
+ return m.Sort
+ }
+ return WikiListPagesRequest_TITLE
+}
+
+func (m *WikiListPagesRequest) GetOffset() uint32 {
+ if m != nil {
+ return m.Offset
+ }
+ return 0
+}
+
+// The WikiListPagesResponse stream is a concatenation of WikiPage streams without content
+type WikiListPagesResponse struct {
+ Page *WikiPage `protobuf:"bytes,1,opt,name=page,proto3" json:"page,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *WikiListPagesResponse) Reset() { *m = WikiListPagesResponse{} }
+func (m *WikiListPagesResponse) String() string { return proto.CompactTextString(m) }
+func (*WikiListPagesResponse) ProtoMessage() {}
+func (*WikiListPagesResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_wiki_f7e7c472b29d6a0c, []int{20}
+}
+func (m *WikiListPagesResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_WikiListPagesResponse.Unmarshal(m, b)
+}
+func (m *WikiListPagesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_WikiListPagesResponse.Marshal(b, m, deterministic)
+}
+func (dst *WikiListPagesResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_WikiListPagesResponse.Merge(dst, src)
+}
+func (m *WikiListPagesResponse) XXX_Size() int {
+ return xxx_messageInfo_WikiListPagesResponse.Size(m)
+}
+func (m *WikiListPagesResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_WikiListPagesResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_WikiListPagesResponse proto.InternalMessageInfo
+
+func (m *WikiListPagesResponse) GetPage() *WikiPage {
+ if m != nil {
+ return m.Page
+ }
+ return nil
+}
+
func init() {
proto.RegisterType((*WikiCommitDetails)(nil), "gitaly.WikiCommitDetails")
proto.RegisterType((*WikiPageVersion)(nil), "gitaly.WikiPageVersion")
@@ -1122,7 +1255,10 @@ func init() {
proto.RegisterType((*WikiGetAllPagesResponse)(nil), "gitaly.WikiGetAllPagesResponse")
proto.RegisterType((*WikiGetFormattedDataRequest)(nil), "gitaly.WikiGetFormattedDataRequest")
proto.RegisterType((*WikiGetFormattedDataResponse)(nil), "gitaly.WikiGetFormattedDataResponse")
+ proto.RegisterType((*WikiListPagesRequest)(nil), "gitaly.WikiListPagesRequest")
+ proto.RegisterType((*WikiListPagesResponse)(nil), "gitaly.WikiListPagesResponse")
proto.RegisterEnum("gitaly.WikiGetAllPagesRequest_SortBy", WikiGetAllPagesRequest_SortBy_name, WikiGetAllPagesRequest_SortBy_value)
+ proto.RegisterEnum("gitaly.WikiListPagesRequest_SortBy", WikiListPagesRequest_SortBy_name, WikiListPagesRequest_SortBy_value)
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -1145,6 +1281,7 @@ type WikiServiceClient interface {
WikiFindPage(ctx context.Context, in *WikiFindPageRequest, opts ...grpc.CallOption) (WikiService_WikiFindPageClient, error)
WikiFindFile(ctx context.Context, in *WikiFindFileRequest, opts ...grpc.CallOption) (WikiService_WikiFindFileClient, error)
WikiGetAllPages(ctx context.Context, in *WikiGetAllPagesRequest, opts ...grpc.CallOption) (WikiService_WikiGetAllPagesClient, error)
+ WikiListPages(ctx context.Context, in *WikiListPagesRequest, opts ...grpc.CallOption) (WikiService_WikiListPagesClient, error)
WikiGetFormattedData(ctx context.Context, in *WikiGetFormattedDataRequest, opts ...grpc.CallOption) (WikiService_WikiGetFormattedDataClient, error)
}
@@ -1361,8 +1498,40 @@ func (x *wikiServiceWikiGetAllPagesClient) Recv() (*WikiGetAllPagesResponse, err
return m, nil
}
+func (c *wikiServiceClient) WikiListPages(ctx context.Context, in *WikiListPagesRequest, opts ...grpc.CallOption) (WikiService_WikiListPagesClient, error) {
+ stream, err := c.cc.NewStream(ctx, &_WikiService_serviceDesc.Streams[6], "/gitaly.WikiService/WikiListPages", opts...)
+ if err != nil {
+ return nil, err
+ }
+ x := &wikiServiceWikiListPagesClient{stream}
+ if err := x.ClientStream.SendMsg(in); err != nil {
+ return nil, err
+ }
+ if err := x.ClientStream.CloseSend(); err != nil {
+ return nil, err
+ }
+ return x, nil
+}
+
+type WikiService_WikiListPagesClient interface {
+ Recv() (*WikiListPagesResponse, error)
+ grpc.ClientStream
+}
+
+type wikiServiceWikiListPagesClient struct {
+ grpc.ClientStream
+}
+
+func (x *wikiServiceWikiListPagesClient) Recv() (*WikiListPagesResponse, error) {
+ m := new(WikiListPagesResponse)
+ if err := x.ClientStream.RecvMsg(m); err != nil {
+ return nil, err
+ }
+ return m, nil
+}
+
func (c *wikiServiceClient) WikiGetFormattedData(ctx context.Context, in *WikiGetFormattedDataRequest, opts ...grpc.CallOption) (WikiService_WikiGetFormattedDataClient, error) {
- stream, err := c.cc.NewStream(ctx, &_WikiService_serviceDesc.Streams[6], "/gitaly.WikiService/WikiGetFormattedData", opts...)
+ stream, err := c.cc.NewStream(ctx, &_WikiService_serviceDesc.Streams[7], "/gitaly.WikiService/WikiGetFormattedData", opts...)
if err != nil {
return nil, err
}
@@ -1403,6 +1572,7 @@ type WikiServiceServer interface {
WikiFindPage(*WikiFindPageRequest, WikiService_WikiFindPageServer) error
WikiFindFile(*WikiFindFileRequest, WikiService_WikiFindFileServer) error
WikiGetAllPages(*WikiGetAllPagesRequest, WikiService_WikiGetAllPagesServer) error
+ WikiListPages(*WikiListPagesRequest, WikiService_WikiListPagesServer) error
WikiGetFormattedData(*WikiGetFormattedDataRequest, WikiService_WikiGetFormattedDataServer) error
}
@@ -1564,6 +1734,27 @@ func (x *wikiServiceWikiGetAllPagesServer) Send(m *WikiGetAllPagesResponse) erro
return x.ServerStream.SendMsg(m)
}
+func _WikiService_WikiListPages_Handler(srv interface{}, stream grpc.ServerStream) error {
+ m := new(WikiListPagesRequest)
+ if err := stream.RecvMsg(m); err != nil {
+ return err
+ }
+ return srv.(WikiServiceServer).WikiListPages(m, &wikiServiceWikiListPagesServer{stream})
+}
+
+type WikiService_WikiListPagesServer interface {
+ Send(*WikiListPagesResponse) error
+ grpc.ServerStream
+}
+
+type wikiServiceWikiListPagesServer struct {
+ grpc.ServerStream
+}
+
+func (x *wikiServiceWikiListPagesServer) Send(m *WikiListPagesResponse) error {
+ return x.ServerStream.SendMsg(m)
+}
+
func _WikiService_WikiGetFormattedData_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(WikiGetFormattedDataRequest)
if err := stream.RecvMsg(m); err != nil {
@@ -1626,6 +1817,11 @@ var _WikiService_serviceDesc = grpc.ServiceDesc{
ServerStreams: true,
},
{
+ StreamName: "WikiListPages",
+ Handler: _WikiService_WikiListPages_Handler,
+ ServerStreams: true,
+ },
+ {
StreamName: "WikiGetFormattedData",
Handler: _WikiService_WikiGetFormattedData_Handler,
ServerStreams: true,
@@ -1634,75 +1830,79 @@ var _WikiService_serviceDesc = grpc.ServiceDesc{
Metadata: "wiki.proto",
}
-func init() { proto.RegisterFile("wiki.proto", fileDescriptor_wiki_48d6ca74f1924b83) }
-
-var fileDescriptor_wiki_48d6ca74f1924b83 = []byte{
- // 1064 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4b, 0x6f, 0xdb, 0x46,
- 0x10, 0x36, 0x65, 0x3d, 0xa8, 0xb1, 0xad, 0x38, 0xdb, 0x34, 0x66, 0x64, 0xd7, 0x35, 0x98, 0x04,
- 0x75, 0x0f, 0x91, 0x53, 0xe5, 0xd4, 0xa2, 0x87, 0x38, 0xf1, 0x03, 0x01, 0xfa, 0x70, 0x69, 0x35,
- 0x01, 0x7a, 0x21, 0xd6, 0xe4, 0x5a, 0x5e, 0x84, 0x14, 0xd9, 0xe5, 0xca, 0x86, 0x8e, 0xfd, 0x01,
- 0x3d, 0xf7, 0x5c, 0xa0, 0x97, 0x5e, 0xfb, 0x2b, 0xfa, 0x1b, 0xfa, 0x0f, 0x7a, 0x6c, 0x8f, 0x3d,
- 0x15, 0xfb, 0x10, 0xb9, 0xa4, 0x64, 0x15, 0xa9, 0x5b, 0x20, 0x37, 0xce, 0xec, 0xec, 0xec, 0x7c,
- 0xdf, 0xbc, 0x24, 0x80, 0x2b, 0xfa, 0x9a, 0xf6, 0x52, 0x96, 0xf0, 0x04, 0x35, 0x87, 0x94, 0xe3,
- 0x68, 0xd2, 0x5d, 0xcd, 0x2e, 0x30, 0x23, 0xa1, 0xd2, 0xba, 0xdf, 0x5b, 0x70, 0xfb, 0x15, 0x7d,
- 0x4d, 0x9f, 0x27, 0x71, 0x4c, 0xf9, 0x01, 0xe1, 0x98, 0x46, 0x19, 0x42, 0x50, 0x1f, 0xe1, 0x98,
- 0x38, 0xd6, 0x8e, 0xb5, 0xbb, 0xea, 0xc9, 0x6f, 0x74, 0x07, 0x1a, 0x24, 0xc6, 0x34, 0x72, 0x6a,
- 0x52, 0xa9, 0x04, 0xe4, 0x40, 0x2b, 0x26, 0x59, 0x86, 0x87, 0xc4, 0x59, 0x96, 0xfa, 0xa9, 0x88,
- 0x36, 0xa0, 0x35, 0xce, 0x08, 0xf3, 0x69, 0xe8, 0xd4, 0x77, 0xac, 0xdd, 0x86, 0xd7, 0x14, 0xe2,
- 0x8b, 0x10, 0x6d, 0x42, 0x5b, 0x1e, 0xc8, 0x17, 0x1a, 0xf2, 0x92, 0x2d, 0x14, 0x5f, 0xe0, 0x98,
- 0xb8, 0x03, 0xb8, 0x25, 0xc2, 0x39, 0xc1, 0x43, 0xf2, 0x92, 0xb0, 0x8c, 0x26, 0x23, 0xf4, 0x21,
- 0x34, 0x03, 0x19, 0x9d, 0x0c, 0x67, 0xa5, 0x7f, 0xbb, 0xa7, 0x90, 0xf4, 0x8e, 0x29, 0x57, 0x61,
- 0x7b, 0xda, 0x00, 0xdd, 0x85, 0xe6, 0x79, 0xc2, 0x62, 0xcc, 0x65, 0x90, 0x6d, 0x4f, 0x4b, 0xee,
- 0xef, 0x16, 0xd8, 0x53, 0xb7, 0xe8, 0x23, 0x68, 0x5d, 0x2a, 0xd7, 0xda, 0xe1, 0xc6, 0xd4, 0x61,
- 0xe5, 0x65, 0x6f, 0x6a, 0x77, 0x9d, 0x5f, 0xc1, 0x09, 0xa7, 0x3c, 0x9a, 0x62, 0x57, 0x02, 0xba,
- 0x07, 0xf6, 0x98, 0x45, 0x7e, 0x8a, 0xf9, 0x85, 0x84, 0xde, 0xf6, 0x5a, 0x63, 0x16, 0x9d, 0x60,
- 0x7e, 0x21, 0x88, 0x95, 0x6a, 0x05, 0x5b, 0x7e, 0xe7, 0x64, 0x37, 0x0d, 0xb2, 0xb7, 0x01, 0x2e,
- 0x68, 0xc6, 0x13, 0x46, 0x03, 0x1c, 0x39, 0xad, 0x1d, 0x6b, 0xd7, 0xf6, 0x0c, 0x8d, 0x78, 0x82,
- 0xe1, 0x2b, 0x3f, 0xc4, 0x1c, 0x3b, 0xb6, 0xe2, 0x9d, 0xe1, 0xab, 0x03, 0xcc, 0xb1, 0xfb, 0x93,
- 0x05, 0x5d, 0x01, 0xe4, 0x98, 0x70, 0x03, 0x4b, 0xe6, 0x91, 0x6f, 0xc7, 0x24, 0xe3, 0xa8, 0x0f,
- 0xc0, 0x48, 0x9a, 0x64, 0x94, 0x27, 0x6c, 0xa2, 0x09, 0x40, 0x53, 0x02, 0xbc, 0xfc, 0xc4, 0x33,
- 0xac, 0x44, 0xc6, 0x52, 0x3c, 0x24, 0x0a, 0x91, 0x4a, 0xbf, 0x2d, 0x14, 0x05, 0x24, 0x9d, 0xfe,
- 0x86, 0x27, 0xbf, 0x45, 0x78, 0x29, 0x61, 0xbe, 0xd4, 0xab, 0xe4, 0xb7, 0x52, 0xc2, 0x44, 0x38,
- 0x9f, 0x34, 0xff, 0xfc, 0x61, 0xb7, 0x66, 0xd7, 0x5c, 0x0f, 0x36, 0xe7, 0x46, 0x99, 0xa5, 0xc9,
- 0x28, 0x23, 0xe8, 0x09, 0xd8, 0x9a, 0xfc, 0xcc, 0xb1, 0x76, 0x96, 0x17, 0x65, 0x29, 0x37, 0x74,
- 0x7f, 0xb3, 0xe0, 0x8e, 0x38, 0x7d, 0xc5, 0x28, 0x27, 0xc2, 0xe4, 0x26, 0xa0, 0xa7, 0x69, 0xa9,
- 0x19, 0x69, 0x29, 0xea, 0x60, 0xb9, 0x54, 0x07, 0x4f, 0xa1, 0xa3, 0x2a, 0xd0, 0x0f, 0x55, 0x07,
- 0x49, 0xd4, 0x2b, 0xfd, 0x7b, 0x66, 0xcc, 0xa5, 0x16, 0xf3, 0xd6, 0x82, 0x52, 0xc7, 0x39, 0xd0,
- 0x0a, 0x92, 0x11, 0x27, 0x23, 0xae, 0x6b, 0x63, 0x2a, 0x6a, 0xc2, 0x2c, 0xf7, 0x29, 0xbc, 0x5b,
- 0xc1, 0xa6, 0xa9, 0xfa, 0x00, 0x6e, 0x85, 0xe3, 0x34, 0xa2, 0x01, 0xe6, 0xc4, 0x27, 0x8c, 0x25,
- 0x4c, 0xf7, 0x6d, 0x27, 0x57, 0x1f, 0x0a, 0xad, 0xfb, 0x97, 0xa5, 0x5c, 0x7c, 0x9d, 0x86, 0xf8,
- 0xe6, 0xfc, 0x2c, 0x2c, 0x8a, 0xf9, 0x8d, 0x51, 0xd0, 0x57, 0xff, 0x07, 0xfa, 0x1a, 0xff, 0x9e,
- 0xbe, 0xe6, 0x7c, 0xfa, 0x7a, 0x70, 0xb7, 0x8a, 0x5d, 0xf3, 0x27, 0x06, 0x9b, 0xc1, 0x9a, 0x12,
- 0xdc, 0x5f, 0x34, 0x59, 0x07, 0x24, 0x22, 0xff, 0x33, 0x59, 0xb3, 0xf0, 0x97, 0xdf, 0x0c, 0x7e,
- 0x0e, 0xd2, 0x51, 0x20, 0xcd, 0x98, 0x15, 0x48, 0xf7, 0x47, 0x0b, 0xde, 0x11, 0x47, 0x47, 0x74,
- 0x14, 0xde, 0x14, 0x4c, 0x9e, 0xdc, 0x9a, 0x99, 0xdc, 0x2e, 0xd8, 0x8c, 0x5c, 0x52, 0x39, 0x57,
- 0x55, 0xd6, 0x73, 0x19, 0x6d, 0x41, 0x3b, 0xa4, 0x8c, 0x04, 0xf2, 0x91, 0xba, 0x3c, 0x2c, 0x14,
- 0xf9, 0x48, 0xf8, 0x54, 0x75, 0x6f, 0x11, 0xa2, 0x4e, 0xd0, 0x03, 0x3d, 0x61, 0x54, 0x74, 0xeb,
- 0xd5, 0x39, 0xa0, 0x66, 0x8e, 0xfb, 0x9d, 0x81, 0xf0, 0x88, 0x46, 0xff, 0x79, 0xef, 0x2f, 0xc0,
- 0x97, 0x23, 0xb8, 0x2c, 0x10, 0xa8, 0x10, 0x34, 0x82, 0x79, 0xfb, 0x74, 0x13, 0xda, 0x31, 0x8d,
- 0x89, 0xcf, 0x27, 0x29, 0xd1, 0x6b, 0xc5, 0x16, 0x8a, 0xc1, 0x24, 0x25, 0xa5, 0xf9, 0xbe, 0x5c,
- 0x9a, 0xef, 0xf9, 0x0a, 0xa9, 0x17, 0x2b, 0xc4, 0xfd, 0xc3, 0x52, 0x89, 0x3f, 0x26, 0x7c, 0x3f,
- 0x8a, 0x04, 0x29, 0xd9, 0x0d, 0x13, 0x1c, 0x51, 0xb1, 0x70, 0x45, 0x58, 0x6b, 0x9e, 0x12, 0xd0,
- 0x43, 0xe8, 0xa8, 0x9c, 0xd1, 0x64, 0xe4, 0x87, 0x24, 0x0b, 0x64, 0x64, 0xb6, 0xb7, 0x96, 0x6b,
- 0x0f, 0x48, 0x16, 0xa0, 0x8f, 0xa1, 0x9e, 0x25, 0x4c, 0xb5, 0x78, 0xa7, 0xff, 0xd0, 0xcc, 0xd6,
- 0x6c, 0x78, 0xbd, 0xd3, 0x84, 0xf1, 0x67, 0x13, 0x4f, 0x5e, 0x71, 0xef, 0x43, 0x53, 0xc9, 0xa8,
- 0x0d, 0x8d, 0xc1, 0x8b, 0xc1, 0x67, 0x87, 0xeb, 0x4b, 0xa8, 0x03, 0xf0, 0xdc, 0x3b, 0xdc, 0x1f,
- 0x1c, 0x1e, 0xf8, 0xfb, 0x83, 0x75, 0x2b, 0xe7, 0xda, 0x87, 0x8d, 0x19, 0x9f, 0x6f, 0x52, 0x30,
- 0x68, 0x1b, 0x56, 0xc8, 0x28, 0xf4, 0x93, 0x73, 0xb5, 0xa7, 0x6a, 0x12, 0x4c, 0x9b, 0x8c, 0xc2,
- 0x2f, 0xcf, 0x85, 0x95, 0xfb, 0xb3, 0x95, 0xaf, 0xa8, 0x23, 0x39, 0xa7, 0x38, 0x09, 0x45, 0x06,
- 0xde, 0xc6, 0xd6, 0xe9, 0xc3, 0xd6, 0xfc, 0x50, 0x8b, 0x02, 0x94, 0xb5, 0xa4, 0x0b, 0x50, 0x7c,
- 0xf7, 0x7f, 0x6d, 0xc0, 0x8a, 0xb8, 0x74, 0x4a, 0xd8, 0x25, 0x0d, 0x08, 0x3a, 0x53, 0xfd, 0x53,
- 0xd9, 0xc8, 0xc8, 0xad, 0x64, 0x70, 0xce, 0x8f, 0x8a, 0xee, 0xfd, 0x85, 0x36, 0x7a, 0x04, 0x2d,
- 0x3d, 0xb6, 0xd0, 0x09, 0xac, 0x95, 0x96, 0x18, 0xda, 0x32, 0x6f, 0x56, 0xf7, 0x76, 0xf7, 0xbd,
- 0x6b, 0x4e, 0xa7, 0x1e, 0x77, 0x2d, 0x74, 0x0a, 0x9d, 0xf2, 0x5c, 0x47, 0xa5, 0x4b, 0x33, 0xbb,
- 0xae, 0xbb, 0x7d, 0xdd, 0xb1, 0xe1, 0xf4, 0x2b, 0xe5, 0xb4, 0x98, 0xa3, 0x65, 0xa7, 0x33, 0x3b,
- 0xa1, 0xec, 0x74, 0xce, 0xf8, 0x5d, 0x42, 0x9f, 0xc3, 0xaa, 0x39, 0xdc, 0xd0, 0xa6, 0x79, 0xa3,
- 0x32, 0x95, 0xbb, 0x5b, 0xf3, 0x0f, 0x0d, 0x22, 0x0d, 0x77, 0x62, 0xd2, 0xcc, 0xba, 0x33, 0x46,
- 0xe0, 0xac, 0x3b, 0x73, 0x38, 0x49, 0x77, 0x2f, 0xd5, 0xcf, 0x6e, 0xa3, 0x99, 0xd0, 0xf6, 0xe2,
- 0xce, 0xed, 0xbe, 0x7f, 0xed, 0xb9, 0xe1, 0x97, 0xa8, 0x81, 0x58, 0xad, 0x4b, 0x54, 0x2d, 0x98,
- 0x79, 0x0d, 0xd6, 0x7d, 0xb0, 0xd8, 0xa8, 0x78, 0xe6, 0xd9, 0xe3, 0x6f, 0x84, 0x69, 0x84, 0xcf,
- 0x7a, 0x41, 0x12, 0xef, 0xa9, 0xcf, 0x47, 0x09, 0x1b, 0xee, 0x29, 0x07, 0x8f, 0xe4, 0x7f, 0x9d,
- 0xbd, 0x61, 0xa2, 0xe5, 0xf4, 0xec, 0xac, 0x29, 0x55, 0x4f, 0xfe, 0x0e, 0x00, 0x00, 0xff, 0xff,
- 0xce, 0x01, 0x69, 0x5b, 0x22, 0x0d, 0x00, 0x00,
+func init() { proto.RegisterFile("wiki.proto", fileDescriptor_wiki_f7e7c472b29d6a0c) }
+
+var fileDescriptor_wiki_f7e7c472b29d6a0c = []byte{
+ // 1126 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcd, 0x6f, 0xdc, 0x44,
+ 0x14, 0x8f, 0x37, 0xfb, 0xe1, 0x7d, 0x49, 0xb6, 0xe9, 0x50, 0x1a, 0x77, 0x13, 0x42, 0xe4, 0xb4,
+ 0x22, 0x1c, 0xba, 0x29, 0xdb, 0x03, 0x02, 0x81, 0xd4, 0xb4, 0xf9, 0x50, 0xa5, 0x02, 0xc1, 0x59,
+ 0x5a, 0x89, 0x8b, 0x35, 0xb1, 0x27, 0x9b, 0x51, 0xed, 0xb5, 0x19, 0x4f, 0x12, 0xe5, 0xc8, 0x81,
+ 0x23, 0x67, 0x24, 0x6e, 0x48, 0x5c, 0xb8, 0xf2, 0xe7, 0xf0, 0x1f, 0x70, 0x84, 0x23, 0x27, 0x34,
+ 0x1f, 0x6b, 0x8f, 0xbd, 0x9b, 0x45, 0x21, 0x20, 0xb8, 0xf9, 0xbd, 0x99, 0x79, 0xf3, 0x7e, 0xbf,
+ 0xf7, 0x35, 0x06, 0xb8, 0xa0, 0xaf, 0x69, 0x2f, 0x65, 0x09, 0x4f, 0x50, 0x73, 0x48, 0x39, 0x8e,
+ 0x2e, 0xbb, 0x8b, 0xd9, 0x29, 0x66, 0x24, 0x54, 0x5a, 0xf7, 0x5b, 0x0b, 0x6e, 0xbf, 0xa2, 0xaf,
+ 0xe9, 0xb3, 0x24, 0x8e, 0x29, 0xdf, 0x25, 0x1c, 0xd3, 0x28, 0x43, 0x08, 0xea, 0x23, 0x1c, 0x13,
+ 0xc7, 0xda, 0xb0, 0xb6, 0x16, 0x3d, 0xf9, 0x8d, 0xee, 0x40, 0x83, 0xc4, 0x98, 0x46, 0x4e, 0x4d,
+ 0x2a, 0x95, 0x80, 0x1c, 0x68, 0xc5, 0x24, 0xcb, 0xf0, 0x90, 0x38, 0xf3, 0x52, 0x3f, 0x16, 0xd1,
+ 0x0a, 0xb4, 0xce, 0x32, 0xc2, 0x7c, 0x1a, 0x3a, 0xf5, 0x0d, 0x6b, 0xab, 0xe1, 0x35, 0x85, 0xf8,
+ 0x3c, 0x44, 0xab, 0xd0, 0x96, 0x0b, 0xf2, 0x86, 0x86, 0x3c, 0x64, 0x0b, 0xc5, 0xa7, 0x38, 0x26,
+ 0xee, 0x00, 0x6e, 0x09, 0x77, 0x0e, 0xf1, 0x90, 0xbc, 0x24, 0x2c, 0xa3, 0xc9, 0x08, 0xbd, 0x0b,
+ 0xcd, 0x40, 0x7a, 0x27, 0xdd, 0x59, 0xe8, 0xdf, 0xee, 0x29, 0x24, 0xbd, 0x03, 0xca, 0x95, 0xdb,
+ 0x9e, 0xde, 0x80, 0xee, 0x42, 0xf3, 0x24, 0x61, 0x31, 0xe6, 0xd2, 0xc9, 0xb6, 0xa7, 0x25, 0xf7,
+ 0x57, 0x0b, 0xec, 0xb1, 0x59, 0xf4, 0x1e, 0xb4, 0xce, 0x95, 0x69, 0x6d, 0x70, 0x65, 0x6c, 0xb0,
+ 0x72, 0xb3, 0x37, 0xde, 0x77, 0x95, 0x5d, 0xc1, 0x09, 0xa7, 0x3c, 0x1a, 0x63, 0x57, 0x02, 0xba,
+ 0x07, 0xf6, 0x19, 0x8b, 0xfc, 0x14, 0xf3, 0x53, 0x09, 0xbd, 0xed, 0xb5, 0xce, 0x58, 0x74, 0x88,
+ 0xf9, 0xa9, 0x20, 0x56, 0xaa, 0x15, 0x6c, 0xf9, 0x9d, 0x93, 0xdd, 0x34, 0xc8, 0x5e, 0x07, 0x38,
+ 0xa5, 0x19, 0x4f, 0x18, 0x0d, 0x70, 0xe4, 0xb4, 0x36, 0xac, 0x2d, 0xdb, 0x33, 0x34, 0xe2, 0x0a,
+ 0x86, 0x2f, 0xfc, 0x10, 0x73, 0xec, 0xd8, 0x8a, 0x77, 0x86, 0x2f, 0x76, 0x31, 0xc7, 0xee, 0x8f,
+ 0x16, 0x74, 0x05, 0x90, 0x03, 0xc2, 0x0d, 0x2c, 0x99, 0x47, 0xbe, 0x3a, 0x23, 0x19, 0x47, 0x7d,
+ 0x00, 0x46, 0xd2, 0x24, 0xa3, 0x3c, 0x61, 0x97, 0x9a, 0x00, 0x34, 0x26, 0xc0, 0xcb, 0x57, 0x3c,
+ 0x63, 0x97, 0x88, 0x58, 0x8a, 0x87, 0x44, 0x21, 0x52, 0xe1, 0xb7, 0x85, 0xa2, 0x80, 0xa4, 0xc3,
+ 0xdf, 0xf0, 0xe4, 0xb7, 0x70, 0x2f, 0x25, 0xcc, 0x97, 0x7a, 0x15, 0xfc, 0x56, 0x4a, 0x98, 0x70,
+ 0xe7, 0xc3, 0xe6, 0xef, 0xdf, 0x6d, 0xd5, 0xec, 0x9a, 0xeb, 0xc1, 0xea, 0x54, 0x2f, 0xb3, 0x34,
+ 0x19, 0x65, 0x04, 0x3d, 0x06, 0x5b, 0x93, 0x9f, 0x39, 0xd6, 0xc6, 0xfc, 0xac, 0x28, 0xe5, 0x1b,
+ 0xdd, 0x5f, 0x2c, 0xb8, 0x23, 0x56, 0x5f, 0x31, 0xca, 0x89, 0xd8, 0x72, 0x13, 0xd0, 0xe3, 0xb0,
+ 0xd4, 0x8c, 0xb0, 0x14, 0x79, 0x30, 0x5f, 0xca, 0x83, 0x27, 0xd0, 0x51, 0x19, 0xe8, 0x87, 0xaa,
+ 0x82, 0x24, 0xea, 0x85, 0xfe, 0x3d, 0xd3, 0xe7, 0x52, 0x89, 0x79, 0x4b, 0x41, 0xa9, 0xe2, 0x1c,
+ 0x68, 0x05, 0xc9, 0x88, 0x93, 0x11, 0xd7, 0xb9, 0x31, 0x16, 0x35, 0x61, 0x96, 0xfb, 0x04, 0xde,
+ 0xac, 0x60, 0xd3, 0x54, 0xbd, 0x03, 0xb7, 0xc2, 0xb3, 0x34, 0xa2, 0x01, 0xe6, 0xc4, 0x27, 0x8c,
+ 0x25, 0x4c, 0xd7, 0x6d, 0x27, 0x57, 0xef, 0x09, 0xad, 0xfb, 0x87, 0xa5, 0x4c, 0x7c, 0x91, 0x86,
+ 0xf8, 0xe6, 0xfc, 0xcc, 0x4c, 0x8a, 0xe9, 0x85, 0x51, 0xd0, 0x57, 0xff, 0x0b, 0xfa, 0x1a, 0x7f,
+ 0x9f, 0xbe, 0xe6, 0x74, 0xfa, 0x7a, 0x70, 0xb7, 0x8a, 0x5d, 0xf3, 0x27, 0x1a, 0x9b, 0xc1, 0x9a,
+ 0x12, 0xdc, 0x9f, 0x35, 0x59, 0xbb, 0x24, 0x22, 0xff, 0x32, 0x59, 0x93, 0xf0, 0xe7, 0xaf, 0x07,
+ 0x3f, 0x07, 0xe9, 0x28, 0x90, 0xa6, 0xcf, 0x0a, 0xa4, 0xfb, 0x83, 0x05, 0x6f, 0x88, 0xa5, 0x7d,
+ 0x3a, 0x0a, 0x6f, 0x0a, 0x26, 0x0f, 0x6e, 0xcd, 0x0c, 0x6e, 0x17, 0x6c, 0x46, 0xce, 0xa9, 0xec,
+ 0xab, 0x2a, 0xea, 0xb9, 0x8c, 0xd6, 0xa0, 0x1d, 0x52, 0x46, 0x02, 0x79, 0x49, 0x5d, 0x2e, 0x16,
+ 0x8a, 0xbc, 0x25, 0x7c, 0xa4, 0xaa, 0xb7, 0x70, 0x51, 0x07, 0xe8, 0xbe, 0xee, 0x30, 0xca, 0xbb,
+ 0xe5, 0x6a, 0x1f, 0x50, 0x3d, 0xc7, 0xfd, 0xda, 0x40, 0xb8, 0x4f, 0xa3, 0x7f, 0xbc, 0xf6, 0x67,
+ 0xe0, 0xcb, 0x11, 0x9c, 0x17, 0x08, 0x94, 0x0b, 0x1a, 0xc1, 0xb4, 0x79, 0xba, 0x0a, 0xed, 0x98,
+ 0xc6, 0xc4, 0xe7, 0x97, 0x29, 0xd1, 0x63, 0xc5, 0x16, 0x8a, 0xc1, 0x65, 0x4a, 0x4a, 0xfd, 0x7d,
+ 0xbe, 0xd4, 0xdf, 0xf3, 0x11, 0x52, 0x2f, 0x46, 0x88, 0xfb, 0x9b, 0xa5, 0x02, 0x7f, 0x40, 0xf8,
+ 0x4e, 0x14, 0x09, 0x52, 0xb2, 0x1b, 0x06, 0x38, 0xa2, 0x62, 0xe0, 0x0a, 0xb7, 0x96, 0x3c, 0x25,
+ 0xa0, 0x07, 0xd0, 0x51, 0x31, 0xa3, 0xc9, 0xc8, 0x0f, 0x49, 0x16, 0x48, 0xcf, 0x6c, 0x6f, 0x29,
+ 0xd7, 0xee, 0x92, 0x2c, 0x40, 0x1f, 0x40, 0x3d, 0x4b, 0x98, 0x2a, 0xf1, 0x4e, 0xff, 0x81, 0x19,
+ 0xad, 0x49, 0xf7, 0x7a, 0x47, 0x09, 0xe3, 0x4f, 0x2f, 0x3d, 0x79, 0xc4, 0xdd, 0x84, 0xa6, 0x92,
+ 0x51, 0x1b, 0x1a, 0x83, 0xe7, 0x83, 0x17, 0x7b, 0xcb, 0x73, 0xa8, 0x03, 0xf0, 0xcc, 0xdb, 0xdb,
+ 0x19, 0xec, 0xed, 0xfa, 0x3b, 0x83, 0x65, 0x2b, 0xe7, 0xda, 0x87, 0x95, 0x09, 0x9b, 0xd7, 0x49,
+ 0x18, 0xb4, 0x0e, 0x0b, 0x64, 0x14, 0xfa, 0xc9, 0x89, 0x9a, 0x53, 0x35, 0x09, 0xa6, 0x4d, 0x46,
+ 0xe1, 0x67, 0x27, 0x62, 0x97, 0xfb, 0x93, 0x95, 0x8f, 0xa8, 0x7d, 0xd9, 0xa7, 0x38, 0x09, 0x45,
+ 0x04, 0xfe, 0x8f, 0xa5, 0xd3, 0x87, 0xb5, 0xe9, 0xae, 0x16, 0x09, 0x28, 0x73, 0x49, 0x27, 0xa0,
+ 0xf8, 0x76, 0xbf, 0xa9, 0xa9, 0x6c, 0x7d, 0x41, 0x33, 0xfe, 0xdf, 0xa6, 0xcc, 0xfb, 0xa5, 0x94,
+ 0xd9, 0x34, 0xe3, 0x55, 0x75, 0xae, 0x94, 0x30, 0x62, 0xa0, 0x24, 0x27, 0x27, 0x19, 0x51, 0x43,
+ 0x73, 0xc9, 0xd3, 0xd2, 0xf5, 0x12, 0xe9, 0x63, 0xd5, 0xe8, 0x8d, 0x9b, 0xae, 0x93, 0x46, 0xfd,
+ 0xef, 0x9b, 0xb0, 0x20, 0x54, 0x47, 0x84, 0x9d, 0xd3, 0x80, 0xa0, 0x63, 0xd5, 0x86, 0x2a, 0x0f,
+ 0x1b, 0xe4, 0x56, 0x0a, 0x61, 0xca, 0xdb, 0xac, 0xbb, 0x39, 0x73, 0x8f, 0xee, 0xe4, 0x73, 0x8f,
+ 0x2c, 0x74, 0x08, 0x4b, 0xa5, 0xb7, 0x00, 0x5a, 0x33, 0x4f, 0x56, 0x9f, 0x3f, 0xdd, 0xb7, 0xae,
+ 0x58, 0x1d, 0x5b, 0xdc, 0xb2, 0xd0, 0x11, 0x74, 0xca, 0xe3, 0x11, 0x95, 0x0e, 0x4d, 0x3c, 0x19,
+ 0xba, 0xeb, 0x57, 0x2d, 0x1b, 0x46, 0x3f, 0x57, 0x46, 0x8b, 0x71, 0x54, 0x36, 0x3a, 0x31, 0x5a,
+ 0xcb, 0x46, 0xa7, 0x4c, 0xb1, 0x39, 0xf4, 0x09, 0x2c, 0x9a, 0x33, 0x02, 0xad, 0x9a, 0x27, 0x2a,
+ 0xc3, 0xad, 0xbb, 0x36, 0x7d, 0xd1, 0x20, 0xd2, 0x30, 0x27, 0x1a, 0xf6, 0xa4, 0x39, 0x63, 0x92,
+ 0x4c, 0x9a, 0x33, 0x7b, 0xbc, 0x34, 0xf7, 0x52, 0xfd, 0xbd, 0x18, 0x3d, 0x09, 0xad, 0xcf, 0x6e,
+ 0x80, 0xdd, 0xb7, 0xaf, 0x5c, 0x9f, 0x8c, 0x77, 0x9e, 0xa2, 0xe5, 0x78, 0x57, 0x6b, 0xa4, 0x1c,
+ 0xef, 0x89, 0xbc, 0x96, 0x16, 0x89, 0xaa, 0xfd, 0x6a, 0xc3, 0x40, 0xd5, 0x14, 0x9c, 0xd6, 0xf9,
+ 0xba, 0xf7, 0x67, 0x6f, 0x2a, 0xae, 0x79, 0xfa, 0xe8, 0x4b, 0xb1, 0x35, 0xc2, 0xc7, 0xbd, 0x20,
+ 0x89, 0xb7, 0xd5, 0xe7, 0xc3, 0x84, 0x0d, 0xb7, 0x95, 0x81, 0x87, 0xf2, 0x27, 0x74, 0x7b, 0x98,
+ 0x68, 0x39, 0x3d, 0x3e, 0x6e, 0x4a, 0xd5, 0xe3, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x75, 0x97,
+ 0x95, 0xa6, 0xbb, 0x0e, 0x00, 0x00,
}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 6af46dcb6..f933ff7bc 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -593,12 +593,12 @@
"revisionTime": "2016-03-31T18:18:00Z"
},
{
- "checksumSHA1": "GfvhruEiAgylKnkURvEDwtA2tK8=",
+ "checksumSHA1": "HFrazf0o65h+4Ik+5CVMeUkUzIc=",
"path": "gitlab.com/gitlab-org/gitaly-proto/go/gitalypb",
- "revision": "290be0f5b5f18fba1d5438464ac6308e20c14149",
- "revisionTime": "2019-03-29T15:44:30Z",
- "version": "v1.20.0",
- "versionExact": "v1.20.0"
+ "revision": "f3b64ddf1bb5f25298901fbdbb831ee52b7c17bc",
+ "revisionTime": "2019-04-10T17:30:24Z",
+ "version": "v1.22.0",
+ "versionExact": "v1.22.0"
},
{
"checksumSHA1": "WMOuBgCyclqy+Mqunb0NbykaC4Y=",