mirror of https://github.com/milvus-io/milvus.git
Implement GetIndexStatistics interface (#23603)
Signed-off-by: wayblink <anyang.wang@zilliz.com>pull/23884/head
parent
c80d8f82ce
commit
899702f13c
|
@ -28,10 +28,20 @@ import (
|
|||
"github.com/milvus-io/milvus/internal/proto/indexpb"
|
||||
"github.com/milvus-io/milvus/pkg/log"
|
||||
"github.com/milvus-io/milvus/pkg/metrics"
|
||||
"github.com/milvus-io/milvus/pkg/util/merr"
|
||||
"github.com/milvus-io/milvus/pkg/util/metautil"
|
||||
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
||||
)
|
||||
|
||||
// serverID return the session serverID
|
||||
func (s *Server) serverID() int64 {
|
||||
if s.session != nil {
|
||||
return s.session.ServerID
|
||||
}
|
||||
// return 0 if no session exist, only for UT
|
||||
return 0
|
||||
}
|
||||
|
||||
func (s *Server) startIndexService(ctx context.Context) {
|
||||
s.indexBuilder.Start()
|
||||
|
||||
|
@ -205,6 +215,7 @@ func (s *Server) CreateIndex(ctx context.Context, req *indexpb.CreateIndexReques
|
|||
}
|
||||
|
||||
// GetIndexState gets the index state of the index name in the request from Proxy.
|
||||
// Deprecated
|
||||
func (s *Server) GetIndexState(ctx context.Context, req *indexpb.GetIndexStateRequest) (*indexpb.GetIndexStateResponse, error) {
|
||||
log := log.Ctx(ctx)
|
||||
log.Info("receive GetIndexState request", zap.Int64("collectionID", req.CollectionID),
|
||||
|
@ -256,7 +267,7 @@ func (s *Server) GetIndexState(ctx context.Context, req *indexpb.GetIndexStateRe
|
|||
}
|
||||
s.completeIndexInfo(indexInfo, indexes[0], s.meta.SelectSegments(func(info *SegmentInfo) bool {
|
||||
return isFlush(info) && info.CollectionID == req.GetCollectionID()
|
||||
}))
|
||||
}), false)
|
||||
ret.State = indexInfo.State
|
||||
ret.FailReason = indexInfo.IndexStateFailReason
|
||||
|
||||
|
@ -313,8 +324,10 @@ func (s *Server) GetSegmentIndexState(ctx context.Context, req *indexpb.GetSegme
|
|||
return ret, nil
|
||||
}
|
||||
|
||||
// completeIndexInfo get the building index row count and index task state
|
||||
func (s *Server) completeIndexInfo(indexInfo *indexpb.IndexInfo, index *model.Index, segments []*SegmentInfo) {
|
||||
// completeIndexInfo get the index row count and index task state
|
||||
// if realTime, calculate current statistics
|
||||
// if not realTime, which means get info of the prior `CreateIndex` action, skip segments created after index's create time
|
||||
func (s *Server) completeIndexInfo(indexInfo *indexpb.IndexInfo, index *model.Index, segments []*SegmentInfo, realTime bool) {
|
||||
var (
|
||||
cntNone = 0
|
||||
cntUnissued = 0
|
||||
|
@ -337,8 +350,9 @@ func (s *Server) completeIndexInfo(indexInfo *indexpb.IndexInfo, index *model.In
|
|||
continue
|
||||
}
|
||||
|
||||
//data before index create time should create complete
|
||||
if seg.GetStartPosition().GetTimestamp() > index.CreateTime {
|
||||
// if realTime, calculate current statistics
|
||||
// if not realTime, skip segments created after index create
|
||||
if !realTime && seg.GetStartPosition().GetTimestamp() > index.CreateTime {
|
||||
continue
|
||||
}
|
||||
|
||||
|
@ -380,6 +394,7 @@ func (s *Server) completeIndexInfo(indexInfo *indexpb.IndexInfo, index *model.In
|
|||
}
|
||||
|
||||
// GetIndexBuildProgress get the index building progress by num rows.
|
||||
// Deprecated
|
||||
func (s *Server) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetIndexBuildProgressRequest) (*indexpb.GetIndexBuildProgressResponse, error) {
|
||||
log := log.Ctx(ctx)
|
||||
log.Info("receive GetIndexBuildProgress request", zap.Int64("collID", req.GetCollectionID()),
|
||||
|
@ -425,7 +440,7 @@ func (s *Server) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetInde
|
|||
}
|
||||
s.completeIndexInfo(indexInfo, indexes[0], s.meta.SelectSegments(func(info *SegmentInfo) bool {
|
||||
return isFlush(info) && info.CollectionID == req.GetCollectionID()
|
||||
}))
|
||||
}), false)
|
||||
log.Info("GetIndexBuildProgress success", zap.Int64("collectionID", req.GetCollectionID()),
|
||||
zap.String("indexName", req.GetIndexName()))
|
||||
return &indexpb.GetIndexBuildProgressResponse{
|
||||
|
@ -488,7 +503,7 @@ func (s *Server) DescribeIndex(ctx context.Context, req *indexpb.DescribeIndexRe
|
|||
IsAutoIndex: index.IsAutoIndex,
|
||||
UserIndexParams: index.UserIndexParams,
|
||||
}
|
||||
s.completeIndexInfo(indexInfo, index, segments)
|
||||
s.completeIndexInfo(indexInfo, index, segments, false)
|
||||
indexInfos = append(indexInfos, indexInfo)
|
||||
}
|
||||
log.Info("DescribeIndex success", zap.Int64("collectionID", req.GetCollectionID()),
|
||||
|
@ -501,6 +516,68 @@ func (s *Server) DescribeIndex(ctx context.Context, req *indexpb.DescribeIndexRe
|
|||
}, nil
|
||||
}
|
||||
|
||||
// GetIndexStatistics get the statistics of the index. DescribeIndex doesn't contain statistics.
|
||||
func (s *Server) GetIndexStatistics(ctx context.Context, req *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
log := log.Ctx(ctx)
|
||||
log.Info("receive GetIndexStatistics request",
|
||||
zap.Int64("collID", req.GetCollectionID()),
|
||||
zap.String("indexName", req.GetIndexName()))
|
||||
if s.isClosed() {
|
||||
log.Warn(msgDataCoordIsUnhealthy(s.serverID()))
|
||||
return &indexpb.GetIndexStatisticsResponse{
|
||||
Status: s.UnhealthyStatus(),
|
||||
}, nil
|
||||
}
|
||||
|
||||
indexes := s.meta.GetIndexesForCollection(req.GetCollectionID(), req.GetIndexName())
|
||||
if len(indexes) == 0 {
|
||||
errMsg := fmt.Sprintf("there is no index on collection: %d with the index name: %s", req.CollectionID, req.IndexName)
|
||||
log.Error("GetIndexStatistics fail",
|
||||
zap.Int64("collectionID", req.CollectionID),
|
||||
zap.String("indexName", req.IndexName),
|
||||
zap.String("fail reason", errMsg))
|
||||
return &indexpb.GetIndexStatisticsResponse{
|
||||
Status: &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_IndexNotExist,
|
||||
Reason: fmt.Sprint("index doesn't exist, collectionID ", req.CollectionID),
|
||||
},
|
||||
}, nil
|
||||
}
|
||||
|
||||
// The total rows of all indexes should be based on the current perspective
|
||||
segments := s.meta.SelectSegments(func(info *SegmentInfo) bool {
|
||||
return isFlush(info) && info.CollectionID == req.GetCollectionID()
|
||||
})
|
||||
indexInfos := make([]*indexpb.IndexInfo, 0)
|
||||
for _, index := range indexes {
|
||||
indexInfo := &indexpb.IndexInfo{
|
||||
CollectionID: index.CollectionID,
|
||||
FieldID: index.FieldID,
|
||||
IndexName: index.IndexName,
|
||||
IndexID: index.IndexID,
|
||||
TypeParams: index.TypeParams,
|
||||
IndexParams: index.IndexParams,
|
||||
IndexedRows: 0,
|
||||
TotalRows: 0,
|
||||
State: 0,
|
||||
IndexStateFailReason: "",
|
||||
IsAutoIndex: index.IsAutoIndex,
|
||||
UserIndexParams: index.UserIndexParams,
|
||||
}
|
||||
s.completeIndexInfo(indexInfo, index, segments, true)
|
||||
indexInfos = append(indexInfos, indexInfo)
|
||||
}
|
||||
log.Info("GetIndexStatisticsResponse success",
|
||||
zap.Int64("collectionID", req.GetCollectionID()),
|
||||
zap.String("indexName", req.GetIndexName()))
|
||||
return &indexpb.GetIndexStatisticsResponse{
|
||||
Status: &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
},
|
||||
IndexInfos: indexInfos,
|
||||
}, nil
|
||||
}
|
||||
|
||||
// DropIndex deletes indexes based on IndexName. One IndexName corresponds to the index of an entire column. A column is
|
||||
// divided into many segments, and each segment corresponds to an IndexBuildID. DataCoord uses IndexBuildID to record
|
||||
// index tasks.
|
||||
|
@ -619,3 +696,9 @@ func (s *Server) GetIndexInfos(ctx context.Context, req *indexpb.GetIndexInfoReq
|
|||
|
||||
return ret, nil
|
||||
}
|
||||
|
||||
func (s *Server) UnhealthyStatus() *commonpb.Status {
|
||||
return merr.Status(
|
||||
merr.WrapErrServiceNotReady(
|
||||
fmt.Sprintf("datacoord %d is unhealthy", s.serverID())))
|
||||
}
|
||||
|
|
|
@ -34,8 +34,14 @@ import (
|
|||
"github.com/milvus-io/milvus/internal/proto/datapb"
|
||||
"github.com/milvus-io/milvus/internal/proto/indexpb"
|
||||
"github.com/milvus-io/milvus/internal/storage"
|
||||
"github.com/milvus-io/milvus/internal/util/sessionutil"
|
||||
)
|
||||
|
||||
func TestServerId(t *testing.T) {
|
||||
s := &Server{session: &sessionutil.Session{ServerID: 0}}
|
||||
assert.Equal(t, int64(0), s.serverID())
|
||||
}
|
||||
|
||||
func TestServer_CreateIndex(t *testing.T) {
|
||||
var (
|
||||
collID = UniqueID(1)
|
||||
|
@ -941,6 +947,288 @@ func TestServer_DescribeIndex(t *testing.T) {
|
|||
})
|
||||
}
|
||||
|
||||
func TestServer_GetIndexStatistics(t *testing.T) {
|
||||
var (
|
||||
collID = UniqueID(1)
|
||||
partID = UniqueID(2)
|
||||
fieldID = UniqueID(10)
|
||||
indexID = UniqueID(100)
|
||||
segID = UniqueID(1000)
|
||||
invalidSegID = UniqueID(1001)
|
||||
buildID = UniqueID(10000)
|
||||
indexName = "default_idx"
|
||||
typeParams = []*commonpb.KeyValuePair{
|
||||
{
|
||||
Key: "dim",
|
||||
Value: "128",
|
||||
},
|
||||
}
|
||||
indexParams = []*commonpb.KeyValuePair{
|
||||
{
|
||||
Key: "index_type",
|
||||
Value: "IVF_FLAT",
|
||||
},
|
||||
}
|
||||
createTS = uint64(1000)
|
||||
ctx = context.Background()
|
||||
req = &indexpb.GetIndexStatisticsRequest{
|
||||
CollectionID: collID,
|
||||
IndexName: "",
|
||||
}
|
||||
)
|
||||
|
||||
catalog := catalogmocks.NewDataCoordCatalog(t)
|
||||
catalog.On("AlterIndexes",
|
||||
mock.Anything,
|
||||
mock.Anything,
|
||||
).Return(nil)
|
||||
|
||||
s := &Server{
|
||||
meta: &meta{
|
||||
catalog: catalog,
|
||||
indexes: map[UniqueID]map[UniqueID]*model.Index{
|
||||
collID: {
|
||||
//finished
|
||||
indexID: {
|
||||
TenantID: "",
|
||||
CollectionID: collID,
|
||||
FieldID: fieldID,
|
||||
IndexID: indexID,
|
||||
IndexName: indexName,
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
TypeParams: typeParams,
|
||||
IndexParams: indexParams,
|
||||
IsAutoIndex: false,
|
||||
UserIndexParams: nil,
|
||||
},
|
||||
// deleted
|
||||
indexID + 1: {
|
||||
TenantID: "",
|
||||
CollectionID: collID,
|
||||
FieldID: fieldID + 1,
|
||||
IndexID: indexID + 1,
|
||||
IndexName: indexName + "_1",
|
||||
IsDeleted: true,
|
||||
CreateTime: createTS,
|
||||
TypeParams: typeParams,
|
||||
IndexParams: indexParams,
|
||||
IsAutoIndex: false,
|
||||
UserIndexParams: nil,
|
||||
},
|
||||
// unissued
|
||||
indexID + 2: {
|
||||
TenantID: "",
|
||||
CollectionID: collID,
|
||||
FieldID: fieldID + 2,
|
||||
IndexID: indexID + 2,
|
||||
IndexName: indexName + "_2",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
TypeParams: typeParams,
|
||||
IndexParams: indexParams,
|
||||
IsAutoIndex: false,
|
||||
UserIndexParams: nil,
|
||||
},
|
||||
// inProgress
|
||||
indexID + 3: {
|
||||
TenantID: "",
|
||||
CollectionID: collID,
|
||||
FieldID: fieldID + 3,
|
||||
IndexID: indexID + 3,
|
||||
IndexName: indexName + "_3",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
TypeParams: typeParams,
|
||||
IndexParams: indexParams,
|
||||
IsAutoIndex: false,
|
||||
UserIndexParams: nil,
|
||||
},
|
||||
// failed
|
||||
indexID + 4: {
|
||||
TenantID: "",
|
||||
CollectionID: collID,
|
||||
FieldID: fieldID + 4,
|
||||
IndexID: indexID + 4,
|
||||
IndexName: indexName + "_4",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
TypeParams: typeParams,
|
||||
IndexParams: indexParams,
|
||||
IsAutoIndex: false,
|
||||
UserIndexParams: nil,
|
||||
},
|
||||
// unissued
|
||||
indexID + 5: {
|
||||
TenantID: "",
|
||||
CollectionID: collID,
|
||||
FieldID: fieldID + 5,
|
||||
IndexID: indexID + 5,
|
||||
IndexName: indexName + "_5",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
TypeParams: typeParams,
|
||||
IndexParams: indexParams,
|
||||
IsAutoIndex: false,
|
||||
UserIndexParams: nil,
|
||||
},
|
||||
},
|
||||
},
|
||||
segments: &SegmentsInfo{map[UniqueID]*SegmentInfo{
|
||||
invalidSegID: {
|
||||
SegmentInfo: &datapb.SegmentInfo{
|
||||
ID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumOfRows: 10000,
|
||||
State: commonpb.SegmentState_Flushed,
|
||||
MaxRowNum: 65536,
|
||||
LastExpireTime: createTS,
|
||||
StartPosition: &msgpb.MsgPosition{
|
||||
// timesamp > index start time, will be filtered out
|
||||
Timestamp: createTS + 1,
|
||||
},
|
||||
},
|
||||
},
|
||||
segID: {
|
||||
SegmentInfo: &datapb.SegmentInfo{
|
||||
ID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumOfRows: 10000,
|
||||
State: commonpb.SegmentState_Flushed,
|
||||
MaxRowNum: 65536,
|
||||
LastExpireTime: createTS,
|
||||
StartPosition: &msgpb.MsgPosition{
|
||||
Timestamp: createTS,
|
||||
},
|
||||
},
|
||||
segmentIndexes: map[UniqueID]*model.SegmentIndex{
|
||||
indexID: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID,
|
||||
BuildID: buildID,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_Finished,
|
||||
FailReason: "",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
IndexFileKeys: nil,
|
||||
IndexSize: 0,
|
||||
WriteHandoff: false,
|
||||
},
|
||||
indexID + 1: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID + 1,
|
||||
BuildID: buildID + 1,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_Finished,
|
||||
FailReason: "",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
IndexFileKeys: nil,
|
||||
IndexSize: 0,
|
||||
WriteHandoff: false,
|
||||
},
|
||||
indexID + 3: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID + 3,
|
||||
BuildID: buildID + 3,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_InProgress,
|
||||
FailReason: "",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
IndexFileKeys: nil,
|
||||
IndexSize: 0,
|
||||
WriteHandoff: false,
|
||||
},
|
||||
indexID + 4: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID + 4,
|
||||
BuildID: buildID + 4,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_Failed,
|
||||
FailReason: "mock failed",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
IndexFileKeys: nil,
|
||||
IndexSize: 0,
|
||||
WriteHandoff: false,
|
||||
},
|
||||
indexID + 5: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID + 5,
|
||||
BuildID: buildID + 5,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_Unissued,
|
||||
FailReason: "",
|
||||
IsDeleted: false,
|
||||
CreateTime: createTS,
|
||||
IndexFileKeys: nil,
|
||||
IndexSize: 0,
|
||||
WriteHandoff: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}},
|
||||
},
|
||||
allocator: newMockAllocator(),
|
||||
notifyIndexChan: make(chan UniqueID, 1),
|
||||
}
|
||||
|
||||
t.Run("server not available", func(t *testing.T) {
|
||||
s.stateCode.Store(commonpb.StateCode_Initializing)
|
||||
resp, err := s.GetIndexStatistics(ctx, req)
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_NotReadyServe, resp.GetStatus().GetErrorCode())
|
||||
})
|
||||
|
||||
s.stateCode.Store(commonpb.StateCode_Healthy)
|
||||
|
||||
t.Run("success", func(t *testing.T) {
|
||||
resp, err := s.GetIndexStatistics(ctx, req)
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
||||
assert.Equal(t, 5, len(resp.GetIndexInfos()))
|
||||
})
|
||||
|
||||
t.Run("describe after drop index", func(t *testing.T) {
|
||||
status, err := s.DropIndex(ctx, &indexpb.DropIndexRequest{
|
||||
CollectionID: collID,
|
||||
PartitionIDs: nil,
|
||||
IndexName: "",
|
||||
DropAll: true,
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, status.GetErrorCode())
|
||||
|
||||
resp, err := s.GetIndexStatistics(ctx, req)
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_IndexNotExist, resp.GetStatus().GetErrorCode())
|
||||
})
|
||||
}
|
||||
|
||||
func TestServer_DropIndex(t *testing.T) {
|
||||
var (
|
||||
collID = UniqueID(1)
|
||||
|
|
|
@ -885,6 +885,20 @@ func (c *Client) DescribeIndex(ctx context.Context, req *indexpb.DescribeIndexRe
|
|||
return ret.(*indexpb.DescribeIndexResponse), err
|
||||
}
|
||||
|
||||
// GetIndexStatistics get the statistics of the index.
|
||||
func (c *Client) GetIndexStatistics(ctx context.Context, req *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
ret, err := c.grpcClient.ReCall(ctx, func(client datapb.DataCoordClient) (any, error) {
|
||||
if !funcutil.CheckCtxValid(ctx) {
|
||||
return nil, ctx.Err()
|
||||
}
|
||||
return client.GetIndexStatistics(ctx, req)
|
||||
})
|
||||
if err != nil || ret == nil {
|
||||
return nil, err
|
||||
}
|
||||
return ret.(*indexpb.GetIndexStatisticsResponse), err
|
||||
}
|
||||
|
||||
// GetIndexBuildProgress describe the progress of the index.
|
||||
func (c *Client) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetIndexBuildProgressRequest) (*indexpb.GetIndexBuildProgressResponse, error) {
|
||||
ret, err := c.grpcClient.ReCall(ctx, func(client datapb.DataCoordClient) (any, error) {
|
||||
|
|
|
@ -211,6 +211,9 @@ func Test_NewClient(t *testing.T) {
|
|||
|
||||
r40, err := client.GetRecoveryInfoV2(ctx, nil)
|
||||
retCheck(retNotNil, r40, err)
|
||||
|
||||
r41, err := client.GetIndexStatistics(ctx, nil)
|
||||
retCheck(retNotNil, r41, err)
|
||||
}
|
||||
|
||||
client.grpcClient = &mock.GRPCClientBase[datapb.DataCoordClient]{
|
||||
|
|
|
@ -416,6 +416,11 @@ func (s *Server) DescribeIndex(ctx context.Context, req *indexpb.DescribeIndexRe
|
|||
return s.dataCoord.DescribeIndex(ctx, req)
|
||||
}
|
||||
|
||||
// GetIndexStatistics get the information of index..
|
||||
func (s *Server) GetIndexStatistics(ctx context.Context, req *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
return s.dataCoord.GetIndexStatistics(ctx, req)
|
||||
}
|
||||
|
||||
// DropIndex sends the drop index request to DataCoord.
|
||||
func (s *Server) DropIndex(ctx context.Context, request *indexpb.DropIndexRequest) (*commonpb.Status, error) {
|
||||
return s.dataCoord.DropIndex(ctx, request)
|
||||
|
|
|
@ -74,6 +74,7 @@ type MockDataCoord struct {
|
|||
|
||||
createIndexResp *commonpb.Status
|
||||
describeIndexResp *indexpb.DescribeIndexResponse
|
||||
getIndexStatisticsResp *indexpb.GetIndexStatisticsResponse
|
||||
dropIndexResp *commonpb.Status
|
||||
getIndexStateResp *indexpb.GetIndexStateResponse
|
||||
getIndexBuildProgressResp *indexpb.GetIndexBuildProgressResponse
|
||||
|
@ -258,6 +259,10 @@ func (m *MockDataCoord) DescribeIndex(ctx context.Context, req *indexpb.Describe
|
|||
return m.describeIndexResp, m.err
|
||||
}
|
||||
|
||||
func (m *MockDataCoord) GetIndexStatistics(ctx context.Context, req *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
return m.getIndexStatisticsResp, m.err
|
||||
}
|
||||
|
||||
func (m *MockDataCoord) GetIndexInfos(ctx context.Context, req *indexpb.GetIndexInfoRequest) (*indexpb.GetIndexInfoResponse, error) {
|
||||
return m.getIndexInfosResp, m.err
|
||||
}
|
||||
|
@ -610,6 +615,15 @@ func Test_NewServer(t *testing.T) {
|
|||
assert.NotNil(t, ret)
|
||||
})
|
||||
|
||||
t.Run("GetIndexStatistics", func(t *testing.T) {
|
||||
server.dataCoord = &MockDataCoord{
|
||||
getIndexStatisticsResp: &indexpb.GetIndexStatisticsResponse{},
|
||||
}
|
||||
ret, err := server.GetIndexStatistics(ctx, nil)
|
||||
assert.NoError(t, err)
|
||||
assert.NotNil(t, ret)
|
||||
})
|
||||
|
||||
t.Run("DropIndex", func(t *testing.T) {
|
||||
server.dataCoord = &MockDataCoord{
|
||||
dropIndexResp: &commonpb.Status{},
|
||||
|
|
|
@ -479,6 +479,10 @@ func (m *MockDataCoord) DescribeIndex(ctx context.Context, req *indexpb.Describe
|
|||
return nil, nil
|
||||
}
|
||||
|
||||
func (m *MockDataCoord) GetIndexStatistics(ctx context.Context, req *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (m *MockDataCoord) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetIndexBuildProgressRequest) (*indexpb.GetIndexBuildProgressResponse, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -78,6 +78,7 @@ service DataCoord {
|
|||
rpc GetIndexInfos(index.GetIndexInfoRequest) returns (index.GetIndexInfoResponse){}
|
||||
rpc DropIndex(index.DropIndexRequest) returns (common.Status) {}
|
||||
rpc DescribeIndex(index.DescribeIndexRequest) returns (index.DescribeIndexResponse) {}
|
||||
rpc GetIndexStatistics(index.GetIndexStatisticsRequest) returns (index.GetIndexStatisticsResponse) {}
|
||||
// Deprecated: use DescribeIndex instead
|
||||
rpc GetIndexBuildProgress(index.GetIndexBuildProgressRequest) returns (index.GetIndexBuildProgressResponse) {}
|
||||
|
||||
|
|
|
@ -4979,301 +4979,302 @@ func init() {
|
|||
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
|
||||
|
||||
var fileDescriptor_82cd95f524594f49 = []byte{
|
||||
// 4704 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xcb, 0x6f, 0x1c, 0x47,
|
||||
0x7a, 0xb8, 0x7a, 0x5e, 0x9c, 0xf9, 0x66, 0x38, 0x1c, 0x96, 0x64, 0x6a, 0x34, 0xb6, 0x1e, 0x6e,
|
||||
0x49, 0x36, 0x2d, 0xdb, 0x92, 0x4c, 0xfd, 0x16, 0xeb, 0xb5, 0xd6, 0xde, 0x15, 0x49, 0x4b, 0x9e,
|
||||
0x5f, 0x44, 0x2d, 0xb7, 0x49, 0x49, 0x81, 0x37, 0xc0, 0xa0, 0x39, 0x5d, 0x1c, 0xf6, 0xb2, 0xa7,
|
||||
0x7b, 0xd4, 0xdd, 0x43, 0x8a, 0x0e, 0x90, 0x38, 0x4f, 0x20, 0x0f, 0x24, 0x41, 0x90, 0x20, 0xc9,
|
||||
0x6d, 0x91, 0x43, 0xb0, 0x49, 0xb0, 0xa7, 0x4d, 0x2e, 0xb9, 0xec, 0xd5, 0x41, 0x0e, 0x8b, 0x20,
|
||||
0x40, 0x80, 0x20, 0xc8, 0x35, 0xc8, 0x3d, 0xff, 0x40, 0x50, 0x8f, 0xae, 0x7e, 0x55, 0xf7, 0x34,
|
||||
0x49, 0xc9, 0x02, 0x92, 0xdb, 0x54, 0xf5, 0x57, 0x5f, 0x7d, 0x55, 0xf5, 0xbd, 0xbf, 0xaa, 0x81,
|
||||
0x8e, 0xa1, 0xfb, 0xfa, 0x60, 0xe8, 0x38, 0xae, 0x71, 0x73, 0xe2, 0x3a, 0xbe, 0x83, 0x16, 0xc7,
|
||||
0xa6, 0x75, 0x30, 0xf5, 0x58, 0xeb, 0x26, 0xf9, 0xdc, 0x6b, 0x0d, 0x9d, 0xf1, 0xd8, 0xb1, 0x59,
|
||||
0x57, 0xaf, 0x6d, 0xda, 0x3e, 0x76, 0x6d, 0xdd, 0xe2, 0xed, 0x56, 0x74, 0x40, 0xaf, 0xe5, 0x0d,
|
||||
0xf7, 0xf0, 0x58, 0xe7, 0xad, 0xc6, 0xd8, 0x1b, 0xf1, 0x9f, 0x8b, 0xa6, 0x6d, 0xe0, 0xe7, 0xd1,
|
||||
0xa9, 0xd4, 0x39, 0xa8, 0x7e, 0x3a, 0x9e, 0xf8, 0x47, 0xea, 0xdf, 0x29, 0xd0, 0xba, 0x6f, 0x4d,
|
||||
0xbd, 0x3d, 0x0d, 0x3f, 0x9b, 0x62, 0xcf, 0x47, 0xb7, 0xa1, 0xb2, 0xa3, 0x7b, 0xb8, 0xab, 0x5c,
|
||||
0x51, 0x96, 0x9b, 0x2b, 0x6f, 0xdc, 0x8c, 0xd1, 0xc4, 0xa9, 0xd9, 0xf0, 0x46, 0xab, 0xba, 0x87,
|
||||
0x35, 0x0a, 0x89, 0x10, 0x54, 0x8c, 0x9d, 0xfe, 0x7a, 0xb7, 0x74, 0x45, 0x59, 0x2e, 0x6b, 0xf4,
|
||||
0x37, 0xba, 0x04, 0xe0, 0xe1, 0xd1, 0x18, 0xdb, 0x7e, 0x7f, 0xdd, 0xeb, 0x96, 0xaf, 0x94, 0x97,
|
||||
0xcb, 0x5a, 0xa4, 0x07, 0xa9, 0xd0, 0x1a, 0x3a, 0x96, 0x85, 0x87, 0xbe, 0xe9, 0xd8, 0xfd, 0xf5,
|
||||
0x6e, 0x85, 0x8e, 0x8d, 0xf5, 0xa1, 0x1e, 0xd4, 0x4d, 0xaf, 0x3f, 0x9e, 0x38, 0xae, 0xdf, 0xad,
|
||||
0x5e, 0x51, 0x96, 0xeb, 0x9a, 0x68, 0xab, 0xff, 0xa9, 0xc0, 0x3c, 0x27, 0xdb, 0x9b, 0x38, 0xb6,
|
||||
0x87, 0xd1, 0x1d, 0xa8, 0x79, 0xbe, 0xee, 0x4f, 0x3d, 0x4e, 0xf9, 0xeb, 0x52, 0xca, 0xb7, 0x28,
|
||||
0x88, 0xc6, 0x41, 0xa5, 0xa4, 0x27, 0x49, 0x2b, 0x4b, 0x48, 0x8b, 0x2f, 0xaf, 0x92, 0x5a, 0xde,
|
||||
0x32, 0x2c, 0xec, 0x12, 0xea, 0xb6, 0x42, 0xa0, 0x2a, 0x05, 0x4a, 0x76, 0x13, 0x4c, 0xbe, 0x39,
|
||||
0xc6, 0xdf, 0xdb, 0xdd, 0xc2, 0xba, 0xd5, 0xad, 0xd1, 0xb9, 0x22, 0x3d, 0xea, 0x3f, 0x2b, 0xd0,
|
||||
0x11, 0xe0, 0xc1, 0x19, 0x9d, 0x83, 0xea, 0xd0, 0x99, 0xda, 0x3e, 0x5d, 0xea, 0xbc, 0xc6, 0x1a,
|
||||
0xe8, 0x4d, 0x68, 0x0d, 0xf7, 0x74, 0xdb, 0xc6, 0xd6, 0xc0, 0xd6, 0xc7, 0x98, 0x2e, 0xaa, 0xa1,
|
||||
0x35, 0x79, 0xdf, 0x23, 0x7d, 0x8c, 0x0b, 0xad, 0xed, 0x0a, 0x34, 0x27, 0xba, 0xeb, 0x9b, 0xb1,
|
||||
0x93, 0x89, 0x76, 0xe5, 0x1d, 0x0c, 0x99, 0xc1, 0xa4, 0xbf, 0xb6, 0x75, 0x6f, 0xbf, 0xbf, 0xce,
|
||||
0x57, 0x14, 0xeb, 0x53, 0x7f, 0xa4, 0xc0, 0xd2, 0x3d, 0xcf, 0x33, 0x47, 0x76, 0x6a, 0x65, 0x4b,
|
||||
0x50, 0xb3, 0x1d, 0x03, 0xf7, 0xd7, 0xe9, 0xd2, 0xca, 0x1a, 0x6f, 0xa1, 0xd7, 0xa1, 0x31, 0xc1,
|
||||
0xd8, 0x1d, 0xb8, 0x8e, 0x15, 0x2c, 0xac, 0x4e, 0x3a, 0x34, 0xc7, 0xc2, 0xe8, 0xfb, 0xb0, 0xe8,
|
||||
0x25, 0x10, 0x31, 0x9e, 0x6b, 0xae, 0x5c, 0xbd, 0x99, 0x92, 0xa9, 0x9b, 0xc9, 0x49, 0xb5, 0xf4,
|
||||
0x68, 0xf5, 0xcb, 0x12, 0x9c, 0x15, 0x70, 0x8c, 0x56, 0xf2, 0x9b, 0xec, 0xbc, 0x87, 0x47, 0x82,
|
||||
0x3c, 0xd6, 0x28, 0xb2, 0xf3, 0xe2, 0xc8, 0xca, 0xd1, 0x23, 0x2b, 0x22, 0x06, 0x89, 0xf3, 0xa8,
|
||||
0xa6, 0xcf, 0xe3, 0x32, 0x34, 0xf1, 0xf3, 0x89, 0xe9, 0xe2, 0x01, 0x61, 0x1c, 0xba, 0xe5, 0x15,
|
||||
0x0d, 0x58, 0xd7, 0xb6, 0x39, 0x8e, 0xca, 0xc6, 0x5c, 0x61, 0xd9, 0x50, 0xff, 0x52, 0x81, 0xf3,
|
||||
0xa9, 0x53, 0xe2, 0xc2, 0xa6, 0x41, 0x87, 0xae, 0x3c, 0xdc, 0x19, 0x22, 0x76, 0x64, 0xc3, 0xdf,
|
||||
0xca, 0xdb, 0xf0, 0x10, 0x5c, 0x4b, 0x8d, 0x8f, 0x10, 0x59, 0x2a, 0x4e, 0xe4, 0x3e, 0x9c, 0x7f,
|
||||
0x80, 0x7d, 0x3e, 0x01, 0xf9, 0x86, 0xbd, 0x93, 0x2b, 0xb2, 0xb8, 0x54, 0x97, 0x92, 0x52, 0xad,
|
||||
0xfe, 0x55, 0x49, 0xc8, 0x22, 0x9d, 0xaa, 0x6f, 0xef, 0x3a, 0xe8, 0x0d, 0x68, 0x08, 0x10, 0xce,
|
||||
0x15, 0x61, 0x07, 0xfa, 0x26, 0x54, 0x09, 0xa5, 0x8c, 0x25, 0xda, 0x2b, 0x6f, 0xca, 0xd7, 0x14,
|
||||
0xc1, 0xa9, 0x31, 0x78, 0xb4, 0x0e, 0x6d, 0xcf, 0xd7, 0x5d, 0x7f, 0x30, 0x71, 0x3c, 0x7a, 0xce,
|
||||
0x94, 0x71, 0x9a, 0x2b, 0x17, 0xe3, 0x18, 0x88, 0x92, 0xdf, 0xf0, 0x46, 0x9b, 0x1c, 0x48, 0x9b,
|
||||
0xa7, 0x83, 0x82, 0x26, 0xfa, 0x2e, 0xb4, 0xb0, 0x6d, 0x84, 0x38, 0x2a, 0x45, 0x70, 0x34, 0xb1,
|
||||
0x6d, 0x08, 0x0c, 0xe1, 0xa9, 0x54, 0x8b, 0x9f, 0xca, 0xef, 0x2b, 0xd0, 0x4d, 0x1f, 0xcb, 0x69,
|
||||
0x14, 0xf5, 0x5d, 0x36, 0x08, 0xb3, 0x63, 0xc9, 0x95, 0x6b, 0x71, 0x34, 0x1a, 0x1f, 0xa2, 0xfe,
|
||||
0xa9, 0x02, 0xaf, 0x85, 0xe4, 0xd0, 0x4f, 0x2f, 0x8b, 0x47, 0xd0, 0x0d, 0xe8, 0x98, 0xf6, 0xd0,
|
||||
0x9a, 0x1a, 0xf8, 0xb1, 0xfd, 0x19, 0xd6, 0x2d, 0x7f, 0xef, 0x88, 0x9e, 0x5c, 0x5d, 0x4b, 0xf5,
|
||||
0xab, 0xff, 0x56, 0x82, 0xa5, 0x24, 0x5d, 0xa7, 0xd9, 0xa4, 0xff, 0x07, 0x55, 0xd3, 0xde, 0x75,
|
||||
0x82, 0x3d, 0xba, 0x94, 0x23, 0x8a, 0x64, 0x2e, 0x06, 0x8c, 0x1c, 0x40, 0x81, 0xf2, 0x1a, 0xee,
|
||||
0xe1, 0xe1, 0xfe, 0xc4, 0x31, 0xa9, 0x9a, 0x22, 0x28, 0xbe, 0x2b, 0x41, 0x21, 0xa7, 0xf8, 0xe6,
|
||||
0x1a, 0xc3, 0xb1, 0x26, 0x50, 0x7c, 0x6a, 0xfb, 0xee, 0x91, 0xb6, 0x38, 0x4c, 0xf6, 0xf7, 0x86,
|
||||
0xb0, 0x24, 0x07, 0x46, 0x1d, 0x28, 0xef, 0xe3, 0x23, 0xba, 0xe4, 0x86, 0x46, 0x7e, 0xa2, 0x3b,
|
||||
0x50, 0x3d, 0xd0, 0xad, 0x29, 0xe6, 0x3a, 0x61, 0x06, 0xe7, 0x32, 0xd8, 0x8f, 0x4a, 0x1f, 0x2a,
|
||||
0xea, 0x18, 0x5e, 0x7f, 0x80, 0xfd, 0xbe, 0xed, 0x61, 0xd7, 0x5f, 0x35, 0x6d, 0xcb, 0x19, 0x6d,
|
||||
0xea, 0xfe, 0xde, 0x29, 0x94, 0x43, 0x4c, 0xce, 0x4b, 0x09, 0x39, 0x57, 0x7f, 0xac, 0xc0, 0x1b,
|
||||
0xf2, 0xf9, 0xf8, 0x81, 0xf6, 0xa0, 0xbe, 0x6b, 0x62, 0xcb, 0x20, 0x5c, 0xa3, 0x50, 0xae, 0x11,
|
||||
0x6d, 0xa2, 0x24, 0x26, 0x04, 0x98, 0x9f, 0x5b, 0x42, 0x49, 0x08, 0x9f, 0x6f, 0xcb, 0x77, 0x4d,
|
||||
0x7b, 0xf4, 0xd0, 0xf4, 0x7c, 0x8d, 0xc1, 0x47, 0xb8, 0xa4, 0x5c, 0x5c, 0x38, 0x7f, 0x57, 0x81,
|
||||
0x4b, 0x0f, 0xb0, 0xbf, 0x26, 0x6c, 0x0c, 0xf9, 0x6e, 0x7a, 0xbe, 0x39, 0xf4, 0x5e, 0xac, 0x0f,
|
||||
0x58, 0xc0, 0xd9, 0x50, 0xff, 0x50, 0x81, 0xcb, 0x99, 0xc4, 0xf0, 0xad, 0xe3, 0x3a, 0x34, 0xb0,
|
||||
0x30, 0x72, 0x1d, 0xfa, 0x0b, 0xf8, 0xe8, 0x09, 0x39, 0xfc, 0x4d, 0xdd, 0x74, 0x99, 0x0e, 0x3d,
|
||||
0xa1, 0x45, 0xf9, 0x89, 0x02, 0x17, 0x1f, 0x60, 0x7f, 0x33, 0xb0, 0xaf, 0xaf, 0x70, 0x77, 0x08,
|
||||
0x4c, 0xc4, 0xce, 0x07, 0x8e, 0x66, 0xac, 0x4f, 0xfd, 0x03, 0x76, 0x9c, 0x52, 0x7a, 0x5f, 0xc9,
|
||||
0x06, 0x5e, 0xa2, 0x92, 0x10, 0x51, 0x11, 0x5c, 0xd8, 0xf9, 0xf6, 0xa9, 0xbf, 0x59, 0x85, 0xd6,
|
||||
0x13, 0xae, 0x15, 0xa8, 0x05, 0x4d, 0xee, 0x84, 0x22, 0x77, 0x82, 0x22, 0xde, 0x94, 0xcc, 0xc1,
|
||||
0x5a, 0x85, 0x79, 0x0f, 0xe3, 0xfd, 0x63, 0xda, 0xcb, 0x16, 0x19, 0x23, 0x8c, 0xdd, 0x43, 0x58,
|
||||
0x9c, 0xda, 0xd4, 0x43, 0xc7, 0x06, 0x5f, 0x00, 0xdb, 0xf4, 0xd9, 0xca, 0x34, 0x3d, 0x10, 0x7d,
|
||||
0xc6, 0x83, 0x80, 0x08, 0xae, 0x6a, 0x21, 0x5c, 0xc9, 0x61, 0xa8, 0x0f, 0x1d, 0xc3, 0x75, 0x26,
|
||||
0x13, 0x6c, 0x0c, 0xbc, 0x00, 0x55, 0xad, 0x18, 0x2a, 0x3e, 0x4e, 0xa0, 0xba, 0x0d, 0x67, 0x93,
|
||||
0x94, 0xf6, 0x0d, 0xe2, 0x17, 0x12, 0xce, 0x92, 0x7d, 0x42, 0xef, 0xc1, 0x62, 0x1a, 0xbe, 0x4e,
|
||||
0xe1, 0xd3, 0x1f, 0xd0, 0xfb, 0x80, 0x12, 0xa4, 0x12, 0xf0, 0x06, 0x03, 0x8f, 0x13, 0xc3, 0xc1,
|
||||
0x69, 0x70, 0x1a, 0x07, 0x07, 0x06, 0xce, 0xbf, 0x44, 0xc0, 0xfb, 0xc4, 0xba, 0xc6, 0xc0, 0xbd,
|
||||
0x6e, 0xb3, 0xd8, 0x46, 0xc4, 0x91, 0x79, 0xea, 0xef, 0x28, 0xb0, 0xf4, 0x54, 0xf7, 0x87, 0x7b,
|
||||
0xeb, 0x63, 0xce, 0xa0, 0xa7, 0x10, 0xf0, 0x8f, 0xa1, 0x71, 0xc0, 0x99, 0x31, 0xd0, 0xe2, 0x97,
|
||||
0x25, 0x04, 0x45, 0xd9, 0x5e, 0x0b, 0x47, 0x90, 0x80, 0xe8, 0xdc, 0xfd, 0x48, 0x60, 0xf8, 0x0a,
|
||||
0x54, 0xcd, 0x8c, 0x88, 0x56, 0x7d, 0x0e, 0xc0, 0x89, 0xdb, 0xf0, 0x46, 0x27, 0xa0, 0xeb, 0x43,
|
||||
0x98, 0xe3, 0xd8, 0xb8, 0x2e, 0x99, 0x75, 0x60, 0x01, 0xb8, 0xfa, 0xa3, 0x1a, 0x34, 0x23, 0x1f,
|
||||
0x50, 0x1b, 0x4a, 0x42, 0x49, 0x94, 0x24, 0xab, 0x2b, 0xcd, 0x8e, 0xa1, 0xca, 0xe9, 0x18, 0xea,
|
||||
0x3a, 0xb4, 0x4d, 0x6a, 0xbc, 0x07, 0xfc, 0x54, 0xa8, 0xaf, 0xdc, 0xd0, 0xe6, 0x59, 0x2f, 0x67,
|
||||
0x11, 0x74, 0x09, 0x9a, 0xf6, 0x74, 0x3c, 0x70, 0x76, 0x07, 0xae, 0x73, 0xe8, 0xf1, 0x60, 0xac,
|
||||
0x61, 0x4f, 0xc7, 0xdf, 0xdb, 0xd5, 0x9c, 0x43, 0x2f, 0xf4, 0xf7, 0x6b, 0xc7, 0xf4, 0xf7, 0x2f,
|
||||
0x41, 0x73, 0xac, 0x3f, 0x27, 0x58, 0x07, 0xf6, 0x74, 0x4c, 0xe3, 0xb4, 0xb2, 0xd6, 0x18, 0xeb,
|
||||
0xcf, 0x35, 0xe7, 0xf0, 0xd1, 0x74, 0x8c, 0x96, 0xa1, 0x63, 0xe9, 0x9e, 0x3f, 0x88, 0x06, 0x7a,
|
||||
0x75, 0x1a, 0xe8, 0xb5, 0x49, 0xff, 0xa7, 0x61, 0xb0, 0x97, 0x8e, 0x1c, 0x1a, 0x27, 0x8b, 0x1c,
|
||||
0x8c, 0xb1, 0x15, 0xe2, 0x80, 0x42, 0x91, 0x83, 0x31, 0xb6, 0x04, 0x86, 0x0f, 0x61, 0x6e, 0x87,
|
||||
0x3a, 0x42, 0x79, 0x22, 0x7a, 0x9f, 0xf8, 0x40, 0xcc, 0x5f, 0xd2, 0x02, 0x70, 0xf4, 0x6d, 0x68,
|
||||
0x50, 0xfb, 0x43, 0xc7, 0xb6, 0x0a, 0x8d, 0x0d, 0x07, 0x90, 0xd1, 0x06, 0xb6, 0x7c, 0x9d, 0x8e,
|
||||
0x9e, 0x2f, 0x36, 0x5a, 0x0c, 0x20, 0xfa, 0x71, 0xe8, 0x62, 0xdd, 0xc7, 0xc6, 0xea, 0xd1, 0x9a,
|
||||
0x33, 0x9e, 0xe8, 0x94, 0x85, 0xba, 0x6d, 0xea, 0xc2, 0xcb, 0x3e, 0xa1, 0xb7, 0xa0, 0x3d, 0x14,
|
||||
0xad, 0xfb, 0xae, 0x33, 0xee, 0x2e, 0x50, 0xe9, 0x49, 0xf4, 0xa2, 0x8b, 0x00, 0x81, 0x66, 0xd4,
|
||||
0xfd, 0x6e, 0x87, 0x9e, 0x5d, 0x83, 0xf7, 0xdc, 0xa3, 0xd9, 0x1b, 0xd3, 0x1b, 0xb0, 0x3c, 0x89,
|
||||
0x69, 0x8f, 0xba, 0x8b, 0x74, 0xc6, 0x66, 0x90, 0x58, 0x31, 0xed, 0x11, 0x3a, 0x0f, 0x73, 0xa6,
|
||||
0x37, 0xd8, 0xd5, 0xf7, 0x71, 0x17, 0xd1, 0xaf, 0x35, 0xd3, 0xbb, 0xaf, 0xef, 0x63, 0xf5, 0x0b,
|
||||
0x38, 0x17, 0xf2, 0x54, 0xe4, 0x10, 0xd3, 0xac, 0xa0, 0x9c, 0x80, 0x15, 0xf2, 0x3d, 0xdf, 0x9f,
|
||||
0x57, 0x60, 0x69, 0x4b, 0x3f, 0xc0, 0x2f, 0xdf, 0xc9, 0x2e, 0xa4, 0xc7, 0x1e, 0xc2, 0x22, 0xf5,
|
||||
0xab, 0x57, 0x22, 0xf4, 0xe4, 0x98, 0xf0, 0x28, 0x17, 0xa4, 0x07, 0xa2, 0xef, 0x10, 0xb7, 0x03,
|
||||
0x0f, 0xf7, 0x37, 0x49, 0x8c, 0x12, 0x98, 0xef, 0x8b, 0x12, 0x3c, 0x6b, 0x02, 0x4a, 0x8b, 0x8e,
|
||||
0x40, 0x9b, 0xb0, 0x10, 0x3f, 0x81, 0xc0, 0x70, 0xbf, 0x9d, 0x1b, 0xc0, 0x86, 0xbb, 0xaf, 0xb5,
|
||||
0x63, 0x87, 0xe1, 0xa1, 0x2e, 0xcc, 0x71, 0xab, 0x4b, 0x95, 0x44, 0x5d, 0x0b, 0x9a, 0x68, 0x13,
|
||||
0xce, 0xb2, 0x15, 0x6c, 0x71, 0x59, 0x60, 0x8b, 0xaf, 0x17, 0x5a, 0xbc, 0x6c, 0x68, 0x5c, 0x94,
|
||||
0x1a, 0xc7, 0x15, 0xa5, 0x2e, 0xcc, 0x71, 0xf6, 0xa6, 0xda, 0xa3, 0xae, 0x05, 0x4d, 0x72, 0xcc,
|
||||
0x21, 0xa3, 0x37, 0xe9, 0xb7, 0xb0, 0x43, 0xfd, 0x2d, 0x05, 0x20, 0xdc, 0xcf, 0x19, 0x09, 0x96,
|
||||
0x6f, 0x41, 0x5d, 0x30, 0x77, 0xa1, 0x18, 0x51, 0x80, 0x27, 0x75, 0x79, 0x39, 0xa1, 0xcb, 0xd5,
|
||||
0x7f, 0x52, 0xa0, 0xb5, 0x4e, 0x56, 0xf3, 0xd0, 0x19, 0x51, 0xcb, 0x73, 0x1d, 0xda, 0x2e, 0x1e,
|
||||
0x3a, 0xae, 0x31, 0xc0, 0xb6, 0xef, 0x9a, 0x98, 0x05, 0xe7, 0x15, 0x6d, 0x9e, 0xf5, 0x7e, 0xca,
|
||||
0x3a, 0x09, 0x18, 0x51, 0xcf, 0x9e, 0xaf, 0x8f, 0x27, 0x83, 0x5d, 0xa2, 0x10, 0x4a, 0x0c, 0x4c,
|
||||
0xf4, 0x52, 0x7d, 0xf0, 0x26, 0xb4, 0x42, 0x30, 0xdf, 0xa1, 0xf3, 0x57, 0xb4, 0xa6, 0xe8, 0xdb,
|
||||
0x76, 0xd0, 0x35, 0x68, 0xd3, 0xed, 0x1c, 0x58, 0xce, 0x68, 0x40, 0x42, 0x3e, 0x6e, 0x94, 0x5a,
|
||||
0x06, 0x27, 0x8b, 0x1c, 0x53, 0x1c, 0xca, 0x33, 0xbf, 0xc0, 0xdc, 0x2c, 0x09, 0xa8, 0x2d, 0xf3,
|
||||
0x0b, 0xac, 0xfe, 0x86, 0x02, 0xf3, 0xdc, 0x8a, 0x6d, 0x89, 0xe4, 0x37, 0xcd, 0x56, 0xb2, 0x70,
|
||||
0x9b, 0xfe, 0x46, 0x1f, 0xc5, 0xf3, 0x55, 0xd7, 0xa4, 0xac, 0x4e, 0x91, 0x50, 0xdf, 0x29, 0x66,
|
||||
0xc2, 0x8a, 0xc4, 0x7b, 0x5f, 0x92, 0x3d, 0xd5, 0x7d, 0xfd, 0x91, 0x63, 0xb0, 0xf4, 0x59, 0x17,
|
||||
0xe6, 0x74, 0xc3, 0x70, 0xb1, 0xe7, 0x71, 0x3a, 0x82, 0x26, 0xf9, 0x72, 0x80, 0x5d, 0x2f, 0x38,
|
||||
0xd8, 0xb2, 0x16, 0x34, 0xd1, 0xb7, 0xa1, 0x2e, 0x9c, 0x2d, 0x96, 0xa7, 0xb8, 0x92, 0x4d, 0x27,
|
||||
0x8f, 0x4e, 0xc4, 0x08, 0xf5, 0xef, 0x4b, 0xd0, 0xe6, 0x92, 0xb6, 0xca, 0x0d, 0x4e, 0x3e, 0x8b,
|
||||
0xad, 0x42, 0x6b, 0x37, 0xe4, 0xf0, 0xbc, 0xec, 0x4a, 0x54, 0x10, 0x62, 0x63, 0x66, 0xf1, 0x5a,
|
||||
0xdc, 0xe4, 0x55, 0x4e, 0x65, 0xf2, 0xaa, 0xc7, 0x95, 0xd3, 0xb4, 0xeb, 0x53, 0x93, 0xb8, 0x3e,
|
||||
0xea, 0x2f, 0x41, 0x33, 0x82, 0x80, 0xea, 0x21, 0x96, 0xc0, 0xe0, 0x3b, 0x16, 0x34, 0xd1, 0x9d,
|
||||
0xd0, 0xf0, 0xb3, 0xad, 0xba, 0x20, 0xa1, 0x25, 0x61, 0xf3, 0xd5, 0x9f, 0x29, 0x50, 0xe3, 0x98,
|
||||
0x2f, 0x43, 0x93, 0xcb, 0x17, 0x75, 0x85, 0x18, 0x76, 0xe0, 0x5d, 0xc4, 0x17, 0x7a, 0x71, 0x02,
|
||||
0x76, 0x01, 0xea, 0x09, 0xd1, 0x9a, 0xe3, 0xca, 0x2f, 0xf8, 0x14, 0x91, 0x27, 0xf2, 0x89, 0x88,
|
||||
0x12, 0x3a, 0x07, 0x55, 0xcb, 0x19, 0x89, 0xe2, 0x06, 0x6b, 0xa8, 0x5f, 0x29, 0x34, 0x17, 0xad,
|
||||
0xe1, 0xa1, 0x73, 0x80, 0xdd, 0xa3, 0xd3, 0xa7, 0xf3, 0xee, 0x46, 0xd8, 0xbc, 0x60, 0x4c, 0x21,
|
||||
0x06, 0xa0, 0xbb, 0xe1, 0x21, 0x94, 0x65, 0x51, 0x7f, 0xd4, 0xe0, 0x70, 0x26, 0x0d, 0x0f, 0xe3,
|
||||
0x8f, 0x14, 0x9a, 0x98, 0x8c, 0x2f, 0xe5, 0xa4, 0x36, 0xfd, 0x85, 0xf8, 0xe7, 0xea, 0x3f, 0x2a,
|
||||
0x70, 0x21, 0x63, 0x77, 0x9f, 0xac, 0xbc, 0x82, 0xfd, 0xfd, 0x08, 0xea, 0x22, 0x02, 0x2d, 0x17,
|
||||
0x8a, 0x40, 0x05, 0xbc, 0xfa, 0x27, 0x2c, 0x3d, 0x2e, 0xd9, 0xde, 0x27, 0x2b, 0x2f, 0x69, 0x83,
|
||||
0x93, 0x99, 0xa4, 0xb2, 0x24, 0x93, 0xf4, 0x73, 0x05, 0x7a, 0x61, 0xe6, 0xc6, 0x5b, 0x3d, 0x3a,
|
||||
0x6d, 0x3d, 0xe5, 0xc5, 0x44, 0x66, 0xdf, 0x12, 0xa9, 0x7f, 0xa2, 0x17, 0x0b, 0xc5, 0x54, 0x41,
|
||||
0xe2, 0xdf, 0xa6, 0x49, 0xe0, 0xf4, 0x82, 0x4e, 0x23, 0x95, 0xbd, 0xc8, 0xc1, 0xb3, 0xf4, 0x7f,
|
||||
0x78, 0xb0, 0x3f, 0x63, 0x4c, 0x7a, 0x3f, 0x9e, 0xbe, 0x79, 0xd5, 0x1b, 0x18, 0x2d, 0x49, 0xec,
|
||||
0xf1, 0x92, 0x44, 0x25, 0x51, 0x92, 0xe0, 0xfd, 0xea, 0x98, 0xb2, 0x40, 0x6a, 0x01, 0x2f, 0x6b,
|
||||
0xc3, 0x7e, 0x5b, 0x81, 0x2e, 0x9f, 0x85, 0xce, 0x49, 0xc2, 0x2a, 0x0b, 0xfb, 0xd8, 0xf8, 0xba,
|
||||
0x93, 0x0c, 0x7f, 0x5e, 0x82, 0x4e, 0xd4, 0xb1, 0xa1, 0xbe, 0xc9, 0x37, 0xa0, 0x4a, 0x73, 0x34,
|
||||
0x9c, 0x82, 0x99, 0xda, 0x81, 0x41, 0x13, 0xcb, 0x48, 0x7d, 0xf6, 0x6d, 0x2f, 0x70, 0x5c, 0x78,
|
||||
0x33, 0xf4, 0xae, 0xca, 0xc7, 0xf7, 0xae, 0xde, 0x80, 0x06, 0xb1, 0x5c, 0xce, 0x94, 0xe0, 0x65,
|
||||
0x75, 0xe2, 0xb0, 0x03, 0x7d, 0x0c, 0x35, 0x76, 0xfb, 0x83, 0x97, 0xe9, 0xae, 0xc7, 0x51, 0xf3,
|
||||
0x9b, 0x21, 0x91, 0x34, 0x3b, 0xed, 0xd0, 0xf8, 0x20, 0x72, 0x46, 0x13, 0xd7, 0x19, 0x51, 0x37,
|
||||
0x8c, 0x18, 0xb5, 0xaa, 0x26, 0xda, 0xea, 0xff, 0x87, 0xa5, 0x30, 0xda, 0x65, 0x24, 0x9d, 0x94,
|
||||
0xa1, 0xd5, 0x7f, 0x55, 0xe0, 0xec, 0xd6, 0x91, 0x3d, 0x4c, 0x8a, 0xc6, 0x12, 0xd4, 0x26, 0x96,
|
||||
0x1e, 0x26, 0x7f, 0x79, 0x8b, 0x16, 0xd6, 0xd9, 0xdc, 0xd8, 0x20, 0x26, 0x9c, 0xed, 0x67, 0x53,
|
||||
0xf4, 0x6d, 0x3b, 0x33, 0x3d, 0xab, 0xeb, 0x22, 0x3c, 0xc7, 0x06, 0x73, 0x16, 0x58, 0x72, 0x6b,
|
||||
0x5e, 0xf4, 0x52, 0x67, 0xe1, 0x63, 0x00, 0xea, 0x4f, 0x0d, 0x8e, 0xe3, 0x43, 0xd1, 0x11, 0x0f,
|
||||
0x89, 0xc5, 0xfc, 0x69, 0x09, 0xba, 0x91, 0x5d, 0xfa, 0xba, 0xdd, 0xcb, 0x8c, 0xd0, 0xaf, 0xfc,
|
||||
0x82, 0x42, 0xbf, 0xca, 0xe9, 0x5d, 0xca, 0xaa, 0xcc, 0xa5, 0xfc, 0xb5, 0x32, 0xb4, 0xc3, 0x5d,
|
||||
0xdb, 0xb4, 0x74, 0x3b, 0x93, 0x13, 0xb6, 0xa0, 0xed, 0xc5, 0x76, 0x95, 0xef, 0xd3, 0xbb, 0x32,
|
||||
0x19, 0xca, 0x38, 0x08, 0x2d, 0x81, 0x02, 0x5d, 0xa4, 0x87, 0xee, 0xfa, 0x2c, 0x9d, 0xc6, 0xfc,
|
||||
0xc3, 0x06, 0x13, 0x56, 0x73, 0x8c, 0xd1, 0x7b, 0x80, 0xb8, 0x84, 0x0d, 0x4c, 0x7b, 0xe0, 0xe1,
|
||||
0xa1, 0x63, 0x1b, 0x4c, 0xf6, 0xaa, 0x5a, 0x87, 0x7f, 0xe9, 0xdb, 0x5b, 0xac, 0x1f, 0x7d, 0x03,
|
||||
0x2a, 0xfe, 0xd1, 0x84, 0x39, 0x8b, 0x6d, 0xa9, 0xbb, 0x15, 0xd2, 0xb5, 0x7d, 0x34, 0xc1, 0x1a,
|
||||
0x05, 0x0f, 0x2e, 0x00, 0xf9, 0xae, 0x7e, 0xc0, 0x3d, 0xef, 0x8a, 0x16, 0xe9, 0x21, 0xda, 0x24,
|
||||
0xd8, 0xc3, 0x39, 0xe6, 0xa1, 0xf2, 0x26, 0xe3, 0xec, 0x40, 0xa0, 0x07, 0xbe, 0x6f, 0xd1, 0x84,
|
||||
0x20, 0xe5, 0xec, 0xa0, 0x77, 0xdb, 0xb7, 0xc8, 0x22, 0x7d, 0xc7, 0xd7, 0x2d, 0x26, 0x1f, 0x0d,
|
||||
0xae, 0x39, 0x48, 0x0f, 0x8d, 0x72, 0xff, 0x85, 0x68, 0x3e, 0x41, 0x98, 0x86, 0xbd, 0xa9, 0x95,
|
||||
0x2d, 0x8f, 0xf9, 0xf9, 0x99, 0x59, 0xa2, 0xf8, 0x1d, 0x68, 0x72, 0xae, 0x38, 0x06, 0x57, 0x01,
|
||||
0x1b, 0xf2, 0x30, 0x87, 0xcd, 0xab, 0x2f, 0x88, 0xcd, 0x6b, 0x27, 0xc8, 0x70, 0xc8, 0xcf, 0x46,
|
||||
0xfd, 0xb1, 0x02, 0xaf, 0xa5, 0xb4, 0x66, 0xee, 0xd6, 0xe6, 0x47, 0xde, 0x5c, 0x9b, 0x26, 0x51,
|
||||
0x72, 0xdb, 0x70, 0x17, 0x6a, 0x2e, 0xc5, 0xce, 0x8b, 0x5e, 0x57, 0x73, 0x99, 0x8f, 0x11, 0xa2,
|
||||
0xf1, 0x21, 0xea, 0x1f, 0x2b, 0x70, 0x3e, 0x4d, 0xea, 0x29, 0x0c, 0xfe, 0x2a, 0xcc, 0x31, 0xd4,
|
||||
0x81, 0x8c, 0x2e, 0xe7, 0xcb, 0x68, 0xb8, 0x39, 0x5a, 0x30, 0x50, 0xdd, 0x82, 0xa5, 0xc0, 0x2f,
|
||||
0x08, 0xb7, 0x7e, 0x03, 0xfb, 0x7a, 0x4e, 0xdc, 0x79, 0x19, 0x9a, 0x2c, 0x80, 0x61, 0xf1, 0x1c,
|
||||
0xab, 0x11, 0xc2, 0x8e, 0x48, 0xe7, 0xa9, 0xff, 0xa5, 0xc0, 0x39, 0x6a, 0x58, 0x93, 0x05, 0x9f,
|
||||
0x22, 0x15, 0x48, 0x55, 0xdc, 0xf1, 0x7a, 0xa4, 0x8f, 0xf9, 0x3d, 0x94, 0x86, 0x16, 0xeb, 0x43,
|
||||
0xfd, 0x74, 0xb6, 0x4f, 0x9a, 0x9f, 0x08, 0x4b, 0xae, 0xeb, 0xba, 0xaf, 0xd3, 0x8a, 0x6b, 0x32,
|
||||
0xcd, 0x17, 0x1a, 0xf4, 0xca, 0x09, 0x0c, 0xba, 0xfa, 0x10, 0x5e, 0x4b, 0xac, 0xf4, 0x14, 0x27,
|
||||
0xaa, 0xfe, 0xb5, 0x42, 0x8e, 0x23, 0x76, 0x9f, 0xe7, 0xe4, 0x4e, 0xed, 0x45, 0x51, 0x69, 0x1a,
|
||||
0x98, 0x46, 0x52, 0x89, 0x18, 0xe8, 0x13, 0x68, 0xd8, 0xf8, 0x70, 0x10, 0xf5, 0x93, 0x0a, 0x78,
|
||||
0xfc, 0x75, 0x1b, 0x1f, 0xd2, 0x5f, 0xea, 0x23, 0x38, 0x9f, 0x22, 0xf5, 0x34, 0x6b, 0xff, 0x07,
|
||||
0x05, 0x2e, 0xac, 0xbb, 0xce, 0xe4, 0x89, 0xe9, 0xfa, 0x53, 0xdd, 0x8a, 0x17, 0xb3, 0x4f, 0xb0,
|
||||
0xfc, 0x02, 0x77, 0x05, 0x3f, 0x4b, 0xc5, 0x96, 0xef, 0x49, 0x24, 0x28, 0x4d, 0x14, 0x5f, 0x74,
|
||||
0xc4, 0xbf, 0xfe, 0x8f, 0xb2, 0x8c, 0x78, 0x0e, 0x37, 0xc3, 0x2f, 0x29, 0x12, 0x7c, 0x48, 0xb3,
|
||||
0xed, 0xe5, 0x93, 0x66, 0xdb, 0x33, 0xd4, 0x7b, 0xe5, 0x05, 0xa9, 0xf7, 0x63, 0x27, 0xc6, 0xd6,
|
||||
0x20, 0x5e, 0x09, 0xa1, 0xd6, 0xf9, 0xb8, 0xd5, 0x93, 0x8f, 0x01, 0xc2, 0x82, 0x00, 0xbf, 0x7f,
|
||||
0x39, 0x03, 0x43, 0x64, 0x00, 0x39, 0x23, 0x61, 0x40, 0xb9, 0x7d, 0x8f, 0xa4, 0xa8, 0xbf, 0x0f,
|
||||
0x3d, 0x19, 0x6f, 0x9e, 0x86, 0xdf, 0x7f, 0x5a, 0x02, 0xe8, 0x8b, 0xdb, 0xba, 0x27, 0xb3, 0x00,
|
||||
0x57, 0x21, 0xe2, 0x83, 0x84, 0x52, 0x1e, 0xe5, 0x1d, 0x83, 0x08, 0x82, 0x88, 0x52, 0x09, 0x4c,
|
||||
0x2a, 0x72, 0x35, 0x28, 0x9e, 0x88, 0xac, 0x30, 0x56, 0x48, 0x2a, 0xdd, 0xd7, 0xa1, 0xe1, 0x3a,
|
||||
0x87, 0x03, 0x22, 0x5c, 0x46, 0x70, 0x1d, 0xd9, 0x75, 0x0e, 0x89, 0xc8, 0x19, 0xe8, 0x3c, 0xcc,
|
||||
0xf9, 0xba, 0xb7, 0x4f, 0xf0, 0xb3, 0x64, 0x5d, 0x8d, 0x34, 0xfb, 0x06, 0x3a, 0x07, 0xd5, 0x5d,
|
||||
0xd3, 0xc2, 0xec, 0xe6, 0x43, 0x43, 0x63, 0x0d, 0xf4, 0xcd, 0xe0, 0x06, 0x5d, 0xbd, 0xf0, 0x4d,
|
||||
0x19, 0x0a, 0xaf, 0x7e, 0xa5, 0xc0, 0x42, 0xb8, 0x6b, 0x54, 0xed, 0x10, 0x4d, 0x46, 0xb5, 0xd8,
|
||||
0x9a, 0x63, 0x30, 0x05, 0xd1, 0xce, 0xb0, 0x03, 0x6c, 0x20, 0xd3, 0x55, 0xe1, 0x90, 0xbc, 0xc0,
|
||||
0x99, 0xac, 0x8b, 0x2c, 0xda, 0x34, 0x82, 0x54, 0x4e, 0xcd, 0x75, 0x0e, 0xfb, 0x86, 0xd8, 0x0d,
|
||||
0x76, 0xd7, 0x98, 0x85, 0x89, 0x64, 0x37, 0xd6, 0xe8, 0x75, 0xe3, 0xab, 0x30, 0x8f, 0x5d, 0xd7,
|
||||
0x71, 0x07, 0x63, 0xec, 0x79, 0xfa, 0x08, 0x73, 0xaf, 0xbc, 0x45, 0x3b, 0x37, 0x58, 0x9f, 0xfa,
|
||||
0x67, 0x15, 0x68, 0x87, 0x4b, 0x09, 0x4a, 0xee, 0xa6, 0x11, 0x94, 0xdc, 0x4d, 0x72, 0x74, 0xe0,
|
||||
0x32, 0x05, 0x28, 0x0e, 0x77, 0xb5, 0xd4, 0x55, 0xb4, 0x06, 0xef, 0xed, 0x1b, 0xc4, 0x18, 0x13,
|
||||
0xd1, 0xb2, 0x1d, 0x03, 0x87, 0x87, 0x0b, 0x41, 0x17, 0x3f, 0xdb, 0x18, 0x8f, 0x54, 0x0a, 0xf0,
|
||||
0x48, 0xb5, 0x00, 0x8f, 0xd4, 0x24, 0x3c, 0xb2, 0x04, 0xb5, 0x9d, 0xe9, 0x70, 0x1f, 0xfb, 0xdc,
|
||||
0x4f, 0xe3, 0xad, 0x38, 0xef, 0xd4, 0x13, 0xbc, 0x23, 0x58, 0xa4, 0x11, 0x65, 0x91, 0xd7, 0xa1,
|
||||
0xc1, 0xaa, 0xc0, 0x03, 0xdf, 0xa3, 0x75, 0xad, 0xb2, 0x56, 0x67, 0x1d, 0xdb, 0x1e, 0xfa, 0x30,
|
||||
0x70, 0xe2, 0x9a, 0x54, 0x58, 0x54, 0x89, 0xae, 0x49, 0x70, 0x49, 0xe0, 0xc2, 0xbd, 0x0d, 0x0b,
|
||||
0x91, 0xed, 0xa0, 0x96, 0xa1, 0x45, 0x49, 0x8d, 0xf8, 0xf8, 0xd4, 0x38, 0x5c, 0x87, 0x76, 0xb8,
|
||||
0x25, 0x14, 0x6e, 0x9e, 0x85, 0x56, 0xa2, 0x97, 0x82, 0x09, 0x4e, 0x6e, 0x1f, 0x8f, 0x93, 0xd1,
|
||||
0x05, 0xa8, 0xf3, 0x98, 0xc8, 0xeb, 0x2e, 0xc4, 0xd2, 0x17, 0xea, 0x0f, 0x01, 0x85, 0xd4, 0x9f,
|
||||
0xce, 0x47, 0x4c, 0xb0, 0x47, 0x29, 0xc9, 0x1e, 0xea, 0xdf, 0x28, 0xb0, 0x18, 0x9d, 0xec, 0xa4,
|
||||
0xe6, 0xf6, 0x13, 0x68, 0xb2, 0xca, 0xe2, 0x80, 0x08, 0xbe, 0xbc, 0x44, 0x98, 0x38, 0x17, 0x0d,
|
||||
0xc2, 0xd7, 0x0a, 0x84, 0xbd, 0x0e, 0x1d, 0x77, 0xdf, 0xb4, 0x47, 0x03, 0x42, 0x99, 0xc8, 0x9c,
|
||||
0xf2, 0xce, 0x47, 0xa4, 0x4f, 0xfd, 0x3d, 0x05, 0x2e, 0x3d, 0x9e, 0x18, 0xba, 0x8f, 0x23, 0x7e,
|
||||
0xc7, 0x69, 0x2f, 0x0d, 0x8a, 0x5b, 0x7b, 0xa5, 0x9c, 0x13, 0x8c, 0xcc, 0xe7, 0xf1, 0x5b, 0x7b,
|
||||
0xc4, 0x5b, 0xe3, 0xd4, 0xa4, 0xae, 0xd9, 0x9e, 0x9c, 0x9a, 0x1e, 0xd4, 0x0f, 0x38, 0xba, 0xe0,
|
||||
0xfd, 0x45, 0xd0, 0x8e, 0xd5, 0x60, 0xcb, 0xc7, 0xaa, 0xc1, 0xaa, 0x1b, 0x70, 0x41, 0xc3, 0x1e,
|
||||
0xb6, 0x8d, 0xd8, 0x42, 0x4e, 0x9c, 0x5f, 0x9a, 0x40, 0x4f, 0x86, 0xee, 0x34, 0x9c, 0xca, 0xdc,
|
||||
0xd5, 0x81, 0x4b, 0xd0, 0xfa, 0x5c, 0x0f, 0x13, 0x2f, 0x89, 0xce, 0xe3, 0xab, 0x7f, 0x5b, 0x82,
|
||||
0xf3, 0xf7, 0x0c, 0x83, 0xab, 0x70, 0xee, 0x80, 0xbd, 0x2c, 0xdf, 0x38, 0xe9, 0x3b, 0x96, 0xd3,
|
||||
0xbe, 0xe3, 0x8b, 0x52, 0xab, 0xdc, 0xc0, 0xd8, 0xd3, 0x71, 0x60, 0x38, 0x5d, 0x76, 0x11, 0xe9,
|
||||
0x2e, 0xaf, 0x54, 0x92, 0x18, 0x9e, 0x1a, 0xcf, 0xd9, 0x2e, 0x55, 0x3d, 0xc8, 0x93, 0xa9, 0x13,
|
||||
0xe8, 0xa6, 0x37, 0xeb, 0x94, 0x7a, 0x24, 0xd8, 0x91, 0x89, 0xc3, 0xf2, 0xad, 0x2d, 0xe2, 0x3f,
|
||||
0xd1, 0xae, 0x4d, 0xc7, 0x53, 0xff, 0xbb, 0x04, 0xdd, 0x2d, 0xfd, 0x00, 0xff, 0xdf, 0x39, 0xa0,
|
||||
0xcf, 0xe1, 0x9c, 0xa7, 0x1f, 0xe0, 0x41, 0x24, 0x16, 0x1e, 0xb8, 0xf8, 0x19, 0x77, 0x3d, 0xdf,
|
||||
0x91, 0x65, 0xc4, 0xa5, 0xd7, 0x77, 0xb4, 0x45, 0x2f, 0xd6, 0xaf, 0xe1, 0x67, 0xe8, 0x2d, 0x58,
|
||||
0x88, 0xde, 0x0a, 0x23, 0xa4, 0xd5, 0xe9, 0x96, 0xcf, 0x47, 0x6e, 0x7e, 0xf5, 0x0d, 0xf5, 0x19,
|
||||
0xbc, 0xf1, 0xd8, 0xf6, 0xb0, 0xdf, 0x0f, 0x6f, 0x2f, 0x9d, 0x32, 0x6a, 0xbc, 0x0c, 0xcd, 0x70,
|
||||
0xe3, 0x53, 0x0f, 0x2f, 0x0c, 0x4f, 0x75, 0xa0, 0xb7, 0xa1, 0xbb, 0xfb, 0x41, 0x66, 0x79, 0x9d,
|
||||
0x5d, 0x35, 0x79, 0x89, 0x13, 0xee, 0x8a, 0x4b, 0x57, 0x1a, 0xde, 0xc5, 0x2e, 0xb6, 0x87, 0xf8,
|
||||
0xa1, 0x33, 0xdc, 0x27, 0xbe, 0x86, 0xcf, 0xde, 0xbe, 0x29, 0x11, 0x8f, 0x73, 0x3d, 0xf2, 0xb4,
|
||||
0xad, 0x14, 0x7b, 0xda, 0x36, 0xe3, 0xa9, 0xa4, 0xfa, 0x93, 0x12, 0x2c, 0xdd, 0xb3, 0x7c, 0xec,
|
||||
0x86, 0xc1, 0xfe, 0x71, 0xf2, 0x16, 0x61, 0x22, 0xa1, 0x74, 0x92, 0xca, 0x40, 0x81, 0xc2, 0xa1,
|
||||
0x2c, 0xed, 0x51, 0x39, 0x61, 0xda, 0xe3, 0x1e, 0xc0, 0xc4, 0x75, 0x26, 0xd8, 0xf5, 0x4d, 0x1c,
|
||||
0x44, 0x6c, 0x05, 0x7c, 0x97, 0xc8, 0x20, 0xf5, 0x73, 0xe8, 0x3c, 0x18, 0xae, 0x39, 0xf6, 0xae,
|
||||
0xe9, 0x8e, 0x83, 0x8d, 0x4a, 0x09, 0x9d, 0x52, 0x40, 0xe8, 0x4a, 0x29, 0xa1, 0x53, 0x4d, 0x58,
|
||||
0x8c, 0xe0, 0x3e, 0xa5, 0xe2, 0x1a, 0x0d, 0x07, 0xbb, 0xa6, 0x6d, 0xd2, 0xab, 0x5c, 0x25, 0xea,
|
||||
0x7b, 0xc2, 0x68, 0x78, 0x9f, 0xf7, 0xdc, 0xf8, 0x44, 0xdc, 0x7a, 0xdd, 0x3e, 0x9a, 0x60, 0x34,
|
||||
0x07, 0xe5, 0x47, 0xf8, 0xb0, 0x73, 0x06, 0x01, 0xd4, 0x1e, 0x39, 0xee, 0x58, 0xb7, 0x3a, 0x0a,
|
||||
0x6a, 0xc2, 0x1c, 0x2f, 0xd5, 0x75, 0x4a, 0x68, 0x1e, 0x1a, 0x6b, 0x41, 0x49, 0xa3, 0x53, 0xbe,
|
||||
0xf1, 0x17, 0x0a, 0x2c, 0xa6, 0x8a, 0x49, 0xa8, 0x0d, 0xf0, 0xd8, 0x1e, 0xf2, 0x2a, 0x5b, 0xe7,
|
||||
0x0c, 0x6a, 0x41, 0x3d, 0xa8, 0xb9, 0x31, 0x7c, 0xdb, 0x0e, 0x85, 0xee, 0x94, 0x50, 0x07, 0x5a,
|
||||
0x6c, 0xe0, 0x74, 0x38, 0xc4, 0x9e, 0xd7, 0x29, 0x8b, 0x9e, 0xfb, 0xba, 0x69, 0x4d, 0x5d, 0xdc,
|
||||
0xa9, 0x90, 0x39, 0xb7, 0x1d, 0x0d, 0x5b, 0x58, 0xf7, 0x70, 0xa7, 0x8a, 0x10, 0xb4, 0x79, 0x23,
|
||||
0x18, 0x54, 0x8b, 0xf4, 0x05, 0xc3, 0xe6, 0x6e, 0x3c, 0x8d, 0xa6, 0xfd, 0xe9, 0xf2, 0xce, 0xc3,
|
||||
0xd9, 0xc7, 0xb6, 0x81, 0x77, 0x4d, 0x1b, 0x1b, 0xe1, 0xa7, 0xce, 0x19, 0x74, 0x16, 0x16, 0x36,
|
||||
0xb0, 0x3b, 0xc2, 0x91, 0xce, 0x12, 0x5a, 0x84, 0xf9, 0x0d, 0xf3, 0x79, 0xa4, 0xab, 0xac, 0x56,
|
||||
0xea, 0x4a, 0x47, 0x59, 0xf9, 0xf7, 0xab, 0xd0, 0x20, 0xbc, 0xb5, 0xe6, 0x38, 0xae, 0x81, 0x2c,
|
||||
0x40, 0xf4, 0x6d, 0xc9, 0x78, 0xe2, 0xd8, 0xe2, 0x1d, 0x1a, 0xba, 0x99, 0xf0, 0x4d, 0x58, 0x23,
|
||||
0x0d, 0xc8, 0x79, 0xa7, 0x77, 0x4d, 0x0a, 0x9f, 0x00, 0x56, 0xcf, 0xa0, 0x31, 0x9d, 0x6d, 0xdb,
|
||||
0x1c, 0xe3, 0x6d, 0x73, 0xb8, 0x1f, 0xf8, 0x46, 0xb7, 0x33, 0x1e, 0xf3, 0xa4, 0x41, 0x83, 0xf9,
|
||||
0xae, 0x4a, 0xe7, 0x63, 0x8f, 0x7f, 0x02, 0x9e, 0x53, 0xcf, 0xa0, 0x67, 0x70, 0xee, 0x01, 0x8e,
|
||||
0x38, 0x9a, 0xc1, 0x84, 0x2b, 0xd9, 0x13, 0xa6, 0x80, 0x8f, 0x39, 0xe5, 0x43, 0xa8, 0x52, 0x76,
|
||||
0x43, 0xb2, 0x4a, 0x68, 0xf4, 0x11, 0x79, 0xef, 0x4a, 0x36, 0x80, 0xc0, 0xf6, 0x43, 0x58, 0x48,
|
||||
0x3c, 0x2f, 0x45, 0x32, 0xe3, 0x24, 0x7f, 0x28, 0xdc, 0xbb, 0x51, 0x04, 0x54, 0xcc, 0x35, 0x82,
|
||||
0x76, 0xfc, 0x4d, 0x0a, 0x5a, 0x2e, 0xf0, 0xb2, 0x8d, 0xcd, 0xf4, 0x4e, 0xe1, 0x37, 0x70, 0x94,
|
||||
0x09, 0x3a, 0xc9, 0x87, 0x8f, 0xe8, 0x46, 0x2e, 0x82, 0x38, 0xb3, 0xbd, 0x5b, 0x08, 0x56, 0x4c,
|
||||
0x77, 0x44, 0x99, 0x20, 0xf5, 0xea, 0x2c, 0xc9, 0xe3, 0x01, 0x9a, 0xac, 0xe7, 0x70, 0xbd, 0x5b,
|
||||
0x85, 0xe1, 0xc5, 0xd4, 0xbf, 0xce, 0xae, 0x3b, 0xc9, 0x5e, 0x6e, 0xa1, 0x0f, 0xe4, 0xe8, 0x72,
|
||||
0x9e, 0x9c, 0xf5, 0x56, 0x8e, 0x33, 0x44, 0x10, 0xf1, 0xab, 0xf4, 0x9e, 0x92, 0xe4, 0xed, 0x53,
|
||||
0x52, 0xee, 0x02, 0x7c, 0xd9, 0xcf, 0xba, 0x7a, 0x1f, 0x1c, 0x63, 0x84, 0x20, 0xc0, 0x49, 0xbe,
|
||||
0x2c, 0x0d, 0xc4, 0xf0, 0xd6, 0x4c, 0xae, 0x39, 0x99, 0x0c, 0xfe, 0x00, 0x16, 0x12, 0xee, 0x1a,
|
||||
0x2a, 0xee, 0xd2, 0xf5, 0xf2, 0x4c, 0x13, 0x13, 0xc9, 0xc4, 0xbd, 0x24, 0x94, 0xc1, 0xfd, 0x92,
|
||||
0xbb, 0x4b, 0xbd, 0x1b, 0x45, 0x40, 0xc5, 0x42, 0x26, 0xb0, 0x98, 0xf8, 0xf8, 0x64, 0x05, 0xbd,
|
||||
0x5b, 0x78, 0xb6, 0x27, 0x2b, 0xbd, 0xf7, 0x8a, 0xcf, 0xf7, 0x64, 0x45, 0x3d, 0x83, 0x3c, 0xaa,
|
||||
0xa0, 0x13, 0x77, 0x5b, 0x50, 0x06, 0x16, 0xf9, 0x1d, 0x9e, 0xde, 0xfb, 0x05, 0xa1, 0xc5, 0x32,
|
||||
0x0f, 0xe0, 0xac, 0xe4, 0x0a, 0x12, 0x7a, 0x3f, 0x97, 0x3d, 0x92, 0x77, 0xaf, 0x7a, 0x37, 0x8b,
|
||||
0x82, 0x47, 0xcc, 0x43, 0x27, 0xa0, 0xeb, 0x9e, 0x65, 0x31, 0xe3, 0xff, 0x5e, 0x96, 0xe5, 0x8b,
|
||||
0x81, 0x65, 0x2c, 0x35, 0x13, 0x5a, 0x4c, 0xf9, 0xcb, 0x80, 0xb6, 0xf6, 0x9c, 0x43, 0xea, 0x1e,
|
||||
0x8d, 0xa6, 0xae, 0xce, 0x3c, 0xba, 0x2c, 0x03, 0x98, 0x06, 0xcd, 0x10, 0xc4, 0xdc, 0x11, 0x62,
|
||||
0xf2, 0x01, 0xc0, 0x03, 0xec, 0x6f, 0x60, 0xdf, 0x25, 0xd2, 0xff, 0x56, 0x16, 0xed, 0x1c, 0x20,
|
||||
0x98, 0xea, 0xed, 0x99, 0x70, 0xd1, 0x0d, 0xdd, 0xd0, 0xed, 0xa9, 0x6e, 0x45, 0x9e, 0x7e, 0xc8,
|
||||
0x37, 0x34, 0x09, 0x96, 0xbf, 0xa1, 0x69, 0x68, 0x31, 0xe5, 0xa1, 0xf0, 0x5f, 0x22, 0x95, 0xd2,
|
||||
0x7c, 0xff, 0x25, 0x7d, 0x4b, 0x27, 0xa9, 0xdb, 0x73, 0xe0, 0xc5, 0xc4, 0x5f, 0x2a, 0xf4, 0xe2,
|
||||
0x5c, 0x02, 0xe0, 0xa9, 0xe9, 0xef, 0x6d, 0x5a, 0xba, 0xed, 0x15, 0x21, 0x81, 0x02, 0x1e, 0x83,
|
||||
0x04, 0x0e, 0x2f, 0x48, 0x30, 0x60, 0x3e, 0x56, 0xc0, 0x44, 0xb2, 0x07, 0x13, 0xb2, 0x62, 0x6e,
|
||||
0x6f, 0x79, 0x36, 0xa0, 0x98, 0x65, 0x0f, 0xe6, 0x03, 0x86, 0x66, 0x9b, 0xfb, 0x4e, 0x2e, 0xd3,
|
||||
0xc7, 0xf6, 0xf5, 0x46, 0x11, 0x50, 0x31, 0x93, 0x07, 0x28, 0x5d, 0xa9, 0x41, 0xc5, 0xea, 0x7a,
|
||||
0x79, 0xca, 0x27, 0xbb, 0xfc, 0xc3, 0xf4, 0x79, 0xa2, 0x16, 0x2a, 0x37, 0x16, 0xd2, 0xd2, 0xae,
|
||||
0x54, 0x9f, 0x67, 0x94, 0x56, 0xd5, 0x33, 0xe8, 0x29, 0xd4, 0xf8, 0x5f, 0xc0, 0x5c, 0xcb, 0xcf,
|
||||
0xae, 0x72, 0xec, 0xd7, 0x67, 0x40, 0x09, 0xc4, 0xfb, 0x70, 0x3e, 0x23, 0xb7, 0x2a, 0xf5, 0x33,
|
||||
0xf2, 0xf3, 0xb0, 0xb3, 0x2c, 0xa0, 0x98, 0x2c, 0x95, 0x3a, 0xcd, 0x99, 0x2c, 0x2b, 0xcd, 0x3a,
|
||||
0x6b, 0xb2, 0x01, 0x2c, 0xa6, 0x52, 0x53, 0x52, 0x13, 0x98, 0x95, 0xc0, 0x9a, 0x35, 0xc1, 0x08,
|
||||
0x5e, 0x93, 0xa6, 0x61, 0xa4, 0xde, 0x49, 0x5e, 0xc2, 0x66, 0xd6, 0x44, 0x43, 0x38, 0x2b, 0x49,
|
||||
0xbe, 0x48, 0xad, 0x5c, 0x76, 0x92, 0x66, 0xd6, 0x24, 0xbb, 0xd0, 0x5b, 0x75, 0x1d, 0xdd, 0x18,
|
||||
0xea, 0x9e, 0x4f, 0x13, 0x22, 0x24, 0x54, 0x0c, 0xdc, 0x43, 0x79, 0xec, 0x20, 0x4d, 0x9b, 0xcc,
|
||||
0x9a, 0x67, 0x07, 0x9a, 0xf4, 0x28, 0xd9, 0xdf, 0x74, 0x20, 0xb9, 0x8d, 0x88, 0x40, 0x64, 0x28,
|
||||
0x1e, 0x19, 0xa0, 0x60, 0xea, 0x6d, 0x68, 0xae, 0xd1, 0xa2, 0x51, 0xdf, 0x36, 0xf0, 0xf3, 0xa4,
|
||||
0xbd, 0xa2, 0x6f, 0x95, 0x6f, 0x46, 0x00, 0x0a, 0xef, 0xd0, 0x3c, 0xf5, 0xda, 0x0d, 0xfc, 0x9c,
|
||||
0x9d, 0xf3, 0xb2, 0x0c, 0x6f, 0x0c, 0x24, 0x23, 0xca, 0x91, 0x42, 0x46, 0x2c, 0xfd, 0xb9, 0xa8,
|
||||
0x2f, 0x2b, 0xa6, 0xbb, 0x95, 0x81, 0x24, 0x05, 0x19, 0xcc, 0x7a, 0xbb, 0xf8, 0x80, 0xa8, 0x65,
|
||||
0x08, 0xe8, 0xea, 0xd3, 0x8a, 0xd5, 0xdb, 0x79, 0xa4, 0x47, 0x1d, 0xd4, 0xe5, 0xd9, 0x80, 0x62,
|
||||
0x96, 0x4d, 0x68, 0x10, 0xee, 0x64, 0xc7, 0x73, 0x4d, 0x36, 0x50, 0x7c, 0x2e, 0x7e, 0x38, 0xeb,
|
||||
0xd8, 0x1b, 0xba, 0xe6, 0x0e, 0x3f, 0x74, 0x29, 0x39, 0x31, 0x90, 0xdc, 0xc3, 0x49, 0x40, 0x0a,
|
||||
0xca, 0x7f, 0x85, 0x86, 0x24, 0xb4, 0x77, 0x75, 0x6a, 0x5a, 0xc6, 0x26, 0xbf, 0xc8, 0x8b, 0x6e,
|
||||
0xe7, 0x2d, 0x3f, 0x06, 0x9a, 0xe9, 0x89, 0xe5, 0x8c, 0x10, 0xf3, 0xff, 0x22, 0x34, 0x44, 0x8e,
|
||||
0x0c, 0xc9, 0x6e, 0xa2, 0x25, 0xb3, 0x73, 0xbd, 0x6b, 0xf9, 0x40, 0x01, 0xe6, 0x95, 0xaf, 0x1a,
|
||||
0x50, 0x0f, 0x1e, 0x8f, 0x7d, 0xcd, 0xc9, 0x9d, 0x57, 0x90, 0x6d, 0xf9, 0x01, 0x2c, 0x24, 0xfe,
|
||||
0x9f, 0x40, 0xaa, 0xe3, 0xe4, 0xff, 0x61, 0x30, 0x8b, 0x19, 0x9f, 0xf2, 0xbf, 0xcf, 0x13, 0x61,
|
||||
0xd0, 0xdb, 0x59, 0x19, 0x9b, 0x64, 0x04, 0x34, 0x03, 0xf1, 0xff, 0xee, 0x20, 0xe0, 0x11, 0x40,
|
||||
0xc4, 0xfd, 0xcf, 0xbf, 0xe3, 0x4b, 0x3c, 0xda, 0x59, 0xbb, 0x35, 0x96, 0x7a, 0xf8, 0xef, 0x14,
|
||||
0xb9, 0x2f, 0x99, 0xed, 0xa3, 0x65, 0xfb, 0xf5, 0x8f, 0xa1, 0x15, 0xbd, 0x7d, 0x8f, 0xa4, 0x7f,
|
||||
0xd6, 0x96, 0xbe, 0x9e, 0x3f, 0x6b, 0x15, 0x1b, 0xc7, 0x74, 0xfd, 0x66, 0xa0, 0xf3, 0x00, 0xa5,
|
||||
0x8b, 0xb8, 0x52, 0x57, 0x39, 0xb3, 0x74, 0x2c, 0x75, 0x95, 0xb3, 0x2b, 0xc3, 0x2c, 0x71, 0x97,
|
||||
0xac, 0x4c, 0x4a, 0x13, 0x77, 0x19, 0xb5, 0x5e, 0x69, 0xe2, 0x2e, 0xab, 0xd4, 0xa9, 0x9e, 0x59,
|
||||
0xbd, 0xf3, 0xf9, 0x07, 0x23, 0xd3, 0xdf, 0x9b, 0xee, 0x90, 0xd5, 0xdf, 0x62, 0x43, 0xdf, 0x37,
|
||||
0x1d, 0xfe, 0xeb, 0x56, 0xc0, 0xee, 0xb7, 0x28, 0xb6, 0x5b, 0x04, 0xdb, 0x64, 0x67, 0xa7, 0x46,
|
||||
0x5b, 0x77, 0xfe, 0x27, 0x00, 0x00, 0xff, 0xff, 0xf0, 0x3f, 0x9d, 0xc1, 0x3a, 0x54, 0x00, 0x00,
|
||||
// 4720 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x6f, 0x1b, 0x49,
|
||||
0x7a, 0x6e, 0xbe, 0x44, 0x7e, 0xa4, 0x28, 0xaa, 0xec, 0x91, 0x69, 0xfa, 0x39, 0x6d, 0x7b, 0xac,
|
||||
0xf1, 0xd8, 0xb2, 0x47, 0xce, 0x62, 0x67, 0xc7, 0x3b, 0xb3, 0x6b, 0x49, 0x63, 0x0f, 0x13, 0xcb,
|
||||
0xab, 0x6d, 0xc9, 0x76, 0x30, 0x1b, 0x80, 0x68, 0xb1, 0x4b, 0x54, 0xaf, 0xc8, 0x6e, 0xba, 0xbb,
|
||||
0x29, 0x59, 0x13, 0x20, 0x99, 0x3c, 0x81, 0x3c, 0x90, 0x04, 0x41, 0x82, 0x24, 0xb7, 0x45, 0x0e,
|
||||
0xc1, 0x26, 0xc1, 0x9e, 0x36, 0xb9, 0xe4, 0xb2, 0xd7, 0x09, 0x72, 0x18, 0x24, 0x01, 0x02, 0xe4,
|
||||
0x90, 0x6b, 0x90, 0x7b, 0xfe, 0x40, 0x50, 0x8f, 0xae, 0x7e, 0x55, 0x37, 0x5b, 0x92, 0x3d, 0x06,
|
||||
0xb2, 0x37, 0x56, 0xf5, 0x57, 0x5f, 0x7d, 0xf5, 0xd5, 0xf7, 0xae, 0x2a, 0x42, 0xcb, 0xd0, 0x3d,
|
||||
0xbd, 0xd7, 0xb7, 0x6d, 0xc7, 0x58, 0x1a, 0x3b, 0xb6, 0x67, 0xa3, 0xf9, 0x91, 0x39, 0xdc, 0x9f,
|
||||
0xb8, 0xac, 0xb5, 0x44, 0x3e, 0x77, 0x1a, 0x7d, 0x7b, 0x34, 0xb2, 0x2d, 0xd6, 0xd5, 0x69, 0x9a,
|
||||
0x96, 0x87, 0x1d, 0x4b, 0x1f, 0xf2, 0x76, 0x23, 0x3c, 0xa0, 0xd3, 0x70, 0xfb, 0xbb, 0x78, 0xa4,
|
||||
0xf3, 0x56, 0x6d, 0xe4, 0x0e, 0xf8, 0xcf, 0x79, 0xd3, 0x32, 0xf0, 0xcb, 0xf0, 0x54, 0xea, 0x0c,
|
||||
0x94, 0x3f, 0x19, 0x8d, 0xbd, 0x43, 0xf5, 0x1f, 0x14, 0x68, 0x3c, 0x1c, 0x4e, 0xdc, 0x5d, 0x0d,
|
||||
0xbf, 0x98, 0x60, 0xd7, 0x43, 0x77, 0xa1, 0xb4, 0xad, 0xbb, 0xb8, 0xad, 0x5c, 0x51, 0x16, 0xeb,
|
||||
0xcb, 0x17, 0x96, 0x22, 0x34, 0x71, 0x6a, 0xd6, 0xdd, 0xc1, 0x8a, 0xee, 0x62, 0x8d, 0x42, 0x22,
|
||||
0x04, 0x25, 0x63, 0xbb, 0xbb, 0xd6, 0x2e, 0x5c, 0x51, 0x16, 0x8b, 0x1a, 0xfd, 0x8d, 0x2e, 0x01,
|
||||
0xb8, 0x78, 0x30, 0xc2, 0x96, 0xd7, 0x5d, 0x73, 0xdb, 0xc5, 0x2b, 0xc5, 0xc5, 0xa2, 0x16, 0xea,
|
||||
0x41, 0x2a, 0x34, 0xfa, 0xf6, 0x70, 0x88, 0xfb, 0x9e, 0x69, 0x5b, 0xdd, 0xb5, 0x76, 0x89, 0x8e,
|
||||
0x8d, 0xf4, 0xa1, 0x0e, 0x54, 0x4d, 0xb7, 0x3b, 0x1a, 0xdb, 0x8e, 0xd7, 0x2e, 0x5f, 0x51, 0x16,
|
||||
0xab, 0x9a, 0x68, 0xab, 0xff, 0xad, 0xc0, 0x2c, 0x27, 0xdb, 0x1d, 0xdb, 0x96, 0x8b, 0xd1, 0x3d,
|
||||
0xa8, 0xb8, 0x9e, 0xee, 0x4d, 0x5c, 0x4e, 0xf9, 0x79, 0x29, 0xe5, 0x9b, 0x14, 0x44, 0xe3, 0xa0,
|
||||
0x52, 0xd2, 0xe3, 0xa4, 0x15, 0x25, 0xa4, 0x45, 0x97, 0x57, 0x4a, 0x2c, 0x6f, 0x11, 0xe6, 0x76,
|
||||
0x08, 0x75, 0x9b, 0x01, 0x50, 0x99, 0x02, 0xc5, 0xbb, 0x09, 0x26, 0xcf, 0x1c, 0xe1, 0xef, 0xed,
|
||||
0x6c, 0x62, 0x7d, 0xd8, 0xae, 0xd0, 0xb9, 0x42, 0x3d, 0xea, 0xbf, 0x2a, 0xd0, 0x12, 0xe0, 0xfe,
|
||||
0x1e, 0x9d, 0x81, 0x72, 0xdf, 0x9e, 0x58, 0x1e, 0x5d, 0xea, 0xac, 0xc6, 0x1a, 0xe8, 0x6d, 0x68,
|
||||
0xf4, 0x77, 0x75, 0xcb, 0xc2, 0xc3, 0x9e, 0xa5, 0x8f, 0x30, 0x5d, 0x54, 0x4d, 0xab, 0xf3, 0xbe,
|
||||
0x27, 0xfa, 0x08, 0xe7, 0x5a, 0xdb, 0x15, 0xa8, 0x8f, 0x75, 0xc7, 0x33, 0x23, 0x3b, 0x13, 0xee,
|
||||
0xca, 0xda, 0x18, 0x32, 0x83, 0x49, 0x7f, 0x6d, 0xe9, 0xee, 0x5e, 0x77, 0x8d, 0xaf, 0x28, 0xd2,
|
||||
0xa7, 0xfe, 0x48, 0x81, 0x85, 0x07, 0xae, 0x6b, 0x0e, 0xac, 0xc4, 0xca, 0x16, 0xa0, 0x62, 0xd9,
|
||||
0x06, 0xee, 0xae, 0xd1, 0xa5, 0x15, 0x35, 0xde, 0x42, 0xe7, 0xa1, 0x36, 0xc6, 0xd8, 0xe9, 0x39,
|
||||
0xf6, 0xd0, 0x5f, 0x58, 0x95, 0x74, 0x68, 0xf6, 0x10, 0xa3, 0xef, 0xc3, 0xbc, 0x1b, 0x43, 0xc4,
|
||||
0x64, 0xae, 0xbe, 0x7c, 0x75, 0x29, 0xa1, 0x53, 0x4b, 0xf1, 0x49, 0xb5, 0xe4, 0x68, 0xf5, 0x8b,
|
||||
0x02, 0x9c, 0x16, 0x70, 0x8c, 0x56, 0xf2, 0x9b, 0x70, 0xde, 0xc5, 0x03, 0x41, 0x1e, 0x6b, 0xe4,
|
||||
0xe1, 0xbc, 0xd8, 0xb2, 0x62, 0x78, 0xcb, 0xf2, 0xa8, 0x41, 0x6c, 0x3f, 0xca, 0xc9, 0xfd, 0xb8,
|
||||
0x0c, 0x75, 0xfc, 0x72, 0x6c, 0x3a, 0xb8, 0x47, 0x04, 0x87, 0xb2, 0xbc, 0xa4, 0x01, 0xeb, 0xda,
|
||||
0x32, 0x47, 0x61, 0xdd, 0x98, 0xc9, 0xad, 0x1b, 0xea, 0x5f, 0x2b, 0x70, 0x36, 0xb1, 0x4b, 0x5c,
|
||||
0xd9, 0x34, 0x68, 0xd1, 0x95, 0x07, 0x9c, 0x21, 0x6a, 0x47, 0x18, 0xfe, 0x4e, 0x16, 0xc3, 0x03,
|
||||
0x70, 0x2d, 0x31, 0x3e, 0x44, 0x64, 0x21, 0x3f, 0x91, 0x7b, 0x70, 0xf6, 0x11, 0xf6, 0xf8, 0x04,
|
||||
0xe4, 0x1b, 0x76, 0x8f, 0x6f, 0xc8, 0xa2, 0x5a, 0x5d, 0x88, 0x6b, 0xb5, 0xfa, 0x37, 0x05, 0xa1,
|
||||
0x8b, 0x74, 0xaa, 0xae, 0xb5, 0x63, 0xa3, 0x0b, 0x50, 0x13, 0x20, 0x5c, 0x2a, 0x82, 0x0e, 0xf4,
|
||||
0x4d, 0x28, 0x13, 0x4a, 0x99, 0x48, 0x34, 0x97, 0xdf, 0x96, 0xaf, 0x29, 0x84, 0x53, 0x63, 0xf0,
|
||||
0x68, 0x0d, 0x9a, 0xae, 0xa7, 0x3b, 0x5e, 0x6f, 0x6c, 0xbb, 0x74, 0x9f, 0xa9, 0xe0, 0xd4, 0x97,
|
||||
0x2f, 0x46, 0x31, 0x10, 0x23, 0xbf, 0xee, 0x0e, 0x36, 0x38, 0x90, 0x36, 0x4b, 0x07, 0xf9, 0x4d,
|
||||
0xf4, 0x5d, 0x68, 0x60, 0xcb, 0x08, 0x70, 0x94, 0xf2, 0xe0, 0xa8, 0x63, 0xcb, 0x10, 0x18, 0x82,
|
||||
0x5d, 0x29, 0xe7, 0xdf, 0x95, 0x3f, 0x54, 0xa0, 0x9d, 0xdc, 0x96, 0x93, 0x18, 0xea, 0xfb, 0x6c,
|
||||
0x10, 0x66, 0xdb, 0x92, 0xa9, 0xd7, 0x62, 0x6b, 0x34, 0x3e, 0x44, 0xfd, 0x73, 0x05, 0xde, 0x0a,
|
||||
0xc8, 0xa1, 0x9f, 0x5e, 0x97, 0x8c, 0xa0, 0x9b, 0xd0, 0x32, 0xad, 0xfe, 0x70, 0x62, 0xe0, 0xa7,
|
||||
0xd6, 0xa7, 0x58, 0x1f, 0x7a, 0xbb, 0x87, 0x74, 0xe7, 0xaa, 0x5a, 0xa2, 0x5f, 0xfd, 0xcf, 0x02,
|
||||
0x2c, 0xc4, 0xe9, 0x3a, 0x09, 0x93, 0x7e, 0x01, 0xca, 0xa6, 0xb5, 0x63, 0xfb, 0x3c, 0xba, 0x94,
|
||||
0xa1, 0x8a, 0x64, 0x2e, 0x06, 0x8c, 0x6c, 0x40, 0xbe, 0xf1, 0xea, 0xef, 0xe2, 0xfe, 0xde, 0xd8,
|
||||
0x36, 0xa9, 0x99, 0x22, 0x28, 0xbe, 0x2b, 0x41, 0x21, 0xa7, 0x78, 0x69, 0x95, 0xe1, 0x58, 0x15,
|
||||
0x28, 0x3e, 0xb1, 0x3c, 0xe7, 0x50, 0x9b, 0xef, 0xc7, 0xfb, 0x3b, 0x7d, 0x58, 0x90, 0x03, 0xa3,
|
||||
0x16, 0x14, 0xf7, 0xf0, 0x21, 0x5d, 0x72, 0x4d, 0x23, 0x3f, 0xd1, 0x3d, 0x28, 0xef, 0xeb, 0xc3,
|
||||
0x09, 0xe6, 0x36, 0x61, 0x8a, 0xe4, 0x32, 0xd8, 0x0f, 0x0b, 0x1f, 0x28, 0xea, 0x08, 0xce, 0x3f,
|
||||
0xc2, 0x5e, 0xd7, 0x72, 0xb1, 0xe3, 0xad, 0x98, 0xd6, 0xd0, 0x1e, 0x6c, 0xe8, 0xde, 0xee, 0x09,
|
||||
0x8c, 0x43, 0x44, 0xcf, 0x0b, 0x31, 0x3d, 0x57, 0x7f, 0xac, 0xc0, 0x05, 0xf9, 0x7c, 0x7c, 0x43,
|
||||
0x3b, 0x50, 0xdd, 0x31, 0xf1, 0xd0, 0x20, 0x52, 0xa3, 0x50, 0xa9, 0x11, 0x6d, 0x62, 0x24, 0xc6,
|
||||
0x04, 0x98, 0xef, 0x5b, 0xcc, 0x48, 0x88, 0x98, 0x6f, 0xd3, 0x73, 0x4c, 0x6b, 0xf0, 0xd8, 0x74,
|
||||
0x3d, 0x8d, 0xc1, 0x87, 0xa4, 0xa4, 0x98, 0x5f, 0x39, 0x7f, 0x5f, 0x81, 0x4b, 0x8f, 0xb0, 0xb7,
|
||||
0x2a, 0x7c, 0x0c, 0xf9, 0x6e, 0xba, 0x9e, 0xd9, 0x77, 0x5f, 0x6d, 0x0c, 0x98, 0x23, 0xd8, 0x50,
|
||||
0xff, 0x58, 0x81, 0xcb, 0xa9, 0xc4, 0x70, 0xd6, 0x71, 0x1b, 0xea, 0x7b, 0x18, 0xb9, 0x0d, 0xfd,
|
||||
0x25, 0x7c, 0xf8, 0x8c, 0x6c, 0xfe, 0x86, 0x6e, 0x3a, 0xcc, 0x86, 0x1e, 0xd3, 0xa3, 0xfc, 0x44,
|
||||
0x81, 0x8b, 0x8f, 0xb0, 0xb7, 0xe1, 0xfb, 0xd7, 0x37, 0xc8, 0x1d, 0x02, 0x13, 0xf2, 0xf3, 0x7e,
|
||||
0xa0, 0x19, 0xe9, 0x53, 0xff, 0x88, 0x6d, 0xa7, 0x94, 0xde, 0x37, 0xc2, 0xc0, 0x4b, 0x54, 0x13,
|
||||
0x42, 0x26, 0x82, 0x2b, 0x3b, 0x67, 0x9f, 0xfa, 0xdb, 0x65, 0x68, 0x3c, 0xe3, 0x56, 0x81, 0x7a,
|
||||
0xd0, 0x38, 0x27, 0x14, 0x79, 0x10, 0x14, 0x8a, 0xa6, 0x64, 0x01, 0xd6, 0x0a, 0xcc, 0xba, 0x18,
|
||||
0xef, 0x1d, 0xd1, 0x5f, 0x36, 0xc8, 0x18, 0xe1, 0xec, 0x1e, 0xc3, 0xfc, 0xc4, 0xa2, 0x11, 0x3a,
|
||||
0x36, 0xf8, 0x02, 0x18, 0xd3, 0xa7, 0x1b, 0xd3, 0xe4, 0x40, 0xf4, 0x29, 0x4f, 0x02, 0x42, 0xb8,
|
||||
0xca, 0xb9, 0x70, 0xc5, 0x87, 0xa1, 0x2e, 0xb4, 0x0c, 0xc7, 0x1e, 0x8f, 0xb1, 0xd1, 0x73, 0x7d,
|
||||
0x54, 0x95, 0x7c, 0xa8, 0xf8, 0x38, 0x81, 0xea, 0x2e, 0x9c, 0x8e, 0x53, 0xda, 0x35, 0x48, 0x5c,
|
||||
0x48, 0x24, 0x4b, 0xf6, 0x09, 0xdd, 0x82, 0xf9, 0x24, 0x7c, 0x95, 0xc2, 0x27, 0x3f, 0xa0, 0xdb,
|
||||
0x80, 0x62, 0xa4, 0x12, 0xf0, 0x1a, 0x03, 0x8f, 0x12, 0xc3, 0xc1, 0x69, 0x72, 0x1a, 0x05, 0x07,
|
||||
0x06, 0xce, 0xbf, 0x84, 0xc0, 0xbb, 0xc4, 0xbb, 0x46, 0xc0, 0xdd, 0x76, 0x3d, 0x1f, 0x23, 0xa2,
|
||||
0xc8, 0x5c, 0xf5, 0xf7, 0x14, 0x58, 0x78, 0xae, 0x7b, 0xfd, 0xdd, 0xb5, 0x11, 0x17, 0xd0, 0x13,
|
||||
0x28, 0xf8, 0x47, 0x50, 0xdb, 0xe7, 0xc2, 0xe8, 0x5b, 0xf1, 0xcb, 0x12, 0x82, 0xc2, 0x62, 0xaf,
|
||||
0x05, 0x23, 0x48, 0x42, 0x74, 0xe6, 0x61, 0x28, 0x31, 0x7c, 0x03, 0xa6, 0x66, 0x4a, 0x46, 0xab,
|
||||
0xbe, 0x04, 0xe0, 0xc4, 0xad, 0xbb, 0x83, 0x63, 0xd0, 0xf5, 0x01, 0xcc, 0x70, 0x6c, 0xdc, 0x96,
|
||||
0x4c, 0xdb, 0x30, 0x1f, 0x5c, 0xfd, 0x51, 0x05, 0xea, 0xa1, 0x0f, 0xa8, 0x09, 0x05, 0x61, 0x24,
|
||||
0x0a, 0x92, 0xd5, 0x15, 0xa6, 0xe7, 0x50, 0xc5, 0x64, 0x0e, 0x75, 0x1d, 0x9a, 0x26, 0x75, 0xde,
|
||||
0x3d, 0xbe, 0x2b, 0x34, 0x56, 0xae, 0x69, 0xb3, 0xac, 0x97, 0x8b, 0x08, 0xba, 0x04, 0x75, 0x6b,
|
||||
0x32, 0xea, 0xd9, 0x3b, 0x3d, 0xc7, 0x3e, 0x70, 0x79, 0x32, 0x56, 0xb3, 0x26, 0xa3, 0xef, 0xed,
|
||||
0x68, 0xf6, 0x81, 0x1b, 0xc4, 0xfb, 0x95, 0x23, 0xc6, 0xfb, 0x97, 0xa0, 0x3e, 0xd2, 0x5f, 0x12,
|
||||
0xac, 0x3d, 0x6b, 0x32, 0xa2, 0x79, 0x5a, 0x51, 0xab, 0x8d, 0xf4, 0x97, 0x9a, 0x7d, 0xf0, 0x64,
|
||||
0x32, 0x42, 0x8b, 0xd0, 0x1a, 0xea, 0xae, 0xd7, 0x0b, 0x27, 0x7a, 0x55, 0x9a, 0xe8, 0x35, 0x49,
|
||||
0xff, 0x27, 0x41, 0xb2, 0x97, 0xcc, 0x1c, 0x6a, 0xc7, 0xcb, 0x1c, 0x8c, 0xd1, 0x30, 0xc0, 0x01,
|
||||
0xb9, 0x32, 0x07, 0x63, 0x34, 0x14, 0x18, 0x3e, 0x80, 0x99, 0x6d, 0x1a, 0x08, 0x65, 0xa9, 0xe8,
|
||||
0x43, 0x12, 0x03, 0xb1, 0x78, 0x49, 0xf3, 0xc1, 0xd1, 0xb7, 0xa1, 0x46, 0xfd, 0x0f, 0x1d, 0xdb,
|
||||
0xc8, 0x35, 0x36, 0x18, 0x40, 0x46, 0x1b, 0x78, 0xe8, 0xe9, 0x74, 0xf4, 0x6c, 0xbe, 0xd1, 0x62,
|
||||
0x00, 0xb1, 0x8f, 0x7d, 0x07, 0xeb, 0x1e, 0x36, 0x56, 0x0e, 0x57, 0xed, 0xd1, 0x58, 0xa7, 0x22,
|
||||
0xd4, 0x6e, 0xd2, 0x10, 0x5e, 0xf6, 0x09, 0xbd, 0x03, 0xcd, 0xbe, 0x68, 0x3d, 0x74, 0xec, 0x51,
|
||||
0x7b, 0x8e, 0x6a, 0x4f, 0xac, 0x17, 0x5d, 0x04, 0xf0, 0x2d, 0xa3, 0xee, 0xb5, 0x5b, 0x74, 0xef,
|
||||
0x6a, 0xbc, 0xe7, 0x01, 0xad, 0xde, 0x98, 0x6e, 0x8f, 0xd5, 0x49, 0x4c, 0x6b, 0xd0, 0x9e, 0xa7,
|
||||
0x33, 0xd6, 0xfd, 0xc2, 0x8a, 0x69, 0x0d, 0xd0, 0x59, 0x98, 0x31, 0xdd, 0xde, 0x8e, 0xbe, 0x87,
|
||||
0xdb, 0x88, 0x7e, 0xad, 0x98, 0xee, 0x43, 0x7d, 0x0f, 0xab, 0x9f, 0xc3, 0x99, 0x40, 0xa6, 0x42,
|
||||
0x9b, 0x98, 0x14, 0x05, 0xe5, 0x18, 0xa2, 0x90, 0x1d, 0xf9, 0x7e, 0x55, 0x82, 0x85, 0x4d, 0x7d,
|
||||
0x1f, 0xbf, 0xfe, 0x20, 0x3b, 0x97, 0x1d, 0x7b, 0x0c, 0xf3, 0x34, 0xae, 0x5e, 0x0e, 0xd1, 0x93,
|
||||
0xe1, 0xc2, 0xc3, 0x52, 0x90, 0x1c, 0x88, 0xbe, 0x43, 0xc2, 0x0e, 0xdc, 0xdf, 0xdb, 0x20, 0x39,
|
||||
0x8a, 0xef, 0xbe, 0x2f, 0x4a, 0xf0, 0xac, 0x0a, 0x28, 0x2d, 0x3c, 0x02, 0x6d, 0xc0, 0x5c, 0x74,
|
||||
0x07, 0x7c, 0xc7, 0x7d, 0x23, 0x33, 0x81, 0x0d, 0xb8, 0xaf, 0x35, 0x23, 0x9b, 0xe1, 0xa2, 0x36,
|
||||
0xcc, 0x70, 0xaf, 0x4b, 0x8d, 0x44, 0x55, 0xf3, 0x9b, 0x68, 0x03, 0x4e, 0xb3, 0x15, 0x6c, 0x72,
|
||||
0x5d, 0x60, 0x8b, 0xaf, 0xe6, 0x5a, 0xbc, 0x6c, 0x68, 0x54, 0x95, 0x6a, 0x47, 0x55, 0xa5, 0x36,
|
||||
0xcc, 0x70, 0xf1, 0xa6, 0xd6, 0xa3, 0xaa, 0xf9, 0x4d, 0xb2, 0xcd, 0x81, 0xa0, 0xd7, 0xe9, 0xb7,
|
||||
0xa0, 0x43, 0xfd, 0x1d, 0x05, 0x20, 0xe0, 0xe7, 0x94, 0x02, 0xcb, 0xb7, 0xa0, 0x2a, 0x84, 0x3b,
|
||||
0x57, 0x8e, 0x28, 0xc0, 0xe3, 0xb6, 0xbc, 0x18, 0xb3, 0xe5, 0xea, 0xbf, 0x28, 0xd0, 0x58, 0x23,
|
||||
0xab, 0x79, 0x6c, 0x0f, 0xa8, 0xe7, 0xb9, 0x0e, 0x4d, 0x07, 0xf7, 0x6d, 0xc7, 0xe8, 0x61, 0xcb,
|
||||
0x73, 0x4c, 0xcc, 0x92, 0xf3, 0x92, 0x36, 0xcb, 0x7a, 0x3f, 0x61, 0x9d, 0x04, 0x8c, 0x98, 0x67,
|
||||
0xd7, 0xd3, 0x47, 0xe3, 0xde, 0x0e, 0x31, 0x08, 0x05, 0x06, 0x26, 0x7a, 0xa9, 0x3d, 0x78, 0x1b,
|
||||
0x1a, 0x01, 0x98, 0x67, 0xd3, 0xf9, 0x4b, 0x5a, 0x5d, 0xf4, 0x6d, 0xd9, 0xe8, 0x1a, 0x34, 0x29,
|
||||
0x3b, 0x7b, 0x43, 0x7b, 0xd0, 0x23, 0x29, 0x1f, 0x77, 0x4a, 0x0d, 0x83, 0x93, 0x45, 0xb6, 0x29,
|
||||
0x0a, 0xe5, 0x9a, 0x9f, 0x63, 0xee, 0x96, 0x04, 0xd4, 0xa6, 0xf9, 0x39, 0x56, 0x7f, 0x4b, 0x81,
|
||||
0x59, 0xee, 0xc5, 0x36, 0x45, 0xf1, 0x9b, 0x56, 0x2b, 0x59, 0xba, 0x4d, 0x7f, 0xa3, 0x0f, 0xa3,
|
||||
0xf5, 0xaa, 0x6b, 0x52, 0x51, 0xa7, 0x48, 0x68, 0xec, 0x14, 0x71, 0x61, 0x79, 0xf2, 0xbd, 0x2f,
|
||||
0x08, 0x4f, 0x75, 0x4f, 0x7f, 0x62, 0x1b, 0xac, 0x7c, 0xd6, 0x86, 0x19, 0xdd, 0x30, 0x1c, 0xec,
|
||||
0xba, 0x9c, 0x0e, 0xbf, 0x49, 0xbe, 0xec, 0x63, 0xc7, 0xf5, 0x37, 0xb6, 0xa8, 0xf9, 0x4d, 0xf4,
|
||||
0x6d, 0xa8, 0x8a, 0x60, 0x8b, 0xd5, 0x29, 0xae, 0xa4, 0xd3, 0xc9, 0xb3, 0x13, 0x31, 0x42, 0xfd,
|
||||
0xc7, 0x02, 0x34, 0xb9, 0xa6, 0xad, 0x70, 0x87, 0x93, 0x2d, 0x62, 0x2b, 0xd0, 0xd8, 0x09, 0x24,
|
||||
0x3c, 0xab, 0xba, 0x12, 0x56, 0x84, 0xc8, 0x98, 0x69, 0xb2, 0x16, 0x75, 0x79, 0xa5, 0x13, 0xb9,
|
||||
0xbc, 0xf2, 0x51, 0xf5, 0x34, 0x19, 0xfa, 0x54, 0x24, 0xa1, 0x8f, 0xfa, 0x2b, 0x50, 0x0f, 0x21,
|
||||
0xa0, 0x76, 0x88, 0x15, 0x30, 0x38, 0xc7, 0xfc, 0x26, 0xba, 0x17, 0x38, 0x7e, 0xc6, 0xaa, 0x73,
|
||||
0x12, 0x5a, 0x62, 0x3e, 0x5f, 0xfd, 0x99, 0x02, 0x15, 0x8e, 0xf9, 0x32, 0xd4, 0xb9, 0x7e, 0xd1,
|
||||
0x50, 0x88, 0x61, 0x07, 0xde, 0x45, 0x62, 0xa1, 0x57, 0xa7, 0x60, 0xe7, 0xa0, 0x1a, 0x53, 0xad,
|
||||
0x19, 0x6e, 0xfc, 0xfc, 0x4f, 0x21, 0x7d, 0x22, 0x9f, 0x88, 0x2a, 0xa1, 0x33, 0x50, 0x1e, 0xda,
|
||||
0x03, 0x71, 0xb8, 0xc1, 0x1a, 0xea, 0x97, 0x0a, 0xad, 0x45, 0x6b, 0xb8, 0x6f, 0xef, 0x63, 0xe7,
|
||||
0xf0, 0xe4, 0xe5, 0xbc, 0xfb, 0x21, 0x31, 0xcf, 0x99, 0x53, 0x88, 0x01, 0xe8, 0x7e, 0xb0, 0x09,
|
||||
0x45, 0x59, 0xd6, 0x1f, 0x76, 0x38, 0x5c, 0x48, 0x83, 0xcd, 0xf8, 0x13, 0x85, 0x16, 0x26, 0xa3,
|
||||
0x4b, 0x39, 0xae, 0x4f, 0x7f, 0x25, 0xf1, 0xb9, 0xfa, 0xcf, 0x0a, 0x9c, 0x4b, 0xe1, 0xee, 0xb3,
|
||||
0xe5, 0x37, 0xc0, 0xdf, 0x0f, 0xa1, 0x2a, 0x32, 0xd0, 0x62, 0xae, 0x0c, 0x54, 0xc0, 0xab, 0x7f,
|
||||
0xc6, 0xca, 0xe3, 0x12, 0xf6, 0x3e, 0x5b, 0x7e, 0x4d, 0x0c, 0x8e, 0x57, 0x92, 0x8a, 0x92, 0x4a,
|
||||
0xd2, 0x57, 0x0a, 0x74, 0x82, 0xca, 0x8d, 0xbb, 0x72, 0x78, 0xd2, 0xf3, 0x94, 0x57, 0x93, 0x99,
|
||||
0x7d, 0x4b, 0x94, 0xfe, 0x89, 0x5d, 0xcc, 0x95, 0x53, 0xf9, 0x85, 0x7f, 0x8b, 0x16, 0x81, 0x93,
|
||||
0x0b, 0x3a, 0x89, 0x56, 0x76, 0x42, 0x1b, 0xcf, 0xca, 0xff, 0xc1, 0xc6, 0xfe, 0x8c, 0x09, 0xe9,
|
||||
0xc3, 0x68, 0xf9, 0xe6, 0x4d, 0x33, 0x30, 0x7c, 0x24, 0xb1, 0xcb, 0x8f, 0x24, 0x4a, 0xb1, 0x23,
|
||||
0x09, 0xde, 0xaf, 0x8e, 0xa8, 0x08, 0x24, 0x16, 0xf0, 0xba, 0x18, 0xf6, 0xbb, 0x0a, 0xb4, 0xf9,
|
||||
0x2c, 0x74, 0x4e, 0x92, 0x56, 0x0d, 0xb1, 0x87, 0x8d, 0xaf, 0xbb, 0xc8, 0xf0, 0x97, 0x05, 0x68,
|
||||
0x85, 0x03, 0x1b, 0x1a, 0x9b, 0x7c, 0x03, 0xca, 0xb4, 0x46, 0xc3, 0x29, 0x98, 0x6a, 0x1d, 0x18,
|
||||
0x34, 0xf1, 0x8c, 0x34, 0x66, 0xdf, 0x72, 0xfd, 0xc0, 0x85, 0x37, 0x83, 0xe8, 0xaa, 0x78, 0xf4,
|
||||
0xe8, 0xea, 0x02, 0xd4, 0x88, 0xe7, 0xb2, 0x27, 0x04, 0x2f, 0x3b, 0x27, 0x0e, 0x3a, 0xd0, 0x47,
|
||||
0x50, 0x61, 0xb7, 0x3f, 0xf8, 0x31, 0xdd, 0xf5, 0x28, 0x6a, 0x7e, 0x33, 0x24, 0x54, 0x66, 0xa7,
|
||||
0x1d, 0x1a, 0x1f, 0x44, 0xf6, 0x68, 0xec, 0xd8, 0x03, 0x1a, 0x86, 0x11, 0xa7, 0x56, 0xd6, 0x44,
|
||||
0x5b, 0xfd, 0x45, 0x58, 0x08, 0xb2, 0x5d, 0x46, 0xd2, 0x71, 0x05, 0x5a, 0xfd, 0x0f, 0x05, 0x4e,
|
||||
0x6f, 0x1e, 0x5a, 0xfd, 0xb8, 0x6a, 0x2c, 0x40, 0x65, 0x3c, 0xd4, 0x83, 0xe2, 0x2f, 0x6f, 0xd1,
|
||||
0x83, 0x75, 0x36, 0x37, 0x36, 0x88, 0x0b, 0x67, 0xfc, 0xac, 0x8b, 0xbe, 0x2d, 0x7b, 0x6a, 0x64,
|
||||
0x75, 0x5d, 0xa4, 0xe7, 0xd8, 0x60, 0xc1, 0x02, 0x2b, 0x6e, 0xcd, 0x8a, 0x5e, 0x1a, 0x2c, 0x7c,
|
||||
0x04, 0x40, 0xe3, 0xa9, 0xde, 0x51, 0x62, 0x28, 0x3a, 0xe2, 0x31, 0xf1, 0x98, 0x3f, 0x2d, 0x40,
|
||||
0x3b, 0xc4, 0xa5, 0xaf, 0x3b, 0xbc, 0x4c, 0x49, 0xfd, 0x8a, 0xaf, 0x28, 0xf5, 0x2b, 0x9d, 0x3c,
|
||||
0xa4, 0x2c, 0xcb, 0x42, 0xca, 0xdf, 0x28, 0x42, 0x33, 0xe0, 0xda, 0xc6, 0x50, 0xb7, 0x52, 0x25,
|
||||
0x61, 0x13, 0x9a, 0x6e, 0x84, 0xab, 0x9c, 0x4f, 0xef, 0xc9, 0x74, 0x28, 0x65, 0x23, 0xb4, 0x18,
|
||||
0x0a, 0x74, 0x91, 0x6e, 0xba, 0xe3, 0xb1, 0x72, 0x1a, 0x8b, 0x0f, 0x6b, 0x4c, 0x59, 0xcd, 0x11,
|
||||
0x46, 0xb7, 0x00, 0x71, 0x0d, 0xeb, 0x99, 0x56, 0xcf, 0xc5, 0x7d, 0xdb, 0x32, 0x98, 0xee, 0x95,
|
||||
0xb5, 0x16, 0xff, 0xd2, 0xb5, 0x36, 0x59, 0x3f, 0xfa, 0x06, 0x94, 0xbc, 0xc3, 0x31, 0x0b, 0x16,
|
||||
0x9b, 0xd2, 0x70, 0x2b, 0xa0, 0x6b, 0xeb, 0x70, 0x8c, 0x35, 0x0a, 0xee, 0x5f, 0x00, 0xf2, 0x1c,
|
||||
0x7d, 0x9f, 0x47, 0xde, 0x25, 0x2d, 0xd4, 0x43, 0xac, 0x89, 0xcf, 0xc3, 0x19, 0x16, 0xa1, 0xf2,
|
||||
0x26, 0x93, 0x6c, 0x5f, 0xa1, 0x7b, 0x9e, 0x37, 0xa4, 0x05, 0x41, 0x2a, 0xd9, 0x7e, 0xef, 0x96,
|
||||
0x37, 0x24, 0x8b, 0xf4, 0x6c, 0x4f, 0x1f, 0x32, 0xfd, 0xa8, 0x71, 0xcb, 0x41, 0x7a, 0x68, 0x96,
|
||||
0xfb, 0xef, 0xc4, 0xf2, 0x09, 0xc2, 0x34, 0xec, 0x4e, 0x86, 0xe9, 0xfa, 0x98, 0x5d, 0x9f, 0x99,
|
||||
0xa6, 0x8a, 0xdf, 0x81, 0x3a, 0x97, 0x8a, 0x23, 0x48, 0x15, 0xb0, 0x21, 0x8f, 0x33, 0xc4, 0xbc,
|
||||
0xfc, 0x8a, 0xc4, 0xbc, 0x72, 0x8c, 0x0a, 0x87, 0x7c, 0x6f, 0xd4, 0x1f, 0x2b, 0xf0, 0x56, 0xc2,
|
||||
0x6a, 0x66, 0xb2, 0x36, 0x3b, 0xf3, 0xe6, 0xd6, 0x34, 0x8e, 0x92, 0xfb, 0x86, 0xfb, 0x50, 0x71,
|
||||
0x28, 0x76, 0x7e, 0xe8, 0x75, 0x35, 0x53, 0xf8, 0x18, 0x21, 0x1a, 0x1f, 0xa2, 0xfe, 0xa9, 0x02,
|
||||
0x67, 0x93, 0xa4, 0x9e, 0xc0, 0xe1, 0xaf, 0xc0, 0x0c, 0x43, 0xed, 0xeb, 0xe8, 0x62, 0xb6, 0x8e,
|
||||
0x06, 0xcc, 0xd1, 0xfc, 0x81, 0xea, 0x26, 0x2c, 0xf8, 0x71, 0x41, 0xc0, 0xfa, 0x75, 0xec, 0xe9,
|
||||
0x19, 0x79, 0xe7, 0x65, 0xa8, 0xb3, 0x04, 0x86, 0xe5, 0x73, 0xec, 0x8c, 0x10, 0xb6, 0x45, 0x39,
|
||||
0x4f, 0xfd, 0x1f, 0x05, 0xce, 0x50, 0xc7, 0x1a, 0x3f, 0xf0, 0xc9, 0x73, 0x02, 0xa9, 0x8a, 0x3b,
|
||||
0x5e, 0x4f, 0xf4, 0x11, 0xbf, 0x87, 0x52, 0xd3, 0x22, 0x7d, 0xa8, 0x9b, 0xac, 0xf6, 0x49, 0xeb,
|
||||
0x13, 0xc1, 0x91, 0xeb, 0x9a, 0xee, 0xe9, 0xf4, 0xc4, 0x35, 0x5e, 0xe6, 0x0b, 0x1c, 0x7a, 0xe9,
|
||||
0x18, 0x0e, 0x5d, 0x7d, 0x0c, 0x6f, 0xc5, 0x56, 0x7a, 0x82, 0x1d, 0x55, 0xff, 0x56, 0x21, 0xdb,
|
||||
0x11, 0xb9, 0xcf, 0x73, 0xfc, 0xa0, 0xf6, 0xa2, 0x38, 0x69, 0xea, 0x99, 0x46, 0xdc, 0x88, 0x18,
|
||||
0xe8, 0x63, 0xa8, 0x59, 0xf8, 0xa0, 0x17, 0x8e, 0x93, 0x72, 0x44, 0xfc, 0x55, 0x0b, 0x1f, 0xd0,
|
||||
0x5f, 0xea, 0x13, 0x38, 0x9b, 0x20, 0xf5, 0x24, 0x6b, 0xff, 0x27, 0x05, 0xce, 0xad, 0x39, 0xf6,
|
||||
0xf8, 0x99, 0xe9, 0x78, 0x13, 0x7d, 0x18, 0x3d, 0xcc, 0x3e, 0xc6, 0xf2, 0x73, 0xdc, 0x15, 0xfc,
|
||||
0x34, 0x91, 0x5b, 0xde, 0x92, 0x68, 0x50, 0x92, 0x28, 0xbe, 0xe8, 0x50, 0x7c, 0xfd, 0x5f, 0x45,
|
||||
0x19, 0xf1, 0x1c, 0x6e, 0x4a, 0x5c, 0x92, 0x27, 0xf9, 0x90, 0x56, 0xdb, 0x8b, 0xc7, 0xad, 0xb6,
|
||||
0xa7, 0x98, 0xf7, 0xd2, 0x2b, 0x32, 0xef, 0x47, 0x2e, 0x8c, 0xad, 0x42, 0xf4, 0x24, 0x84, 0x7a,
|
||||
0xe7, 0xa3, 0x9e, 0x9e, 0x7c, 0x04, 0x10, 0x1c, 0x08, 0xf0, 0xfb, 0x97, 0x53, 0x30, 0x84, 0x06,
|
||||
0x90, 0x3d, 0x12, 0x0e, 0x94, 0xfb, 0xf7, 0x50, 0x89, 0xfa, 0xfb, 0xd0, 0x91, 0xc9, 0xe6, 0x49,
|
||||
0xe4, 0xfd, 0xa7, 0x05, 0x80, 0xae, 0xb8, 0xad, 0x7b, 0x3c, 0x0f, 0x70, 0x15, 0x42, 0x31, 0x48,
|
||||
0xa0, 0xe5, 0x61, 0xd9, 0x31, 0x88, 0x22, 0x88, 0x2c, 0x95, 0xc0, 0x24, 0x32, 0x57, 0x83, 0xe2,
|
||||
0x09, 0xe9, 0x0a, 0x13, 0x85, 0xb8, 0xd1, 0x3d, 0x0f, 0x35, 0xc7, 0x3e, 0xe8, 0x11, 0xe5, 0x32,
|
||||
0xfc, 0xeb, 0xc8, 0x8e, 0x7d, 0x40, 0x54, 0xce, 0x40, 0x67, 0x61, 0xc6, 0xd3, 0xdd, 0x3d, 0x82,
|
||||
0x9f, 0x15, 0xeb, 0x2a, 0xa4, 0xd9, 0x35, 0xd0, 0x19, 0x28, 0xef, 0x98, 0x43, 0xcc, 0x6e, 0x3e,
|
||||
0xd4, 0x34, 0xd6, 0x40, 0xdf, 0xf4, 0x6f, 0xd0, 0x55, 0x73, 0xdf, 0x94, 0xa1, 0xf0, 0xea, 0x97,
|
||||
0x0a, 0xcc, 0x05, 0x5c, 0xa3, 0x66, 0x87, 0x58, 0x32, 0x6a, 0xc5, 0x56, 0x6d, 0x83, 0x19, 0x88,
|
||||
0x66, 0x8a, 0x1f, 0x60, 0x03, 0x99, 0xad, 0x0a, 0x86, 0x64, 0x25, 0xce, 0x64, 0x5d, 0x64, 0xd1,
|
||||
0xa6, 0xe1, 0x97, 0x72, 0x2a, 0x8e, 0x7d, 0xd0, 0x35, 0x04, 0x37, 0xd8, 0x5d, 0x63, 0x96, 0x26,
|
||||
0x12, 0x6e, 0xac, 0xd2, 0xeb, 0xc6, 0x57, 0x61, 0x16, 0x3b, 0x8e, 0xed, 0xf4, 0x46, 0xd8, 0x75,
|
||||
0xf5, 0x01, 0xe6, 0x51, 0x79, 0x83, 0x76, 0xae, 0xb3, 0x3e, 0xf5, 0x2f, 0x4a, 0xd0, 0x0c, 0x96,
|
||||
0xe2, 0x1f, 0xb9, 0x9b, 0x86, 0x7f, 0xe4, 0x6e, 0x92, 0xad, 0x03, 0x87, 0x19, 0x40, 0xb1, 0xb9,
|
||||
0x2b, 0x85, 0xb6, 0xa2, 0xd5, 0x78, 0x6f, 0xd7, 0x20, 0xce, 0x98, 0xa8, 0x96, 0x65, 0x1b, 0x38,
|
||||
0xd8, 0x5c, 0xf0, 0xbb, 0xf8, 0xde, 0x46, 0x64, 0xa4, 0x94, 0x43, 0x46, 0xca, 0x39, 0x64, 0xa4,
|
||||
0x22, 0x91, 0x91, 0x05, 0xa8, 0x6c, 0x4f, 0xfa, 0x7b, 0xd8, 0xe3, 0x71, 0x1a, 0x6f, 0x45, 0x65,
|
||||
0xa7, 0x1a, 0x93, 0x1d, 0x21, 0x22, 0xb5, 0xb0, 0x88, 0x9c, 0x87, 0x1a, 0x3b, 0x05, 0xee, 0x79,
|
||||
0x2e, 0x3d, 0xd7, 0x2a, 0x6a, 0x55, 0xd6, 0xb1, 0xe5, 0xa2, 0x0f, 0xfc, 0x20, 0xae, 0x4e, 0x95,
|
||||
0x45, 0x95, 0xd8, 0x9a, 0x98, 0x94, 0xf8, 0x21, 0xdc, 0x0d, 0x98, 0x0b, 0xb1, 0x83, 0x7a, 0x86,
|
||||
0x06, 0x25, 0x35, 0x14, 0xe3, 0x53, 0xe7, 0x70, 0x1d, 0x9a, 0x01, 0x4b, 0x28, 0xdc, 0x2c, 0x4b,
|
||||
0xad, 0x44, 0x2f, 0x05, 0x13, 0x92, 0xdc, 0x3c, 0x9a, 0x24, 0xa3, 0x73, 0x50, 0xe5, 0x39, 0x91,
|
||||
0xdb, 0x9e, 0x8b, 0x94, 0x2f, 0xd4, 0x1f, 0x02, 0x0a, 0xa8, 0x3f, 0x59, 0x8c, 0x18, 0x13, 0x8f,
|
||||
0x42, 0x5c, 0x3c, 0xd4, 0xbf, 0x53, 0x60, 0x3e, 0x3c, 0xd9, 0x71, 0xdd, 0xed, 0xc7, 0x50, 0x67,
|
||||
0x27, 0x8b, 0x3d, 0xa2, 0xf8, 0xf2, 0x23, 0xc2, 0xd8, 0xbe, 0x68, 0x10, 0xbc, 0x56, 0x20, 0xe2,
|
||||
0x75, 0x60, 0x3b, 0x7b, 0xa6, 0x35, 0xe8, 0x11, 0xca, 0x44, 0xe5, 0x94, 0x77, 0x3e, 0x21, 0x7d,
|
||||
0xea, 0x1f, 0x28, 0x70, 0xe9, 0xe9, 0xd8, 0xd0, 0x3d, 0x1c, 0x8a, 0x3b, 0x4e, 0x7a, 0x69, 0x50,
|
||||
0xdc, 0xda, 0x2b, 0x64, 0xec, 0x60, 0x68, 0x3e, 0x97, 0xdf, 0xda, 0x23, 0xd1, 0x1a, 0xa7, 0x26,
|
||||
0x71, 0xcd, 0xf6, 0xf8, 0xd4, 0x74, 0xa0, 0xba, 0xcf, 0xd1, 0xf9, 0xef, 0x2f, 0xfc, 0x76, 0xe4,
|
||||
0x0c, 0xb6, 0x78, 0xa4, 0x33, 0x58, 0x75, 0x1d, 0xce, 0x69, 0xd8, 0xc5, 0x96, 0x11, 0x59, 0xc8,
|
||||
0xb1, 0xeb, 0x4b, 0x63, 0xe8, 0xc8, 0xd0, 0x9d, 0x44, 0x52, 0x59, 0xb8, 0xda, 0x73, 0x08, 0x5a,
|
||||
0x8f, 0xdb, 0x61, 0x12, 0x25, 0xd1, 0x79, 0x3c, 0xf5, 0xef, 0x0b, 0x70, 0xf6, 0x81, 0x61, 0x70,
|
||||
0x13, 0xce, 0x03, 0xb0, 0xd7, 0x15, 0x1b, 0xc7, 0x63, 0xc7, 0x62, 0x32, 0x76, 0x7c, 0x55, 0x66,
|
||||
0x95, 0x3b, 0x18, 0x6b, 0x32, 0xf2, 0x1d, 0xa7, 0xc3, 0x2e, 0x22, 0xdd, 0xe7, 0x27, 0x95, 0x24,
|
||||
0x87, 0xa7, 0xce, 0x73, 0x7a, 0x48, 0x55, 0xf5, 0xeb, 0x64, 0xea, 0x18, 0xda, 0x49, 0x66, 0x9d,
|
||||
0xd0, 0x8e, 0xf8, 0x1c, 0x19, 0xdb, 0xac, 0xde, 0xda, 0x20, 0xf1, 0x13, 0xed, 0xda, 0xb0, 0x5d,
|
||||
0xf5, 0x7f, 0x0b, 0xd0, 0xde, 0xd4, 0xf7, 0xf1, 0xcf, 0xcf, 0x06, 0x7d, 0x06, 0x67, 0x5c, 0x7d,
|
||||
0x1f, 0xf7, 0x42, 0xb9, 0x70, 0xcf, 0xc1, 0x2f, 0x78, 0xe8, 0xf9, 0xae, 0xac, 0x22, 0x2e, 0xbd,
|
||||
0xbe, 0xa3, 0xcd, 0xbb, 0x91, 0x7e, 0x0d, 0xbf, 0x40, 0xef, 0xc0, 0x5c, 0xf8, 0x56, 0x18, 0x21,
|
||||
0xad, 0x4a, 0x59, 0x3e, 0x1b, 0xba, 0xf9, 0xd5, 0x35, 0xd4, 0x17, 0x70, 0xe1, 0xa9, 0xe5, 0x62,
|
||||
0xaf, 0x1b, 0xdc, 0x5e, 0x3a, 0x61, 0xd6, 0x78, 0x19, 0xea, 0x01, 0xe3, 0x13, 0x0f, 0x2f, 0x0c,
|
||||
0x57, 0xb5, 0xa1, 0xb3, 0xae, 0x3b, 0x7b, 0x7e, 0x65, 0x79, 0x8d, 0x5d, 0x35, 0x79, 0x8d, 0x13,
|
||||
0xee, 0x88, 0x4b, 0x57, 0x1a, 0xde, 0xc1, 0x0e, 0xb6, 0xfa, 0xf8, 0xb1, 0xdd, 0xdf, 0x23, 0xb1,
|
||||
0x86, 0xc7, 0xde, 0xbe, 0x29, 0xa1, 0x88, 0x73, 0x2d, 0xf4, 0xb4, 0xad, 0x10, 0x79, 0xda, 0x36,
|
||||
0xe5, 0xa9, 0xa4, 0xfa, 0x93, 0x02, 0x2c, 0x3c, 0x18, 0x7a, 0xd8, 0x09, 0x92, 0xfd, 0xa3, 0xd4,
|
||||
0x2d, 0x82, 0x42, 0x42, 0xe1, 0x38, 0x27, 0x03, 0x39, 0x0e, 0x0e, 0x65, 0x65, 0x8f, 0xd2, 0x31,
|
||||
0xcb, 0x1e, 0x0f, 0x00, 0xc6, 0x8e, 0x3d, 0xc6, 0x8e, 0x67, 0x62, 0x3f, 0x63, 0xcb, 0x11, 0xbb,
|
||||
0x84, 0x06, 0xa9, 0x9f, 0x41, 0xeb, 0x51, 0x7f, 0xd5, 0xb6, 0x76, 0x4c, 0x67, 0xe4, 0x33, 0x2a,
|
||||
0xa1, 0x74, 0x4a, 0x0e, 0xa5, 0x2b, 0x24, 0x94, 0x4e, 0x35, 0x61, 0x3e, 0x84, 0xfb, 0x84, 0x86,
|
||||
0x6b, 0xd0, 0xef, 0xed, 0x98, 0x96, 0x49, 0xaf, 0x72, 0x15, 0x68, 0xec, 0x09, 0x83, 0xfe, 0x43,
|
||||
0xde, 0x73, 0xf3, 0x63, 0x71, 0xeb, 0x75, 0xeb, 0x70, 0x8c, 0xd1, 0x0c, 0x14, 0x9f, 0xe0, 0x83,
|
||||
0xd6, 0x29, 0x04, 0x50, 0x79, 0x62, 0x3b, 0x23, 0x7d, 0xd8, 0x52, 0x50, 0x1d, 0x66, 0xf8, 0x51,
|
||||
0x5d, 0xab, 0x80, 0x66, 0xa1, 0xb6, 0xea, 0x1f, 0x69, 0xb4, 0x8a, 0x37, 0xff, 0x4a, 0x81, 0xf9,
|
||||
0xc4, 0x61, 0x12, 0x6a, 0x02, 0x3c, 0xb5, 0xfa, 0xfc, 0x94, 0xad, 0x75, 0x0a, 0x35, 0xa0, 0xea,
|
||||
0x9f, 0xb9, 0x31, 0x7c, 0x5b, 0x36, 0x85, 0x6e, 0x15, 0x50, 0x0b, 0x1a, 0x6c, 0xe0, 0xa4, 0xdf,
|
||||
0xc7, 0xae, 0xdb, 0x2a, 0x8a, 0x9e, 0x87, 0xba, 0x39, 0x9c, 0x38, 0xb8, 0x55, 0x22, 0x73, 0x6e,
|
||||
0xd9, 0x1a, 0x1e, 0x62, 0xdd, 0xc5, 0xad, 0x32, 0x42, 0xd0, 0xe4, 0x0d, 0x7f, 0x50, 0x25, 0xd4,
|
||||
0xe7, 0x0f, 0x9b, 0xb9, 0xf9, 0x3c, 0x5c, 0xf6, 0xa7, 0xcb, 0x3b, 0x0b, 0xa7, 0x9f, 0x5a, 0x06,
|
||||
0xde, 0x31, 0x2d, 0x6c, 0x04, 0x9f, 0x5a, 0xa7, 0xd0, 0x69, 0x98, 0x5b, 0xc7, 0xce, 0x00, 0x87,
|
||||
0x3a, 0x0b, 0x68, 0x1e, 0x66, 0xd7, 0xcd, 0x97, 0xa1, 0xae, 0xa2, 0x5a, 0xaa, 0x2a, 0x2d, 0x65,
|
||||
0xf9, 0xdf, 0xae, 0x41, 0x8d, 0xc8, 0xd6, 0xaa, 0x6d, 0x3b, 0x06, 0x1a, 0x02, 0xa2, 0x6f, 0x4b,
|
||||
0x46, 0x63, 0xdb, 0x12, 0xef, 0xd0, 0xd0, 0x52, 0x2c, 0x36, 0x61, 0x8d, 0x24, 0x20, 0x97, 0x9d,
|
||||
0xce, 0x35, 0x29, 0x7c, 0x0c, 0x58, 0x3d, 0x85, 0x46, 0x74, 0xb6, 0x2d, 0x73, 0x84, 0xb7, 0xcc,
|
||||
0xfe, 0x9e, 0x1f, 0x1b, 0xdd, 0x4d, 0x79, 0xcc, 0x93, 0x04, 0xf5, 0xe7, 0xbb, 0x2a, 0x9d, 0x8f,
|
||||
0x3d, 0xfe, 0xf1, 0x65, 0x4e, 0x3d, 0x85, 0x5e, 0xc0, 0x99, 0x47, 0x38, 0x14, 0x68, 0xfa, 0x13,
|
||||
0x2e, 0xa7, 0x4f, 0x98, 0x00, 0x3e, 0xe2, 0x94, 0x8f, 0xa1, 0x4c, 0xc5, 0x0d, 0xc9, 0x4e, 0x42,
|
||||
0xc3, 0x8f, 0xc8, 0x3b, 0x57, 0xd2, 0x01, 0x04, 0xb6, 0x1f, 0xc2, 0x5c, 0xec, 0x79, 0x29, 0x92,
|
||||
0x39, 0x27, 0xf9, 0x43, 0xe1, 0xce, 0xcd, 0x3c, 0xa0, 0x62, 0xae, 0x01, 0x34, 0xa3, 0x6f, 0x52,
|
||||
0xd0, 0x62, 0x8e, 0x97, 0x6d, 0x6c, 0xa6, 0x77, 0x73, 0xbf, 0x81, 0xa3, 0x42, 0xd0, 0x8a, 0x3f,
|
||||
0x7c, 0x44, 0x37, 0x33, 0x11, 0x44, 0x85, 0xed, 0xbd, 0x5c, 0xb0, 0x62, 0xba, 0x43, 0x2a, 0x04,
|
||||
0x89, 0x57, 0x67, 0x71, 0x19, 0xf7, 0xd1, 0xa4, 0x3d, 0x87, 0xeb, 0xdc, 0xc9, 0x0d, 0x2f, 0xa6,
|
||||
0xfe, 0x4d, 0x76, 0xdd, 0x49, 0xf6, 0x72, 0x0b, 0xbd, 0x2f, 0x47, 0x97, 0xf1, 0xe4, 0xac, 0xb3,
|
||||
0x7c, 0x94, 0x21, 0x82, 0x88, 0x5f, 0xa7, 0xf7, 0x94, 0x24, 0x6f, 0x9f, 0xe2, 0x7a, 0xe7, 0xe3,
|
||||
0x4b, 0x7f, 0xd6, 0xd5, 0x79, 0xff, 0x08, 0x23, 0x04, 0x01, 0x76, 0xfc, 0x65, 0xa9, 0xaf, 0x86,
|
||||
0x77, 0xa6, 0x4a, 0xcd, 0xf1, 0x74, 0xf0, 0x07, 0x30, 0x17, 0x0b, 0xd7, 0x50, 0xfe, 0x90, 0xae,
|
||||
0x93, 0xe5, 0x9a, 0x98, 0x4a, 0xc6, 0xee, 0x25, 0xa1, 0x14, 0xe9, 0x97, 0xdc, 0x5d, 0xea, 0xdc,
|
||||
0xcc, 0x03, 0x2a, 0x16, 0x32, 0x86, 0xf9, 0xd8, 0xc7, 0x67, 0xcb, 0xe8, 0xbd, 0xdc, 0xb3, 0x3d,
|
||||
0x5b, 0xee, 0xdc, 0xca, 0x3f, 0xdf, 0xb3, 0x65, 0xf5, 0x14, 0x72, 0xa9, 0x81, 0x8e, 0xdd, 0x6d,
|
||||
0x41, 0x29, 0x58, 0xe4, 0x77, 0x78, 0x3a, 0xb7, 0x73, 0x42, 0x8b, 0x65, 0xee, 0xc3, 0x69, 0xc9,
|
||||
0x15, 0x24, 0x74, 0x3b, 0x53, 0x3c, 0xe2, 0x77, 0xaf, 0x3a, 0x4b, 0x79, 0xc1, 0x43, 0xee, 0xa1,
|
||||
0xe5, 0xd3, 0xf5, 0x60, 0x38, 0x64, 0xce, 0xff, 0x56, 0x9a, 0xe7, 0x8b, 0x80, 0xa5, 0x2c, 0x35,
|
||||
0x15, 0x5a, 0x4c, 0xf9, 0xab, 0x80, 0x36, 0x77, 0xed, 0x03, 0x1a, 0x1e, 0x0d, 0x26, 0x8e, 0xce,
|
||||
0x22, 0xba, 0x34, 0x07, 0x98, 0x04, 0x4d, 0x51, 0xc4, 0xcc, 0x11, 0x62, 0xf2, 0x1e, 0xc0, 0x23,
|
||||
0xec, 0xad, 0x63, 0xcf, 0x21, 0xda, 0xff, 0x4e, 0x1a, 0xed, 0x1c, 0xc0, 0x9f, 0xea, 0xc6, 0x54,
|
||||
0xb8, 0x30, 0x43, 0xd7, 0x75, 0x6b, 0xa2, 0x0f, 0x43, 0x4f, 0x3f, 0xe4, 0x0c, 0x8d, 0x83, 0x65,
|
||||
0x33, 0x34, 0x09, 0x2d, 0xa6, 0x3c, 0x10, 0xf1, 0x4b, 0xe8, 0xa4, 0x34, 0x3b, 0x7e, 0x49, 0xde,
|
||||
0xd2, 0x89, 0xdb, 0xf6, 0x0c, 0x78, 0x31, 0xf1, 0x17, 0x0a, 0xbd, 0x38, 0x17, 0x03, 0x78, 0x6e,
|
||||
0x7a, 0xbb, 0x1b, 0x43, 0xdd, 0x72, 0xf3, 0x90, 0x40, 0x01, 0x8f, 0x40, 0x02, 0x87, 0x17, 0x24,
|
||||
0x18, 0x30, 0x1b, 0x39, 0xc0, 0x44, 0xb2, 0x07, 0x13, 0xb2, 0xc3, 0xdc, 0xce, 0xe2, 0x74, 0x40,
|
||||
0x31, 0xcb, 0x2e, 0xcc, 0xfa, 0x02, 0xcd, 0x98, 0xfb, 0x6e, 0xa6, 0xd0, 0x47, 0xf8, 0x7a, 0x33,
|
||||
0x0f, 0xa8, 0x98, 0xc9, 0x05, 0x94, 0x3c, 0xa9, 0x41, 0xf9, 0xce, 0xf5, 0xb2, 0x8c, 0x4f, 0xfa,
|
||||
0xf1, 0x0f, 0xb3, 0xe7, 0xb1, 0xb3, 0x50, 0xb9, 0xb3, 0x90, 0x1e, 0xed, 0x4a, 0xed, 0x79, 0xca,
|
||||
0xd1, 0xaa, 0x7a, 0x0a, 0x3d, 0x87, 0x0a, 0xff, 0x0b, 0x98, 0x6b, 0xd9, 0xd5, 0x55, 0x8e, 0xfd,
|
||||
0xfa, 0x14, 0x28, 0x81, 0x78, 0x0f, 0xce, 0xa6, 0xd4, 0x56, 0xa5, 0x71, 0x46, 0x76, 0x1d, 0x76,
|
||||
0x9a, 0x07, 0x14, 0x93, 0x25, 0x4a, 0xa7, 0x19, 0x93, 0xa5, 0x95, 0x59, 0xa7, 0x4d, 0xd6, 0x83,
|
||||
0xf9, 0x44, 0x69, 0x4a, 0xea, 0x02, 0xd3, 0x0a, 0x58, 0xd3, 0x26, 0x18, 0xc0, 0x5b, 0xd2, 0x32,
|
||||
0x8c, 0x34, 0x3a, 0xc9, 0x2a, 0xd8, 0x4c, 0x9b, 0xa8, 0x0f, 0xa7, 0x25, 0xc5, 0x17, 0xa9, 0x97,
|
||||
0x4b, 0x2f, 0xd2, 0x4c, 0x9b, 0x64, 0x07, 0x3a, 0x2b, 0x8e, 0xad, 0x1b, 0x7d, 0xdd, 0xf5, 0x68,
|
||||
0x41, 0x84, 0xa4, 0x8a, 0x7e, 0x78, 0x28, 0xcf, 0x1d, 0xa4, 0x65, 0x93, 0x69, 0xf3, 0x6c, 0x43,
|
||||
0x9d, 0x6e, 0x25, 0xfb, 0x9b, 0x0e, 0x24, 0xf7, 0x11, 0x21, 0x88, 0x14, 0xc3, 0x23, 0x03, 0x14,
|
||||
0x42, 0xbd, 0x05, 0xf5, 0x55, 0x7a, 0x68, 0xd4, 0xb5, 0x0c, 0xfc, 0x32, 0xee, 0xaf, 0xe8, 0x5b,
|
||||
0xe5, 0xa5, 0x10, 0x40, 0x6e, 0x0e, 0xcd, 0xd2, 0xa8, 0xdd, 0xc0, 0x2f, 0xd9, 0x3e, 0x2f, 0xca,
|
||||
0xf0, 0x46, 0x40, 0x52, 0xb2, 0x1c, 0x29, 0x64, 0xc8, 0xd3, 0x9f, 0x09, 0xc7, 0xb2, 0x62, 0xba,
|
||||
0x3b, 0x29, 0x48, 0x12, 0x90, 0xfe, 0xac, 0x77, 0xf3, 0x0f, 0x08, 0x7b, 0x06, 0x9f, 0xae, 0x2e,
|
||||
0x3d, 0xb1, 0xba, 0x91, 0x45, 0x7a, 0x38, 0x40, 0x5d, 0x9c, 0x0e, 0x28, 0x66, 0xd9, 0x80, 0x1a,
|
||||
0x91, 0x4e, 0xb6, 0x3d, 0xd7, 0x64, 0x03, 0xc5, 0xe7, 0xfc, 0x9b, 0xb3, 0x86, 0xdd, 0xbe, 0x63,
|
||||
0x6e, 0xf3, 0x4d, 0x97, 0x92, 0x13, 0x01, 0xc9, 0xdc, 0x9c, 0x18, 0xa4, 0xa0, 0x7c, 0x42, 0xa3,
|
||||
0x06, 0xc1, 0x3a, 0x6e, 0x2a, 0x6f, 0x4f, 0xdb, 0xdf, 0xa8, 0x99, 0x5c, 0xca, 0x0b, 0x2e, 0xa6,
|
||||
0xfd, 0x35, 0x9a, 0x09, 0xd1, 0xef, 0x2b, 0x13, 0x73, 0x68, 0x6c, 0xf0, 0xfb, 0xc3, 0xe8, 0x6e,
|
||||
0x16, 0xaa, 0x08, 0x68, 0x6a, 0x00, 0x98, 0x31, 0x42, 0xcc, 0xff, 0xcb, 0x50, 0x13, 0xa5, 0x39,
|
||||
0x24, 0xbb, 0x00, 0x17, 0x2f, 0x0a, 0x76, 0xae, 0x65, 0x03, 0xf9, 0x98, 0x97, 0xbf, 0xac, 0x41,
|
||||
0xd5, 0x7f, 0xb3, 0xf6, 0x35, 0xd7, 0x94, 0xde, 0x40, 0x91, 0xe7, 0x07, 0x30, 0x17, 0xfb, 0x5b,
|
||||
0x04, 0xa9, 0x69, 0x95, 0xff, 0x75, 0xc2, 0x34, 0x1d, 0x78, 0xce, 0xff, 0xb5, 0x4f, 0x64, 0x5f,
|
||||
0x37, 0xd2, 0x0a, 0x45, 0xf1, 0xc4, 0x6b, 0x0a, 0xe2, 0xff, 0xdf, 0xb9, 0xc7, 0x13, 0x80, 0x50,
|
||||
0xd6, 0x91, 0x7d, 0xb5, 0x98, 0x04, 0xd2, 0xd3, 0xb8, 0x35, 0x92, 0x26, 0x16, 0xef, 0xe6, 0xb9,
|
||||
0xa6, 0x99, 0x1e, 0x1a, 0xa6, 0xa7, 0x13, 0x4f, 0xa1, 0x11, 0xbe, 0xf4, 0x8f, 0xa4, 0xff, 0x11,
|
||||
0x97, 0x7c, 0x15, 0x30, 0x6d, 0x15, 0xeb, 0x47, 0x8c, 0x38, 0xa7, 0xa0, 0x73, 0x01, 0x25, 0xcf,
|
||||
0x8e, 0xa5, 0x11, 0x7a, 0xea, 0x89, 0xb5, 0x34, 0x42, 0x4f, 0x3f, 0x90, 0x66, 0xf5, 0xc2, 0xf8,
|
||||
0x81, 0xa8, 0xb4, 0x5e, 0x98, 0x72, 0xc4, 0x2c, 0xad, 0x17, 0xa6, 0x9d, 0xb0, 0xaa, 0xa7, 0x56,
|
||||
0xee, 0x7d, 0xf6, 0xfe, 0xc0, 0xf4, 0x76, 0x27, 0xdb, 0x64, 0xf5, 0x77, 0xd8, 0xd0, 0xdb, 0xa6,
|
||||
0xcd, 0x7f, 0xdd, 0xf1, 0xc5, 0xfd, 0x0e, 0xc5, 0x76, 0x87, 0x60, 0x1b, 0x6f, 0x6f, 0x57, 0x68,
|
||||
0xeb, 0xde, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xec, 0x97, 0xd4, 0xae, 0xb1, 0x54, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
@ -5331,6 +5332,7 @@ type DataCoordClient interface {
|
|||
GetIndexInfos(ctx context.Context, in *indexpb.GetIndexInfoRequest, opts ...grpc.CallOption) (*indexpb.GetIndexInfoResponse, error)
|
||||
DropIndex(ctx context.Context, in *indexpb.DropIndexRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
||||
DescribeIndex(ctx context.Context, in *indexpb.DescribeIndexRequest, opts ...grpc.CallOption) (*indexpb.DescribeIndexResponse, error)
|
||||
GetIndexStatistics(ctx context.Context, in *indexpb.GetIndexStatisticsRequest, opts ...grpc.CallOption) (*indexpb.GetIndexStatisticsResponse, error)
|
||||
// Deprecated: use DescribeIndex instead
|
||||
GetIndexBuildProgress(ctx context.Context, in *indexpb.GetIndexBuildProgressRequest, opts ...grpc.CallOption) (*indexpb.GetIndexBuildProgressResponse, error)
|
||||
GcConfirm(ctx context.Context, in *GcConfirmRequest, opts ...grpc.CallOption) (*GcConfirmResponse, error)
|
||||
|
@ -5704,6 +5706,15 @@ func (c *dataCoordClient) DescribeIndex(ctx context.Context, in *indexpb.Describ
|
|||
return out, nil
|
||||
}
|
||||
|
||||
func (c *dataCoordClient) GetIndexStatistics(ctx context.Context, in *indexpb.GetIndexStatisticsRequest, opts ...grpc.CallOption) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
out := new(indexpb.GetIndexStatisticsResponse)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetIndexStatistics", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *dataCoordClient) GetIndexBuildProgress(ctx context.Context, in *indexpb.GetIndexBuildProgressRequest, opts ...grpc.CallOption) (*indexpb.GetIndexBuildProgressResponse, error) {
|
||||
out := new(indexpb.GetIndexBuildProgressResponse)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetIndexBuildProgress", in, out, opts...)
|
||||
|
@ -5767,6 +5778,7 @@ type DataCoordServer interface {
|
|||
GetIndexInfos(context.Context, *indexpb.GetIndexInfoRequest) (*indexpb.GetIndexInfoResponse, error)
|
||||
DropIndex(context.Context, *indexpb.DropIndexRequest) (*commonpb.Status, error)
|
||||
DescribeIndex(context.Context, *indexpb.DescribeIndexRequest) (*indexpb.DescribeIndexResponse, error)
|
||||
GetIndexStatistics(context.Context, *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error)
|
||||
// Deprecated: use DescribeIndex instead
|
||||
GetIndexBuildProgress(context.Context, *indexpb.GetIndexBuildProgressRequest) (*indexpb.GetIndexBuildProgressResponse, error)
|
||||
GcConfirm(context.Context, *GcConfirmRequest) (*GcConfirmResponse, error)
|
||||
|
@ -5896,6 +5908,9 @@ func (*UnimplementedDataCoordServer) DropIndex(ctx context.Context, req *indexpb
|
|||
func (*UnimplementedDataCoordServer) DescribeIndex(ctx context.Context, req *indexpb.DescribeIndexRequest) (*indexpb.DescribeIndexResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method DescribeIndex not implemented")
|
||||
}
|
||||
func (*UnimplementedDataCoordServer) GetIndexStatistics(ctx context.Context, req *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetIndexStatistics not implemented")
|
||||
}
|
||||
func (*UnimplementedDataCoordServer) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetIndexBuildProgressRequest) (*indexpb.GetIndexBuildProgressResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetIndexBuildProgress not implemented")
|
||||
}
|
||||
|
@ -6627,6 +6642,24 @@ func _DataCoord_DescribeIndex_Handler(srv interface{}, ctx context.Context, dec
|
|||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _DataCoord_GetIndexStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(indexpb.GetIndexStatisticsRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(DataCoordServer).GetIndexStatistics(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.data.DataCoord/GetIndexStatistics",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(DataCoordServer).GetIndexStatistics(ctx, req.(*indexpb.GetIndexStatisticsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _DataCoord_GetIndexBuildProgress_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(indexpb.GetIndexBuildProgressRequest)
|
||||
if err := dec(in); err != nil {
|
||||
|
@ -6827,6 +6860,10 @@ var _DataCoord_serviceDesc = grpc.ServiceDesc{
|
|||
MethodName: "DescribeIndex",
|
||||
Handler: _DataCoord_DescribeIndex_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetIndexStatistics",
|
||||
Handler: _DataCoord_GetIndexStatistics_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetIndexBuildProgress",
|
||||
Handler: _DataCoord_GetIndexBuildProgress_Handler,
|
||||
|
|
|
@ -18,6 +18,7 @@ service IndexCoord {
|
|||
rpc GetIndexInfos(GetIndexInfoRequest) returns (GetIndexInfoResponse){}
|
||||
rpc DropIndex(DropIndexRequest) returns (common.Status) {}
|
||||
rpc DescribeIndex(DescribeIndexRequest) returns (DescribeIndexResponse) {}
|
||||
rpc GetIndexStatistics(GetIndexStatisticsRequest) returns (GetIndexStatisticsResponse) {}
|
||||
// Deprecated: use DescribeIndex instead
|
||||
rpc GetIndexBuildProgress(GetIndexBuildProgressRequest) returns (GetIndexBuildProgressResponse) {}
|
||||
|
||||
|
@ -263,3 +264,13 @@ message GetJobStatsResponse {
|
|||
repeated JobInfo job_infos = 6;
|
||||
bool enable_disk = 7;
|
||||
}
|
||||
|
||||
message GetIndexStatisticsRequest {
|
||||
int64 collectionID = 1;
|
||||
string index_name = 2;
|
||||
}
|
||||
|
||||
message GetIndexStatisticsResponse {
|
||||
common.Status status = 1;
|
||||
repeated IndexInfo index_infos = 2;
|
||||
}
|
||||
|
|
|
@ -1993,6 +1993,100 @@ func (m *GetJobStatsResponse) GetEnableDisk() bool {
|
|||
return false
|
||||
}
|
||||
|
||||
type GetIndexStatisticsRequest struct {
|
||||
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
||||
IndexName string `protobuf:"bytes,2,opt,name=index_name,json=indexName,proto3" json:"index_name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetIndexStatisticsRequest) Reset() { *m = GetIndexStatisticsRequest{} }
|
||||
func (m *GetIndexStatisticsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetIndexStatisticsRequest) ProtoMessage() {}
|
||||
func (*GetIndexStatisticsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_f9e019eb3fda53c2, []int{29}
|
||||
}
|
||||
|
||||
func (m *GetIndexStatisticsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetIndexStatisticsRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetIndexStatisticsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetIndexStatisticsRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *GetIndexStatisticsRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetIndexStatisticsRequest.Merge(m, src)
|
||||
}
|
||||
func (m *GetIndexStatisticsRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_GetIndexStatisticsRequest.Size(m)
|
||||
}
|
||||
func (m *GetIndexStatisticsRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetIndexStatisticsRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetIndexStatisticsRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *GetIndexStatisticsRequest) GetCollectionID() int64 {
|
||||
if m != nil {
|
||||
return m.CollectionID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *GetIndexStatisticsRequest) GetIndexName() string {
|
||||
if m != nil {
|
||||
return m.IndexName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type GetIndexStatisticsResponse struct {
|
||||
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
||||
IndexInfos []*IndexInfo `protobuf:"bytes,2,rep,name=index_infos,json=indexInfos,proto3" json:"index_infos,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetIndexStatisticsResponse) Reset() { *m = GetIndexStatisticsResponse{} }
|
||||
func (m *GetIndexStatisticsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetIndexStatisticsResponse) ProtoMessage() {}
|
||||
func (*GetIndexStatisticsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_f9e019eb3fda53c2, []int{30}
|
||||
}
|
||||
|
||||
func (m *GetIndexStatisticsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetIndexStatisticsResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetIndexStatisticsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetIndexStatisticsResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *GetIndexStatisticsResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetIndexStatisticsResponse.Merge(m, src)
|
||||
}
|
||||
func (m *GetIndexStatisticsResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_GetIndexStatisticsResponse.Size(m)
|
||||
}
|
||||
func (m *GetIndexStatisticsResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetIndexStatisticsResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetIndexStatisticsResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *GetIndexStatisticsResponse) GetStatus() *commonpb.Status {
|
||||
if m != nil {
|
||||
return m.Status
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *GetIndexStatisticsResponse) GetIndexInfos() []*IndexInfo {
|
||||
if m != nil {
|
||||
return m.IndexInfos
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*IndexInfo)(nil), "milvus.proto.index.IndexInfo")
|
||||
proto.RegisterType((*FieldIndex)(nil), "milvus.proto.index.FieldIndex")
|
||||
|
@ -2024,149 +2118,153 @@ func init() {
|
|||
proto.RegisterType((*JobInfo)(nil), "milvus.proto.index.JobInfo")
|
||||
proto.RegisterType((*GetJobStatsRequest)(nil), "milvus.proto.index.GetJobStatsRequest")
|
||||
proto.RegisterType((*GetJobStatsResponse)(nil), "milvus.proto.index.GetJobStatsResponse")
|
||||
proto.RegisterType((*GetIndexStatisticsRequest)(nil), "milvus.proto.index.GetIndexStatisticsRequest")
|
||||
proto.RegisterType((*GetIndexStatisticsResponse)(nil), "milvus.proto.index.GetIndexStatisticsResponse")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("index_coord.proto", fileDescriptor_f9e019eb3fda53c2) }
|
||||
|
||||
var fileDescriptor_f9e019eb3fda53c2 = []byte{
|
||||
// 2184 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xcd, 0x8e, 0xdb, 0xc8,
|
||||
0xf1, 0x37, 0x45, 0xcd, 0x8c, 0x58, 0x94, 0xe6, 0xa3, 0xed, 0xfd, 0xff, 0x65, 0xd9, 0x8e, 0xc7,
|
||||
0xf4, 0xda, 0x56, 0x02, 0xec, 0xd8, 0x99, 0xcd, 0x06, 0x9b, 0x20, 0x09, 0x30, 0x9e, 0x59, 0xdb,
|
||||
0xb2, 0xd7, 0xc6, 0x84, 0x32, 0x16, 0xc8, 0x22, 0x80, 0x42, 0x89, 0xad, 0x99, 0xde, 0xa1, 0xd8,
|
||||
0x32, 0xbb, 0x69, 0x7b, 0x1c, 0x20, 0xc8, 0x65, 0x0f, 0x59, 0x2c, 0x10, 0x20, 0x08, 0x92, 0x17,
|
||||
0xc8, 0x69, 0x73, 0xc8, 0x3d, 0x97, 0xbc, 0x40, 0x4e, 0x79, 0x84, 0xbc, 0x44, 0xae, 0x41, 0x7f,
|
||||
0x90, 0x22, 0x29, 0x6a, 0xa4, 0xf9, 0xc8, 0x25, 0xb9, 0xa9, 0x8b, 0xd5, 0x5f, 0x55, 0xbf, 0xaa,
|
||||
0xfa, 0x55, 0x0b, 0x36, 0x48, 0xe8, 0xe3, 0xb7, 0xbd, 0x01, 0xa5, 0x91, 0xbf, 0x35, 0x8e, 0x28,
|
||||
0xa7, 0x08, 0x8d, 0x48, 0xf0, 0x3a, 0x66, 0x6a, 0xb4, 0x25, 0xbf, 0xb7, 0xea, 0x03, 0x3a, 0x1a,
|
||||
0xd1, 0x50, 0xc9, 0x5a, 0xab, 0x24, 0xe4, 0x38, 0x0a, 0xbd, 0x40, 0x8f, 0xeb, 0xd9, 0x19, 0xce,
|
||||
0x5f, 0xaa, 0x60, 0x75, 0xc4, 0xac, 0x4e, 0x38, 0xa4, 0xc8, 0x81, 0xfa, 0x80, 0x06, 0x01, 0x1e,
|
||||
0x70, 0x42, 0xc3, 0xce, 0x5e, 0xd3, 0xd8, 0x34, 0xda, 0xa6, 0x9b, 0x93, 0xa1, 0x26, 0xac, 0x0c,
|
||||
0x09, 0x0e, 0xfc, 0xce, 0x5e, 0xb3, 0x22, 0x3f, 0x27, 0x43, 0x74, 0x03, 0x40, 0x1d, 0x30, 0xf4,
|
||||
0x46, 0xb8, 0x69, 0x6e, 0x1a, 0x6d, 0xcb, 0xb5, 0xa4, 0xe4, 0x85, 0x37, 0xc2, 0x62, 0xa2, 0x1c,
|
||||
0x74, 0xf6, 0x9a, 0x55, 0x35, 0x51, 0x0f, 0xd1, 0x43, 0xb0, 0xf9, 0xf1, 0x18, 0xf7, 0xc6, 0x5e,
|
||||
0xe4, 0x8d, 0x58, 0x73, 0x69, 0xd3, 0x6c, 0xdb, 0xdb, 0xb7, 0xb6, 0x72, 0x57, 0xd3, 0x77, 0x7a,
|
||||
0x86, 0x8f, 0x3f, 0xf3, 0x82, 0x18, 0xef, 0x7b, 0x24, 0x72, 0x41, 0xcc, 0xda, 0x97, 0x93, 0xd0,
|
||||
0x1e, 0xd4, 0xd5, 0xe6, 0x7a, 0x91, 0xe5, 0x45, 0x17, 0xb1, 0xe5, 0x34, 0xbd, 0xca, 0x2d, 0xbd,
|
||||
0x0a, 0xf6, 0x7b, 0x11, 0x7d, 0xc3, 0x9a, 0x2b, 0xf2, 0xa0, 0xb6, 0x96, 0xb9, 0xf4, 0x0d, 0x13,
|
||||
0xb7, 0xe4, 0x94, 0x7b, 0x81, 0x52, 0xa8, 0x49, 0x05, 0x4b, 0x4a, 0xe4, 0xe7, 0x8f, 0x60, 0x89,
|
||||
0x71, 0x8f, 0xe3, 0xa6, 0xb5, 0x69, 0xb4, 0x57, 0xb7, 0x6f, 0x96, 0x1e, 0x40, 0x5a, 0xbc, 0x2b,
|
||||
0xd4, 0x5c, 0xa5, 0x8d, 0x3e, 0x82, 0xff, 0x57, 0xc7, 0x97, 0xc3, 0xde, 0xd0, 0x23, 0x41, 0x2f,
|
||||
0xc2, 0x1e, 0xa3, 0x61, 0x13, 0xa4, 0x21, 0xaf, 0x90, 0x74, 0xce, 0x23, 0x8f, 0x04, 0xae, 0xfc,
|
||||
0x86, 0x1c, 0x68, 0x10, 0xd6, 0xf3, 0x62, 0x4e, 0x7b, 0xf2, 0x7b, 0xd3, 0xde, 0x34, 0xda, 0x35,
|
||||
0xd7, 0x26, 0x6c, 0x27, 0xe6, 0x54, 0x6e, 0x83, 0x9e, 0xc3, 0x46, 0xcc, 0x70, 0xd4, 0xcb, 0x99,
|
||||
0xa7, 0xbe, 0xa8, 0x79, 0xd6, 0xc4, 0xdc, 0xce, 0xc4, 0x44, 0xce, 0x97, 0x06, 0xc0, 0x23, 0xe9,
|
||||
0x71, 0xb9, 0xfa, 0x8f, 0x12, 0xa7, 0x93, 0x70, 0x48, 0x25, 0x60, 0xec, 0xed, 0x1b, 0x5b, 0xd3,
|
||||
0xa8, 0xdc, 0x4a, 0x51, 0xa6, 0x31, 0x21, 0x01, 0xd7, 0x84, 0x15, 0x1f, 0x07, 0x98, 0x63, 0x5f,
|
||||
0x82, 0xa9, 0xe6, 0x26, 0x43, 0x74, 0x13, 0xec, 0x41, 0x84, 0x85, 0x2d, 0x38, 0xd1, 0x68, 0xaa,
|
||||
0xba, 0xa0, 0x44, 0x2f, 0xc9, 0x08, 0x3b, 0x5f, 0x56, 0xa1, 0xde, 0xc5, 0x07, 0x23, 0x1c, 0x72,
|
||||
0x75, 0x92, 0x45, 0xc0, 0xbb, 0x09, 0xf6, 0xd8, 0x8b, 0x38, 0xd1, 0x2a, 0x0a, 0xc0, 0x59, 0x11,
|
||||
0xba, 0x0e, 0x16, 0xd3, 0xab, 0xee, 0xc9, 0x5d, 0x4d, 0x77, 0x22, 0x40, 0x57, 0xa1, 0x16, 0xc6,
|
||||
0x23, 0xe5, 0x7a, 0x0d, 0xe2, 0x30, 0x1e, 0x49, 0xc7, 0x67, 0xe0, 0xbd, 0x94, 0x87, 0x77, 0x13,
|
||||
0x56, 0xfa, 0x31, 0x91, 0x11, 0xb3, 0xac, 0xbe, 0xe8, 0x21, 0xfa, 0x3f, 0x58, 0x0e, 0xa9, 0x8f,
|
||||
0x3b, 0x7b, 0x1a, 0x68, 0x7a, 0x84, 0x6e, 0x43, 0x43, 0x19, 0xf5, 0x35, 0x8e, 0x18, 0xa1, 0xa1,
|
||||
0x86, 0x99, 0xc2, 0xe6, 0x67, 0x4a, 0x76, 0x56, 0xa4, 0xdd, 0x04, 0x7b, 0x1a, 0x5d, 0x30, 0x9c,
|
||||
0x60, 0xea, 0x2e, 0xac, 0xa9, 0xcd, 0x87, 0x24, 0xc0, 0xbd, 0x23, 0x7c, 0xcc, 0x9a, 0xf6, 0xa6,
|
||||
0xd9, 0xb6, 0x5c, 0x75, 0xa6, 0x47, 0x24, 0xc0, 0xcf, 0xf0, 0x31, 0xcb, 0xfa, 0xae, 0x7e, 0xa2,
|
||||
0xef, 0x1a, 0x45, 0xdf, 0xa1, 0x3b, 0xb0, 0xca, 0x70, 0x44, 0xbc, 0x80, 0xbc, 0xc3, 0x3d, 0x46,
|
||||
0xde, 0xe1, 0xe6, 0xaa, 0xd4, 0x69, 0xa4, 0xd2, 0x2e, 0x79, 0x87, 0x85, 0x19, 0xde, 0x44, 0x84,
|
||||
0xe3, 0xde, 0xa1, 0x17, 0xfa, 0x74, 0x38, 0x6c, 0xae, 0xc9, 0x7d, 0xea, 0x52, 0xf8, 0x44, 0xc9,
|
||||
0x9c, 0x3f, 0x1a, 0x70, 0xd9, 0xc5, 0x07, 0x84, 0x71, 0x1c, 0xbd, 0xa0, 0x3e, 0x76, 0xf1, 0xab,
|
||||
0x18, 0x33, 0x8e, 0x1e, 0x40, 0xb5, 0xef, 0x31, 0xac, 0x21, 0x79, 0xbd, 0xd4, 0x3a, 0xcf, 0xd9,
|
||||
0xc1, 0x43, 0x8f, 0x61, 0x57, 0x6a, 0xa2, 0xef, 0xc3, 0x8a, 0xe7, 0xfb, 0x11, 0x66, 0x4c, 0x02,
|
||||
0x63, 0xd6, 0xa4, 0x1d, 0xa5, 0xe3, 0x26, 0xca, 0x19, 0x2f, 0x9a, 0x59, 0x2f, 0x3a, 0xbf, 0x35,
|
||||
0xe0, 0x4a, 0xfe, 0x64, 0x6c, 0x4c, 0x43, 0x86, 0xd1, 0x87, 0xb0, 0x2c, 0x7c, 0x11, 0x33, 0x7d,
|
||||
0xb8, 0x6b, 0xa5, 0xfb, 0x74, 0xa5, 0x8a, 0xab, 0x55, 0x45, 0x92, 0x24, 0x21, 0xe1, 0x49, 0x00,
|
||||
0xab, 0x13, 0xde, 0x2a, 0x46, 0x9a, 0x4e, 0xf5, 0x9d, 0x90, 0x70, 0x15, 0xaf, 0x2e, 0x90, 0xf4,
|
||||
0xb7, 0xf3, 0x33, 0xb8, 0xf2, 0x18, 0xf3, 0x0c, 0x26, 0xb4, 0xad, 0x16, 0x09, 0x9d, 0x7c, 0x76,
|
||||
0xaf, 0x14, 0xb2, 0xbb, 0xf3, 0x27, 0x03, 0xde, 0x2b, 0xac, 0x7d, 0x9e, 0xdb, 0xa6, 0xe0, 0xae,
|
||||
0x9c, 0x07, 0xdc, 0x66, 0x11, 0xdc, 0xce, 0xaf, 0x0d, 0xb8, 0xf6, 0x18, 0xf3, 0x6c, 0xe2, 0xb8,
|
||||
0x60, 0x4b, 0xa0, 0x6f, 0x01, 0xa4, 0x09, 0x83, 0x35, 0xcd, 0x4d, 0xb3, 0x6d, 0xba, 0x19, 0x89,
|
||||
0xf3, 0x1b, 0x03, 0x36, 0xa6, 0xf6, 0xcf, 0xe7, 0x1d, 0xa3, 0x98, 0x77, 0xfe, 0x53, 0xe6, 0xf8,
|
||||
0x9d, 0x01, 0xd7, 0xcb, 0xcd, 0x71, 0x1e, 0xe7, 0xfd, 0x58, 0x4d, 0xc2, 0x02, 0xa5, 0xa2, 0xcc,
|
||||
0xdc, 0x29, 0xab, 0x07, 0xd3, 0x7b, 0xea, 0x49, 0xce, 0xd7, 0x26, 0xa0, 0x5d, 0x99, 0x2c, 0xe4,
|
||||
0xc7, 0xd3, 0xb8, 0xe6, 0xcc, 0xe4, 0xa4, 0x40, 0x41, 0xaa, 0x17, 0x41, 0x41, 0x96, 0xce, 0x44,
|
||||
0x41, 0xae, 0x83, 0x25, 0xb2, 0x26, 0xe3, 0xde, 0x68, 0x2c, 0xeb, 0x45, 0xd5, 0x9d, 0x08, 0xa6,
|
||||
0x0b, 0xfe, 0xca, 0x82, 0x05, 0xbf, 0x76, 0xe6, 0x82, 0xff, 0x16, 0x2e, 0x27, 0x81, 0x2d, 0xcb,
|
||||
0xf7, 0x29, 0xdc, 0x91, 0x0f, 0x85, 0x4a, 0x31, 0x14, 0xe6, 0x38, 0xc5, 0xf9, 0x57, 0x05, 0x36,
|
||||
0x3a, 0x49, 0xcd, 0xd9, 0xf7, 0xf8, 0xa1, 0xe4, 0x0c, 0x27, 0x47, 0xca, 0x6c, 0x04, 0x64, 0x0a,
|
||||
0xb4, 0x39, 0xb3, 0x40, 0x57, 0xf3, 0x05, 0x3a, 0x7f, 0xc0, 0xa5, 0x22, 0x6a, 0x2e, 0x86, 0x74,
|
||||
0xb6, 0x61, 0x3d, 0x53, 0x70, 0xc7, 0x1e, 0x3f, 0x14, 0xc4, 0x53, 0x54, 0xdc, 0x55, 0x92, 0xbd,
|
||||
0x3d, 0x43, 0xf7, 0x60, 0x2d, 0xad, 0x90, 0xbe, 0x2a, 0x9c, 0x35, 0x89, 0x90, 0x49, 0x39, 0xf5,
|
||||
0x93, 0xca, 0x99, 0x27, 0x10, 0x56, 0x09, 0x81, 0xc8, 0x92, 0x19, 0xc8, 0x91, 0x19, 0xe7, 0xaf,
|
||||
0x06, 0xd8, 0x69, 0x80, 0x2e, 0xd8, 0x18, 0xe4, 0xfc, 0x52, 0x29, 0xfa, 0xe5, 0x16, 0xd4, 0x71,
|
||||
0xe8, 0xf5, 0x03, 0xac, 0x71, 0x6b, 0x2a, 0xdc, 0x2a, 0x99, 0xc2, 0xed, 0x23, 0xb0, 0x27, 0x54,
|
||||
0x32, 0x89, 0xc1, 0x3b, 0x33, 0xb9, 0x64, 0x16, 0x14, 0x2e, 0xa4, 0x9c, 0x92, 0x39, 0x5f, 0x55,
|
||||
0x26, 0x65, 0x4e, 0x21, 0xf6, 0x3c, 0xc9, 0xec, 0xe7, 0x50, 0xd7, 0xb7, 0x50, 0x14, 0x57, 0xa5,
|
||||
0xb4, 0x1f, 0x94, 0x1d, 0xab, 0x6c, 0xd3, 0xad, 0x8c, 0x19, 0x3f, 0x09, 0x79, 0x74, 0xec, 0xda,
|
||||
0x6c, 0x22, 0x69, 0xf5, 0x60, 0xbd, 0xa8, 0x80, 0xd6, 0xc1, 0x3c, 0xc2, 0xc7, 0xda, 0xc6, 0xe2,
|
||||
0xa7, 0x48, 0xff, 0xaf, 0x05, 0x76, 0x74, 0xd5, 0xbf, 0x79, 0x62, 0x3e, 0x1d, 0x52, 0x57, 0x69,
|
||||
0xff, 0xb0, 0xf2, 0xb1, 0xe1, 0xfc, 0xde, 0x80, 0xf5, 0xbd, 0x88, 0x8e, 0x4f, 0x9d, 0x4a, 0x1d,
|
||||
0xa8, 0x67, 0x78, 0x71, 0x12, 0xbd, 0x39, 0xd9, 0xbc, 0xa4, 0x7a, 0x15, 0x6a, 0x7e, 0x44, 0xc7,
|
||||
0x3d, 0x2f, 0x08, 0x64, 0x60, 0x09, 0x8a, 0x18, 0xd1, 0xf1, 0x4e, 0x10, 0x08, 0x26, 0xb2, 0x87,
|
||||
0xd9, 0x20, 0x22, 0xfd, 0xd3, 0x27, 0xf9, 0x39, 0x4c, 0xe4, 0x6b, 0x03, 0xde, 0x2b, 0xac, 0x7d,
|
||||
0x1e, 0xff, 0xff, 0x24, 0x8f, 0x4a, 0xe5, 0xfe, 0x39, 0x1d, 0x4e, 0x16, 0x8d, 0x9e, 0xac, 0xb0,
|
||||
0xf2, 0xdb, 0x43, 0x91, 0x55, 0xf6, 0x23, 0x7a, 0x20, 0xf9, 0xe3, 0xc5, 0xdd, 0xf8, 0x0f, 0x06,
|
||||
0xdc, 0x98, 0xb1, 0xc7, 0x79, 0x6e, 0x5e, 0x6c, 0x86, 0x2b, 0xf3, 0x9a, 0x61, 0xb3, 0xd0, 0x0c,
|
||||
0x3b, 0x7f, 0xae, 0x40, 0xa3, 0xcb, 0x69, 0xe4, 0x1d, 0xe0, 0x5d, 0x1a, 0x0e, 0xc9, 0x81, 0x48,
|
||||
0xb5, 0x09, 0xc7, 0x36, 0xe4, 0x35, 0x52, 0x16, 0x7d, 0x0b, 0xea, 0xde, 0x60, 0x80, 0x19, 0x13,
|
||||
0x2d, 0x87, 0xce, 0x20, 0x96, 0x6b, 0x2b, 0xd9, 0x33, 0x21, 0x42, 0xdf, 0x81, 0x0d, 0x86, 0x07,
|
||||
0x11, 0xe6, 0xbd, 0x89, 0xa6, 0x46, 0xdd, 0x9a, 0xfa, 0xb0, 0x93, 0x68, 0x0b, 0x52, 0x1e, 0x33,
|
||||
0xdc, 0xed, 0x7e, 0xaa, 0x91, 0xa7, 0x47, 0x82, 0x12, 0xf5, 0xe3, 0xc1, 0x11, 0xe6, 0xd9, 0x94,
|
||||
0x0e, 0x4a, 0x24, 0x41, 0x7b, 0x0d, 0xac, 0x88, 0x52, 0x2e, 0xf3, 0xb0, 0xac, 0xbf, 0x96, 0x5b,
|
||||
0x13, 0x02, 0x91, 0x6a, 0xf4, 0xaa, 0x9d, 0x9d, 0xe7, 0xba, 0xee, 0xea, 0x91, 0xe8, 0x2b, 0x3b,
|
||||
0x3b, 0xcf, 0x3f, 0x09, 0xfd, 0x31, 0x25, 0x21, 0x97, 0x49, 0xd9, 0x72, 0xb3, 0x22, 0x71, 0x3d,
|
||||
0xa6, 0x2c, 0xd1, 0x13, 0x94, 0x41, 0x26, 0x64, 0xcb, 0xb5, 0xb5, 0xec, 0xe5, 0xf1, 0x18, 0x3b,
|
||||
0xff, 0x34, 0x61, 0x5d, 0xf1, 0x9e, 0xa7, 0xb4, 0x9f, 0xc0, 0xe3, 0x3a, 0x58, 0x83, 0x20, 0x16,
|
||||
0x2d, 0x84, 0xc6, 0x86, 0xe5, 0x4e, 0x04, 0xc2, 0x22, 0xd9, 0xd2, 0x11, 0xe1, 0x21, 0x79, 0xab,
|
||||
0x2d, 0xb7, 0x36, 0xa9, 0x1d, 0x52, 0x9c, 0xad, 0x72, 0xe6, 0x54, 0x95, 0xf3, 0x3d, 0xee, 0xe9,
|
||||
0xd2, 0x53, 0x95, 0xa5, 0xc7, 0x12, 0x12, 0x55, 0x75, 0xa6, 0x8a, 0xc9, 0x52, 0x49, 0x31, 0xc9,
|
||||
0x54, 0xd7, 0xe5, 0x7c, 0x75, 0xcd, 0x83, 0x77, 0xa5, 0x98, 0x24, 0x9e, 0xc0, 0x6a, 0x62, 0x98,
|
||||
0x81, 0xc4, 0x88, 0xb4, 0x5e, 0x49, 0x6b, 0x23, 0x93, 0x5c, 0x16, 0x4c, 0x6e, 0x83, 0xe5, 0xb0,
|
||||
0x55, 0xac, 0xc6, 0xd6, 0x99, 0xaa, 0x71, 0x81, 0x09, 0xc2, 0x59, 0x98, 0x60, 0xb6, 0xb2, 0xda,
|
||||
0xf9, 0xca, 0xfa, 0x29, 0xac, 0xff, 0x34, 0xc6, 0xd1, 0xf1, 0x53, 0xda, 0x67, 0x8b, 0xf9, 0xb8,
|
||||
0x05, 0x35, 0xed, 0xa8, 0x24, 0x09, 0xa7, 0x63, 0xe7, 0x1f, 0x06, 0x34, 0x64, 0xd8, 0xbf, 0xf4,
|
||||
0xd8, 0x51, 0xf2, 0xa2, 0x92, 0x78, 0xd9, 0xc8, 0x7b, 0xf9, 0x8c, 0x3d, 0x44, 0xc9, 0x73, 0x80,
|
||||
0x59, 0xf6, 0x1c, 0x50, 0xc2, 0x4d, 0xaa, 0xa5, 0xdc, 0xa4, 0xd0, 0x94, 0x2c, 0x4d, 0x35, 0x25,
|
||||
0xdf, 0x18, 0xb0, 0x91, 0xb1, 0xd1, 0x79, 0x52, 0x58, 0xce, 0xb2, 0x95, 0xa2, 0x65, 0x1f, 0xe6,
|
||||
0x53, 0xbb, 0x59, 0xe6, 0xea, 0x4c, 0x6a, 0x4f, 0x6c, 0x9c, 0x4b, 0xef, 0xcf, 0x60, 0x4d, 0x94,
|
||||
0xd7, 0x8b, 0x71, 0xe7, 0xdf, 0x0d, 0x58, 0x79, 0x4a, 0xfb, 0xd2, 0x91, 0x59, 0x0c, 0x19, 0xf9,
|
||||
0xa7, 0xa6, 0x75, 0x30, 0x7d, 0x32, 0xd2, 0xf9, 0x58, 0xfc, 0x14, 0x31, 0xc6, 0xb8, 0x17, 0xf1,
|
||||
0xc9, 0x63, 0x99, 0x20, 0x5f, 0x42, 0x22, 0xdf, 0x5b, 0xae, 0x42, 0x0d, 0x87, 0xbe, 0xfa, 0xa8,
|
||||
0x19, 0x2e, 0x0e, 0x7d, 0xf9, 0xe9, 0x62, 0x9a, 0x96, 0x2b, 0xb0, 0x34, 0xa6, 0x93, 0x07, 0x2e,
|
||||
0x35, 0x70, 0xae, 0x00, 0x7a, 0x8c, 0xf9, 0x53, 0xda, 0x17, 0x5e, 0x49, 0xcc, 0xe3, 0xfc, 0xad,
|
||||
0x22, 0x1b, 0x8a, 0x89, 0xf8, 0x3c, 0x0e, 0x76, 0xa0, 0xa1, 0x0a, 0xd0, 0x17, 0xb4, 0xdf, 0x0b,
|
||||
0xe3, 0xc4, 0x28, 0xb6, 0x14, 0x3e, 0xa5, 0xfd, 0x17, 0xf1, 0x08, 0x7d, 0x00, 0x97, 0x49, 0xd8,
|
||||
0x1b, 0xeb, 0x9a, 0x98, 0x6a, 0x2a, 0x2b, 0xad, 0x93, 0x30, 0xa9, 0x96, 0x5a, 0xfd, 0x2e, 0xac,
|
||||
0xe1, 0xf0, 0x55, 0x8c, 0x63, 0x9c, 0xaa, 0x2a, 0x9b, 0x35, 0xb4, 0x58, 0xeb, 0x89, 0xda, 0xe7,
|
||||
0xb1, 0xa3, 0x1e, 0x0b, 0x28, 0x67, 0x3a, 0x27, 0x5a, 0x42, 0xd2, 0x15, 0x02, 0xf4, 0x31, 0x58,
|
||||
0x62, 0xba, 0x82, 0x96, 0x6a, 0x0c, 0xae, 0x95, 0x41, 0x4b, 0xfb, 0xdb, 0xad, 0x7d, 0xa1, 0x7e,
|
||||
0x30, 0x11, 0x20, 0x9a, 0x2a, 0xfb, 0x84, 0x1d, 0xe9, 0x4a, 0x03, 0x4a, 0xb4, 0x47, 0xd8, 0xd1,
|
||||
0xf6, 0x57, 0x00, 0x20, 0x11, 0xb9, 0x4b, 0x69, 0xe4, 0xa3, 0x40, 0x9a, 0x79, 0x97, 0x8e, 0xc6,
|
||||
0x34, 0xc4, 0x21, 0x97, 0xd1, 0xcb, 0xd0, 0x56, 0x7e, 0x33, 0x3d, 0x98, 0x56, 0xd4, 0x6e, 0x69,
|
||||
0xbd, 0x5f, 0xaa, 0x5f, 0x50, 0x76, 0x2e, 0xa1, 0x57, 0x92, 0x5c, 0x8b, 0x21, 0x61, 0x9c, 0x0c,
|
||||
0xd8, 0xee, 0xa1, 0x17, 0x86, 0x38, 0x40, 0xdb, 0x33, 0x9e, 0xa2, 0xca, 0x94, 0x93, 0x3d, 0x6f,
|
||||
0x97, 0xee, 0xd9, 0xe5, 0x11, 0x09, 0x0f, 0x12, 0x5c, 0x38, 0x97, 0xd0, 0x4b, 0xb0, 0x33, 0xef,
|
||||
0x01, 0xe8, 0x6e, 0x99, 0x19, 0xa7, 0x1f, 0x0c, 0x5a, 0x27, 0x01, 0xc8, 0xb9, 0x84, 0x86, 0xd0,
|
||||
0xc8, 0x3d, 0x58, 0xa1, 0xf6, 0x49, 0x9c, 0x3e, 0xfb, 0x4a, 0xd4, 0xfa, 0xf6, 0x02, 0x9a, 0xe9,
|
||||
0xe9, 0x7f, 0xa9, 0x0c, 0x36, 0xf5, 0xe2, 0x73, 0x7f, 0xc6, 0x22, 0xb3, 0xde, 0xa6, 0x5a, 0x0f,
|
||||
0x16, 0x9f, 0x90, 0x6e, 0xee, 0x4f, 0x2e, 0xa9, 0xc0, 0x75, 0x6f, 0x7e, 0xe3, 0xa2, 0x76, 0x6b,
|
||||
0x2f, 0xda, 0xe1, 0x38, 0x97, 0xd0, 0x3e, 0x58, 0x69, 0x8f, 0x81, 0xde, 0x2f, 0x9b, 0x58, 0x6c,
|
||||
0x41, 0x16, 0x70, 0x4e, 0x8e, 0xc3, 0x97, 0x3b, 0xa7, 0xac, 0x85, 0x28, 0x77, 0x4e, 0x69, 0x43,
|
||||
0xe0, 0x5c, 0x42, 0xbf, 0x9a, 0xbc, 0x5a, 0xe6, 0x98, 0x33, 0x7a, 0x70, 0xd2, 0xf5, 0xcb, 0x88,
|
||||
0x7c, 0xeb, 0xbb, 0xa7, 0x98, 0x91, 0x01, 0x07, 0xea, 0x1e, 0xd2, 0x37, 0x8a, 0xc1, 0xc4, 0x91,
|
||||
0x27, 0x08, 0x7f, 0xc9, 0xe6, 0x3a, 0x96, 0xa6, 0x55, 0x67, 0x6e, 0x7e, 0xc2, 0x8c, 0x74, 0xf3,
|
||||
0x1e, 0xc0, 0x63, 0xcc, 0x9f, 0x63, 0x1e, 0x91, 0x01, 0x2b, 0x86, 0xd5, 0x24, 0x61, 0x68, 0x85,
|
||||
0x64, 0xab, 0x7b, 0x73, 0xf5, 0xd2, 0x0d, 0xfa, 0x60, 0xef, 0x1e, 0xe2, 0xc1, 0xd1, 0x13, 0xec,
|
||||
0x05, 0xfc, 0x10, 0x95, 0xcf, 0xcc, 0x68, 0xcc, 0xc0, 0x5e, 0x99, 0x62, 0xb2, 0xc7, 0xf6, 0x37,
|
||||
0xcb, 0xfa, 0x1f, 0xcc, 0x17, 0xd4, 0xc7, 0xff, 0xfd, 0xb9, 0x70, 0x1f, 0xac, 0xb4, 0x47, 0x28,
|
||||
0x0f, 0xb5, 0x62, 0x0b, 0x31, 0x2f, 0xd4, 0x3e, 0x07, 0x2b, 0x65, 0x5b, 0xe5, 0x2b, 0x16, 0x09,
|
||||
0x6b, 0xeb, 0xce, 0x1c, 0xad, 0xf4, 0xb4, 0x2f, 0xa0, 0x96, 0xb0, 0x23, 0x74, 0x7b, 0x56, 0x5e,
|
||||
0xc8, 0xae, 0x3c, 0xe7, 0xac, 0xbf, 0x00, 0x3b, 0x43, 0x1d, 0xca, 0x2b, 0xc1, 0x34, 0xe5, 0x68,
|
||||
0xdd, 0x9b, 0xab, 0xf7, 0xbf, 0x11, 0x90, 0x0f, 0xbf, 0xf7, 0xf9, 0xf6, 0x01, 0xe1, 0x87, 0x71,
|
||||
0x5f, 0x58, 0xf6, 0xbe, 0xd2, 0xfc, 0x80, 0x50, 0xfd, 0xeb, 0x7e, 0x72, 0xca, 0xfb, 0x72, 0xa5,
|
||||
0xfb, 0xd2, 0x4e, 0xe3, 0x7e, 0x7f, 0x59, 0x0e, 0x3f, 0xfc, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff,
|
||||
0x34, 0xde, 0x9f, 0x9a, 0x80, 0x20, 0x00, 0x00,
|
||||
// 2220 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x4f, 0x8f, 0x1b, 0x49,
|
||||
0x15, 0x4f, 0xbb, 0x3d, 0x33, 0xee, 0xd7, 0xf6, 0xfc, 0xa9, 0xcd, 0x82, 0xe3, 0x24, 0x64, 0xd2,
|
||||
0xd9, 0x24, 0x06, 0x29, 0x93, 0x30, 0xcb, 0xa2, 0x05, 0x01, 0xd2, 0x64, 0x66, 0x93, 0x38, 0xd9,
|
||||
0x44, 0x43, 0x3b, 0x5a, 0x89, 0x15, 0xc2, 0xb4, 0xdd, 0xe5, 0x99, 0xda, 0x69, 0x77, 0x39, 0x5d,
|
||||
0xd5, 0x49, 0x26, 0x48, 0x08, 0x0e, 0x7b, 0x00, 0xad, 0x84, 0x40, 0x08, 0xbe, 0x00, 0xa7, 0xe5,
|
||||
0xc0, 0x9d, 0x0b, 0x5f, 0x80, 0x13, 0x1f, 0x81, 0x2f, 0xc1, 0x15, 0xd5, 0x9f, 0x6e, 0x77, 0xb7,
|
||||
0xdb, 0x63, 0x67, 0x66, 0x10, 0x12, 0xdc, 0x5c, 0xaf, 0x5e, 0xfd, 0xe9, 0xf7, 0x7e, 0xef, 0xfd,
|
||||
0xde, 0x2b, 0xc3, 0x06, 0x09, 0x7d, 0xfc, 0xba, 0x37, 0xa0, 0x34, 0xf2, 0xb7, 0xc6, 0x11, 0xe5,
|
||||
0x14, 0xa1, 0x11, 0x09, 0x5e, 0xc6, 0x4c, 0x8d, 0xb6, 0xe4, 0x7c, 0xab, 0x3e, 0xa0, 0xa3, 0x11,
|
||||
0x0d, 0x95, 0xac, 0xb5, 0x4a, 0x42, 0x8e, 0xa3, 0xd0, 0x0b, 0xf4, 0xb8, 0x9e, 0x5d, 0xe1, 0xfc,
|
||||
0xa5, 0x0a, 0x56, 0x47, 0xac, 0xea, 0x84, 0x43, 0x8a, 0x1c, 0xa8, 0x0f, 0x68, 0x10, 0xe0, 0x01,
|
||||
0x27, 0x34, 0xec, 0xec, 0x35, 0x8d, 0x4d, 0xa3, 0x6d, 0xba, 0x39, 0x19, 0x6a, 0xc2, 0xca, 0x90,
|
||||
0xe0, 0xc0, 0xef, 0xec, 0x35, 0x2b, 0x72, 0x3a, 0x19, 0xa2, 0xab, 0x00, 0xea, 0x82, 0xa1, 0x37,
|
||||
0xc2, 0x4d, 0x73, 0xd3, 0x68, 0x5b, 0xae, 0x25, 0x25, 0xcf, 0xbc, 0x11, 0x16, 0x0b, 0xe5, 0xa0,
|
||||
0xb3, 0xd7, 0xac, 0xaa, 0x85, 0x7a, 0x88, 0xee, 0x83, 0xcd, 0x8f, 0xc7, 0xb8, 0x37, 0xf6, 0x22,
|
||||
0x6f, 0xc4, 0x9a, 0x4b, 0x9b, 0x66, 0xdb, 0xde, 0xbe, 0xbe, 0x95, 0xfb, 0x34, 0xfd, 0x4d, 0x4f,
|
||||
0xf0, 0xf1, 0x27, 0x5e, 0x10, 0xe3, 0x7d, 0x8f, 0x44, 0x2e, 0x88, 0x55, 0xfb, 0x72, 0x11, 0xda,
|
||||
0x83, 0xba, 0x3a, 0x5c, 0x6f, 0xb2, 0xbc, 0xe8, 0x26, 0xb6, 0x5c, 0xa6, 0x77, 0xb9, 0xae, 0x77,
|
||||
0xc1, 0x7e, 0x2f, 0xa2, 0xaf, 0x58, 0x73, 0x45, 0x5e, 0xd4, 0xd6, 0x32, 0x97, 0xbe, 0x62, 0xe2,
|
||||
0x2b, 0x39, 0xe5, 0x5e, 0xa0, 0x14, 0x6a, 0x52, 0xc1, 0x92, 0x12, 0x39, 0xfd, 0x01, 0x2c, 0x31,
|
||||
0xee, 0x71, 0xdc, 0xb4, 0x36, 0x8d, 0xf6, 0xea, 0xf6, 0xb5, 0xd2, 0x0b, 0x48, 0x8b, 0x77, 0x85,
|
||||
0x9a, 0xab, 0xb4, 0xd1, 0x07, 0xf0, 0x55, 0x75, 0x7d, 0x39, 0xec, 0x0d, 0x3d, 0x12, 0xf4, 0x22,
|
||||
0xec, 0x31, 0x1a, 0x36, 0x41, 0x1a, 0xf2, 0x22, 0x49, 0xd7, 0x3c, 0xf0, 0x48, 0xe0, 0xca, 0x39,
|
||||
0xe4, 0x40, 0x83, 0xb0, 0x9e, 0x17, 0x73, 0xda, 0x93, 0xf3, 0x4d, 0x7b, 0xd3, 0x68, 0xd7, 0x5c,
|
||||
0x9b, 0xb0, 0x9d, 0x98, 0x53, 0x79, 0x0c, 0x7a, 0x0a, 0x1b, 0x31, 0xc3, 0x51, 0x2f, 0x67, 0x9e,
|
||||
0xfa, 0xa2, 0xe6, 0x59, 0x13, 0x6b, 0x3b, 0x13, 0x13, 0x39, 0x9f, 0x1b, 0x00, 0x0f, 0xa4, 0xc7,
|
||||
0xe5, 0xee, 0xdf, 0x4b, 0x9c, 0x4e, 0xc2, 0x21, 0x95, 0x80, 0xb1, 0xb7, 0xaf, 0x6e, 0x4d, 0xa3,
|
||||
0x72, 0x2b, 0x45, 0x99, 0xc6, 0x84, 0x04, 0x5c, 0x13, 0x56, 0x7c, 0x1c, 0x60, 0x8e, 0x7d, 0x09,
|
||||
0xa6, 0x9a, 0x9b, 0x0c, 0xd1, 0x35, 0xb0, 0x07, 0x11, 0x16, 0xb6, 0xe0, 0x44, 0xa3, 0xa9, 0xea,
|
||||
0x82, 0x12, 0x3d, 0x27, 0x23, 0xec, 0x7c, 0x5e, 0x85, 0x7a, 0x17, 0x1f, 0x8c, 0x70, 0xc8, 0xd5,
|
||||
0x4d, 0x16, 0x01, 0xef, 0x26, 0xd8, 0x63, 0x2f, 0xe2, 0x44, 0xab, 0x28, 0x00, 0x67, 0x45, 0xe8,
|
||||
0x0a, 0x58, 0x4c, 0xef, 0xba, 0x27, 0x4f, 0x35, 0xdd, 0x89, 0x00, 0x5d, 0x82, 0x5a, 0x18, 0x8f,
|
||||
0x94, 0xeb, 0x35, 0x88, 0xc3, 0x78, 0x24, 0x1d, 0x9f, 0x81, 0xf7, 0x52, 0x1e, 0xde, 0x4d, 0x58,
|
||||
0xe9, 0xc7, 0x44, 0x46, 0xcc, 0xb2, 0x9a, 0xd1, 0x43, 0xf4, 0x15, 0x58, 0x0e, 0xa9, 0x8f, 0x3b,
|
||||
0x7b, 0x1a, 0x68, 0x7a, 0x84, 0x6e, 0x40, 0x43, 0x19, 0xf5, 0x25, 0x8e, 0x18, 0xa1, 0xa1, 0x86,
|
||||
0x99, 0xc2, 0xe6, 0x27, 0x4a, 0x76, 0x5a, 0xa4, 0x5d, 0x03, 0x7b, 0x1a, 0x5d, 0x30, 0x9c, 0x60,
|
||||
0xea, 0x16, 0xac, 0xa9, 0xc3, 0x87, 0x24, 0xc0, 0xbd, 0x23, 0x7c, 0xcc, 0x9a, 0xf6, 0xa6, 0xd9,
|
||||
0xb6, 0x5c, 0x75, 0xa7, 0x07, 0x24, 0xc0, 0x4f, 0xf0, 0x31, 0xcb, 0xfa, 0xae, 0x7e, 0xa2, 0xef,
|
||||
0x1a, 0x45, 0xdf, 0xa1, 0x9b, 0xb0, 0xca, 0x70, 0x44, 0xbc, 0x80, 0xbc, 0xc1, 0x3d, 0x46, 0xde,
|
||||
0xe0, 0xe6, 0xaa, 0xd4, 0x69, 0xa4, 0xd2, 0x2e, 0x79, 0x83, 0x85, 0x19, 0x5e, 0x45, 0x84, 0xe3,
|
||||
0xde, 0xa1, 0x17, 0xfa, 0x74, 0x38, 0x6c, 0xae, 0xc9, 0x73, 0xea, 0x52, 0xf8, 0x48, 0xc9, 0x9c,
|
||||
0x3f, 0x1a, 0xf0, 0x8e, 0x8b, 0x0f, 0x08, 0xe3, 0x38, 0x7a, 0x46, 0x7d, 0xec, 0xe2, 0x17, 0x31,
|
||||
0x66, 0x1c, 0xdd, 0x83, 0x6a, 0xdf, 0x63, 0x58, 0x43, 0xf2, 0x4a, 0xa9, 0x75, 0x9e, 0xb2, 0x83,
|
||||
0xfb, 0x1e, 0xc3, 0xae, 0xd4, 0x44, 0xdf, 0x86, 0x15, 0xcf, 0xf7, 0x23, 0xcc, 0x98, 0x04, 0xc6,
|
||||
0xac, 0x45, 0x3b, 0x4a, 0xc7, 0x4d, 0x94, 0x33, 0x5e, 0x34, 0xb3, 0x5e, 0x74, 0x7e, 0x63, 0xc0,
|
||||
0xc5, 0xfc, 0xcd, 0xd8, 0x98, 0x86, 0x0c, 0xa3, 0xf7, 0x61, 0x59, 0xf8, 0x22, 0x66, 0xfa, 0x72,
|
||||
0x97, 0x4b, 0xcf, 0xe9, 0x4a, 0x15, 0x57, 0xab, 0x8a, 0x24, 0x49, 0x42, 0xc2, 0x93, 0x00, 0x56,
|
||||
0x37, 0xbc, 0x5e, 0x8c, 0x34, 0x9d, 0xea, 0x3b, 0x21, 0xe1, 0x2a, 0x5e, 0x5d, 0x20, 0xe9, 0x6f,
|
||||
0xe7, 0x47, 0x70, 0xf1, 0x21, 0xe6, 0x19, 0x4c, 0x68, 0x5b, 0x2d, 0x12, 0x3a, 0xf9, 0xec, 0x5e,
|
||||
0x29, 0x64, 0x77, 0xe7, 0x4f, 0x06, 0xbc, 0x5b, 0xd8, 0xfb, 0x2c, 0x5f, 0x9b, 0x82, 0xbb, 0x72,
|
||||
0x16, 0x70, 0x9b, 0x45, 0x70, 0x3b, 0xbf, 0x30, 0xe0, 0xf2, 0x43, 0xcc, 0xb3, 0x89, 0xe3, 0x9c,
|
||||
0x2d, 0x81, 0xbe, 0x06, 0x90, 0x26, 0x0c, 0xd6, 0x34, 0x37, 0xcd, 0xb6, 0xe9, 0x66, 0x24, 0xce,
|
||||
0xaf, 0x0c, 0xd8, 0x98, 0x3a, 0x3f, 0x9f, 0x77, 0x8c, 0x62, 0xde, 0xf9, 0x4f, 0x99, 0xe3, 0x77,
|
||||
0x06, 0x5c, 0x29, 0x37, 0xc7, 0x59, 0x9c, 0xf7, 0x7d, 0xb5, 0x08, 0x0b, 0x94, 0x0a, 0x9a, 0xb9,
|
||||
0x59, 0xc6, 0x07, 0xd3, 0x67, 0xea, 0x45, 0xce, 0x17, 0x26, 0xa0, 0x5d, 0x99, 0x2c, 0xe4, 0xe4,
|
||||
0xdb, 0xb8, 0xe6, 0xd4, 0xc5, 0x49, 0xa1, 0x04, 0xa9, 0x9e, 0x47, 0x09, 0xb2, 0x74, 0xaa, 0x12,
|
||||
0xe4, 0x0a, 0x58, 0x22, 0x6b, 0x32, 0xee, 0x8d, 0xc6, 0x92, 0x2f, 0xaa, 0xee, 0x44, 0x30, 0x4d,
|
||||
0xf8, 0x2b, 0x0b, 0x12, 0x7e, 0xed, 0xd4, 0x84, 0xff, 0x1a, 0xde, 0x49, 0x02, 0x5b, 0xd2, 0xf7,
|
||||
0x5b, 0xb8, 0x23, 0x1f, 0x0a, 0x95, 0x62, 0x28, 0xcc, 0x71, 0x8a, 0xf3, 0xaf, 0x0a, 0x6c, 0x74,
|
||||
0x12, 0xce, 0xd9, 0xf7, 0xf8, 0xa1, 0xac, 0x19, 0x4e, 0x8e, 0x94, 0xd9, 0x08, 0xc8, 0x10, 0xb4,
|
||||
0x39, 0x93, 0xa0, 0xab, 0x79, 0x82, 0xce, 0x5f, 0x70, 0xa9, 0x88, 0x9a, 0xf3, 0x29, 0x3a, 0xdb,
|
||||
0xb0, 0x9e, 0x21, 0xdc, 0xb1, 0xc7, 0x0f, 0x45, 0xe1, 0x29, 0x18, 0x77, 0x95, 0x64, 0xbf, 0x9e,
|
||||
0xa1, 0xdb, 0xb0, 0x96, 0x32, 0xa4, 0xaf, 0x88, 0xb3, 0x26, 0x11, 0x32, 0xa1, 0x53, 0x3f, 0x61,
|
||||
0xce, 0x7c, 0x01, 0x61, 0x95, 0x14, 0x10, 0xd9, 0x62, 0x06, 0x72, 0xc5, 0x8c, 0xf3, 0x57, 0x03,
|
||||
0xec, 0x34, 0x40, 0x17, 0x6c, 0x0c, 0x72, 0x7e, 0xa9, 0x14, 0xfd, 0x72, 0x1d, 0xea, 0x38, 0xf4,
|
||||
0xfa, 0x01, 0xd6, 0xb8, 0x35, 0x15, 0x6e, 0x95, 0x4c, 0xe1, 0xf6, 0x01, 0xd8, 0x93, 0x52, 0x32,
|
||||
0x89, 0xc1, 0x9b, 0x33, 0x6b, 0xc9, 0x2c, 0x28, 0x5c, 0x48, 0x6b, 0x4a, 0xe6, 0xfc, 0xba, 0x32,
|
||||
0xa1, 0x39, 0x85, 0xd8, 0xb3, 0x24, 0xb3, 0x1f, 0x43, 0x5d, 0x7f, 0x85, 0x2a, 0x71, 0x55, 0x4a,
|
||||
0xfb, 0x4e, 0xd9, 0xb5, 0xca, 0x0e, 0xdd, 0xca, 0x98, 0xf1, 0xa3, 0x90, 0x47, 0xc7, 0xae, 0xcd,
|
||||
0x26, 0x92, 0x56, 0x0f, 0xd6, 0x8b, 0x0a, 0x68, 0x1d, 0xcc, 0x23, 0x7c, 0xac, 0x6d, 0x2c, 0x7e,
|
||||
0x8a, 0xf4, 0xff, 0x52, 0x60, 0x47, 0xb3, 0xfe, 0xb5, 0x13, 0xf3, 0xe9, 0x90, 0xba, 0x4a, 0xfb,
|
||||
0xbb, 0x95, 0x0f, 0x0d, 0xe7, 0xf7, 0x06, 0xac, 0xef, 0x45, 0x74, 0xfc, 0xd6, 0xa9, 0xd4, 0x81,
|
||||
0x7a, 0xa6, 0x2e, 0x4e, 0xa2, 0x37, 0x27, 0x9b, 0x97, 0x54, 0x2f, 0x41, 0xcd, 0x8f, 0xe8, 0xb8,
|
||||
0xe7, 0x05, 0x81, 0x0c, 0x2c, 0x51, 0x22, 0x46, 0x74, 0xbc, 0x13, 0x04, 0xa2, 0x12, 0xd9, 0xc3,
|
||||
0x6c, 0x10, 0x91, 0xfe, 0xdb, 0x27, 0xf9, 0x39, 0x95, 0xc8, 0x17, 0x06, 0xbc, 0x5b, 0xd8, 0xfb,
|
||||
0x2c, 0xfe, 0xff, 0x41, 0x1e, 0x95, 0xca, 0xfd, 0x73, 0x3a, 0x9c, 0x2c, 0x1a, 0x3d, 0xc9, 0xb0,
|
||||
0x72, 0xee, 0xbe, 0xc8, 0x2a, 0xfb, 0x11, 0x3d, 0x90, 0xf5, 0xe3, 0xf9, 0x7d, 0xf1, 0x1f, 0x0c,
|
||||
0xb8, 0x3a, 0xe3, 0x8c, 0xb3, 0x7c, 0x79, 0xb1, 0x19, 0xae, 0xcc, 0x6b, 0x86, 0xcd, 0x42, 0x33,
|
||||
0xec, 0xfc, 0xb9, 0x02, 0x8d, 0x2e, 0xa7, 0x91, 0x77, 0x80, 0x77, 0x69, 0x38, 0x24, 0x07, 0x22,
|
||||
0xd5, 0x26, 0x35, 0xb6, 0x21, 0x3f, 0x23, 0xad, 0xa2, 0xaf, 0x43, 0xdd, 0x1b, 0x0c, 0x30, 0x63,
|
||||
0xa2, 0xe5, 0xd0, 0x19, 0xc4, 0x72, 0x6d, 0x25, 0x7b, 0x22, 0x44, 0xe8, 0x1b, 0xb0, 0xc1, 0xf0,
|
||||
0x20, 0xc2, 0xbc, 0x37, 0xd1, 0xd4, 0xa8, 0x5b, 0x53, 0x13, 0x3b, 0x89, 0xb6, 0x28, 0xca, 0x63,
|
||||
0x86, 0xbb, 0xdd, 0x8f, 0x35, 0xf2, 0xf4, 0x48, 0x94, 0x44, 0xfd, 0x78, 0x70, 0x84, 0x79, 0x36,
|
||||
0xa5, 0x83, 0x12, 0x49, 0xd0, 0x5e, 0x06, 0x2b, 0xa2, 0x94, 0xcb, 0x3c, 0x2c, 0xf9, 0xd7, 0x72,
|
||||
0x6b, 0x42, 0x20, 0x52, 0x8d, 0xde, 0xb5, 0xb3, 0xf3, 0x54, 0xf3, 0xae, 0x1e, 0x89, 0xbe, 0xb2,
|
||||
0xb3, 0xf3, 0xf4, 0xa3, 0xd0, 0x1f, 0x53, 0x12, 0x72, 0x99, 0x94, 0x2d, 0x37, 0x2b, 0x12, 0x9f,
|
||||
0xc7, 0x94, 0x25, 0x7a, 0xa2, 0x64, 0x90, 0x09, 0xd9, 0x72, 0x6d, 0x2d, 0x7b, 0x7e, 0x3c, 0xc6,
|
||||
0xce, 0x3f, 0x4d, 0x58, 0x57, 0x75, 0xcf, 0x63, 0xda, 0x4f, 0xe0, 0x71, 0x05, 0xac, 0x41, 0x10,
|
||||
0x8b, 0x16, 0x42, 0x63, 0xc3, 0x72, 0x27, 0x02, 0x61, 0x91, 0x2c, 0x75, 0x44, 0x78, 0x48, 0x5e,
|
||||
0x6b, 0xcb, 0xad, 0x4d, 0xb8, 0x43, 0x8a, 0xb3, 0x2c, 0x67, 0x4e, 0xb1, 0x9c, 0xef, 0x71, 0x4f,
|
||||
0x53, 0x4f, 0x55, 0x52, 0x8f, 0x25, 0x24, 0x8a, 0x75, 0xa6, 0xc8, 0x64, 0xa9, 0x84, 0x4c, 0x32,
|
||||
0xec, 0xba, 0x9c, 0x67, 0xd7, 0x3c, 0x78, 0x57, 0x8a, 0x49, 0xe2, 0x11, 0xac, 0x26, 0x86, 0x19,
|
||||
0x48, 0x8c, 0x48, 0xeb, 0x95, 0xb4, 0x36, 0x32, 0xc9, 0x65, 0xc1, 0xe4, 0x36, 0x58, 0x0e, 0x5b,
|
||||
0x45, 0x36, 0xb6, 0x4e, 0xc5, 0xc6, 0x85, 0x4a, 0x10, 0x4e, 0x53, 0x09, 0x66, 0x99, 0xd5, 0xce,
|
||||
0x33, 0xeb, 0xc7, 0xb0, 0xfe, 0xc3, 0x18, 0x47, 0xc7, 0x8f, 0x69, 0x9f, 0x2d, 0xe6, 0xe3, 0x16,
|
||||
0xd4, 0xb4, 0xa3, 0x92, 0x24, 0x9c, 0x8e, 0x9d, 0x7f, 0x18, 0xd0, 0x90, 0x61, 0xff, 0xdc, 0x63,
|
||||
0x47, 0xc9, 0x8b, 0x4a, 0xe2, 0x65, 0x23, 0xef, 0xe5, 0x53, 0xf6, 0x10, 0x25, 0xcf, 0x01, 0x66,
|
||||
0xd9, 0x73, 0x40, 0x49, 0x6d, 0x52, 0x2d, 0xad, 0x4d, 0x0a, 0x4d, 0xc9, 0xd2, 0x54, 0x53, 0xf2,
|
||||
0xa5, 0x01, 0x1b, 0x19, 0x1b, 0x9d, 0x25, 0x85, 0xe5, 0x2c, 0x5b, 0x29, 0x5a, 0xf6, 0x7e, 0x3e,
|
||||
0xb5, 0x9b, 0x65, 0xae, 0xce, 0xa4, 0xf6, 0xc4, 0xc6, 0xb9, 0xf4, 0xfe, 0x04, 0xd6, 0x04, 0xbd,
|
||||
0x9e, 0x8f, 0x3b, 0xff, 0x6e, 0xc0, 0xca, 0x63, 0xda, 0x97, 0x8e, 0xcc, 0x62, 0xc8, 0xc8, 0x3f,
|
||||
0x35, 0xad, 0x83, 0xe9, 0x93, 0x91, 0xce, 0xc7, 0xe2, 0xa7, 0x88, 0x31, 0xc6, 0xbd, 0x88, 0x4f,
|
||||
0x1e, 0xcb, 0x44, 0xf1, 0x25, 0x24, 0xf2, 0xbd, 0xe5, 0x12, 0xd4, 0x70, 0xe8, 0xab, 0x49, 0x5d,
|
||||
0xe1, 0xe2, 0xd0, 0x97, 0x53, 0xe7, 0xd3, 0xb4, 0x5c, 0x84, 0xa5, 0x31, 0x9d, 0x3c, 0x70, 0xa9,
|
||||
0x81, 0x73, 0x11, 0xd0, 0x43, 0xcc, 0x1f, 0xd3, 0xbe, 0xf0, 0x4a, 0x62, 0x1e, 0xe7, 0x6f, 0x15,
|
||||
0xd9, 0x50, 0x4c, 0xc4, 0x67, 0x71, 0xb0, 0x03, 0x0d, 0x45, 0x40, 0x9f, 0xd1, 0x7e, 0x2f, 0x8c,
|
||||
0x13, 0xa3, 0xd8, 0x52, 0xf8, 0x98, 0xf6, 0x9f, 0xc5, 0x23, 0x74, 0x07, 0xde, 0x21, 0x61, 0x6f,
|
||||
0xac, 0x39, 0x31, 0xd5, 0x54, 0x56, 0x5a, 0x27, 0x61, 0xc2, 0x96, 0x5a, 0xfd, 0x16, 0xac, 0xe1,
|
||||
0xf0, 0x45, 0x8c, 0x63, 0x9c, 0xaa, 0x2a, 0x9b, 0x35, 0xb4, 0x58, 0xeb, 0x09, 0xee, 0xf3, 0xd8,
|
||||
0x51, 0x8f, 0x05, 0x94, 0x33, 0x9d, 0x13, 0x2d, 0x21, 0xe9, 0x0a, 0x01, 0xfa, 0x10, 0x2c, 0xb1,
|
||||
0x5c, 0x41, 0x4b, 0x35, 0x06, 0x97, 0xcb, 0xa0, 0xa5, 0xfd, 0xed, 0xd6, 0x3e, 0x53, 0x3f, 0x98,
|
||||
0x08, 0x10, 0x5d, 0x2a, 0xfb, 0x84, 0x1d, 0x69, 0xa6, 0x01, 0x25, 0xda, 0x23, 0xec, 0xc8, 0xf9,
|
||||
0x09, 0x5c, 0xca, 0x3e, 0xb5, 0x10, 0xc6, 0xc9, 0xe0, 0x3c, 0xeb, 0x89, 0xdf, 0x1a, 0xd0, 0x2a,
|
||||
0x3b, 0xe0, 0xbf, 0x58, 0x46, 0x6d, 0xff, 0xd2, 0x06, 0x90, 0x33, 0xbb, 0x94, 0x46, 0x3e, 0x0a,
|
||||
0x24, 0xb4, 0x76, 0xe9, 0x68, 0x4c, 0x43, 0x1c, 0x72, 0x99, 0xb1, 0x18, 0xda, 0xca, 0xef, 0xa7,
|
||||
0x07, 0xd3, 0x8a, 0xda, 0x56, 0xad, 0xf7, 0x4a, 0xf5, 0x0b, 0xca, 0xce, 0x05, 0xf4, 0x42, 0x36,
|
||||
0x14, 0x13, 0x53, 0xec, 0x1e, 0x7a, 0x61, 0x88, 0x03, 0xb4, 0x3d, 0xe3, 0xf9, 0xad, 0x4c, 0x39,
|
||||
0x39, 0xf3, 0x46, 0xe9, 0x99, 0x5d, 0x1e, 0x91, 0xf0, 0x20, 0x31, 0xb1, 0x73, 0x01, 0x3d, 0x07,
|
||||
0x3b, 0xf3, 0x06, 0x82, 0x6e, 0x95, 0x59, 0x6a, 0xfa, 0x91, 0xa4, 0x75, 0x92, 0x2f, 0x9c, 0x0b,
|
||||
0x68, 0x08, 0x8d, 0xdc, 0x23, 0x1d, 0x6a, 0x9f, 0xd4, 0xc7, 0x64, 0x5f, 0xc6, 0x5a, 0x5f, 0x5f,
|
||||
0x40, 0x33, 0xbd, 0xfd, 0xcf, 0x94, 0xc1, 0xa6, 0x5e, 0xb9, 0xee, 0xce, 0xd8, 0x64, 0xd6, 0x7b,
|
||||
0x5c, 0xeb, 0xde, 0xe2, 0x0b, 0xd2, 0xc3, 0xfd, 0xc9, 0x47, 0xaa, 0x80, 0xba, 0x3d, 0xbf, 0x59,
|
||||
0x53, 0xa7, 0xb5, 0x17, 0xed, 0xea, 0x9c, 0x0b, 0x68, 0x1f, 0xac, 0xb4, 0xaf, 0x42, 0xef, 0x95,
|
||||
0x2d, 0x2c, 0xb6, 0x5d, 0x0b, 0x38, 0x27, 0xd7, 0xb7, 0x94, 0x3b, 0xa7, 0xac, 0x6d, 0x2a, 0x77,
|
||||
0x4e, 0x69, 0x13, 0xe4, 0x5c, 0x40, 0xb1, 0x8c, 0x9d, 0x42, 0x74, 0xa3, 0x3b, 0xf3, 0xfc, 0x9b,
|
||||
0x4b, 0x33, 0xad, 0xad, 0x45, 0xd5, 0xd3, 0x63, 0x7f, 0x3e, 0x79, 0x20, 0xce, 0x35, 0x29, 0xe8,
|
||||
0xde, 0x49, 0x5b, 0x95, 0xf5, 0x4c, 0xad, 0x6f, 0xbe, 0xc5, 0x8a, 0x0c, 0x26, 0x51, 0xf7, 0x90,
|
||||
0xbe, 0x52, 0xc5, 0x62, 0x1c, 0x79, 0x22, 0x17, 0x96, 0x1c, 0xae, 0x43, 0x78, 0x5a, 0x75, 0xe6,
|
||||
0xe1, 0x27, 0xac, 0x48, 0x0f, 0xef, 0x01, 0x3c, 0xc4, 0xfc, 0x29, 0xe6, 0x91, 0xb0, 0xf5, 0xad,
|
||||
0x59, 0x79, 0x4a, 0x2b, 0x24, 0x47, 0xdd, 0x9e, 0xab, 0x97, 0x1e, 0xd0, 0x07, 0x7b, 0xf7, 0x10,
|
||||
0x0f, 0x8e, 0x1e, 0x61, 0x2f, 0xe0, 0x87, 0xa8, 0x7c, 0x65, 0x46, 0x63, 0x06, 0xe4, 0xcb, 0x14,
|
||||
0x93, 0x33, 0xb6, 0xbf, 0x5c, 0xd6, 0x7f, 0x16, 0x3f, 0xa3, 0x3e, 0xfe, 0xdf, 0x4f, 0xc1, 0xfb,
|
||||
0x60, 0xa5, 0xed, 0x58, 0x79, 0x84, 0x17, 0xbb, 0xb5, 0x79, 0x11, 0xfe, 0x29, 0x58, 0x69, 0x61,
|
||||
0x5b, 0xbe, 0x63, 0xb1, 0x37, 0x68, 0xdd, 0x9c, 0xa3, 0x95, 0xde, 0xf6, 0x19, 0xd4, 0x92, 0x42,
|
||||
0x14, 0xdd, 0x98, 0x95, 0x8e, 0xb2, 0x3b, 0xcf, 0xb9, 0xeb, 0x4f, 0xc1, 0xce, 0x54, 0x69, 0xe5,
|
||||
0x04, 0x34, 0x5d, 0xdd, 0xb5, 0x6e, 0xcf, 0xd5, 0xfb, 0xff, 0x08, 0xc8, 0xfb, 0xdf, 0xfa, 0x74,
|
||||
0xfb, 0x80, 0xf0, 0xc3, 0xb8, 0x2f, 0x2c, 0x7b, 0x57, 0x69, 0xde, 0x21, 0x54, 0xff, 0xba, 0x9b,
|
||||
0xdc, 0xf2, 0xae, 0xdc, 0xe9, 0xae, 0xb4, 0xd3, 0xb8, 0xdf, 0x5f, 0x96, 0xc3, 0xf7, 0xff, 0x1d,
|
||||
0x00, 0x00, 0xff, 0xff, 0x51, 0xb7, 0x70, 0x6a, 0xeb, 0x21, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
@ -2190,6 +2288,7 @@ type IndexCoordClient interface {
|
|||
GetIndexInfos(ctx context.Context, in *GetIndexInfoRequest, opts ...grpc.CallOption) (*GetIndexInfoResponse, error)
|
||||
DropIndex(ctx context.Context, in *DropIndexRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
||||
DescribeIndex(ctx context.Context, in *DescribeIndexRequest, opts ...grpc.CallOption) (*DescribeIndexResponse, error)
|
||||
GetIndexStatistics(ctx context.Context, in *GetIndexStatisticsRequest, opts ...grpc.CallOption) (*GetIndexStatisticsResponse, error)
|
||||
// Deprecated: use DescribeIndex instead
|
||||
GetIndexBuildProgress(ctx context.Context, in *GetIndexBuildProgressRequest, opts ...grpc.CallOption) (*GetIndexBuildProgressResponse, error)
|
||||
ShowConfigurations(ctx context.Context, in *internalpb.ShowConfigurationsRequest, opts ...grpc.CallOption) (*internalpb.ShowConfigurationsResponse, error)
|
||||
|
@ -2278,6 +2377,15 @@ func (c *indexCoordClient) DescribeIndex(ctx context.Context, in *DescribeIndexR
|
|||
return out, nil
|
||||
}
|
||||
|
||||
func (c *indexCoordClient) GetIndexStatistics(ctx context.Context, in *GetIndexStatisticsRequest, opts ...grpc.CallOption) (*GetIndexStatisticsResponse, error) {
|
||||
out := new(GetIndexStatisticsResponse)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.index.IndexCoord/GetIndexStatistics", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *indexCoordClient) GetIndexBuildProgress(ctx context.Context, in *GetIndexBuildProgressRequest, opts ...grpc.CallOption) (*GetIndexBuildProgressResponse, error) {
|
||||
out := new(GetIndexBuildProgressResponse)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.index.IndexCoord/GetIndexBuildProgress", in, out, opts...)
|
||||
|
@ -2325,6 +2433,7 @@ type IndexCoordServer interface {
|
|||
GetIndexInfos(context.Context, *GetIndexInfoRequest) (*GetIndexInfoResponse, error)
|
||||
DropIndex(context.Context, *DropIndexRequest) (*commonpb.Status, error)
|
||||
DescribeIndex(context.Context, *DescribeIndexRequest) (*DescribeIndexResponse, error)
|
||||
GetIndexStatistics(context.Context, *GetIndexStatisticsRequest) (*GetIndexStatisticsResponse, error)
|
||||
// Deprecated: use DescribeIndex instead
|
||||
GetIndexBuildProgress(context.Context, *GetIndexBuildProgressRequest) (*GetIndexBuildProgressResponse, error)
|
||||
ShowConfigurations(context.Context, *internalpb.ShowConfigurationsRequest) (*internalpb.ShowConfigurationsResponse, error)
|
||||
|
@ -2361,6 +2470,9 @@ func (*UnimplementedIndexCoordServer) DropIndex(ctx context.Context, req *DropIn
|
|||
func (*UnimplementedIndexCoordServer) DescribeIndex(ctx context.Context, req *DescribeIndexRequest) (*DescribeIndexResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method DescribeIndex not implemented")
|
||||
}
|
||||
func (*UnimplementedIndexCoordServer) GetIndexStatistics(ctx context.Context, req *GetIndexStatisticsRequest) (*GetIndexStatisticsResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetIndexStatistics not implemented")
|
||||
}
|
||||
func (*UnimplementedIndexCoordServer) GetIndexBuildProgress(ctx context.Context, req *GetIndexBuildProgressRequest) (*GetIndexBuildProgressResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetIndexBuildProgress not implemented")
|
||||
}
|
||||
|
@ -2522,6 +2634,24 @@ func _IndexCoord_DescribeIndex_Handler(srv interface{}, ctx context.Context, dec
|
|||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _IndexCoord_GetIndexStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(GetIndexStatisticsRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(IndexCoordServer).GetIndexStatistics(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.index.IndexCoord/GetIndexStatistics",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(IndexCoordServer).GetIndexStatistics(ctx, req.(*GetIndexStatisticsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _IndexCoord_GetIndexBuildProgress_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(GetIndexBuildProgressRequest)
|
||||
if err := dec(in); err != nil {
|
||||
|
@ -2630,6 +2760,10 @@ var _IndexCoord_serviceDesc = grpc.ServiceDesc{
|
|||
MethodName: "DescribeIndex",
|
||||
Handler: _IndexCoord_DescribeIndex_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetIndexStatistics",
|
||||
Handler: _IndexCoord_GetIndexStatistics_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetIndexBuildProgress",
|
||||
Handler: _IndexCoord_GetIndexBuildProgress_Handler,
|
||||
|
|
|
@ -343,6 +343,16 @@ func (coord *DataCoordMock) DescribeIndex(ctx context.Context, req *indexpb.Desc
|
|||
}, nil
|
||||
}
|
||||
|
||||
// GetIndexStatistics get the statistics of the index.
|
||||
func (coord *DataCoordMock) GetIndexStatistics(ctx context.Context, req *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
return &indexpb.GetIndexStatisticsResponse{
|
||||
Status: &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
},
|
||||
IndexInfos: nil,
|
||||
}, nil
|
||||
}
|
||||
|
||||
// GetIndexBuildProgress get the index building progress by num rows.
|
||||
func (coord *DataCoordMock) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetIndexBuildProgressRequest) (*indexpb.GetIndexBuildProgressResponse, error) {
|
||||
return &indexpb.GetIndexBuildProgressResponse{
|
||||
|
|
|
@ -1782,12 +1782,82 @@ func (node *Proxy) DescribeIndex(ctx context.Context, request *milvuspb.Describe
|
|||
|
||||
// GetIndexStatistics get the information of index.
|
||||
func (node *Proxy) GetIndexStatistics(ctx context.Context, request *milvuspb.GetIndexStatisticsRequest) (*milvuspb.GetIndexStatisticsResponse, error) {
|
||||
// bank implement
|
||||
return &milvuspb.GetIndexStatisticsResponse{
|
||||
Status: &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
},
|
||||
}, nil
|
||||
if !node.checkHealthy() {
|
||||
return &milvuspb.GetIndexStatisticsResponse{
|
||||
Status: unhealthyStatus(),
|
||||
}, nil
|
||||
}
|
||||
|
||||
ctx, sp := otel.Tracer(typeutil.ProxyRole).Start(ctx, "Proxy-GetIndexStatistics")
|
||||
defer sp.End()
|
||||
|
||||
dit := &getIndexStatisticsTask{
|
||||
ctx: ctx,
|
||||
Condition: NewTaskCondition(ctx),
|
||||
GetIndexStatisticsRequest: request,
|
||||
datacoord: node.dataCoord,
|
||||
}
|
||||
|
||||
method := "GetIndexStatistics"
|
||||
// avoid data race
|
||||
tr := timerecord.NewTimeRecorder(method)
|
||||
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(node.session.ServerID, 10), method,
|
||||
metrics.TotalLabel).Inc()
|
||||
|
||||
log := log.Ctx(ctx).With(
|
||||
zap.String("role", typeutil.ProxyRole),
|
||||
zap.String("db", request.DbName),
|
||||
zap.String("collection", request.CollectionName),
|
||||
zap.String("index name", request.IndexName))
|
||||
|
||||
log.Debug(rpcReceived(method))
|
||||
|
||||
if err := node.sched.ddQueue.Enqueue(dit); err != nil {
|
||||
log.Warn(
|
||||
rpcFailedToEnqueue(method),
|
||||
zap.Error(err))
|
||||
|
||||
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(node.session.ServerID, 10), method,
|
||||
metrics.AbandonLabel).Inc()
|
||||
|
||||
return &milvuspb.GetIndexStatisticsResponse{
|
||||
Status: &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: err.Error(),
|
||||
},
|
||||
}, nil
|
||||
}
|
||||
|
||||
log.Debug(
|
||||
rpcEnqueued(method),
|
||||
zap.Uint64("BeginTs", dit.BeginTs()),
|
||||
zap.Uint64("EndTs", dit.EndTs()))
|
||||
|
||||
if err := dit.WaitToFinish(); err != nil {
|
||||
log.Warn(rpcFailedToWaitToFinish(method), zap.Error(err), zap.Uint64("BeginTs", dit.BeginTs()), zap.Uint64("EndTs", dit.EndTs()))
|
||||
errCode := commonpb.ErrorCode_UnexpectedError
|
||||
if dit.result != nil {
|
||||
errCode = dit.result.Status.GetErrorCode()
|
||||
}
|
||||
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(node.session.ServerID, 10), method, metrics.FailLabel).Inc()
|
||||
return &milvuspb.GetIndexStatisticsResponse{
|
||||
Status: &commonpb.Status{
|
||||
ErrorCode: errCode,
|
||||
Reason: err.Error(),
|
||||
},
|
||||
}, nil
|
||||
}
|
||||
|
||||
log.Debug(
|
||||
rpcDone(method),
|
||||
zap.Uint64("BeginTs", dit.BeginTs()),
|
||||
zap.Uint64("EndTs", dit.EndTs()))
|
||||
|
||||
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(node.session.ServerID, 10), method,
|
||||
metrics.SuccessLabel).Inc()
|
||||
metrics.ProxyReqLatency.WithLabelValues(strconv.FormatInt(node.session.ServerID, 10), method).Observe(float64(tr.ElapseSpan().Milliseconds()))
|
||||
|
||||
return dit.result, nil
|
||||
}
|
||||
|
||||
// DropIndex drop the index of collection.
|
||||
|
|
|
@ -1113,6 +1113,20 @@ func TestProxy(t *testing.T) {
|
|||
indexName = resp.IndexDescriptions[0].IndexName
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("get index statistics", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
resp, err := proxy.GetIndexStatistics(ctx, &milvuspb.GetIndexStatisticsRequest{
|
||||
Base: nil,
|
||||
DbName: dbName,
|
||||
CollectionName: collectionName,
|
||||
IndexName: "",
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
indexName = resp.IndexDescriptions[0].IndexName
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("get index build progress", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
|
@ -2517,6 +2531,14 @@ func TestProxy(t *testing.T) {
|
|||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("GetIndexStatistics fail, unhealthy", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
resp, err := proxy.GetIndexStatistics(ctx, &milvuspb.GetIndexStatisticsRequest{})
|
||||
assert.NoError(t, err)
|
||||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("DropIndex fail, unhealthy", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
|
@ -2866,6 +2888,14 @@ func TestProxy(t *testing.T) {
|
|||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("GetIndexStatistics fail, dd queue full", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
resp, err := proxy.GetIndexStatistics(ctx, &milvuspb.GetIndexStatisticsRequest{})
|
||||
assert.NoError(t, err)
|
||||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("DropIndex fail, dd queue full", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
|
@ -3137,6 +3167,14 @@ func TestProxy(t *testing.T) {
|
|||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("GetIndexStatistics fail, timeout", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
resp, err := proxy.GetIndexStatistics(shortCtx, &milvuspb.GetIndexStatisticsRequest{})
|
||||
assert.NoError(t, err)
|
||||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
t.Run("DropIndex fail, timeout", func(t *testing.T) {
|
||||
defer wg.Done()
|
||||
|
|
|
@ -443,6 +443,121 @@ func (dit *describeIndexTask) PostExecute(ctx context.Context) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
type getIndexStatisticsTask struct {
|
||||
Condition
|
||||
*milvuspb.GetIndexStatisticsRequest
|
||||
ctx context.Context
|
||||
datacoord types.DataCoord
|
||||
result *milvuspb.GetIndexStatisticsResponse
|
||||
|
||||
nodeID int64
|
||||
collectionID UniqueID
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) TraceCtx() context.Context {
|
||||
return dit.ctx
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) ID() UniqueID {
|
||||
return dit.Base.MsgID
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) SetID(uid UniqueID) {
|
||||
dit.Base.MsgID = uid
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) Name() string {
|
||||
return DescribeIndexTaskName
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) Type() commonpb.MsgType {
|
||||
return dit.Base.MsgType
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) BeginTs() Timestamp {
|
||||
return dit.Base.Timestamp
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) EndTs() Timestamp {
|
||||
return dit.Base.Timestamp
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) SetTs(ts Timestamp) {
|
||||
dit.Base.Timestamp = ts
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) OnEnqueue() error {
|
||||
dit.Base = commonpbutil.NewMsgBase()
|
||||
return nil
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) PreExecute(ctx context.Context) error {
|
||||
dit.Base.MsgType = commonpb.MsgType_GetIndexStatistics
|
||||
dit.Base.SourceID = dit.nodeID
|
||||
|
||||
if err := validateCollectionName(dit.CollectionName); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
collID, err := globalMetaCache.GetCollectionID(ctx, dit.CollectionName)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
dit.collectionID = collID
|
||||
return nil
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) Execute(ctx context.Context) error {
|
||||
schema, err := globalMetaCache.GetCollectionSchema(ctx, dit.GetCollectionName())
|
||||
if err != nil {
|
||||
log.Error("failed to get collection schema", zap.Error(err))
|
||||
return fmt.Errorf("failed to get collection schema: %s", err)
|
||||
}
|
||||
schemaHelper, err := typeutil.CreateSchemaHelper(schema)
|
||||
if err != nil {
|
||||
log.Error("failed to parse collection schema", zap.Error(err))
|
||||
return fmt.Errorf("failed to parse collection schema: %s", err)
|
||||
}
|
||||
|
||||
resp, err := dit.datacoord.GetIndexStatistics(ctx, &indexpb.GetIndexStatisticsRequest{
|
||||
CollectionID: dit.collectionID, IndexName: dit.IndexName})
|
||||
if err != nil || resp == nil {
|
||||
return err
|
||||
}
|
||||
dit.result = &milvuspb.GetIndexStatisticsResponse{}
|
||||
dit.result.Status = resp.GetStatus()
|
||||
if dit.result.Status.ErrorCode != commonpb.ErrorCode_Success {
|
||||
return errors.New(dit.result.Status.Reason)
|
||||
}
|
||||
for _, indexInfo := range resp.IndexInfos {
|
||||
field, err := schemaHelper.GetFieldFromID(indexInfo.FieldID)
|
||||
if err != nil {
|
||||
log.Error("failed to get collection field", zap.Error(err))
|
||||
return fmt.Errorf("failed to get collection field: %d", indexInfo.FieldID)
|
||||
}
|
||||
params := indexInfo.GetUserIndexParams()
|
||||
if params == nil {
|
||||
params = indexInfo.GetIndexParams()
|
||||
}
|
||||
desc := &milvuspb.IndexDescription{
|
||||
IndexName: indexInfo.GetIndexName(),
|
||||
IndexID: indexInfo.GetIndexID(),
|
||||
FieldName: field.Name,
|
||||
Params: params,
|
||||
IndexedRows: indexInfo.GetIndexedRows(),
|
||||
TotalRows: indexInfo.GetTotalRows(),
|
||||
State: indexInfo.GetState(),
|
||||
IndexStateFailReason: indexInfo.GetIndexStateFailReason(),
|
||||
}
|
||||
dit.result.IndexDescriptions = append(dit.result.IndexDescriptions, desc)
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
func (dit *getIndexStatisticsTask) PostExecute(ctx context.Context) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
type dropIndexTask struct {
|
||||
Condition
|
||||
ctx context.Context
|
||||
|
|
|
@ -366,6 +366,9 @@ type DataCoord interface {
|
|||
// DescribeIndex describe the index info of the collection.
|
||||
DescribeIndex(ctx context.Context, req *indexpb.DescribeIndexRequest) (*indexpb.DescribeIndexResponse, error)
|
||||
|
||||
// GetIndexStatistics get the statistics of the index.
|
||||
GetIndexStatistics(ctx context.Context, req *indexpb.GetIndexStatisticsRequest) (*indexpb.GetIndexStatisticsResponse, error)
|
||||
|
||||
// GetIndexBuildProgress get the index building progress by num rows.
|
||||
// Deprecated: use DescribeIndex instead
|
||||
GetIndexBuildProgress(ctx context.Context, req *indexpb.GetIndexBuildProgressRequest) (*indexpb.GetIndexBuildProgressResponse, error)
|
||||
|
|
|
@ -208,6 +208,11 @@ func (m *GrpcDataCoordClient) DescribeIndex(ctx context.Context, req *indexpb.De
|
|||
return &indexpb.DescribeIndexResponse{}, m.Err
|
||||
}
|
||||
|
||||
// GetIndexStatistics get the information of index.
|
||||
func (m *GrpcDataCoordClient) GetIndexStatistics(ctx context.Context, in *indexpb.GetIndexStatisticsRequest, opts ...grpc.CallOption) (*indexpb.GetIndexStatisticsResponse, error) {
|
||||
return &indexpb.GetIndexStatisticsResponse{}, m.Err
|
||||
}
|
||||
|
||||
// GetIndexBuildProgress get the index building progress by num rows.
|
||||
func (m *GrpcDataCoordClient) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetIndexBuildProgressRequest, opts ...grpc.CallOption) (*indexpb.GetIndexBuildProgressResponse, error) {
|
||||
return &indexpb.GetIndexBuildProgressResponse{}, m.Err
|
||||
|
|
|
@ -0,0 +1,155 @@
|
|||
package integration
|
||||
|
||||
import (
|
||||
"context"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/golang/protobuf/proto"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"go.uber.org/zap"
|
||||
|
||||
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
||||
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
|
||||
"github.com/milvus-io/milvus-proto/go-api/schemapb"
|
||||
"github.com/milvus-io/milvus/pkg/log"
|
||||
"github.com/milvus-io/milvus/pkg/util/distance"
|
||||
"github.com/milvus-io/milvus/pkg/util/funcutil"
|
||||
)
|
||||
|
||||
func TestGetIndexStatistics(t *testing.T) {
|
||||
ctx := context.Background()
|
||||
c, err := StartMiniCluster(ctx)
|
||||
assert.NoError(t, err)
|
||||
err = c.Start()
|
||||
assert.NoError(t, err)
|
||||
defer c.Stop()
|
||||
assert.NoError(t, err)
|
||||
|
||||
prefix := "TestGetIndexStatistics"
|
||||
dbName := ""
|
||||
collectionName := prefix + funcutil.GenRandomStr()
|
||||
dim := 128
|
||||
rowNum := 3000
|
||||
|
||||
schema := constructSchema(collectionName, dim, true)
|
||||
marshaledSchema, err := proto.Marshal(schema)
|
||||
assert.NoError(t, err)
|
||||
|
||||
createCollectionStatus, err := c.proxy.CreateCollection(ctx, &milvuspb.CreateCollectionRequest{
|
||||
DbName: dbName,
|
||||
CollectionName: collectionName,
|
||||
Schema: marshaledSchema,
|
||||
ShardsNum: 2,
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
if createCollectionStatus.GetErrorCode() != commonpb.ErrorCode_Success {
|
||||
log.Warn("createCollectionStatus fail reason", zap.String("reason", createCollectionStatus.GetReason()))
|
||||
}
|
||||
assert.Equal(t, createCollectionStatus.GetErrorCode(), commonpb.ErrorCode_Success)
|
||||
|
||||
fVecColumn := newFloatVectorFieldData(floatVecField, rowNum, dim)
|
||||
hashKeys := generateHashKeys(rowNum)
|
||||
insertResult, err := c.proxy.Insert(ctx, &milvuspb.InsertRequest{
|
||||
DbName: dbName,
|
||||
CollectionName: collectionName,
|
||||
FieldsData: []*schemapb.FieldData{fVecColumn},
|
||||
HashKeys: hashKeys,
|
||||
NumRows: uint32(rowNum),
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, insertResult.GetStatus().GetErrorCode(), commonpb.ErrorCode_Success)
|
||||
|
||||
// flush
|
||||
flushResp, err := c.proxy.Flush(ctx, &milvuspb.FlushRequest{
|
||||
DbName: dbName,
|
||||
CollectionNames: []string{collectionName},
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
segmentIDs, has := flushResp.GetCollSegIDs()[collectionName]
|
||||
ids := segmentIDs.GetData()
|
||||
assert.NotEmpty(t, segmentIDs)
|
||||
assert.Equal(t, true, has)
|
||||
waitingForFlush(ctx, c, ids)
|
||||
|
||||
// create index
|
||||
indexName := "_default"
|
||||
createIndexStatus, err := c.proxy.CreateIndex(ctx, &milvuspb.CreateIndexRequest{
|
||||
CollectionName: collectionName,
|
||||
FieldName: floatVecField,
|
||||
IndexName: "_default",
|
||||
ExtraParams: constructIndexParam(dim, IndexFaissIvfFlat, distance.L2),
|
||||
})
|
||||
if createIndexStatus.GetErrorCode() != commonpb.ErrorCode_Success {
|
||||
log.Warn("createIndexStatus fail reason", zap.String("reason", createIndexStatus.GetReason()))
|
||||
}
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, createIndexStatus.GetErrorCode())
|
||||
|
||||
getIndexStatisticsResponse, err := c.proxy.GetIndexStatistics(ctx, &milvuspb.GetIndexStatisticsRequest{
|
||||
CollectionName: collectionName,
|
||||
IndexName: indexName,
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
indexInfos := getIndexStatisticsResponse.GetIndexDescriptions()
|
||||
assert.Equal(t, 1, len(indexInfos))
|
||||
assert.Equal(t, int64(0), indexInfos[0].IndexedRows)
|
||||
assert.Equal(t, int64(3000), indexInfos[0].TotalRows)
|
||||
|
||||
insertResult2, err := c.proxy.Insert(ctx, &milvuspb.InsertRequest{
|
||||
DbName: dbName,
|
||||
CollectionName: collectionName,
|
||||
FieldsData: []*schemapb.FieldData{fVecColumn},
|
||||
HashKeys: hashKeys,
|
||||
NumRows: uint32(rowNum),
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
|
||||
_, err = c.proxy.Flush(ctx, &milvuspb.FlushRequest{
|
||||
DbName: dbName,
|
||||
CollectionNames: []string{collectionName},
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
segmentIDs2, has2 := flushResp.GetCollSegIDs()[collectionName]
|
||||
ids2 := segmentIDs2.GetData()
|
||||
assert.NotEmpty(t, segmentIDs)
|
||||
assert.Equal(t, true, has2)
|
||||
waitingForFlush(ctx, c, ids2)
|
||||
|
||||
loadStatus, err := c.proxy.LoadCollection(ctx, &milvuspb.LoadCollectionRequest{
|
||||
DbName: dbName,
|
||||
CollectionName: collectionName,
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
if loadStatus.GetErrorCode() != commonpb.ErrorCode_Success {
|
||||
log.Warn("loadStatus fail reason", zap.String("reason", loadStatus.GetReason()))
|
||||
}
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, loadStatus.GetErrorCode())
|
||||
for {
|
||||
loadProgress, err := c.proxy.GetLoadingProgress(ctx, &milvuspb.GetLoadingProgressRequest{
|
||||
CollectionName: collectionName,
|
||||
})
|
||||
if err != nil {
|
||||
panic("GetLoadingProgress fail")
|
||||
}
|
||||
if loadProgress.GetProgress() == 100 {
|
||||
break
|
||||
}
|
||||
time.Sleep(500 * time.Millisecond)
|
||||
}
|
||||
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, insertResult2.GetStatus().GetErrorCode(), commonpb.ErrorCode_Success)
|
||||
|
||||
getIndexStatisticsResponse2, err := c.proxy.GetIndexStatistics(ctx, &milvuspb.GetIndexStatisticsRequest{
|
||||
CollectionName: collectionName,
|
||||
IndexName: indexName,
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
indexInfos2 := getIndexStatisticsResponse2.GetIndexDescriptions()
|
||||
assert.Equal(t, 1, len(indexInfos2))
|
||||
assert.Equal(t, int64(6000), indexInfos2[0].IndexedRows)
|
||||
assert.Equal(t, int64(6000), indexInfos2[0].TotalRows)
|
||||
|
||||
log.Info("TestGetIndexStatistics succeed")
|
||||
}
|
Loading…
Reference in New Issue