mirror of https://github.com/milvus-io/milvus.git
Fix BulkInsert may seal a failed segment (#21779)
Signed-off-by: xiaofan-luan <xiaofan.luan@zilliz.com>pull/21908/head
parent
15aeb05499
commit
789cf5c48b
|
@ -319,8 +319,11 @@ func (m *meta) SetState(segmentID UniqueID, targetState commonpb.SegmentState) e
|
|||
log.Warn("meta update: setting segment state - segment not found",
|
||||
zap.Int64("segment ID", segmentID),
|
||||
zap.Any("target state", targetState))
|
||||
// TODO: Should probably return error instead.
|
||||
return nil
|
||||
// idempotent
|
||||
if targetState == commonpb.SegmentState_Dropped {
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("segment is not exist with ID = %d", segmentID)
|
||||
}
|
||||
// Persist segment updates first.
|
||||
clonedSegment := curSegInfo.Clone()
|
||||
|
|
|
@ -75,7 +75,7 @@ type Manager interface {
|
|||
DropSegment(ctx context.Context, segmentID UniqueID)
|
||||
// SealAllSegments seals all segments of collection with collectionID and return sealed segments.
|
||||
// If segIDs is not empty, also seals segments in segIDs.
|
||||
SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID) ([]UniqueID, error)
|
||||
SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID, isImport bool) ([]UniqueID, error)
|
||||
// GetFlushableSegments returns flushable segment ids
|
||||
GetFlushableSegments(ctx context.Context, channel string, ts Timestamp) ([]UniqueID, error)
|
||||
// ExpireAllocations notifies segment status to expire old allocations
|
||||
|
@ -256,7 +256,7 @@ func (s *SegmentManager) AllocSegment(ctx context.Context, collectionID UniqueID
|
|||
requestRows, int64(maxCountPerSegment))
|
||||
|
||||
// create new segments and add allocations
|
||||
expireTs, err := s.genExpireTs(ctx)
|
||||
expireTs, err := s.genExpireTs(ctx, false)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -291,7 +291,7 @@ func (s *SegmentManager) allocSegmentForImport(ctx context.Context, collectionID
|
|||
|
||||
// create new segments and add allocations to meta
|
||||
// to avoid mixing up with growing segments, the segment state is "Importing"
|
||||
expireTs, err := s.genExpireTs(ctx)
|
||||
expireTs, err := s.genExpireTs(ctx, true)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -324,13 +324,17 @@ func isGrowing(segment *SegmentInfo) bool {
|
|||
return segment.GetState() == commonpb.SegmentState_Growing
|
||||
}
|
||||
|
||||
func (s *SegmentManager) genExpireTs(ctx context.Context) (Timestamp, error) {
|
||||
func (s *SegmentManager) genExpireTs(ctx context.Context, isImport bool) (Timestamp, error) {
|
||||
ts, err := s.allocator.allocTimestamp(ctx)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
physicalTs, logicalTs := tsoutil.ParseTS(ts)
|
||||
expirePhysicalTs := physicalTs.Add(time.Duration(Params.DataCoordCfg.SegAssignmentExpiration) * time.Millisecond)
|
||||
if isImport {
|
||||
// for import, wait until import task expired
|
||||
expirePhysicalTs = physicalTs.Add(time.Duration(Params.RootCoordCfg.ImportTaskExpiration) * time.Second)
|
||||
}
|
||||
expireTs := tsoutil.ComposeTS(expirePhysicalTs.UnixNano()/int64(time.Millisecond), int64(logicalTs))
|
||||
return expireTs, nil
|
||||
}
|
||||
|
@ -411,7 +415,7 @@ func (s *SegmentManager) DropSegment(ctx context.Context, segmentID UniqueID) {
|
|||
}
|
||||
|
||||
// SealAllSegments seals all segments of collection with collectionID and return sealed segments
|
||||
func (s *SegmentManager) SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID) ([]UniqueID, error) {
|
||||
func (s *SegmentManager) SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID, isImport bool) ([]UniqueID, error) {
|
||||
sp, _ := trace.StartSpanFromContext(ctx)
|
||||
defer sp.Finish()
|
||||
s.mu.Lock()
|
||||
|
@ -434,8 +438,7 @@ func (s *SegmentManager) SealAllSegments(ctx context.Context, collectionID Uniqu
|
|||
ret = append(ret, id)
|
||||
continue
|
||||
}
|
||||
if info.State == commonpb.SegmentState_Flushing ||
|
||||
info.State == commonpb.SegmentState_Flushed {
|
||||
if (!isImport && info.State != commonpb.SegmentState_Growing) || (isImport && info.State != commonpb.SegmentState_Importing) {
|
||||
continue
|
||||
}
|
||||
if err := s.meta.SetState(id, commonpb.SegmentState_Sealed); err != nil {
|
||||
|
@ -457,7 +460,7 @@ func (s *SegmentManager) GetFlushableSegments(ctx context.Context, channel strin
|
|||
return nil, err
|
||||
}
|
||||
|
||||
s.dropEmptySealedSegment(t, channel)
|
||||
s.cleanupSealedSegment(t, channel)
|
||||
|
||||
ret := make([]UniqueID, 0, len(s.segments))
|
||||
for _, id := range s.segments {
|
||||
|
@ -496,7 +499,7 @@ func (s *SegmentManager) ExpireAllocations(channel string, ts Timestamp) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (s *SegmentManager) dropEmptySealedSegment(ts Timestamp, channel string) {
|
||||
func (s *SegmentManager) cleanupSealedSegment(ts Timestamp, channel string) {
|
||||
valids := make([]int64, 0, len(s.segments))
|
||||
for _, id := range s.segments {
|
||||
segment := s.meta.GetSegment(id)
|
||||
|
@ -506,10 +509,17 @@ func (s *SegmentManager) dropEmptySealedSegment(ts Timestamp, channel string) {
|
|||
}
|
||||
|
||||
if isEmptySealedSegment(segment, ts) {
|
||||
log.Info("remove empty sealed segment", zap.Any("segment", id))
|
||||
log.Info("remove empty sealed segment", zap.Int64("collection", segment.CollectionID), zap.Any("segment", id))
|
||||
s.meta.SetState(id, commonpb.SegmentState_Dropped)
|
||||
continue
|
||||
}
|
||||
|
||||
if segment.GetState() == commonpb.SegmentState_Importing && segment.GetLastExpireTime() < ts {
|
||||
log.Info("cleanup staled importing segment", zap.Int64("collection", segment.CollectionID), zap.Int64("segment", id))
|
||||
s.meta.SetState(id, commonpb.SegmentState_Dropped)
|
||||
continue
|
||||
}
|
||||
|
||||
valids = append(valids, id)
|
||||
}
|
||||
s.segments = valids
|
||||
|
@ -528,9 +538,7 @@ func (s *SegmentManager) tryToSealSegment(ts Timestamp, channel string) error {
|
|||
continue
|
||||
}
|
||||
channelInfo[info.InsertChannel] = append(channelInfo[info.InsertChannel], info)
|
||||
if info.State == commonpb.SegmentState_Sealed ||
|
||||
info.State == commonpb.SegmentState_Flushing ||
|
||||
info.State == commonpb.SegmentState_Flushed {
|
||||
if info.State != commonpb.SegmentState_Growing {
|
||||
continue
|
||||
}
|
||||
// change shouldSeal to segment seal policy logic
|
||||
|
|
|
@ -245,7 +245,7 @@ func TestSaveSegmentsToMeta(t *testing.T) {
|
|||
allocations, err := segmentManager.AllocSegment(context.Background(), collID, 0, "c1", 1000)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(allocations))
|
||||
_, err = segmentManager.SealAllSegments(context.Background(), collID, nil)
|
||||
_, err = segmentManager.SealAllSegments(context.Background(), collID, nil, false)
|
||||
assert.Nil(t, err)
|
||||
segment := meta.GetSegment(allocations[0].SegmentID)
|
||||
assert.NotNil(t, segment)
|
||||
|
@ -267,7 +267,7 @@ func TestSaveSegmentsToMetaWithSpecificSegments(t *testing.T) {
|
|||
allocations, err := segmentManager.AllocSegment(context.Background(), collID, 0, "c1", 1000)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(allocations))
|
||||
_, err = segmentManager.SealAllSegments(context.Background(), collID, []int64{allocations[0].SegmentID})
|
||||
_, err = segmentManager.SealAllSegments(context.Background(), collID, []int64{allocations[0].SegmentID}, false)
|
||||
assert.Nil(t, err)
|
||||
segment := meta.GetSegment(allocations[0].SegmentID)
|
||||
assert.NotNil(t, segment)
|
||||
|
@ -362,6 +362,37 @@ func TestExpireAllocation(t *testing.T) {
|
|||
assert.EqualValues(t, 0, len(segment.allocations))
|
||||
}
|
||||
|
||||
func TestCleanExpiredBulkloadSegment(t *testing.T) {
|
||||
t.Run("expiredBulkloadSegment", func(t *testing.T) {
|
||||
Params.Init()
|
||||
mockAllocator := newMockAllocator()
|
||||
meta, err := newMemoryMeta()
|
||||
assert.Nil(t, err)
|
||||
|
||||
schema := newTestSchema()
|
||||
collID, err := mockAllocator.allocID(context.Background())
|
||||
assert.Nil(t, err)
|
||||
meta.AddCollection(&collectionInfo{ID: collID, Schema: schema})
|
||||
ms := newMockRootCoordService()
|
||||
segmentManager := newSegmentManager(meta, mockAllocator, ms)
|
||||
allocation, err := segmentManager.allocSegmentForImport(context.TODO(), collID, 0, "c1", 2, 1)
|
||||
assert.Nil(t, err)
|
||||
|
||||
ids, err := segmentManager.GetFlushableSegments(context.TODO(), "c1", allocation.ExpireTime)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, len(ids), 0)
|
||||
|
||||
assert.EqualValues(t, len(segmentManager.segments), 1)
|
||||
|
||||
ids, err = segmentManager.GetFlushableSegments(context.TODO(), "c1", allocation.ExpireTime+1)
|
||||
assert.Nil(t, err)
|
||||
assert.Empty(t, ids)
|
||||
assert.EqualValues(t, len(ids), 0)
|
||||
|
||||
assert.EqualValues(t, len(segmentManager.segments), 0)
|
||||
})
|
||||
}
|
||||
|
||||
func TestGetFlushableSegments(t *testing.T) {
|
||||
t.Run("get flushable segments between small interval", func(t *testing.T) {
|
||||
Params.Init()
|
||||
|
@ -378,7 +409,7 @@ func TestGetFlushableSegments(t *testing.T) {
|
|||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(allocations))
|
||||
|
||||
ids, err := segmentManager.SealAllSegments(context.TODO(), collID, nil)
|
||||
ids, err := segmentManager.SealAllSegments(context.TODO(), collID, nil, false)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(ids))
|
||||
assert.EqualValues(t, allocations[0].SegmentID, ids[0])
|
||||
|
|
|
@ -250,6 +250,50 @@ func TestFlush(t *testing.T) {
|
|||
assert.EqualValues(t, segID, ids[0])
|
||||
})
|
||||
|
||||
t.Run("bulkload segment", func(t *testing.T) {
|
||||
svr := newTestServer(t, nil)
|
||||
defer closeTestServer(t, svr)
|
||||
schema := newTestSchema()
|
||||
svr.meta.AddCollection(&collectionInfo{ID: 0, Schema: schema, Partitions: []int64{}})
|
||||
|
||||
allocations, err := svr.segmentManager.allocSegmentForImport(context.TODO(), 0, 1, "channel-1", 1, 100)
|
||||
assert.Nil(t, err)
|
||||
expireTs := allocations.ExpireTime
|
||||
segID := allocations.SegmentID
|
||||
|
||||
resp, err := svr.Flush(context.TODO(), req)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.EqualValues(t, 0, len(resp.SegmentIDs))
|
||||
// should not flush anything since this is a normal flush
|
||||
svr.meta.SetCurrentRows(segID, 1)
|
||||
ids, err := svr.segmentManager.GetFlushableSegments(context.TODO(), "channel-1", expireTs)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 0, len(ids))
|
||||
|
||||
req := &datapb.FlushRequest{
|
||||
Base: &commonpb.MsgBase{
|
||||
MsgType: commonpb.MsgType_Flush,
|
||||
MsgID: 0,
|
||||
Timestamp: 0,
|
||||
SourceID: 0,
|
||||
},
|
||||
DbID: 0,
|
||||
CollectionID: 0,
|
||||
IsImport: true,
|
||||
}
|
||||
|
||||
resp, err = svr.Flush(context.TODO(), req)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.EqualValues(t, 1, len(resp.SegmentIDs))
|
||||
|
||||
ids, err = svr.segmentManager.GetFlushableSegments(context.TODO(), "channel-1", expireTs)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(ids))
|
||||
assert.EqualValues(t, segID, ids[0])
|
||||
})
|
||||
|
||||
t.Run("closed server", func(t *testing.T) {
|
||||
svr := newTestServer(t, nil)
|
||||
closeTestServer(t, svr)
|
||||
|
@ -1142,7 +1186,7 @@ func (s *spySegmentManager) DropSegment(ctx context.Context, segmentID UniqueID)
|
|||
}
|
||||
|
||||
// SealAllSegments seals all segments of collection with collectionID and return sealed segments
|
||||
func (s *spySegmentManager) SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID) ([]UniqueID, error) {
|
||||
func (s *spySegmentManager) SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID, isImport bool) ([]UniqueID, error) {
|
||||
panic("not implemented") // TODO: Implement
|
||||
}
|
||||
|
||||
|
@ -3275,29 +3319,6 @@ func TestDataCoord_UnsetIsImportingState(t *testing.T) {
|
|||
})
|
||||
}
|
||||
|
||||
func TestDataCoord_MarkSegmentsDropped(t *testing.T) {
|
||||
t.Run("normal case", func(t *testing.T) {
|
||||
svr := newTestServer(t, nil)
|
||||
defer closeTestServer(t, svr)
|
||||
seg := buildSegment(100, 100, 100, "ch1", false)
|
||||
svr.meta.AddSegment(seg)
|
||||
|
||||
status, err := svr.MarkSegmentsDropped(context.Background(), &datapb.MarkSegmentsDroppedRequest{
|
||||
SegmentIds: []int64{100},
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, status.GetErrorCode())
|
||||
|
||||
// Trying to mark dropped of a segment that does not exist.
|
||||
status, err = svr.MarkSegmentsDropped(context.Background(), &datapb.MarkSegmentsDroppedRequest{
|
||||
SegmentIds: []int64{999},
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
// Returning success as SetState will succeed if segment does not exist. This should probably get fixed.
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, status.GetErrorCode())
|
||||
})
|
||||
}
|
||||
|
||||
func TestDataCoordServer_UpdateChannelCheckpoint(t *testing.T) {
|
||||
mockVChannel := "fake-by-dev-rootcoord-dml-1-testchannelcp-v0"
|
||||
mockPChannel := "fake-by-dev-rootcoord-dml-1"
|
||||
|
|
|
@ -97,7 +97,7 @@ func (s *Server) Flush(ctx context.Context, req *datapb.FlushRequest) (*datapb.F
|
|||
}
|
||||
timeOfSeal, _ := tsoutil.ParseTS(ts)
|
||||
|
||||
sealedSegmentIDs, err := s.segmentManager.SealAllSegments(ctx, req.GetCollectionID(), req.GetSegmentIDs())
|
||||
sealedSegmentIDs, err := s.segmentManager.SealAllSegments(ctx, req.GetCollectionID(), req.GetSegmentIDs(), req.IsImport)
|
||||
if err != nil {
|
||||
resp.Status.Reason = fmt.Sprintf("failed to flush %d, %s", req.CollectionID, err)
|
||||
return resp, nil
|
||||
|
@ -1309,6 +1309,7 @@ func (s *Server) SaveImportSegment(ctx context.Context, req *datapb.SaveImportSe
|
|||
zap.Error(err))
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: err.Error(),
|
||||
}, nil
|
||||
}
|
||||
resp, err := cli.AddImportSegment(ctx,
|
||||
|
@ -1328,6 +1329,7 @@ func (s *Server) SaveImportSegment(ctx context.Context, req *datapb.SaveImportSe
|
|||
log.Error("failed to add segment", zap.Int64("DataNode ID", nodeID), zap.Error(err))
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: err.Error(),
|
||||
}, nil
|
||||
}
|
||||
log.Info("succeed to add segment", zap.Int64("DataNode ID", nodeID), zap.Any("add segment req", req))
|
||||
|
@ -1340,6 +1342,7 @@ func (s *Server) SaveImportSegment(ctx context.Context, req *datapb.SaveImportSe
|
|||
log.Error("failed to SaveBinlogPaths", zap.Error(err))
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: err.Error(),
|
||||
}, nil
|
||||
}
|
||||
return &commonpb.Status{
|
||||
|
@ -1352,17 +1355,18 @@ func (s *Server) SaveImportSegment(ctx context.Context, req *datapb.SaveImportSe
|
|||
func (s *Server) UnsetIsImportingState(ctx context.Context, req *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error) {
|
||||
log.Info("unsetting isImport state of segments",
|
||||
zap.Int64s("segments", req.GetSegmentIds()))
|
||||
failure := false
|
||||
var reportErr error
|
||||
for _, segID := range req.GetSegmentIds() {
|
||||
if err := s.meta.UnsetIsImporting(segID); err != nil {
|
||||
// Fail-open.
|
||||
log.Error("failed to unset segment is importing state", zap.Int64("segment ID", segID))
|
||||
failure = true
|
||||
reportErr = err
|
||||
}
|
||||
}
|
||||
if failure {
|
||||
if reportErr != nil {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: reportErr.Error(),
|
||||
}, nil
|
||||
}
|
||||
return &commonpb.Status{
|
||||
|
@ -1372,9 +1376,9 @@ func (s *Server) UnsetIsImportingState(ctx context.Context, req *datapb.UnsetIsI
|
|||
|
||||
// MarkSegmentsDropped marks the given segments as `Dropped`.
|
||||
// An error status will be returned and error will be logged, if we failed to mark *all* segments.
|
||||
// Deprecated, do not use it
|
||||
func (s *Server) MarkSegmentsDropped(ctx context.Context, req *datapb.MarkSegmentsDroppedRequest) (*commonpb.Status, error) {
|
||||
log.Info("marking segments dropped",
|
||||
zap.Int64s("segments", req.GetSegmentIds()))
|
||||
log.Info("marking segments dropped", zap.Int64s("segments", req.GetSegmentIds()))
|
||||
failure := false
|
||||
for _, segID := range req.GetSegmentIds() {
|
||||
if err := s.meta.SetState(segID, commonpb.SegmentState_Dropped); err != nil {
|
||||
|
|
|
@ -101,6 +101,7 @@ message FlushRequest {
|
|||
int64 dbID = 2;
|
||||
repeated int64 segmentIDs = 3;
|
||||
int64 collectionID = 4;
|
||||
bool isImport = 5;
|
||||
}
|
||||
|
||||
message FlushResponse {
|
||||
|
|
|
@ -167,6 +167,7 @@ type FlushRequest struct {
|
|||
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
||||
SegmentIDs []int64 `protobuf:"varint,3,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
||||
CollectionID int64 `protobuf:"varint,4,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
||||
IsImport bool `protobuf:"varint,5,opt,name=isImport,proto3" json:"isImport,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
|
@ -225,6 +226,13 @@ func (m *FlushRequest) GetCollectionID() int64 {
|
|||
return 0
|
||||
}
|
||||
|
||||
func (m *FlushRequest) GetIsImport() bool {
|
||||
if m != nil {
|
||||
return m.IsImport
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
type FlushResponse struct {
|
||||
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
||||
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
||||
|
@ -5064,291 +5072,291 @@ func init() {
|
|||
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
|
||||
|
||||
var fileDescriptor_82cd95f524594f49 = []byte{
|
||||
// 4542 bytes of a gzipped FileDescriptorProto
|
||||
// 4544 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x8c, 0x1c, 0x49,
|
||||
0x56, 0xce, 0xfa, 0x75, 0xd5, 0xab, 0x4f, 0x57, 0x87, 0x3d, 0xed, 0x72, 0xf9, 0x3b, 0x69, 0x7b,
|
||||
0xc6, 0xe3, 0xf1, 0xd8, 0x33, 0x1e, 0x46, 0x6b, 0xd6, 0x3b, 0xb3, 0xb8, 0xbb, 0xdd, 0x9e, 0x82,
|
||||
0xee, 0xde, 0xde, 0xec, 0xf6, 0x18, 0xcd, 0x22, 0x95, 0xb2, 0x2b, 0xa3, 0xab, 0x73, 0xbb, 0x2a,
|
||||
0xb3, 0x9c, 0x99, 0xd5, 0xed, 0x5e, 0x0e, 0x3b, 0x02, 0x09, 0x69, 0x11, 0x62, 0x11, 0x12, 0x02,
|
||||
0x0e, 0x48, 0x88, 0xd3, 0xb2, 0x68, 0x11, 0xd2, 0x8a, 0x0b, 0x17, 0xae, 0x23, 0x38, 0x8c, 0x10,
|
||||
0xb3, 0x9c, 0x99, 0xd5, 0xed, 0x5e, 0x0e, 0x3b, 0x02, 0x09, 0x69, 0x11, 0x62, 0x11, 0x12, 0x42,
|
||||
0x1c, 0x90, 0x10, 0xa7, 0x65, 0xd1, 0x22, 0xa4, 0x85, 0x0b, 0x17, 0xae, 0x23, 0x38, 0x8c, 0x10,
|
||||
0x12, 0x47, 0x24, 0x38, 0x00, 0x77, 0xae, 0x1c, 0x50, 0x7c, 0x32, 0xf2, 0x17, 0x59, 0x95, 0x5d,
|
||||
0x65, 0x8f, 0x11, 0x7b, 0xab, 0x88, 0x7c, 0xf1, 0x5e, 0x7c, 0xde, 0x3f, 0x5e, 0x14, 0x34, 0x0d,
|
||||
0xdd, 0xd3, 0xbb, 0x3d, 0xdb, 0x76, 0x8c, 0xbb, 0x23, 0xc7, 0xf6, 0x6c, 0xb4, 0x34, 0x34, 0x07,
|
||||
0x47, 0x63, 0x97, 0xb5, 0xee, 0x92, 0xcf, 0xed, 0x5a, 0xcf, 0x1e, 0x0e, 0x6d, 0x8b, 0x75, 0xb5,
|
||||
0x1b, 0xa6, 0xe5, 0x61, 0xc7, 0xd2, 0x07, 0xbc, 0x5d, 0x0b, 0x0f, 0x68, 0xd7, 0xdc, 0xde, 0x01,
|
||||
0x1e, 0xea, 0xac, 0xa5, 0x2e, 0x40, 0xf1, 0xf1, 0x70, 0xe4, 0x9d, 0xa8, 0x7f, 0xa2, 0x40, 0x6d,
|
||||
0x7d, 0x30, 0x76, 0x0f, 0x34, 0xfc, 0x7c, 0x8c, 0x5d, 0x0f, 0xbd, 0x0f, 0x85, 0x3d, 0xdd, 0xc5,
|
||||
0x2d, 0xe5, 0x9a, 0x72, 0xab, 0x7a, 0xff, 0xd2, 0xdd, 0x08, 0x55, 0x4e, 0x6f, 0xd3, 0xed, 0xaf,
|
||||
0xe8, 0x2e, 0xd6, 0x28, 0x24, 0x42, 0x50, 0x30, 0xf6, 0x3a, 0x6b, 0xad, 0xdc, 0x35, 0xe5, 0x56,
|
||||
0x5e, 0xa3, 0xbf, 0xd1, 0x15, 0x00, 0x17, 0xf7, 0x87, 0xd8, 0xf2, 0x3a, 0x6b, 0x6e, 0x2b, 0x7f,
|
||||
0x2d, 0x7f, 0x2b, 0xaf, 0x85, 0x7a, 0x90, 0x0a, 0xb5, 0x9e, 0x3d, 0x18, 0xe0, 0x9e, 0x67, 0xda,
|
||||
0x56, 0x67, 0xad, 0x55, 0xa0, 0x63, 0x23, 0x7d, 0xea, 0x7f, 0x28, 0x50, 0xe7, 0x53, 0x73, 0x47,
|
||||
0xb6, 0xe5, 0x62, 0xf4, 0x21, 0x94, 0x5c, 0x4f, 0xf7, 0xc6, 0x2e, 0x9f, 0xdd, 0x45, 0xe9, 0xec,
|
||||
0x76, 0x28, 0x88, 0xc6, 0x41, 0xa5, 0xd3, 0x8b, 0x93, 0xcf, 0x27, 0xc9, 0xc7, 0x96, 0x50, 0x48,
|
||||
0x2c, 0xe1, 0x16, 0x2c, 0xee, 0x93, 0xd9, 0xed, 0x04, 0x40, 0x45, 0x0a, 0x14, 0xef, 0x26, 0x98,
|
||||
0x3c, 0x73, 0x88, 0xbf, 0xb3, 0xbf, 0x83, 0xf5, 0x41, 0xab, 0x44, 0x69, 0x85, 0x7a, 0xd4, 0x7f,
|
||||
0x52, 0xa0, 0x29, 0xc0, 0xfd, 0x73, 0x38, 0x07, 0xc5, 0x9e, 0x3d, 0xb6, 0x3c, 0xba, 0xd4, 0xba,
|
||||
0xc6, 0x1a, 0xe8, 0x4d, 0xa8, 0xf5, 0x0e, 0x74, 0xcb, 0xc2, 0x83, 0xae, 0xa5, 0x0f, 0x31, 0x5d,
|
||||
0x54, 0x45, 0xab, 0xf2, 0xbe, 0x2d, 0x7d, 0x88, 0x33, 0xad, 0xed, 0x1a, 0x54, 0x47, 0xba, 0xe3,
|
||||
0x99, 0x91, 0xdd, 0x0f, 0x77, 0xa1, 0x36, 0x94, 0x4d, 0xb7, 0x33, 0x1c, 0xd9, 0x8e, 0xd7, 0x2a,
|
||||
0x5e, 0x53, 0x6e, 0x95, 0x35, 0xd1, 0x26, 0x14, 0x4c, 0xfa, 0x6b, 0x57, 0x77, 0x0f, 0x3b, 0x6b,
|
||||
0x7c, 0x45, 0x91, 0x3e, 0xf5, 0xcf, 0x15, 0x58, 0x7e, 0xe4, 0xba, 0x66, 0xdf, 0x4a, 0xac, 0x6c,
|
||||
0x19, 0x4a, 0x96, 0x6d, 0xe0, 0xce, 0x1a, 0x5d, 0x5a, 0x5e, 0xe3, 0x2d, 0x74, 0x11, 0x2a, 0x23,
|
||||
0x8c, 0x9d, 0xae, 0x63, 0x0f, 0xfc, 0x85, 0x95, 0x49, 0x87, 0x66, 0x0f, 0x30, 0xfa, 0x2e, 0x2c,
|
||||
0xb9, 0x31, 0x44, 0x8c, 0xaf, 0xaa, 0xf7, 0xaf, 0xdf, 0x4d, 0x48, 0xc6, 0xdd, 0x38, 0x51, 0x2d,
|
||||
0x39, 0x5a, 0xfd, 0x22, 0x07, 0x67, 0x05, 0x1c, 0x9b, 0x2b, 0xf9, 0x4d, 0x76, 0xde, 0xc5, 0x7d,
|
||||
0x31, 0x3d, 0xd6, 0xc8, 0xb2, 0xf3, 0xe2, 0xc8, 0xf2, 0xe1, 0x23, 0xcb, 0xc0, 0xea, 0xf1, 0xf3,
|
||||
0x28, 0x26, 0xcf, 0xe3, 0x2a, 0x54, 0xf1, 0x8b, 0x91, 0xe9, 0xe0, 0x2e, 0x61, 0x1c, 0xba, 0xe5,
|
||||
0x05, 0x0d, 0x58, 0xd7, 0xae, 0x39, 0x0c, 0xcb, 0xc6, 0x42, 0x66, 0xd9, 0x50, 0xff, 0x42, 0x81,
|
||||
0xf3, 0x89, 0x53, 0xe2, 0xc2, 0xa6, 0x41, 0x93, 0xae, 0x3c, 0xd8, 0x19, 0x22, 0x76, 0x64, 0xc3,
|
||||
0xdf, 0x9a, 0xb4, 0xe1, 0x01, 0xb8, 0x96, 0x18, 0x1f, 0x9a, 0x64, 0x2e, 0xfb, 0x24, 0x0f, 0xe1,
|
||||
0xfc, 0x13, 0xec, 0x71, 0x02, 0xe4, 0x1b, 0x76, 0x67, 0x57, 0x56, 0x51, 0xa9, 0xce, 0xc5, 0xa5,
|
||||
0x5a, 0xfd, 0x9b, 0x9c, 0x90, 0x45, 0x4a, 0xaa, 0x63, 0xed, 0xdb, 0xe8, 0x12, 0x54, 0x04, 0x08,
|
||||
0xe7, 0x8a, 0xa0, 0x03, 0x7d, 0x03, 0x8a, 0x64, 0xa6, 0x8c, 0x25, 0x1a, 0xf7, 0xdf, 0x94, 0xaf,
|
||||
0x29, 0x84, 0x53, 0x63, 0xf0, 0xa8, 0x03, 0x0d, 0xd7, 0xd3, 0x1d, 0xaf, 0x3b, 0xb2, 0x5d, 0x7a,
|
||||
0xce, 0x94, 0x71, 0xaa, 0xf7, 0xd5, 0x28, 0x06, 0xa1, 0xd6, 0x37, 0xdd, 0xfe, 0x36, 0x87, 0xd4,
|
||||
0xea, 0x74, 0xa4, 0xdf, 0x44, 0x8f, 0xa1, 0x86, 0x2d, 0x23, 0x40, 0x54, 0xc8, 0x8c, 0xa8, 0x8a,
|
||||
0x2d, 0x43, 0xa0, 0x09, 0xce, 0xa7, 0x98, 0xfd, 0x7c, 0x7e, 0x4f, 0x81, 0x56, 0xf2, 0x80, 0xe6,
|
||||
0x51, 0xd9, 0x0f, 0xd9, 0x20, 0xcc, 0x0e, 0x68, 0xa2, 0x84, 0x8b, 0x43, 0xd2, 0xf8, 0x10, 0xf5,
|
||||
0x8f, 0x14, 0x78, 0x23, 0x98, 0x0e, 0xfd, 0xf4, 0xaa, 0xb8, 0x05, 0xdd, 0x86, 0xa6, 0x69, 0xf5,
|
||||
0x06, 0x63, 0x03, 0x3f, 0xb5, 0x3e, 0xc5, 0xfa, 0xc0, 0x3b, 0x38, 0xa1, 0x67, 0x58, 0xd6, 0x12,
|
||||
0xfd, 0xea, 0xbf, 0xe6, 0x60, 0x39, 0x3e, 0xaf, 0x79, 0x36, 0xe9, 0x97, 0xa0, 0x68, 0x5a, 0xfb,
|
||||
0xb6, 0xbf, 0x47, 0x57, 0x26, 0x08, 0x25, 0xa1, 0xc5, 0x80, 0x91, 0x0d, 0xc8, 0x57, 0x63, 0xbd,
|
||||
0x03, 0xdc, 0x3b, 0x1c, 0xd9, 0x26, 0x55, 0x58, 0x04, 0xc5, 0xaf, 0x48, 0x50, 0xc8, 0x67, 0x7c,
|
||||
0x77, 0x95, 0xe1, 0x58, 0x15, 0x28, 0x1e, 0x5b, 0x9e, 0x73, 0xa2, 0x2d, 0xf5, 0xe2, 0xfd, 0xed,
|
||||
0x03, 0x58, 0x96, 0x03, 0xa3, 0x26, 0xe4, 0x0f, 0xf1, 0x09, 0x5d, 0x72, 0x45, 0x23, 0x3f, 0xd1,
|
||||
0x03, 0x28, 0x1e, 0xe9, 0x83, 0x31, 0xe6, 0xda, 0x21, 0x0b, 0xfb, 0xb2, 0x01, 0xdf, 0xcc, 0x3d,
|
||||
0x50, 0xd4, 0x21, 0x5c, 0x7c, 0x82, 0xbd, 0x8e, 0xe5, 0x62, 0xc7, 0x5b, 0x31, 0xad, 0x81, 0xdd,
|
||||
0xdf, 0xd6, 0xbd, 0x83, 0x39, 0x74, 0x45, 0x44, 0xec, 0x73, 0x31, 0xb1, 0x57, 0x7f, 0xa2, 0xc0,
|
||||
0x25, 0x39, 0x3d, 0x7e, 0xaa, 0x6d, 0x28, 0xef, 0x9b, 0x78, 0x60, 0x10, 0xd6, 0x51, 0x28, 0xeb,
|
||||
0x88, 0x36, 0xd1, 0x19, 0x23, 0x02, 0xcc, 0x0f, 0xef, 0xcd, 0x94, 0x95, 0xee, 0x78, 0x8e, 0x69,
|
||||
0xf5, 0x37, 0x4c, 0xd7, 0xd3, 0x18, 0x7c, 0x88, 0x55, 0xf2, 0xd9, 0x25, 0xf4, 0x77, 0x15, 0xb8,
|
||||
0xf2, 0x04, 0x7b, 0xab, 0xc2, 0xe4, 0x90, 0xef, 0xa6, 0xeb, 0x99, 0x3d, 0xf7, 0xe5, 0xba, 0x7d,
|
||||
0x19, 0x7c, 0x0f, 0xf5, 0xc7, 0x0a, 0x5c, 0x4d, 0x9d, 0x0c, 0xdf, 0x3a, 0xae, 0x52, 0x7d, 0x83,
|
||||
0x23, 0x57, 0xa9, 0xbf, 0x86, 0x4f, 0x3e, 0x23, 0x87, 0xbf, 0xad, 0x9b, 0x0e, 0x53, 0xa9, 0x33,
|
||||
0x1a, 0x98, 0x9f, 0x29, 0x70, 0xf9, 0x09, 0xf6, 0xb6, 0x7d, 0x73, 0xfb, 0x1a, 0x77, 0x87, 0xc0,
|
||||
0x84, 0xcc, 0xbe, 0xef, 0x77, 0x46, 0xfa, 0xd4, 0xdf, 0x67, 0xc7, 0x29, 0x9d, 0xef, 0x6b, 0xd9,
|
||||
0xc0, 0x2b, 0x54, 0x12, 0x42, 0x7a, 0x82, 0x4b, 0x3c, 0xdf, 0x3e, 0xf5, 0xcf, 0x14, 0xb8, 0xf0,
|
||||
0xa8, 0xf7, 0x7c, 0x6c, 0x3a, 0x98, 0x03, 0x6d, 0xd8, 0xbd, 0xc3, 0xd9, 0x37, 0x37, 0xf0, 0x20,
|
||||
0x73, 0x11, 0x0f, 0x72, 0x5a, 0xd4, 0xb1, 0x0c, 0x25, 0x8f, 0xb9, 0xac, 0xcc, 0x09, 0xe3, 0x2d,
|
||||
0x3a, 0x3f, 0x0d, 0x0f, 0xb0, 0xee, 0xfe, 0xdf, 0x9c, 0xdf, 0x8f, 0x0b, 0x50, 0xfb, 0x8c, 0xab,
|
||||
0x56, 0xea, 0x90, 0xc4, 0x39, 0x49, 0x91, 0xfb, 0x94, 0x21, 0xe7, 0x54, 0xe6, 0xaf, 0x3e, 0x81,
|
||||
0xba, 0x8b, 0xf1, 0xe1, 0x2c, 0xee, 0x47, 0x8d, 0x0c, 0x14, 0x6e, 0xc3, 0x06, 0x2c, 0x8d, 0x2d,
|
||||
0x1a, 0xf5, 0x60, 0x83, 0x6f, 0x20, 0xe3, 0xdc, 0xe9, 0x66, 0x29, 0x39, 0x10, 0x7d, 0xca, 0x03,
|
||||
0xab, 0x10, 0xae, 0x62, 0x26, 0x5c, 0xf1, 0x61, 0xa8, 0x03, 0x4d, 0xc3, 0xb1, 0x47, 0x23, 0x6c,
|
||||
0x74, 0x5d, 0x1f, 0x55, 0x29, 0x1b, 0x2a, 0x3e, 0x4e, 0xa0, 0x7a, 0x1f, 0xce, 0xc6, 0x67, 0xda,
|
||||
0x31, 0x88, 0xaf, 0x4d, 0xce, 0x50, 0xf6, 0x09, 0xdd, 0x81, 0xa5, 0x24, 0x7c, 0x99, 0xc2, 0x27,
|
||||
0x3f, 0xa0, 0xf7, 0x00, 0xc5, 0xa6, 0x4a, 0xc0, 0x2b, 0x0c, 0x3c, 0x3a, 0x99, 0x8e, 0xe1, 0xaa,
|
||||
0x3f, 0x52, 0x60, 0xf9, 0x99, 0xee, 0xf5, 0x0e, 0xd6, 0x86, 0x5c, 0xd6, 0xe6, 0xd0, 0x55, 0x1f,
|
||||
0x43, 0xe5, 0x88, 0xf3, 0x85, 0x6f, 0x90, 0xae, 0x4a, 0xf6, 0x27, 0xcc, 0x81, 0x5a, 0x30, 0x82,
|
||||
0x84, 0x7a, 0xe7, 0xd6, 0x43, 0x21, 0xef, 0x6b, 0xd0, 0x9a, 0x53, 0x62, 0x75, 0xf5, 0x05, 0x00,
|
||||
0x9f, 0xdc, 0xa6, 0xdb, 0x9f, 0x61, 0x5e, 0x0f, 0x60, 0x81, 0x63, 0xe3, 0x6a, 0x71, 0x1a, 0xff,
|
||||
0xf8, 0xe0, 0xea, 0x4f, 0x4b, 0x50, 0x0d, 0x7d, 0x40, 0x0d, 0xc8, 0x09, 0x79, 0xcd, 0x49, 0x56,
|
||||
0x97, 0x9b, 0x1e, 0x1d, 0xe6, 0x93, 0xd1, 0xe1, 0x4d, 0x68, 0x98, 0xd4, 0x0f, 0xe9, 0xf2, 0x53,
|
||||
0xa1, 0x0a, 0xa4, 0xa2, 0xd5, 0x59, 0x2f, 0x67, 0x11, 0x74, 0x05, 0xaa, 0xd6, 0x78, 0xd8, 0xb5,
|
||||
0xf7, 0xbb, 0x8e, 0x7d, 0xec, 0xf2, 0x30, 0xb3, 0x62, 0x8d, 0x87, 0xdf, 0xd9, 0xd7, 0xec, 0x63,
|
||||
0x37, 0x88, 0x64, 0x4a, 0xa7, 0x8c, 0x64, 0xae, 0x40, 0x75, 0xa8, 0xbf, 0x20, 0x58, 0xbb, 0xd6,
|
||||
0x78, 0x48, 0x23, 0xd0, 0xbc, 0x56, 0x19, 0xea, 0x2f, 0x34, 0xfb, 0x78, 0x6b, 0x3c, 0x44, 0xb7,
|
||||
0xa0, 0x39, 0xd0, 0x5d, 0xaf, 0x1b, 0x0e, 0x61, 0xcb, 0x34, 0x84, 0x6d, 0x90, 0xfe, 0xc7, 0x41,
|
||||
0x18, 0x9b, 0x8c, 0x89, 0x2a, 0x73, 0xc4, 0x44, 0xc6, 0x70, 0x10, 0x20, 0x82, 0xec, 0x31, 0x91,
|
||||
0x31, 0x1c, 0x08, 0x34, 0x0f, 0x60, 0x61, 0x8f, 0x7a, 0x77, 0x6e, 0xab, 0x9a, 0xaa, 0x3b, 0xd6,
|
||||
0x89, 0x63, 0xc7, 0x9c, 0x40, 0xcd, 0x07, 0x47, 0xdf, 0x82, 0x0a, 0x35, 0xaa, 0x74, 0x6c, 0x2d,
|
||||
0xd3, 0xd8, 0x60, 0x00, 0x19, 0x6d, 0xe0, 0x81, 0xa7, 0xd3, 0xd1, 0xf5, 0x6c, 0xa3, 0xc5, 0x00,
|
||||
0xa2, 0xaf, 0x7a, 0x0e, 0xd6, 0x3d, 0x6c, 0xac, 0x9c, 0xac, 0xda, 0xc3, 0x91, 0x4e, 0x99, 0xa9,
|
||||
0xd5, 0xa0, 0xc1, 0x89, 0xec, 0x13, 0x7a, 0x0b, 0x1a, 0x3d, 0xd1, 0x5a, 0x77, 0xec, 0x61, 0x6b,
|
||||
0x91, 0xca, 0x51, 0xac, 0x17, 0x5d, 0x06, 0xf0, 0x35, 0x95, 0xee, 0xb5, 0x9a, 0xf4, 0x14, 0x2b,
|
||||
0xbc, 0xe7, 0x11, 0xcd, 0x50, 0x99, 0x6e, 0x97, 0xe5, 0x82, 0x4c, 0xab, 0xdf, 0x5a, 0xa2, 0x14,
|
||||
0xab, 0x7e, 0xf2, 0xc8, 0xb4, 0xfa, 0xe8, 0x3c, 0x2c, 0x98, 0x6e, 0x77, 0x5f, 0x3f, 0xc4, 0x2d,
|
||||
0x44, 0xbf, 0x96, 0x4c, 0x77, 0x5d, 0x3f, 0xc4, 0xea, 0x0f, 0xe1, 0x5c, 0xc0, 0x5d, 0xa1, 0x93,
|
||||
0x4c, 0x32, 0x85, 0x32, 0x2b, 0x53, 0x4c, 0xf6, 0xe9, 0xbf, 0x2a, 0xc0, 0xf2, 0x8e, 0x7e, 0x84,
|
||||
0x5f, 0x7d, 0xf8, 0x90, 0x49, 0xad, 0x6d, 0xc0, 0x12, 0x8d, 0x18, 0xee, 0x87, 0xe6, 0x33, 0xc1,
|
||||
0xae, 0x86, 0x59, 0x21, 0x39, 0x10, 0x7d, 0x9b, 0x38, 0x04, 0xb8, 0x77, 0xb8, 0x4d, 0x42, 0x30,
|
||||
0xdf, 0xa6, 0x5e, 0x96, 0xe0, 0x59, 0x15, 0x50, 0x5a, 0x78, 0x04, 0xda, 0x86, 0xc5, 0xe8, 0x31,
|
||||
0xf8, 0xd6, 0xf4, 0xed, 0x89, 0xf1, 0x79, 0xb0, 0xfb, 0x5a, 0x23, 0x72, 0x18, 0x2e, 0x6a, 0xc1,
|
||||
0x02, 0x37, 0x85, 0x54, 0x67, 0x94, 0x35, 0xbf, 0x89, 0xb6, 0xe1, 0x2c, 0x5b, 0xc1, 0x0e, 0x17,
|
||||
0x08, 0xb6, 0xf8, 0x72, 0xa6, 0xc5, 0xcb, 0x86, 0x46, 0xe5, 0xa9, 0x72, 0x5a, 0x79, 0x6a, 0xc1,
|
||||
0x02, 0xe7, 0x71, 0xaa, 0x47, 0xca, 0x9a, 0xdf, 0x24, 0xc7, 0x1c, 0x70, 0x7b, 0x95, 0x7e, 0x0b,
|
||||
0x3a, 0x48, 0xe8, 0x05, 0xc1, 0x7e, 0x4e, 0xc9, 0x24, 0x7d, 0x02, 0x65, 0xc1, 0xe1, 0xd9, 0x43,
|
||||
0x60, 0x31, 0x26, 0xae, 0xdf, 0xf3, 0x31, 0xfd, 0xae, 0xfe, 0xa3, 0x02, 0xb5, 0x35, 0xb2, 0xa4,
|
||||
0x0d, 0xbb, 0x4f, 0xad, 0xd1, 0x4d, 0x68, 0x38, 0xb8, 0x67, 0x3b, 0x46, 0x17, 0x5b, 0x9e, 0x63,
|
||||
0x62, 0x96, 0x80, 0x28, 0x68, 0x75, 0xd6, 0xfb, 0x98, 0x75, 0x12, 0x30, 0xa2, 0xb2, 0x5d, 0x4f,
|
||||
0x1f, 0x8e, 0xba, 0xfb, 0x44, 0x35, 0xe4, 0x18, 0x98, 0xe8, 0xa5, 0x9a, 0xe1, 0x4d, 0xa8, 0x05,
|
||||
0x60, 0x9e, 0x4d, 0xe9, 0x17, 0xb4, 0xaa, 0xe8, 0xdb, 0xb5, 0xd1, 0x0d, 0x68, 0xd0, 0x3d, 0xed,
|
||||
0x0e, 0xec, 0x7e, 0x97, 0x44, 0xb4, 0xdc, 0x50, 0xd5, 0x0c, 0x3e, 0x2d, 0x72, 0x56, 0x51, 0x28,
|
||||
0xd7, 0xfc, 0x01, 0xe6, 0xa6, 0x4a, 0x40, 0xed, 0x98, 0x3f, 0xc0, 0xea, 0x3f, 0x28, 0x50, 0x5f,
|
||||
0xd3, 0x3d, 0x7d, 0xcb, 0x36, 0xf0, 0xee, 0x8c, 0x86, 0x3d, 0x43, 0x56, 0xf7, 0x12, 0x54, 0xc4,
|
||||
0x0a, 0xf8, 0x92, 0x82, 0x0e, 0xb4, 0x0e, 0x0d, 0xdf, 0xb5, 0xec, 0xb2, 0x88, 0xab, 0x90, 0xea,
|
||||
0x40, 0x85, 0x2c, 0xa7, 0xab, 0xd5, 0xfd, 0x61, 0xb4, 0xa9, 0xae, 0x43, 0x2d, 0xfc, 0x99, 0x50,
|
||||
0xdd, 0x89, 0x33, 0x8a, 0xe8, 0x20, 0xdc, 0xb8, 0x35, 0x1e, 0x92, 0x33, 0xe5, 0x8a, 0xc5, 0x6f,
|
||||
0xaa, 0xbf, 0xad, 0x40, 0x9d, 0x9b, 0xfb, 0x1d, 0x71, 0xff, 0x41, 0x97, 0xc6, 0xf2, 0x2c, 0xf4,
|
||||
0x37, 0xfa, 0x66, 0x34, 0x65, 0x79, 0x43, 0xaa, 0x04, 0x28, 0x12, 0xea, 0x64, 0x46, 0x6c, 0x7d,
|
||||
0x96, 0x18, 0xff, 0x0b, 0xc2, 0x68, 0xfc, 0x68, 0x28, 0xa3, 0xb5, 0x60, 0x41, 0x37, 0x0c, 0x07,
|
||||
0xbb, 0x2e, 0x9f, 0x87, 0xdf, 0x24, 0x5f, 0x8e, 0xb0, 0xe3, 0xfa, 0x2c, 0x9f, 0xd7, 0xfc, 0x26,
|
||||
0xfa, 0x16, 0x94, 0x85, 0x57, 0xca, 0x12, 0x54, 0xd7, 0xd2, 0xe7, 0xc9, 0x23, 0x52, 0x31, 0x42,
|
||||
0xfd, 0xdb, 0x1c, 0x34, 0xf8, 0x86, 0xad, 0x70, 0x7b, 0x3c, 0x59, 0xf8, 0x56, 0xa0, 0xb6, 0x1f,
|
||||
0xc8, 0xfe, 0xa4, 0xb4, 0x5a, 0x58, 0x45, 0x44, 0xc6, 0x4c, 0x13, 0xc0, 0xa8, 0x47, 0x50, 0x98,
|
||||
0xcb, 0x23, 0x28, 0x9e, 0x56, 0x83, 0x25, 0x7d, 0xc4, 0x92, 0xc4, 0x47, 0x54, 0x7f, 0x03, 0xaa,
|
||||
0x21, 0x04, 0x54, 0x43, 0xb3, 0xa4, 0x15, 0xdf, 0x31, 0xbf, 0x89, 0x3e, 0x0c, 0xfc, 0x22, 0xb6,
|
||||
0x55, 0x17, 0x24, 0x73, 0x89, 0xb9, 0x44, 0xea, 0xdf, 0x2b, 0x50, 0xe2, 0x98, 0xaf, 0x42, 0x95,
|
||||
0x2b, 0x1d, 0xea, 0x33, 0x32, 0xec, 0xc0, 0xbb, 0x88, 0xd3, 0xf8, 0xf2, 0xb4, 0xce, 0x05, 0x28,
|
||||
0xc7, 0xf4, 0xcd, 0x02, 0x37, 0x0b, 0xfe, 0xa7, 0x90, 0x92, 0x21, 0x9f, 0x88, 0x7e, 0x41, 0xe7,
|
||||
0xa0, 0x38, 0xb0, 0xfb, 0xe2, 0x7e, 0x8b, 0x35, 0xd4, 0x2f, 0x15, 0x7a, 0x1d, 0xa1, 0xe1, 0x9e,
|
||||
0x7d, 0x84, 0x9d, 0x93, 0xf9, 0xf3, 0xb8, 0x0f, 0x43, 0x6c, 0x9e, 0x31, 0xf8, 0x12, 0x03, 0xd0,
|
||||
0xc3, 0xe0, 0x10, 0xf2, 0xb2, 0x4c, 0x4f, 0x58, 0xef, 0x70, 0x26, 0x0d, 0x0e, 0xe3, 0x0f, 0x14,
|
||||
0x9a, 0x91, 0x8e, 0x2e, 0x65, 0x56, 0x6f, 0xe7, 0xa5, 0x04, 0x32, 0xea, 0x57, 0x0a, 0xb4, 0x83,
|
||||
0x54, 0x92, 0xbb, 0x72, 0x32, 0xef, 0x7d, 0xcf, 0xcb, 0x89, 0xaf, 0x7e, 0x59, 0x5c, 0x48, 0x10,
|
||||
0xa1, 0xcd, 0x14, 0x19, 0xf9, 0xd7, 0x11, 0x16, 0xcd, 0x4a, 0x27, 0x17, 0x34, 0x0f, 0xcb, 0xb4,
|
||||
0xa1, 0x2c, 0xf2, 0x19, 0xec, 0x52, 0x42, 0xb4, 0x89, 0x84, 0x5d, 0x78, 0x82, 0xbd, 0xf5, 0x68,
|
||||
0x2a, 0xe4, 0x75, 0x6f, 0x60, 0xf8, 0xa2, 0xe4, 0x80, 0x5f, 0x94, 0x14, 0x62, 0x17, 0x25, 0xbc,
|
||||
0x5f, 0x1d, 0x52, 0x16, 0x48, 0x2c, 0xe0, 0x55, 0x6d, 0xd8, 0xef, 0x28, 0xd0, 0xe2, 0x54, 0x28,
|
||||
0x4d, 0x12, 0x12, 0x0d, 0xb0, 0x87, 0x8d, 0xaf, 0x3b, 0x55, 0xf0, 0x3f, 0x0a, 0x34, 0xc3, 0x56,
|
||||
0x97, 0x1a, 0xce, 0x8f, 0xa0, 0x48, 0x33, 0x2d, 0x7c, 0x06, 0x53, 0x55, 0x03, 0x83, 0x26, 0x6a,
|
||||
0x9b, 0xba, 0xda, 0xbb, 0xc2, 0x41, 0xe0, 0xcd, 0xc0, 0xf4, 0xe7, 0x4f, 0x6f, 0xfa, 0xb9, 0x2b,
|
||||
0x64, 0x8f, 0x09, 0x5e, 0x96, 0xa2, 0x0c, 0x3a, 0xd0, 0xc7, 0x50, 0x62, 0x35, 0x26, 0xfc, 0xf2,
|
||||
0xf0, 0x66, 0x14, 0x35, 0xaf, 0x3f, 0x09, 0xe5, 0xfd, 0x69, 0x87, 0xc6, 0x07, 0xa9, 0xbf, 0x0a,
|
||||
0xcb, 0x41, 0x34, 0xca, 0xc8, 0xce, 0xca, 0xb4, 0xea, 0xbf, 0x28, 0x70, 0x76, 0xe7, 0xc4, 0xea,
|
||||
0xc5, 0xd9, 0x7f, 0x19, 0x4a, 0xa3, 0x81, 0x1e, 0x64, 0x4c, 0x79, 0x8b, 0xba, 0x81, 0x8c, 0x36,
|
||||
0x36, 0x88, 0x0d, 0x61, 0x7b, 0x56, 0x15, 0x7d, 0xbb, 0xf6, 0x54, 0xd3, 0x7e, 0x53, 0x84, 0xcf,
|
||||
0xd8, 0x60, 0xd6, 0x8a, 0xa5, 0xa1, 0xea, 0xa2, 0x97, 0x5a, 0xab, 0x8f, 0x01, 0xa8, 0x41, 0xef,
|
||||
0x9e, 0xc6, 0x88, 0xd3, 0x11, 0x1b, 0x44, 0x65, 0xff, 0x3c, 0x07, 0xad, 0xd0, 0x2e, 0x7d, 0xdd,
|
||||
0xfe, 0x4d, 0x4a, 0x54, 0x96, 0x7f, 0x49, 0x51, 0x59, 0x61, 0x7e, 0x9f, 0xa6, 0x28, 0xf3, 0x69,
|
||||
0xfe, 0x3d, 0x07, 0x8d, 0x60, 0xd7, 0xb6, 0x07, 0xba, 0x95, 0xca, 0x09, 0x3b, 0xc2, 0x9f, 0x8f,
|
||||
0xee, 0xd3, 0xbb, 0x32, 0x39, 0x49, 0x39, 0x08, 0x2d, 0x86, 0x02, 0x5d, 0xa6, 0x87, 0xee, 0x78,
|
||||
0x2c, 0xf1, 0xc5, 0x63, 0x08, 0x26, 0x90, 0xe6, 0x10, 0xa3, 0x3b, 0x80, 0xb8, 0x14, 0x75, 0x4d,
|
||||
0xab, 0xeb, 0xe2, 0x9e, 0x6d, 0x19, 0x4c, 0xbe, 0x8a, 0x5a, 0x93, 0x7f, 0xe9, 0x58, 0x3b, 0xac,
|
||||
0x1f, 0x7d, 0x04, 0x05, 0xef, 0x64, 0xc4, 0xbc, 0x95, 0x86, 0xd4, 0xde, 0x07, 0xf3, 0xda, 0x3d,
|
||||
0x19, 0x61, 0x8d, 0x82, 0xfb, 0x45, 0x48, 0x9e, 0xa3, 0x1f, 0x71, 0xd7, 0xaf, 0xa0, 0x85, 0x7a,
|
||||
0x88, 0xc6, 0xf0, 0xf7, 0x70, 0x81, 0xb9, 0x48, 0xbc, 0xc9, 0x38, 0xdb, 0x17, 0xda, 0xae, 0xe7,
|
||||
0x0d, 0x68, 0xea, 0x8e, 0x72, 0xb6, 0xdf, 0xbb, 0xeb, 0x0d, 0xd4, 0x7f, 0xce, 0x41, 0x33, 0xa0,
|
||||
0xac, 0x61, 0x77, 0x3c, 0x48, 0x17, 0xb8, 0xc9, 0xb9, 0x91, 0x69, 0xb2, 0xf6, 0x6d, 0xa8, 0xf2,
|
||||
0x63, 0x3f, 0x05, 0xdb, 0x00, 0x1b, 0xb2, 0x31, 0x81, 0x8f, 0x8b, 0x2f, 0x89, 0x8f, 0x4b, 0x33,
|
||||
0x64, 0x17, 0xe4, 0x9b, 0xaf, 0xfe, 0x44, 0x81, 0x37, 0x12, 0x6a, 0x71, 0xe2, 0xd6, 0x4e, 0x8e,
|
||||
0xed, 0xb8, 0xba, 0x8c, 0xa3, 0xe4, 0x0a, 0xfe, 0x21, 0x94, 0x1c, 0x8a, 0x9d, 0x5f, 0x05, 0x5d,
|
||||
0x9f, 0xc8, 0x5d, 0x6c, 0x22, 0x1a, 0x1f, 0xa2, 0xfe, 0xa1, 0x02, 0xe7, 0x93, 0x53, 0x9d, 0xc3,
|
||||
0x6a, 0xaf, 0xc0, 0x02, 0x43, 0xed, 0x0b, 0xe1, 0xad, 0xc9, 0x42, 0x18, 0x6c, 0x8e, 0xe6, 0x0f,
|
||||
0x54, 0x77, 0x60, 0xd9, 0x37, 0xee, 0xc1, 0xd6, 0x6f, 0x62, 0x4f, 0x9f, 0x10, 0xd9, 0x5c, 0x85,
|
||||
0x2a, 0x73, 0x91, 0x59, 0xc4, 0xc0, 0x72, 0x02, 0xb0, 0x27, 0x52, 0x69, 0xea, 0x7f, 0x29, 0x70,
|
||||
0x8e, 0x5a, 0xc7, 0xf8, 0xdd, 0x4b, 0x96, 0x7b, 0x39, 0x55, 0xa4, 0x1c, 0xb6, 0xf4, 0x21, 0x2f,
|
||||
0x71, 0xa9, 0x68, 0x91, 0x3e, 0xd4, 0x49, 0x66, 0xda, 0xa4, 0x11, 0x70, 0x70, 0x91, 0x4b, 0xa2,
|
||||
0x6d, 0x7a, 0x8f, 0x1b, 0x4f, 0xb1, 0x05, 0x56, 0xb9, 0x30, 0x8b, 0x55, 0xde, 0x80, 0x37, 0x62,
|
||||
0x2b, 0x9d, 0xe3, 0x44, 0xd5, 0xbf, 0x54, 0xc8, 0x71, 0x44, 0x4a, 0x85, 0x66, 0xf7, 0x4c, 0x2f,
|
||||
0x8b, 0x4b, 0x9f, 0xae, 0x69, 0xc4, 0x95, 0x88, 0x81, 0x3e, 0x81, 0x8a, 0x85, 0x8f, 0xbb, 0x61,
|
||||
0x67, 0x27, 0x83, 0xdb, 0x5e, 0xb6, 0xf0, 0x31, 0xfd, 0xa5, 0x6e, 0xc1, 0xf9, 0xc4, 0x54, 0xe7,
|
||||
0x59, 0xfb, 0xdf, 0x29, 0x70, 0x61, 0xcd, 0xb1, 0x47, 0x9f, 0x99, 0x8e, 0x37, 0xd6, 0x07, 0xd1,
|
||||
0x2b, 0xf2, 0x57, 0x93, 0xba, 0xfa, 0x34, 0xe4, 0xf6, 0x32, 0xfe, 0xb9, 0x23, 0x91, 0xa0, 0xe4,
|
||||
0xa4, 0xf8, 0xa2, 0x43, 0x4e, 0xf2, 0x7f, 0xe6, 0x65, 0x93, 0xe7, 0x70, 0x53, 0x1c, 0x8f, 0x2c,
|
||||
0x11, 0x84, 0x34, 0xd3, 0x9d, 0x9f, 0x35, 0xd3, 0x9d, 0xa2, 0xde, 0x0b, 0x2f, 0x49, 0xbd, 0x9f,
|
||||
0x3a, 0xf5, 0xf2, 0x29, 0x44, 0x6f, 0x21, 0xa8, 0xf9, 0x9d, 0xe9, 0xfa, 0x62, 0x05, 0x20, 0xc8,
|
||||
0xc8, 0xf3, 0x4a, 0xcf, 0x2c, 0x68, 0x42, 0xa3, 0xc8, 0x69, 0x09, 0x53, 0xca, 0x4d, 0x79, 0x28,
|
||||
0x47, 0xfc, 0x5d, 0x68, 0xcb, 0xb8, 0x74, 0x1e, 0xce, 0xff, 0x79, 0x0e, 0xa0, 0x23, 0x8a, 0x83,
|
||||
0x67, 0xb3, 0x05, 0xd7, 0x21, 0xe4, 0x6e, 0x04, 0xf2, 0x1e, 0xe6, 0x22, 0x83, 0x88, 0x84, 0x08,
|
||||
0x3a, 0x09, 0x4c, 0x22, 0x10, 0x35, 0x28, 0x9e, 0x90, 0xd4, 0x30, 0xa6, 0x88, 0xab, 0xdf, 0x8b,
|
||||
0x50, 0x71, 0xec, 0xe3, 0x2e, 0x11, 0x33, 0xc3, 0xaf, 0x7e, 0x76, 0xec, 0x63, 0x22, 0x7c, 0x06,
|
||||
0x3a, 0x0f, 0x0b, 0x9e, 0xee, 0x1e, 0x12, 0xfc, 0xa5, 0x50, 0x95, 0x86, 0x81, 0xce, 0x41, 0x71,
|
||||
0xdf, 0x1c, 0x60, 0x56, 0x14, 0x50, 0xd1, 0x58, 0x03, 0x7d, 0xc3, 0x2f, 0xd3, 0x2b, 0x67, 0xae,
|
||||
0xc4, 0xa1, 0xf0, 0xea, 0x97, 0x0a, 0x2c, 0x06, 0xbb, 0x46, 0x15, 0x10, 0xd1, 0x69, 0x54, 0x9f,
|
||||
0xad, 0xda, 0x06, 0x53, 0x15, 0x8d, 0x14, 0x8b, 0xc0, 0x06, 0x32, 0xad, 0x15, 0x0c, 0x99, 0x14,
|
||||
0x07, 0x93, 0x75, 0x91, 0x45, 0x9b, 0x86, 0x5f, 0x99, 0x52, 0x72, 0xec, 0xe3, 0x8e, 0x21, 0x76,
|
||||
0x83, 0x95, 0x36, 0xb3, 0xa8, 0x8f, 0xec, 0xc6, 0x2a, 0xad, 0x6e, 0xbe, 0x0e, 0x75, 0xec, 0x38,
|
||||
0xb6, 0xd3, 0x1d, 0x62, 0xd7, 0xd5, 0xfb, 0x98, 0x3b, 0xe0, 0x35, 0xda, 0xb9, 0xc9, 0xfa, 0xd4,
|
||||
0x3f, 0x2e, 0x40, 0x23, 0x58, 0x8a, 0x7f, 0x0f, 0x6e, 0x1a, 0xfe, 0x3d, 0xb8, 0x49, 0x8e, 0x0e,
|
||||
0x1c, 0xa6, 0x0a, 0xc5, 0xe1, 0xae, 0xe4, 0x5a, 0x8a, 0x56, 0xe1, 0xbd, 0x1d, 0x83, 0x98, 0x65,
|
||||
0x22, 0x64, 0x96, 0x6d, 0xe0, 0xe0, 0x70, 0xc1, 0xef, 0xe2, 0x67, 0x1b, 0xe1, 0x91, 0x42, 0x06,
|
||||
0x1e, 0x29, 0x66, 0xe0, 0x91, 0x92, 0x84, 0x47, 0x96, 0xa1, 0xb4, 0x37, 0xee, 0x1d, 0x62, 0x8f,
|
||||
0x7b, 0x6c, 0xbc, 0x15, 0xe5, 0x9d, 0x72, 0x8c, 0x77, 0x04, 0x8b, 0x54, 0xc2, 0x2c, 0x72, 0x11,
|
||||
0x2a, 0xec, 0x42, 0xb6, 0xeb, 0xb9, 0xf4, 0x76, 0x29, 0xaf, 0x95, 0x59, 0xc7, 0xae, 0x8b, 0x1e,
|
||||
0xf8, 0xee, 0x5c, 0x55, 0x26, 0xec, 0x54, 0xeb, 0xc4, 0xb8, 0xc4, 0x77, 0xe6, 0xde, 0x86, 0xc5,
|
||||
0xd0, 0x76, 0x50, 0x1b, 0x51, 0xa3, 0x53, 0x0d, 0xb9, 0xf3, 0xd4, 0x4c, 0xdc, 0x84, 0x46, 0xb0,
|
||||
0x25, 0x14, 0xae, 0xce, 0xa2, 0x28, 0xd1, 0x4b, 0xc1, 0x04, 0x27, 0x37, 0x4e, 0xc7, 0xc9, 0xe8,
|
||||
0x02, 0x94, 0x79, 0xf8, 0xe3, 0xb6, 0x16, 0x23, 0xd9, 0x08, 0xf5, 0xfb, 0x80, 0x82, 0xd9, 0xcf,
|
||||
0xe7, 0x2d, 0xc6, 0xd8, 0x23, 0x17, 0x67, 0x0f, 0xf5, 0xa7, 0x0a, 0x2c, 0x85, 0x89, 0xcd, 0x6a,
|
||||
0x78, 0x3f, 0x81, 0x2a, 0xbb, 0xdf, 0xeb, 0x12, 0xc1, 0xe7, 0x59, 0x9e, 0xcb, 0x13, 0xcf, 0x45,
|
||||
0x83, 0xe0, 0x71, 0x04, 0x61, 0xaf, 0x63, 0xdb, 0x39, 0x34, 0xad, 0x7e, 0x97, 0xcc, 0xcc, 0x17,
|
||||
0xb7, 0x1a, 0xef, 0xdc, 0x22, 0x7d, 0xea, 0x8f, 0x14, 0xb8, 0xf2, 0x74, 0x64, 0xe8, 0x1e, 0x0e,
|
||||
0x79, 0x20, 0xf3, 0x16, 0x25, 0x7e, 0xe4, 0x57, 0x05, 0xe6, 0xb2, 0xdd, 0x51, 0x31, 0x68, 0xf5,
|
||||
0xaf, 0xc5, 0x5c, 0x12, 0x95, 0xbc, 0xb3, 0xcf, 0xa5, 0x0d, 0xe5, 0x23, 0x8e, 0xce, 0x7f, 0xec,
|
||||
0xe1, 0xb7, 0x23, 0xf7, 0xa0, 0xf9, 0xd3, 0xdf, 0x83, 0xaa, 0x9b, 0x70, 0x41, 0xc3, 0x2e, 0xb6,
|
||||
0x8c, 0xc8, 0x6a, 0x66, 0xce, 0x26, 0x8d, 0xa0, 0x2d, 0x43, 0x37, 0x0f, 0xb3, 0x32, 0xdf, 0xb5,
|
||||
0xeb, 0x10, 0xb4, 0x1e, 0x57, 0xc5, 0xc4, 0x65, 0xa2, 0x74, 0x3c, 0xf5, 0xaf, 0x72, 0x70, 0xfe,
|
||||
0x91, 0x61, 0x70, 0x2d, 0xce, 0xbd, 0xb1, 0x57, 0xe5, 0x28, 0xc7, 0x1d, 0xc9, 0x7c, 0xd2, 0x91,
|
||||
0x7c, 0x59, 0x9a, 0x95, 0xdb, 0x18, 0x6b, 0x3c, 0xf4, 0x6d, 0xa7, 0xc3, 0x0a, 0x84, 0x1e, 0xf2,
|
||||
0x8b, 0x31, 0x12, 0xd0, 0x53, 0xfb, 0x39, 0xdd, 0xbf, 0x2a, 0xfb, 0x59, 0x31, 0x75, 0x04, 0xad,
|
||||
0xe4, 0x66, 0xcd, 0xa9, 0x4a, 0xfc, 0x1d, 0x19, 0xd9, 0x2c, 0x83, 0x5a, 0x23, 0x2e, 0x14, 0xed,
|
||||
0xda, 0xb6, 0x5d, 0xf5, 0xbf, 0x73, 0xd0, 0xda, 0xd1, 0x8f, 0xf0, 0x2f, 0xce, 0x01, 0x7d, 0x0e,
|
||||
0xe7, 0x5c, 0xfd, 0x08, 0x77, 0x43, 0x81, 0x71, 0xd7, 0xc1, 0xcf, 0xb9, 0x0b, 0xfa, 0x8e, 0x4c,
|
||||
0x93, 0x48, 0xeb, 0x68, 0xb4, 0x25, 0x37, 0xd2, 0xaf, 0xe1, 0xe7, 0xe8, 0x2d, 0x58, 0x0c, 0x17,
|
||||
0x6a, 0x91, 0xa9, 0x95, 0xe9, 0x96, 0xd7, 0x43, 0x75, 0x58, 0x1d, 0x43, 0x7d, 0x0e, 0x97, 0x9e,
|
||||
0x5a, 0x2e, 0xf6, 0x3a, 0x41, 0x2d, 0xd1, 0x9c, 0x21, 0xe4, 0x55, 0xa8, 0x06, 0x1b, 0x9f, 0x78,
|
||||
0xe0, 0x61, 0xb8, 0xaa, 0x0d, 0xed, 0x4d, 0xdd, 0x39, 0xf4, 0xf3, 0xc8, 0x6b, 0xac, 0xe6, 0xe3,
|
||||
0x15, 0x12, 0xdc, 0x17, 0x25, 0x50, 0x1a, 0xde, 0xc7, 0x0e, 0xb6, 0x7a, 0x78, 0xc3, 0xee, 0x1d,
|
||||
0x86, 0x4a, 0x83, 0x95, 0x70, 0x69, 0xf0, 0xac, 0xa5, 0xc6, 0xea, 0xcf, 0x72, 0xb0, 0xfc, 0x68,
|
||||
0xe0, 0x61, 0x27, 0x88, 0xfc, 0x4f, 0x93, 0xc4, 0x08, 0xb2, 0x0a, 0xb9, 0x19, 0xb2, 0x0a, 0x89,
|
||||
0x2a, 0xf7, 0x7c, 0xb2, 0xca, 0x5d, 0x96, 0x03, 0x29, 0xcc, 0x98, 0x03, 0x79, 0x04, 0x30, 0x72,
|
||||
0xec, 0x11, 0x76, 0x3c, 0x13, 0xfb, 0xe1, 0x5b, 0x06, 0xf7, 0x25, 0x34, 0x48, 0xfd, 0x1c, 0x9a,
|
||||
0x4f, 0x7a, 0xab, 0xb6, 0xb5, 0x6f, 0x3a, 0x43, 0x7f, 0xa3, 0x12, 0x42, 0xa7, 0x64, 0x10, 0xba,
|
||||
0x5c, 0x42, 0xe8, 0x54, 0x13, 0x96, 0x42, 0xb8, 0xe7, 0x54, 0x5c, 0xfd, 0x5e, 0x77, 0xdf, 0xb4,
|
||||
0x4c, 0x5a, 0x53, 0x95, 0xa3, 0xee, 0x27, 0xf4, 0x7b, 0xeb, 0xbc, 0xe7, 0xf6, 0x27, 0xa2, 0x1a,
|
||||
0x75, 0xf7, 0x64, 0x84, 0xd1, 0x02, 0xe4, 0xb7, 0xf0, 0x71, 0xf3, 0x0c, 0x02, 0x28, 0x6d, 0xd9,
|
||||
0xce, 0x50, 0x1f, 0x34, 0x15, 0x54, 0x85, 0x05, 0x7e, 0xf9, 0xd6, 0xcc, 0xa1, 0x3a, 0x54, 0x56,
|
||||
0xfd, 0x0b, 0x8c, 0x66, 0xfe, 0xf6, 0x9f, 0x2a, 0xb0, 0x94, 0xb8, 0x1e, 0x42, 0x0d, 0x80, 0xa7,
|
||||
0x56, 0x8f, 0xdf, 0x9b, 0x35, 0xcf, 0xa0, 0x1a, 0x94, 0xfd, 0x5b, 0x34, 0x86, 0x6f, 0xd7, 0xa6,
|
||||
0xd0, 0xcd, 0x1c, 0x6a, 0x42, 0x8d, 0x0d, 0x1c, 0xf7, 0x7a, 0xd8, 0x75, 0x9b, 0x79, 0xd1, 0xb3,
|
||||
0xae, 0x9b, 0x83, 0xb1, 0x83, 0x9b, 0x05, 0x42, 0x73, 0xd7, 0xe6, 0xf5, 0xf8, 0xcd, 0x22, 0x42,
|
||||
0xd0, 0xf0, 0x8b, 0xf3, 0xf9, 0xa0, 0x52, 0xa8, 0xcf, 0x1f, 0xb6, 0x70, 0xfb, 0x59, 0x38, 0xc9,
|
||||
0x4f, 0x97, 0x77, 0x1e, 0xce, 0x3e, 0xb5, 0x0c, 0xbc, 0x6f, 0x5a, 0xd8, 0x08, 0x3e, 0x35, 0xcf,
|
||||
0xa0, 0xb3, 0xb0, 0xb8, 0x89, 0x9d, 0x3e, 0x0e, 0x75, 0xe6, 0xd0, 0x12, 0xd4, 0x37, 0xcd, 0x17,
|
||||
0xa1, 0xae, 0xbc, 0x5a, 0x28, 0x2b, 0x4d, 0xe5, 0xfe, 0xbf, 0x5d, 0x86, 0x0a, 0xe1, 0xad, 0x55,
|
||||
0xdb, 0x76, 0x0c, 0x34, 0x00, 0x44, 0x9f, 0xaf, 0x0c, 0x47, 0xb6, 0x25, 0xde, 0xbb, 0xa1, 0xbb,
|
||||
0xd1, 0xe3, 0xe1, 0x8d, 0x24, 0x20, 0xe7, 0x9d, 0xf6, 0x0d, 0x29, 0x7c, 0x0c, 0x58, 0x3d, 0x83,
|
||||
0x86, 0x94, 0xda, 0xae, 0x39, 0xc4, 0xbb, 0x66, 0xef, 0xd0, 0x77, 0x90, 0xde, 0x4f, 0x71, 0x87,
|
||||
0x92, 0xa0, 0x3e, 0xbd, 0xeb, 0x52, 0x7a, 0xec, 0x7d, 0x91, 0xcf, 0x73, 0xea, 0x19, 0xf4, 0x1c,
|
||||
0xce, 0x3d, 0xc1, 0x21, 0x5f, 0xd3, 0x27, 0x78, 0x3f, 0x9d, 0x60, 0x02, 0xf8, 0x94, 0x24, 0x37,
|
||||
0xa0, 0x48, 0xd9, 0x0d, 0xc9, 0xdc, 0xd1, 0xf0, 0xd3, 0xf4, 0xf6, 0xb5, 0x74, 0x00, 0x81, 0xed,
|
||||
0xfb, 0xb0, 0x18, 0x7b, 0xd0, 0x8a, 0x64, 0xc6, 0x49, 0xfe, 0x34, 0xb9, 0x7d, 0x3b, 0x0b, 0xa8,
|
||||
0xa0, 0xd5, 0x87, 0x46, 0xf4, 0xd9, 0x0b, 0xba, 0x95, 0xe1, 0x05, 0x1d, 0xa3, 0xf4, 0x4e, 0xe6,
|
||||
0xb7, 0x76, 0x94, 0x09, 0x9a, 0xf1, 0x07, 0x96, 0xe8, 0xf6, 0x44, 0x04, 0x51, 0x66, 0x7b, 0x37,
|
||||
0x13, 0xac, 0x20, 0x77, 0x42, 0x99, 0x20, 0xf1, 0xb0, 0x2d, 0xce, 0xe3, 0x3e, 0x9a, 0xb4, 0x17,
|
||||
0x77, 0xed, 0x7b, 0x99, 0xe1, 0x05, 0xe9, 0xdf, 0x62, 0xd5, 0x35, 0xb2, 0xc7, 0x61, 0xe8, 0x03,
|
||||
0x39, 0xba, 0x09, 0xaf, 0xda, 0xda, 0xf7, 0x4f, 0x33, 0x44, 0x4c, 0xe2, 0x87, 0xb4, 0x2c, 0x46,
|
||||
0xf2, 0xbc, 0x2a, 0x2e, 0x77, 0x3e, 0xbe, 0xf4, 0x97, 0x63, 0xed, 0x0f, 0x4e, 0x31, 0x42, 0x4c,
|
||||
0xc0, 0x8e, 0xbf, 0x60, 0xf5, 0xc5, 0xf0, 0xde, 0x54, 0xae, 0x99, 0x4d, 0x06, 0xbf, 0x07, 0x8b,
|
||||
0x31, 0x77, 0x0d, 0x65, 0x77, 0xe9, 0xda, 0x93, 0x4c, 0x13, 0x13, 0xc9, 0x58, 0x95, 0x11, 0x4a,
|
||||
0xe1, 0x7e, 0x49, 0x25, 0x52, 0xfb, 0x76, 0x16, 0x50, 0xb1, 0x10, 0x97, 0xaa, 0xcb, 0x58, 0xed,
|
||||
0x08, 0xba, 0x23, 0xc7, 0x21, 0xaf, 0x91, 0x69, 0xbf, 0x97, 0x11, 0x5a, 0x10, 0x3d, 0x82, 0xb3,
|
||||
0x92, 0x12, 0x1f, 0xf4, 0xde, 0xc4, 0xc3, 0x8a, 0xd7, 0x36, 0xb5, 0xef, 0x66, 0x05, 0x17, 0x74,
|
||||
0x7f, 0x13, 0xd0, 0xce, 0x81, 0x7d, 0x4c, 0x3d, 0x87, 0xfe, 0xd8, 0xd1, 0x99, 0xb3, 0x93, 0x66,
|
||||
0x1b, 0x92, 0xa0, 0x29, 0x3c, 0x3a, 0x71, 0x84, 0x20, 0xde, 0x05, 0x78, 0x82, 0xbd, 0x4d, 0xec,
|
||||
0x39, 0x44, 0x30, 0xde, 0x4a, 0x33, 0x7f, 0x1c, 0xc0, 0x27, 0xf5, 0xf6, 0x54, 0xb8, 0x90, 0x29,
|
||||
0x6a, 0x6e, 0xea, 0xd6, 0x58, 0x1f, 0x84, 0xde, 0x28, 0xdc, 0x91, 0x0e, 0x8f, 0x83, 0xa5, 0x1c,
|
||||
0x64, 0x2a, 0xb4, 0x20, 0x79, 0x2c, 0x4c, 0x7b, 0xe8, 0x46, 0x71, 0xb2, 0x69, 0x4f, 0x96, 0xab,
|
||||
0xc4, 0xd5, 0xde, 0x04, 0x78, 0x41, 0xf8, 0x0b, 0x85, 0x56, 0x89, 0xc5, 0x00, 0x9e, 0x99, 0xde,
|
||||
0xc1, 0xf6, 0x40, 0xb7, 0xdc, 0x2c, 0x53, 0xa0, 0x80, 0xa7, 0x98, 0x02, 0x87, 0x17, 0x53, 0x30,
|
||||
0xa0, 0x1e, 0xb9, 0xe8, 0x43, 0xb2, 0xa2, 0x7e, 0xd9, 0xa5, 0x67, 0xfb, 0xd6, 0x74, 0x40, 0x41,
|
||||
0xe5, 0x00, 0xea, 0xbe, 0x28, 0xb1, 0xcd, 0x7d, 0x27, 0x6d, 0xa6, 0x01, 0x4c, 0x8a, 0x26, 0x90,
|
||||
0x83, 0x86, 0x35, 0x41, 0xf2, 0x1e, 0x03, 0x65, 0xbb, 0xff, 0x9a, 0xa4, 0x09, 0xd2, 0x2f, 0x47,
|
||||
0x98, 0xaa, 0x8b, 0xdd, 0x19, 0xca, 0xf5, 0xa8, 0xf4, 0x0a, 0x54, 0xaa, 0xea, 0x52, 0xae, 0x20,
|
||||
0xd5, 0x33, 0xe8, 0x19, 0x94, 0xf8, 0xff, 0xb1, 0xdc, 0x98, 0x9c, 0x7b, 0xe4, 0xd8, 0x6f, 0x4e,
|
||||
0x81, 0x12, 0x88, 0x0f, 0xe1, 0x7c, 0x4a, 0xe6, 0x51, 0x6a, 0x82, 0x27, 0x67, 0x29, 0xa7, 0x19,
|
||||
0x07, 0x41, 0x2c, 0x91, 0x5a, 0x9c, 0x40, 0x2c, 0x2d, 0x0d, 0x39, 0x8d, 0x98, 0x0e, 0x28, 0xf9,
|
||||
0x0c, 0x59, 0xca, 0x13, 0xa9, 0xaf, 0x95, 0x33, 0x90, 0x48, 0xbe, 0x24, 0x96, 0x92, 0x48, 0x7d,
|
||||
0x70, 0x3c, 0x8d, 0x44, 0x17, 0x96, 0x12, 0xb9, 0x27, 0xf4, 0x6e, 0x8a, 0xb9, 0x96, 0x65, 0xa8,
|
||||
0xa6, 0x11, 0xe8, 0xc3, 0x1b, 0xd2, 0x3c, 0x8b, 0xd4, 0xfd, 0x98, 0x94, 0x91, 0x99, 0x46, 0xa8,
|
||||
0x07, 0x67, 0x25, 0xd9, 0x15, 0xa9, 0xe1, 0x4c, 0xcf, 0xc2, 0x4c, 0x23, 0xb2, 0x0f, 0xed, 0x15,
|
||||
0xc7, 0xd6, 0x8d, 0x9e, 0xee, 0x7a, 0x34, 0xe3, 0x41, 0x62, 0x41, 0xdf, 0xff, 0x93, 0x07, 0x07,
|
||||
0xd2, 0xbc, 0xc8, 0x34, 0x3a, 0x7b, 0x50, 0xa5, 0x0c, 0xc9, 0xfe, 0xef, 0x03, 0xc9, 0x2d, 0x5d,
|
||||
0x08, 0x22, 0x45, 0x7d, 0xca, 0x00, 0x85, 0x68, 0xfe, 0x3a, 0x54, 0x44, 0xa6, 0x00, 0xc9, 0x8a,
|
||||
0x73, 0xe2, 0x39, 0x8a, 0xf6, 0x8d, 0xc9, 0x40, 0x3e, 0xe6, 0xfb, 0x5f, 0x56, 0xa0, 0xec, 0xbf,
|
||||
0xd8, 0xf8, 0x9a, 0x43, 0xdc, 0xd7, 0x10, 0x73, 0x7e, 0x0f, 0x16, 0x63, 0xaf, 0xa7, 0xa5, 0x8c,
|
||||
0x20, 0x7f, 0x61, 0x3d, 0x8d, 0x11, 0x9e, 0xf1, 0xbf, 0x2d, 0x13, 0xee, 0xe7, 0xdb, 0x69, 0x71,
|
||||
0x6b, 0xdc, 0xf3, 0x9c, 0x82, 0xf8, 0xff, 0xb7, 0xbf, 0xb7, 0x05, 0x10, 0xf2, 0xf4, 0x26, 0xd7,
|
||||
0x35, 0x12, 0xe7, 0x65, 0xda, 0x6e, 0x0d, 0xa5, 0xce, 0xdc, 0x3b, 0x59, 0x4a, 0xc8, 0xd2, 0xcd,
|
||||
0x71, 0xba, 0x0b, 0xf7, 0x14, 0x6a, 0xe1, 0x8a, 0x63, 0x24, 0xfd, 0x93, 0xac, 0x64, 0x49, 0xf2,
|
||||
0xb4, 0x55, 0x6c, 0x9e, 0xd2, 0xca, 0x4f, 0x41, 0xe7, 0x12, 0xf3, 0x14, 0xbf, 0xca, 0x4a, 0x31,
|
||||
0x4f, 0x29, 0x17, 0x68, 0x52, 0xaf, 0x28, 0xfd, 0x7e, 0x8c, 0xa5, 0x2f, 0xe2, 0xf7, 0x33, 0xd2,
|
||||
0xf4, 0x45, 0xca, 0x8d, 0x97, 0x34, 0x7d, 0x91, 0x76, 0xe1, 0xa3, 0x9e, 0x59, 0xf9, 0xf0, 0xf3,
|
||||
0x0f, 0xfa, 0xa6, 0x77, 0x30, 0xde, 0x23, 0xab, 0xbf, 0xc7, 0x86, 0xbe, 0x67, 0xda, 0xfc, 0xd7,
|
||||
0x3d, 0x9f, 0xdd, 0xef, 0x51, 0x6c, 0xf7, 0x08, 0xb6, 0xd1, 0xde, 0x5e, 0x89, 0xb6, 0x3e, 0xfc,
|
||||
0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7e, 0xd5, 0x8e, 0x9e, 0x78, 0x51, 0x00, 0x00,
|
||||
0x65, 0x8f, 0x11, 0x7b, 0xab, 0x78, 0xf9, 0xe2, 0xc5, 0xef, 0xfd, 0xe3, 0x45, 0x41, 0xd3, 0xd0,
|
||||
0x3d, 0xbd, 0xdb, 0xb3, 0x6d, 0xc7, 0xb8, 0x3b, 0x72, 0x6c, 0xcf, 0x46, 0x4b, 0x43, 0x73, 0x70,
|
||||
0x34, 0x76, 0x59, 0xeb, 0x2e, 0xf9, 0xdc, 0xae, 0xf5, 0xec, 0xe1, 0xd0, 0xb6, 0x18, 0xa8, 0xdd,
|
||||
0x30, 0x2d, 0x0f, 0x3b, 0x96, 0x3e, 0xe0, 0xed, 0x5a, 0xb8, 0x43, 0xbb, 0xe6, 0xf6, 0x0e, 0xf0,
|
||||
0x50, 0x67, 0x2d, 0x75, 0x01, 0x8a, 0x8f, 0x87, 0x23, 0xef, 0x44, 0xfd, 0x1b, 0x05, 0x6a, 0xeb,
|
||||
0x83, 0xb1, 0x7b, 0xa0, 0xe1, 0xe7, 0x63, 0xec, 0x7a, 0xe8, 0x7d, 0x28, 0xec, 0xe9, 0x2e, 0x6e,
|
||||
0x29, 0xd7, 0x94, 0x5b, 0xd5, 0xfb, 0x97, 0xee, 0x46, 0x46, 0xe5, 0xe3, 0x6d, 0xba, 0xfd, 0x15,
|
||||
0xdd, 0xc5, 0x1a, 0xc5, 0x44, 0x08, 0x0a, 0xc6, 0x5e, 0x67, 0xad, 0x95, 0xbb, 0xa6, 0xdc, 0xca,
|
||||
0x6b, 0xf4, 0x37, 0xba, 0x02, 0xe0, 0xe2, 0xfe, 0x10, 0x5b, 0x5e, 0x67, 0xcd, 0x6d, 0xe5, 0xaf,
|
||||
0xe5, 0x6f, 0xe5, 0xb5, 0x10, 0x04, 0xa9, 0x50, 0xeb, 0xd9, 0x83, 0x01, 0xee, 0x79, 0xa6, 0x6d,
|
||||
0x75, 0xd6, 0x5a, 0x05, 0xda, 0x37, 0x02, 0x43, 0x6d, 0x28, 0x9b, 0x6e, 0x67, 0x38, 0xb2, 0x1d,
|
||||
0xaf, 0x55, 0xbc, 0xa6, 0xdc, 0x2a, 0x6b, 0xa2, 0xad, 0xfe, 0x87, 0x02, 0x75, 0x3e, 0x6d, 0x77,
|
||||
0x64, 0x5b, 0x2e, 0x46, 0x1f, 0x42, 0xc9, 0xf5, 0x74, 0x6f, 0xec, 0xf2, 0x99, 0x5f, 0x94, 0xce,
|
||||
0x7c, 0x87, 0xa2, 0x68, 0x1c, 0x55, 0x3a, 0xf5, 0xf8, 0xd4, 0xf2, 0x92, 0xa9, 0x45, 0x97, 0x57,
|
||||
0x48, 0x2c, 0xef, 0x16, 0x2c, 0xee, 0x93, 0xd9, 0xed, 0x04, 0x48, 0x45, 0x8a, 0x14, 0x07, 0x13,
|
||||
0x4a, 0x9e, 0x39, 0xc4, 0xdf, 0xd9, 0xdf, 0xc1, 0xfa, 0xa0, 0x55, 0xa2, 0x63, 0x85, 0x20, 0xea,
|
||||
0x3f, 0x29, 0xd0, 0x14, 0xe8, 0xfe, 0x19, 0x9d, 0x83, 0x62, 0xcf, 0x1e, 0x5b, 0x1e, 0x5d, 0x6a,
|
||||
0x5d, 0x63, 0x0d, 0xf4, 0x26, 0xd4, 0x7a, 0x07, 0xba, 0x65, 0xe1, 0x41, 0xd7, 0xd2, 0x87, 0x98,
|
||||
0x2e, 0xaa, 0xa2, 0x55, 0x39, 0x6c, 0x4b, 0x1f, 0xe2, 0x4c, 0x6b, 0xbb, 0x06, 0xd5, 0x91, 0xee,
|
||||
0x78, 0x66, 0xe4, 0x64, 0xc2, 0xa0, 0x49, 0x07, 0x43, 0x46, 0x30, 0xe9, 0xaf, 0x5d, 0xdd, 0x3d,
|
||||
0xec, 0xac, 0xf1, 0x15, 0x45, 0x60, 0xea, 0x9f, 0x29, 0xb0, 0xfc, 0xc8, 0x75, 0xcd, 0xbe, 0x95,
|
||||
0x58, 0xd9, 0x32, 0x94, 0x2c, 0xdb, 0xc0, 0x9d, 0x35, 0xba, 0xb4, 0xbc, 0xc6, 0x5b, 0xe8, 0x22,
|
||||
0x54, 0x46, 0x18, 0x3b, 0x5d, 0xc7, 0x1e, 0xf8, 0x0b, 0x2b, 0x13, 0x80, 0x66, 0x0f, 0x30, 0xfa,
|
||||
0x2e, 0x2c, 0xb9, 0x31, 0x42, 0x8c, 0xe7, 0xaa, 0xf7, 0xaf, 0xdf, 0x4d, 0x48, 0xcd, 0xdd, 0xf8,
|
||||
0xa0, 0x5a, 0xb2, 0xb7, 0xfa, 0x45, 0x0e, 0xce, 0x0a, 0x3c, 0x36, 0x57, 0xf2, 0x9b, 0xec, 0xbc,
|
||||
0x8b, 0xfb, 0x62, 0x7a, 0xac, 0x91, 0x65, 0xe7, 0xc5, 0x91, 0xe5, 0xc3, 0x47, 0x96, 0x45, 0x0c,
|
||||
0x62, 0xe7, 0x51, 0x4c, 0x9e, 0xc7, 0x55, 0xa8, 0xe2, 0x17, 0x23, 0xd3, 0xc1, 0x5d, 0xc2, 0x38,
|
||||
0x74, 0xcb, 0x0b, 0x1a, 0x30, 0xd0, 0xae, 0x39, 0x0c, 0xcb, 0xc6, 0x42, 0x66, 0xd9, 0x50, 0xff,
|
||||
0x5c, 0x81, 0xf3, 0x89, 0x53, 0xe2, 0xc2, 0xa6, 0x41, 0x93, 0xae, 0x3c, 0xd8, 0x19, 0x22, 0x76,
|
||||
0x64, 0xc3, 0xdf, 0x9a, 0xb4, 0xe1, 0x01, 0xba, 0x96, 0xe8, 0x1f, 0x9a, 0x64, 0x2e, 0xfb, 0x24,
|
||||
0x0f, 0xe1, 0xfc, 0x13, 0xec, 0xf1, 0x01, 0xc8, 0x37, 0xec, 0xce, 0xae, 0xc8, 0xa2, 0x52, 0x9d,
|
||||
0x8b, 0x4b, 0xb5, 0xfa, 0xd7, 0x39, 0x21, 0x8b, 0x74, 0xa8, 0x8e, 0xb5, 0x6f, 0xa3, 0x4b, 0x50,
|
||||
0x11, 0x28, 0x9c, 0x2b, 0x02, 0x00, 0xfa, 0x06, 0x14, 0xc9, 0x4c, 0x19, 0x4b, 0x34, 0xee, 0xbf,
|
||||
0x29, 0x5f, 0x53, 0x88, 0xa6, 0xc6, 0xf0, 0x51, 0x07, 0x1a, 0xae, 0xa7, 0x3b, 0x5e, 0x77, 0x64,
|
||||
0xbb, 0xf4, 0x9c, 0x29, 0xe3, 0x54, 0xef, 0xab, 0x51, 0x0a, 0x42, 0xe5, 0x6f, 0xba, 0xfd, 0x6d,
|
||||
0x8e, 0xa9, 0xd5, 0x69, 0x4f, 0xbf, 0x89, 0x1e, 0x43, 0x0d, 0x5b, 0x46, 0x40, 0xa8, 0x90, 0x99,
|
||||
0x50, 0x15, 0x5b, 0x86, 0x20, 0x13, 0x9c, 0x4f, 0x31, 0xfb, 0xf9, 0xfc, 0x9e, 0x02, 0xad, 0xe4,
|
||||
0x01, 0xcd, 0xa3, 0xb2, 0x1f, 0xb2, 0x4e, 0x98, 0x1d, 0xd0, 0x44, 0x09, 0x17, 0x87, 0xa4, 0xf1,
|
||||
0x2e, 0xea, 0x1f, 0x29, 0xf0, 0x46, 0x30, 0x1d, 0xfa, 0xe9, 0x55, 0x71, 0x0b, 0xba, 0x0d, 0x4d,
|
||||
0xd3, 0xea, 0x0d, 0xc6, 0x06, 0x7e, 0x6a, 0x7d, 0x8a, 0xf5, 0x81, 0x77, 0x70, 0x42, 0xcf, 0xb0,
|
||||
0xac, 0x25, 0xe0, 0xea, 0xbf, 0xe6, 0x60, 0x39, 0x3e, 0xaf, 0x79, 0x36, 0xe9, 0x97, 0xa0, 0x68,
|
||||
0x5a, 0xfb, 0xb6, 0xbf, 0x47, 0x57, 0x26, 0x08, 0x25, 0x19, 0x8b, 0x21, 0x23, 0x1b, 0x90, 0xaf,
|
||||
0xc6, 0x7a, 0x07, 0xb8, 0x77, 0x38, 0xb2, 0x4d, 0xaa, 0xb0, 0x08, 0x89, 0x5f, 0x91, 0x90, 0x90,
|
||||
0xcf, 0xf8, 0xee, 0x2a, 0xa3, 0xb1, 0x2a, 0x48, 0x3c, 0xb6, 0x3c, 0xe7, 0x44, 0x5b, 0xea, 0xc5,
|
||||
0xe1, 0xed, 0x03, 0x58, 0x96, 0x23, 0xa3, 0x26, 0xe4, 0x0f, 0xf1, 0x09, 0x5d, 0x72, 0x45, 0x23,
|
||||
0x3f, 0xd1, 0x03, 0x28, 0x1e, 0xe9, 0x83, 0x31, 0xe6, 0xda, 0x21, 0x0b, 0xfb, 0xb2, 0x0e, 0xdf,
|
||||
0xcc, 0x3d, 0x50, 0xd4, 0x21, 0x5c, 0x7c, 0x82, 0xbd, 0x8e, 0xe5, 0x62, 0xc7, 0x5b, 0x31, 0xad,
|
||||
0x81, 0xdd, 0xdf, 0xd6, 0xbd, 0x83, 0x39, 0x74, 0x45, 0x44, 0xec, 0x73, 0x31, 0xb1, 0x57, 0x7f,
|
||||
0xa2, 0xc0, 0x25, 0xf9, 0x78, 0xfc, 0x54, 0xdb, 0x50, 0xde, 0x37, 0xf1, 0xc0, 0x20, 0xac, 0xa3,
|
||||
0x50, 0xd6, 0x11, 0x6d, 0xa2, 0x33, 0x46, 0x04, 0x99, 0x1f, 0xde, 0x9b, 0x29, 0x2b, 0xdd, 0xf1,
|
||||
0x1c, 0xd3, 0xea, 0x6f, 0x98, 0xae, 0xa7, 0x31, 0xfc, 0x10, 0xab, 0xe4, 0xb3, 0x4b, 0xe8, 0xef,
|
||||
0x2a, 0x70, 0xe5, 0x09, 0xf6, 0x56, 0x85, 0xc9, 0x21, 0xdf, 0x4d, 0xd7, 0x33, 0x7b, 0xee, 0xcb,
|
||||
0x75, 0x09, 0x33, 0xf8, 0x1e, 0xea, 0x8f, 0x15, 0xb8, 0x9a, 0x3a, 0x19, 0xbe, 0x75, 0x5c, 0xa5,
|
||||
0xfa, 0x06, 0x47, 0xae, 0x52, 0x7f, 0x0d, 0x9f, 0x7c, 0x46, 0x0e, 0x7f, 0x5b, 0x37, 0x1d, 0xa6,
|
||||
0x52, 0x67, 0x34, 0x30, 0x3f, 0x53, 0xe0, 0xf2, 0x13, 0xec, 0x6d, 0xfb, 0xe6, 0xf6, 0x35, 0xee,
|
||||
0x0e, 0xc1, 0x09, 0x99, 0x7d, 0xdf, 0xef, 0x8c, 0xc0, 0xd4, 0xdf, 0x67, 0xc7, 0x29, 0x9d, 0xef,
|
||||
0x6b, 0xd9, 0xc0, 0x2b, 0x54, 0x12, 0x42, 0x7a, 0x82, 0x4b, 0x3c, 0xdf, 0x3e, 0xf5, 0x4f, 0x15,
|
||||
0xb8, 0xf0, 0xa8, 0xf7, 0x7c, 0x6c, 0x3a, 0x98, 0x23, 0x6d, 0xd8, 0xbd, 0xc3, 0xd9, 0x37, 0x37,
|
||||
0xf0, 0x20, 0x73, 0x11, 0x0f, 0x72, 0x5a, 0x44, 0xb2, 0x0c, 0x25, 0x8f, 0xb9, 0xac, 0xcc, 0x09,
|
||||
0xe3, 0x2d, 0x3a, 0x3f, 0x0d, 0x0f, 0xb0, 0xee, 0xfe, 0xdf, 0x9c, 0xdf, 0x8f, 0x0b, 0x50, 0xfb,
|
||||
0x8c, 0xab, 0x56, 0xea, 0x90, 0xc4, 0x39, 0x49, 0x91, 0xfb, 0x94, 0x21, 0xe7, 0x54, 0xe6, 0xaf,
|
||||
0x3e, 0x81, 0xba, 0x8b, 0xf1, 0xe1, 0x2c, 0xee, 0x47, 0x8d, 0x74, 0x14, 0x6e, 0xc3, 0x06, 0x2c,
|
||||
0x8d, 0x2d, 0x1a, 0xf5, 0x60, 0x83, 0x6f, 0x20, 0xe3, 0xdc, 0xe9, 0x66, 0x29, 0xd9, 0x11, 0x7d,
|
||||
0xca, 0x03, 0xab, 0x10, 0xad, 0x62, 0x26, 0x5a, 0xf1, 0x6e, 0xa8, 0x03, 0x4d, 0xc3, 0xb1, 0x47,
|
||||
0x23, 0x6c, 0x74, 0x5d, 0x9f, 0x54, 0x29, 0x1b, 0x29, 0xde, 0x4f, 0x90, 0x7a, 0x1f, 0xce, 0xc6,
|
||||
0x67, 0xda, 0x31, 0x88, 0xaf, 0x4d, 0xce, 0x50, 0xf6, 0x09, 0xdd, 0x81, 0xa5, 0x24, 0x7e, 0x99,
|
||||
0xe2, 0x27, 0x3f, 0xa0, 0xf7, 0x00, 0xc5, 0xa6, 0x4a, 0xd0, 0x2b, 0x0c, 0x3d, 0x3a, 0x99, 0x8e,
|
||||
0xe1, 0xaa, 0x3f, 0x52, 0x60, 0xf9, 0x99, 0xee, 0xf5, 0x0e, 0xd6, 0x86, 0x5c, 0xd6, 0xe6, 0xd0,
|
||||
0x55, 0x1f, 0x43, 0xe5, 0x88, 0xf3, 0x85, 0x6f, 0x90, 0xae, 0x4a, 0xf6, 0x27, 0xcc, 0x81, 0x5a,
|
||||
0xd0, 0x83, 0x84, 0x7a, 0xe7, 0xd6, 0x43, 0x21, 0xef, 0x6b, 0xd0, 0x9a, 0x53, 0x62, 0x75, 0xf5,
|
||||
0x05, 0x00, 0x9f, 0xdc, 0xa6, 0xdb, 0x9f, 0x61, 0x5e, 0x0f, 0x60, 0x81, 0x53, 0xe3, 0x6a, 0x71,
|
||||
0x1a, 0xff, 0xf8, 0xe8, 0xea, 0x4f, 0x4b, 0x50, 0x0d, 0x7d, 0x40, 0x0d, 0xc8, 0x09, 0x79, 0xcd,
|
||||
0x49, 0x56, 0x97, 0x9b, 0x1e, 0x1d, 0xe6, 0x93, 0xd1, 0xe1, 0x4d, 0x68, 0x98, 0xd4, 0x0f, 0xe9,
|
||||
0xf2, 0x53, 0xa1, 0x0a, 0xa4, 0xa2, 0xd5, 0x19, 0x94, 0xb3, 0x08, 0xba, 0x02, 0x55, 0x6b, 0x3c,
|
||||
0xec, 0xda, 0xfb, 0x5d, 0xc7, 0x3e, 0x76, 0x79, 0x98, 0x59, 0xb1, 0xc6, 0xc3, 0xef, 0xec, 0x6b,
|
||||
0xf6, 0xb1, 0x1b, 0x44, 0x32, 0xa5, 0x53, 0x46, 0x32, 0x57, 0xa0, 0x3a, 0xd4, 0x5f, 0x10, 0xaa,
|
||||
0x5d, 0x6b, 0x3c, 0xa4, 0x11, 0x68, 0x5e, 0xab, 0x0c, 0xf5, 0x17, 0x9a, 0x7d, 0xbc, 0x35, 0x1e,
|
||||
0xa2, 0x5b, 0xd0, 0x1c, 0xe8, 0xae, 0xd7, 0x0d, 0x87, 0xb0, 0x65, 0x1a, 0xc2, 0x36, 0x08, 0xfc,
|
||||
0x71, 0x10, 0xc6, 0x26, 0x63, 0xa2, 0xca, 0x1c, 0x31, 0x91, 0x31, 0x1c, 0x04, 0x84, 0x20, 0x7b,
|
||||
0x4c, 0x64, 0x0c, 0x07, 0x82, 0xcc, 0x03, 0x58, 0xd8, 0xa3, 0xde, 0x9d, 0xdb, 0xaa, 0xa6, 0xea,
|
||||
0x8e, 0x75, 0xe2, 0xd8, 0x31, 0x27, 0x50, 0xf3, 0xd1, 0xd1, 0xb7, 0xa0, 0x42, 0x8d, 0x2a, 0xed,
|
||||
0x5b, 0xcb, 0xd4, 0x37, 0xe8, 0x40, 0x7a, 0x1b, 0x78, 0xe0, 0xe9, 0xb4, 0x77, 0x3d, 0x5b, 0x6f,
|
||||
0xd1, 0x81, 0xe8, 0xab, 0x9e, 0x83, 0x75, 0x0f, 0x1b, 0x2b, 0x27, 0xab, 0xf6, 0x70, 0xa4, 0x53,
|
||||
0x66, 0x6a, 0x35, 0x68, 0x70, 0x22, 0xfb, 0x84, 0xde, 0x82, 0x46, 0x4f, 0xb4, 0xd6, 0x1d, 0x7b,
|
||||
0xd8, 0x5a, 0xa4, 0x72, 0x14, 0x83, 0xa2, 0xcb, 0x00, 0xbe, 0xa6, 0xd2, 0xbd, 0x56, 0x93, 0x9e,
|
||||
0x62, 0x85, 0x43, 0x1e, 0xd1, 0x0c, 0x95, 0xe9, 0x76, 0x59, 0x2e, 0xc8, 0xb4, 0xfa, 0xad, 0x25,
|
||||
0x3a, 0x62, 0xd5, 0x4f, 0x1e, 0x99, 0x56, 0x1f, 0x9d, 0x87, 0x05, 0xd3, 0xed, 0xee, 0xeb, 0x87,
|
||||
0xb8, 0x85, 0xe8, 0xd7, 0x92, 0xe9, 0xae, 0xeb, 0x87, 0x58, 0xfd, 0x21, 0x9c, 0x0b, 0xb8, 0x2b,
|
||||
0x74, 0x92, 0x49, 0xa6, 0x50, 0x66, 0x65, 0x8a, 0xc9, 0x3e, 0xfd, 0x57, 0x05, 0x58, 0xde, 0xd1,
|
||||
0x8f, 0xf0, 0xab, 0x0f, 0x1f, 0x32, 0xa9, 0xb5, 0x0d, 0x58, 0xa2, 0x11, 0xc3, 0xfd, 0xd0, 0x7c,
|
||||
0x26, 0xd8, 0xd5, 0x30, 0x2b, 0x24, 0x3b, 0xa2, 0x6f, 0x13, 0x87, 0x00, 0xf7, 0x0e, 0xb7, 0x49,
|
||||
0x08, 0xe6, 0xdb, 0xd4, 0xcb, 0x12, 0x3a, 0xab, 0x02, 0x4b, 0x0b, 0xf7, 0x40, 0xdb, 0xb0, 0x18,
|
||||
0x3d, 0x06, 0xdf, 0x9a, 0xbe, 0x3d, 0x31, 0x3e, 0x0f, 0x76, 0x5f, 0x6b, 0x44, 0x0e, 0xc3, 0x45,
|
||||
0x2d, 0x58, 0xe0, 0xa6, 0x90, 0xea, 0x8c, 0xb2, 0xe6, 0x37, 0xd1, 0x36, 0x9c, 0x65, 0x2b, 0xd8,
|
||||
0xe1, 0x02, 0xc1, 0x16, 0x5f, 0xce, 0xb4, 0x78, 0x59, 0xd7, 0xa8, 0x3c, 0x55, 0x4e, 0x2b, 0x4f,
|
||||
0x2d, 0x58, 0xe0, 0x3c, 0x4e, 0xf5, 0x48, 0x59, 0xf3, 0x9b, 0xe4, 0x98, 0x03, 0x6e, 0xaf, 0xd2,
|
||||
0x6f, 0x01, 0x80, 0x84, 0x5e, 0x10, 0xec, 0xe7, 0x94, 0x4c, 0xd2, 0x27, 0x50, 0x16, 0x1c, 0x9e,
|
||||
0x3d, 0x04, 0x16, 0x7d, 0xe2, 0xfa, 0x3d, 0x1f, 0xd3, 0xef, 0xea, 0x3f, 0x2a, 0x50, 0x5b, 0x23,
|
||||
0x4b, 0xda, 0xb0, 0xfb, 0xd4, 0x1a, 0xdd, 0x84, 0x86, 0x83, 0x7b, 0xb6, 0x63, 0x74, 0xb1, 0xe5,
|
||||
0x39, 0x26, 0x66, 0x09, 0x88, 0x82, 0x56, 0x67, 0xd0, 0xc7, 0x0c, 0x48, 0xd0, 0x88, 0xca, 0x76,
|
||||
0x3d, 0x7d, 0x38, 0xea, 0xee, 0x13, 0xd5, 0x90, 0x63, 0x68, 0x02, 0x4a, 0x35, 0xc3, 0x9b, 0x50,
|
||||
0x0b, 0xd0, 0x3c, 0x9b, 0x8e, 0x5f, 0xd0, 0xaa, 0x02, 0xb6, 0x6b, 0xa3, 0x1b, 0xd0, 0xa0, 0x7b,
|
||||
0xda, 0x1d, 0xd8, 0xfd, 0x2e, 0x89, 0x68, 0xb9, 0xa1, 0xaa, 0x19, 0x7c, 0x5a, 0xe4, 0xac, 0xa2,
|
||||
0x58, 0xae, 0xf9, 0x03, 0xcc, 0x4d, 0x95, 0xc0, 0xda, 0x31, 0x7f, 0x80, 0xd5, 0x7f, 0x50, 0xa0,
|
||||
0xbe, 0xa6, 0x7b, 0xfa, 0x96, 0x6d, 0xe0, 0xdd, 0x19, 0x0d, 0x7b, 0x86, 0xac, 0xee, 0x25, 0xa8,
|
||||
0x88, 0x15, 0xf0, 0x25, 0x05, 0x00, 0xb4, 0x0e, 0x0d, 0xdf, 0xb5, 0xec, 0xb2, 0x88, 0xab, 0x90,
|
||||
0xea, 0x40, 0x85, 0x2c, 0xa7, 0xab, 0xd5, 0xfd, 0x6e, 0xb4, 0xa9, 0xae, 0x43, 0x2d, 0xfc, 0x99,
|
||||
0x8c, 0xba, 0x13, 0x67, 0x14, 0x01, 0x20, 0xdc, 0xb8, 0x35, 0x1e, 0x92, 0x33, 0xe5, 0x8a, 0xc5,
|
||||
0x6f, 0xaa, 0xbf, 0xad, 0x40, 0x9d, 0x9b, 0xfb, 0x1d, 0x71, 0xff, 0x41, 0x97, 0xc6, 0xf2, 0x2c,
|
||||
0xf4, 0x37, 0xfa, 0x66, 0x34, 0x65, 0x79, 0x43, 0xaa, 0x04, 0x28, 0x11, 0xea, 0x64, 0x46, 0x6c,
|
||||
0x7d, 0x96, 0x18, 0xff, 0x0b, 0xc2, 0x68, 0xfc, 0x68, 0x28, 0xa3, 0xb5, 0x60, 0x41, 0x37, 0x0c,
|
||||
0x07, 0xbb, 0x2e, 0x9f, 0x87, 0xdf, 0x24, 0x5f, 0x8e, 0xb0, 0xe3, 0xfa, 0x2c, 0x9f, 0xd7, 0xfc,
|
||||
0x26, 0xfa, 0x16, 0x94, 0x85, 0x57, 0xca, 0x12, 0x54, 0xd7, 0xd2, 0xe7, 0xc9, 0x23, 0x52, 0xd1,
|
||||
0x43, 0xfd, 0xdb, 0x1c, 0x34, 0xf8, 0x86, 0xad, 0x70, 0x7b, 0x3c, 0x59, 0xf8, 0x56, 0xa0, 0xb6,
|
||||
0x1f, 0xc8, 0xfe, 0xa4, 0xb4, 0x5a, 0x58, 0x45, 0x44, 0xfa, 0x4c, 0x13, 0xc0, 0xa8, 0x47, 0x50,
|
||||
0x98, 0xcb, 0x23, 0x28, 0x9e, 0x56, 0x83, 0x25, 0x7d, 0xc4, 0x92, 0xc4, 0x47, 0x54, 0x7f, 0x03,
|
||||
0xaa, 0x21, 0x02, 0x54, 0x43, 0xb3, 0xa4, 0x15, 0xdf, 0x31, 0xbf, 0x89, 0x3e, 0x0c, 0xfc, 0x22,
|
||||
0xb6, 0x55, 0x17, 0x24, 0x73, 0x89, 0xb9, 0x44, 0xea, 0xdf, 0x2b, 0x50, 0xe2, 0x94, 0xaf, 0x42,
|
||||
0x95, 0x2b, 0x1d, 0xea, 0x33, 0x32, 0xea, 0xc0, 0x41, 0xc4, 0x69, 0x7c, 0x79, 0x5a, 0xe7, 0x02,
|
||||
0x94, 0x63, 0xfa, 0x66, 0x81, 0x9b, 0x05, 0xff, 0x53, 0x48, 0xc9, 0x90, 0x4f, 0x44, 0xbf, 0xa0,
|
||||
0x73, 0x50, 0x1c, 0xd8, 0x7d, 0x71, 0xbf, 0xc5, 0x1a, 0xea, 0x97, 0x0a, 0xbd, 0x8e, 0xd0, 0x70,
|
||||
0xcf, 0x3e, 0xc2, 0xce, 0xc9, 0xfc, 0x79, 0xdc, 0x87, 0x21, 0x36, 0xcf, 0x18, 0x7c, 0x89, 0x0e,
|
||||
0xe8, 0x61, 0x70, 0x08, 0x79, 0x59, 0xa6, 0x27, 0xac, 0x77, 0x38, 0x93, 0x06, 0x87, 0xf1, 0x07,
|
||||
0x0a, 0xcd, 0x48, 0x47, 0x97, 0x32, 0xab, 0xb7, 0xf3, 0x52, 0x02, 0x19, 0xf5, 0x2b, 0x05, 0xda,
|
||||
0x41, 0x2a, 0xc9, 0x5d, 0x39, 0x99, 0xf7, 0xbe, 0xe7, 0xe5, 0xc4, 0x57, 0xbf, 0x2c, 0x2e, 0x24,
|
||||
0x88, 0xd0, 0x66, 0x8a, 0x8c, 0xfc, 0xeb, 0x08, 0x8b, 0x66, 0xa5, 0x93, 0x0b, 0x9a, 0x87, 0x65,
|
||||
0xda, 0x50, 0x16, 0xf9, 0x0c, 0x76, 0x29, 0x21, 0xda, 0x44, 0xc2, 0x2e, 0x3c, 0xc1, 0xde, 0x7a,
|
||||
0x34, 0x15, 0xf2, 0xba, 0x37, 0x30, 0x7c, 0x51, 0x72, 0xc0, 0x2f, 0x4a, 0x0a, 0xb1, 0x8b, 0x12,
|
||||
0x0e, 0x57, 0x87, 0x94, 0x05, 0x12, 0x0b, 0x78, 0x55, 0x1b, 0xf6, 0x3b, 0x0a, 0xb4, 0xf8, 0x28,
|
||||
0x74, 0x4c, 0x12, 0x12, 0x0d, 0xb0, 0x87, 0x8d, 0xaf, 0x3b, 0x55, 0xf0, 0x3f, 0x0a, 0x34, 0xc3,
|
||||
0x56, 0x97, 0x1a, 0xce, 0x8f, 0xa0, 0x48, 0x33, 0x2d, 0x7c, 0x06, 0x53, 0x55, 0x03, 0xc3, 0x26,
|
||||
0x6a, 0x9b, 0xba, 0xda, 0xbb, 0xc2, 0x41, 0xe0, 0xcd, 0xc0, 0xf4, 0xe7, 0x4f, 0x6f, 0xfa, 0xb9,
|
||||
0x2b, 0x64, 0x8f, 0x09, 0x5d, 0x96, 0xa2, 0x0c, 0x00, 0xe8, 0x63, 0x28, 0xb1, 0xfa, 0x13, 0x7e,
|
||||
0x79, 0x78, 0x33, 0x4a, 0x9a, 0xd7, 0xa6, 0x84, 0xf2, 0xfe, 0x14, 0xa0, 0xf1, 0x4e, 0xea, 0xaf,
|
||||
0xc2, 0x72, 0x10, 0x8d, 0xb2, 0x61, 0x67, 0x65, 0x5a, 0xf5, 0x5f, 0x14, 0x38, 0xbb, 0x73, 0x62,
|
||||
0xf5, 0xe2, 0xec, 0xbf, 0x0c, 0xa5, 0xd1, 0x40, 0x0f, 0x32, 0xa6, 0xbc, 0x45, 0xdd, 0x40, 0x36,
|
||||
0x36, 0x36, 0x88, 0x0d, 0x61, 0x7b, 0x56, 0x15, 0xb0, 0x5d, 0x7b, 0xaa, 0x69, 0xbf, 0x29, 0xc2,
|
||||
0x67, 0x6c, 0x30, 0x6b, 0xc5, 0xd2, 0x50, 0x75, 0x01, 0xa5, 0xd6, 0xea, 0x63, 0x00, 0x6a, 0xd0,
|
||||
0xbb, 0xa7, 0x31, 0xe2, 0xb4, 0xc7, 0x06, 0x51, 0xd9, 0x3f, 0xcf, 0x41, 0x2b, 0xb4, 0x4b, 0x5f,
|
||||
0xb7, 0x7f, 0x93, 0x12, 0x95, 0xe5, 0x5f, 0x52, 0x54, 0x56, 0x98, 0xdf, 0xa7, 0x29, 0xca, 0x7c,
|
||||
0x9a, 0x7f, 0xcf, 0x41, 0x23, 0xd8, 0xb5, 0xed, 0x81, 0x6e, 0xa5, 0x72, 0xc2, 0x8e, 0xf0, 0xe7,
|
||||
0xa3, 0xfb, 0xf4, 0xae, 0x4c, 0x4e, 0x52, 0x0e, 0x42, 0x8b, 0x91, 0x40, 0x97, 0xe9, 0xa1, 0x3b,
|
||||
0x1e, 0x4b, 0x7c, 0xf1, 0x18, 0x82, 0x09, 0xa4, 0x39, 0xc4, 0xe8, 0x0e, 0x20, 0x2e, 0x45, 0x5d,
|
||||
0xd3, 0xea, 0xba, 0xb8, 0x67, 0x5b, 0x06, 0x93, 0xaf, 0xa2, 0xd6, 0xe4, 0x5f, 0x3a, 0xd6, 0x0e,
|
||||
0x83, 0xa3, 0x8f, 0xa0, 0xe0, 0x9d, 0x8c, 0x98, 0xb7, 0xd2, 0x90, 0xda, 0xfb, 0x60, 0x5e, 0xbb,
|
||||
0x27, 0x23, 0xac, 0x51, 0x74, 0xbf, 0x08, 0xc9, 0x73, 0xf4, 0x23, 0xee, 0xfa, 0x15, 0xb4, 0x10,
|
||||
0x84, 0x68, 0x0c, 0x7f, 0x0f, 0x17, 0x98, 0x8b, 0xc4, 0x9b, 0x8c, 0xb3, 0x7d, 0xa1, 0xed, 0x7a,
|
||||
0xde, 0x80, 0xa6, 0xee, 0x28, 0x67, 0xfb, 0xd0, 0x5d, 0x6f, 0xa0, 0xfe, 0x73, 0x0e, 0x9a, 0xc1,
|
||||
0xc8, 0x1a, 0x76, 0xc7, 0x83, 0x74, 0x81, 0x9b, 0x9c, 0x1b, 0x99, 0x26, 0x6b, 0xdf, 0x86, 0x2a,
|
||||
0x3f, 0xf6, 0x53, 0xb0, 0x0d, 0xb0, 0x2e, 0x1b, 0x13, 0xf8, 0xb8, 0xf8, 0x92, 0xf8, 0xb8, 0x34,
|
||||
0x43, 0x76, 0x41, 0xbe, 0xf9, 0xea, 0x4f, 0x14, 0x78, 0x23, 0xa1, 0x16, 0x27, 0x6e, 0xed, 0xe4,
|
||||
0xd8, 0x8e, 0xab, 0xcb, 0x38, 0x49, 0xae, 0xe0, 0x1f, 0x42, 0xc9, 0xa1, 0xd4, 0xf9, 0x55, 0xd0,
|
||||
0xf5, 0x89, 0xdc, 0xc5, 0x26, 0xa2, 0xf1, 0x2e, 0xea, 0x1f, 0x2a, 0x70, 0x3e, 0x39, 0xd5, 0x39,
|
||||
0xac, 0xf6, 0x0a, 0x2c, 0x30, 0xd2, 0xbe, 0x10, 0xde, 0x9a, 0x2c, 0x84, 0xc1, 0xe6, 0x68, 0x7e,
|
||||
0x47, 0x75, 0x07, 0x96, 0x7d, 0xe3, 0x1e, 0x6c, 0xfd, 0x26, 0xf6, 0xf4, 0x09, 0x91, 0xcd, 0x55,
|
||||
0xa8, 0x32, 0x17, 0x99, 0x45, 0x0c, 0x2c, 0x27, 0x00, 0x7b, 0x22, 0x95, 0xa6, 0xfe, 0x97, 0x02,
|
||||
0xe7, 0xa8, 0x75, 0x8c, 0xdf, 0xbd, 0x64, 0xb9, 0x97, 0x53, 0x45, 0xca, 0x61, 0x4b, 0x1f, 0xf2,
|
||||
0x12, 0x97, 0x8a, 0x16, 0x81, 0xa1, 0x4e, 0x32, 0xd3, 0x26, 0x8d, 0x80, 0x83, 0x8b, 0x5c, 0x12,
|
||||
0x6d, 0xd3, 0x7b, 0xdc, 0x78, 0x8a, 0x2d, 0xb0, 0xca, 0x85, 0x59, 0xac, 0xf2, 0x06, 0xbc, 0x11,
|
||||
0x5b, 0xe9, 0x1c, 0x27, 0xaa, 0xfe, 0x85, 0x42, 0x8e, 0x23, 0x52, 0x2a, 0x34, 0xbb, 0x67, 0x7a,
|
||||
0x59, 0x5c, 0xfa, 0x74, 0x4d, 0x23, 0xae, 0x44, 0x0c, 0xf4, 0x09, 0x54, 0x2c, 0x7c, 0xdc, 0x0d,
|
||||
0x3b, 0x3b, 0x19, 0xdc, 0xf6, 0xb2, 0x85, 0x8f, 0xe9, 0x2f, 0x75, 0x0b, 0xce, 0x27, 0xa6, 0x3a,
|
||||
0xcf, 0xda, 0xff, 0x4e, 0x81, 0x0b, 0x6b, 0x8e, 0x3d, 0xfa, 0xcc, 0x74, 0xbc, 0xb1, 0x3e, 0x88,
|
||||
0x5e, 0x91, 0xbf, 0x9a, 0xd4, 0xd5, 0xa7, 0x21, 0xb7, 0x97, 0xf1, 0xcf, 0x1d, 0x89, 0x04, 0x25,
|
||||
0x27, 0xc5, 0x17, 0x1d, 0x72, 0x92, 0xff, 0x33, 0x2f, 0x9b, 0x3c, 0xc7, 0x9b, 0xe2, 0x78, 0x64,
|
||||
0x89, 0x20, 0xa4, 0x99, 0xee, 0xfc, 0xac, 0x99, 0xee, 0x14, 0xf5, 0x5e, 0x78, 0x49, 0xea, 0xfd,
|
||||
0xd4, 0xa9, 0x97, 0x4f, 0x21, 0x7a, 0x0b, 0x41, 0xcd, 0xef, 0x4c, 0xd7, 0x17, 0x2b, 0x00, 0x41,
|
||||
0x46, 0x9e, 0x57, 0x7a, 0x66, 0x21, 0x13, 0xea, 0x45, 0x4e, 0x4b, 0x98, 0x52, 0x6e, 0xca, 0x43,
|
||||
0x39, 0xe2, 0xef, 0x42, 0x5b, 0xc6, 0xa5, 0xf3, 0x70, 0xfe, 0xcf, 0x73, 0x00, 0x1d, 0x51, 0x1c,
|
||||
0x3c, 0x9b, 0x2d, 0xb8, 0x0e, 0x21, 0x77, 0x23, 0x90, 0xf7, 0x30, 0x17, 0x19, 0x44, 0x24, 0x44,
|
||||
0xd0, 0x49, 0x70, 0x12, 0x81, 0xa8, 0x41, 0xe9, 0x84, 0xa4, 0x86, 0x31, 0x45, 0x5c, 0xfd, 0x5e,
|
||||
0x84, 0x8a, 0x63, 0x1f, 0x77, 0x89, 0x98, 0x19, 0x7e, 0xf5, 0xb3, 0x63, 0x1f, 0x13, 0xe1, 0x33,
|
||||
0xd0, 0x79, 0x58, 0xf0, 0x74, 0xf7, 0x90, 0xd0, 0x2f, 0x85, 0xaa, 0x34, 0x0c, 0x74, 0x0e, 0x8a,
|
||||
0xfb, 0xe6, 0x00, 0xb3, 0xa2, 0x80, 0x8a, 0xc6, 0x1a, 0xe8, 0x1b, 0x7e, 0x99, 0x5e, 0x39, 0x73,
|
||||
0x25, 0x0e, 0xc5, 0x57, 0xbf, 0x54, 0x60, 0x31, 0xd8, 0x35, 0xaa, 0x80, 0x88, 0x4e, 0xa3, 0xfa,
|
||||
0x6c, 0xd5, 0x36, 0x98, 0xaa, 0x68, 0xa4, 0x58, 0x04, 0xd6, 0x91, 0x69, 0xad, 0xa0, 0xcb, 0xa4,
|
||||
0x38, 0x98, 0xac, 0x8b, 0x2c, 0xda, 0x34, 0xfc, 0xca, 0x94, 0x92, 0x63, 0x1f, 0x77, 0x0c, 0xb1,
|
||||
0x1b, 0xac, 0xb4, 0x99, 0x45, 0x7d, 0x64, 0x37, 0x56, 0x69, 0x75, 0xf3, 0x75, 0xa8, 0x63, 0xc7,
|
||||
0xb1, 0x9d, 0xee, 0x10, 0xbb, 0xae, 0xde, 0xc7, 0xdc, 0x01, 0xaf, 0x51, 0xe0, 0x26, 0x83, 0xa9,
|
||||
0x7f, 0x5c, 0x80, 0x46, 0xb0, 0x14, 0xff, 0x1e, 0xdc, 0x34, 0xfc, 0x7b, 0x70, 0x93, 0x1c, 0x1d,
|
||||
0x38, 0x4c, 0x15, 0x8a, 0xc3, 0x5d, 0xc9, 0xb5, 0x14, 0xad, 0xc2, 0xa1, 0x1d, 0x83, 0x98, 0x65,
|
||||
0x22, 0x64, 0x96, 0x6d, 0xe0, 0xe0, 0x70, 0xc1, 0x07, 0xf1, 0xb3, 0x8d, 0xf0, 0x48, 0x21, 0x03,
|
||||
0x8f, 0x14, 0x33, 0xf0, 0x48, 0x49, 0xc2, 0x23, 0xcb, 0x50, 0xda, 0x1b, 0xf7, 0x0e, 0xb1, 0xc7,
|
||||
0x3d, 0x36, 0xde, 0x8a, 0xf2, 0x4e, 0x39, 0xc6, 0x3b, 0x82, 0x45, 0x2a, 0x61, 0x16, 0xb9, 0x08,
|
||||
0x15, 0x76, 0x21, 0xdb, 0xf5, 0x5c, 0x7a, 0xbb, 0x94, 0xd7, 0xca, 0x0c, 0xb0, 0xeb, 0xa2, 0x07,
|
||||
0xbe, 0x3b, 0x57, 0x95, 0x09, 0x3b, 0xd5, 0x3a, 0x31, 0x2e, 0xf1, 0x9d, 0xb9, 0xb7, 0x61, 0x31,
|
||||
0xb4, 0x1d, 0xd4, 0x46, 0xd4, 0xe8, 0x54, 0x43, 0xee, 0x3c, 0x35, 0x13, 0x37, 0xa1, 0x11, 0x6c,
|
||||
0x09, 0xc5, 0xab, 0xb3, 0x28, 0x4a, 0x40, 0x29, 0x9a, 0xe0, 0xe4, 0xc6, 0xe9, 0x38, 0x19, 0x5d,
|
||||
0x80, 0x32, 0x0f, 0x7f, 0xdc, 0xd6, 0x62, 0x24, 0x1b, 0xa1, 0x7e, 0x1f, 0x50, 0x30, 0xfb, 0xf9,
|
||||
0xbc, 0xc5, 0x18, 0x7b, 0xe4, 0xe2, 0xec, 0xa1, 0xfe, 0x54, 0x81, 0xa5, 0xf0, 0x60, 0xb3, 0x1a,
|
||||
0xde, 0x4f, 0xa0, 0xca, 0xee, 0xf7, 0xba, 0x44, 0xf0, 0x79, 0x96, 0xe7, 0xf2, 0xc4, 0x73, 0xd1,
|
||||
0x20, 0x78, 0x1c, 0x41, 0xd8, 0xeb, 0xd8, 0x76, 0x0e, 0x4d, 0xab, 0xdf, 0x25, 0x33, 0xf3, 0xc5,
|
||||
0xad, 0xc6, 0x81, 0x5b, 0x04, 0xa6, 0xfe, 0x48, 0x81, 0x2b, 0x4f, 0x47, 0x86, 0xee, 0xe1, 0x90,
|
||||
0x07, 0x32, 0x6f, 0x51, 0xe2, 0x47, 0x7e, 0x55, 0x60, 0x2e, 0xdb, 0x1d, 0x15, 0xc3, 0x56, 0xff,
|
||||
0x4a, 0xcc, 0x25, 0x51, 0xc9, 0x3b, 0xfb, 0x5c, 0xda, 0x50, 0x3e, 0xe2, 0xe4, 0xfc, 0xc7, 0x1e,
|
||||
0x7e, 0x3b, 0x72, 0x0f, 0x9a, 0x3f, 0xfd, 0x3d, 0xa8, 0xba, 0x09, 0x17, 0x34, 0xec, 0x62, 0xcb,
|
||||
0x88, 0xac, 0x66, 0xe6, 0x6c, 0xd2, 0x08, 0xda, 0x32, 0x72, 0xf3, 0x30, 0x2b, 0xf3, 0x5d, 0xbb,
|
||||
0x0e, 0x21, 0xeb, 0x71, 0x55, 0x4c, 0x5c, 0x26, 0x3a, 0x8e, 0xa7, 0xfe, 0x65, 0x0e, 0xce, 0x3f,
|
||||
0x32, 0x0c, 0xae, 0xc5, 0xb9, 0x37, 0xf6, 0xaa, 0x1c, 0xe5, 0xb8, 0x23, 0x99, 0x4f, 0x3a, 0x92,
|
||||
0x2f, 0x4b, 0xb3, 0x72, 0x1b, 0x63, 0x8d, 0x87, 0xbe, 0xed, 0x74, 0x58, 0x81, 0xd0, 0x43, 0x7e,
|
||||
0x31, 0x46, 0x02, 0x7a, 0x6a, 0x3f, 0xa7, 0xfb, 0x57, 0x65, 0x3f, 0x2b, 0xa6, 0x8e, 0xa0, 0x95,
|
||||
0xdc, 0xac, 0x39, 0x55, 0x89, 0xbf, 0x23, 0x23, 0x9b, 0x65, 0x50, 0x6b, 0xc4, 0x85, 0xa2, 0xa0,
|
||||
0x6d, 0xdb, 0x55, 0xff, 0x3b, 0x07, 0xad, 0x1d, 0xfd, 0x08, 0xff, 0xe2, 0x1c, 0xd0, 0xe7, 0x70,
|
||||
0xce, 0xd5, 0x8f, 0x70, 0x37, 0x14, 0x18, 0x77, 0x1d, 0xfc, 0x9c, 0xbb, 0xa0, 0xef, 0xc8, 0x34,
|
||||
0x89, 0xb4, 0x8e, 0x46, 0x5b, 0x72, 0x23, 0x70, 0x0d, 0x3f, 0x47, 0x6f, 0xc1, 0x62, 0xb8, 0x50,
|
||||
0x8b, 0x4c, 0xad, 0x4c, 0xb7, 0xbc, 0x1e, 0xaa, 0xc3, 0xea, 0x18, 0xea, 0x73, 0xb8, 0xf4, 0xd4,
|
||||
0x72, 0xb1, 0xd7, 0x09, 0x6a, 0x89, 0xe6, 0x0c, 0x21, 0xaf, 0x42, 0x35, 0xd8, 0xf8, 0xc4, 0x03,
|
||||
0x0f, 0xc3, 0x55, 0x6d, 0x68, 0x6f, 0xea, 0xce, 0xa1, 0x9f, 0x47, 0x5e, 0x63, 0x35, 0x1f, 0xaf,
|
||||
0x70, 0xc0, 0x7d, 0x51, 0x02, 0xa5, 0xe1, 0x7d, 0xec, 0x60, 0xab, 0x87, 0x37, 0xec, 0xde, 0x61,
|
||||
0xa8, 0x34, 0x58, 0x09, 0x97, 0x06, 0xcf, 0x5a, 0x6a, 0xac, 0xfe, 0x2c, 0x07, 0xcb, 0x8f, 0x06,
|
||||
0x1e, 0x76, 0x82, 0xc8, 0xff, 0x34, 0x49, 0x8c, 0x20, 0xab, 0x90, 0x9b, 0x21, 0xab, 0x90, 0xa8,
|
||||
0x72, 0xcf, 0x27, 0xab, 0xdc, 0x65, 0x39, 0x90, 0xc2, 0x8c, 0x39, 0x90, 0x47, 0x00, 0x23, 0xc7,
|
||||
0x1e, 0x61, 0xc7, 0x33, 0xb1, 0x1f, 0xbe, 0x65, 0x70, 0x5f, 0x42, 0x9d, 0xd4, 0xcf, 0xa1, 0xf9,
|
||||
0xa4, 0xb7, 0x6a, 0x5b, 0xfb, 0xa6, 0x33, 0xf4, 0x37, 0x2a, 0x21, 0x74, 0x4a, 0x06, 0xa1, 0xcb,
|
||||
0x25, 0x84, 0x4e, 0x35, 0x61, 0x29, 0x44, 0x7b, 0x4e, 0xc5, 0xd5, 0xef, 0x75, 0xf7, 0x4d, 0xcb,
|
||||
0xa4, 0x35, 0x55, 0x39, 0xea, 0x7e, 0x42, 0xbf, 0xb7, 0xce, 0x21, 0xb7, 0x3f, 0x11, 0xd5, 0xa8,
|
||||
0xbb, 0x27, 0x23, 0x8c, 0x16, 0x20, 0xbf, 0x85, 0x8f, 0x9b, 0x67, 0x10, 0x40, 0x69, 0xcb, 0x76,
|
||||
0x86, 0xfa, 0xa0, 0xa9, 0xa0, 0x2a, 0x2c, 0xf0, 0xcb, 0xb7, 0x66, 0x0e, 0xd5, 0xa1, 0xb2, 0xea,
|
||||
0x5f, 0x60, 0x34, 0xf3, 0xb7, 0xff, 0x44, 0x81, 0xa5, 0xc4, 0xf5, 0x10, 0x6a, 0x00, 0x3c, 0xb5,
|
||||
0x7a, 0xfc, 0xde, 0xac, 0x79, 0x06, 0xd5, 0xa0, 0xec, 0xdf, 0xa2, 0x31, 0x7a, 0xbb, 0x36, 0xc5,
|
||||
0x6e, 0xe6, 0x50, 0x13, 0x6a, 0xac, 0xe3, 0xb8, 0xd7, 0xc3, 0xae, 0xdb, 0xcc, 0x0b, 0xc8, 0xba,
|
||||
0x6e, 0x0e, 0xc6, 0x0e, 0x6e, 0x16, 0xc8, 0x98, 0xbb, 0x36, 0xaf, 0xc7, 0x6f, 0x16, 0x11, 0x82,
|
||||
0x86, 0x5f, 0x9c, 0xcf, 0x3b, 0x95, 0x42, 0x30, 0xbf, 0xdb, 0xc2, 0xed, 0x67, 0xe1, 0x24, 0x3f,
|
||||
0x5d, 0xde, 0x79, 0x38, 0xfb, 0xd4, 0x32, 0xf0, 0xbe, 0x69, 0x61, 0x23, 0xf8, 0xd4, 0x3c, 0x83,
|
||||
0xce, 0xc2, 0xe2, 0x26, 0x76, 0xfa, 0x38, 0x04, 0xcc, 0xa1, 0x25, 0xa8, 0x6f, 0x9a, 0x2f, 0x42,
|
||||
0xa0, 0xbc, 0x5a, 0x28, 0x2b, 0x4d, 0xe5, 0xfe, 0xbf, 0x5d, 0x86, 0x0a, 0xe1, 0xad, 0x55, 0xdb,
|
||||
0x76, 0x0c, 0x34, 0x00, 0x44, 0x9f, 0xaf, 0x0c, 0x47, 0xb6, 0x25, 0xde, 0xbb, 0xa1, 0xbb, 0xd1,
|
||||
0xe3, 0xe1, 0x8d, 0x24, 0x22, 0xe7, 0x9d, 0xf6, 0x0d, 0x29, 0x7e, 0x0c, 0x59, 0x3d, 0x83, 0x86,
|
||||
0x74, 0xb4, 0x5d, 0x73, 0x88, 0x77, 0xcd, 0xde, 0xa1, 0xef, 0x20, 0xbd, 0x9f, 0xe2, 0x0e, 0x25,
|
||||
0x51, 0xfd, 0xf1, 0xae, 0x4b, 0xc7, 0x63, 0xef, 0x8b, 0x7c, 0x9e, 0x53, 0xcf, 0xa0, 0xe7, 0x70,
|
||||
0xee, 0x09, 0x0e, 0xf9, 0x9a, 0xfe, 0x80, 0xf7, 0xd3, 0x07, 0x4c, 0x20, 0x9f, 0x72, 0xc8, 0x0d,
|
||||
0x28, 0x52, 0x76, 0x43, 0x32, 0x77, 0x34, 0xfc, 0x6c, 0xbd, 0x7d, 0x2d, 0x1d, 0x41, 0x50, 0xfb,
|
||||
0x3e, 0x2c, 0xc6, 0x1e, 0xb4, 0x22, 0x99, 0x71, 0x92, 0x3f, 0x4d, 0x6e, 0xdf, 0xce, 0x82, 0x2a,
|
||||
0xc6, 0xea, 0x43, 0x23, 0xfa, 0xec, 0x05, 0xdd, 0xca, 0xf0, 0x82, 0x8e, 0x8d, 0xf4, 0x4e, 0xe6,
|
||||
0xb7, 0x76, 0x94, 0x09, 0x9a, 0xf1, 0x07, 0x96, 0xe8, 0xf6, 0x44, 0x02, 0x51, 0x66, 0x7b, 0x37,
|
||||
0x13, 0xae, 0x18, 0xee, 0x84, 0x32, 0x41, 0xe2, 0x61, 0x5b, 0x9c, 0xc7, 0x7d, 0x32, 0x69, 0x2f,
|
||||
0xee, 0xda, 0xf7, 0x32, 0xe3, 0x8b, 0xa1, 0x7f, 0x8b, 0x55, 0xd7, 0xc8, 0x1e, 0x87, 0xa1, 0x0f,
|
||||
0xe4, 0xe4, 0x26, 0xbc, 0x6a, 0x6b, 0xdf, 0x3f, 0x4d, 0x17, 0x31, 0x89, 0x1f, 0xd2, 0xb2, 0x18,
|
||||
0xc9, 0xf3, 0xaa, 0xb8, 0xdc, 0xf9, 0xf4, 0xd2, 0x5f, 0x8e, 0xb5, 0x3f, 0x38, 0x45, 0x0f, 0x31,
|
||||
0x01, 0x3b, 0xfe, 0x82, 0xd5, 0x17, 0xc3, 0x7b, 0x53, 0xb9, 0x66, 0x36, 0x19, 0xfc, 0x1e, 0x2c,
|
||||
0xc6, 0xdc, 0x35, 0x94, 0xdd, 0xa5, 0x6b, 0x4f, 0x32, 0x4d, 0x4c, 0x24, 0x63, 0x55, 0x46, 0x28,
|
||||
0x85, 0xfb, 0x25, 0x95, 0x48, 0xed, 0xdb, 0x59, 0x50, 0xc5, 0x42, 0x5c, 0xaa, 0x2e, 0x63, 0xb5,
|
||||
0x23, 0xe8, 0x8e, 0x9c, 0x86, 0xbc, 0x46, 0xa6, 0xfd, 0x5e, 0x46, 0x6c, 0x31, 0xe8, 0x11, 0x9c,
|
||||
0x95, 0x94, 0xf8, 0xa0, 0xf7, 0x26, 0x1e, 0x56, 0xbc, 0xb6, 0xa9, 0x7d, 0x37, 0x2b, 0xba, 0x18,
|
||||
0xf7, 0x37, 0x01, 0xed, 0x1c, 0xd8, 0xc7, 0xd4, 0x73, 0xe8, 0x8f, 0x1d, 0x9d, 0x39, 0x3b, 0x69,
|
||||
0xb6, 0x21, 0x89, 0x9a, 0xc2, 0xa3, 0x13, 0x7b, 0x88, 0xc1, 0xbb, 0x00, 0x4f, 0xb0, 0xb7, 0x89,
|
||||
0x3d, 0x87, 0x08, 0xc6, 0x5b, 0x69, 0xe6, 0x8f, 0x23, 0xf8, 0x43, 0xbd, 0x3d, 0x15, 0x2f, 0x64,
|
||||
0x8a, 0x9a, 0x9b, 0xba, 0x35, 0xd6, 0x07, 0xa1, 0x37, 0x0a, 0x77, 0xa4, 0xdd, 0xe3, 0x68, 0x29,
|
||||
0x07, 0x99, 0x8a, 0x2d, 0x86, 0x3c, 0x16, 0xa6, 0x3d, 0x74, 0xa3, 0x38, 0xd9, 0xb4, 0x27, 0xcb,
|
||||
0x55, 0xe2, 0x6a, 0x6f, 0x02, 0xbe, 0x18, 0xf8, 0x0b, 0x85, 0x56, 0x89, 0xc5, 0x10, 0x9e, 0x99,
|
||||
0xde, 0xc1, 0xf6, 0x40, 0xb7, 0xdc, 0x2c, 0x53, 0xa0, 0x88, 0xa7, 0x98, 0x02, 0xc7, 0x17, 0x53,
|
||||
0x30, 0xa0, 0x1e, 0xb9, 0xe8, 0x43, 0xb2, 0xa2, 0x7e, 0xd9, 0xa5, 0x67, 0xfb, 0xd6, 0x74, 0x44,
|
||||
0x31, 0xca, 0x01, 0xd4, 0x7d, 0x51, 0x62, 0x9b, 0xfb, 0x4e, 0xda, 0x4c, 0x03, 0x9c, 0x14, 0x4d,
|
||||
0x20, 0x47, 0x0d, 0x6b, 0x82, 0xe4, 0x3d, 0x06, 0xca, 0x76, 0xff, 0x35, 0x49, 0x13, 0xa4, 0x5f,
|
||||
0x8e, 0x30, 0x55, 0x17, 0xbb, 0x33, 0x94, 0xeb, 0x51, 0xe9, 0x15, 0xa8, 0x54, 0xd5, 0xa5, 0x5c,
|
||||
0x41, 0xaa, 0x67, 0xd0, 0x33, 0x28, 0xf1, 0xff, 0x63, 0xb9, 0x31, 0x39, 0xf7, 0xc8, 0xa9, 0xdf,
|
||||
0x9c, 0x82, 0x25, 0x08, 0x1f, 0xc2, 0xf9, 0x94, 0xcc, 0xa3, 0xd4, 0x04, 0x4f, 0xce, 0x52, 0x4e,
|
||||
0x33, 0x0e, 0x62, 0xb0, 0x44, 0x6a, 0x71, 0xc2, 0x60, 0x69, 0x69, 0xc8, 0x69, 0x83, 0xe9, 0x80,
|
||||
0x92, 0xcf, 0x90, 0xa5, 0x3c, 0x91, 0xfa, 0x5a, 0x39, 0xc3, 0x10, 0xc9, 0x97, 0xc4, 0xd2, 0x21,
|
||||
0x52, 0x1f, 0x1c, 0x4f, 0x1b, 0xa2, 0x0b, 0x4b, 0x89, 0xdc, 0x13, 0x7a, 0x37, 0xc5, 0x5c, 0xcb,
|
||||
0x32, 0x54, 0xd3, 0x06, 0xe8, 0xc3, 0x1b, 0xd2, 0x3c, 0x8b, 0xd4, 0xfd, 0x98, 0x94, 0x91, 0x99,
|
||||
0x36, 0x50, 0x0f, 0xce, 0x4a, 0xb2, 0x2b, 0x52, 0xc3, 0x99, 0x9e, 0x85, 0x99, 0x36, 0xc8, 0x3e,
|
||||
0xb4, 0x57, 0x1c, 0x5b, 0x37, 0x7a, 0xba, 0xeb, 0xd1, 0x8c, 0x07, 0x89, 0x05, 0x7d, 0xff, 0x4f,
|
||||
0x1e, 0x1c, 0x48, 0xf3, 0x22, 0xd3, 0xc6, 0xd9, 0x83, 0x2a, 0x65, 0x48, 0xf6, 0x7f, 0x1f, 0x48,
|
||||
0x6e, 0xe9, 0x42, 0x18, 0x29, 0xea, 0x53, 0x86, 0x28, 0x44, 0xf3, 0xd7, 0xa1, 0x22, 0x32, 0x05,
|
||||
0x48, 0x56, 0x9c, 0x13, 0xcf, 0x51, 0xb4, 0x6f, 0x4c, 0x46, 0xf2, 0x29, 0xdf, 0xff, 0xb2, 0x02,
|
||||
0x65, 0xff, 0xc5, 0xc6, 0xd7, 0x1c, 0xe2, 0xbe, 0x86, 0x98, 0xf3, 0x7b, 0xb0, 0x18, 0x7b, 0x3d,
|
||||
0x2d, 0x65, 0x04, 0xf9, 0x0b, 0xeb, 0x69, 0x8c, 0xf0, 0x8c, 0xff, 0x6d, 0x99, 0x70, 0x3f, 0xdf,
|
||||
0x4e, 0x8b, 0x5b, 0xe3, 0x9e, 0xe7, 0x14, 0xc2, 0xff, 0xbf, 0xfd, 0xbd, 0x2d, 0x80, 0x90, 0xa7,
|
||||
0x37, 0xb9, 0xae, 0x91, 0x38, 0x2f, 0xd3, 0x76, 0x6b, 0x28, 0x75, 0xe6, 0xde, 0xc9, 0x52, 0x42,
|
||||
0x96, 0x6e, 0x8e, 0xd3, 0x5d, 0xb8, 0xa7, 0x50, 0x0b, 0x57, 0x1c, 0x23, 0xe9, 0x9f, 0x64, 0x25,
|
||||
0x4b, 0x92, 0xa7, 0xad, 0x62, 0xf3, 0x94, 0x56, 0x7e, 0x0a, 0x39, 0x97, 0x98, 0xa7, 0xf8, 0x55,
|
||||
0x56, 0x8a, 0x79, 0x4a, 0xb9, 0x40, 0x93, 0x7a, 0x45, 0xe9, 0xf7, 0x63, 0x2c, 0x7d, 0x11, 0xbf,
|
||||
0x9f, 0x91, 0xa6, 0x2f, 0x52, 0x6e, 0xbc, 0xa4, 0xe9, 0x8b, 0xb4, 0x0b, 0x1f, 0xf5, 0xcc, 0xca,
|
||||
0x87, 0x9f, 0x7f, 0xd0, 0x37, 0xbd, 0x83, 0xf1, 0x1e, 0x59, 0xfd, 0x3d, 0xd6, 0xf5, 0x3d, 0xd3,
|
||||
0xe6, 0xbf, 0xee, 0xf9, 0xec, 0x7e, 0x8f, 0x52, 0xbb, 0x47, 0xa8, 0x8d, 0xf6, 0xf6, 0x4a, 0xb4,
|
||||
0xf5, 0xe1, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x22, 0x43, 0xc6, 0x67, 0x94, 0x51, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
|
@ -1210,6 +1210,7 @@ func (ft *flushTask) Execute(ctx context.Context) error {
|
|||
),
|
||||
DbID: 0,
|
||||
CollectionID: collID,
|
||||
IsImport: false,
|
||||
}
|
||||
resp, err := ft.dataCoord.Flush(ctx, flushReq)
|
||||
if err != nil {
|
||||
|
|
|
@ -43,7 +43,6 @@ type Broker interface {
|
|||
Flush(ctx context.Context, cID int64, segIDs []int64) error
|
||||
Import(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error)
|
||||
UnsetIsImportingState(context.Context, *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error)
|
||||
MarkSegmentsDropped(context.Context, *datapb.MarkSegmentsDroppedRequest) (*commonpb.Status, error)
|
||||
GetSegmentStates(context.Context, *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error)
|
||||
GcConfirm(ctx context.Context, collectionID, partitionID UniqueID) bool
|
||||
|
||||
|
@ -182,6 +181,7 @@ func (b *ServerBroker) Flush(ctx context.Context, cID int64, segIDs []int64) err
|
|||
DbID: 0,
|
||||
SegmentIDs: segIDs,
|
||||
CollectionID: cID,
|
||||
IsImport: true,
|
||||
})
|
||||
if err != nil {
|
||||
return errors.New("failed to call flush to data coordinator: " + err.Error())
|
||||
|
@ -201,10 +201,6 @@ func (b *ServerBroker) UnsetIsImportingState(ctx context.Context, req *datapb.Un
|
|||
return b.s.dataCoord.UnsetIsImportingState(ctx, req)
|
||||
}
|
||||
|
||||
func (b *ServerBroker) MarkSegmentsDropped(ctx context.Context, req *datapb.MarkSegmentsDroppedRequest) (*commonpb.Status, error) {
|
||||
return b.s.dataCoord.MarkSegmentsDropped(ctx, req)
|
||||
}
|
||||
|
||||
func (b *ServerBroker) GetSegmentStates(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return b.s.dataCoord.GetSegmentStates(ctx, req)
|
||||
}
|
||||
|
|
|
@ -14,7 +14,6 @@ import (
|
|||
type GetCollectionNameFunc func(collID, partitionID UniqueID) (string, string, error)
|
||||
type IDAllocator func(count uint32) (UniqueID, UniqueID, error)
|
||||
type ImportFunc func(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error)
|
||||
type MarkSegmentsDroppedFunc func(ctx context.Context, segIDs []int64) (*commonpb.Status, error)
|
||||
type GetSegmentStatesFunc func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error)
|
||||
type DescribeIndexFunc func(ctx context.Context, colID UniqueID) (*indexpb.DescribeIndexResponse, error)
|
||||
type GetSegmentIndexStateFunc func(ctx context.Context, collID UniqueID, indexName string, segIDs []UniqueID) ([]*indexpb.SegmentIndexState, error)
|
||||
|
@ -24,7 +23,6 @@ type ImportFactory interface {
|
|||
NewGetCollectionNameFunc() GetCollectionNameFunc
|
||||
NewIDAllocator() IDAllocator
|
||||
NewImportFunc() ImportFunc
|
||||
NewMarkSegmentsDroppedFunc() MarkSegmentsDroppedFunc
|
||||
NewGetSegmentStatesFunc() GetSegmentStatesFunc
|
||||
NewDescribeIndexFunc() DescribeIndexFunc
|
||||
NewGetSegmentIndexStateFunc() GetSegmentIndexStateFunc
|
||||
|
@ -47,10 +45,6 @@ func (f ImportFactoryImpl) NewImportFunc() ImportFunc {
|
|||
return ImportFuncWithCore(f.c)
|
||||
}
|
||||
|
||||
func (f ImportFactoryImpl) NewMarkSegmentsDroppedFunc() MarkSegmentsDroppedFunc {
|
||||
return MarkSegmentsDroppedWithCore(f.c)
|
||||
}
|
||||
|
||||
func (f ImportFactoryImpl) NewGetSegmentStatesFunc() GetSegmentStatesFunc {
|
||||
return GetSegmentStatesWithCore(f.c)
|
||||
}
|
||||
|
@ -100,14 +94,6 @@ func ImportFuncWithCore(c *Core) ImportFunc {
|
|||
}
|
||||
}
|
||||
|
||||
func MarkSegmentsDroppedWithCore(c *Core) MarkSegmentsDroppedFunc {
|
||||
return func(ctx context.Context, segIDs []int64) (*commonpb.Status, error) {
|
||||
return c.broker.MarkSegmentsDropped(ctx, &datapb.MarkSegmentsDroppedRequest{
|
||||
SegmentIds: segIDs,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func GetSegmentStatesWithCore(c *Core) GetSegmentStatesFunc {
|
||||
return func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return c.broker.GetSegmentStates(ctx, req)
|
||||
|
|
|
@ -77,7 +77,6 @@ type importManager struct {
|
|||
idAllocator func(count uint32) (typeutil.UniqueID, typeutil.UniqueID, error)
|
||||
callImportService func(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error)
|
||||
getCollectionName func(collID, partitionID typeutil.UniqueID) (string, string, error)
|
||||
callMarkSegmentsDropped func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error)
|
||||
callGetSegmentStates func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error)
|
||||
callUnsetIsImportingState func(context.Context, *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error)
|
||||
}
|
||||
|
@ -86,7 +85,6 @@ type importManager struct {
|
|||
func newImportManager(ctx context.Context, client kv.TxnKV,
|
||||
idAlloc func(count uint32) (typeutil.UniqueID, typeutil.UniqueID, error),
|
||||
importService func(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error),
|
||||
markSegmentsDropped func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error),
|
||||
getSegmentStates func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error),
|
||||
getCollectionName func(collID, partitionID typeutil.UniqueID) (string, string, error),
|
||||
unsetIsImportingState func(context.Context, *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error)) *importManager {
|
||||
|
@ -102,7 +100,6 @@ func newImportManager(ctx context.Context, client kv.TxnKV,
|
|||
lastReqID: 0,
|
||||
idAllocator: idAlloc,
|
||||
callImportService: importService,
|
||||
callMarkSegmentsDropped: markSegmentsDropped,
|
||||
callGetSegmentStates: getSegmentStates,
|
||||
getCollectionName: getCollectionName,
|
||||
callUnsetIsImportingState: unsetIsImportingState,
|
||||
|
@ -1014,23 +1011,9 @@ func (m *importManager) removeBadImportSegments(ctx context.Context) {
|
|||
log.Info("trying to mark segments as dropped",
|
||||
zap.Int64("task ID", t.GetId()),
|
||||
zap.Int64s("segment IDs", t.GetState().GetSegments()))
|
||||
status, err := m.callMarkSegmentsDropped(ctx, t.GetState().GetSegments())
|
||||
errMsg := "failed to mark all segments dropped, some segments might already have been dropped"
|
||||
if err != nil {
|
||||
log.Error(errMsg,
|
||||
zap.Int64("task ID", t.GetId()),
|
||||
zap.Int64s("segments", t.GetState().GetSegments()),
|
||||
zap.Error(err))
|
||||
}
|
||||
if status.GetErrorCode() != commonpb.ErrorCode_Success {
|
||||
log.Error(errMsg,
|
||||
zap.Int64("task ID", t.GetId()),
|
||||
zap.Int64s("segments", t.GetState().GetSegments()),
|
||||
zap.Error(errors.New(status.GetReason())))
|
||||
}
|
||||
|
||||
if err = m.setImportTaskState(t.GetId(), commonpb.ImportState_ImportFailedAndCleaned); err != nil {
|
||||
log.Error(errMsg,
|
||||
zap.Int64("task ID", t.GetId()))
|
||||
log.Warn("failed to set ", zap.Int64("task ID", t.GetId()), zap.Error(err))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -100,11 +100,6 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
},
|
||||
}, nil
|
||||
}
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -118,7 +113,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
|
||||
// there are 2 tasks read from store, one is pending, the other is persisted.
|
||||
|
@ -150,7 +145,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Nanosecond)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
mgr.init(context.TODO())
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -169,7 +164,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Nanosecond)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
assert.Panics(t, func() {
|
||||
mgr.init(context.TODO())
|
||||
|
@ -186,7 +181,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Nanosecond)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
mgr.init(context.TODO())
|
||||
})
|
||||
|
@ -200,7 +195,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Nanosecond)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
mgr.init(context.TODO())
|
||||
func() {
|
||||
|
@ -220,7 +215,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
mgr.init(ctx)
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -278,7 +273,7 @@ func TestImportManager_TestSetImportTaskState(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, nil, nil, nil, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, nil, nil, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
_, err := mgr.loadFromTaskStore(true)
|
||||
assert.NoError(t, err)
|
||||
|
@ -366,11 +361,6 @@ func TestImportManager_TestEtcdCleanUp(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -380,7 +370,7 @@ func TestImportManager_TestEtcdCleanUp(t *testing.T) {
|
|||
}
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
_, err = mgr.loadFromTaskStore(true)
|
||||
assert.NoError(t, err)
|
||||
|
@ -462,11 +452,6 @@ func TestImportManager_TestFlipTaskStateLoop(t *testing.T) {
|
|||
},
|
||||
}, nil
|
||||
}
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -488,7 +473,7 @@ func TestImportManager_TestFlipTaskStateLoop(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped,
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn,
|
||||
callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
assert.NotNil(t, mgr)
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -503,7 +488,7 @@ func TestImportManager_TestFlipTaskStateLoop(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped,
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn,
|
||||
callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
assert.NotNil(t, mgr)
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -518,7 +503,7 @@ func TestImportManager_TestFlipTaskStateLoop(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped,
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn,
|
||||
callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
assert.NotNil(t, mgr)
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -544,11 +529,6 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
Params.RootCoordCfg.ImportMaxPendingTaskCount = 16
|
||||
colID := int64(100)
|
||||
mockKv := memkv.NewMemoryKV()
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -557,7 +537,7 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
// nil request
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, nil, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, nil, callGetSegmentStates, nil, nil)
|
||||
resp := mgr.importJob(context.TODO(), nil, colID, 0)
|
||||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
|
||||
|
@ -586,7 +566,7 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
// row-based case, task count equal to file count
|
||||
// since the importServiceFunc return error, tasks will be kept in pending list
|
||||
rowReq.Files = []string{"f1.json"}
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, len(rowReq.Files), len(mgr.pendingTasks))
|
||||
assert.Equal(t, 0, len(mgr.workingTasks))
|
||||
|
@ -599,7 +579,7 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
|
||||
// column-based case, one quest one task
|
||||
// since the importServiceFunc return error, tasks will be kept in pending list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), colReq, colID, 0)
|
||||
assert.Equal(t, 1, len(mgr.pendingTasks))
|
||||
assert.Equal(t, 0, len(mgr.workingTasks))
|
||||
|
@ -613,13 +593,13 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
}
|
||||
|
||||
// row-based case, since the importServiceFunc return success, tasks will be sent to working list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
assert.Equal(t, len(rowReq.Files), len(mgr.workingTasks))
|
||||
|
||||
// column-based case, since the importServiceFunc return success, tasks will be sent to working list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), colReq, colID, 0)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
assert.Equal(t, 1, len(mgr.workingTasks))
|
||||
|
@ -643,7 +623,7 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
|
||||
// row-based case, since the importServiceFunc return success for 1 task
|
||||
// the first task is sent to working list, and 1 task left in pending list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
assert.Equal(t, 1, len(mgr.workingTasks))
|
||||
|
@ -712,11 +692,6 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -726,7 +701,7 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
|
|||
}
|
||||
|
||||
// each data node owns one task
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
for i := 0; i < len(dnList); i++ {
|
||||
resp := mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
|
@ -735,7 +710,7 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
|
|||
}
|
||||
|
||||
// all data nodes are busy, new task waiting in pending list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp := mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.Equal(t, len(rowReq.Files), len(mgr.pendingTasks))
|
||||
|
@ -743,7 +718,7 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
|
|||
|
||||
// now all data nodes are free again, new task is executed instantly
|
||||
count = 0
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), colReq, colID, 0)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
|
@ -792,12 +767,6 @@ func TestImportManager_TaskState(t *testing.T) {
|
|||
PartitionName: "p1",
|
||||
Files: []string{"f1.json"},
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -807,7 +776,7 @@ func TestImportManager_TaskState(t *testing.T) {
|
|||
}
|
||||
|
||||
// add 3 tasks, their ID is 10000, 10001, 10002, make sure updateTaskInfo() works correctly
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
rowReq.Files = []string{"f2.json"}
|
||||
mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
|
@ -909,11 +878,6 @@ func TestImportManager_AllocFail(t *testing.T) {
|
|||
Files: []string{"f1.json"},
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -921,7 +885,7 @@ func TestImportManager_AllocFail(t *testing.T) {
|
|||
},
|
||||
}, nil
|
||||
}
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp := mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
|
@ -949,11 +913,6 @@ func TestImportManager_ListAllTasks(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -989,7 +948,7 @@ func TestImportManager_ListAllTasks(t *testing.T) {
|
|||
}
|
||||
|
||||
mockKv := memkv.NewMemoryKV()
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, fn, callMarkSegmentsDropped, callGetSegmentStates, getCollectionName, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, fn, callGetSegmentStates, getCollectionName, nil)
|
||||
|
||||
// add 10 tasks for collection1, id from 1 to 10
|
||||
file1 := "f1.json"
|
||||
|
|
|
@ -414,7 +414,6 @@ func (c *Core) initImportManager() error {
|
|||
impTaskKv,
|
||||
f.NewIDAllocator(),
|
||||
f.NewImportFunc(),
|
||||
f.NewMarkSegmentsDroppedFunc(),
|
||||
f.NewGetSegmentStatesFunc(),
|
||||
f.NewGetCollectionNameFunc(),
|
||||
f.NewUnsetIsImportingStateFunc(),
|
||||
|
|
|
@ -926,7 +926,7 @@ func TestCore_GetImportState(t *testing.T) {
|
|||
t.Run("normal case", func(t *testing.T) {
|
||||
ctx := context.Background()
|
||||
c := newTestCore(withHealthyCode())
|
||||
c.importManager = newImportManager(ctx, mockKv, nil, nil, nil, nil, nil, nil)
|
||||
c.importManager = newImportManager(ctx, mockKv, nil, nil, nil, nil, nil)
|
||||
resp, err := c.GetImportState(ctx, &milvuspb.GetImportStateRequest{
|
||||
Task: 100,
|
||||
})
|
||||
|
@ -1010,7 +1010,7 @@ func TestCore_ListImportTasks(t *testing.T) {
|
|||
|
||||
ctx := context.Background()
|
||||
c := newTestCore(withHealthyCode(), withMeta(meta))
|
||||
c.importManager = newImportManager(ctx, mockKv, nil, nil, nil, nil, nil, nil)
|
||||
c.importManager = newImportManager(ctx, mockKv, nil, nil, nil, nil, nil)
|
||||
|
||||
// list all tasks
|
||||
resp, err := c.ListImportTasks(ctx, &milvuspb.ListImportTasksRequest{})
|
||||
|
@ -1144,11 +1144,6 @@ func TestCore_ReportImport(t *testing.T) {
|
|||
},
|
||||
}, nil
|
||||
}
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
|
@ -1175,7 +1170,7 @@ func TestCore_ReportImport(t *testing.T) {
|
|||
t.Run("report complete import with task not found", func(t *testing.T) {
|
||||
ctx := context.Background()
|
||||
c := newTestCore(withHealthyCode())
|
||||
c.importManager = newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
c.importManager = newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
resp, err := c.ReportImport(ctx, &rootcoordpb.ImportResult{
|
||||
TaskId: 101,
|
||||
State: commonpb.ImportState_ImportCompleted,
|
||||
|
@ -1193,7 +1188,7 @@ func TestCore_ReportImport(t *testing.T) {
|
|||
withTtSynchronizer(ticker),
|
||||
withDataCoord(dc))
|
||||
c.broker = newServerBroker(c)
|
||||
c.importManager = newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
c.importManager = newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
c.importManager.loadFromTaskStore(true)
|
||||
c.importManager.sendOutTasks(ctx)
|
||||
|
||||
|
|
Loading…
Reference in New Issue