diff --git a/internal/datacoord/server_test.go b/internal/datacoord/server_test.go index ec68a0adf3..b00fe09786 100644 --- a/internal/datacoord/server_test.go +++ b/internal/datacoord/server_test.go @@ -569,6 +569,57 @@ func TestGetSegmentInfo(t *testing.T) { assert.Nil(t, err) assert.Equal(t, 1, len(resp2.Infos)) }) + + t.Run("with channel checkpoint", func(t *testing.T) { + mockVChannel := "fake-by-dev-rootcoord-dml-1-testgetsegmentinfo-v0" + mockPChannel := "fake-by-dev-rootcoord-dml-1" + + pos := &internalpb.MsgPosition{ + ChannelName: mockPChannel, + MsgID: []byte{}, + Timestamp: 1000, + } + + svr := newTestServer(t, nil) + defer closeTestServer(t, svr) + + segInfo := &datapb.SegmentInfo{ + ID: 0, + State: commonpb.SegmentState_Flushed, + } + err := svr.meta.AddSegment(NewSegmentInfo(segInfo)) + assert.NoError(t, err) + + req := &datapb.GetSegmentInfoRequest{ + SegmentIDs: []int64{0}, + } + // no channel checkpoint + resp, err := svr.GetSegmentInfo(svr.ctx, req) + assert.NoError(t, err) + assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) + assert.Equal(t, 0, len(resp.GetChannelCheckpoint())) + + // with nil insert channel of segment + err = svr.meta.UpdateChannelCheckpoint(mockVChannel, pos) + assert.NoError(t, err) + resp, err = svr.GetSegmentInfo(svr.ctx, req) + assert.NoError(t, err) + assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) + assert.Equal(t, 0, len(resp.GetChannelCheckpoint())) + + // normal test + segInfo.InsertChannel = mockVChannel + segInfo.ID = 2 + req.SegmentIDs = []int64{2} + err = svr.meta.AddSegment(NewSegmentInfo(segInfo)) + assert.NoError(t, err) + resp, err = svr.GetSegmentInfo(svr.ctx, req) + assert.NoError(t, err) + assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) + assert.Equal(t, 1, len(resp.GetChannelCheckpoint())) + assert.Equal(t, mockPChannel, resp.ChannelCheckpoint[mockVChannel].ChannelName) + assert.Equal(t, Timestamp(1000), resp.ChannelCheckpoint[mockVChannel].Timestamp) + }) } func TestGetComponentStates(t *testing.T) { diff --git a/internal/datacoord/services.go b/internal/datacoord/services.go index 17f512c0f2..1584da966d 100644 --- a/internal/datacoord/services.go +++ b/internal/datacoord/services.go @@ -344,7 +344,8 @@ func (s *Server) GetSegmentInfo(ctx context.Context, req *datapb.GetSegmentInfoR resp.Status.Reason = serverNotServingErrMsg return resp, nil } - infos := make([]*datapb.SegmentInfo, 0, len(req.SegmentIDs)) + infos := make([]*datapb.SegmentInfo, 0, len(req.GetSegmentIDs())) + channelCPs := make(map[string]*internalpb.MsgPosition) for _, id := range req.SegmentIDs { var info *SegmentInfo if req.IncludeUnHealthy { @@ -372,9 +373,14 @@ func (s *Server) GetSegmentInfo(ctx context.Context, req *datapb.GetSegmentInfoR } infos = append(infos, info.SegmentInfo) } + vchannel := info.InsertChannel + if _, ok := channelCPs[vchannel]; vchannel != "" && !ok { + channelCPs[vchannel] = s.meta.GetChannelCheckpoint(vchannel) + } } resp.Status.ErrorCode = commonpb.ErrorCode_Success resp.Infos = infos + resp.ChannelCheckpoint = channelCPs return resp, nil } diff --git a/internal/proto/data_coord.proto b/internal/proto/data_coord.proto index 33d0706f90..05481e97d3 100644 --- a/internal/proto/data_coord.proto +++ b/internal/proto/data_coord.proto @@ -167,6 +167,7 @@ message GetSegmentInfoRequest { message GetSegmentInfoResponse { common.Status status = 1; repeated SegmentInfo infos = 2; + map channel_checkpoint = 3; } message GetInsertBinlogPathsRequest { diff --git a/internal/proto/datapb/data_coord.pb.go b/internal/proto/datapb/data_coord.pb.go index 194a5d2db2..cc082a60bc 100644 --- a/internal/proto/datapb/data_coord.pb.go +++ b/internal/proto/datapb/data_coord.pb.go @@ -793,11 +793,12 @@ func (m *GetSegmentInfoRequest) GetIncludeUnHealthy() bool { } type GetSegmentInfoResponse struct { - Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` - Infos []*SegmentInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` + Infos []*SegmentInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"` + ChannelCheckpoint map[string]*internalpb.MsgPosition `protobuf:"bytes,3,rep,name=channel_checkpoint,json=channelCheckpoint,proto3" json:"channel_checkpoint,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *GetSegmentInfoResponse) Reset() { *m = GetSegmentInfoResponse{} } @@ -839,6 +840,13 @@ func (m *GetSegmentInfoResponse) GetInfos() []*SegmentInfo { return nil } +func (m *GetSegmentInfoResponse) GetChannelCheckpoint() map[string]*internalpb.MsgPosition { + if m != nil { + return m.ChannelCheckpoint + } + return nil +} + type GetInsertBinlogPathsRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"` @@ -4890,6 +4898,7 @@ func init() { proto.RegisterType((*GetSegmentStatesResponse)(nil), "milvus.proto.data.GetSegmentStatesResponse") proto.RegisterType((*GetSegmentInfoRequest)(nil), "milvus.proto.data.GetSegmentInfoRequest") proto.RegisterType((*GetSegmentInfoResponse)(nil), "milvus.proto.data.GetSegmentInfoResponse") + proto.RegisterMapType((map[string]*internalpb.MsgPosition)(nil), "milvus.proto.data.GetSegmentInfoResponse.ChannelCheckpointEntry") proto.RegisterType((*GetInsertBinlogPathsRequest)(nil), "milvus.proto.data.GetInsertBinlogPathsRequest") proto.RegisterType((*GetInsertBinlogPathsResponse)(nil), "milvus.proto.data.GetInsertBinlogPathsResponse") proto.RegisterType((*GetCollectionStatisticsRequest)(nil), "milvus.proto.data.GetCollectionStatisticsRequest") @@ -4959,283 +4968,287 @@ func init() { func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) } var fileDescriptor_82cd95f524594f49 = []byte{ - // 4414 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x8f, 0x1c, 0x49, - 0x5a, 0xce, 0x7a, 0x75, 0xd5, 0x57, 0x8f, 0xae, 0x0e, 0x7b, 0xda, 0xe5, 0x1a, 0xbf, 0x26, 0x3d, - 0x9e, 0xf1, 0x78, 0x3c, 0xf6, 0x8c, 0x87, 0xd1, 0x0e, 0x78, 0x67, 0x56, 0x6e, 0xf7, 0xb4, 0xa7, - 0xa0, 0xbb, 0xb7, 0x37, 0xbb, 0x3d, 0x96, 0x76, 0x91, 0x4a, 0xd9, 0x95, 0xd1, 0xd5, 0xb9, 0x5d, - 0x99, 0x59, 0xce, 0xcc, 0xea, 0x76, 0x2f, 0x87, 0x1d, 0xb1, 0x12, 0x68, 0x11, 0x62, 0x11, 0x12, - 0x02, 0x0e, 0x48, 0x88, 0xd3, 0xb2, 0x68, 0x11, 0xd2, 0x8a, 0x0b, 0x17, 0xae, 0x23, 0x38, 0xac, - 0x10, 0x12, 0x3f, 0x80, 0x03, 0x70, 0xe7, 0xca, 0x01, 0xc5, 0x23, 0x23, 0x5f, 0x91, 0x55, 0xd9, - 0x55, 0xf6, 0x18, 0xc1, 0xad, 0xe2, 0xcb, 0x2f, 0xe2, 0x8b, 0xc7, 0xf7, 0x8e, 0x2f, 0x0a, 0xda, - 0x86, 0xee, 0xeb, 0xfd, 0x81, 0xe3, 0xb8, 0xc6, 0xdd, 0xb1, 0xeb, 0xf8, 0x0e, 0x5a, 0xb1, 0xcc, - 0xd1, 0xf1, 0xc4, 0x63, 0xad, 0xbb, 0xe4, 0x73, 0xb7, 0x31, 0x70, 0x2c, 0xcb, 0xb1, 0x19, 0xa8, - 0xdb, 0x32, 0x6d, 0x1f, 0xbb, 0xb6, 0x3e, 0xe2, 0xed, 0x46, 0xb4, 0x43, 0xb7, 0xe1, 0x0d, 0x0e, - 0xb1, 0xa5, 0xb3, 0x96, 0xba, 0x04, 0xe5, 0xcf, 0xac, 0xb1, 0x7f, 0xaa, 0xfe, 0xa9, 0x02, 0x8d, - 0x8d, 0xd1, 0xc4, 0x3b, 0xd4, 0xf0, 0xb3, 0x09, 0xf6, 0x7c, 0xf4, 0x3e, 0x94, 0xf6, 0x75, 0x0f, - 0x77, 0x94, 0xeb, 0xca, 0xad, 0xfa, 0xfd, 0xcb, 0x77, 0x63, 0x54, 0x39, 0xbd, 0x2d, 0x6f, 0xb8, - 0xa6, 0x7b, 0x58, 0xa3, 0x98, 0x08, 0x41, 0xc9, 0xd8, 0xef, 0xad, 0x77, 0x0a, 0xd7, 0x95, 0x5b, - 0x45, 0x8d, 0xfe, 0x46, 0x57, 0x01, 0x3c, 0x3c, 0xb4, 0xb0, 0xed, 0xf7, 0xd6, 0xbd, 0x4e, 0xf1, - 0x7a, 0xf1, 0x56, 0x51, 0x8b, 0x40, 0x90, 0x0a, 0x8d, 0x81, 0x33, 0x1a, 0xe1, 0x81, 0x6f, 0x3a, - 0x76, 0x6f, 0xbd, 0x53, 0xa2, 0x7d, 0x63, 0x30, 0xf5, 0xdf, 0x15, 0x68, 0xf2, 0xa9, 0x79, 0x63, - 0xc7, 0xf6, 0x30, 0xfa, 0x10, 0x2a, 0x9e, 0xaf, 0xfb, 0x13, 0x8f, 0xcf, 0xee, 0x75, 0xe9, 0xec, - 0x76, 0x29, 0x8a, 0xc6, 0x51, 0xa5, 0xd3, 0x4b, 0x92, 0x2f, 0xa6, 0xc9, 0x27, 0x96, 0x50, 0x4a, - 0x2d, 0xe1, 0x16, 0x2c, 0x1f, 0x90, 0xd9, 0xed, 0x86, 0x48, 0x65, 0x8a, 0x94, 0x04, 0x93, 0x91, - 0x7c, 0xd3, 0xc2, 0xdf, 0x3e, 0xd8, 0xc5, 0xfa, 0xa8, 0x53, 0xa1, 0xb4, 0x22, 0x10, 0xf5, 0x9f, - 0x15, 0x68, 0x0b, 0xf4, 0xe0, 0x1c, 0x2e, 0x40, 0x79, 0xe0, 0x4c, 0x6c, 0x9f, 0x2e, 0xb5, 0xa9, - 0xb1, 0x06, 0x7a, 0x03, 0x1a, 0x83, 0x43, 0xdd, 0xb6, 0xf1, 0xa8, 0x6f, 0xeb, 0x16, 0xa6, 0x8b, - 0xaa, 0x69, 0x75, 0x0e, 0xdb, 0xd6, 0x2d, 0x9c, 0x6b, 0x6d, 0xd7, 0xa1, 0x3e, 0xd6, 0x5d, 0xdf, - 0x8c, 0xed, 0x7e, 0x14, 0x84, 0xba, 0x50, 0x35, 0xbd, 0x9e, 0x35, 0x76, 0x5c, 0xbf, 0x53, 0xbe, - 0xae, 0xdc, 0xaa, 0x6a, 0xa2, 0x4d, 0x28, 0x98, 0xf4, 0xd7, 0x9e, 0xee, 0x1d, 0xf5, 0xd6, 0xf9, - 0x8a, 0x62, 0x30, 0xf5, 0x2f, 0x14, 0x58, 0x7d, 0xe8, 0x79, 0xe6, 0xd0, 0x4e, 0xad, 0x6c, 0x15, - 0x2a, 0xb6, 0x63, 0xe0, 0xde, 0x3a, 0x5d, 0x5a, 0x51, 0xe3, 0x2d, 0xf4, 0x3a, 0xd4, 0xc6, 0x18, - 0xbb, 0x7d, 0xd7, 0x19, 0x05, 0x0b, 0xab, 0x12, 0x80, 0xe6, 0x8c, 0x30, 0xfa, 0x0e, 0xac, 0x78, - 0x89, 0x81, 0x18, 0x5f, 0xd5, 0xef, 0xdf, 0xb8, 0x9b, 0x92, 0x8c, 0xbb, 0x49, 0xa2, 0x5a, 0xba, - 0xb7, 0xfa, 0x65, 0x01, 0xce, 0x0b, 0x3c, 0x36, 0x57, 0xf2, 0x9b, 0xec, 0xbc, 0x87, 0x87, 0x62, - 0x7a, 0xac, 0x91, 0x67, 0xe7, 0xc5, 0x91, 0x15, 0xa3, 0x47, 0x96, 0x83, 0xd5, 0x93, 0xe7, 0x51, - 0x4e, 0x9f, 0xc7, 0x35, 0xa8, 0xe3, 0xe7, 0x63, 0xd3, 0xc5, 0x7d, 0xc2, 0x38, 0x74, 0xcb, 0x4b, - 0x1a, 0x30, 0xd0, 0x9e, 0x69, 0x45, 0x65, 0x63, 0x29, 0xb7, 0x6c, 0xa8, 0x7f, 0xa9, 0xc0, 0xc5, - 0xd4, 0x29, 0x71, 0x61, 0xd3, 0xa0, 0x4d, 0x57, 0x1e, 0xee, 0x0c, 0x11, 0x3b, 0xb2, 0xe1, 0x6f, - 0x4d, 0xdb, 0xf0, 0x10, 0x5d, 0x4b, 0xf5, 0x8f, 0x4c, 0xb2, 0x90, 0x7f, 0x92, 0x47, 0x70, 0xf1, - 0x31, 0xf6, 0x39, 0x01, 0xf2, 0x0d, 0x7b, 0xf3, 0x2b, 0xab, 0xb8, 0x54, 0x17, 0x92, 0x52, 0xad, - 0xfe, 0x6d, 0x41, 0xc8, 0x22, 0x25, 0xd5, 0xb3, 0x0f, 0x1c, 0x74, 0x19, 0x6a, 0x02, 0x85, 0x73, - 0x45, 0x08, 0x40, 0xdf, 0x80, 0x32, 0x99, 0x29, 0x63, 0x89, 0xd6, 0xfd, 0x37, 0xe4, 0x6b, 0x8a, - 0x8c, 0xa9, 0x31, 0x7c, 0xd4, 0x83, 0x96, 0xe7, 0xeb, 0xae, 0xdf, 0x1f, 0x3b, 0x1e, 0x3d, 0x67, - 0xca, 0x38, 0xf5, 0xfb, 0x6a, 0x7c, 0x04, 0xa1, 0xd6, 0xb7, 0xbc, 0xe1, 0x0e, 0xc7, 0xd4, 0x9a, - 0xb4, 0x67, 0xd0, 0x44, 0x9f, 0x41, 0x03, 0xdb, 0x46, 0x38, 0x50, 0x29, 0xf7, 0x40, 0x75, 0x6c, - 0x1b, 0x62, 0x98, 0xf0, 0x7c, 0xca, 0xf9, 0xcf, 0xe7, 0xf7, 0x15, 0xe8, 0xa4, 0x0f, 0x68, 0x11, - 0x95, 0xfd, 0x80, 0x75, 0xc2, 0xec, 0x80, 0xa6, 0x4a, 0xb8, 0x38, 0x24, 0x8d, 0x77, 0x51, 0xff, - 0x58, 0x81, 0xd7, 0xc2, 0xe9, 0xd0, 0x4f, 0x2f, 0x8b, 0x5b, 0xd0, 0x6d, 0x68, 0x9b, 0xf6, 0x60, - 0x34, 0x31, 0xf0, 0x13, 0xfb, 0x73, 0xac, 0x8f, 0xfc, 0xc3, 0x53, 0x7a, 0x86, 0x55, 0x2d, 0x05, - 0x57, 0x7f, 0xa4, 0xc0, 0x6a, 0x72, 0x5e, 0x8b, 0x6c, 0xd2, 0xaf, 0x40, 0xd9, 0xb4, 0x0f, 0x9c, - 0x60, 0x8f, 0xae, 0x4e, 0x11, 0x4a, 0x42, 0x8b, 0x21, 0xab, 0x16, 0xbc, 0xfe, 0x18, 0xfb, 0x3d, - 0xdb, 0xc3, 0xae, 0xbf, 0x66, 0xda, 0x23, 0x67, 0xb8, 0xa3, 0xfb, 0x87, 0x0b, 0x08, 0x54, 0x4c, - 0x36, 0x0a, 0x09, 0xd9, 0x50, 0x7f, 0xaa, 0xc0, 0x65, 0x39, 0x3d, 0xbe, 0xf4, 0x2e, 0x54, 0x0f, - 0x4c, 0x3c, 0x32, 0xc8, 0xfe, 0x2a, 0x74, 0x7f, 0x45, 0x9b, 0x08, 0xd6, 0x98, 0x20, 0xf3, 0x15, - 0xbe, 0x91, 0xc1, 0xcd, 0xbb, 0xbe, 0x6b, 0xda, 0xc3, 0x4d, 0xd3, 0xf3, 0x35, 0x86, 0x1f, 0xd9, - 0xcf, 0x62, 0x7e, 0x36, 0xfe, 0x3d, 0x05, 0xae, 0x3e, 0xc6, 0xfe, 0x23, 0xa1, 0x97, 0xc9, 0x77, - 0xd3, 0xf3, 0xcd, 0x81, 0xf7, 0x62, 0x7d, 0xa3, 0x1c, 0x06, 0x5a, 0xfd, 0x89, 0x02, 0xd7, 0x32, - 0x27, 0xc3, 0xb7, 0x8e, 0xeb, 0x9d, 0x40, 0x2b, 0xcb, 0xf5, 0xce, 0x6f, 0xe0, 0xd3, 0x2f, 0xf4, - 0xd1, 0x04, 0xef, 0xe8, 0xa6, 0xcb, 0xf4, 0xce, 0x9c, 0x5a, 0xf8, 0xe7, 0x0a, 0x5c, 0x79, 0x8c, - 0xfd, 0x9d, 0xc0, 0x26, 0xbd, 0xc2, 0xdd, 0x21, 0x38, 0x11, 0xdb, 0x18, 0x38, 0x67, 0x31, 0x98, - 0xfa, 0x07, 0xec, 0x38, 0xa5, 0xf3, 0x7d, 0x25, 0x1b, 0x78, 0x95, 0x4a, 0x42, 0x44, 0x24, 0x1f, - 0x31, 0xd7, 0x81, 0x6f, 0x9f, 0xfa, 0xe7, 0x0a, 0x5c, 0x7a, 0x38, 0x78, 0x36, 0x31, 0x5d, 0xcc, - 0x91, 0x36, 0x9d, 0xc1, 0xd1, 0xfc, 0x9b, 0x1b, 0xba, 0x59, 0x85, 0x98, 0x9b, 0x35, 0xcb, 0x35, - 0x5f, 0x85, 0x8a, 0xcf, 0xfc, 0x3a, 0xe6, 0xa9, 0xf0, 0x16, 0x9d, 0x9f, 0x86, 0x47, 0x58, 0xf7, - 0xfe, 0x77, 0xce, 0xef, 0x27, 0x25, 0x68, 0x7c, 0xc1, 0xdd, 0x31, 0x6a, 0xb5, 0x93, 0x9c, 0xa4, - 0xc8, 0x1d, 0xaf, 0x88, 0x07, 0x27, 0x73, 0xea, 0x1e, 0x43, 0xd3, 0xc3, 0xf8, 0x68, 0x1e, 0x1b, - 0xdd, 0x20, 0x1d, 0x85, 0x6d, 0xdd, 0x84, 0x95, 0x89, 0x4d, 0x43, 0x03, 0x6c, 0xf0, 0x0d, 0x64, - 0x9c, 0x3b, 0x5b, 0x77, 0xa7, 0x3b, 0xa2, 0xcf, 0x79, 0xf4, 0x11, 0x19, 0xab, 0x9c, 0x6b, 0xac, - 0x64, 0x37, 0xd4, 0x83, 0xb6, 0xe1, 0x3a, 0xe3, 0x31, 0x36, 0xfa, 0x5e, 0x30, 0x54, 0x25, 0xdf, - 0x50, 0xbc, 0x9f, 0x18, 0xea, 0x7d, 0x38, 0x9f, 0x9c, 0x69, 0xcf, 0x20, 0x0e, 0x29, 0x39, 0x43, - 0xd9, 0x27, 0x74, 0x07, 0x56, 0xd2, 0xf8, 0x55, 0x8a, 0x9f, 0xfe, 0x80, 0xde, 0x03, 0x94, 0x98, - 0x2a, 0x41, 0xaf, 0x31, 0xf4, 0xf8, 0x64, 0x7a, 0x86, 0xa7, 0xfe, 0x58, 0x81, 0xd5, 0xa7, 0xba, - 0x3f, 0x38, 0x5c, 0xb7, 0xb8, 0xac, 0x2d, 0xa0, 0xab, 0x3e, 0x81, 0xda, 0x31, 0xe7, 0x8b, 0xc0, - 0x20, 0x5d, 0x93, 0xec, 0x4f, 0x94, 0x03, 0xb5, 0xb0, 0x07, 0x89, 0x87, 0x2e, 0x6c, 0x44, 0xe2, - 0xc2, 0x57, 0xa0, 0x35, 0x67, 0x04, 0xb4, 0xea, 0x73, 0x00, 0x3e, 0xb9, 0x2d, 0x6f, 0x38, 0xc7, - 0xbc, 0x3e, 0x86, 0x25, 0x3e, 0x1a, 0x57, 0x8b, 0xb3, 0xf8, 0x27, 0x40, 0x57, 0x7f, 0x56, 0x81, - 0x7a, 0xe4, 0x03, 0x6a, 0x41, 0x41, 0xc8, 0x6b, 0x41, 0xb2, 0xba, 0xc2, 0xec, 0x10, 0xaa, 0x98, - 0x0e, 0xa1, 0x6e, 0x42, 0xcb, 0xa4, 0x7e, 0x48, 0x9f, 0x9f, 0x0a, 0x55, 0x20, 0x35, 0xad, 0xc9, - 0xa0, 0x9c, 0x45, 0xd0, 0x55, 0xa8, 0xdb, 0x13, 0xab, 0xef, 0x1c, 0xf4, 0x5d, 0xe7, 0xc4, 0xe3, - 0xb1, 0x58, 0xcd, 0x9e, 0x58, 0xdf, 0x3e, 0xd0, 0x9c, 0x13, 0x2f, 0x74, 0xf7, 0x2b, 0x67, 0x74, - 0xf7, 0xaf, 0x42, 0xdd, 0xd2, 0x9f, 0x93, 0x51, 0xfb, 0xf6, 0xc4, 0xa2, 0x61, 0x5a, 0x51, 0xab, - 0x59, 0xfa, 0x73, 0xcd, 0x39, 0xd9, 0x9e, 0x58, 0xe8, 0x16, 0xb4, 0x47, 0xba, 0xe7, 0xf7, 0xa3, - 0x71, 0x5e, 0x95, 0xc6, 0x79, 0x2d, 0x02, 0xff, 0x2c, 0x8c, 0xf5, 0xd2, 0x81, 0x43, 0x6d, 0x81, - 0xc0, 0xc1, 0xb0, 0x46, 0xe1, 0x40, 0x90, 0x3f, 0x70, 0x30, 0xac, 0x91, 0x18, 0xe6, 0x63, 0x58, - 0xda, 0xa7, 0xde, 0x9d, 0xd7, 0xa9, 0x67, 0xea, 0x8e, 0x0d, 0xe2, 0xd8, 0x31, 0x27, 0x50, 0x0b, - 0xd0, 0xd1, 0x37, 0xa1, 0x46, 0x8d, 0x2a, 0xed, 0xdb, 0xc8, 0xd5, 0x37, 0xec, 0x40, 0x7a, 0x1b, - 0x78, 0xe4, 0xeb, 0xb4, 0x77, 0x33, 0x5f, 0x6f, 0xd1, 0x81, 0xe8, 0xab, 0x81, 0x8b, 0x75, 0x1f, - 0x1b, 0x6b, 0xa7, 0x8f, 0x1c, 0x6b, 0xac, 0x53, 0x66, 0xea, 0xb4, 0xa8, 0x07, 0x2f, 0xfb, 0x84, - 0xde, 0x82, 0xd6, 0x40, 0xb4, 0x36, 0x5c, 0xc7, 0xea, 0x2c, 0x53, 0x39, 0x4a, 0x40, 0xd1, 0x15, - 0x80, 0x40, 0x53, 0xe9, 0x7e, 0xa7, 0x4d, 0x4f, 0xb1, 0xc6, 0x21, 0x0f, 0x69, 0x1a, 0xc7, 0xf4, - 0xfa, 0x2c, 0x61, 0x62, 0xda, 0xc3, 0xce, 0x0a, 0xa5, 0x58, 0x0f, 0x32, 0x2c, 0xa6, 0x3d, 0x44, - 0x17, 0x61, 0xc9, 0xf4, 0xfa, 0x07, 0xfa, 0x11, 0xee, 0x20, 0xfa, 0xb5, 0x62, 0x7a, 0x1b, 0xfa, - 0x11, 0x56, 0x7f, 0x08, 0x17, 0x42, 0xee, 0x8a, 0x9c, 0x64, 0x9a, 0x29, 0x94, 0x79, 0x99, 0x62, - 0xba, 0x4f, 0xff, 0xcb, 0x12, 0xac, 0xee, 0xea, 0xc7, 0xf8, 0xe5, 0x87, 0x0f, 0xb9, 0xd4, 0xda, - 0x26, 0xac, 0xd0, 0x88, 0xe1, 0x7e, 0x64, 0x3e, 0x53, 0xec, 0x6a, 0x94, 0x15, 0xd2, 0x1d, 0xd1, - 0xb7, 0x88, 0x43, 0x80, 0x07, 0x47, 0x3b, 0x8e, 0x19, 0xda, 0xd4, 0x2b, 0x92, 0x71, 0x1e, 0x09, - 0x2c, 0x2d, 0xda, 0x03, 0xed, 0xc0, 0x72, 0xfc, 0x18, 0x02, 0x6b, 0xfa, 0xf6, 0xd4, 0x20, 0x36, - 0xdc, 0x7d, 0xad, 0x15, 0x3b, 0x0c, 0x0f, 0x75, 0x60, 0x89, 0x9b, 0x42, 0xaa, 0x33, 0xaa, 0x5a, - 0xd0, 0x44, 0x3b, 0x70, 0x9e, 0xad, 0x60, 0x97, 0x0b, 0x04, 0x5b, 0x7c, 0x35, 0xd7, 0xe2, 0x65, - 0x5d, 0xe3, 0xf2, 0x54, 0x3b, 0xab, 0x3c, 0x75, 0x60, 0x89, 0xf3, 0x38, 0xd5, 0x23, 0x55, 0x2d, - 0x68, 0x92, 0x63, 0x0e, 0xb9, 0xbd, 0x4e, 0xbf, 0x85, 0x00, 0x12, 0x7a, 0x41, 0xb8, 0x9f, 0x33, - 0xd2, 0x2d, 0x9f, 0x42, 0x55, 0x70, 0x78, 0x21, 0x37, 0x87, 0x8b, 0x3e, 0x49, 0xfd, 0x5e, 0x4c, - 0xe8, 0x77, 0xf5, 0x9f, 0x14, 0x68, 0xac, 0x93, 0x25, 0x6d, 0x3a, 0x43, 0x6a, 0x8d, 0x6e, 0x42, - 0xcb, 0xc5, 0x03, 0xc7, 0x35, 0xfa, 0xd8, 0xf6, 0x5d, 0x13, 0xb3, 0x28, 0xbd, 0xa4, 0x35, 0x19, - 0xf4, 0x33, 0x06, 0x24, 0x68, 0x44, 0x65, 0x7b, 0xbe, 0x6e, 0x8d, 0xfb, 0x07, 0x44, 0x35, 0x14, - 0x18, 0x9a, 0x80, 0x52, 0xcd, 0xf0, 0x06, 0x34, 0x42, 0x34, 0xdf, 0xa1, 0xf4, 0x4b, 0x5a, 0x5d, - 0xc0, 0xf6, 0x1c, 0xf4, 0x26, 0xb4, 0xe8, 0x9e, 0xf6, 0x47, 0xce, 0xb0, 0x4f, 0x22, 0x5a, 0x6e, - 0xa8, 0x1a, 0x06, 0x9f, 0x16, 0x39, 0xab, 0x38, 0x96, 0x67, 0xfe, 0x00, 0x73, 0x53, 0x25, 0xb0, - 0x76, 0xcd, 0x1f, 0x60, 0xf5, 0x1f, 0x15, 0x68, 0xae, 0xeb, 0xbe, 0xbe, 0xed, 0x18, 0x78, 0x6f, - 0x4e, 0xc3, 0x9e, 0x23, 0xf5, 0x79, 0x19, 0x6a, 0x62, 0x05, 0x7c, 0x49, 0x21, 0x00, 0x6d, 0x40, - 0x2b, 0x70, 0x2d, 0xfb, 0x2c, 0xe2, 0x2a, 0x65, 0x3a, 0x50, 0x11, 0xcb, 0xe9, 0x69, 0xcd, 0xa0, - 0x1b, 0x6d, 0xaa, 0x1b, 0xd0, 0x88, 0x7e, 0x26, 0x54, 0x77, 0x93, 0x8c, 0x22, 0x00, 0x84, 0x1b, - 0xb7, 0x27, 0x16, 0x39, 0x53, 0xae, 0x58, 0x82, 0xa6, 0xfa, 0x23, 0x05, 0x9a, 0xdc, 0xdc, 0xef, - 0x8a, 0x4b, 0x02, 0xba, 0x34, 0x85, 0x2e, 0x8d, 0xfe, 0x46, 0xbf, 0x16, 0xcf, 0xeb, 0xbd, 0x29, - 0x55, 0x02, 0x74, 0x10, 0xea, 0x64, 0xc6, 0x6c, 0x7d, 0x9e, 0x18, 0xff, 0x4b, 0xc2, 0x68, 0xfc, - 0x68, 0x28, 0xa3, 0x75, 0x60, 0x49, 0x37, 0x0c, 0x17, 0x7b, 0x1e, 0x9f, 0x47, 0xd0, 0x24, 0x5f, - 0x8e, 0xb1, 0xeb, 0x05, 0x2c, 0x5f, 0xd4, 0x82, 0x26, 0xfa, 0x26, 0x54, 0x85, 0x57, 0xca, 0xd2, - 0xe1, 0xd7, 0xb3, 0xe7, 0xc9, 0x23, 0x52, 0xd1, 0x43, 0xfd, 0xbb, 0x02, 0xb4, 0xf8, 0x86, 0xad, - 0x71, 0x7b, 0x3c, 0x5d, 0xf8, 0xd6, 0xa0, 0x71, 0x10, 0xca, 0xfe, 0xb4, 0xdc, 0x53, 0x54, 0x45, - 0xc4, 0xfa, 0xcc, 0x12, 0xc0, 0xb8, 0x47, 0x50, 0x5a, 0xc8, 0x23, 0x28, 0x9f, 0x55, 0x83, 0xa5, - 0x7d, 0xc4, 0x8a, 0xc4, 0x47, 0x54, 0x7f, 0x13, 0xea, 0x91, 0x01, 0xa8, 0x86, 0x66, 0x49, 0x2b, - 0xbe, 0x63, 0x41, 0x13, 0x7d, 0x18, 0xfa, 0x45, 0x6c, 0xab, 0x2e, 0x49, 0xe6, 0x92, 0x70, 0x89, - 0xd4, 0x7f, 0x50, 0xa0, 0xc2, 0x47, 0xbe, 0x06, 0x75, 0xae, 0x74, 0xa8, 0xcf, 0xc8, 0x46, 0x07, - 0x0e, 0x22, 0x4e, 0xe3, 0x8b, 0xd3, 0x3a, 0x97, 0xa0, 0x9a, 0xd0, 0x37, 0x4b, 0xdc, 0x2c, 0x04, - 0x9f, 0x22, 0x4a, 0x86, 0x7c, 0x22, 0xfa, 0x05, 0x5d, 0x80, 0xf2, 0xc8, 0x19, 0x8a, 0x4b, 0x20, - 0xd6, 0x50, 0xbf, 0x52, 0x68, 0xce, 0x5e, 0xc3, 0x03, 0xe7, 0x18, 0xbb, 0xa7, 0x8b, 0x27, 0x3b, - 0x1f, 0x44, 0xd8, 0x3c, 0x67, 0xf0, 0x25, 0x3a, 0xa0, 0x07, 0xe1, 0x21, 0x14, 0x65, 0x99, 0x9e, - 0xa8, 0xde, 0xe1, 0x4c, 0x1a, 0x1e, 0xc6, 0x1f, 0xb2, 0xb4, 0x6d, 0x7c, 0x29, 0xf3, 0x7a, 0x3b, - 0x2f, 0x24, 0x90, 0x51, 0x7f, 0xa9, 0x40, 0x37, 0x4c, 0x25, 0x79, 0x6b, 0xa7, 0x8b, 0x5e, 0x8a, - 0xbc, 0x98, 0xf8, 0xea, 0x57, 0x45, 0xd6, 0x9e, 0x08, 0x6d, 0xae, 0xc8, 0x28, 0xc8, 0xd9, 0xdb, - 0x34, 0x2b, 0x9d, 0x5e, 0xd0, 0x22, 0x2c, 0xd3, 0x85, 0xaa, 0xc8, 0x67, 0xb0, 0xcc, 0xbd, 0x68, - 0x13, 0x09, 0xbb, 0xf4, 0x18, 0xfb, 0x1b, 0xf1, 0x54, 0xc8, 0xab, 0xde, 0xc0, 0xe8, 0x6d, 0xc2, - 0x21, 0xbf, 0x4d, 0x28, 0x25, 0x6e, 0x13, 0x38, 0x5c, 0xb5, 0x28, 0x0b, 0xa4, 0x16, 0xf0, 0xb2, - 0x36, 0xec, 0x77, 0x14, 0xe8, 0x70, 0x2a, 0x94, 0x26, 0x09, 0x89, 0x46, 0xd8, 0xc7, 0xc6, 0xd7, - 0x9d, 0x2a, 0xf8, 0x6f, 0x05, 0xda, 0x51, 0xab, 0x4b, 0x0d, 0xe7, 0x47, 0x50, 0xa6, 0x99, 0x16, - 0x3e, 0x83, 0x99, 0xaa, 0x81, 0x61, 0x13, 0xb5, 0x4d, 0x5d, 0xed, 0x3d, 0xe1, 0x20, 0xf0, 0x66, - 0x68, 0xfa, 0x8b, 0x67, 0x37, 0xfd, 0xdc, 0x15, 0x72, 0x26, 0x64, 0x5c, 0x96, 0xa2, 0x0c, 0x01, - 0xe8, 0x13, 0xa8, 0xb0, 0x42, 0x0c, 0x7e, 0xc3, 0x76, 0x33, 0x3e, 0x34, 0x2f, 0xd2, 0x88, 0xe4, - 0xfd, 0x29, 0x40, 0xe3, 0x9d, 0xd4, 0x5f, 0x87, 0xd5, 0x30, 0x1a, 0x65, 0x64, 0xe7, 0x65, 0x5a, - 0xf5, 0x5f, 0x15, 0x38, 0xbf, 0x7b, 0x6a, 0x0f, 0x92, 0xec, 0xbf, 0x0a, 0x95, 0xf1, 0x48, 0x0f, - 0x33, 0xa6, 0xbc, 0x45, 0xdd, 0x40, 0x46, 0x1b, 0x1b, 0xc4, 0x86, 0xb0, 0x3d, 0xab, 0x0b, 0xd8, - 0x9e, 0x33, 0xd3, 0xb4, 0xdf, 0x14, 0xe1, 0x33, 0x36, 0x98, 0xb5, 0x62, 0x69, 0xa8, 0xa6, 0x80, - 0x52, 0x6b, 0xf5, 0x09, 0x00, 0x35, 0xe8, 0xfd, 0xb3, 0x18, 0x71, 0xda, 0x63, 0x93, 0xa8, 0xec, - 0x5f, 0x14, 0xa0, 0x13, 0xd9, 0xa5, 0xaf, 0xdb, 0xbf, 0xc9, 0x88, 0xca, 0x8a, 0x2f, 0x28, 0x2a, - 0x2b, 0x2d, 0xee, 0xd3, 0x94, 0x65, 0x3e, 0xcd, 0xbf, 0x15, 0xa0, 0x15, 0xee, 0xda, 0xce, 0x48, - 0xb7, 0x33, 0x39, 0x61, 0x57, 0xf8, 0xf3, 0xf1, 0x7d, 0x7a, 0x57, 0x26, 0x27, 0x19, 0x07, 0xa1, - 0x25, 0x86, 0x40, 0x57, 0xe8, 0xa1, 0xbb, 0x3e, 0x4b, 0x7c, 0xf1, 0x18, 0x82, 0x09, 0xa4, 0x69, - 0x61, 0x74, 0x07, 0x10, 0x97, 0xa2, 0xbe, 0x69, 0xf7, 0x3d, 0x3c, 0x70, 0x6c, 0x83, 0xc9, 0x57, - 0x59, 0x6b, 0xf3, 0x2f, 0x3d, 0x7b, 0x97, 0xc1, 0xd1, 0x47, 0x50, 0xf2, 0x4f, 0xc7, 0xcc, 0x5b, - 0x69, 0x49, 0xed, 0x7d, 0x38, 0xaf, 0xbd, 0xd3, 0x31, 0xd6, 0x28, 0x7a, 0x50, 0xa9, 0xe3, 0xbb, - 0xfa, 0x31, 0x77, 0xfd, 0x4a, 0x5a, 0x04, 0x42, 0x34, 0x46, 0xb0, 0x87, 0x4b, 0xcc, 0x45, 0xe2, - 0x4d, 0xc6, 0xd9, 0x81, 0xd0, 0xf6, 0x7d, 0x7f, 0x44, 0x53, 0x77, 0x94, 0xb3, 0x03, 0xe8, 0x9e, - 0x3f, 0x52, 0xff, 0xa5, 0x00, 0xed, 0x90, 0xb2, 0x86, 0xbd, 0xc9, 0x28, 0x5b, 0xe0, 0xa6, 0xe7, - 0x46, 0x66, 0xc9, 0xda, 0xb7, 0xa0, 0xce, 0x8f, 0xfd, 0x0c, 0x6c, 0x03, 0xac, 0xcb, 0xe6, 0x14, - 0x3e, 0x2e, 0xbf, 0x20, 0x3e, 0xae, 0xcc, 0x91, 0x5d, 0x90, 0x6f, 0xbe, 0xfa, 0x53, 0x05, 0x5e, - 0x4b, 0xa9, 0xc5, 0xa9, 0x5b, 0x3b, 0x3d, 0xb6, 0xe3, 0xea, 0x32, 0x39, 0x24, 0x57, 0xf0, 0x0f, - 0xa0, 0xe2, 0xd2, 0xd1, 0xf9, 0x55, 0xd0, 0x8d, 0xa9, 0xdc, 0xc5, 0x26, 0xa2, 0xf1, 0x2e, 0xea, - 0x1f, 0x29, 0x70, 0x31, 0x3d, 0xd5, 0x05, 0xac, 0xf6, 0x1a, 0x2c, 0xb1, 0xa1, 0x03, 0x21, 0xbc, - 0x35, 0x5d, 0x08, 0xc3, 0xcd, 0xd1, 0x82, 0x8e, 0xea, 0x2e, 0xac, 0x06, 0xc6, 0x3d, 0xdc, 0xfa, - 0x2d, 0xec, 0xeb, 0x53, 0x22, 0x9b, 0x6b, 0x50, 0x67, 0x2e, 0x32, 0x8b, 0x18, 0x58, 0x4e, 0x00, - 0xf6, 0x45, 0x2a, 0x4d, 0xfd, 0x4f, 0x05, 0x2e, 0x50, 0xeb, 0x98, 0xbc, 0x7b, 0xc9, 0x73, 0x2f, - 0xa7, 0x8a, 0x94, 0xc3, 0xb6, 0x6e, 0xf1, 0x3a, 0x90, 0x9a, 0x16, 0x83, 0xa1, 0x5e, 0x3a, 0xd3, - 0x26, 0x8d, 0x80, 0xc3, 0x8b, 0x5c, 0x12, 0x6d, 0xd3, 0x7b, 0xdc, 0x64, 0x8a, 0x2d, 0xb4, 0xca, - 0xa5, 0x79, 0xac, 0xf2, 0x26, 0xbc, 0x96, 0x58, 0xe9, 0x02, 0x27, 0xaa, 0xfe, 0x95, 0x42, 0x8e, - 0x23, 0x56, 0x4f, 0x33, 0xbf, 0x67, 0x7a, 0x45, 0x5c, 0xfa, 0xf4, 0x4d, 0x23, 0xa9, 0x44, 0x0c, - 0xf4, 0x29, 0xd4, 0x6c, 0x7c, 0xd2, 0x8f, 0x3a, 0x3b, 0x39, 0xdc, 0xf6, 0xaa, 0x8d, 0x4f, 0xe8, - 0x2f, 0x75, 0x1b, 0x2e, 0xa6, 0xa6, 0xba, 0xc8, 0xda, 0xff, 0x5e, 0x81, 0x4b, 0xeb, 0xae, 0x33, - 0xfe, 0xc2, 0x74, 0xfd, 0x89, 0x3e, 0x8a, 0x5f, 0x91, 0xbf, 0x9c, 0xd4, 0xd5, 0xe7, 0x11, 0xb7, - 0x97, 0xf1, 0xcf, 0x1d, 0x89, 0x04, 0xa5, 0x27, 0xc5, 0x17, 0x1d, 0x71, 0x92, 0xff, 0xa3, 0x28, - 0x9b, 0x3c, 0xc7, 0x9b, 0xe1, 0x78, 0xe4, 0x89, 0x20, 0xa4, 0x99, 0xee, 0xe2, 0xbc, 0x99, 0xee, - 0x0c, 0xf5, 0x5e, 0x7a, 0x41, 0xea, 0xfd, 0xcc, 0xa9, 0x97, 0xcf, 0x21, 0x7e, 0x0b, 0x41, 0xcd, - 0xef, 0x5c, 0xd7, 0x17, 0x6b, 0x00, 0x61, 0x46, 0x9e, 0x97, 0x43, 0xe6, 0x19, 0x26, 0xd2, 0x8b, - 0x9c, 0x96, 0x30, 0xa5, 0xdc, 0x94, 0x47, 0x72, 0xc4, 0xdf, 0x81, 0xae, 0x8c, 0x4b, 0x17, 0xe1, - 0xfc, 0x5f, 0x14, 0x00, 0x7a, 0xa2, 0x82, 0x76, 0x3e, 0x5b, 0x70, 0x03, 0x22, 0xee, 0x46, 0x28, - 0xef, 0x51, 0x2e, 0x32, 0x88, 0x48, 0x88, 0xa0, 0x93, 0xe0, 0xa4, 0x02, 0x51, 0x83, 0x8e, 0x13, - 0x91, 0x1a, 0xc6, 0x14, 0x49, 0xf5, 0xfb, 0x3a, 0xd4, 0x5c, 0xe7, 0xa4, 0x4f, 0xc4, 0xcc, 0x08, - 0x4a, 0x84, 0x5d, 0xe7, 0x84, 0x08, 0x9f, 0x81, 0x2e, 0xc2, 0x92, 0xaf, 0x7b, 0x47, 0x64, 0xfc, - 0x4a, 0xa4, 0x4a, 0xc3, 0x40, 0x17, 0xa0, 0x7c, 0x60, 0x8e, 0x30, 0x2b, 0x0a, 0xa8, 0x69, 0xac, - 0x81, 0xbe, 0x11, 0xd4, 0xb2, 0x55, 0x73, 0x57, 0xe2, 0xb0, 0x72, 0xb6, 0xaf, 0x14, 0x58, 0x0e, - 0x77, 0x8d, 0x2a, 0x20, 0xa2, 0xd3, 0xa8, 0x3e, 0x7b, 0xe4, 0x18, 0x4c, 0x55, 0xb4, 0x32, 0x2c, - 0x02, 0xeb, 0xc8, 0xb4, 0x56, 0xd8, 0x65, 0x5a, 0x1c, 0x4c, 0xd6, 0x45, 0x16, 0x6d, 0x1a, 0x41, - 0x65, 0x4a, 0xc5, 0x75, 0x4e, 0x7a, 0x86, 0xd8, 0x0d, 0x56, 0xff, 0xcb, 0xa2, 0x3e, 0xb2, 0x1b, - 0x8f, 0x68, 0x09, 0xf0, 0x0d, 0x68, 0x62, 0xd7, 0x75, 0xdc, 0xbe, 0x85, 0x3d, 0x4f, 0x1f, 0x62, - 0xee, 0x80, 0x37, 0x28, 0x70, 0x8b, 0xc1, 0xd4, 0x3f, 0x29, 0x41, 0x2b, 0x5c, 0x4a, 0x70, 0x0f, - 0x6e, 0x1a, 0xc1, 0x3d, 0xb8, 0x49, 0x8e, 0x0e, 0x5c, 0xa6, 0x0a, 0xc5, 0xe1, 0xae, 0x15, 0x3a, - 0x8a, 0x56, 0xe3, 0xd0, 0x9e, 0x41, 0xcc, 0x32, 0x11, 0x32, 0xdb, 0x31, 0x70, 0x78, 0xb8, 0x10, - 0x80, 0xf8, 0xd9, 0xc6, 0x78, 0xa4, 0x94, 0x83, 0x47, 0xca, 0x39, 0x78, 0xa4, 0x22, 0xe1, 0x91, - 0x55, 0xa8, 0xec, 0x4f, 0x06, 0x47, 0xd8, 0xe7, 0x1e, 0x1b, 0x6f, 0xc5, 0x79, 0xa7, 0x9a, 0xe0, - 0x1d, 0xc1, 0x22, 0xb5, 0x28, 0x8b, 0xbc, 0x0e, 0x35, 0x76, 0x21, 0xdb, 0xf7, 0x3d, 0x7a, 0xbb, - 0x54, 0xd4, 0xaa, 0x0c, 0xb0, 0xe7, 0xa1, 0x8f, 0x03, 0x77, 0xae, 0x2e, 0x13, 0x76, 0xaa, 0x75, - 0x12, 0x5c, 0x12, 0x38, 0x73, 0x6f, 0xc3, 0x72, 0x64, 0x3b, 0xa8, 0x8d, 0x68, 0xd0, 0xa9, 0x46, - 0xdc, 0x79, 0x6a, 0x26, 0x6e, 0x42, 0x2b, 0xdc, 0x12, 0x8a, 0xd7, 0x64, 0x51, 0x94, 0x80, 0x52, - 0x34, 0xc1, 0xc9, 0xad, 0xb3, 0x71, 0x32, 0xba, 0x04, 0x55, 0x1e, 0xfe, 0x78, 0x9d, 0xe5, 0x58, - 0x36, 0x42, 0xfd, 0x3e, 0xa0, 0x70, 0xf6, 0x8b, 0x79, 0x8b, 0x09, 0xf6, 0x28, 0x24, 0xd9, 0x43, - 0xfd, 0x99, 0x02, 0x2b, 0x51, 0x62, 0xf3, 0x1a, 0xde, 0x4f, 0xa1, 0xce, 0xee, 0xf7, 0xfa, 0x44, - 0xf0, 0x79, 0x96, 0xe7, 0xca, 0xd4, 0x73, 0xd1, 0x20, 0x7c, 0x41, 0x40, 0xd8, 0xeb, 0xc4, 0x71, - 0x8f, 0x4c, 0x7b, 0xd8, 0x27, 0x33, 0x0b, 0xc4, 0xad, 0xc1, 0x81, 0xdb, 0x04, 0xa6, 0xfe, 0x58, - 0x81, 0xab, 0x4f, 0xc6, 0x86, 0xee, 0xe3, 0x88, 0x07, 0xb2, 0x68, 0x51, 0xe2, 0x47, 0x41, 0x55, - 0x60, 0x21, 0xdf, 0x1d, 0x15, 0xc3, 0x56, 0xff, 0x46, 0xcc, 0x85, 0x9b, 0x03, 0x7a, 0xa1, 0x39, - 0xa6, 0x17, 0xc4, 0x73, 0xcf, 0xa5, 0x0b, 0xd5, 0x63, 0x3e, 0x5c, 0xf0, 0x22, 0x22, 0x68, 0xc7, - 0xee, 0x41, 0x8b, 0x67, 0xbf, 0x07, 0x55, 0xb7, 0xe0, 0x92, 0x86, 0x3d, 0x6c, 0x1b, 0xb1, 0xd5, - 0xcc, 0x9d, 0x4d, 0x1a, 0x43, 0x57, 0x36, 0xdc, 0x22, 0xcc, 0xca, 0x7c, 0xd7, 0xbe, 0x4b, 0x86, - 0xf5, 0xb9, 0x2a, 0x26, 0x2e, 0x13, 0xa5, 0xe3, 0xab, 0x7f, 0x5d, 0x80, 0x8b, 0x0f, 0x0d, 0x83, - 0x6b, 0x71, 0xee, 0x8d, 0xbd, 0x2c, 0x47, 0x39, 0xe9, 0x48, 0x16, 0xd3, 0x8e, 0xe4, 0x8b, 0xd2, - 0xac, 0xdc, 0xc6, 0xd8, 0x13, 0x2b, 0xb0, 0x9d, 0x2e, 0x2b, 0x10, 0x7a, 0xc0, 0x2f, 0xc6, 0x48, - 0x40, 0x4f, 0xed, 0xe7, 0x6c, 0xff, 0xaa, 0x1a, 0x64, 0xc5, 0xd4, 0x31, 0x74, 0xd2, 0x9b, 0xb5, - 0xa0, 0x2a, 0x09, 0x76, 0x64, 0xec, 0xb0, 0x0c, 0x6a, 0x83, 0xb8, 0x50, 0x14, 0xb4, 0xe3, 0x78, - 0xea, 0x7f, 0x15, 0xa0, 0xb3, 0xab, 0x1f, 0xe3, 0xff, 0x3f, 0x07, 0xf4, 0x5d, 0xb8, 0xe0, 0xe9, - 0xc7, 0xb8, 0x1f, 0x09, 0x8c, 0xfb, 0x2e, 0x7e, 0xc6, 0x5d, 0xd0, 0x77, 0x64, 0x9a, 0x44, 0x5a, - 0x47, 0xa3, 0xad, 0x78, 0x31, 0xb8, 0x86, 0x9f, 0xa1, 0xb7, 0x60, 0x39, 0x5a, 0xa8, 0x45, 0xa6, - 0x56, 0xa5, 0x5b, 0xde, 0x8c, 0xd4, 0x61, 0xf5, 0x0c, 0xf5, 0x19, 0x5c, 0x7e, 0x62, 0x7b, 0xd8, - 0xef, 0x85, 0xb5, 0x44, 0x0b, 0x86, 0x90, 0xd7, 0xa0, 0x1e, 0x6e, 0x7c, 0xea, 0x15, 0x84, 0xe1, - 0xa9, 0x0e, 0x74, 0xb7, 0x74, 0xf7, 0x28, 0xc8, 0x23, 0xaf, 0xb3, 0x9a, 0x8f, 0x97, 0x48, 0xf0, - 0x40, 0x94, 0x40, 0x69, 0xf8, 0x00, 0xbb, 0xd8, 0x1e, 0xe0, 0x4d, 0x67, 0x70, 0x14, 0x29, 0x0d, - 0x56, 0xa2, 0xa5, 0xc1, 0xf3, 0x96, 0x1a, 0xab, 0x3f, 0x2f, 0xc0, 0xea, 0xc3, 0x91, 0x8f, 0xdd, - 0x30, 0xf2, 0x3f, 0x4b, 0x12, 0x23, 0xcc, 0x2a, 0x14, 0xe6, 0xc8, 0x2a, 0xa4, 0xaa, 0xdc, 0x8b, - 0xe9, 0x2a, 0x77, 0x59, 0x0e, 0xa4, 0x34, 0x67, 0x0e, 0xe4, 0x21, 0xc0, 0xd8, 0x75, 0xc6, 0xd8, - 0xf5, 0x4d, 0x1c, 0x84, 0x6f, 0x39, 0xdc, 0x97, 0x48, 0xa7, 0xdb, 0x9f, 0x8a, 0x32, 0xce, 0xbd, - 0xd3, 0x31, 0x46, 0x4b, 0x50, 0xdc, 0xc6, 0x27, 0xed, 0x73, 0x08, 0xa0, 0xb2, 0xed, 0xb8, 0x96, - 0x3e, 0x6a, 0x2b, 0xa8, 0x0e, 0x4b, 0xfc, 0xd6, 0xaa, 0x5d, 0x40, 0x4d, 0xa8, 0x3d, 0x0a, 0x32, - 0xff, 0xed, 0xe2, 0xed, 0x3f, 0x53, 0x60, 0x25, 0x75, 0xaf, 0x82, 0x5a, 0x00, 0x4f, 0xec, 0x01, - 0xbf, 0x70, 0x6a, 0x9f, 0x43, 0x0d, 0xa8, 0x06, 0xd7, 0x4f, 0x6c, 0xbc, 0x3d, 0x87, 0x62, 0xb7, - 0x0b, 0xa8, 0x0d, 0x0d, 0xd6, 0x71, 0x32, 0x18, 0x60, 0xcf, 0x6b, 0x17, 0x05, 0x64, 0x43, 0x37, - 0x47, 0x13, 0x17, 0xb7, 0x4b, 0x84, 0xe6, 0x9e, 0xc3, 0x0b, 0xd9, 0xdb, 0x65, 0x84, 0xa0, 0x15, - 0x54, 0xb5, 0xf3, 0x4e, 0x95, 0x08, 0x2c, 0xe8, 0xb6, 0x74, 0xfb, 0x69, 0x34, 0x3b, 0x4e, 0x97, - 0x77, 0x11, 0xce, 0x3f, 0xb1, 0x0d, 0x7c, 0x60, 0xda, 0xd8, 0x08, 0x3f, 0xb5, 0xcf, 0xa1, 0xf3, - 0xb0, 0xbc, 0x85, 0xdd, 0x21, 0x8e, 0x00, 0x0b, 0x68, 0x05, 0x9a, 0x5b, 0xe6, 0xf3, 0x08, 0xa8, - 0xa8, 0x96, 0xaa, 0x4a, 0x5b, 0xb9, 0xff, 0xbb, 0x57, 0xa0, 0x46, 0x0e, 0xe5, 0x91, 0xe3, 0xb8, - 0x06, 0x1a, 0x01, 0xa2, 0xef, 0x3e, 0xac, 0xb1, 0x63, 0x8b, 0xd7, 0x54, 0xe8, 0x6e, 0xfc, 0x1c, - 0x78, 0x23, 0x8d, 0xc8, 0xb9, 0xb3, 0xfb, 0xa6, 0x14, 0x3f, 0x81, 0xac, 0x9e, 0x43, 0x16, 0xa5, - 0xb6, 0x67, 0x5a, 0x78, 0xcf, 0x1c, 0x1c, 0x05, 0x9e, 0xc5, 0xfb, 0x19, 0x7e, 0x44, 0x1a, 0x35, - 0xa0, 0x77, 0x43, 0x4a, 0x8f, 0x3d, 0xcc, 0x09, 0xac, 0x8c, 0x7a, 0x0e, 0x3d, 0x83, 0x0b, 0x8f, - 0x71, 0xc4, 0x49, 0x0b, 0x08, 0xde, 0xcf, 0x26, 0x98, 0x42, 0x3e, 0x23, 0xc9, 0x4d, 0x28, 0x53, - 0x76, 0x43, 0x32, 0x3f, 0x2e, 0xfa, 0xf0, 0xb9, 0x7b, 0x3d, 0x1b, 0x41, 0x8c, 0xf6, 0x7d, 0x58, - 0x4e, 0x3c, 0x97, 0x44, 0x32, 0xad, 0x2e, 0x7f, 0xf8, 0xda, 0xbd, 0x9d, 0x07, 0x55, 0xd0, 0x1a, - 0x42, 0x2b, 0xfe, 0x5e, 0x04, 0xc9, 0x32, 0xbb, 0xd2, 0x97, 0x6e, 0xdd, 0x77, 0x72, 0x60, 0x0a, - 0x42, 0x16, 0xb4, 0x93, 0xcf, 0xf7, 0xd0, 0xed, 0xa9, 0x03, 0xc4, 0x99, 0xed, 0xdd, 0x5c, 0xb8, - 0x82, 0xdc, 0x29, 0x65, 0x82, 0xd4, 0x8b, 0xb0, 0x24, 0x8f, 0x07, 0xc3, 0x64, 0x3d, 0x55, 0xeb, - 0xde, 0xcb, 0x8d, 0x2f, 0x48, 0xff, 0x36, 0x2b, 0x4b, 0x91, 0xbd, 0xaa, 0x42, 0x1f, 0xc8, 0x87, - 0x9b, 0xf2, 0x1c, 0xac, 0x7b, 0xff, 0x2c, 0x5d, 0xc4, 0x24, 0x7e, 0x48, 0xeb, 0x49, 0x24, 0xef, - 0x92, 0x92, 0x72, 0x17, 0x8c, 0x97, 0xfd, 0xe4, 0xaa, 0xfb, 0xc1, 0x19, 0x7a, 0x88, 0x09, 0x38, - 0xc9, 0xf7, 0x91, 0x81, 0x18, 0xde, 0x9b, 0xc9, 0x35, 0xf3, 0xc9, 0xe0, 0xf7, 0x60, 0x39, 0xe1, - 0xe7, 0xa0, 0xfc, 0xbe, 0x50, 0x77, 0x9a, 0x33, 0xca, 0x44, 0x32, 0x51, 0x9e, 0x83, 0x32, 0xb8, - 0x5f, 0x52, 0xc2, 0xd3, 0xbd, 0x9d, 0x07, 0x55, 0x2c, 0xc4, 0xa3, 0xea, 0x32, 0x51, 0x74, 0x81, - 0xee, 0xc8, 0xc7, 0x90, 0x17, 0x97, 0x74, 0xdf, 0xcb, 0x89, 0x2d, 0x88, 0x1e, 0xc3, 0x79, 0x49, - 0x6d, 0x0c, 0x7a, 0x6f, 0xea, 0x61, 0x25, 0x8b, 0x82, 0xba, 0x77, 0xf3, 0xa2, 0x0b, 0xba, 0xbf, - 0x05, 0x68, 0xf7, 0xd0, 0x39, 0x79, 0xe4, 0xd8, 0x07, 0xe6, 0x70, 0xe2, 0xea, 0xcc, 0x4b, 0xc8, - 0xb2, 0x0d, 0x69, 0xd4, 0x0c, 0x1e, 0x9d, 0xda, 0x43, 0x10, 0xef, 0x03, 0x3c, 0xc6, 0xfe, 0x16, - 0xf6, 0x5d, 0x22, 0x18, 0x6f, 0x65, 0x99, 0x3f, 0x8e, 0x10, 0x90, 0x7a, 0x7b, 0x26, 0x5e, 0xc4, - 0x14, 0xb5, 0xb7, 0x74, 0x7b, 0xa2, 0x8f, 0x22, 0xc5, 0xfd, 0x77, 0xa4, 0xdd, 0x93, 0x68, 0x19, - 0x07, 0x99, 0x89, 0x2d, 0x48, 0x9e, 0x08, 0xd3, 0x1e, 0xb9, 0x8a, 0x9b, 0x6e, 0xda, 0xd3, 0x75, - 0x1e, 0x49, 0xb5, 0x37, 0x05, 0x5f, 0x10, 0xfe, 0x52, 0xa1, 0xe5, 0x55, 0x09, 0x84, 0xa7, 0xa6, - 0x7f, 0xb8, 0x33, 0xd2, 0x6d, 0x2f, 0xcf, 0x14, 0x28, 0xe2, 0x19, 0xa6, 0xc0, 0xf1, 0xc5, 0x14, - 0x0c, 0x68, 0xc6, 0x6e, 0xc8, 0x90, 0xac, 0x1a, 0x5e, 0x76, 0x5b, 0xd8, 0xbd, 0x35, 0x1b, 0x51, - 0x50, 0x39, 0x84, 0x66, 0x20, 0x4a, 0x6c, 0x73, 0xdf, 0xc9, 0x9a, 0x69, 0x88, 0x93, 0xa1, 0x09, - 0xe4, 0xa8, 0x51, 0x4d, 0x90, 0xbe, 0x00, 0x40, 0xf9, 0x2e, 0x8e, 0xa6, 0x69, 0x82, 0xec, 0x5b, - 0x05, 0xa6, 0xea, 0x12, 0x97, 0x6d, 0x72, 0x3d, 0x2a, 0xbd, 0x3b, 0x94, 0xaa, 0xba, 0x8c, 0xbb, - 0x3b, 0xf5, 0x1c, 0x7a, 0x0a, 0x15, 0xfe, 0x6f, 0x1f, 0x6f, 0x4e, 0x4f, 0xda, 0xf1, 0xd1, 0x6f, - 0xce, 0xc0, 0x12, 0x03, 0x1f, 0xc1, 0xc5, 0x8c, 0x94, 0x9d, 0xd4, 0x04, 0x4f, 0x4f, 0xef, 0xcd, - 0x32, 0x0e, 0x82, 0x58, 0x2a, 0x27, 0x37, 0x85, 0x58, 0x56, 0xfe, 0x6e, 0x16, 0x31, 0x1d, 0x50, - 0xfa, 0xfd, 0xae, 0x94, 0x27, 0x32, 0x9f, 0xf9, 0xe6, 0x20, 0x91, 0x7e, 0x82, 0x2b, 0x25, 0x91, - 0xf9, 0x52, 0x77, 0x16, 0x89, 0x3e, 0xac, 0xa4, 0x92, 0x36, 0xe8, 0xdd, 0x0c, 0x73, 0x2d, 0x4b, - 0xed, 0xcc, 0x22, 0x30, 0x84, 0xd7, 0xa4, 0x09, 0x0a, 0xa9, 0xfb, 0x31, 0x2d, 0x95, 0x31, 0x8b, - 0xd0, 0x00, 0xce, 0x4b, 0xd2, 0x12, 0x52, 0xc3, 0x99, 0x9d, 0xbe, 0x98, 0x45, 0xe4, 0x00, 0xba, - 0x6b, 0xae, 0xa3, 0x1b, 0x03, 0xdd, 0xf3, 0x69, 0xaa, 0x80, 0xc4, 0x82, 0x81, 0xff, 0x27, 0x0f, - 0x0e, 0xa4, 0x09, 0x85, 0x59, 0x74, 0xf6, 0xa1, 0x4e, 0x19, 0x92, 0xfd, 0x9b, 0x04, 0x92, 0x5b, - 0xba, 0x08, 0x46, 0x86, 0xfa, 0x94, 0x21, 0x06, 0xa2, 0x79, 0xff, 0xab, 0x1a, 0x54, 0x83, 0x07, - 0x09, 0x5f, 0x73, 0x20, 0xfa, 0x0a, 0x22, 0xc3, 0xef, 0xc1, 0x72, 0xe2, 0x71, 0xb0, 0xf4, 0xb8, - 0xe4, 0x0f, 0x88, 0x67, 0x1d, 0xd7, 0x53, 0xfe, 0xd7, 0x55, 0xc2, 0x49, 0x7c, 0x3b, 0x2b, 0xba, - 0x4c, 0xfa, 0x87, 0x33, 0x06, 0xfe, 0xbf, 0xed, 0x95, 0x6d, 0x03, 0x44, 0xfc, 0xb1, 0xe9, 0x65, - 0x7b, 0xc4, 0xc5, 0x98, 0xb5, 0x5b, 0x96, 0xd4, 0xe5, 0x7a, 0x27, 0x4f, 0x85, 0x54, 0xb6, 0xd1, - 0xcc, 0x76, 0xb4, 0x9e, 0x40, 0x23, 0x5a, 0x50, 0x8b, 0xa4, 0x7f, 0x94, 0x94, 0xae, 0xb8, 0x9d, - 0xb5, 0x8a, 0xad, 0x33, 0xda, 0xe2, 0x19, 0xc3, 0x79, 0xc4, 0x88, 0x24, 0x6f, 0x6a, 0x32, 0x8c, - 0x48, 0xc6, 0xfd, 0x90, 0xd4, 0x77, 0xc9, 0xbe, 0xfe, 0x61, 0x49, 0x86, 0xe4, 0xf5, 0x83, 0x34, - 0xc9, 0x90, 0x71, 0xa1, 0x23, 0x4d, 0x32, 0x64, 0xdd, 0x67, 0xa8, 0xe7, 0xd6, 0x3e, 0xfc, 0xee, - 0x07, 0x43, 0xd3, 0x3f, 0x9c, 0xec, 0x93, 0xd5, 0xdf, 0x63, 0x5d, 0xdf, 0x33, 0x1d, 0xfe, 0xeb, - 0x5e, 0xc0, 0xee, 0xf7, 0xe8, 0x68, 0xf7, 0xc8, 0x68, 0xe3, 0xfd, 0xfd, 0x0a, 0x6d, 0x7d, 0xf8, - 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd8, 0x75, 0x90, 0x7f, 0x7c, 0x4f, 0x00, 0x00, + // 4479 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, 0xe9, 0xf1, + 0x8c, 0xc7, 0xe3, 0xb1, 0x67, 0x7a, 0x18, 0xad, 0x59, 0xef, 0xcc, 0xe2, 0xee, 0x76, 0x7b, 0x0a, + 0xba, 0x7b, 0x7b, 0xb3, 0xdb, 0x63, 0x69, 0x17, 0xa9, 0x94, 0x5d, 0x19, 0x5d, 0x9d, 0xdb, 0x55, + 0x99, 0xe5, 0xcc, 0xac, 0x6e, 0xf7, 0x72, 0xd8, 0x11, 0x48, 0xa0, 0x45, 0x88, 0x45, 0x48, 0x08, + 0x38, 0x20, 0x21, 0x4e, 0xcb, 0xa2, 0x45, 0x48, 0x2b, 0x2e, 0x5c, 0xb8, 0x8e, 0xe0, 0x30, 0x42, + 0x48, 0x1c, 0x39, 0x70, 0x00, 0xee, 0x5c, 0x39, 0xa0, 0xf8, 0x64, 0xe4, 0x2f, 0xb2, 0x2a, 0xbb, + 0xca, 0x1e, 0x23, 0xb8, 0x55, 0x44, 0xbe, 0x78, 0x2f, 0x3e, 0xef, 0x1f, 0x2f, 0x0a, 0x9a, 0x86, + 0xee, 0xe9, 0xdd, 0x9e, 0x6d, 0x3b, 0xc6, 0xbd, 0x91, 0x63, 0x7b, 0x36, 0x5a, 0x1a, 0x9a, 0x83, + 0xe3, 0xb1, 0xcb, 0x5a, 0xf7, 0xc8, 0xe7, 0x76, 0xad, 0x67, 0x0f, 0x87, 0xb6, 0xc5, 0xba, 0xda, + 0x0d, 0xd3, 0xf2, 0xb0, 0x63, 0xe9, 0x03, 0xde, 0xae, 0x85, 0x07, 0xb4, 0x6b, 0x6e, 0xef, 0x10, + 0x0f, 0x75, 0xd6, 0x52, 0x17, 0xa0, 0xf8, 0x78, 0x38, 0xf2, 0x4e, 0xd5, 0x3f, 0x51, 0xa0, 0xb6, + 0x31, 0x18, 0xbb, 0x87, 0x1a, 0x7e, 0x3e, 0xc6, 0xae, 0x87, 0x3e, 0x80, 0xc2, 0xbe, 0xee, 0xe2, + 0x96, 0x72, 0x43, 0xb9, 0x5d, 0x5d, 0xb9, 0x72, 0x2f, 0x42, 0x95, 0xd3, 0xdb, 0x72, 0xfb, 0xab, + 0xba, 0x8b, 0x35, 0x0a, 0x89, 0x10, 0x14, 0x8c, 0xfd, 0xce, 0x7a, 0x2b, 0x77, 0x43, 0xb9, 0x9d, + 0xd7, 0xe8, 0x6f, 0x74, 0x0d, 0xc0, 0xc5, 0xfd, 0x21, 0xb6, 0xbc, 0xce, 0xba, 0xdb, 0xca, 0xdf, + 0xc8, 0xdf, 0xce, 0x6b, 0xa1, 0x1e, 0xa4, 0x42, 0xad, 0x67, 0x0f, 0x06, 0xb8, 0xe7, 0x99, 0xb6, + 0xd5, 0x59, 0x6f, 0x15, 0xe8, 0xd8, 0x48, 0x9f, 0xfa, 0xef, 0x0a, 0xd4, 0xf9, 0xd4, 0xdc, 0x91, + 0x6d, 0xb9, 0x18, 0x7d, 0x04, 0x25, 0xd7, 0xd3, 0xbd, 0xb1, 0xcb, 0x67, 0x77, 0x59, 0x3a, 0xbb, + 0x5d, 0x0a, 0xa2, 0x71, 0x50, 0xe9, 0xf4, 0xe2, 0xe4, 0xf3, 0x49, 0xf2, 0xb1, 0x25, 0x14, 0x12, + 0x4b, 0xb8, 0x0d, 0x8b, 0x07, 0x64, 0x76, 0xbb, 0x01, 0x50, 0x91, 0x02, 0xc5, 0xbb, 0x09, 0x26, + 0xcf, 0x1c, 0xe2, 0xef, 0x1c, 0xec, 0x62, 0x7d, 0xd0, 0x2a, 0x51, 0x5a, 0xa1, 0x1e, 0xf5, 0x9f, + 0x14, 0x68, 0x0a, 0x70, 0xff, 0x1c, 0x2e, 0x40, 0xb1, 0x67, 0x8f, 0x2d, 0x8f, 0x2e, 0xb5, 0xae, + 0xb1, 0x06, 0x7a, 0x13, 0x6a, 0xbd, 0x43, 0xdd, 0xb2, 0xf0, 0xa0, 0x6b, 0xe9, 0x43, 0x4c, 0x17, + 0x55, 0xd1, 0xaa, 0xbc, 0x6f, 0x5b, 0x1f, 0xe2, 0x4c, 0x6b, 0xbb, 0x01, 0xd5, 0x91, 0xee, 0x78, + 0x66, 0x64, 0xf7, 0xc3, 0x5d, 0xa8, 0x0d, 0x65, 0xd3, 0xed, 0x0c, 0x47, 0xb6, 0xe3, 0xb5, 0x8a, + 0x37, 0x94, 0xdb, 0x65, 0x4d, 0xb4, 0x09, 0x05, 0x93, 0xfe, 0xda, 0xd3, 0xdd, 0xa3, 0xce, 0x3a, + 0x5f, 0x51, 0xa4, 0x4f, 0xfd, 0x73, 0x05, 0x96, 0x1f, 0xb9, 0xae, 0xd9, 0xb7, 0x12, 0x2b, 0x5b, + 0x86, 0x92, 0x65, 0x1b, 0xb8, 0xb3, 0x4e, 0x97, 0x96, 0xd7, 0x78, 0x0b, 0x5d, 0x86, 0xca, 0x08, + 0x63, 0xa7, 0xeb, 0xd8, 0x03, 0x7f, 0x61, 0x65, 0xd2, 0xa1, 0xd9, 0x03, 0x8c, 0xbe, 0x0b, 0x4b, + 0x6e, 0x0c, 0x11, 0xe3, 0xab, 0xea, 0xca, 0xcd, 0x7b, 0x09, 0xc9, 0xb8, 0x17, 0x27, 0xaa, 0x25, + 0x47, 0xab, 0x5f, 0xe4, 0xe0, 0xbc, 0x80, 0x63, 0x73, 0x25, 0xbf, 0xc9, 0xce, 0xbb, 0xb8, 0x2f, + 0xa6, 0xc7, 0x1a, 0x59, 0x76, 0x5e, 0x1c, 0x59, 0x3e, 0x7c, 0x64, 0x19, 0x58, 0x3d, 0x7e, 0x1e, + 0xc5, 0xe4, 0x79, 0x5c, 0x87, 0x2a, 0x7e, 0x31, 0x32, 0x1d, 0xdc, 0x25, 0x8c, 0x43, 0xb7, 0xbc, + 0xa0, 0x01, 0xeb, 0xda, 0x33, 0x87, 0x61, 0xd9, 0x58, 0xc8, 0x2c, 0x1b, 0xea, 0x5f, 0x28, 0x70, + 0x31, 0x71, 0x4a, 0x5c, 0xd8, 0x34, 0x68, 0xd2, 0x95, 0x07, 0x3b, 0x43, 0xc4, 0x8e, 0x6c, 0xf8, + 0xdb, 0x93, 0x36, 0x3c, 0x00, 0xd7, 0x12, 0xe3, 0x43, 0x93, 0xcc, 0x65, 0x9f, 0xe4, 0x11, 0x5c, + 0x7c, 0x82, 0x3d, 0x4e, 0x80, 0x7c, 0xc3, 0xee, 0xec, 0xca, 0x2a, 0x2a, 0xd5, 0xb9, 0xb8, 0x54, + 0xab, 0x7f, 0x93, 0x13, 0xb2, 0x48, 0x49, 0x75, 0xac, 0x03, 0x1b, 0x5d, 0x81, 0x8a, 0x00, 0xe1, + 0x5c, 0x11, 0x74, 0xa0, 0x6f, 0x40, 0x91, 0xcc, 0x94, 0xb1, 0x44, 0x63, 0xe5, 0x4d, 0xf9, 0x9a, + 0x42, 0x38, 0x35, 0x06, 0x8f, 0x3a, 0xd0, 0x70, 0x3d, 0xdd, 0xf1, 0xba, 0x23, 0xdb, 0xa5, 0xe7, + 0x4c, 0x19, 0xa7, 0xba, 0xa2, 0x46, 0x31, 0x08, 0xb5, 0xbe, 0xe5, 0xf6, 0x77, 0x38, 0xa4, 0x56, + 0xa7, 0x23, 0xfd, 0x26, 0x7a, 0x0c, 0x35, 0x6c, 0x19, 0x01, 0xa2, 0x42, 0x66, 0x44, 0x55, 0x6c, + 0x19, 0x02, 0x4d, 0x70, 0x3e, 0xc5, 0xec, 0xe7, 0xf3, 0x7b, 0x0a, 0xb4, 0x92, 0x07, 0x34, 0x8f, + 0xca, 0x7e, 0xc8, 0x06, 0x61, 0x76, 0x40, 0x13, 0x25, 0x5c, 0x1c, 0x92, 0xc6, 0x87, 0xa8, 0x7f, + 0xa4, 0xc0, 0x1b, 0xc1, 0x74, 0xe8, 0xa7, 0x57, 0xc5, 0x2d, 0xe8, 0x0e, 0x34, 0x4d, 0xab, 0x37, + 0x18, 0x1b, 0xf8, 0xa9, 0xf5, 0x19, 0xd6, 0x07, 0xde, 0xe1, 0x29, 0x3d, 0xc3, 0xb2, 0x96, 0xe8, + 0x57, 0xff, 0x35, 0x07, 0xcb, 0xf1, 0x79, 0xcd, 0xb3, 0x49, 0xbf, 0x04, 0x45, 0xd3, 0x3a, 0xb0, + 0xfd, 0x3d, 0xba, 0x36, 0x41, 0x28, 0x09, 0x2d, 0x06, 0x8c, 0x6c, 0x40, 0xbe, 0x1a, 0xeb, 0x1d, + 0xe2, 0xde, 0xd1, 0xc8, 0x36, 0xa9, 0xc2, 0x22, 0x28, 0x7e, 0x45, 0x82, 0x42, 0x3e, 0xe3, 0x7b, + 0x6b, 0x0c, 0xc7, 0x9a, 0x40, 0xf1, 0xd8, 0xf2, 0x9c, 0x53, 0x6d, 0xa9, 0x17, 0xef, 0x6f, 0x1f, + 0xc2, 0xb2, 0x1c, 0x18, 0x35, 0x21, 0x7f, 0x84, 0x4f, 0xe9, 0x92, 0x2b, 0x1a, 0xf9, 0x89, 0x1e, + 0x40, 0xf1, 0x58, 0x1f, 0x8c, 0x31, 0xd7, 0x0e, 0x59, 0xd8, 0x97, 0x0d, 0xf8, 0x66, 0xee, 0x81, + 0xa2, 0x0e, 0xe1, 0xf2, 0x13, 0xec, 0x75, 0x2c, 0x17, 0x3b, 0xde, 0xaa, 0x69, 0x0d, 0xec, 0xfe, + 0x8e, 0xee, 0x1d, 0xce, 0xa1, 0x2b, 0x22, 0x62, 0x9f, 0x8b, 0x89, 0xbd, 0xfa, 0x53, 0x05, 0xae, + 0xc8, 0xe9, 0xf1, 0x53, 0x6d, 0x43, 0xf9, 0xc0, 0xc4, 0x03, 0x83, 0xb0, 0x8e, 0x42, 0x59, 0x47, + 0xb4, 0x89, 0xce, 0x18, 0x11, 0x60, 0x7e, 0x78, 0x6f, 0xa6, 0xac, 0x74, 0xd7, 0x73, 0x4c, 0xab, + 0xbf, 0x69, 0xba, 0x9e, 0xc6, 0xe0, 0x43, 0xac, 0x92, 0xcf, 0x2e, 0xa1, 0xbf, 0xab, 0xc0, 0xb5, + 0x27, 0xd8, 0x5b, 0x13, 0x26, 0x87, 0x7c, 0x37, 0x5d, 0xcf, 0xec, 0xb9, 0x2f, 0xd7, 0xed, 0xcb, + 0xe0, 0x7b, 0xa8, 0x3f, 0x51, 0xe0, 0x7a, 0xea, 0x64, 0xf8, 0xd6, 0x71, 0x95, 0xea, 0x1b, 0x1c, + 0xb9, 0x4a, 0xfd, 0x35, 0x7c, 0xfa, 0x39, 0x39, 0xfc, 0x1d, 0xdd, 0x74, 0x98, 0x4a, 0x9d, 0xd1, + 0xc0, 0xfc, 0x5c, 0x81, 0xab, 0x4f, 0xb0, 0xb7, 0xe3, 0x9b, 0xdb, 0xd7, 0xb8, 0x3b, 0x04, 0x26, + 0x64, 0xf6, 0x7d, 0xbf, 0x33, 0xd2, 0xa7, 0xfe, 0x3e, 0x3b, 0x4e, 0xe9, 0x7c, 0x5f, 0xcb, 0x06, + 0x5e, 0xa3, 0x92, 0x10, 0xd2, 0x13, 0x5c, 0xe2, 0xf9, 0xf6, 0xa9, 0x7f, 0xa6, 0xc0, 0xa5, 0x47, + 0xbd, 0xe7, 0x63, 0xd3, 0xc1, 0x1c, 0x68, 0xd3, 0xee, 0x1d, 0xcd, 0xbe, 0xb9, 0x81, 0x07, 0x99, + 0x8b, 0x78, 0x90, 0xd3, 0xa2, 0x8e, 0x65, 0x28, 0x79, 0xcc, 0x65, 0x65, 0x4e, 0x18, 0x6f, 0xd1, + 0xf9, 0x69, 0x78, 0x80, 0x75, 0xf7, 0x7f, 0xe7, 0xfc, 0x7e, 0x52, 0x80, 0xda, 0xe7, 0x5c, 0xb5, + 0x52, 0x87, 0x24, 0xce, 0x49, 0x8a, 0xdc, 0xa7, 0x0c, 0x39, 0xa7, 0x32, 0x7f, 0xf5, 0x09, 0xd4, + 0x5d, 0x8c, 0x8f, 0x66, 0x71, 0x3f, 0x6a, 0x64, 0xa0, 0x70, 0x1b, 0x36, 0x61, 0x69, 0x6c, 0xd1, + 0xa8, 0x07, 0x1b, 0x7c, 0x03, 0x19, 0xe7, 0x4e, 0x37, 0x4b, 0xc9, 0x81, 0xe8, 0x33, 0x1e, 0x58, + 0x85, 0x70, 0x15, 0x33, 0xe1, 0x8a, 0x0f, 0x43, 0x1d, 0x68, 0x1a, 0x8e, 0x3d, 0x1a, 0x61, 0xa3, + 0xeb, 0xfa, 0xa8, 0x4a, 0xd9, 0x50, 0xf1, 0x71, 0x02, 0xd5, 0x07, 0x70, 0x3e, 0x3e, 0xd3, 0x8e, + 0x41, 0x7c, 0x6d, 0x72, 0x86, 0xb2, 0x4f, 0xe8, 0x2e, 0x2c, 0x25, 0xe1, 0xcb, 0x14, 0x3e, 0xf9, + 0x01, 0xbd, 0x0f, 0x28, 0x36, 0x55, 0x02, 0x5e, 0x61, 0xe0, 0xd1, 0xc9, 0x74, 0x0c, 0x57, 0xfd, + 0xb1, 0x02, 0xcb, 0xcf, 0x74, 0xaf, 0x77, 0xb8, 0x3e, 0xe4, 0xb2, 0x36, 0x87, 0xae, 0xfa, 0x04, + 0x2a, 0xc7, 0x9c, 0x2f, 0x7c, 0x83, 0x74, 0x5d, 0xb2, 0x3f, 0x61, 0x0e, 0xd4, 0x82, 0x11, 0x24, + 0xd4, 0xbb, 0xb0, 0x11, 0x0a, 0x79, 0x5f, 0x83, 0xd6, 0x9c, 0x12, 0xab, 0xab, 0x2f, 0x00, 0xf8, + 0xe4, 0xb6, 0xdc, 0xfe, 0x0c, 0xf3, 0x7a, 0x00, 0x0b, 0x1c, 0x1b, 0x57, 0x8b, 0xd3, 0xf8, 0xc7, + 0x07, 0x57, 0x7f, 0x56, 0x82, 0x6a, 0xe8, 0x03, 0x6a, 0x40, 0x4e, 0xc8, 0x6b, 0x4e, 0xb2, 0xba, + 0xdc, 0xf4, 0xe8, 0x30, 0x9f, 0x8c, 0x0e, 0x6f, 0x41, 0xc3, 0xa4, 0x7e, 0x48, 0x97, 0x9f, 0x0a, + 0x55, 0x20, 0x15, 0xad, 0xce, 0x7a, 0x39, 0x8b, 0xa0, 0x6b, 0x50, 0xb5, 0xc6, 0xc3, 0xae, 0x7d, + 0xd0, 0x75, 0xec, 0x13, 0x97, 0x87, 0x99, 0x15, 0x6b, 0x3c, 0xfc, 0xce, 0x81, 0x66, 0x9f, 0xb8, + 0x41, 0x24, 0x53, 0x3a, 0x63, 0x24, 0x73, 0x0d, 0xaa, 0x43, 0xfd, 0x05, 0xc1, 0xda, 0xb5, 0xc6, + 0x43, 0x1a, 0x81, 0xe6, 0xb5, 0xca, 0x50, 0x7f, 0xa1, 0xd9, 0x27, 0xdb, 0xe3, 0x21, 0xba, 0x0d, + 0xcd, 0x81, 0xee, 0x7a, 0xdd, 0x70, 0x08, 0x5b, 0xa6, 0x21, 0x6c, 0x83, 0xf4, 0x3f, 0x0e, 0xc2, + 0xd8, 0x64, 0x4c, 0x54, 0x99, 0x23, 0x26, 0x32, 0x86, 0x83, 0x00, 0x11, 0x64, 0x8f, 0x89, 0x8c, + 0xe1, 0x40, 0xa0, 0x79, 0x00, 0x0b, 0xfb, 0xd4, 0xbb, 0x73, 0x5b, 0xd5, 0x54, 0xdd, 0xb1, 0x41, + 0x1c, 0x3b, 0xe6, 0x04, 0x6a, 0x3e, 0x38, 0xfa, 0x16, 0x54, 0xa8, 0x51, 0xa5, 0x63, 0x6b, 0x99, + 0xc6, 0x06, 0x03, 0xc8, 0x68, 0x03, 0x0f, 0x3c, 0x9d, 0x8e, 0xae, 0x67, 0x1b, 0x2d, 0x06, 0x10, + 0x7d, 0xd5, 0x73, 0xb0, 0xee, 0x61, 0x63, 0xf5, 0x74, 0xcd, 0x1e, 0x8e, 0x74, 0xca, 0x4c, 0xad, + 0x06, 0x0d, 0x4e, 0x64, 0x9f, 0xd0, 0xdb, 0xd0, 0xe8, 0x89, 0xd6, 0x86, 0x63, 0x0f, 0x5b, 0x8b, + 0x54, 0x8e, 0x62, 0xbd, 0xe8, 0x2a, 0x80, 0xaf, 0xa9, 0x74, 0xaf, 0xd5, 0xa4, 0xa7, 0x58, 0xe1, + 0x3d, 0x8f, 0x68, 0x86, 0xca, 0x74, 0xbb, 0x2c, 0x17, 0x64, 0x5a, 0xfd, 0xd6, 0x12, 0xa5, 0x58, + 0xf5, 0x93, 0x47, 0xa6, 0xd5, 0x47, 0x17, 0x61, 0xc1, 0x74, 0xbb, 0x07, 0xfa, 0x11, 0x6e, 0x21, + 0xfa, 0xb5, 0x64, 0xba, 0x1b, 0xfa, 0x11, 0x56, 0x7f, 0x04, 0x17, 0x02, 0xee, 0x0a, 0x9d, 0x64, + 0x92, 0x29, 0x94, 0x59, 0x99, 0x62, 0xb2, 0x4f, 0xff, 0x55, 0x01, 0x96, 0x77, 0xf5, 0x63, 0xfc, + 0xea, 0xc3, 0x87, 0x4c, 0x6a, 0x6d, 0x13, 0x96, 0x68, 0xc4, 0xb0, 0x12, 0x9a, 0xcf, 0x04, 0xbb, + 0x1a, 0x66, 0x85, 0xe4, 0x40, 0xf4, 0x6d, 0xe2, 0x10, 0xe0, 0xde, 0xd1, 0x0e, 0x09, 0xc1, 0x7c, + 0x9b, 0x7a, 0x55, 0x82, 0x67, 0x4d, 0x40, 0x69, 0xe1, 0x11, 0x68, 0x07, 0x16, 0xa3, 0xc7, 0xe0, + 0x5b, 0xd3, 0x77, 0x26, 0xc6, 0xe7, 0xc1, 0xee, 0x6b, 0x8d, 0xc8, 0x61, 0xb8, 0xa8, 0x05, 0x0b, + 0xdc, 0x14, 0x52, 0x9d, 0x51, 0xd6, 0xfc, 0x26, 0xda, 0x81, 0xf3, 0x6c, 0x05, 0xbb, 0x5c, 0x20, + 0xd8, 0xe2, 0xcb, 0x99, 0x16, 0x2f, 0x1b, 0x1a, 0x95, 0xa7, 0xca, 0x59, 0xe5, 0xa9, 0x05, 0x0b, + 0x9c, 0xc7, 0xa9, 0x1e, 0x29, 0x6b, 0x7e, 0x93, 0x1c, 0x73, 0xc0, 0xed, 0x55, 0xfa, 0x2d, 0xe8, + 0x20, 0xa1, 0x17, 0x04, 0xfb, 0x39, 0x25, 0x93, 0xf4, 0x29, 0x94, 0x05, 0x87, 0x67, 0x0f, 0x81, + 0xc5, 0x98, 0xb8, 0x7e, 0xcf, 0xc7, 0xf4, 0xbb, 0xfa, 0x8f, 0x0a, 0xd4, 0xd6, 0xc9, 0x92, 0x36, + 0xed, 0x3e, 0xb5, 0x46, 0xb7, 0xa0, 0xe1, 0xe0, 0x9e, 0xed, 0x18, 0x5d, 0x6c, 0x79, 0x8e, 0x89, + 0x59, 0x02, 0xa2, 0xa0, 0xd5, 0x59, 0xef, 0x63, 0xd6, 0x49, 0xc0, 0x88, 0xca, 0x76, 0x3d, 0x7d, + 0x38, 0xea, 0x1e, 0x10, 0xd5, 0x90, 0x63, 0x60, 0xa2, 0x97, 0x6a, 0x86, 0x37, 0xa1, 0x16, 0x80, + 0x79, 0x36, 0xa5, 0x5f, 0xd0, 0xaa, 0xa2, 0x6f, 0xcf, 0x46, 0x6f, 0x41, 0x83, 0xee, 0x69, 0x77, + 0x60, 0xf7, 0xbb, 0x24, 0xa2, 0xe5, 0x86, 0xaa, 0x66, 0xf0, 0x69, 0x91, 0xb3, 0x8a, 0x42, 0xb9, + 0xe6, 0x0f, 0x31, 0x37, 0x55, 0x02, 0x6a, 0xd7, 0xfc, 0x21, 0x56, 0xff, 0x41, 0x81, 0xfa, 0xba, + 0xee, 0xe9, 0xdb, 0xb6, 0x81, 0xf7, 0x66, 0x34, 0xec, 0x19, 0xb2, 0xba, 0x57, 0xa0, 0x22, 0x56, + 0xc0, 0x97, 0x14, 0x74, 0xa0, 0x0d, 0x68, 0xf8, 0xae, 0x65, 0x97, 0x45, 0x5c, 0x85, 0x54, 0x07, + 0x2a, 0x64, 0x39, 0x5d, 0xad, 0xee, 0x0f, 0xa3, 0x4d, 0x75, 0x03, 0x6a, 0xe1, 0xcf, 0x84, 0xea, + 0x6e, 0x9c, 0x51, 0x44, 0x07, 0xe1, 0xc6, 0xed, 0xf1, 0x90, 0x9c, 0x29, 0x57, 0x2c, 0x7e, 0x53, + 0xfd, 0x2d, 0x05, 0xea, 0xdc, 0xdc, 0xef, 0x8a, 0xfb, 0x0f, 0xba, 0x34, 0x96, 0x67, 0xa1, 0xbf, + 0xd1, 0x37, 0xa3, 0x29, 0xcb, 0xb7, 0xa4, 0x4a, 0x80, 0x22, 0xa1, 0x4e, 0x66, 0xc4, 0xd6, 0x67, + 0x89, 0xf1, 0xbf, 0x20, 0x8c, 0xc6, 0x8f, 0x86, 0x32, 0x5a, 0x0b, 0x16, 0x74, 0xc3, 0x70, 0xb0, + 0xeb, 0xf2, 0x79, 0xf8, 0x4d, 0xf2, 0xe5, 0x18, 0x3b, 0xae, 0xcf, 0xf2, 0x79, 0xcd, 0x6f, 0xa2, + 0x6f, 0x41, 0x59, 0x78, 0xa5, 0x2c, 0x41, 0x75, 0x23, 0x7d, 0x9e, 0x3c, 0x22, 0x15, 0x23, 0xd4, + 0xbf, 0xcd, 0x41, 0x83, 0x6f, 0xd8, 0x2a, 0xb7, 0xc7, 0x93, 0x85, 0x6f, 0x15, 0x6a, 0x07, 0x81, + 0xec, 0x4f, 0x4a, 0xab, 0x85, 0x55, 0x44, 0x64, 0xcc, 0x34, 0x01, 0x8c, 0x7a, 0x04, 0x85, 0xb9, + 0x3c, 0x82, 0xe2, 0x59, 0x35, 0x58, 0xd2, 0x47, 0x2c, 0x49, 0x7c, 0x44, 0xf5, 0xd7, 0xa1, 0x1a, + 0x42, 0x40, 0x35, 0x34, 0x4b, 0x5a, 0xf1, 0x1d, 0xf3, 0x9b, 0xe8, 0xa3, 0xc0, 0x2f, 0x62, 0x5b, + 0x75, 0x49, 0x32, 0x97, 0x98, 0x4b, 0xa4, 0xfe, 0xbd, 0x02, 0x25, 0x8e, 0xf9, 0x3a, 0x54, 0xb9, + 0xd2, 0xa1, 0x3e, 0x23, 0xc3, 0x0e, 0xbc, 0x8b, 0x38, 0x8d, 0x2f, 0x4f, 0xeb, 0x5c, 0x82, 0x72, + 0x4c, 0xdf, 0x2c, 0x70, 0xb3, 0xe0, 0x7f, 0x0a, 0x29, 0x19, 0xf2, 0x89, 0xe8, 0x17, 0x74, 0x01, + 0x8a, 0x03, 0xbb, 0x2f, 0xee, 0xb7, 0x58, 0x43, 0xfd, 0x52, 0xa1, 0xd7, 0x11, 0x1a, 0xee, 0xd9, + 0xc7, 0xd8, 0x39, 0x9d, 0x3f, 0x8f, 0xfb, 0x30, 0xc4, 0xe6, 0x19, 0x83, 0x2f, 0x31, 0x00, 0x3d, + 0x0c, 0x0e, 0x21, 0x2f, 0xcb, 0xf4, 0x84, 0xf5, 0x0e, 0x67, 0xd2, 0xe0, 0x30, 0xfe, 0x40, 0xa1, + 0x19, 0xe9, 0xe8, 0x52, 0x66, 0xf5, 0x76, 0x5e, 0x4a, 0x20, 0xa3, 0x7e, 0xa5, 0x40, 0x3b, 0x48, + 0x25, 0xb9, 0xab, 0xa7, 0xf3, 0xde, 0xf7, 0xbc, 0x9c, 0xf8, 0xea, 0x97, 0xc5, 0x85, 0x04, 0x11, + 0xda, 0x4c, 0x91, 0x91, 0x7f, 0x1d, 0x61, 0xd1, 0xac, 0x74, 0x72, 0x41, 0xf3, 0xb0, 0x4c, 0x1b, + 0xca, 0x22, 0x9f, 0xc1, 0x2e, 0x25, 0x44, 0x9b, 0x48, 0xd8, 0xa5, 0x27, 0xd8, 0xdb, 0x88, 0xa6, + 0x42, 0x5e, 0xf7, 0x06, 0x86, 0x2f, 0x4a, 0x0e, 0xf9, 0x45, 0x49, 0x21, 0x76, 0x51, 0xc2, 0xfb, + 0xd5, 0x21, 0x65, 0x81, 0xc4, 0x02, 0x5e, 0xd5, 0x86, 0xfd, 0xb6, 0x02, 0x2d, 0x4e, 0x85, 0xd2, + 0x24, 0x21, 0xd1, 0x00, 0x7b, 0xd8, 0xf8, 0xba, 0x53, 0x05, 0xff, 0xad, 0x40, 0x33, 0x6c, 0x75, + 0xa9, 0xe1, 0xfc, 0x18, 0x8a, 0x34, 0xd3, 0xc2, 0x67, 0x30, 0x55, 0x35, 0x30, 0x68, 0xa2, 0xb6, + 0xa9, 0xab, 0xbd, 0x27, 0x1c, 0x04, 0xde, 0x0c, 0x4c, 0x7f, 0xfe, 0xec, 0xa6, 0x9f, 0xbb, 0x42, + 0xf6, 0x98, 0xe0, 0x65, 0x29, 0xca, 0xa0, 0x03, 0x7d, 0x02, 0x25, 0x56, 0x63, 0xc2, 0x2f, 0x0f, + 0x6f, 0x45, 0x51, 0xf3, 0xfa, 0x93, 0x50, 0xde, 0x9f, 0x76, 0x68, 0x7c, 0x90, 0xfa, 0xab, 0xb0, + 0x1c, 0x44, 0xa3, 0x8c, 0xec, 0xac, 0x4c, 0xab, 0xfe, 0x8b, 0x02, 0xe7, 0x77, 0x4f, 0xad, 0x5e, + 0x9c, 0xfd, 0x97, 0xa1, 0x34, 0x1a, 0xe8, 0x41, 0xc6, 0x94, 0xb7, 0xa8, 0x1b, 0xc8, 0x68, 0x63, + 0x83, 0xd8, 0x10, 0xb6, 0x67, 0x55, 0xd1, 0xb7, 0x67, 0x4f, 0x35, 0xed, 0xb7, 0x44, 0xf8, 0x8c, + 0x0d, 0x66, 0xad, 0x58, 0x1a, 0xaa, 0x2e, 0x7a, 0xa9, 0xb5, 0xfa, 0x04, 0x80, 0x1a, 0xf4, 0xee, + 0x59, 0x8c, 0x38, 0x1d, 0xb1, 0x49, 0x54, 0xf6, 0x2f, 0x72, 0xd0, 0x0a, 0xed, 0xd2, 0xd7, 0xed, + 0xdf, 0xa4, 0x44, 0x65, 0xf9, 0x97, 0x14, 0x95, 0x15, 0xe6, 0xf7, 0x69, 0x8a, 0x32, 0x9f, 0xe6, + 0xdf, 0x72, 0xd0, 0x08, 0x76, 0x6d, 0x67, 0xa0, 0x5b, 0xa9, 0x9c, 0xb0, 0x2b, 0xfc, 0xf9, 0xe8, + 0x3e, 0xbd, 0x27, 0x93, 0x93, 0x94, 0x83, 0xd0, 0x62, 0x28, 0xd0, 0x55, 0x7a, 0xe8, 0x8e, 0xc7, + 0x12, 0x5f, 0x3c, 0x86, 0x60, 0x02, 0x69, 0x0e, 0x31, 0xba, 0x0b, 0x88, 0x4b, 0x51, 0xd7, 0xb4, + 0xba, 0x2e, 0xee, 0xd9, 0x96, 0xc1, 0xe4, 0xab, 0xa8, 0x35, 0xf9, 0x97, 0x8e, 0xb5, 0xcb, 0xfa, + 0xd1, 0xc7, 0x50, 0xf0, 0x4e, 0x47, 0xcc, 0x5b, 0x69, 0x48, 0xed, 0x7d, 0x30, 0xaf, 0xbd, 0xd3, + 0x11, 0xd6, 0x28, 0xb8, 0x5f, 0x84, 0xe4, 0x39, 0xfa, 0x31, 0x77, 0xfd, 0x0a, 0x5a, 0xa8, 0x87, + 0x68, 0x0c, 0x7f, 0x0f, 0x17, 0x98, 0x8b, 0xc4, 0x9b, 0x8c, 0xb3, 0x7d, 0xa1, 0xed, 0x7a, 0xde, + 0x80, 0xa6, 0xee, 0x28, 0x67, 0xfb, 0xbd, 0x7b, 0xde, 0x40, 0xfd, 0xe7, 0x1c, 0x34, 0x03, 0xca, + 0x1a, 0x76, 0xc7, 0x83, 0x74, 0x81, 0x9b, 0x9c, 0x1b, 0x99, 0x26, 0x6b, 0xdf, 0x86, 0x2a, 0x3f, + 0xf6, 0x33, 0xb0, 0x0d, 0xb0, 0x21, 0x9b, 0x13, 0xf8, 0xb8, 0xf8, 0x92, 0xf8, 0xb8, 0x34, 0x43, + 0x76, 0x41, 0xbe, 0xf9, 0xea, 0x4f, 0x15, 0x78, 0x23, 0xa1, 0x16, 0x27, 0x6e, 0xed, 0xe4, 0xd8, + 0x8e, 0xab, 0xcb, 0x38, 0x4a, 0xae, 0xe0, 0x1f, 0x42, 0xc9, 0xa1, 0xd8, 0xf9, 0x55, 0xd0, 0xcd, + 0x89, 0xdc, 0xc5, 0x26, 0xa2, 0xf1, 0x21, 0xea, 0x1f, 0x2a, 0x70, 0x31, 0x39, 0xd5, 0x39, 0xac, + 0xf6, 0x2a, 0x2c, 0x30, 0xd4, 0xbe, 0x10, 0xde, 0x9e, 0x2c, 0x84, 0xc1, 0xe6, 0x68, 0xfe, 0x40, + 0x75, 0x17, 0x96, 0x7d, 0xe3, 0x1e, 0x6c, 0xfd, 0x16, 0xf6, 0xf4, 0x09, 0x91, 0xcd, 0x75, 0xa8, + 0x32, 0x17, 0x99, 0x45, 0x0c, 0x2c, 0x27, 0x00, 0xfb, 0x22, 0x95, 0xa6, 0xfe, 0xa7, 0x02, 0x17, + 0xa8, 0x75, 0x8c, 0xdf, 0xbd, 0x64, 0xb9, 0x97, 0x53, 0x45, 0xca, 0x61, 0x5b, 0x1f, 0xf2, 0x12, + 0x97, 0x8a, 0x16, 0xe9, 0x43, 0x9d, 0x64, 0xa6, 0x4d, 0x1a, 0x01, 0x07, 0x17, 0xb9, 0x24, 0xda, + 0xa6, 0xf7, 0xb8, 0xf1, 0x14, 0x5b, 0x60, 0x95, 0x0b, 0xb3, 0x58, 0xe5, 0x4d, 0x78, 0x23, 0xb6, + 0xd2, 0x39, 0x4e, 0x54, 0xfd, 0x4b, 0x85, 0x1c, 0x47, 0xa4, 0x54, 0x68, 0x76, 0xcf, 0xf4, 0xaa, + 0xb8, 0xf4, 0xe9, 0x9a, 0x46, 0x5c, 0x89, 0x18, 0xe8, 0x53, 0xa8, 0x58, 0xf8, 0xa4, 0x1b, 0x76, + 0x76, 0x32, 0xb8, 0xed, 0x65, 0x0b, 0x9f, 0xd0, 0x5f, 0xea, 0x36, 0x5c, 0x4c, 0x4c, 0x75, 0x9e, + 0xb5, 0xff, 0x9d, 0x02, 0x97, 0xd6, 0x1d, 0x7b, 0xf4, 0xb9, 0xe9, 0x78, 0x63, 0x7d, 0x10, 0xbd, + 0x22, 0x7f, 0x35, 0xa9, 0xab, 0xcf, 0x42, 0x6e, 0x2f, 0xe3, 0x9f, 0xbb, 0x12, 0x09, 0x4a, 0x4e, + 0x8a, 0x2f, 0x3a, 0xe4, 0x24, 0xff, 0x47, 0x5e, 0x36, 0x79, 0x0e, 0x37, 0xc5, 0xf1, 0xc8, 0x12, + 0x41, 0x48, 0x33, 0xdd, 0xf9, 0x59, 0x33, 0xdd, 0x29, 0xea, 0xbd, 0xf0, 0x92, 0xd4, 0xfb, 0x99, + 0x53, 0x2f, 0x9f, 0x41, 0xf4, 0x16, 0x82, 0x9a, 0xdf, 0x99, 0xae, 0x2f, 0x56, 0x01, 0x82, 0x8c, + 0x3c, 0xaf, 0xf4, 0xcc, 0x82, 0x26, 0x34, 0x8a, 0x9c, 0x96, 0x30, 0xa5, 0xdc, 0x94, 0x87, 0x72, + 0xc4, 0xdf, 0x85, 0xb6, 0x8c, 0x4b, 0xe7, 0xe1, 0xfc, 0x5f, 0xe4, 0x00, 0x3a, 0xa2, 0x38, 0x78, + 0x36, 0x5b, 0x70, 0x13, 0x42, 0xee, 0x46, 0x20, 0xef, 0x61, 0x2e, 0x32, 0x88, 0x48, 0x88, 0xa0, + 0x93, 0xc0, 0x24, 0x02, 0x51, 0x83, 0xe2, 0x09, 0x49, 0x0d, 0x63, 0x8a, 0xb8, 0xfa, 0xbd, 0x0c, + 0x15, 0xc7, 0x3e, 0xe9, 0x12, 0x31, 0x33, 0xfc, 0xea, 0x67, 0xc7, 0x3e, 0x21, 0xc2, 0x67, 0xa0, + 0x8b, 0xb0, 0xe0, 0xe9, 0xee, 0x11, 0xc1, 0x5f, 0x0a, 0x55, 0x69, 0x18, 0xe8, 0x02, 0x14, 0x0f, + 0xcc, 0x01, 0x66, 0x45, 0x01, 0x15, 0x8d, 0x35, 0xd0, 0x37, 0xfc, 0x32, 0xbd, 0x72, 0xe6, 0x4a, + 0x1c, 0x0a, 0xaf, 0x7e, 0xa9, 0xc0, 0x62, 0xb0, 0x6b, 0x54, 0x01, 0x11, 0x9d, 0x46, 0xf5, 0xd9, + 0x9a, 0x6d, 0x30, 0x55, 0xd1, 0x48, 0xb1, 0x08, 0x6c, 0x20, 0xd3, 0x5a, 0xc1, 0x90, 0x49, 0x71, + 0x30, 0x59, 0x17, 0x59, 0xb4, 0x69, 0xf8, 0x95, 0x29, 0x25, 0xc7, 0x3e, 0xe9, 0x18, 0x62, 0x37, + 0x58, 0x69, 0x33, 0x8b, 0xfa, 0xc8, 0x6e, 0xac, 0xd1, 0xea, 0xe6, 0x9b, 0x50, 0xc7, 0x8e, 0x63, + 0x3b, 0xdd, 0x21, 0x76, 0x5d, 0xbd, 0x8f, 0xb9, 0x03, 0x5e, 0xa3, 0x9d, 0x5b, 0xac, 0x4f, 0xfd, + 0xe3, 0x02, 0x34, 0x82, 0xa5, 0xf8, 0xf7, 0xe0, 0xa6, 0xe1, 0xdf, 0x83, 0x9b, 0xe4, 0xe8, 0xc0, + 0x61, 0xaa, 0x50, 0x1c, 0xee, 0x6a, 0xae, 0xa5, 0x68, 0x15, 0xde, 0xdb, 0x31, 0x88, 0x59, 0x26, + 0x42, 0x66, 0xd9, 0x06, 0x0e, 0x0e, 0x17, 0xfc, 0x2e, 0x7e, 0xb6, 0x11, 0x1e, 0x29, 0x64, 0xe0, + 0x91, 0x62, 0x06, 0x1e, 0x29, 0x49, 0x78, 0x64, 0x19, 0x4a, 0xfb, 0xe3, 0xde, 0x11, 0xf6, 0xb8, + 0xc7, 0xc6, 0x5b, 0x51, 0xde, 0x29, 0xc7, 0x78, 0x47, 0xb0, 0x48, 0x25, 0xcc, 0x22, 0x97, 0xa1, + 0xc2, 0x2e, 0x64, 0xbb, 0x9e, 0x4b, 0x6f, 0x97, 0xf2, 0x5a, 0x99, 0x75, 0xec, 0xb9, 0xe8, 0x81, + 0xef, 0xce, 0x55, 0x65, 0xc2, 0x4e, 0xb5, 0x4e, 0x8c, 0x4b, 0x7c, 0x67, 0xee, 0x1d, 0x58, 0x0c, + 0x6d, 0x07, 0xb5, 0x11, 0x35, 0x3a, 0xd5, 0x90, 0x3b, 0x4f, 0xcd, 0xc4, 0x2d, 0x68, 0x04, 0x5b, + 0x42, 0xe1, 0xea, 0x2c, 0x8a, 0x12, 0xbd, 0x14, 0x4c, 0x70, 0x72, 0xe3, 0x6c, 0x9c, 0x8c, 0x2e, + 0x41, 0x99, 0x87, 0x3f, 0x6e, 0x6b, 0x31, 0x92, 0x8d, 0x50, 0x7f, 0x00, 0x28, 0x98, 0xfd, 0x7c, + 0xde, 0x62, 0x8c, 0x3d, 0x72, 0x71, 0xf6, 0x50, 0x7f, 0xa6, 0xc0, 0x52, 0x98, 0xd8, 0xac, 0x86, + 0xf7, 0x53, 0xa8, 0xb2, 0xfb, 0xbd, 0x2e, 0x11, 0x7c, 0x9e, 0xe5, 0xb9, 0x3a, 0xf1, 0x5c, 0x34, + 0x08, 0x1e, 0x47, 0x10, 0xf6, 0x3a, 0xb1, 0x9d, 0x23, 0xd3, 0xea, 0x77, 0xc9, 0xcc, 0x7c, 0x71, + 0xab, 0xf1, 0xce, 0x6d, 0xd2, 0xa7, 0xfe, 0x58, 0x81, 0x6b, 0x4f, 0x47, 0x86, 0xee, 0xe1, 0x90, + 0x07, 0x32, 0x6f, 0x51, 0xe2, 0xc7, 0x7e, 0x55, 0x60, 0x2e, 0xdb, 0x1d, 0x15, 0x83, 0x56, 0xff, + 0x5a, 0xcc, 0x25, 0x51, 0xc9, 0x3b, 0xfb, 0x5c, 0xda, 0x50, 0x3e, 0xe6, 0xe8, 0xfc, 0xc7, 0x1e, + 0x7e, 0x3b, 0x72, 0x0f, 0x9a, 0x3f, 0xfb, 0x3d, 0xa8, 0xba, 0x05, 0x97, 0x34, 0xec, 0x62, 0xcb, + 0x88, 0xac, 0x66, 0xe6, 0x6c, 0xd2, 0x08, 0xda, 0x32, 0x74, 0xf3, 0x30, 0x2b, 0xf3, 0x5d, 0xbb, + 0x0e, 0x41, 0xeb, 0x71, 0x55, 0x4c, 0x5c, 0x26, 0x4a, 0xc7, 0x53, 0xff, 0x2a, 0x07, 0x17, 0x1f, + 0x19, 0x06, 0xd7, 0xe2, 0xdc, 0x1b, 0x7b, 0x55, 0x8e, 0x72, 0xdc, 0x91, 0xcc, 0x27, 0x1d, 0xc9, + 0x97, 0xa5, 0x59, 0xb9, 0x8d, 0xb1, 0xc6, 0x43, 0xdf, 0x76, 0x3a, 0xac, 0x40, 0xe8, 0x21, 0xbf, + 0x18, 0x23, 0x01, 0x3d, 0xb5, 0x9f, 0xd3, 0xfd, 0xab, 0xb2, 0x9f, 0x15, 0x53, 0x47, 0xd0, 0x4a, + 0x6e, 0xd6, 0x9c, 0xaa, 0xc4, 0xdf, 0x91, 0x91, 0xcd, 0x32, 0xa8, 0x35, 0xe2, 0x42, 0xd1, 0xae, + 0x1d, 0xdb, 0x55, 0xff, 0x2b, 0x07, 0xad, 0x5d, 0xfd, 0x18, 0xff, 0xff, 0x39, 0xa0, 0xef, 0xc1, + 0x05, 0x57, 0x3f, 0xc6, 0xdd, 0x50, 0x60, 0xdc, 0x75, 0xf0, 0x73, 0xee, 0x82, 0xbe, 0x2b, 0xd3, + 0x24, 0xd2, 0x3a, 0x1a, 0x6d, 0xc9, 0x8d, 0xf4, 0x6b, 0xf8, 0x39, 0x7a, 0x1b, 0x16, 0xc3, 0x85, + 0x5a, 0x64, 0x6a, 0x65, 0xba, 0xe5, 0xf5, 0x50, 0x1d, 0x56, 0xc7, 0x50, 0x9f, 0xc3, 0x95, 0xa7, + 0x96, 0x8b, 0xbd, 0x4e, 0x50, 0x4b, 0x34, 0x67, 0x08, 0x79, 0x1d, 0xaa, 0xc1, 0xc6, 0x27, 0x1e, + 0x78, 0x18, 0xae, 0x6a, 0x43, 0x7b, 0x4b, 0x77, 0x8e, 0xfc, 0x3c, 0xf2, 0x3a, 0xab, 0xf9, 0x78, + 0x85, 0x04, 0x0f, 0x44, 0x09, 0x94, 0x86, 0x0f, 0xb0, 0x83, 0xad, 0x1e, 0xde, 0xb4, 0x7b, 0x47, + 0xa1, 0xd2, 0x60, 0x25, 0x5c, 0x1a, 0x3c, 0x6b, 0xa9, 0xb1, 0xfa, 0xf3, 0x1c, 0x2c, 0x3f, 0x1a, + 0x78, 0xd8, 0x09, 0x22, 0xff, 0xb3, 0x24, 0x31, 0x82, 0xac, 0x42, 0x6e, 0x86, 0xac, 0x42, 0xa2, + 0xca, 0x3d, 0x9f, 0xac, 0x72, 0x97, 0xe5, 0x40, 0x0a, 0x33, 0xe6, 0x40, 0x1e, 0x01, 0x8c, 0x1c, + 0x7b, 0x84, 0x1d, 0xcf, 0xc4, 0x7e, 0xf8, 0x96, 0xc1, 0x7d, 0x09, 0x0d, 0xba, 0xf3, 0xa9, 0x28, + 0xe3, 0xdc, 0x3b, 0x1d, 0x61, 0xb4, 0x00, 0xf9, 0x6d, 0x7c, 0xd2, 0x3c, 0x87, 0x00, 0x4a, 0xdb, + 0xb6, 0x33, 0xd4, 0x07, 0x4d, 0x05, 0x55, 0x61, 0x81, 0xdf, 0x5a, 0x35, 0x73, 0xa8, 0x0e, 0x95, + 0x35, 0x3f, 0xf3, 0xdf, 0xcc, 0xdf, 0xf9, 0x53, 0x05, 0x96, 0x12, 0xf7, 0x2a, 0xa8, 0x01, 0xf0, + 0xd4, 0xea, 0xf1, 0x0b, 0xa7, 0xe6, 0x39, 0x54, 0x83, 0xb2, 0x7f, 0xfd, 0xc4, 0xf0, 0xed, 0xd9, + 0x14, 0xba, 0x99, 0x43, 0x4d, 0xa8, 0xb1, 0x81, 0xe3, 0x5e, 0x0f, 0xbb, 0x6e, 0x33, 0x2f, 0x7a, + 0x36, 0x74, 0x73, 0x30, 0x76, 0x70, 0xb3, 0x40, 0x68, 0xee, 0xd9, 0xbc, 0x90, 0xbd, 0x59, 0x44, + 0x08, 0x1a, 0x7e, 0x55, 0x3b, 0x1f, 0x54, 0x0a, 0xf5, 0xf9, 0xc3, 0x16, 0xee, 0x3c, 0x0b, 0x67, + 0xc7, 0xe9, 0xf2, 0x2e, 0xc2, 0xf9, 0xa7, 0x96, 0x81, 0x0f, 0x4c, 0x0b, 0x1b, 0xc1, 0xa7, 0xe6, + 0x39, 0x74, 0x1e, 0x16, 0xb7, 0xb0, 0xd3, 0xc7, 0xa1, 0xce, 0x1c, 0x5a, 0x82, 0xfa, 0x96, 0xf9, + 0x22, 0xd4, 0x95, 0x57, 0x0b, 0x65, 0xa5, 0xa9, 0xac, 0xfc, 0xce, 0x55, 0xa8, 0x90, 0x43, 0x59, + 0xb3, 0x6d, 0xc7, 0x40, 0x03, 0x40, 0xf4, 0xdd, 0xc7, 0x70, 0x64, 0x5b, 0xe2, 0xa1, 0x18, 0xba, + 0x17, 0x3d, 0x07, 0xde, 0x48, 0x02, 0x72, 0xee, 0x6c, 0xbf, 0x25, 0x85, 0x8f, 0x01, 0xab, 0xe7, + 0xd0, 0x90, 0x52, 0xdb, 0x33, 0x87, 0x78, 0xcf, 0xec, 0x1d, 0xf9, 0x9e, 0xc5, 0x07, 0x29, 0x7e, + 0x44, 0x12, 0xd4, 0xa7, 0x77, 0x53, 0x4a, 0x8f, 0x3d, 0xcc, 0xf1, 0xad, 0x8c, 0x7a, 0x0e, 0x3d, + 0x87, 0x0b, 0x4f, 0x70, 0xc8, 0x49, 0xf3, 0x09, 0xae, 0xa4, 0x13, 0x4c, 0x00, 0x9f, 0x91, 0xe4, + 0x26, 0x14, 0x29, 0xbb, 0x21, 0x99, 0x1f, 0x17, 0x7e, 0xd3, 0xdd, 0xbe, 0x91, 0x0e, 0x20, 0xb0, + 0xfd, 0x00, 0x16, 0x63, 0x2f, 0x41, 0x91, 0x4c, 0xab, 0xcb, 0xdf, 0xf4, 0xb6, 0xef, 0x64, 0x01, + 0x15, 0xb4, 0xfa, 0xd0, 0x88, 0xbe, 0x17, 0x41, 0xb7, 0x33, 0x3c, 0x3d, 0x63, 0x94, 0xde, 0xcd, + 0xfc, 0x48, 0x8d, 0x32, 0x41, 0x33, 0xfe, 0x32, 0x11, 0xdd, 0x99, 0x88, 0x20, 0xca, 0x6c, 0xef, + 0x65, 0x82, 0x15, 0xe4, 0x4e, 0x29, 0x13, 0x24, 0x5e, 0x84, 0xc5, 0x79, 0xdc, 0x47, 0x93, 0xf6, + 0x54, 0xad, 0x7d, 0x3f, 0x33, 0xbc, 0x20, 0xfd, 0x9b, 0xac, 0x2c, 0x45, 0xf6, 0xaa, 0x0a, 0x7d, + 0x28, 0x47, 0x37, 0xe1, 0x39, 0x58, 0x7b, 0xe5, 0x2c, 0x43, 0xc4, 0x24, 0x7e, 0x44, 0xeb, 0x49, + 0x24, 0xef, 0x92, 0xe2, 0x72, 0xe7, 0xe3, 0x4b, 0x7f, 0x72, 0xd5, 0xfe, 0xf0, 0x0c, 0x23, 0xc4, + 0x04, 0xec, 0xf8, 0xd3, 0x4f, 0x5f, 0x0c, 0xef, 0x4f, 0xe5, 0x9a, 0xd9, 0x64, 0xf0, 0xfb, 0xb0, + 0x18, 0xf3, 0x73, 0x50, 0x76, 0x5f, 0xa8, 0x3d, 0xc9, 0x19, 0x65, 0x22, 0x19, 0x2b, 0xcf, 0x41, + 0x29, 0xdc, 0x2f, 0x29, 0xe1, 0x69, 0xdf, 0xc9, 0x02, 0x2a, 0x16, 0xe2, 0x52, 0x75, 0x19, 0x2b, + 0xba, 0x40, 0x77, 0xe5, 0x38, 0xe4, 0xc5, 0x25, 0xed, 0xf7, 0x33, 0x42, 0x0b, 0xa2, 0xc7, 0x70, + 0x5e, 0x52, 0x1b, 0x83, 0xde, 0x9f, 0x78, 0x58, 0xf1, 0xa2, 0xa0, 0xf6, 0xbd, 0xac, 0xe0, 0x82, + 0xee, 0x6f, 0x00, 0xda, 0x3d, 0xb4, 0x4f, 0xd6, 0x6c, 0xeb, 0xc0, 0xec, 0x8f, 0x1d, 0x9d, 0x79, + 0x09, 0x69, 0xb6, 0x21, 0x09, 0x9a, 0xc2, 0xa3, 0x13, 0x47, 0x08, 0xe2, 0x5d, 0x80, 0x27, 0xd8, + 0xdb, 0xc2, 0x9e, 0x43, 0x04, 0xe3, 0xed, 0x34, 0xf3, 0xc7, 0x01, 0x7c, 0x52, 0xef, 0x4c, 0x85, + 0x0b, 0x99, 0xa2, 0xe6, 0x96, 0x6e, 0x8d, 0xf5, 0x41, 0xa8, 0xb8, 0xff, 0xae, 0x74, 0x78, 0x1c, + 0x2c, 0xe5, 0x20, 0x53, 0xa1, 0x05, 0xc9, 0x13, 0x61, 0xda, 0x43, 0x57, 0x71, 0x93, 0x4d, 0x7b, + 0xb2, 0xce, 0x23, 0xae, 0xf6, 0x26, 0xc0, 0x0b, 0xc2, 0x5f, 0x28, 0xb4, 0xbc, 0x2a, 0x06, 0xf0, + 0xcc, 0xf4, 0x0e, 0x77, 0x06, 0xba, 0xe5, 0x66, 0x99, 0x02, 0x05, 0x3c, 0xc3, 0x14, 0x38, 0xbc, + 0x98, 0x82, 0x01, 0xf5, 0xc8, 0x0d, 0x19, 0x92, 0x55, 0xc3, 0xcb, 0x6e, 0x0b, 0xdb, 0xb7, 0xa7, + 0x03, 0x0a, 0x2a, 0x87, 0x50, 0xf7, 0x45, 0x89, 0x6d, 0xee, 0xbb, 0x69, 0x33, 0x0d, 0x60, 0x52, + 0x34, 0x81, 0x1c, 0x34, 0xac, 0x09, 0x92, 0x17, 0x00, 0x28, 0xdb, 0xc5, 0xd1, 0x24, 0x4d, 0x90, + 0x7e, 0xab, 0xc0, 0x54, 0x5d, 0xec, 0xb2, 0x4d, 0xae, 0x47, 0xa5, 0x77, 0x87, 0x52, 0x55, 0x97, + 0x72, 0x77, 0xa7, 0x9e, 0x43, 0xcf, 0xa0, 0xc4, 0xff, 0xc8, 0xe4, 0xad, 0xc9, 0x49, 0x3b, 0x8e, + 0xfd, 0xd6, 0x14, 0x28, 0x81, 0xf8, 0x08, 0x2e, 0xa6, 0xa4, 0xec, 0xa4, 0x26, 0x78, 0x72, 0x7a, + 0x6f, 0x9a, 0x71, 0x10, 0xc4, 0x12, 0x39, 0xb9, 0x09, 0xc4, 0xd2, 0xf2, 0x77, 0xd3, 0x88, 0xe9, + 0x80, 0x92, 0xef, 0x77, 0xa5, 0x3c, 0x91, 0xfa, 0xcc, 0x37, 0x03, 0x89, 0xe4, 0x13, 0x5c, 0x29, + 0x89, 0xd4, 0x97, 0xba, 0xd3, 0x48, 0x74, 0x61, 0x29, 0x91, 0xb4, 0x41, 0xef, 0xa5, 0x98, 0x6b, + 0x59, 0x6a, 0x67, 0x1a, 0x81, 0x3e, 0xbc, 0x21, 0x4d, 0x50, 0x48, 0xdd, 0x8f, 0x49, 0xa9, 0x8c, + 0x69, 0x84, 0x7a, 0x70, 0x5e, 0x92, 0x96, 0x90, 0x1a, 0xce, 0xf4, 0xf4, 0xc5, 0x34, 0x22, 0x07, + 0xd0, 0x5e, 0x75, 0x6c, 0xdd, 0xe8, 0xe9, 0xae, 0x47, 0x53, 0x05, 0x24, 0x16, 0xf4, 0xfd, 0x3f, + 0x79, 0x70, 0x20, 0x4d, 0x28, 0x4c, 0xa3, 0xb3, 0x0f, 0x55, 0xca, 0x90, 0xec, 0x8f, 0x32, 0x90, + 0xdc, 0xd2, 0x85, 0x20, 0x52, 0xd4, 0xa7, 0x0c, 0xd0, 0x17, 0xcd, 0x95, 0x2f, 0x2b, 0x50, 0xf6, + 0x1f, 0x24, 0x7c, 0xcd, 0x81, 0xe8, 0x6b, 0x88, 0x0c, 0xbf, 0x0f, 0x8b, 0xb1, 0xc7, 0xc1, 0xd2, + 0xe3, 0x92, 0x3f, 0x20, 0x9e, 0x76, 0x5c, 0xcf, 0xf8, 0xbf, 0x72, 0x09, 0x27, 0xf1, 0x9d, 0xb4, + 0xe8, 0x32, 0xee, 0x1f, 0x4e, 0x41, 0xfc, 0x7f, 0xdb, 0x2b, 0xdb, 0x06, 0x08, 0xf9, 0x63, 0x93, + 0xcb, 0xf6, 0x88, 0x8b, 0x31, 0x6d, 0xb7, 0x86, 0x52, 0x97, 0xeb, 0xdd, 0x2c, 0x15, 0x52, 0xe9, + 0x46, 0x33, 0xdd, 0xd1, 0x7a, 0x0a, 0xb5, 0x70, 0x41, 0x2d, 0x92, 0xfe, 0x07, 0x54, 0xb2, 0xe2, + 0x76, 0xda, 0x2a, 0xb6, 0xce, 0x68, 0x8b, 0xa7, 0xa0, 0x73, 0x89, 0x11, 0x89, 0xdf, 0xd4, 0xa4, + 0x18, 0x91, 0x94, 0xfb, 0x21, 0xa9, 0xef, 0x92, 0x7e, 0xfd, 0xc3, 0x92, 0x0c, 0xf1, 0xeb, 0x07, + 0x69, 0x92, 0x21, 0xe5, 0x42, 0x47, 0x9a, 0x64, 0x48, 0xbb, 0xcf, 0x50, 0xcf, 0xad, 0x7e, 0xf4, + 0xbd, 0x0f, 0xfb, 0xa6, 0x77, 0x38, 0xde, 0x27, 0xab, 0xbf, 0xcf, 0x86, 0xbe, 0x6f, 0xda, 0xfc, + 0xd7, 0x7d, 0x9f, 0xdd, 0xef, 0x53, 0x6c, 0xf7, 0x09, 0xb6, 0xd1, 0xfe, 0x7e, 0x89, 0xb6, 0x3e, + 0xfa, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf1, 0xf1, 0x32, 0x41, 0x57, 0x50, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/internal/querycoordv2/meta/coordinator_broker.go b/internal/querycoordv2/meta/coordinator_broker.go index fcc58e2e7d..aa797a5b7e 100644 --- a/internal/querycoordv2/meta/coordinator_broker.go +++ b/internal/querycoordv2/meta/coordinator_broker.go @@ -45,7 +45,7 @@ type Broker interface { GetCollectionSchema(ctx context.Context, collectionID UniqueID) (*schemapb.CollectionSchema, error) GetPartitions(ctx context.Context, collectionID UniqueID) ([]UniqueID, error) GetRecoveryInfo(ctx context.Context, collectionID UniqueID, partitionID UniqueID) ([]*datapb.VchannelInfo, []*datapb.SegmentBinlogs, error) - GetSegmentInfo(ctx context.Context, segmentID ...UniqueID) ([]*datapb.SegmentInfo, error) + GetSegmentInfo(ctx context.Context, segmentID ...UniqueID) (*datapb.GetSegmentInfoResponse, error) GetIndexInfo(ctx context.Context, collectionID UniqueID, segmentID UniqueID) ([]*querypb.FieldIndexInfo, error) } @@ -138,7 +138,7 @@ func (broker *CoordinatorBroker) GetRecoveryInfo(ctx context.Context, collection return recoveryInfo.Channels, recoveryInfo.Binlogs, nil } -func (broker *CoordinatorBroker) GetSegmentInfo(ctx context.Context, ids ...UniqueID) ([]*datapb.SegmentInfo, error) { +func (broker *CoordinatorBroker) GetSegmentInfo(ctx context.Context, ids ...UniqueID) (*datapb.GetSegmentInfoResponse, error) { ctx, cancel := context.WithTimeout(ctx, brokerRPCTimeout) defer cancel() @@ -160,7 +160,7 @@ func (broker *CoordinatorBroker) GetSegmentInfo(ctx context.Context, ids ...Uniq return nil, fmt.Errorf("no such segment in DataCoord") } - return resp.GetInfos(), nil + return resp, nil } func (broker *CoordinatorBroker) GetIndexInfo(ctx context.Context, collectionID UniqueID, segmentID UniqueID) ([]*querypb.FieldIndexInfo, error) { diff --git a/internal/querycoordv2/meta/mock_broker.go b/internal/querycoordv2/meta/mock_broker.go index 0a40602647..534d1623b9 100644 --- a/internal/querycoordv2/meta/mock_broker.go +++ b/internal/querycoordv2/meta/mock_broker.go @@ -226,7 +226,7 @@ func (_c *MockBroker_GetRecoveryInfo_Call) Return(_a0 []*datapb.VchannelInfo, _a } // GetSegmentInfo provides a mock function with given fields: ctx, segmentID -func (_m *MockBroker) GetSegmentInfo(ctx context.Context, segmentID ...int64) ([]*datapb.SegmentInfo, error) { +func (_m *MockBroker) GetSegmentInfo(ctx context.Context, segmentID ...int64) (*datapb.GetSegmentInfoResponse, error) { _va := make([]interface{}, len(segmentID)) for _i := range segmentID { _va[_i] = segmentID[_i] @@ -236,12 +236,12 @@ func (_m *MockBroker) GetSegmentInfo(ctx context.Context, segmentID ...int64) ([ _ca = append(_ca, _va...) ret := _m.Called(_ca...) - var r0 []*datapb.SegmentInfo - if rf, ok := ret.Get(0).(func(context.Context, ...int64) []*datapb.SegmentInfo); ok { + var r0 *datapb.GetSegmentInfoResponse + if rf, ok := ret.Get(0).(func(context.Context, ...int64) *datapb.GetSegmentInfoResponse); ok { r0 = rf(ctx, segmentID...) } else { if ret.Get(0) != nil { - r0 = ret.Get(0).([]*datapb.SegmentInfo) + r0 = ret.Get(0).(*datapb.GetSegmentInfoResponse) } } @@ -281,7 +281,7 @@ func (_c *MockBroker_GetSegmentInfo_Call) Run(run func(ctx context.Context, segm return _c } -func (_c *MockBroker_GetSegmentInfo_Call) Return(_a0 []*datapb.SegmentInfo, _a1 error) *MockBroker_GetSegmentInfo_Call { +func (_c *MockBroker_GetSegmentInfo_Call) Return(_a0 *datapb.GetSegmentInfoResponse, _a1 error) *MockBroker_GetSegmentInfo_Call { _c.Call.Return(_a0, _a1) return _c } diff --git a/internal/querycoordv2/task/executor.go b/internal/querycoordv2/task/executor.go index 93e5735a8f..4fd12dd488 100644 --- a/internal/querycoordv2/task/executor.go +++ b/internal/querycoordv2/task/executor.go @@ -246,12 +246,12 @@ func (ex *Executor) loadSegment(task *SegmentTask, step int) error { task.CollectionID(), partitions..., ) - segments, err := ex.broker.GetSegmentInfo(ctx, task.SegmentID()) - if err != nil || len(segments) == 0 { + resp, err := ex.broker.GetSegmentInfo(ctx, task.SegmentID()) + if err != nil || len(resp.GetInfos()) == 0 { log.Warn("failed to get segment info from DataCoord", zap.Error(err)) return err } - segment := segments[0] + segment := resp.GetInfos()[0] indexes, err := ex.broker.GetIndexInfo(ctx, task.CollectionID(), segment.GetID()) if err != nil { log.Warn("failed to get index of segment", zap.Error(err)) @@ -269,7 +269,7 @@ func (ex *Executor) loadSegment(task *SegmentTask, step int) error { } log = log.With(zap.Int64("shardLeader", leader)) - req := packLoadSegmentRequest(task, action, schema, loadMeta, loadInfo, segment) + req := packLoadSegmentRequest(task, action, schema, loadMeta, loadInfo, resp) loadTask := NewLoadSegmentsTask(task, step, req) ex.merger.Add(loadTask) log.Info("load segment task committed") diff --git a/internal/querycoordv2/task/task_test.go b/internal/querycoordv2/task/task_test.go index 27910e3e08..8255c26b2f 100644 --- a/internal/querycoordv2/task/task_test.go +++ b/internal/querycoordv2/task/task_test.go @@ -236,13 +236,13 @@ func (suite *TaskSuite) TestSubscribeChannelTask() { } for channel, segment := range suite.growingSegments { suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment). - Return([]*datapb.SegmentInfo{ + Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partitions[0], InsertChannel: channel, - }, + }}, }, nil) } // for _, partition := range partitions { @@ -375,13 +375,13 @@ func (suite *TaskSuite) TestLoadSegmentTask() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.loadSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, nil) } @@ -503,13 +503,13 @@ func (suite *TaskSuite) TestLoadSegmentTaskFailed() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.loadSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, errors.New("index not ready")) } @@ -702,13 +702,13 @@ func (suite *TaskSuite) TestMoveSegmentTask() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.moveSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, nil) } @@ -802,13 +802,13 @@ func (suite *TaskSuite) TestTaskCanceled() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.loadSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, nil) } @@ -883,13 +883,13 @@ func (suite *TaskSuite) TestSegmentTaskStale() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.loadSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, nil) } diff --git a/internal/querycoordv2/task/utils.go b/internal/querycoordv2/task/utils.go index 8aaa5c3776..46a19fec5a 100644 --- a/internal/querycoordv2/task/utils.go +++ b/internal/querycoordv2/task/utils.go @@ -20,13 +20,17 @@ import ( "context" "time" + "go.uber.org/zap" + "github.com/milvus-io/milvus-proto/go-api/commonpb" "github.com/milvus-io/milvus-proto/go-api/schemapb" + "github.com/milvus-io/milvus/internal/log" "github.com/milvus-io/milvus/internal/proto/datapb" "github.com/milvus-io/milvus/internal/proto/internalpb" "github.com/milvus-io/milvus/internal/proto/querypb" "github.com/milvus-io/milvus/internal/querycoordv2/meta" "github.com/milvus-io/milvus/internal/util/commonpbutil" + "github.com/milvus-io/milvus/internal/util/tsoutil" "github.com/milvus-io/milvus/internal/util/typeutil" ) @@ -77,11 +81,37 @@ func packLoadSegmentRequest( schema *schemapb.CollectionSchema, loadMeta *querypb.LoadMetaInfo, loadInfo *querypb.SegmentLoadInfo, - segment *datapb.SegmentInfo, + resp *datapb.GetSegmentInfoResponse, ) *querypb.LoadSegmentsRequest { - deltaPosition := segment.GetDmlPosition() - if deltaPosition == nil { + var deltaPosition *internalpb.MsgPosition + segment := resp.GetInfos()[0] + + var posSrcStr string + if resp.GetChannelCheckpoint() != nil && resp.ChannelCheckpoint[segment.InsertChannel] != nil { + deltaPosition = resp.ChannelCheckpoint[segment.InsertChannel] + posSrcStr = "channelCheckpoint" + } else if segment.GetDmlPosition() != nil { + deltaPosition = segment.GetDmlPosition() + posSrcStr = "segmentDMLPos" + } else { deltaPosition = segment.GetStartPosition() + posSrcStr = "segmentStartPos" + } + + posTime := tsoutil.PhysicalTime(deltaPosition.GetTimestamp()) + tsLag := time.Since(posTime) + if tsLag >= 10*time.Minute { + log.Warn("deltaPosition is quite stale when packLoadSegmentRequest", + zap.Int64("taskID", task.ID()), + zap.Int64("collectionID", task.CollectionID()), + zap.Int64("segmentID", task.SegmentID()), + zap.Int64("node", action.Node()), + zap.Int64("source", task.SourceID()), + zap.String("channel", segment.InsertChannel), + zap.String("posSource", posSrcStr), + zap.Uint64("posTs", deltaPosition.GetTimestamp()), + zap.Time("posTime", posTime), + zap.Duration("tsLag", tsLag)) } return &querypb.LoadSegmentsRequest{ @@ -167,7 +197,7 @@ func fillSubDmChannelRequest( return err } segmentInfos := make(map[int64]*datapb.SegmentInfo) - for _, info := range resp { + for _, info := range resp.GetInfos() { segmentInfos[info.GetID()] = info } req.SegmentInfos = segmentInfos diff --git a/internal/querycoordv2/task/utils_test.go b/internal/querycoordv2/task/utils_test.go new file mode 100644 index 0000000000..fa1c8d98fb --- /dev/null +++ b/internal/querycoordv2/task/utils_test.go @@ -0,0 +1,123 @@ +// Licensed to the LF AI & Data foundation under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package task + +import ( + "context" + "testing" + "time" + + "github.com/golang/protobuf/proto" + "github.com/stretchr/testify/assert" + + "github.com/milvus-io/milvus/internal/proto/datapb" + "github.com/milvus-io/milvus/internal/proto/internalpb" + "github.com/milvus-io/milvus/internal/util/tsoutil" +) + +func Test_packLoadSegmentRequest(t *testing.T) { + mockVChannel := "fake-by-dev-rootcoord-dml-1-test-packLoadSegmentRequest-v0" + mockPChannel := "fake-by-dev-rootcoord-dml-1" + + t0 := tsoutil.ComposeTSByTime(time.Now().Add(-20*time.Minute), 0) + t1 := tsoutil.ComposeTSByTime(time.Now().Add(-8*time.Minute), 0) + t2 := tsoutil.ComposeTSByTime(time.Now().Add(-5*time.Minute), 0) + t3 := tsoutil.ComposeTSByTime(time.Now().Add(-1*time.Minute), 0) + + segmentInfo := &datapb.SegmentInfo{ + ID: 0, + InsertChannel: mockVChannel, + StartPosition: &internalpb.MsgPosition{ + ChannelName: mockPChannel, + Timestamp: t1, + }, + DmlPosition: &internalpb.MsgPosition{ + ChannelName: mockPChannel, + Timestamp: t2, + }, + } + + t.Run("test set deltaPosition from channel checkpoint", func(t *testing.T) { + segmentAction := NewSegmentAction(0, 0, "", 0) + segmentTask, err := NewSegmentTask(context.TODO(), 5*time.Second, 0, 0, 0, segmentAction) + assert.NoError(t, err) + + resp := &datapb.GetSegmentInfoResponse{ + Infos: []*datapb.SegmentInfo{ + proto.Clone(segmentInfo).(*datapb.SegmentInfo), + }, + ChannelCheckpoint: map[string]*internalpb.MsgPosition{ + mockVChannel: { + ChannelName: mockPChannel, + Timestamp: t3, + }, + }, + } + req := packLoadSegmentRequest(segmentTask, segmentAction, nil, nil, nil, resp) + assert.Equal(t, 1, len(req.GetDeltaPositions())) + assert.Equal(t, mockPChannel, req.DeltaPositions[0].ChannelName) + assert.Equal(t, t3, req.DeltaPositions[0].Timestamp) + }) + + t.Run("test set deltaPosition from segment dmlPosition", func(t *testing.T) { + segmentAction := NewSegmentAction(0, 0, "", 0) + segmentTask, err := NewSegmentTask(context.TODO(), 5*time.Second, 0, 0, 0, segmentAction) + assert.NoError(t, err) + + resp := &datapb.GetSegmentInfoResponse{ + Infos: []*datapb.SegmentInfo{ + proto.Clone(segmentInfo).(*datapb.SegmentInfo), + }, + } + req := packLoadSegmentRequest(segmentTask, segmentAction, nil, nil, nil, resp) + assert.Equal(t, 1, len(req.GetDeltaPositions())) + assert.Equal(t, mockPChannel, req.DeltaPositions[0].ChannelName) + assert.Equal(t, t2, req.DeltaPositions[0].Timestamp) + }) + + t.Run("test set deltaPosition from segment startPosition", func(t *testing.T) { + segmentAction := NewSegmentAction(0, 0, "", 0) + segmentTask, err := NewSegmentTask(context.TODO(), 5*time.Second, 0, 0, 0, segmentAction) + assert.NoError(t, err) + + segInfo := proto.Clone(segmentInfo).(*datapb.SegmentInfo) + segInfo.DmlPosition = nil + resp := &datapb.GetSegmentInfoResponse{ + Infos: []*datapb.SegmentInfo{segInfo}, + } + req := packLoadSegmentRequest(segmentTask, segmentAction, nil, nil, nil, resp) + assert.Equal(t, 1, len(req.GetDeltaPositions())) + assert.Equal(t, mockPChannel, req.DeltaPositions[0].ChannelName) + assert.Equal(t, t1, req.DeltaPositions[0].Timestamp) + }) + + t.Run("test tsLag > 10minutes", func(t *testing.T) { + segmentAction := NewSegmentAction(0, 0, "", 0) + segmentTask, err := NewSegmentTask(context.TODO(), 5*time.Second, 0, 0, 0, segmentAction) + assert.NoError(t, err) + + segInfo := proto.Clone(segmentInfo).(*datapb.SegmentInfo) + segInfo.DmlPosition.Timestamp = t0 + resp := &datapb.GetSegmentInfoResponse{ + Infos: []*datapb.SegmentInfo{segInfo}, + } + req := packLoadSegmentRequest(segmentTask, segmentAction, nil, nil, nil, resp) + assert.Equal(t, 1, len(req.GetDeltaPositions())) + assert.Equal(t, mockPChannel, req.DeltaPositions[0].ChannelName) + assert.Equal(t, t0, req.DeltaPositions[0].Timestamp) + }) +}