diff --git a/pkg/container/batch/batch.go b/pkg/container/batch/batch.go index b4404866b9a9c..005de5055ee49 100644 --- a/pkg/container/batch/batch.go +++ b/pkg/container/batch/batch.go @@ -18,14 +18,13 @@ import ( "bytes" "context" "fmt" - "github.com/matrixorigin/matrixone/pkg/common/bitmap" - - "github.com/matrixorigin/matrixone/pkg/sql/colexec/aggexec" + "github.com/matrixorigin/matrixone/pkg/common/bitmap" "github.com/matrixorigin/matrixone/pkg/common/moerr" "github.com/matrixorigin/matrixone/pkg/common/mpool" "github.com/matrixorigin/matrixone/pkg/container/types" "github.com/matrixorigin/matrixone/pkg/container/vector" + "github.com/matrixorigin/matrixone/pkg/sql/colexec/aggexec" ) func New(attrs []string) *Batch { diff --git a/pkg/frontend/test/incrservice_mock.go b/pkg/frontend/test/incrservice_mock.go index 7d704560ea85c..0245e9ff3e5b2 100644 --- a/pkg/frontend/test/incrservice_mock.go +++ b/pkg/frontend/test/incrservice_mock.go @@ -9,7 +9,7 @@ import ( reflect "reflect" gomock "github.com/golang/mock/gomock" - batch "github.com/matrixorigin/matrixone/pkg/container/batch" + vector "github.com/matrixorigin/matrixone/pkg/container/vector" incrservice "github.com/matrixorigin/matrixone/pkg/incrservice" timestamp "github.com/matrixorigin/matrixone/pkg/pb/timestamp" client "github.com/matrixorigin/matrixone/pkg/txn/client" @@ -109,18 +109,18 @@ func (mr *MockAutoIncrementServiceMockRecorder) GetLastAllocateTS(ctx, tableID, } // InsertValues mocks base method. -func (m *MockAutoIncrementService) InsertValues(ctx context.Context, tableID uint64, bat *batch.Batch, estimate int64) (uint64, error) { +func (m *MockAutoIncrementService) InsertValues(ctx context.Context, tableID uint64, vecs []*vector.Vector, rows int, estimate int64) (uint64, error) { m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "InsertValues", ctx, tableID, bat, estimate) + ret := m.ctrl.Call(m, "InsertValues", ctx, tableID, vecs, rows, estimate) ret0, _ := ret[0].(uint64) ret1, _ := ret[1].(error) return ret0, ret1 } // InsertValues indicates an expected call of InsertValues. -func (mr *MockAutoIncrementServiceMockRecorder) InsertValues(ctx, tableID, bat, estimate interface{}) *gomock.Call { +func (mr *MockAutoIncrementServiceMockRecorder) InsertValues(ctx, tableID, vecs, rows, estimate interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "InsertValues", reflect.TypeOf((*MockAutoIncrementService)(nil).InsertValues), ctx, tableID, bat, estimate) + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "InsertValues", reflect.TypeOf((*MockAutoIncrementService)(nil).InsertValues), ctx, tableID, vecs, rows, estimate) } // Reload mocks base method. @@ -273,18 +273,18 @@ func (mr *MockincrTableCacheMockRecorder) getLastAllocateTS(colName interface{}) } // insertAutoValues mocks base method. -func (m *MockincrTableCache) insertAutoValues(ctx context.Context, tableID uint64, bat *batch.Batch, estimate int64) (uint64, error) { +func (m *MockincrTableCache) insertAutoValues(ctx context.Context, tableID uint64, vecs []*vector.Vector, rows int, estimate int64) (uint64, error) { m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "insertAutoValues", ctx, tableID, bat, estimate) + ret := m.ctrl.Call(m, "insertAutoValues", ctx, tableID, vecs, rows, estimate) ret0, _ := ret[0].(uint64) ret1, _ := ret[1].(error) return ret0, ret1 } // insertAutoValues indicates an expected call of insertAutoValues. -func (mr *MockincrTableCacheMockRecorder) insertAutoValues(ctx, tableID, bat, estimate interface{}) *gomock.Call { +func (mr *MockincrTableCacheMockRecorder) insertAutoValues(ctx, tableID, vecs, rows, estimate interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "insertAutoValues", reflect.TypeOf((*MockincrTableCache)(nil).insertAutoValues), ctx, tableID, bat, estimate) + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "insertAutoValues", reflect.TypeOf((*MockincrTableCache)(nil).insertAutoValues), ctx, tableID, vecs, rows, estimate) } // table mocks base method. diff --git a/pkg/frontend/test/mock_incr/types.go b/pkg/frontend/test/mock_incr/types.go index b02dfab10b046..bd5dac8874c9d 100644 --- a/pkg/frontend/test/mock_incr/types.go +++ b/pkg/frontend/test/mock_incr/types.go @@ -1,10 +1,5 @@ // Code generated by MockGen. DO NOT EDIT. // Source: pkg/incrservice/types.go -// -// Generated by this command: -// -// mockgen -source pkg/incrservice/types.go --destination pkg/frontend/test/mock_incr/types.go -package=mock_incr -// // Package mock_incr is a generated GoMock package. package mock_incr @@ -14,7 +9,7 @@ import ( reflect "reflect" gomock "github.com/golang/mock/gomock" - batch "github.com/matrixorigin/matrixone/pkg/container/batch" + vector "github.com/matrixorigin/matrixone/pkg/container/vector" incrservice "github.com/matrixorigin/matrixone/pkg/incrservice" timestamp "github.com/matrixorigin/matrixone/pkg/pb/timestamp" client "github.com/matrixorigin/matrixone/pkg/txn/client" @@ -114,18 +109,18 @@ func (mr *MockAutoIncrementServiceMockRecorder) GetLastAllocateTS(ctx, tableID, } // InsertValues mocks base method. -func (m *MockAutoIncrementService) InsertValues(ctx context.Context, tableID uint64, bat *batch.Batch, estimate int64) (uint64, error) { +func (m *MockAutoIncrementService) InsertValues(ctx context.Context, tableID uint64, vecs []*vector.Vector, rows int, estimate int64) (uint64, error) { m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "InsertValues", ctx, tableID, bat, estimate) + ret := m.ctrl.Call(m, "InsertValues", ctx, tableID, vecs, rows, estimate) ret0, _ := ret[0].(uint64) ret1, _ := ret[1].(error) return ret0, ret1 } // InsertValues indicates an expected call of InsertValues. -func (mr *MockAutoIncrementServiceMockRecorder) InsertValues(ctx, tableID, bat, estimate interface{}) *gomock.Call { +func (mr *MockAutoIncrementServiceMockRecorder) InsertValues(ctx, tableID, vecs, rows, estimate interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "InsertValues", reflect.TypeOf((*MockAutoIncrementService)(nil).InsertValues), ctx, tableID, bat, estimate) + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "InsertValues", reflect.TypeOf((*MockAutoIncrementService)(nil).InsertValues), ctx, tableID, vecs, rows, estimate) } // Reload mocks base method. @@ -278,18 +273,18 @@ func (mr *MockincrTableCacheMockRecorder) getLastAllocateTS(colName interface{}) } // insertAutoValues mocks base method. -func (m *MockincrTableCache) insertAutoValues(ctx context.Context, tableID uint64, bat *batch.Batch, estimate int64) (uint64, error) { +func (m *MockincrTableCache) insertAutoValues(ctx context.Context, tableID uint64, vecs []*vector.Vector, rows int, estimate int64) (uint64, error) { m.ctrl.T.Helper() - ret := m.ctrl.Call(m, "insertAutoValues", ctx, tableID, bat, estimate) + ret := m.ctrl.Call(m, "insertAutoValues", ctx, tableID, vecs, rows, estimate) ret0, _ := ret[0].(uint64) ret1, _ := ret[1].(error) return ret0, ret1 } // insertAutoValues indicates an expected call of insertAutoValues. -func (mr *MockincrTableCacheMockRecorder) insertAutoValues(ctx, tableID, bat, estimate interface{}) *gomock.Call { +func (mr *MockincrTableCacheMockRecorder) insertAutoValues(ctx, tableID, vecs, rows, estimate interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() - return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "insertAutoValues", reflect.TypeOf((*MockincrTableCache)(nil).insertAutoValues), ctx, tableID, bat, estimate) + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "insertAutoValues", reflect.TypeOf((*MockincrTableCache)(nil).insertAutoValues), ctx, tableID, vecs, rows, estimate) } // table mocks base method. diff --git a/pkg/incrservice/service.go b/pkg/incrservice/service.go index 0cc04a51d1cf2..07fe7d9204d03 100644 --- a/pkg/incrservice/service.go +++ b/pkg/incrservice/service.go @@ -26,7 +26,7 @@ import ( "github.com/matrixorigin/matrixone/pkg/common/log" "github.com/matrixorigin/matrixone/pkg/common/moerr" "github.com/matrixorigin/matrixone/pkg/common/stopper" - "github.com/matrixorigin/matrixone/pkg/container/batch" + "github.com/matrixorigin/matrixone/pkg/container/vector" "github.com/matrixorigin/matrixone/pkg/defines" "github.com/matrixorigin/matrixone/pkg/pb/timestamp" "github.com/matrixorigin/matrixone/pkg/pb/txn" @@ -220,7 +220,8 @@ func (s *service) GetLastAllocateTS( func (s *service) InsertValues( ctx context.Context, tableID uint64, - bat *batch.Batch, + vecs []*vector.Vector, + rows int, estimate int64, ) (uint64, error) { ts, err := s.getCommittedTableCache( @@ -232,7 +233,8 @@ func (s *service) InsertValues( return ts.insertAutoValues( ctx, tableID, - bat, + vecs, + rows, estimate, ) } diff --git a/pkg/incrservice/table_cache.go b/pkg/incrservice/table_cache.go index 816b451a831d4..762ca7e366fb0 100644 --- a/pkg/incrservice/table_cache.go +++ b/pkg/incrservice/table_cache.go @@ -19,7 +19,7 @@ import ( "sync" "github.com/matrixorigin/matrixone/pkg/common/log" - "github.com/matrixorigin/matrixone/pkg/container/batch" + "github.com/matrixorigin/matrixone/pkg/container/vector" "github.com/matrixorigin/matrixone/pkg/pb/timestamp" "github.com/matrixorigin/matrixone/pkg/txn/client" ) @@ -105,7 +105,8 @@ func (c *tableCache) getLastAllocateTS(colName string) (timestamp.Timestamp, err func (c *tableCache) insertAutoValues( ctx context.Context, tableID uint64, - bat *batch.Batch, + vecs []*vector.Vector, + rows int, estimate int64, ) (uint64, error) { lastInsert := uint64(0) @@ -120,8 +121,7 @@ func (c *tableCache) insertAutoValues( cc.preAllocate(ctx, tableID, int(estimate), txnOp) } - rows := bat.RowCount() - vec := bat.GetVector(int32(col.ColIndex)) + vec := vecs[col.ColIndex] if v, err := cc.insertAutoValues(ctx, tableID, vec, rows, txnOp); err != nil { return 0, err } else { diff --git a/pkg/incrservice/types.go b/pkg/incrservice/types.go index a8fef646f9ed7..334351ab4e180 100644 --- a/pkg/incrservice/types.go +++ b/pkg/incrservice/types.go @@ -18,7 +18,7 @@ import ( "context" "github.com/matrixorigin/matrixone/pkg/common/runtime" - "github.com/matrixorigin/matrixone/pkg/container/batch" + "github.com/matrixorigin/matrixone/pkg/container/vector" "github.com/matrixorigin/matrixone/pkg/pb/plan" "github.com/matrixorigin/matrixone/pkg/pb/timestamp" "github.com/matrixorigin/matrixone/pkg/txn/client" @@ -63,7 +63,7 @@ type AutoIncrementService interface { // delete operation is triggered. Delete(ctx context.Context, tableID uint64, txn client.TxnOperator) error // InsertValues insert auto columns values into bat. - InsertValues(ctx context.Context, tableID uint64, bat *batch.Batch, estimate int64) (uint64, error) + InsertValues(ctx context.Context, tableID uint64, vecs []*vector.Vector, rows int, estimate int64) (uint64, error) // CurrentValue return current incr column value. CurrentValue(ctx context.Context, tableID uint64, col string) (uint64, error) // Reload reload auto increment cache. @@ -109,7 +109,7 @@ type incrTableCache interface { table() uint64 commit() columns() []AutoColumn - insertAutoValues(ctx context.Context, tableID uint64, bat *batch.Batch, estimate int64) (uint64, error) + insertAutoValues(ctx context.Context, tableID uint64, vecs []*vector.Vector, rows int, estimate int64) (uint64, error) currentValue(ctx context.Context, tableID uint64, col string) (uint64, error) getLastAllocateTS(colName string) (timestamp.Timestamp, error) adjust(ctx context.Context, cols []AutoColumn) error diff --git a/pkg/pb/pipeline/pipeline.pb.go b/pkg/pb/pipeline/pipeline.pb.go index 123de27fbe949..c933a90aff5f4 100644 --- a/pkg/pb/pipeline/pipeline.pb.go +++ b/pkg/pb/pipeline/pipeline.pb.go @@ -1353,10 +1353,12 @@ type PreInsert struct { Idx []int32 `protobuf:"varint,3,rep,packed,name=idx,proto3" json:"idx,omitempty"` Attrs []string `protobuf:"bytes,4,rep,name=attrs,proto3" json:"attrs,omitempty"` HasAutoCol bool `protobuf:"varint,5,opt,name=has_auto_col,json=hasAutoCol,proto3" json:"has_auto_col,omitempty"` - IsUpdate bool `protobuf:"varint,6,opt,name=is_update,json=isUpdate,proto3" json:"is_update,omitempty"` + ColOffset int32 `protobuf:"varint,6,opt,name=col_offset,json=colOffset,proto3" json:"col_offset,omitempty"` EstimatedRowCount int64 `protobuf:"varint,7,opt,name=estimated_row_count,json=estimatedRowCount,proto3" json:"estimated_row_count,omitempty"` CompPkeyExpr *plan.Expr `protobuf:"bytes,8,opt,name=comp_pkey_expr,json=compPkeyExpr,proto3" json:"comp_pkey_expr,omitempty"` ClusterByExpr *plan.Expr `protobuf:"bytes,9,opt,name=cluster_by_expr,json=clusterByExpr,proto3" json:"cluster_by_expr,omitempty"` + IsOldUpdate bool `protobuf:"varint,10,opt,name=is_old_update,json=isOldUpdate,proto3" json:"is_old_update,omitempty"` + IsNewUpdate bool `protobuf:"varint,11,opt,name=is_new_update,json=isNewUpdate,proto3" json:"is_new_update,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1430,11 +1432,11 @@ func (m *PreInsert) GetHasAutoCol() bool { return false } -func (m *PreInsert) GetIsUpdate() bool { +func (m *PreInsert) GetColOffset() int32 { if m != nil { - return m.IsUpdate + return m.ColOffset } - return false + return 0 } func (m *PreInsert) GetEstimatedRowCount() int64 { @@ -1458,6 +1460,20 @@ func (m *PreInsert) GetClusterByExpr() *plan.Expr { return nil } +func (m *PreInsert) GetIsOldUpdate() bool { + if m != nil { + return m.IsOldUpdate + } + return false +} + +func (m *PreInsert) GetIsNewUpdate() bool { + if m != nil { + return m.IsNewUpdate + } + return false +} + type PostDml struct { // PostDmlCtx Ref *plan.ObjectRef `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"` @@ -3116,6 +3132,7 @@ type DedupJoin struct { RightTypes []plan.Type `protobuf:"bytes,13,rep,name=right_types,json=rightTypes,proto3" json:"right_types"` UpdateColIdxList []int32 `protobuf:"varint,14,rep,packed,name=update_col_idx_list,json=updateColIdxList,proto3" json:"update_col_idx_list,omitempty"` UpdateColExprList []*plan.Expr `protobuf:"bytes,15,rep,name=update_col_expr_list,json=updateColExprList,proto3" json:"update_col_expr_list,omitempty"` + DelColIdx int32 `protobuf:"varint,16,opt,name=del_col_idx,json=delColIdx,proto3" json:"del_col_idx,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -3259,6 +3276,13 @@ func (m *DedupJoin) GetUpdateColExprList() []*plan.Expr { return nil } +func (m *DedupJoin) GetDelColIdx() int32 { + if m != nil { + return m.DelColIdx + } + return 0 +} + type Product struct { RelList []int32 `protobuf:"varint,1,rep,packed,name=rel_list,json=relList,proto3" json:"rel_list,omitempty"` ColList []int32 `protobuf:"varint,2,rep,packed,name=col_list,json=colList,proto3" json:"col_list,omitempty"` @@ -3965,6 +3989,7 @@ type HashBuild struct { OnDuplicateAction plan.Node_OnDuplicateAction `protobuf:"varint,10,opt,name=on_duplicate_action,json=onDuplicateAction,proto3,enum=plan.Node_OnDuplicateAction" json:"on_duplicate_action,omitempty"` DedupColName string `protobuf:"bytes,11,opt,name=dedup_col_name,json=dedupColName,proto3" json:"dedup_col_name,omitempty"` DedupColTypes []plan.Type `protobuf:"bytes,12,rep,name=dedup_col_types,json=dedupColTypes,proto3" json:"dedup_col_types"` + DelColIdx int32 `protobuf:"varint,13,opt,name=del_col_idx,json=delColIdx,proto3" json:"del_col_idx,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -4087,6 +4112,13 @@ func (m *HashBuild) GetDedupColTypes() []plan.Type { return nil } +func (m *HashBuild) GetDelColIdx() int32 { + if m != nil { + return m.DelColIdx + } + return 0 +} + type Shufflebuild struct { HashOnPK bool `protobuf:"varint,1,opt,name=HashOnPK,proto3" json:"HashOnPK,omitempty"` NeedBatches bool `protobuf:"varint,2,opt,name=NeedBatches,proto3" json:"NeedBatches,omitempty"` @@ -4099,6 +4131,7 @@ type Shufflebuild struct { OnDuplicateAction plan.Node_OnDuplicateAction `protobuf:"varint,9,opt,name=on_duplicate_action,json=onDuplicateAction,proto3,enum=plan.Node_OnDuplicateAction" json:"on_duplicate_action,omitempty"` DedupColName string `protobuf:"bytes,10,opt,name=dedup_col_name,json=dedupColName,proto3" json:"dedup_col_name,omitempty"` DedupColTypes []plan.Type `protobuf:"bytes,11,rep,name=dedup_col_types,json=dedupColTypes,proto3" json:"dedup_col_types"` + DelColIdx int32 `protobuf:"varint,12,opt,name=del_col_idx,json=delColIdx,proto3" json:"del_col_idx,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -4214,6 +4247,13 @@ func (m *Shufflebuild) GetDedupColTypes() []plan.Type { return nil } +func (m *Shufflebuild) GetDelColIdx() int32 { + if m != nil { + return m.DelColIdx + } + return 0 +} + type Indexbuild struct { RuntimeFilterSpec *plan.RuntimeFilterSpec `protobuf:"bytes,1,opt,name=RuntimeFilterSpec,proto3" json:"RuntimeFilterSpec,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -5916,371 +5956,375 @@ func init() { func init() { proto.RegisterFile("pipeline.proto", fileDescriptor_7ac67a7adf3df9c7) } var fileDescriptor_7ac67a7adf3df9c7 = []byte{ - // 5814 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7c, 0x4b, 0x6f, 0x1d, 0x47, - 0x76, 0xb0, 0xee, 0xbb, 0xef, 0xb9, 0x0f, 0x5e, 0x96, 0x5e, 0xd7, 0x92, 0x2c, 0xd1, 0x6d, 0x49, - 0xe6, 0xc8, 0x16, 0x65, 0xd3, 0xa3, 0x6f, 0xfc, 0xc5, 0x99, 0xf1, 0x50, 0xa4, 0x34, 0x43, 0x5b, - 0x92, 0x99, 0x22, 0x15, 0x23, 0xb3, 0x48, 0xa3, 0xd9, 0x5d, 0xf7, 0xb2, 0xcd, 0xbe, 0xdd, 0xad, - 0x7e, 0x48, 0xa4, 0x56, 0x01, 0x26, 0xab, 0x00, 0x59, 0x65, 0x15, 0x04, 0x01, 0x82, 0x59, 0x24, - 0xc8, 0x22, 0x48, 0x90, 0x2c, 0xf3, 0x07, 0x66, 0x36, 0x41, 0x56, 0x59, 0x26, 0xc1, 0x64, 0x97, - 0xc7, 0x6e, 0x12, 0x64, 0x13, 0x20, 0x38, 0xa7, 0xaa, 0xba, 0xfb, 0x3e, 0x44, 0x49, 0x7e, 0x04, - 0x33, 0x80, 0x77, 0x55, 0xe7, 0x9c, 0xea, 0xae, 0x3e, 0xaf, 0x3a, 0x75, 0xea, 0x54, 0x43, 0x3f, - 0xf2, 0x22, 0xe1, 0x7b, 0x81, 0x58, 0x8b, 0xe2, 0x30, 0x0d, 0x99, 0xa1, 0xfb, 0x17, 0x6e, 0x8e, - 0xbd, 0xf4, 0x20, 0xdb, 0x5f, 0x73, 0xc2, 0xc9, 0xad, 0x71, 0x38, 0x0e, 0x6f, 0x11, 0xc1, 0x7e, - 0x36, 0xa2, 0x1e, 0x75, 0xa8, 0x25, 0x07, 0x5e, 0x80, 0xc8, 0xb7, 0x03, 0xd5, 0x5e, 0x4a, 0xbd, - 0x89, 0x48, 0x52, 0x7b, 0x12, 0x69, 0xa4, 0x1f, 0x3a, 0x87, 0xaa, 0xdd, 0x4e, 0x8f, 0x14, 0x9d, - 0xf9, 0x47, 0x55, 0x68, 0x3d, 0x10, 0x49, 0x62, 0x8f, 0x05, 0x33, 0xa1, 0x96, 0x78, 0xee, 0xb0, - 0xb2, 0x52, 0x59, 0xed, 0xaf, 0x0f, 0xd6, 0xf2, 0x69, 0xed, 0xa6, 0x76, 0x9a, 0x25, 0x1c, 0x91, - 0x48, 0xe3, 0x4c, 0xdc, 0x61, 0x75, 0x96, 0xe6, 0x81, 0x48, 0x0f, 0x42, 0x97, 0x23, 0x92, 0x0d, - 0xa0, 0x26, 0xe2, 0x78, 0x58, 0x5b, 0xa9, 0xac, 0x76, 0x39, 0x36, 0x19, 0x83, 0xba, 0x6b, 0xa7, - 0xf6, 0xb0, 0x4e, 0x20, 0x6a, 0xb3, 0xab, 0xd0, 0x8f, 0xe2, 0xd0, 0xb1, 0xbc, 0x60, 0x14, 0x5a, - 0x84, 0x6d, 0x10, 0xb6, 0x8b, 0xd0, 0xed, 0x60, 0x14, 0x6e, 0x21, 0xd5, 0x10, 0x5a, 0x76, 0x60, - 0xfb, 0xc7, 0x89, 0x18, 0x36, 0x09, 0xad, 0xbb, 0xac, 0x0f, 0x55, 0xcf, 0x1d, 0xb6, 0x56, 0x2a, - 0xab, 0x75, 0x5e, 0xf5, 0x5c, 0x7c, 0x47, 0x96, 0x79, 0xee, 0xd0, 0x90, 0xef, 0xc0, 0x36, 0x33, - 0xa1, 0x1b, 0x08, 0xe1, 0x3e, 0x0c, 0x53, 0x2e, 0x22, 0xff, 0x78, 0xd8, 0x5e, 0xa9, 0xac, 0x1a, - 0x7c, 0x0a, 0xc6, 0x2e, 0x80, 0xe1, 0x8a, 0xfd, 0x6c, 0xfc, 0x20, 0x19, 0x0f, 0x61, 0xa5, 0xb2, - 0xda, 0xe6, 0x79, 0xdf, 0x7c, 0x04, 0xed, 0xcd, 0x30, 0x08, 0x84, 0x93, 0x86, 0x31, 0xbb, 0x02, - 0x1d, 0xfd, 0xb9, 0x96, 0x62, 0x53, 0x83, 0x83, 0x06, 0x6d, 0xbb, 0xec, 0x2d, 0x58, 0x72, 0x34, - 0xb5, 0xe5, 0x05, 0xae, 0x38, 0x22, 0x3e, 0x35, 0x78, 0x3f, 0x07, 0x6f, 0x23, 0xd4, 0xfc, 0xf7, - 0x2a, 0xb4, 0x76, 0x0f, 0xb2, 0xd1, 0xc8, 0x17, 0xec, 0x2a, 0xf4, 0x54, 0x73, 0x33, 0xf4, 0xb7, - 0xdd, 0x23, 0xf5, 0xdc, 0x69, 0x20, 0x5b, 0x81, 0x8e, 0x02, 0xec, 0x1d, 0x47, 0x42, 0x3d, 0xb6, - 0x0c, 0x9a, 0x7e, 0xce, 0x03, 0x2f, 0x20, 0xf6, 0xd7, 0xf8, 0x34, 0x70, 0x86, 0xca, 0x3e, 0x22, - 0x89, 0x4c, 0x53, 0xd9, 0xf4, 0xb6, 0x0d, 0xdf, 0x7b, 0x22, 0xb8, 0x18, 0x6f, 0x06, 0x29, 0xc9, - 0xa5, 0xc1, 0xcb, 0x20, 0xb6, 0x0e, 0x67, 0x13, 0x39, 0xc4, 0x8a, 0xed, 0x60, 0x2c, 0x12, 0x2b, - 0xf3, 0x82, 0xf4, 0xff, 0x7d, 0x7b, 0xd8, 0x5c, 0xa9, 0xad, 0xd6, 0xf9, 0x69, 0x85, 0xe4, 0x84, - 0x7b, 0x44, 0x28, 0xf6, 0x2e, 0x9c, 0x99, 0x19, 0x23, 0x87, 0xb4, 0x56, 0x6a, 0xab, 0x35, 0xce, - 0xa6, 0x86, 0x6c, 0xd3, 0x88, 0xbb, 0xb0, 0x1c, 0x67, 0x01, 0x6a, 0xf2, 0x3d, 0xcf, 0x4f, 0x45, - 0xbc, 0x1b, 0x09, 0x87, 0xe4, 0xdb, 0x59, 0x3f, 0xbf, 0x46, 0xca, 0xce, 0x67, 0xd1, 0x7c, 0x7e, - 0x84, 0xf9, 0xdf, 0x55, 0x30, 0xb6, 0xbc, 0x24, 0xb2, 0x53, 0xe7, 0x80, 0x9d, 0x87, 0xd6, 0x28, - 0x0b, 0x9c, 0x42, 0x82, 0x4d, 0xec, 0x6e, 0xbb, 0xec, 0xd7, 0x61, 0xc9, 0x0f, 0x1d, 0xdb, 0xb7, - 0x72, 0x61, 0x0d, 0xab, 0x2b, 0xb5, 0xd5, 0xce, 0xfa, 0xe9, 0x42, 0xcb, 0x73, 0x65, 0xe0, 0x7d, - 0xa2, 0x2d, 0x94, 0xe3, 0xbb, 0x30, 0x88, 0xc5, 0x24, 0x4c, 0x45, 0x69, 0x78, 0x8d, 0x86, 0xb3, - 0x62, 0xf8, 0x67, 0xb1, 0x1d, 0x3d, 0x0c, 0x5d, 0xc1, 0x97, 0x24, 0x6d, 0x31, 0xfc, 0xbd, 0x12, - 0x3f, 0xc5, 0xd8, 0xf2, 0xdc, 0x23, 0x8b, 0x5e, 0x30, 0xac, 0xaf, 0xd4, 0x56, 0x1b, 0x05, 0x73, - 0xc4, 0x78, 0xdb, 0x3d, 0xba, 0x8f, 0x18, 0xf6, 0x3e, 0x9c, 0x9b, 0x1d, 0x22, 0x9f, 0x3a, 0x6c, - 0xd0, 0x98, 0xd3, 0x53, 0x63, 0x38, 0xa1, 0xd8, 0x1b, 0xd0, 0xd5, 0x83, 0x52, 0x54, 0xa4, 0xa6, - 0x14, 0x6d, 0x52, 0x52, 0xa4, 0xf3, 0xd0, 0xf2, 0x12, 0x2b, 0xf1, 0x82, 0x43, 0x32, 0x2e, 0x83, - 0x37, 0xbd, 0x64, 0xd7, 0x0b, 0x0e, 0xd9, 0x6b, 0x60, 0xc4, 0xc2, 0x91, 0x18, 0x83, 0x30, 0xad, - 0x58, 0x38, 0x84, 0x3a, 0x0f, 0xd8, 0xb4, 0x9c, 0x54, 0x28, 0x13, 0x6b, 0xc6, 0xc2, 0xd9, 0x4c, - 0x85, 0x99, 0x40, 0xe3, 0x81, 0x88, 0xc7, 0x02, 0xad, 0x0c, 0x07, 0xee, 0x3a, 0x76, 0x40, 0x7c, - 0x37, 0x78, 0xde, 0x47, 0x1b, 0x8f, 0xec, 0x38, 0xf5, 0x6c, 0x9f, 0x14, 0xdb, 0xe0, 0xba, 0xcb, - 0x2e, 0x42, 0x3b, 0x49, 0xed, 0x38, 0xc5, 0xaf, 0x23, 0x85, 0x6e, 0x70, 0x83, 0x00, 0x68, 0x13, - 0xe7, 0xa1, 0x25, 0x02, 0x97, 0x50, 0x75, 0x29, 0x49, 0x11, 0xb8, 0xdb, 0xee, 0x91, 0xf9, 0x37, - 0x15, 0xe8, 0x3d, 0xc8, 0xfc, 0xd4, 0xdb, 0x88, 0xc7, 0x99, 0x98, 0x04, 0x29, 0xfa, 0x86, 0x2d, - 0x2f, 0x49, 0xd5, 0x9b, 0xa9, 0xcd, 0x56, 0xa1, 0xfd, 0x83, 0x38, 0xcc, 0xa2, 0xbb, 0x47, 0x91, - 0x96, 0x34, 0x48, 0xa5, 0x42, 0x08, 0x2f, 0x90, 0xec, 0x1d, 0xe8, 0x7c, 0x1a, 0xbb, 0x22, 0xbe, - 0x73, 0x4c, 0xb4, 0xb5, 0x39, 0xda, 0x32, 0x9a, 0x5d, 0x82, 0xf6, 0xae, 0x88, 0xec, 0xd8, 0x46, - 0x15, 0xa8, 0x93, 0x43, 0x29, 0x00, 0xf8, 0xad, 0x44, 0xbc, 0xed, 0x2a, 0xb3, 0xd2, 0x5d, 0x73, - 0x0c, 0xed, 0x8d, 0xf1, 0x38, 0x16, 0x63, 0x3b, 0x25, 0xe7, 0x16, 0x46, 0x34, 0xdd, 0x1a, 0xaf, - 0x86, 0x11, 0x39, 0x50, 0xfc, 0x00, 0xc9, 0x1f, 0x6a, 0xb3, 0xcb, 0x50, 0x17, 0x8b, 0xe7, 0x43, - 0x70, 0x76, 0x0e, 0x9a, 0x4e, 0x18, 0x8c, 0xbc, 0xb1, 0x72, 0xbb, 0xaa, 0x67, 0xfe, 0x7e, 0x0d, - 0x1a, 0xf4, 0x71, 0xc8, 0x5e, 0x74, 0x85, 0x96, 0x78, 0x62, 0xfb, 0x5a, 0x2a, 0x08, 0xb8, 0xfb, - 0xc4, 0xf6, 0xd9, 0x0a, 0x34, 0xf0, 0x31, 0xc9, 0x02, 0xde, 0x48, 0x04, 0xbb, 0x0e, 0x0d, 0x54, - 0xa2, 0x64, 0x7a, 0x06, 0xa8, 0x44, 0x77, 0xea, 0x3f, 0xfd, 0xc7, 0x2b, 0xa7, 0xb8, 0x44, 0xb3, - 0xb7, 0xa0, 0x6e, 0x8f, 0xc7, 0x09, 0xe9, 0xf2, 0x94, 0x39, 0xe5, 0xdf, 0xcb, 0x89, 0x80, 0xdd, - 0x86, 0xb6, 0x94, 0x1b, 0x52, 0x37, 0x88, 0xfa, 0x7c, 0x69, 0x89, 0x29, 0x8b, 0x94, 0x17, 0x94, - 0xc8, 0x71, 0x2f, 0x51, 0x1e, 0x8c, 0x34, 0xda, 0xe0, 0x05, 0x00, 0xd7, 0x80, 0x28, 0x16, 0x1b, - 0xbe, 0x1f, 0x3a, 0xbb, 0xde, 0x33, 0xa1, 0x56, 0x8c, 0x29, 0x18, 0xbb, 0x0e, 0xfd, 0x1d, 0xa9, - 0x72, 0x5c, 0x24, 0x99, 0x9f, 0x26, 0x6a, 0x15, 0x99, 0x81, 0xb2, 0x35, 0x60, 0x53, 0x90, 0x3d, - 0xfa, 0xfc, 0xf6, 0x4a, 0x6d, 0xb5, 0xc7, 0x17, 0x60, 0xd8, 0x9b, 0xd0, 0x1b, 0x23, 0xa7, 0xbd, - 0x60, 0x6c, 0x8d, 0x7c, 0x1b, 0x17, 0x98, 0x1a, 0x2e, 0x40, 0x1a, 0x78, 0xcf, 0xb7, 0xc7, 0xe6, - 0x2f, 0xaa, 0xd0, 0xdc, 0x0e, 0x12, 0x11, 0xa7, 0x68, 0x25, 0xf6, 0x68, 0x24, 0x9c, 0x54, 0x48, - 0xef, 0x54, 0xe7, 0x79, 0x1f, 0xbf, 0x72, 0x2f, 0xfc, 0x2c, 0xf6, 0x52, 0xb1, 0xfb, 0xbe, 0xd2, - 0x83, 0x02, 0xc0, 0x6e, 0xc0, 0xb2, 0xed, 0xba, 0x96, 0xa6, 0xb6, 0xe2, 0xf0, 0x69, 0x42, 0x16, - 0x63, 0xf0, 0x25, 0xdb, 0x75, 0x37, 0x14, 0x9c, 0x87, 0x4f, 0x13, 0xf6, 0x06, 0xd4, 0x62, 0x31, - 0x22, 0xad, 0xe8, 0xac, 0x2f, 0x49, 0xa9, 0x7d, 0xba, 0xff, 0xb9, 0x70, 0x52, 0x2e, 0x46, 0x1c, - 0x71, 0xec, 0x0c, 0x34, 0xec, 0x34, 0x8d, 0xa5, 0x14, 0xda, 0x5c, 0x76, 0xd8, 0x1a, 0x9c, 0x26, - 0xcb, 0x4c, 0xbd, 0x30, 0xb0, 0x52, 0x7b, 0xdf, 0xc7, 0x85, 0x30, 0x51, 0x3e, 0x7f, 0x39, 0x47, - 0xed, 0x21, 0x66, 0xdb, 0x4d, 0x70, 0x95, 0x98, 0xa5, 0x0f, 0xec, 0x89, 0x48, 0xc8, 0xe5, 0xb7, - 0xf9, 0xe9, 0xe9, 0x11, 0x0f, 0x11, 0x85, 0x2c, 0x2b, 0xc6, 0xa0, 0x6d, 0x1b, 0x64, 0x26, 0xdd, - 0x1c, 0x88, 0xa6, 0x7f, 0x16, 0x9a, 0x5e, 0x62, 0x89, 0xc0, 0x55, 0xee, 0xa6, 0xe1, 0x25, 0x77, - 0x03, 0x97, 0xbd, 0x0d, 0x6d, 0xf9, 0x16, 0x57, 0x8c, 0x68, 0x2d, 0xef, 0xac, 0xf7, 0x95, 0x52, - 0x22, 0x78, 0x4b, 0x8c, 0xb8, 0x91, 0xaa, 0x96, 0xf9, 0xe3, 0x0a, 0x74, 0x48, 0x87, 0x1e, 0x45, - 0x2e, 0x9a, 0xdc, 0x9b, 0xd0, 0x9b, 0xe6, 0x9e, 0x14, 0x40, 0xd7, 0x2e, 0xb3, 0xee, 0x1c, 0x34, - 0x37, 0x1c, 0x9c, 0x05, 0x49, 0xa0, 0xc7, 0x55, 0x8f, 0x7d, 0x07, 0x96, 0x32, 0x7a, 0x8c, 0xe5, - 0xa4, 0x47, 0x96, 0x8f, 0xa6, 0x2a, 0x8d, 0x42, 0xb1, 0x57, 0xbe, 0x63, 0x33, 0x3d, 0xe2, 0xbd, - 0x4c, 0x37, 0xef, 0x7b, 0x49, 0x6a, 0xbe, 0x0e, 0x8d, 0x8d, 0x38, 0xb6, 0x8f, 0x89, 0xe3, 0xd8, - 0x18, 0x56, 0xc8, 0x7b, 0xcb, 0x8e, 0xe9, 0x40, 0xed, 0x81, 0x1d, 0xb1, 0x6b, 0x50, 0x9d, 0x44, - 0x84, 0xe9, 0xac, 0x9f, 0x2d, 0x59, 0x84, 0x1d, 0xad, 0x3d, 0x88, 0xee, 0x06, 0x69, 0x7c, 0xcc, - 0xab, 0x93, 0xe8, 0xc2, 0x6d, 0x68, 0xa9, 0x2e, 0xc6, 0x60, 0x87, 0xe2, 0x98, 0xbe, 0xa1, 0xcd, - 0xb1, 0x89, 0x2f, 0x78, 0x62, 0xfb, 0x99, 0x0e, 0x1e, 0x64, 0xe7, 0xd7, 0xaa, 0x1f, 0x54, 0xcc, - 0xff, 0xac, 0x83, 0xb1, 0x25, 0x7c, 0x41, 0x5f, 0x62, 0x42, 0xb7, 0xac, 0x2c, 0x9a, 0x0b, 0x53, - 0x0a, 0x64, 0x42, 0x57, 0xae, 0x27, 0x34, 0x4a, 0x28, 0x6d, 0x9c, 0x82, 0xa1, 0xa3, 0xdb, 0xbe, - 0x93, 0x39, 0x87, 0x22, 0x25, 0x35, 0xec, 0x71, 0xdd, 0x45, 0xcc, 0x43, 0x85, 0xa9, 0x4b, 0x8c, - 0xea, 0xb2, 0x4b, 0x00, 0x71, 0xf8, 0xd4, 0xf2, 0xa4, 0x53, 0x97, 0xfe, 0xd1, 0x88, 0xc3, 0xa7, - 0xdb, 0xe8, 0xd6, 0xff, 0x4f, 0xb4, 0xef, 0x3b, 0x30, 0x2c, 0x69, 0x1f, 0x06, 0x6b, 0x96, 0x17, - 0x58, 0xfb, 0x18, 0x39, 0x28, 0x45, 0x2c, 0x9e, 0x49, 0xb1, 0xdc, 0x76, 0x70, 0x87, 0xc2, 0x0a, - 0x65, 0x53, 0xed, 0x13, 0x6c, 0x6a, 0xa1, 0x89, 0xc2, 0x62, 0x13, 0xbd, 0x03, 0xb0, 0x2b, 0xc6, - 0x13, 0x11, 0xa4, 0x0f, 0xec, 0x68, 0xd8, 0x21, 0xc1, 0x9b, 0x85, 0xe0, 0xb5, 0xb4, 0xd6, 0x0a, - 0x22, 0xa9, 0x05, 0xa5, 0x51, 0xb8, 0xd6, 0x3b, 0x76, 0x60, 0xa5, 0x71, 0x16, 0x38, 0x76, 0x2a, - 0x86, 0x5d, 0x7a, 0x55, 0xc7, 0xb1, 0x83, 0x3d, 0x05, 0x2a, 0xd9, 0x51, 0xaf, 0x6c, 0x47, 0xd7, - 0x61, 0x29, 0x8a, 0xbd, 0x89, 0x1d, 0x1f, 0x5b, 0x87, 0xe2, 0x98, 0x84, 0xd1, 0x97, 0x51, 0xa9, - 0x02, 0x7f, 0x22, 0x8e, 0xb7, 0xdd, 0xa3, 0x0b, 0xdf, 0x85, 0xa5, 0x99, 0x09, 0xbc, 0x92, 0xde, - 0xfd, 0x43, 0x15, 0xda, 0x3b, 0xb1, 0x50, 0xbe, 0xef, 0x0a, 0x74, 0x12, 0xe7, 0x40, 0x4c, 0x6c, - 0x92, 0x92, 0x7a, 0x02, 0x48, 0x10, 0x0a, 0x67, 0xda, 0xba, 0xab, 0x27, 0x5b, 0x37, 0xce, 0x43, - 0xc6, 0x0c, 0x68, 0x4c, 0xd8, 0x2c, 0x5c, 0x5a, 0xbd, 0xec, 0xd2, 0x56, 0xa0, 0x7b, 0x60, 0x27, - 0x96, 0x9d, 0xa5, 0xa1, 0xe5, 0x84, 0x3e, 0x29, 0x9d, 0xc1, 0xe1, 0xc0, 0x4e, 0x36, 0xb2, 0x34, - 0xdc, 0x0c, 0x29, 0x06, 0xf1, 0x12, 0x4b, 0x5a, 0xad, 0x5a, 0x5d, 0x0c, 0x2f, 0x51, 0x4e, 0x63, - 0x0d, 0x4e, 0x8b, 0x24, 0xf5, 0x26, 0xb6, 0x12, 0xa8, 0xe5, 0x84, 0x59, 0x90, 0xd2, 0x1a, 0x53, - 0xe3, 0xcb, 0x39, 0x8a, 0x87, 0x4f, 0x37, 0x11, 0xc1, 0xde, 0x85, 0xbe, 0x13, 0x4e, 0x22, 0x2b, - 0x42, 0xbe, 0xd2, 0xea, 0x2d, 0xc3, 0xd9, 0xf2, 0xea, 0xda, 0x45, 0x8a, 0x9d, 0x43, 0x21, 0xc3, - 0x89, 0x75, 0x58, 0x72, 0xfc, 0x2c, 0x49, 0x45, 0x6c, 0xed, 0xab, 0x21, 0xed, 0xb9, 0x21, 0x3d, - 0x45, 0x22, 0x43, 0x10, 0x64, 0x6c, 0x6b, 0x27, 0x4c, 0xd2, 0xad, 0x89, 0xaf, 0x15, 0xb3, 0xf2, - 0xaa, 0x8a, 0x59, 0x5d, 0xac, 0x98, 0x0b, 0x54, 0xa3, 0xb6, 0x40, 0x35, 0xd8, 0x2a, 0x0c, 0xca, - 0x74, 0x24, 0x52, 0x19, 0x0c, 0xf5, 0x0b, 0x42, 0x12, 0xab, 0xe4, 0xaf, 0x2b, 0x3d, 0x49, 0x43, - 0xf3, 0x57, 0x79, 0x11, 0x89, 0xf4, 0x48, 0x43, 0x0a, 0xe6, 0x2b, 0x8d, 0xf9, 0xff, 0xf0, 0x5a, - 0x3e, 0xd2, 0x7a, 0xea, 0xa5, 0x07, 0x61, 0x96, 0x5a, 0x23, 0x8a, 0xfb, 0x13, 0x15, 0xbb, 0x9e, - 0xd3, 0x4f, 0xfa, 0x4c, 0xa2, 0xe5, 0xae, 0x80, 0x22, 0x8d, 0x51, 0xe6, 0xfb, 0x56, 0x2a, 0x8e, - 0x52, 0x25, 0x82, 0xa1, 0xe4, 0x8d, 0xe2, 0xdb, 0xbd, 0xcc, 0xf7, 0xf7, 0xc4, 0x51, 0x8a, 0x2e, - 0xdb, 0x18, 0xa9, 0x8e, 0xf9, 0x4f, 0x35, 0x80, 0xfb, 0xa1, 0x73, 0xb8, 0x67, 0xc7, 0x63, 0x91, - 0x62, 0x44, 0xac, 0xfd, 0x90, 0xf2, 0x93, 0xad, 0x54, 0x7a, 0x1f, 0xb6, 0x0e, 0xe7, 0xf4, 0xf7, - 0x3b, 0xa1, 0x4f, 0xd1, 0xb9, 0x74, 0x24, 0xca, 0x0c, 0x98, 0xc2, 0xca, 0xfd, 0x1d, 0x79, 0x11, - 0xf6, 0x41, 0xc1, 0x5b, 0x1c, 0x93, 0x1e, 0x47, 0xc4, 0xdb, 0x45, 0x91, 0x55, 0xaf, 0x18, 0xbe, - 0x77, 0x1c, 0xb1, 0x77, 0xe1, 0x6c, 0x2c, 0x46, 0xb1, 0x48, 0x0e, 0xac, 0x34, 0x29, 0xbf, 0x4c, - 0x06, 0xc6, 0xcb, 0x0a, 0xb9, 0x97, 0xe4, 0xef, 0x7a, 0x17, 0xce, 0x4a, 0x4e, 0xcd, 0x4e, 0x4f, - 0x7a, 0xdd, 0x65, 0x89, 0x2c, 0xcf, 0xee, 0x75, 0xa0, 0x14, 0x82, 0xf4, 0xa4, 0x3a, 0xcc, 0xf2, - 0x89, 0x19, 0xfb, 0xbe, 0xc0, 0xf0, 0x64, 0xf3, 0x00, 0xf7, 0x6e, 0x5b, 0x62, 0xa4, 0x98, 0x5f, - 0x00, 0x98, 0x09, 0xf5, 0x07, 0xa1, 0x2b, 0x88, 0xd5, 0xfd, 0xf5, 0xfe, 0x1a, 0x25, 0x23, 0x90, - 0x93, 0x08, 0xe5, 0x84, 0x63, 0x6f, 0x01, 0x3d, 0x4e, 0xaa, 0xdf, 0xbc, 0x8e, 0x1b, 0x88, 0x24, - 0x1d, 0x7c, 0x17, 0xce, 0x16, 0x33, 0xb1, 0xec, 0xd4, 0x4a, 0x0f, 0x04, 0x39, 0x31, 0xe9, 0x4c, - 0x97, 0xf3, 0x49, 0x6d, 0xa4, 0x7b, 0x07, 0x02, 0x1d, 0xda, 0x2a, 0xb4, 0xc2, 0xfd, 0xcf, 0x2d, - 0x34, 0x84, 0xce, 0x62, 0x43, 0x68, 0x86, 0xfb, 0x9f, 0x73, 0x31, 0x32, 0x3f, 0x80, 0x26, 0x4e, - 0xeb, 0xd3, 0x88, 0xad, 0x41, 0x2b, 0x25, 0x31, 0x27, 0x6a, 0xe1, 0x3d, 0x53, 0xf8, 0xdf, 0x42, - 0x07, 0xb8, 0x26, 0x32, 0x39, 0x2c, 0xe5, 0xce, 0xec, 0x51, 0xe0, 0x3d, 0xce, 0x04, 0xfb, 0x08, - 0x96, 0xa3, 0x58, 0x28, 0xf5, 0xb5, 0xb2, 0x43, 0x0c, 0x0e, 0x94, 0x25, 0x9e, 0x51, 0xda, 0x96, - 0x8f, 0x38, 0x44, 0x4d, 0xeb, 0x47, 0x53, 0x7d, 0xf3, 0x47, 0x70, 0x3e, 0xa7, 0xd8, 0x15, 0x4e, - 0x18, 0xb8, 0x76, 0x7c, 0x4c, 0xeb, 0xce, 0xcc, 0xb3, 0x93, 0x57, 0x79, 0xf6, 0x2e, 0x3d, 0xfb, - 0x27, 0x35, 0xe8, 0x7f, 0x1a, 0x6c, 0x65, 0x91, 0xef, 0xe1, 0x5a, 0xf0, 0x89, 0x74, 0xd5, 0xd2, - 0x45, 0x56, 0xca, 0x2e, 0x72, 0x15, 0x06, 0xea, 0x2d, 0xa8, 0x2a, 0xd2, 0xc1, 0xa9, 0xbc, 0x86, - 0x84, 0x6f, 0x86, 0xbe, 0xf4, 0x6e, 0xdf, 0x85, 0xb3, 0x19, 0x7d, 0xb9, 0xa4, 0x3c, 0x10, 0xce, - 0xa1, 0xf5, 0x9c, 0x2d, 0x0a, 0x93, 0x84, 0x38, 0x14, 0xc9, 0xc8, 0xd5, 0x5d, 0x81, 0x4e, 0x31, - 0x5c, 0xfb, 0x69, 0xc8, 0x09, 0x69, 0x26, 0x61, 0x60, 0xb9, 0x7a, 0xca, 0x2a, 0x4a, 0x40, 0x0f, - 0xdf, 0x0f, 0x8b, 0x2f, 0x41, 0xf7, 0xf3, 0x5b, 0xb0, 0x3c, 0x45, 0x49, 0xb3, 0x68, 0xd2, 0x2c, - 0x6e, 0x16, 0x62, 0x9c, 0xfe, 0xfc, 0x72, 0x17, 0xe7, 0x23, 0x57, 0xd4, 0xa5, 0x70, 0x1a, 0xaa, - 0x5d, 0xd2, 0x38, 0x08, 0x63, 0xa1, 0x14, 0x1d, 0x5d, 0x12, 0xf5, 0x2f, 0x3c, 0x84, 0x33, 0x8b, - 0x9e, 0xb2, 0x60, 0x59, 0x5c, 0x29, 0x2f, 0x8b, 0x33, 0xdb, 0xab, 0x62, 0x89, 0xfc, 0xb3, 0x0a, - 0x74, 0xee, 0x65, 0xcf, 0x9e, 0x1d, 0x4b, 0xc7, 0xc5, 0xba, 0x50, 0x79, 0x48, 0x4f, 0xa9, 0xf2, - 0xca, 0x43, 0x8c, 0x46, 0x77, 0x0e, 0xd1, 0x89, 0xd2, 0x43, 0xda, 0x5c, 0xf5, 0x70, 0x63, 0xb6, - 0x73, 0xb8, 0x77, 0x82, 0xfb, 0x90, 0x68, 0xdc, 0x6e, 0xdc, 0xc9, 0x3c, 0x1f, 0xa3, 0x2b, 0xe5, - 0x29, 0xf2, 0x3e, 0x6e, 0x75, 0xb6, 0x47, 0x52, 0x5f, 0xee, 0xc5, 0xe1, 0x44, 0x6a, 0xb4, 0xf2, - 0xcf, 0x0b, 0x30, 0xe6, 0xcf, 0x6a, 0x50, 0xff, 0x38, 0xf4, 0x02, 0x99, 0x26, 0xf0, 0x65, 0x0c, - 0x2c, 0x63, 0xd9, 0x56, 0x2c, 0x7c, 0x0c, 0x76, 0x11, 0x85, 0x8a, 0xe1, 0xcb, 0x9d, 0x2c, 0xa1, - 0x9c, 0x50, 0xa2, 0x8a, 0xcd, 0x6c, 0x65, 0xe1, 0x66, 0x36, 0xdf, 0x6b, 0xd6, 0x5f, 0xb4, 0xd7, - 0x6c, 0xfb, 0x62, 0x84, 0xaa, 0x1a, 0xb8, 0x6a, 0x0b, 0x39, 0xed, 0x44, 0xc4, 0x28, 0xdd, 0x0c, - 0x03, 0x97, 0x7d, 0x0b, 0x20, 0xf6, 0xc6, 0x07, 0x8a, 0xb2, 0x39, 0xbf, 0xff, 0x27, 0x2c, 0x91, - 0x72, 0x78, 0x4d, 0x25, 0x95, 0xd4, 0xea, 0x62, 0xed, 0x23, 0x97, 0xe4, 0x77, 0xb4, 0xf4, 0x36, - 0x75, 0x71, 0x3a, 0xea, 0xdc, 0x54, 0x3a, 0x8a, 0xb8, 0x4b, 0xdf, 0x7b, 0x09, 0x30, 0xc6, 0x38, - 0xb0, 0xc2, 0xc0, 0x8a, 0x74, 0x3a, 0xc5, 0x40, 0xc8, 0xa7, 0xc1, 0xce, 0x21, 0xfa, 0x5a, 0x2f, - 0xb1, 0x54, 0x56, 0x46, 0xed, 0x71, 0x4a, 0x5b, 0xda, 0x15, 0xe8, 0x7e, 0x1e, 0x7a, 0x81, 0x35, - 0xb1, 0x23, 0x2b, 0xb5, 0x65, 0xda, 0xb2, 0xc1, 0x01, 0x61, 0x0f, 0xec, 0x68, 0xcf, 0x1e, 0x53, - 0x30, 0xa5, 0xf2, 0x3c, 0x68, 0x24, 0x1d, 0x49, 0xa0, 0x40, 0x28, 0xde, 0x8b, 0xd0, 0xa6, 0x47, - 0x50, 0x16, 0xa8, 0x2b, 0x65, 0x8f, 0x00, 0xe4, 0xa8, 0xf9, 0xaf, 0x55, 0x30, 0x36, 0x82, 0xd4, - 0x23, 0x79, 0x9e, 0x83, 0x66, 0x4c, 0x5b, 0x5a, 0x25, 0x4d, 0xd5, 0xcb, 0x25, 0x56, 0x7d, 0x8e, - 0xc4, 0xa6, 0x24, 0x51, 0x7b, 0x69, 0x49, 0xd4, 0x4f, 0x92, 0xc4, 0x34, 0xd7, 0x1a, 0x27, 0x72, - 0x6d, 0x2e, 0x11, 0xf0, 0x75, 0x88, 0x71, 0x56, 0x12, 0xc6, 0x8b, 0x24, 0xd1, 0x9e, 0x95, 0x84, - 0xf9, 0x57, 0x35, 0x30, 0xee, 0x8b, 0x51, 0xfa, 0x8d, 0xf1, 0xfc, 0xaa, 0x18, 0x8f, 0xf9, 0x1f, - 0x35, 0x68, 0x73, 0xfc, 0xc2, 0xaf, 0x51, 0x66, 0xb7, 0x00, 0x48, 0x16, 0x27, 0x0b, 0x8e, 0xe4, - 0x25, 0x73, 0x4d, 0xef, 0x41, 0x47, 0xca, 0x44, 0x8e, 0x68, 0x3c, 0x67, 0x84, 0x14, 0xdc, 0xde, - 0xbc, 0xbc, 0x9b, 0x2f, 0x2d, 0xef, 0xd6, 0x17, 0x96, 0xb7, 0xf1, 0x55, 0xc8, 0xbb, 0x7d, 0xa2, - 0xbc, 0xe1, 0x45, 0xf2, 0xee, 0xbc, 0x48, 0xde, 0xdd, 0x39, 0x79, 0xff, 0xa4, 0x06, 0x3d, 0x92, - 0xf7, 0xae, 0x98, 0x7c, 0x39, 0xa7, 0x38, 0x23, 0xa4, 0xda, 0xab, 0x0a, 0xa9, 0xfe, 0xd2, 0x42, - 0x6a, 0x7c, 0x61, 0x21, 0x35, 0xbf, 0x0a, 0x21, 0xb5, 0x4e, 0x14, 0x92, 0xf1, 0x22, 0x21, 0xb5, - 0x5f, 0xdd, 0x28, 0x73, 0x21, 0x7d, 0xe9, 0x95, 0xeb, 0x1b, 0x21, 0x7d, 0x45, 0x42, 0x82, 0x39, - 0x21, 0x61, 0x64, 0xf1, 0xa5, 0x8d, 0xe8, 0xeb, 0x88, 0x2c, 0x4e, 0x64, 0x76, 0xe3, 0xab, 0x60, - 0x76, 0xf3, 0x44, 0x66, 0xb7, 0x5e, 0xc4, 0xec, 0x2f, 0x10, 0x59, 0xfc, 0x75, 0x0d, 0x60, 0xd7, - 0x0b, 0xc6, 0xbe, 0xf8, 0x26, 0xb6, 0xf8, 0x95, 0x89, 0x2d, 0xfe, 0xb6, 0x0a, 0xc6, 0x03, 0x3b, - 0x3e, 0xfc, 0xa5, 0xb3, 0x90, 0x37, 0xa1, 0x15, 0x06, 0x65, 0x7b, 0x28, 0xd3, 0x35, 0xc3, 0xe0, - 0x97, 0x42, 0xe5, 0x7f, 0xd6, 0x80, 0xf6, 0x96, 0x70, 0xb3, 0xe8, 0x4b, 0x68, 0xfc, 0xaf, 0x8a, - 0x7b, 0x79, 0xc1, 0x76, 0x67, 0x96, 0x9b, 0xad, 0x17, 0x71, 0xd3, 0x98, 0xdb, 0x24, 0xde, 0x87, - 0xd3, 0x53, 0x59, 0x14, 0x5b, 0x1e, 0x7d, 0xb5, 0x29, 0x89, 0x77, 0x49, 0xce, 0xf7, 0x61, 0xe8, - 0x4e, 0x25, 0x52, 0xe4, 0x81, 0x18, 0x5f, 0x0e, 0x67, 0x41, 0xec, 0x2a, 0xf4, 0x5d, 0x14, 0x0d, - 0x25, 0x87, 0x28, 0x21, 0x2c, 0xcb, 0x6d, 0xba, 0x04, 0xdd, 0x0c, 0x7d, 0xca, 0x5d, 0x7c, 0x00, - 0x4b, 0x05, 0x95, 0xf4, 0x2c, 0x9d, 0xe7, 0x78, 0x96, 0x9e, 0x1e, 0x28, 0xd7, 0xe0, 0xe9, 0x88, - 0xb9, 0xfb, 0xca, 0x11, 0x73, 0xef, 0x25, 0xd6, 0xf9, 0x9b, 0x70, 0x5a, 0x9f, 0xf3, 0xa9, 0xb4, - 0x29, 0x49, 0xb0, 0x4f, 0x1a, 0x34, 0x50, 0x47, 0x7b, 0x94, 0x34, 0x25, 0x11, 0x7d, 0x08, 0x67, - 0x4a, 0xe4, 0x68, 0x9a, 0x92, 0x7e, 0x69, 0x4e, 0x57, 0x96, 0xf3, 0xb1, 0xd8, 0xa5, 0xa3, 0xc1, - 0xdf, 0xa9, 0x40, 0x6b, 0x27, 0x0e, 0xdd, 0xcc, 0x49, 0xbf, 0xa0, 0x26, 0x4f, 0x6b, 0x48, 0xed, - 0x45, 0x1a, 0x52, 0x9f, 0xd5, 0x10, 0xf3, 0xc7, 0x15, 0x68, 0xab, 0x29, 0xdc, 0x5f, 0xff, 0x9a, - 0x16, 0x90, 0x17, 0xcf, 0xe2, 0x29, 0xb4, 0x29, 0xe7, 0x79, 0xa2, 0x4b, 0x3c, 0xd1, 0xc2, 0xaa, - 0x5f, 0xc8, 0xc2, 0xcc, 0x3f, 0xa8, 0x40, 0x8f, 0x12, 0xc9, 0xf7, 0xb2, 0x40, 0xea, 0xf0, 0xe2, - 0x0c, 0xe9, 0x0a, 0xd4, 0x63, 0x91, 0xea, 0x4a, 0x89, 0xae, 0x7c, 0xcd, 0x66, 0xe8, 0x6f, 0x89, - 0x11, 0x27, 0x0c, 0x32, 0xc1, 0x8e, 0xc7, 0xc9, 0xa2, 0x5a, 0x0d, 0x84, 0xe3, 0x57, 0x45, 0x76, - 0x6c, 0x4f, 0x12, 0x5d, 0xab, 0x21, 0x7b, 0x8c, 0x41, 0x9d, 0x2c, 0xa5, 0x41, 0x96, 0x42, 0x6d, - 0x73, 0x03, 0xce, 0xde, 0x3d, 0x4a, 0x45, 0x1c, 0xd8, 0x64, 0x31, 0xeb, 0xa8, 0x6f, 0x94, 0x12, - 0xd6, 0xc4, 0x95, 0x82, 0x18, 0x27, 0x5c, 0xae, 0x44, 0x93, 0x1d, 0xf3, 0x1a, 0x74, 0x46, 0x9e, - 0x2f, 0xac, 0x70, 0x34, 0x4a, 0x44, 0x8a, 0x6f, 0x97, 0x2d, 0xfa, 0xac, 0x1a, 0x57, 0x3d, 0xf3, - 0x8f, 0x6b, 0xd0, 0xd5, 0xaf, 0xa2, 0x4a, 0x9d, 0x77, 0xca, 0x9f, 0xdf, 0x59, 0x1f, 0xe8, 0xef, - 0x40, 0x92, 0x8d, 0x34, 0x8d, 0xf5, 0x92, 0x2f, 0xd9, 0x72, 0x11, 0xda, 0xf4, 0x96, 0xc4, 0x7b, - 0x26, 0x88, 0x37, 0x35, 0x6e, 0x20, 0x80, 0x4a, 0x2e, 0x36, 0x60, 0xb9, 0x34, 0x05, 0x2b, 0x0d, - 0x53, 0xdb, 0x57, 0xec, 0x29, 0x9d, 0x70, 0x97, 0x48, 0xf8, 0x12, 0x76, 0x3e, 0xa5, 0xf6, 0x1e, - 0x52, 0x23, 0xdb, 0xf3, 0x44, 0xf1, 0x1c, 0xdb, 0x11, 0x83, 0x06, 0xe0, 0xc4, 0x02, 0xed, 0x2f, - 0x79, 0xec, 0x2b, 0x26, 0xb6, 0x25, 0x64, 0xf7, 0xb1, 0x9f, 0x4f, 0x30, 0x8f, 0xa8, 0xdb, 0x72, - 0x82, 0xa4, 0xb7, 0x37, 0xa1, 0x13, 0xc6, 0xde, 0xd8, 0x0b, 0x64, 0x36, 0xba, 0xb5, 0xe0, 0x25, - 0x20, 0x09, 0x28, 0x37, 0x6d, 0x42, 0x53, 0xea, 0xdd, 0x82, 0x13, 0x3d, 0x85, 0x61, 0xd7, 0x61, - 0x29, 0x49, 0x63, 0xcf, 0x49, 0x71, 0x3a, 0xd6, 0x24, 0x74, 0x75, 0x08, 0xd1, 0x93, 0xe0, 0xdd, - 0xc7, 0x3e, 0x9d, 0x84, 0x5c, 0x87, 0x25, 0x27, 0xf4, 0xb3, 0x89, 0x5c, 0x6e, 0x2d, 0x5f, 0x04, - 0x2a, 0x92, 0xe8, 0x49, 0x30, 0xce, 0xef, 0xbe, 0x08, 0x4c, 0x07, 0x60, 0x37, 0x8d, 0x85, 0x3d, - 0x21, 0xe1, 0xbc, 0x05, 0xad, 0x74, 0xdf, 0xa7, 0xd3, 0xd1, 0xca, 0xc2, 0xd3, 0xd1, 0x66, 0xba, - 0x8f, 0xd3, 0x2e, 0x89, 0xbb, 0x4a, 0xe7, 0x94, 0xaa, 0x87, 0xba, 0xe2, 0x7b, 0x13, 0x2f, 0x55, - 0xa5, 0x83, 0xb2, 0x63, 0xbe, 0x0f, 0x6d, 0x7a, 0x02, 0xbd, 0x23, 0x8f, 0xf6, 0x2a, 0x27, 0x46, - 0x7b, 0xe6, 0x3b, 0xd0, 0xfe, 0x4d, 0xdb, 0xcf, 0xe4, 0xa0, 0x2b, 0xd0, 0xa1, 0x13, 0x74, 0x6b, - 0xdf, 0x0f, 0x9d, 0x43, 0x7d, 0xb2, 0x4b, 0xa0, 0x3b, 0x08, 0x31, 0x01, 0x8c, 0x47, 0x81, 0x17, - 0x06, 0x1b, 0xbe, 0x6f, 0xfe, 0x61, 0x1d, 0xda, 0x3f, 0xb4, 0x93, 0x03, 0xb2, 0x42, 0xb6, 0x02, - 0x9d, 0x87, 0x42, 0xb8, 0x08, 0x78, 0x60, 0x47, 0xaa, 0x46, 0xa9, 0x0c, 0x62, 0x17, 0xc0, 0xf8, - 0xa1, 0x8c, 0x2f, 0x3e, 0x51, 0x67, 0x96, 0x79, 0x5f, 0x8f, 0xa6, 0x13, 0x7a, 0xa1, 0xcb, 0x61, - 0xca, 0x20, 0x76, 0x03, 0x06, 0xd8, 0xa5, 0x4a, 0x20, 0x54, 0x0a, 0xe1, 0x4b, 0x0b, 0x34, 0xf8, - 0x1c, 0x9c, 0xdd, 0x00, 0xc0, 0xb5, 0x9c, 0xce, 0xfe, 0x93, 0x05, 0x31, 0x50, 0x09, 0xcb, 0x2e, - 0x03, 0x7c, 0x9c, 0x3b, 0x30, 0x55, 0x65, 0x57, 0x82, 0xb0, 0xab, 0xd0, 0x53, 0x3d, 0x2e, 0x46, - 0x9b, 0xea, 0xc4, 0xb8, 0xc1, 0xa7, 0x81, 0xec, 0x2e, 0x2c, 0xf3, 0x57, 0xae, 0x7f, 0x9c, 0x03, - 0xa1, 0x73, 0xa6, 0x73, 0x52, 0x37, 0x8b, 0x94, 0xbe, 0xb5, 0xbc, 0x84, 0xa2, 0xa4, 0xe7, 0xad, - 0xf0, 0xf0, 0x55, 0xad, 0xf0, 0x9d, 0x97, 0x5b, 0xe1, 0xbb, 0x2f, 0xb5, 0xc2, 0x9b, 0xbf, 0xa8, - 0x41, 0x57, 0x2d, 0x5e, 0xe4, 0xdc, 0xa7, 0x84, 0x5f, 0x39, 0x59, 0xf8, 0xd5, 0x97, 0x13, 0x7e, - 0xed, 0xa5, 0x84, 0x5f, 0x3f, 0x51, 0xf8, 0x0b, 0xc5, 0xd6, 0x78, 0x65, 0xb1, 0xbd, 0x48, 0x87, - 0x2e, 0x03, 0xec, 0xe6, 0xb1, 0x9a, 0x0e, 0xef, 0x0a, 0xc8, 0x94, 0xd8, 0x8d, 0x97, 0x12, 0xfb, - 0x2f, 0x67, 0x60, 0x67, 0xee, 0x02, 0xd0, 0x02, 0x27, 0x65, 0xbe, 0x90, 0xbb, 0x95, 0x57, 0xe5, - 0xae, 0xf9, 0x3f, 0x15, 0x80, 0x5d, 0x7b, 0x12, 0xc9, 0xc5, 0x9d, 0x7d, 0x1f, 0x3a, 0x09, 0xf5, - 0xe4, 0x89, 0x88, 0xac, 0x81, 0xbf, 0x52, 0xaa, 0x81, 0xcf, 0x49, 0x55, 0x13, 0xa7, 0xc6, 0x21, - 0xc9, 0xdb, 0x14, 0x4d, 0xcb, 0x27, 0xe4, 0xf5, 0x13, 0x0d, 0x4d, 0x40, 0xc7, 0xd6, 0xd7, 0xa0, - 0xaf, 0x08, 0x22, 0x11, 0x3b, 0x22, 0x90, 0x7e, 0xb6, 0xc2, 0x7b, 0x12, 0xba, 0x23, 0x81, 0xec, - 0xbd, 0x9c, 0x4c, 0x3a, 0xfb, 0x45, 0xda, 0xa6, 0x86, 0x6c, 0x4a, 0x02, 0x73, 0x5d, 0x7f, 0x0a, - 0x4d, 0xc4, 0x80, 0x3a, 0xbe, 0x6f, 0x70, 0x8a, 0x75, 0xa0, 0xa5, 0x9e, 0x3a, 0xa8, 0xb0, 0x1e, - 0xb4, 0xa9, 0x14, 0x97, 0x70, 0x55, 0xf3, 0x4f, 0x4f, 0x43, 0x67, 0x3b, 0x48, 0xd2, 0x38, 0x93, - 0x42, 0x2c, 0x2a, 0x4e, 0x1b, 0x54, 0x71, 0xaa, 0x0a, 0x68, 0xe4, 0x67, 0x50, 0x01, 0xcd, 0x75, - 0xa8, 0xdb, 0x41, 0xea, 0xa9, 0x40, 0xae, 0x54, 0xd6, 0xac, 0x13, 0x6e, 0x9c, 0xf0, 0xec, 0x26, - 0xb4, 0x54, 0x0d, 0xb4, 0x2a, 0x31, 0x5c, 0x58, 0x40, 0xad, 0x69, 0xd8, 0x1a, 0x18, 0xae, 0x2a, - 0xce, 0x56, 0x46, 0x52, 0x7a, 0xb4, 0x2e, 0xdb, 0xe6, 0x39, 0x0d, 0x7b, 0x03, 0x6a, 0xf6, 0x58, - 0xda, 0x03, 0x9d, 0xe3, 0x6b, 0x52, 0x2a, 0x69, 0xe5, 0x88, 0x63, 0x26, 0xd4, 0x31, 0x7c, 0x24, - 0x9b, 0xa0, 0x65, 0x50, 0xd3, 0xc8, 0x59, 0x22, 0x8e, 0xdd, 0x52, 0xbb, 0x3c, 0x22, 0x34, 0x66, - 0xdf, 0xab, 0x0f, 0x64, 0xe4, 0x6e, 0xef, 0x63, 0x35, 0x20, 0x11, 0x13, 0x4f, 0x0e, 0x68, 0xcf, - 0x0e, 0xd0, 0x49, 0x2d, 0x6e, 0x24, 0x3a, 0xbd, 0x75, 0x1b, 0x3a, 0x09, 0x65, 0x5f, 0xe4, 0x10, - 0xd0, 0x67, 0xf3, 0xf9, 0x90, 0x3c, 0x35, 0xc3, 0x21, 0x29, 0xd2, 0x34, 0xb7, 0xa0, 0x3d, 0xb1, - 0xe3, 0x43, 0x39, 0xa8, 0x33, 0xfb, 0x1e, 0x9d, 0x1a, 0xe0, 0xc6, 0x44, 0x27, 0x09, 0xd6, 0x01, - 0xa4, 0x61, 0xd1, 0x88, 0xee, 0x2c, 0xcb, 0xf3, 0xed, 0x30, 0x6f, 0xbb, 0xf9, 0xce, 0xf8, 0x6d, - 0x68, 0x45, 0x32, 0xae, 0xa7, 0xca, 0xaf, 0xce, 0xfa, 0x72, 0x31, 0x40, 0x05, 0xfc, 0x5c, 0x53, - 0xb0, 0xef, 0x41, 0x5f, 0x96, 0x5a, 0x8c, 0x54, 0x18, 0x4c, 0xd5, 0x60, 0x53, 0xb5, 0xb9, 0x53, - 0x51, 0x32, 0xef, 0xa5, 0x53, 0x41, 0xf3, 0x87, 0xd0, 0x13, 0x2a, 0x8a, 0xb4, 0x12, 0xc7, 0x0e, - 0x86, 0x03, 0x1a, 0x7e, 0xae, 0x18, 0x5e, 0x0e, 0x32, 0x79, 0x57, 0x94, 0x43, 0xce, 0x55, 0x68, - 0xaa, 0xf2, 0x9f, 0x65, 0x1a, 0x55, 0xba, 0x73, 0x22, 0xcf, 0xa0, 0xb9, 0xc2, 0xb3, 0x3b, 0x33, - 0xd5, 0x01, 0x87, 0xe2, 0x78, 0xc8, 0x74, 0x69, 0xcf, 0xe2, 0x23, 0xff, 0xa9, 0xba, 0x81, 0x4f, - 0xc4, 0x31, 0xf2, 0xb2, 0xa8, 0xaa, 0x18, 0x9e, 0x9e, 0xe5, 0x65, 0x5e, 0x52, 0xc1, 0xdb, 0x79, - 0x35, 0x05, 0x3a, 0xa4, 0x72, 0x95, 0x87, 0x3c, 0x28, 0x3f, 0x43, 0x43, 0x5f, 0x5b, 0x30, 0x54, - 0x9e, 0x97, 0xf3, 0xa5, 0x68, 0xa6, 0x58, 0xe4, 0x1d, 0x30, 0xc2, 0xd8, 0xa5, 0x32, 0xaf, 0xe1, - 0x59, 0xb2, 0xf8, 0x65, 0x55, 0xa4, 0x22, 0x8b, 0xcb, 0xc9, 0x91, 0xb5, 0x42, 0xd9, 0x61, 0x37, - 0xa1, 0x1b, 0xc5, 0xe1, 0xe7, 0xc2, 0x49, 0x65, 0xf4, 0x7a, 0x6e, 0xbe, 0x28, 0x5d, 0xe1, 0x29, - 0x98, 0x2d, 0xa2, 0xd3, 0xf3, 0xcf, 0x8d, 0x4e, 0x57, 0x74, 0xf8, 0x37, 0x9c, 0xaf, 0x48, 0x20, - 0x04, 0x3e, 0x45, 0x05, 0x8e, 0xaf, 0xcd, 0x3f, 0x45, 0x05, 0x91, 0x43, 0x68, 0x79, 0xc9, 0x3d, - 0x2f, 0x4e, 0xd2, 0xe1, 0x05, 0xbd, 0xe8, 0x50, 0x17, 0xc3, 0x4e, 0x2f, 0xb9, 0x6f, 0x27, 0xe9, - 0xf0, 0xa2, 0xbe, 0x57, 0x80, 0x3d, 0xe4, 0xb9, 0xdc, 0x86, 0x93, 0xfe, 0x5e, 0x9a, 0xe5, 0x79, - 0x7e, 0xd0, 0xa6, 0xf2, 0x29, 0xa4, 0xbf, 0x1f, 0xc1, 0x92, 0x1c, 0x53, 0x98, 0xe4, 0xeb, 0xb3, - 0x3a, 0x39, 0x75, 0x62, 0xc3, 0x7b, 0xf1, 0xd4, 0x01, 0x4e, 0xfe, 0x00, 0x74, 0x59, 0xf2, 0x01, - 0x97, 0x17, 0x3e, 0x20, 0x77, 0x6e, 0xf2, 0x01, 0xf9, 0xe1, 0xc2, 0x0d, 0x68, 0xaa, 0x9a, 0xb5, - 0x2b, 0x73, 0x4e, 0x4b, 0x55, 0x67, 0x72, 0x45, 0xc1, 0xbe, 0x05, 0x2d, 0x2a, 0x58, 0x0a, 0xa3, - 0xe1, 0xca, 0xac, 0x12, 0xcb, 0x6a, 0x23, 0xde, 0xf4, 0x65, 0xd5, 0xd1, 0xdb, 0xd0, 0xd2, 0xfb, - 0xf5, 0x37, 0x66, 0x0d, 0x53, 0xad, 0xed, 0x5c, 0x53, 0xb0, 0x6b, 0xd0, 0x98, 0xa0, 0x4b, 0x1f, - 0x9a, 0xb3, 0xce, 0x50, 0x7a, 0x7a, 0x89, 0x25, 0x47, 0x44, 0xdb, 0x04, 0x69, 0x7d, 0x6f, 0xce, - 0x39, 0xa2, 0x7c, 0x0f, 0xc1, 0x21, 0x29, 0xf6, 0x13, 0xbf, 0x0d, 0x17, 0xca, 0x15, 0x46, 0xba, - 0xfc, 0x48, 0xdd, 0x6c, 0xba, 0x4a, 0x4f, 0x79, 0x63, 0x81, 0x82, 0x4f, 0x17, 0x2a, 0xf1, 0xf3, - 0xd1, 0x73, 0x2a, 0x98, 0x6e, 0xe7, 0x0b, 0x26, 0xfa, 0x95, 0xe1, 0xb5, 0xb9, 0x69, 0xe5, 0x4b, - 0xae, 0x5e, 0x46, 0x69, 0xa5, 0xfe, 0x00, 0xba, 0xa3, 0xec, 0xd9, 0xb3, 0x63, 0xb5, 0xcd, 0x1f, - 0x5e, 0xa7, 0x71, 0xa5, 0x3d, 0x63, 0xa9, 0x5e, 0x86, 0x77, 0x46, 0xa5, 0xe2, 0x99, 0xf3, 0xd0, - 0x72, 0x02, 0xcb, 0x76, 0xdd, 0x78, 0xf8, 0x96, 0xac, 0x97, 0x71, 0x82, 0x0d, 0xd7, 0xa5, 0xc2, - 0xa3, 0x30, 0x12, 0x74, 0x41, 0xc3, 0xf2, 0xdc, 0xe1, 0xaa, 0x5c, 0xba, 0x35, 0x68, 0xdb, 0xa5, - 0xab, 0x5f, 0x76, 0x6c, 0xfb, 0xbe, 0xf0, 0x91, 0xe0, 0x5b, 0xea, 0xea, 0x97, 0x02, 0x6d, 0xbb, - 0xec, 0x0d, 0xe8, 0x4e, 0xec, 0x23, 0x4b, 0x43, 0x86, 0x37, 0xe4, 0xbd, 0x9a, 0x89, 0x7d, 0xb4, - 0xa3, 0x40, 0xa8, 0xe6, 0xb2, 0xa0, 0x98, 0x94, 0xed, 0xed, 0x59, 0x35, 0xcf, 0x33, 0x1c, 0xbc, - 0xed, 0xe5, 0xc9, 0x0e, 0x72, 0x47, 0xe4, 0x84, 0x2d, 0x7f, 0x7d, 0xf8, 0xce, 0xbc, 0x3b, 0x52, - 0xa9, 0x19, 0x74, 0x47, 0x3a, 0x4b, 0xb3, 0x0e, 0x20, 0xbd, 0x35, 0x09, 0xfb, 0xe6, 0xec, 0x98, - 0x7c, 0x2f, 0xc7, 0x65, 0x35, 0x2d, 0x89, 0x7a, 0x1d, 0x80, 0x6a, 0x8e, 0xe4, 0x98, 0xb5, 0xd9, - 0x31, 0xf9, 0x56, 0x8e, 0xb7, 0x9f, 0xe4, 0xbb, 0xba, 0x5b, 0xd0, 0xce, 0x70, 0xd3, 0x66, 0xd9, - 0xbe, 0x3f, 0xbc, 0x35, 0x6b, 0x03, 0x7a, 0x3f, 0xc7, 0x8d, 0x4c, 0xb5, 0xf0, 0x25, 0x94, 0x1b, - 0xa6, 0x30, 0x6e, 0xf8, 0xee, 0xec, 0x4b, 0xf2, 0x4d, 0x1f, 0x6f, 0x1f, 0xe4, 0xfb, 0xbf, 0x0f, - 0xa1, 0xa7, 0x53, 0x94, 0x72, 0xd8, 0x7b, 0xb3, 0x4b, 0x47, 0x79, 0x3f, 0xc0, 0xf5, 0xe5, 0x26, - 0x39, 0xf8, 0x36, 0x74, 0x24, 0xc7, 0xe5, 0xd0, 0xf5, 0x59, 0x05, 0x2b, 0x82, 0x4a, 0x2e, 0x45, - 0x23, 0x87, 0x5d, 0x83, 0x86, 0x1d, 0x45, 0xfe, 0xf1, 0xf0, 0xfd, 0x59, 0xab, 0xda, 0x40, 0x30, - 0x97, 0x58, 0xd4, 0xc3, 0x49, 0xe6, 0xa7, 0x9e, 0x2e, 0x0d, 0xfe, 0xf6, 0xac, 0x1e, 0x96, 0x2e, - 0x17, 0xf0, 0xce, 0xa4, 0x74, 0xd3, 0xe0, 0x1d, 0x30, 0xa2, 0x30, 0x49, 0x2d, 0x77, 0xe2, 0x0f, - 0x6f, 0xcf, 0xad, 0xbe, 0xb2, 0xfe, 0x94, 0xb7, 0x22, 0xd9, 0x30, 0x6f, 0x43, 0x77, 0x83, 0xae, - 0x3c, 0x7a, 0x09, 0xb9, 0xf2, 0x6b, 0x50, 0xcf, 0x33, 0x70, 0xf9, 0x1a, 0x41, 0x14, 0xcf, 0xc4, - 0x76, 0x30, 0x0a, 0x39, 0xa1, 0xcd, 0xbf, 0xab, 0x41, 0x73, 0x37, 0xcc, 0x62, 0x47, 0xbc, 0xb8, - 0xb2, 0xfa, 0x75, 0xad, 0x32, 0x41, 0x51, 0x4b, 0x26, 0xb5, 0x83, 0xd0, 0xe5, 0xe4, 0x5e, 0x8d, - 0xb2, 0x24, 0x79, 0x72, 0xef, 0x0c, 0x34, 0xe4, 0xa6, 0x5e, 0xd6, 0xf6, 0xca, 0x0e, 0x99, 0x4b, - 0x96, 0x1c, 0xb8, 0xe1, 0xd3, 0x00, 0xcd, 0xa5, 0x41, 0xa5, 0xb1, 0xa0, 0x41, 0xdb, 0x2e, 0x5d, - 0xf2, 0xd0, 0x04, 0x64, 0x8f, 0x4d, 0xb9, 0x61, 0xd0, 0x40, 0xb2, 0x4a, 0x9d, 0x38, 0x6c, 0x3d, - 0x27, 0x71, 0x78, 0x19, 0xea, 0x81, 0xae, 0x29, 0xcd, 0xf1, 0x74, 0xbd, 0x8e, 0xe0, 0xec, 0x06, - 0xe4, 0xe5, 0xe0, 0x2a, 0x5e, 0x7b, 0x7e, 0xb9, 0xf8, 0x3a, 0xb4, 0xf3, 0x0b, 0xb3, 0x79, 0xa4, - 0x56, 0x5c, 0xa1, 0xdd, 0xd3, 0x2d, 0x5e, 0x90, 0x2d, 0xc8, 0x38, 0x46, 0x71, 0xb8, 0xaf, 0xb2, - 0x49, 0x9d, 0x57, 0xc9, 0x38, 0xee, 0xe0, 0x38, 0x9d, 0x47, 0xf5, 0x12, 0xcb, 0x09, 0x83, 0x24, - 0x55, 0xf5, 0xfa, 0x2d, 0x2f, 0xd9, 0xc4, 0xae, 0xf9, 0x7b, 0x15, 0x30, 0xf0, 0xeb, 0x50, 0xc6, - 0x8c, 0x41, 0x7d, 0xe2, 0x44, 0x99, 0x8a, 0xd7, 0xa9, 0xad, 0x2e, 0xc4, 0x4a, 0xe9, 0xa9, 0x0b, - 0xb1, 0xc4, 0xdb, 0x9a, 0x4c, 0x07, 0x62, 0x5b, 0x5e, 0xb5, 0x3b, 0xf6, 0x43, 0xdb, 0x55, 0x12, - 0xd3, 0x5d, 0x76, 0x16, 0x9a, 0x4e, 0x60, 0x39, 0xf9, 0x75, 0xcf, 0x86, 0x13, 0x6c, 0x06, 0xa9, - 0x02, 0xe3, 0x4e, 0xa0, 0xa9, 0xc1, 0xdb, 0xee, 0x91, 0xf9, 0x17, 0x15, 0x58, 0xde, 0x89, 0x43, - 0x47, 0x24, 0xc9, 0x7d, 0x0c, 0x0d, 0x6c, 0x0a, 0xf4, 0x18, 0xd4, 0x29, 0xd7, 0x27, 0xef, 0xad, - 0x51, 0x1b, 0x75, 0x4b, 0x26, 0x7f, 0xf2, 0x5d, 0x51, 0x8d, 0xb7, 0x09, 0x42, 0x9b, 0xa2, 0x1c, - 0x4d, 0x03, 0x6b, 0x25, 0x34, 0x65, 0x09, 0xaf, 0x41, 0xbf, 0xb8, 0x8f, 0x41, 0x4f, 0x50, 0x17, - 0x56, 0x73, 0x28, 0x3d, 0xe5, 0x0a, 0x74, 0x62, 0x61, 0x63, 0xf0, 0x44, 0x8f, 0x69, 0x10, 0x0d, - 0x48, 0x10, 0x3e, 0xc7, 0x3c, 0x80, 0xc1, 0x4e, 0x2c, 0x22, 0x3b, 0x16, 0xe8, 0x8f, 0x27, 0xc4, - 0xc3, 0x73, 0xd0, 0xf4, 0x45, 0x30, 0x4e, 0x0f, 0xd4, 0x7c, 0x55, 0x2f, 0xbf, 0xac, 0x5c, 0x2d, - 0x5d, 0x56, 0x46, 0x5e, 0xc6, 0xc2, 0x56, 0x77, 0x9a, 0xa9, 0x8d, 0xba, 0x1f, 0x64, 0xbe, 0xca, - 0x3f, 0x1a, 0x5c, 0x76, 0xcc, 0x3f, 0xaf, 0x41, 0x47, 0x71, 0x86, 0xde, 0x22, 0xa5, 0x52, 0xc9, - 0xa5, 0x32, 0x80, 0x5a, 0xf2, 0xd8, 0x57, 0x62, 0xc2, 0x26, 0x7b, 0x1f, 0x6a, 0xbe, 0x37, 0x51, - 0xdb, 0xaa, 0x8b, 0x53, 0xde, 0x7d, 0x9a, 0xbf, 0x6a, 0x77, 0x8c, 0xd4, 0xec, 0x22, 0x79, 0xdf, - 0x23, 0x0b, 0x95, 0x48, 0xf1, 0x04, 0x3d, 0xed, 0x11, 0x6a, 0x2a, 0x32, 0xd5, 0x76, 0xa8, 0x50, - 0x57, 0x9b, 0x5f, 0x8f, 0xb7, 0x15, 0x64, 0xdb, 0x65, 0xdf, 0x06, 0x23, 0x09, 0xec, 0x28, 0x39, - 0x08, 0x53, 0xb5, 0x8d, 0x62, 0x6b, 0xe9, 0x51, 0xb0, 0xb6, 0xf9, 0x70, 0xef, 0x28, 0xd8, 0x55, - 0x18, 0xf5, 0xb2, 0x9c, 0x92, 0x7d, 0x0f, 0xba, 0x89, 0x48, 0x12, 0x79, 0x31, 0x66, 0x14, 0x2a, - 0xb3, 0x3c, 0x5b, 0xde, 0x02, 0x11, 0x16, 0xbf, 0x5a, 0x0d, 0xee, 0x24, 0x05, 0x88, 0xfd, 0x10, - 0xfa, 0x7a, 0xbc, 0x1f, 0x8e, 0xc7, 0x79, 0xa2, 0xf4, 0xe2, 0xdc, 0x13, 0xee, 0x13, 0xba, 0xf4, - 0x9c, 0x5e, 0x52, 0x46, 0xb0, 0x1f, 0x40, 0x3f, 0x92, 0xc2, 0xb4, 0x54, 0xd2, 0x5c, 0x9a, 0xf7, - 0x85, 0xa9, 0x60, 0x64, 0x4a, 0xd8, 0x45, 0xd9, 0x7c, 0x01, 0x4f, 0xcc, 0xff, 0xaa, 0x40, 0xa7, - 0x34, 0x6b, 0xba, 0x42, 0x9e, 0x88, 0x58, 0x27, 0xd0, 0xb1, 0x8d, 0xb0, 0x83, 0x50, 0xdd, 0xbc, - 0x6c, 0x73, 0x6a, 0x23, 0x2c, 0x0e, 0xd5, 0x89, 0x4a, 0x9b, 0x53, 0x1b, 0x5d, 0x9a, 0xda, 0xd1, - 0xca, 0x8b, 0x6b, 0x24, 0x94, 0x3a, 0xef, 0x16, 0xc0, 0x6d, 0xca, 0x57, 0xa1, 0x3a, 0xed, 0xdb, - 0x89, 0x4e, 0xe9, 0xe7, 0x7d, 0x34, 0xcd, 0x27, 0x22, 0xc6, 0xb9, 0x28, 0x6f, 0xa8, 0xbb, 0x28, - 0x6b, 0xf2, 0x32, 0xcf, 0xc2, 0x40, 0x9e, 0x9a, 0x76, 0xb9, 0x81, 0x80, 0x1f, 0x85, 0x01, 0x0d, - 0x53, 0x92, 0x25, 0x7e, 0xb6, 0xb9, 0xee, 0xa2, 0x2f, 0x79, 0x9c, 0x09, 0x0c, 0xd8, 0x5c, 0xba, - 0xa2, 0xd8, 0xe6, 0x2d, 0xea, 0x6f, 0xbb, 0xe6, 0xbf, 0x55, 0x60, 0x79, 0x8e, 0xd9, 0x18, 0x1f, - 0x21, 0xa3, 0xf5, 0x6d, 0x86, 0x2e, 0x6f, 0x62, 0x77, 0xdb, 0x25, 0x44, 0x3a, 0x21, 0x65, 0xaa, - 0x2a, 0x44, 0x3a, 0x41, 0x4d, 0x3a, 0x0b, 0xcd, 0xf4, 0x88, 0xbe, 0x56, 0x1a, 0x46, 0x23, 0x3d, - 0xc2, 0xcf, 0xdc, 0x80, 0xb6, 0x1f, 0x8e, 0x2d, 0x5f, 0x3c, 0x11, 0x3e, 0xf1, 0xa1, 0xbf, 0x7e, - 0xf5, 0x04, 0x29, 0xaf, 0xdd, 0x0f, 0xc7, 0xf7, 0x91, 0x96, 0x1b, 0xbe, 0x6a, 0x99, 0x1f, 0x83, - 0xa1, 0xa1, 0xac, 0x0d, 0x8d, 0x2d, 0xb1, 0x9f, 0x8d, 0x07, 0xa7, 0x98, 0x01, 0x75, 0x1c, 0x31, - 0xa8, 0x60, 0xeb, 0x33, 0x3b, 0x0e, 0x06, 0x55, 0x44, 0xdf, 0x8d, 0xe3, 0x30, 0x1e, 0xd4, 0xb0, - 0xb9, 0x63, 0x07, 0x9e, 0x33, 0xa8, 0x63, 0xf3, 0x9e, 0x9d, 0xda, 0xfe, 0xa0, 0x61, 0xfe, 0x65, - 0x03, 0x8c, 0x1d, 0xf5, 0x76, 0xb6, 0x05, 0xbd, 0xfc, 0x16, 0xff, 0xe2, 0x54, 0xcf, 0xce, 0x6c, - 0x83, 0x52, 0x3d, 0xdd, 0xa8, 0xd4, 0x9b, 0xfd, 0x17, 0x40, 0x75, 0xee, 0x5f, 0x00, 0x97, 0xa0, - 0xf6, 0x38, 0x3e, 0x9e, 0x3e, 0xf4, 0xda, 0xf1, 0xed, 0x80, 0x23, 0x98, 0xbd, 0x07, 0x1d, 0x94, - 0xbb, 0x95, 0xd0, 0x02, 0xad, 0xd2, 0x24, 0xe5, 0x3f, 0x2e, 0x10, 0x9c, 0x03, 0x12, 0xa9, 0x45, - 0x7c, 0x0d, 0x0c, 0xe7, 0xc0, 0xf3, 0xdd, 0x58, 0x04, 0x2a, 0xf7, 0xcc, 0xe6, 0xa7, 0xcc, 0x73, - 0x1a, 0xf6, 0x7d, 0xaa, 0xda, 0xd7, 0xe9, 0x9d, 0x72, 0xd1, 0xd0, 0xd9, 0xa9, 0x1d, 0xb4, 0xa6, - 0xe0, 0x4b, 0x25, 0x72, 0x5a, 0x8b, 0x8a, 0xcb, 0x61, 0xad, 0xf2, 0xe5, 0x30, 0x79, 0x3f, 0x9c, - 0x96, 0x10, 0x23, 0xdf, 0xc7, 0xe1, 0x0a, 0x72, 0x5d, 0xad, 0xc7, 0x73, 0xb9, 0x11, 0xbd, 0x6a, - 0xa9, 0x75, 0xf9, 0x2a, 0xf4, 0x71, 0x9d, 0xb7, 0x64, 0x78, 0x80, 0xae, 0x04, 0xd4, 0x15, 0xcf, - 0x2c, 0x39, 0xd8, 0xc2, 0x00, 0x01, 0x95, 0xf1, 0x1a, 0xf4, 0xf5, 0xb7, 0xa8, 0x3b, 0x07, 0x1d, - 0x75, 0x04, 0xa2, 0xa0, 0xf2, 0xca, 0xc1, 0x1a, 0x9c, 0x76, 0x0e, 0xec, 0x20, 0x10, 0xbe, 0xb5, - 0x9f, 0x8d, 0x46, 0x7a, 0x05, 0xe8, 0xd2, 0xd9, 0xe0, 0xb2, 0x42, 0xdd, 0x21, 0x0c, 0x2d, 0x28, - 0x26, 0xf4, 0x02, 0xcf, 0x97, 0x37, 0xfa, 0x68, 0xb5, 0xeb, 0x11, 0x65, 0x27, 0xf0, 0x7c, 0x4a, - 0x0b, 0xe3, 0x9a, 0xf7, 0x11, 0x0c, 0xb2, 0xcc, 0x73, 0x13, 0x2b, 0x0d, 0xf5, 0xd5, 0x7a, 0x3a, - 0xe1, 0x9d, 0x8a, 0x3b, 0x1f, 0x65, 0x9e, 0xbb, 0x17, 0xaa, 0xcb, 0xf5, 0x3d, 0xa2, 0xd7, 0x5d, - 0xf3, 0x23, 0xe8, 0x96, 0x75, 0x07, 0x75, 0x91, 0x36, 0x64, 0x83, 0x53, 0x0c, 0xa0, 0xf9, 0x30, - 0x8c, 0x27, 0xb6, 0x3f, 0xa8, 0x60, 0x5b, 0x5e, 0x99, 0x1c, 0x54, 0x59, 0x17, 0x0c, 0xbd, 0x53, - 0x18, 0xd4, 0xcc, 0x0f, 0xc1, 0xd0, 0xff, 0x0a, 0xa0, 0x4b, 0xda, 0xa1, 0x2b, 0x64, 0x9c, 0x24, - 0x3d, 0x93, 0x81, 0x00, 0x8a, 0x91, 0xf4, 0x4f, 0x2f, 0xaa, 0xc5, 0x4f, 0x2f, 0xcc, 0xdf, 0x80, - 0x6e, 0x79, 0x72, 0x3a, 0x93, 0x57, 0x29, 0x32, 0x79, 0x0b, 0x46, 0xd1, 0x59, 0x58, 0x1c, 0x4e, - 0xac, 0x52, 0xc8, 0x60, 0x20, 0x00, 0x5f, 0x63, 0xfe, 0x6e, 0x05, 0x1a, 0x14, 0xfc, 0xd2, 0xd2, - 0x82, 0x8d, 0xc2, 0x76, 0x1a, 0xbc, 0x4d, 0x10, 0xfa, 0xd2, 0xf2, 0x11, 0x71, 0xf5, 0xf9, 0x47, - 0xc4, 0xb5, 0xe9, 0x23, 0xe2, 0x97, 0xac, 0x21, 0xba, 0xf1, 0x18, 0x9a, 0xf2, 0x3f, 0x23, 0x6c, - 0x19, 0x7a, 0x8f, 0x82, 0xc3, 0x20, 0x7c, 0x1a, 0x48, 0xc0, 0xe0, 0x14, 0x3b, 0x0d, 0x4b, 0x9a, - 0xe9, 0xea, 0x87, 0x26, 0x83, 0x0a, 0x1b, 0x40, 0x97, 0xc4, 0xaa, 0x21, 0x55, 0x76, 0x09, 0x86, - 0x6a, 0x71, 0xd8, 0x0a, 0x03, 0xf1, 0x30, 0x4c, 0xbd, 0xd1, 0xb1, 0xc6, 0xd6, 0xd8, 0x12, 0x74, - 0x76, 0xd3, 0x30, 0xda, 0x15, 0x81, 0xeb, 0x05, 0xe3, 0x41, 0xfd, 0xc6, 0x3d, 0x68, 0xca, 0xdf, - 0x9f, 0x94, 0x5e, 0x29, 0x01, 0x83, 0x53, 0x48, 0xfd, 0x99, 0xed, 0xa5, 0x5e, 0x30, 0x7e, 0x28, - 0x8e, 0x52, 0xe9, 0x94, 0xee, 0xdb, 0x49, 0x3a, 0xa8, 0xb2, 0x3e, 0x80, 0x7a, 0xea, 0xdd, 0xc0, - 0x1d, 0xd4, 0xee, 0x6c, 0xfe, 0xf4, 0xe7, 0x97, 0x2b, 0x7f, 0xff, 0xf3, 0xcb, 0x95, 0x7f, 0xfe, - 0xf9, 0xe5, 0x53, 0x7f, 0xf2, 0x2f, 0x97, 0x2b, 0x3f, 0x7a, 0xaf, 0xf4, 0x73, 0x97, 0x89, 0x9d, - 0xc6, 0xde, 0x91, 0x3c, 0x4d, 0xd4, 0x9d, 0x40, 0xdc, 0x8a, 0x0e, 0xc7, 0xb7, 0xa2, 0xfd, 0x5b, - 0x5a, 0xe7, 0xf6, 0x9b, 0xf4, 0xcf, 0x96, 0xf7, 0xff, 0x37, 0x00, 0x00, 0xff, 0xff, 0xa5, 0x49, - 0x81, 0x96, 0x32, 0x46, 0x00, 0x00, + // 5883 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3c, 0x4d, 0x8f, 0x1d, 0x49, + 0x52, 0xf3, 0xbe, 0xab, 0xe2, 0x7d, 0xf4, 0xeb, 0xf4, 0xd7, 0x1b, 0x7b, 0xc6, 0xee, 0xa9, 0x19, + 0x7b, 0x7a, 0x3d, 0xe3, 0xf6, 0x4c, 0xcf, 0x9a, 0x1d, 0x18, 0x76, 0x67, 0xdb, 0xdd, 0xf6, 0x6e, + 0xcf, 0xd8, 0xed, 0x26, 0xbb, 0xcd, 0x88, 0x3d, 0x50, 0xaa, 0xae, 0xca, 0xf7, 0xba, 0xa6, 0xeb, + 0x55, 0x95, 0xeb, 0xc3, 0xee, 0xf6, 0x09, 0x69, 0x39, 0x21, 0x71, 0x82, 0x1b, 0x42, 0x5a, 0xed, + 0x01, 0xc4, 0x01, 0x81, 0xe0, 0x84, 0xf8, 0x03, 0xcb, 0x05, 0x71, 0xe2, 0x08, 0x68, 0x39, 0xf1, + 0x75, 0x03, 0xc4, 0x05, 0x09, 0x45, 0x64, 0x66, 0xbd, 0x7a, 0x1f, 0x6e, 0xdb, 0xf3, 0x81, 0x76, + 0xa5, 0xbd, 0x65, 0x46, 0x44, 0x56, 0x65, 0xc5, 0x57, 0x46, 0x46, 0x46, 0x16, 0xf4, 0x62, 0x3f, + 0x16, 0x81, 0x1f, 0x8a, 0xb5, 0x38, 0x89, 0xb2, 0x88, 0x19, 0xba, 0x7f, 0xf1, 0xc6, 0xc8, 0xcf, + 0x0e, 0xf3, 0x83, 0x35, 0x37, 0x1a, 0xdf, 0x1c, 0x45, 0xa3, 0xe8, 0x26, 0x11, 0x1c, 0xe4, 0x43, + 0xea, 0x51, 0x87, 0x5a, 0x72, 0xe0, 0x45, 0x88, 0x03, 0x27, 0x54, 0xed, 0xa5, 0xcc, 0x1f, 0x8b, + 0x34, 0x73, 0xc6, 0xb1, 0x46, 0x06, 0x91, 0x7b, 0xa4, 0xda, 0x66, 0x76, 0xac, 0xe8, 0xac, 0x3f, + 0xa8, 0x42, 0xeb, 0xbe, 0x48, 0x53, 0x67, 0x24, 0x98, 0x05, 0xb5, 0xd4, 0xf7, 0x06, 0x95, 0x95, + 0xca, 0x6a, 0x6f, 0xbd, 0xbf, 0x56, 0x4c, 0x6b, 0x2f, 0x73, 0xb2, 0x3c, 0xe5, 0x88, 0x44, 0x1a, + 0x77, 0xec, 0x0d, 0xaa, 0xb3, 0x34, 0xf7, 0x45, 0x76, 0x18, 0x79, 0x1c, 0x91, 0xac, 0x0f, 0x35, + 0x91, 0x24, 0x83, 0xda, 0x4a, 0x65, 0xb5, 0xc3, 0xb1, 0xc9, 0x18, 0xd4, 0x3d, 0x27, 0x73, 0x06, + 0x75, 0x02, 0x51, 0x9b, 0xbd, 0x05, 0xbd, 0x38, 0x89, 0x5c, 0xdb, 0x0f, 0x87, 0x91, 0x4d, 0xd8, + 0x06, 0x61, 0x3b, 0x08, 0xdd, 0x0e, 0x87, 0xd1, 0x16, 0x52, 0x0d, 0xa0, 0xe5, 0x84, 0x4e, 0x70, + 0x92, 0x8a, 0x41, 0x93, 0xd0, 0xba, 0xcb, 0x7a, 0x50, 0xf5, 0xbd, 0x41, 0x6b, 0xa5, 0xb2, 0x5a, + 0xe7, 0x55, 0xdf, 0xc3, 0x77, 0xe4, 0xb9, 0xef, 0x0d, 0x0c, 0xf9, 0x0e, 0x6c, 0x33, 0x0b, 0x3a, + 0xa1, 0x10, 0xde, 0x4e, 0x94, 0x71, 0x11, 0x07, 0x27, 0x03, 0x73, 0xa5, 0xb2, 0x6a, 0xf0, 0x29, + 0x18, 0xbb, 0x08, 0x86, 0x27, 0x0e, 0xf2, 0xd1, 0xfd, 0x74, 0x34, 0x80, 0x95, 0xca, 0xaa, 0xc9, + 0x8b, 0xbe, 0xf5, 0x10, 0xcc, 0xcd, 0x28, 0x0c, 0x85, 0x9b, 0x45, 0x09, 0xbb, 0x02, 0x6d, 0xfd, + 0xb9, 0xb6, 0x62, 0x53, 0x83, 0x83, 0x06, 0x6d, 0x7b, 0xec, 0x6d, 0x58, 0x72, 0x35, 0xb5, 0xed, + 0x87, 0x9e, 0x38, 0x26, 0x3e, 0x35, 0x78, 0xaf, 0x00, 0x6f, 0x23, 0xd4, 0xfa, 0xf7, 0x2a, 0xb4, + 0xf6, 0x0e, 0xf3, 0xe1, 0x30, 0x10, 0xec, 0x2d, 0xe8, 0xaa, 0xe6, 0x66, 0x14, 0x6c, 0x7b, 0xc7, + 0xea, 0xb9, 0xd3, 0x40, 0xb6, 0x02, 0x6d, 0x05, 0xd8, 0x3f, 0x89, 0x85, 0x7a, 0x6c, 0x19, 0x34, + 0xfd, 0x9c, 0xfb, 0x7e, 0x48, 0xec, 0xaf, 0xf1, 0x69, 0xe0, 0x0c, 0x95, 0x73, 0x4c, 0x12, 0x99, + 0xa6, 0x72, 0xe8, 0x6d, 0x1b, 0x81, 0xff, 0x58, 0x70, 0x31, 0xda, 0x0c, 0x33, 0x92, 0x4b, 0x83, + 0x97, 0x41, 0x6c, 0x1d, 0xce, 0xa5, 0x72, 0x88, 0x9d, 0x38, 0xe1, 0x48, 0xa4, 0x76, 0xee, 0x87, + 0xd9, 0x2f, 0x7d, 0x73, 0xd0, 0x5c, 0xa9, 0xad, 0xd6, 0xf9, 0x19, 0x85, 0xe4, 0x84, 0x7b, 0x48, + 0x28, 0xf6, 0x1e, 0x9c, 0x9d, 0x19, 0x23, 0x87, 0xb4, 0x56, 0x6a, 0xab, 0x35, 0xce, 0xa6, 0x86, + 0x6c, 0xd3, 0x88, 0x3b, 0xb0, 0x9c, 0xe4, 0x21, 0x6a, 0xf2, 0x5d, 0x3f, 0xc8, 0x44, 0xb2, 0x17, + 0x0b, 0x97, 0xe4, 0xdb, 0x5e, 0xbf, 0xb0, 0x46, 0xca, 0xce, 0x67, 0xd1, 0x7c, 0x7e, 0x84, 0xf5, + 0x3f, 0x55, 0x30, 0xb6, 0xfc, 0x34, 0x76, 0x32, 0xf7, 0x90, 0x5d, 0x80, 0xd6, 0x30, 0x0f, 0xdd, + 0x89, 0x04, 0x9b, 0xd8, 0xdd, 0xf6, 0xd8, 0xaf, 0xc2, 0x52, 0x10, 0xb9, 0x4e, 0x60, 0x17, 0xc2, + 0x1a, 0x54, 0x57, 0x6a, 0xab, 0xed, 0xf5, 0x33, 0x13, 0x2d, 0x2f, 0x94, 0x81, 0xf7, 0x88, 0x76, + 0xa2, 0x1c, 0xdf, 0x86, 0x7e, 0x22, 0xc6, 0x51, 0x26, 0x4a, 0xc3, 0x6b, 0x34, 0x9c, 0x4d, 0x86, + 0x7f, 0x96, 0x38, 0xf1, 0x4e, 0xe4, 0x09, 0xbe, 0x24, 0x69, 0x27, 0xc3, 0xdf, 0x2f, 0xf1, 0x53, + 0x8c, 0x6c, 0xdf, 0x3b, 0xb6, 0xe9, 0x05, 0x83, 0xfa, 0x4a, 0x6d, 0xb5, 0x31, 0x61, 0x8e, 0x18, + 0x6d, 0x7b, 0xc7, 0xf7, 0x10, 0xc3, 0x3e, 0x80, 0xf3, 0xb3, 0x43, 0xe4, 0x53, 0x07, 0x0d, 0x1a, + 0x73, 0x66, 0x6a, 0x0c, 0x27, 0x14, 0x7b, 0x03, 0x3a, 0x7a, 0x50, 0x86, 0x8a, 0xd4, 0x94, 0xa2, + 0x4d, 0x4b, 0x8a, 0x74, 0x01, 0x5a, 0x7e, 0x6a, 0xa7, 0x7e, 0x78, 0x44, 0xc6, 0x65, 0xf0, 0xa6, + 0x9f, 0xee, 0xf9, 0xe1, 0x11, 0x7b, 0x15, 0x8c, 0x44, 0xb8, 0x12, 0x63, 0x10, 0xa6, 0x95, 0x08, + 0x97, 0x50, 0x17, 0x00, 0x9b, 0xb6, 0x9b, 0x09, 0x65, 0x62, 0xcd, 0x44, 0xb8, 0x9b, 0x99, 0xb0, + 0x52, 0x68, 0xdc, 0x17, 0xc9, 0x48, 0xa0, 0x95, 0xe1, 0xc0, 0x3d, 0xd7, 0x09, 0x89, 0xef, 0x06, + 0x2f, 0xfa, 0x68, 0xe3, 0xb1, 0x93, 0x64, 0xbe, 0x13, 0x90, 0x62, 0x1b, 0x5c, 0x77, 0xd9, 0x25, + 0x30, 0xd3, 0xcc, 0x49, 0x32, 0xfc, 0x3a, 0x52, 0xe8, 0x06, 0x37, 0x08, 0x80, 0x36, 0x71, 0x01, + 0x5a, 0x22, 0xf4, 0x08, 0x55, 0x97, 0x92, 0x14, 0xa1, 0xb7, 0xed, 0x1d, 0x5b, 0x7f, 0x59, 0x81, + 0xee, 0xfd, 0x3c, 0xc8, 0xfc, 0x8d, 0x64, 0x94, 0x8b, 0x71, 0x98, 0xa1, 0x6f, 0xd8, 0xf2, 0xd3, + 0x4c, 0xbd, 0x99, 0xda, 0x6c, 0x15, 0xcc, 0xef, 0x25, 0x51, 0x1e, 0xdf, 0x39, 0x8e, 0xb5, 0xa4, + 0x41, 0x2a, 0x15, 0x42, 0xf8, 0x04, 0xc9, 0xde, 0x85, 0xf6, 0x83, 0xc4, 0x13, 0xc9, 0xed, 0x13, + 0xa2, 0xad, 0xcd, 0xd1, 0x96, 0xd1, 0xec, 0x35, 0x30, 0xf7, 0x44, 0xec, 0x24, 0x0e, 0xaa, 0x40, + 0x9d, 0x1c, 0xca, 0x04, 0x80, 0xdf, 0x4a, 0xc4, 0xdb, 0x9e, 0x32, 0x2b, 0xdd, 0xb5, 0x46, 0x60, + 0x6e, 0x8c, 0x46, 0x89, 0x18, 0x39, 0x19, 0x39, 0xb7, 0x28, 0xa6, 0xe9, 0xd6, 0x78, 0x35, 0x8a, + 0xc9, 0x81, 0xe2, 0x07, 0x48, 0xfe, 0x50, 0x9b, 0x5d, 0x86, 0xba, 0x58, 0x3c, 0x1f, 0x82, 0xb3, + 0xf3, 0xd0, 0x74, 0xa3, 0x70, 0xe8, 0x8f, 0x94, 0xdb, 0x55, 0x3d, 0xeb, 0x77, 0x6b, 0xd0, 0xa0, + 0x8f, 0x43, 0xf6, 0xa2, 0x2b, 0xb4, 0xc5, 0x63, 0x27, 0xd0, 0x52, 0x41, 0xc0, 0x9d, 0xc7, 0x4e, + 0xc0, 0x56, 0xa0, 0x81, 0x8f, 0x49, 0x17, 0xf0, 0x46, 0x22, 0xd8, 0x35, 0x68, 0xa0, 0x12, 0xa5, + 0xd3, 0x33, 0x40, 0x25, 0xba, 0x5d, 0xff, 0xc9, 0x3f, 0x5c, 0x79, 0x85, 0x4b, 0x34, 0x7b, 0x1b, + 0xea, 0xce, 0x68, 0x94, 0x92, 0x2e, 0x4f, 0x99, 0x53, 0xf1, 0xbd, 0x9c, 0x08, 0xd8, 0x2d, 0x30, + 0xa5, 0xdc, 0x90, 0xba, 0x41, 0xd4, 0x17, 0x4a, 0x4b, 0x4c, 0x59, 0xa4, 0x7c, 0x42, 0x89, 0x1c, + 0xf7, 0x53, 0xe5, 0xc1, 0x48, 0xa3, 0x0d, 0x3e, 0x01, 0xe0, 0x1a, 0x10, 0x27, 0x62, 0x23, 0x08, + 0x22, 0x77, 0xcf, 0x7f, 0x2a, 0xd4, 0x8a, 0x31, 0x05, 0x63, 0xd7, 0xa0, 0xb7, 0x2b, 0x55, 0x8e, + 0x8b, 0x34, 0x0f, 0xb2, 0x54, 0xad, 0x22, 0x33, 0x50, 0xb6, 0x06, 0x6c, 0x0a, 0xb2, 0x4f, 0x9f, + 0x6f, 0xae, 0xd4, 0x56, 0xbb, 0x7c, 0x01, 0x86, 0xbd, 0x09, 0xdd, 0x11, 0x72, 0xda, 0x0f, 0x47, + 0xf6, 0x30, 0x70, 0x70, 0x81, 0xa9, 0xe1, 0x02, 0xa4, 0x81, 0x77, 0x03, 0x67, 0x64, 0xfd, 0x67, + 0x15, 0x9a, 0xdb, 0x61, 0x2a, 0x92, 0x0c, 0xad, 0xc4, 0x19, 0x0e, 0x85, 0x9b, 0x09, 0xe9, 0x9d, + 0xea, 0xbc, 0xe8, 0xe3, 0x57, 0xee, 0x47, 0x9f, 0x25, 0x7e, 0x26, 0xf6, 0x3e, 0x50, 0x7a, 0x30, + 0x01, 0xb0, 0xeb, 0xb0, 0xec, 0x78, 0x9e, 0xad, 0xa9, 0xed, 0x24, 0x7a, 0x92, 0x92, 0xc5, 0x18, + 0x7c, 0xc9, 0xf1, 0xbc, 0x0d, 0x05, 0xe7, 0xd1, 0x93, 0x94, 0xbd, 0x01, 0xb5, 0x44, 0x0c, 0x49, + 0x2b, 0xda, 0xeb, 0x4b, 0x52, 0x6a, 0x0f, 0x0e, 0x3e, 0x17, 0x6e, 0xc6, 0xc5, 0x90, 0x23, 0x8e, + 0x9d, 0x85, 0x86, 0x93, 0x65, 0x89, 0x94, 0x82, 0xc9, 0x65, 0x87, 0xad, 0xc1, 0x19, 0xb2, 0xcc, + 0xcc, 0x8f, 0x42, 0x3b, 0x73, 0x0e, 0x02, 0x5c, 0x08, 0x53, 0xe5, 0xf3, 0x97, 0x0b, 0xd4, 0x3e, + 0x62, 0xb6, 0xbd, 0x14, 0x57, 0x89, 0x59, 0xfa, 0xd0, 0x19, 0x8b, 0x94, 0x5c, 0xbe, 0xc9, 0xcf, + 0x4c, 0x8f, 0xd8, 0x41, 0x14, 0xb2, 0x6c, 0x32, 0x06, 0x6d, 0xdb, 0x20, 0x33, 0xe9, 0x14, 0x40, + 0x34, 0xfd, 0x73, 0xd0, 0xf4, 0x53, 0x5b, 0x84, 0x9e, 0x72, 0x37, 0x0d, 0x3f, 0xbd, 0x13, 0x7a, + 0xec, 0x1d, 0x30, 0xe5, 0x5b, 0x3c, 0x31, 0xa4, 0xb5, 0xbc, 0xbd, 0xde, 0x53, 0x4a, 0x89, 0xe0, + 0x2d, 0x31, 0xe4, 0x46, 0xa6, 0x5a, 0xd6, 0x0f, 0x2b, 0xd0, 0x26, 0x1d, 0x7a, 0x18, 0x7b, 0x68, + 0x72, 0x6f, 0x42, 0x77, 0x9a, 0x7b, 0x52, 0x00, 0x1d, 0xa7, 0xcc, 0xba, 0xf3, 0xd0, 0xdc, 0x70, + 0x71, 0x16, 0x24, 0x81, 0x2e, 0x57, 0x3d, 0xf6, 0x2d, 0x58, 0xca, 0xe9, 0x31, 0xb6, 0x9b, 0x1d, + 0xdb, 0x01, 0x9a, 0xaa, 0x34, 0x0a, 0xc5, 0x5e, 0xf9, 0x8e, 0xcd, 0xec, 0x98, 0x77, 0x73, 0xdd, + 0xbc, 0xe7, 0xa7, 0x99, 0xf5, 0x3a, 0x34, 0x36, 0x92, 0xc4, 0x39, 0x21, 0x8e, 0x63, 0x63, 0x50, + 0x21, 0xef, 0x2d, 0x3b, 0x96, 0x0b, 0xb5, 0xfb, 0x4e, 0xcc, 0xae, 0x42, 0x75, 0x1c, 0x13, 0xa6, + 0xbd, 0x7e, 0xae, 0x64, 0x11, 0x4e, 0xbc, 0x76, 0x3f, 0xbe, 0x13, 0x66, 0xc9, 0x09, 0xaf, 0x8e, + 0xe3, 0x8b, 0xb7, 0xa0, 0xa5, 0xba, 0x18, 0x83, 0x1d, 0x89, 0x13, 0xfa, 0x06, 0x93, 0x63, 0x13, + 0x5f, 0xf0, 0xd8, 0x09, 0x72, 0x1d, 0x3c, 0xc8, 0xce, 0xaf, 0x54, 0x3f, 0xac, 0x58, 0xff, 0x55, + 0x07, 0x63, 0x4b, 0x04, 0x82, 0xbe, 0xc4, 0x82, 0x4e, 0x59, 0x59, 0x34, 0x17, 0xa6, 0x14, 0xc8, + 0x82, 0x8e, 0x5c, 0x4f, 0x68, 0x94, 0x50, 0xda, 0x38, 0x05, 0x43, 0x47, 0xb7, 0x7d, 0x3b, 0x77, + 0x8f, 0x44, 0x46, 0x6a, 0xd8, 0xe5, 0xba, 0x8b, 0x98, 0x1d, 0x85, 0xa9, 0x4b, 0x8c, 0xea, 0xb2, + 0xd7, 0x00, 0x92, 0xe8, 0x89, 0xed, 0x4b, 0xa7, 0x2e, 0xfd, 0xa3, 0x91, 0x44, 0x4f, 0xb6, 0xd1, + 0xad, 0xff, 0xbf, 0x68, 0xdf, 0xb7, 0x60, 0x50, 0xd2, 0x3e, 0x0c, 0xd6, 0x6c, 0x3f, 0xb4, 0x0f, + 0x30, 0x72, 0x50, 0x8a, 0x38, 0x79, 0x26, 0xc5, 0x72, 0xdb, 0xe1, 0x6d, 0x0a, 0x2b, 0x94, 0x4d, + 0x99, 0xa7, 0xd8, 0xd4, 0x42, 0x13, 0x85, 0xc5, 0x26, 0x7a, 0x1b, 0x60, 0x4f, 0x8c, 0xc6, 0x22, + 0xcc, 0xee, 0x3b, 0xf1, 0xa0, 0x4d, 0x82, 0xb7, 0x26, 0x82, 0xd7, 0xd2, 0x5a, 0x9b, 0x10, 0x49, + 0x2d, 0x28, 0x8d, 0xc2, 0xb5, 0xde, 0x75, 0x42, 0x3b, 0x4b, 0xf2, 0xd0, 0x75, 0x32, 0x31, 0xe8, + 0xd0, 0xab, 0xda, 0xae, 0x13, 0xee, 0x2b, 0x50, 0xc9, 0x8e, 0xba, 0x65, 0x3b, 0xba, 0x06, 0x4b, + 0x71, 0xe2, 0x8f, 0x9d, 0xe4, 0xc4, 0x3e, 0x12, 0x27, 0x24, 0x8c, 0x9e, 0x8c, 0x4a, 0x15, 0xf8, + 0x53, 0x71, 0xb2, 0xed, 0x1d, 0x5f, 0xfc, 0x36, 0x2c, 0xcd, 0x4c, 0xe0, 0xa5, 0xf4, 0xee, 0x47, + 0x35, 0x30, 0x77, 0x13, 0xa1, 0x7c, 0xdf, 0x15, 0x68, 0xa7, 0xee, 0xa1, 0x18, 0x3b, 0x24, 0x25, + 0xf5, 0x04, 0x90, 0x20, 0x14, 0xce, 0xb4, 0x75, 0x57, 0x4f, 0xb7, 0x6e, 0x9c, 0x87, 0x8c, 0x19, + 0xd0, 0x98, 0xb0, 0x39, 0x71, 0x69, 0xf5, 0xb2, 0x4b, 0x5b, 0x81, 0xce, 0xa1, 0x93, 0xda, 0x4e, + 0x9e, 0x45, 0xb6, 0x1b, 0x05, 0xa4, 0x74, 0x06, 0x87, 0x43, 0x27, 0xdd, 0xc8, 0xb3, 0x68, 0x33, + 0x0a, 0xd8, 0xeb, 0x00, 0x6e, 0x14, 0xd8, 0xd1, 0x70, 0x98, 0x8a, 0x4c, 0x05, 0x4c, 0xa6, 0x1b, + 0x05, 0x0f, 0x08, 0x80, 0x5a, 0x29, 0xd2, 0xcc, 0x1f, 0x3b, 0x4a, 0xa4, 0xb6, 0x1b, 0xe5, 0x61, + 0x46, 0xab, 0x4c, 0x8d, 0x2f, 0x17, 0x28, 0x1e, 0x3d, 0xd9, 0x44, 0x04, 0x7b, 0x0f, 0x7a, 0x6e, + 0x34, 0x8e, 0xed, 0x18, 0x39, 0x4b, 0xeb, 0xb7, 0x0c, 0x68, 0xcb, 0xeb, 0x6b, 0x07, 0x29, 0x76, + 0x8f, 0x84, 0x0c, 0x28, 0xd6, 0x61, 0xc9, 0x0d, 0xf2, 0x34, 0x13, 0x89, 0x7d, 0xa0, 0x86, 0x98, + 0x73, 0x43, 0xba, 0x8a, 0x44, 0x05, 0x21, 0x16, 0x74, 0xfd, 0xd4, 0x8e, 0x02, 0xcf, 0x96, 0xee, + 0x46, 0xe9, 0x59, 0xdb, 0x4f, 0x1f, 0x04, 0x9e, 0x72, 0x78, 0x92, 0x26, 0x14, 0x4f, 0x34, 0x4d, + 0x5b, 0xd3, 0xec, 0x88, 0x27, 0x92, 0xc6, 0xfa, 0xfb, 0x2a, 0xb4, 0x76, 0xa3, 0x34, 0xdb, 0x1a, + 0x07, 0x5a, 0xc5, 0x2b, 0x2f, 0xab, 0xe2, 0xd5, 0xc5, 0x2a, 0xbe, 0x40, 0xc9, 0x6a, 0x0b, 0x94, + 0x8c, 0xad, 0x42, 0xbf, 0x4c, 0x47, 0xca, 0x21, 0xc3, 0xaa, 0xde, 0x84, 0x90, 0x14, 0xe4, 0x12, + 0xc6, 0x01, 0xb6, 0x27, 0x7d, 0x92, 0x14, 0xa4, 0xe1, 0xa7, 0xca, 0x1f, 0x49, 0xa4, 0x4f, 0xba, + 0xa6, 0x82, 0x04, 0xc3, 0x4f, 0x95, 0xee, 0xfd, 0x32, 0xbc, 0x5a, 0x8c, 0xb4, 0x9f, 0xf8, 0xd9, + 0x61, 0x94, 0x67, 0xf6, 0x90, 0x76, 0x10, 0xa9, 0x8a, 0x82, 0xcf, 0xeb, 0x27, 0x7d, 0x26, 0xd1, + 0x72, 0x7f, 0x41, 0x31, 0xcb, 0x30, 0x0f, 0x02, 0x3b, 0x13, 0xc7, 0x99, 0x12, 0xe5, 0x40, 0xf2, + 0x46, 0xf1, 0xed, 0x6e, 0x1e, 0x04, 0xfb, 0xe2, 0x38, 0x43, 0xe7, 0x6f, 0x0c, 0x55, 0xc7, 0xfa, + 0xc7, 0x1a, 0xc0, 0xbd, 0xc8, 0x3d, 0xda, 0x77, 0x92, 0x91, 0xc8, 0x30, 0xb6, 0xd6, 0x1e, 0x4d, + 0x79, 0xdc, 0x56, 0x26, 0xfd, 0x18, 0x5b, 0x87, 0xf3, 0xfa, 0xfb, 0x51, 0x0f, 0x31, 0xce, 0x97, + 0x2e, 0x49, 0x19, 0x14, 0x53, 0x58, 0xb9, 0x53, 0x24, 0x7f, 0xc4, 0x3e, 0x9c, 0xf0, 0x16, 0xc7, + 0x64, 0x27, 0x31, 0xf1, 0x76, 0x51, 0x8c, 0xd6, 0x9d, 0x0c, 0xdf, 0x3f, 0x89, 0xd9, 0x7b, 0x70, + 0x2e, 0x11, 0xc3, 0x44, 0xa4, 0x87, 0x76, 0x96, 0x96, 0x5f, 0x26, 0x43, 0xec, 0x65, 0x85, 0xdc, + 0x4f, 0x8b, 0x77, 0xbd, 0x07, 0xe7, 0x24, 0xa7, 0x66, 0xa7, 0x27, 0xfd, 0xf7, 0xb2, 0x44, 0x96, + 0x67, 0xf7, 0x3a, 0x50, 0x32, 0x42, 0xfa, 0x64, 0x1d, 0xb0, 0x05, 0xc4, 0x8c, 0x83, 0x40, 0x60, + 0xa0, 0xb3, 0x79, 0x88, 0xbb, 0xc0, 0x2d, 0x31, 0x54, 0xcc, 0x9f, 0x00, 0x98, 0x05, 0xf5, 0xfb, + 0x91, 0x27, 0x88, 0xd5, 0xbd, 0xf5, 0xde, 0x1a, 0xa5, 0x35, 0x90, 0x93, 0x08, 0xe5, 0x84, 0x63, + 0x6f, 0x03, 0x3d, 0x4e, 0xaa, 0xdf, 0xbc, 0xad, 0x18, 0x88, 0x24, 0x1d, 0x7c, 0x0f, 0xce, 0x4d, + 0x66, 0x62, 0x3b, 0x99, 0x9d, 0x1d, 0x0a, 0x72, 0x87, 0xd2, 0x5c, 0x96, 0x8b, 0x49, 0x6d, 0x64, + 0xfb, 0x87, 0x02, 0x5d, 0xe3, 0x2a, 0xb4, 0xa2, 0x83, 0xcf, 0x6d, 0x34, 0x84, 0xf6, 0x62, 0x43, + 0x68, 0x46, 0x07, 0x9f, 0x73, 0x31, 0xb4, 0x3e, 0x84, 0x26, 0x4e, 0xeb, 0x41, 0xcc, 0xd6, 0xa0, + 0x95, 0x91, 0x98, 0x53, 0xb5, 0x84, 0x9f, 0x9d, 0x78, 0xf2, 0x89, 0x0e, 0x70, 0x4d, 0x64, 0x71, + 0x58, 0x2a, 0xdc, 0xe2, 0xc3, 0xd0, 0x7f, 0x94, 0x0b, 0xf6, 0x31, 0x2c, 0xc7, 0x89, 0x50, 0xea, + 0x6b, 0xe7, 0x47, 0x18, 0x66, 0x28, 0x4b, 0x3c, 0xab, 0xb4, 0xad, 0x18, 0x71, 0x84, 0x9a, 0xd6, + 0x8b, 0xa7, 0xfa, 0xd6, 0x0f, 0xe0, 0x42, 0x41, 0xb1, 0x27, 0xdc, 0x28, 0xf4, 0x9c, 0xe4, 0x84, + 0x56, 0xb0, 0x99, 0x67, 0xa7, 0x2f, 0xf3, 0xec, 0x3d, 0x7a, 0xf6, 0x8f, 0x6b, 0xd0, 0x7b, 0x10, + 0x6e, 0xe5, 0x71, 0xe0, 0xe3, 0xaa, 0xf2, 0xa9, 0x74, 0xfa, 0xd2, 0xd9, 0x56, 0xca, 0xce, 0x76, + 0x15, 0xfa, 0xea, 0x2d, 0xa8, 0x2a, 0xd2, 0x51, 0xaa, 0x0c, 0x89, 0x84, 0x6f, 0x46, 0x81, 0xf4, + 0x92, 0xdf, 0x86, 0x73, 0x39, 0x7d, 0xb9, 0xa4, 0x3c, 0x14, 0xee, 0x91, 0xfd, 0x8c, 0xcd, 0x0e, + 0x93, 0x84, 0x38, 0x14, 0xc9, 0xc8, 0xfd, 0x5d, 0x81, 0xf6, 0x64, 0xb8, 0xf6, 0xf8, 0x50, 0x10, + 0xd2, 0x4c, 0xa2, 0xd0, 0xf6, 0xf4, 0x94, 0x55, 0xbc, 0x81, 0x6b, 0x45, 0x2f, 0x9a, 0x7c, 0x09, + 0xba, 0x9f, 0xdf, 0x80, 0xe5, 0x29, 0x4a, 0x9a, 0x45, 0x93, 0x66, 0x71, 0x63, 0x22, 0xc6, 0xe9, + 0xcf, 0x2f, 0x77, 0x71, 0x3e, 0x72, 0x6d, 0x5e, 0x8a, 0xa6, 0xa1, 0xda, 0x25, 0x8d, 0xc2, 0x28, + 0x11, 0x4a, 0xd1, 0xd1, 0x25, 0x51, 0xff, 0xe2, 0x0e, 0x9c, 0x5d, 0xf4, 0x94, 0x05, 0x0b, 0xec, + 0x4a, 0x79, 0x81, 0x9d, 0xd9, 0xa8, 0x4d, 0x16, 0xdb, 0x3f, 0xae, 0x40, 0xfb, 0x6e, 0xfe, 0xf4, + 0xe9, 0x89, 0x74, 0x5c, 0xac, 0x03, 0x95, 0x1d, 0x7a, 0x4a, 0x95, 0x57, 0x76, 0x30, 0xae, 0xdd, + 0x3d, 0x42, 0x27, 0x4a, 0x0f, 0x31, 0xb9, 0xea, 0xe1, 0x16, 0x6f, 0xf7, 0x68, 0xff, 0x14, 0xf7, + 0x21, 0xd1, 0xb8, 0x71, 0xb9, 0x9d, 0xfb, 0x01, 0xc6, 0x69, 0xca, 0x53, 0x14, 0x7d, 0xdc, 0x34, + 0x6d, 0x0f, 0xa5, 0xbe, 0xdc, 0x4d, 0xa2, 0xb1, 0xd4, 0x68, 0xe5, 0x9f, 0x17, 0x60, 0xac, 0xbf, + 0xa9, 0x41, 0xfd, 0x93, 0xc8, 0x0f, 0x65, 0xc2, 0x21, 0x90, 0xd1, 0xb4, 0x8c, 0x8a, 0x5b, 0x89, + 0x08, 0x30, 0x6c, 0x46, 0x14, 0x2a, 0x46, 0x20, 0xf7, 0xc4, 0x84, 0x72, 0x23, 0x89, 0x9a, 0x6c, + 0x8b, 0x2b, 0x0b, 0xb7, 0xc5, 0xc5, 0xae, 0xb5, 0xfe, 0xbc, 0x5d, 0xab, 0x19, 0x88, 0x21, 0xaa, + 0x6a, 0xe8, 0xa9, 0xcd, 0xe8, 0xb4, 0x13, 0x11, 0xc3, 0x6c, 0x33, 0x0a, 0x3d, 0xf6, 0x0d, 0x80, + 0xc4, 0x1f, 0x1d, 0x2a, 0xca, 0xe6, 0x7c, 0x26, 0x81, 0xb0, 0x44, 0xca, 0xe1, 0x55, 0x95, 0x9e, + 0x52, 0xab, 0x8b, 0x7d, 0x80, 0x5c, 0x92, 0xdf, 0xd1, 0xd2, 0x1b, 0xde, 0xc5, 0x89, 0xad, 0xf3, + 0x53, 0x89, 0x2d, 0xe2, 0x2e, 0x7d, 0xef, 0x6b, 0x80, 0xd1, 0xca, 0xa1, 0x1d, 0x85, 0x76, 0xac, + 0x13, 0x33, 0x06, 0x42, 0x1e, 0x84, 0xbb, 0x47, 0xe8, 0x6b, 0xfd, 0xd4, 0x56, 0xf9, 0x1d, 0xb5, + 0x5b, 0x2a, 0x6d, 0x8e, 0x57, 0xa0, 0xf3, 0x79, 0xe4, 0x87, 0xf6, 0xd8, 0x89, 0xed, 0xcc, 0x91, + 0x09, 0xd0, 0x06, 0x07, 0x84, 0xdd, 0x77, 0xe2, 0x7d, 0x67, 0x44, 0x61, 0x99, 0xca, 0x18, 0xa1, + 0x91, 0xb4, 0x25, 0x81, 0x02, 0xa1, 0x78, 0x2f, 0x81, 0x49, 0x8f, 0xa0, 0x7c, 0x52, 0x47, 0xca, + 0x1e, 0x01, 0xc8, 0x51, 0xeb, 0x5f, 0xab, 0x60, 0x6c, 0x84, 0x99, 0x4f, 0xf2, 0x3c, 0x0f, 0xcd, + 0x84, 0x36, 0xc7, 0x4a, 0x9a, 0xaa, 0x57, 0x48, 0xac, 0xfa, 0x0c, 0x89, 0x4d, 0x49, 0xa2, 0xf6, + 0xc2, 0x92, 0xa8, 0x9f, 0x26, 0x89, 0x69, 0xae, 0x35, 0x4e, 0xe5, 0xda, 0x5c, 0x4a, 0xe1, 0xeb, + 0x10, 0xe3, 0xac, 0x24, 0x8c, 0xe7, 0x49, 0xc2, 0x9c, 0x95, 0x84, 0xf5, 0xe7, 0x35, 0x30, 0xee, + 0x89, 0x61, 0xf6, 0x0b, 0xe3, 0xf9, 0x79, 0x31, 0x1e, 0xeb, 0x3f, 0x6a, 0x60, 0x72, 0xfc, 0xc2, + 0xaf, 0x51, 0x66, 0x37, 0x01, 0x48, 0x16, 0xa7, 0x0b, 0x8e, 0xe4, 0x25, 0xb3, 0x56, 0xef, 0x43, + 0x5b, 0xca, 0x44, 0x8e, 0x68, 0x3c, 0x63, 0x84, 0x14, 0xdc, 0xfe, 0xbc, 0xbc, 0x9b, 0x2f, 0x2c, + 0xef, 0xd6, 0x17, 0x96, 0xb7, 0xf1, 0x55, 0xc8, 0xdb, 0x3c, 0x55, 0xde, 0xf0, 0x3c, 0x79, 0xb7, + 0x9f, 0x27, 0xef, 0xce, 0x9c, 0xbc, 0x7f, 0x5c, 0x83, 0x2e, 0xc9, 0x7b, 0x4f, 0x8c, 0xbf, 0x9c, + 0x53, 0x9c, 0x11, 0x52, 0xed, 0x65, 0x85, 0x54, 0x7f, 0x61, 0x21, 0x35, 0xbe, 0xb0, 0x90, 0x9a, + 0x5f, 0x85, 0x90, 0x5a, 0xa7, 0x0a, 0xc9, 0x78, 0x9e, 0x90, 0xcc, 0x97, 0x37, 0xca, 0x42, 0x48, + 0x5f, 0x7a, 0xe5, 0xfa, 0x85, 0x90, 0xbe, 0x22, 0x21, 0xc1, 0x9c, 0x90, 0x30, 0xb2, 0xf8, 0xd2, + 0x46, 0xf4, 0x75, 0x44, 0x16, 0xa7, 0x32, 0xbb, 0xf1, 0x55, 0x30, 0xbb, 0x79, 0x2a, 0xb3, 0x5b, + 0xcf, 0x63, 0xf6, 0x17, 0x88, 0x2c, 0xfe, 0xa2, 0x06, 0xb0, 0xe7, 0x87, 0xa3, 0x40, 0xfc, 0x22, + 0xb6, 0xf8, 0xb9, 0x89, 0x2d, 0xfe, 0xba, 0x0a, 0xc6, 0x7d, 0x27, 0x39, 0xfa, 0x99, 0xb3, 0x90, + 0x37, 0xa1, 0x15, 0x85, 0x65, 0x7b, 0x28, 0xd3, 0x35, 0xa3, 0xf0, 0x67, 0x42, 0xe5, 0xff, 0xa5, + 0x01, 0xe6, 0x96, 0xf0, 0xf2, 0xf8, 0x4b, 0x68, 0xfc, 0xcf, 0x8b, 0x7b, 0x79, 0xce, 0x76, 0x67, + 0x96, 0x9b, 0xad, 0xe7, 0x71, 0xd3, 0x98, 0xdb, 0x24, 0xde, 0x83, 0x33, 0x53, 0x59, 0x14, 0x47, + 0x1e, 0xa2, 0x99, 0x94, 0xc4, 0x7b, 0x4d, 0xce, 0x77, 0x27, 0xf2, 0xa6, 0x12, 0x29, 0xf2, 0x68, + 0x8d, 0x2f, 0x47, 0xb3, 0x20, 0xf6, 0x16, 0xf4, 0x3c, 0x14, 0x0d, 0x25, 0x87, 0x28, 0x21, 0x2c, + 0x0b, 0x77, 0x3a, 0x04, 0xdd, 0x8c, 0x02, 0xca, 0x5d, 0x7c, 0x08, 0x4b, 0x13, 0x2a, 0xe9, 0x59, + 0xda, 0xcf, 0xf0, 0x2c, 0x5d, 0x3d, 0x50, 0xae, 0xc1, 0xd3, 0x11, 0x73, 0xe7, 0xa5, 0x23, 0xe6, + 0xee, 0x0b, 0xac, 0xf3, 0x37, 0xe0, 0x8c, 0x3e, 0x31, 0x54, 0x69, 0x53, 0x92, 0x60, 0x8f, 0x34, + 0xa8, 0xaf, 0x0e, 0x09, 0x29, 0x69, 0x4a, 0x22, 0xfa, 0x08, 0xce, 0x96, 0xc8, 0xd1, 0x34, 0x25, + 0xfd, 0xd2, 0x9c, 0xae, 0x2c, 0x17, 0x63, 0xb1, 0xab, 0x3c, 0x6f, 0xdb, 0x13, 0x81, 0x7e, 0xd1, + 0xa0, 0x2f, 0xcf, 0x30, 0x3c, 0x11, 0xc8, 0x17, 0x58, 0xbf, 0x55, 0x81, 0xd6, 0x6e, 0x12, 0x79, + 0xb9, 0x9b, 0x7d, 0x41, 0x4d, 0x9f, 0xd6, 0xa0, 0xda, 0xf3, 0x34, 0xa8, 0x3e, 0xab, 0x41, 0xd6, + 0x0f, 0x2b, 0x60, 0xaa, 0x29, 0xdc, 0x5b, 0xff, 0x9a, 0x16, 0x98, 0xe7, 0xcf, 0xe2, 0x09, 0x98, + 0x94, 0x13, 0x3d, 0xd5, 0x65, 0x9e, 0x6a, 0x81, 0xd5, 0x2f, 0x64, 0x81, 0xd6, 0xef, 0x55, 0xa0, + 0x4b, 0x89, 0xe6, 0xbb, 0x79, 0x28, 0x75, 0x7c, 0x71, 0x06, 0x75, 0x05, 0xea, 0x89, 0xc8, 0x74, + 0x4d, 0x46, 0x47, 0xbe, 0x66, 0x33, 0x0a, 0xb6, 0xc4, 0x90, 0x13, 0x06, 0x99, 0xe0, 0x24, 0xa3, + 0x74, 0x51, 0x55, 0x08, 0xc2, 0xf1, 0xab, 0x62, 0x27, 0x71, 0xc6, 0xa9, 0xae, 0x0a, 0x91, 0x3d, + 0xc6, 0xa0, 0x4e, 0x96, 0xd4, 0x20, 0x4b, 0xa2, 0xb6, 0xb5, 0x01, 0xe7, 0xee, 0x1c, 0x67, 0x22, + 0x09, 0x1d, 0xb2, 0xa8, 0x75, 0x54, 0x17, 0x4a, 0x19, 0x6b, 0xe2, 0xca, 0x84, 0x18, 0x27, 0x5c, + 0xae, 0x79, 0x93, 0x1d, 0xeb, 0x2a, 0xb4, 0x87, 0x7e, 0x20, 0xd4, 0xf1, 0x19, 0xbe, 0x5d, 0x1d, + 0xa4, 0x55, 0xa8, 0xea, 0x4b, 0xf5, 0xac, 0x3f, 0xac, 0x41, 0x47, 0xbf, 0x8a, 0x6a, 0x82, 0xde, + 0x2d, 0x7f, 0x7e, 0x7b, 0xbd, 0xaf, 0xbf, 0x03, 0x49, 0x36, 0xb2, 0x2c, 0xd1, 0x21, 0x81, 0x64, + 0xcb, 0x25, 0x30, 0xe9, 0x2d, 0xa9, 0xff, 0x54, 0x10, 0x6f, 0x6a, 0xdc, 0x40, 0x00, 0x15, 0x77, + 0x6c, 0xc0, 0x72, 0x69, 0x0a, 0x76, 0x16, 0x65, 0x4e, 0xa0, 0xd8, 0x53, 0x3a, 0x4b, 0x2f, 0x91, + 0xf0, 0x25, 0xec, 0xc8, 0xf3, 0xbd, 0x7d, 0xa4, 0x46, 0xb6, 0x17, 0x89, 0xe4, 0x39, 0xb6, 0x23, + 0x86, 0x4e, 0x09, 0x13, 0x81, 0xf6, 0x99, 0x3e, 0x0a, 0x14, 0x13, 0x4d, 0x09, 0xd9, 0x7b, 0x14, + 0x14, 0x13, 0x2c, 0x22, 0x6e, 0x53, 0x4e, 0x90, 0xf4, 0xf6, 0x06, 0xb4, 0xa3, 0xc4, 0x1f, 0xf9, + 0xa1, 0xcc, 0x56, 0xb7, 0x16, 0xbc, 0x04, 0x24, 0x01, 0xe5, 0xae, 0x2d, 0x68, 0x4a, 0xbd, 0x5b, + 0x70, 0x72, 0xa8, 0x30, 0xec, 0x1a, 0x2c, 0xa5, 0x59, 0xe2, 0xbb, 0x19, 0x4e, 0xc7, 0x1e, 0x47, + 0x9e, 0x0e, 0x31, 0xba, 0x12, 0xbc, 0xf7, 0x28, 0xa0, 0x93, 0x92, 0x6b, 0xb0, 0xe4, 0x46, 0x41, + 0x3e, 0x96, 0xcb, 0xb1, 0x1d, 0x88, 0x50, 0x45, 0x1a, 0x5d, 0x09, 0xc6, 0xf9, 0xdd, 0x13, 0xa1, + 0xe5, 0x02, 0xec, 0x65, 0x89, 0x70, 0xc6, 0x24, 0x9c, 0xb7, 0xa1, 0x95, 0x1d, 0x04, 0x74, 0x0e, + 0x5b, 0x59, 0x78, 0x0e, 0xdb, 0xcc, 0x0e, 0x70, 0xda, 0x25, 0x71, 0x57, 0xe9, 0x3c, 0x54, 0xf5, + 0x50, 0x57, 0x02, 0x7f, 0xec, 0x67, 0xaa, 0x48, 0x51, 0x76, 0xac, 0x0f, 0xc0, 0xa4, 0x27, 0xd0, + 0x3b, 0x8a, 0x68, 0xb0, 0x72, 0x6a, 0x34, 0x68, 0xbd, 0x0b, 0xe6, 0xaf, 0x3b, 0x41, 0x2e, 0x07, + 0x5d, 0x81, 0x36, 0x9d, 0xd5, 0xdb, 0x07, 0x41, 0xe4, 0x1e, 0xe9, 0x33, 0x64, 0x02, 0xdd, 0x46, + 0x88, 0x05, 0x60, 0x3c, 0x0c, 0xfd, 0x28, 0xdc, 0x08, 0x02, 0xeb, 0xaf, 0xea, 0x60, 0x7e, 0xdf, + 0x49, 0x0f, 0xc9, 0x0a, 0xd9, 0x0a, 0xb4, 0x77, 0x84, 0xf0, 0x10, 0x70, 0xdf, 0x89, 0x55, 0x35, + 0x54, 0x19, 0xc4, 0x2e, 0x82, 0xf1, 0x7d, 0x19, 0x7f, 0x7c, 0xaa, 0xce, 0x34, 0x8b, 0xbe, 0x1e, + 0x4d, 0xb5, 0x00, 0x42, 0x17, 0xde, 0x94, 0x41, 0xec, 0x3a, 0xf4, 0xb1, 0x4b, 0x35, 0x47, 0xa8, + 0x14, 0x22, 0x90, 0x16, 0x68, 0xf0, 0x39, 0x38, 0xbb, 0x0e, 0x80, 0x6b, 0x3d, 0x55, 0x19, 0xa4, + 0x0b, 0x62, 0xa4, 0x12, 0x96, 0x5d, 0x06, 0xf8, 0xa4, 0x70, 0x60, 0xea, 0x78, 0xba, 0x04, 0x61, + 0x6f, 0x41, 0x57, 0xf5, 0xb8, 0x18, 0x6e, 0xaa, 0x93, 0xe9, 0x06, 0x9f, 0x06, 0xb2, 0x3b, 0xb0, + 0xcc, 0x5f, 0xba, 0xd2, 0x72, 0x0e, 0x84, 0xce, 0x99, 0xce, 0x51, 0xbd, 0x3c, 0x56, 0xfa, 0xd6, + 0xf2, 0x53, 0x8a, 0xa2, 0x9e, 0x15, 0x01, 0xc0, 0x57, 0x15, 0x01, 0xb4, 0x5f, 0x2c, 0x02, 0xe8, + 0xbc, 0x58, 0x04, 0x30, 0xb3, 0x62, 0x76, 0x67, 0x57, 0xcc, 0xdf, 0xaf, 0x43, 0x47, 0x2d, 0x6e, + 0xe4, 0xfc, 0xa7, 0x94, 0xa3, 0x72, 0xba, 0x72, 0x54, 0x5f, 0x4c, 0x39, 0x6a, 0x2f, 0xa4, 0x1c, + 0xf5, 0x53, 0x95, 0x63, 0xa1, 0x58, 0x1b, 0x2f, 0x2d, 0xd6, 0xe7, 0xe9, 0xd8, 0x65, 0x80, 0xbd, + 0x22, 0xd6, 0xd3, 0xe1, 0xe1, 0x04, 0x32, 0xa5, 0x16, 0xc6, 0x0b, 0xa9, 0xc5, 0xcf, 0x68, 0x60, + 0x38, 0xa3, 0x16, 0x9d, 0x59, 0xb5, 0xd8, 0x03, 0xa0, 0x05, 0x52, 0xea, 0xc4, 0x42, 0xee, 0x57, + 0x5e, 0x96, 0xfb, 0xd6, 0xff, 0x56, 0x00, 0xf6, 0x9c, 0x71, 0x2c, 0x83, 0x03, 0xf6, 0x5d, 0x68, + 0xa7, 0xd4, 0x93, 0x27, 0x2e, 0xb2, 0x5a, 0xff, 0x4a, 0xa9, 0x5a, 0xbf, 0x20, 0x55, 0x4d, 0x9c, + 0x3a, 0x87, 0xb4, 0x68, 0x53, 0xb4, 0x2e, 0x9f, 0x50, 0xd4, 0x67, 0x34, 0x34, 0x01, 0x1d, 0x8b, + 0x5f, 0x85, 0x9e, 0x22, 0x88, 0x45, 0xe2, 0x8a, 0x50, 0xfa, 0xe9, 0x0a, 0xef, 0x4a, 0xe8, 0xae, + 0x04, 0xb2, 0xf7, 0x0b, 0x32, 0xb9, 0x58, 0x2c, 0xd2, 0x46, 0x35, 0x64, 0x53, 0x12, 0x58, 0xeb, + 0xfa, 0x53, 0x68, 0x22, 0x06, 0xd4, 0xf1, 0x7d, 0xfd, 0x57, 0x58, 0x1b, 0x5a, 0xea, 0xa9, 0xfd, + 0x0a, 0xeb, 0x82, 0x49, 0x45, 0xc3, 0x84, 0xab, 0x5a, 0x7f, 0x74, 0x06, 0xda, 0xdb, 0x61, 0x9a, + 0x25, 0xb9, 0x14, 0xf2, 0xa4, 0x36, 0xb6, 0x41, 0xb5, 0xb1, 0xaa, 0xd4, 0x47, 0x7e, 0x06, 0x95, + 0xfa, 0x5c, 0x83, 0xba, 0x13, 0x66, 0xbe, 0x0a, 0x04, 0x4b, 0x05, 0xd8, 0x3a, 0xa1, 0xc7, 0x09, + 0xcf, 0x6e, 0x40, 0x4b, 0x55, 0x6b, 0xab, 0x62, 0xc8, 0x85, 0xa5, 0xde, 0x9a, 0x86, 0xad, 0x81, + 0xe1, 0xa9, 0x32, 0x72, 0x65, 0x44, 0xa5, 0x47, 0xeb, 0x02, 0x73, 0x5e, 0xd0, 0xb0, 0x37, 0xa0, + 0xe6, 0x8c, 0xa4, 0xbd, 0x50, 0x9d, 0x80, 0x26, 0xa5, 0xe2, 0x5b, 0x8e, 0x38, 0x66, 0x41, 0x1d, + 0xc3, 0x4f, 0xb2, 0x19, 0x5a, 0x46, 0x35, 0x8d, 0x9c, 0x25, 0xe2, 0xd8, 0x4d, 0xb5, 0x8b, 0x24, + 0x42, 0x63, 0xf6, 0xbd, 0xfa, 0xc0, 0x47, 0xee, 0x26, 0x3f, 0x51, 0x03, 0x52, 0x31, 0xf6, 0xe5, + 0x00, 0x73, 0x76, 0x80, 0x4e, 0x9a, 0x71, 0x23, 0xd5, 0xe9, 0xb3, 0x5b, 0xd0, 0x4e, 0x29, 0xbb, + 0x23, 0x87, 0x80, 0x3e, 0xfb, 0x2f, 0x86, 0x14, 0xa9, 0x1f, 0x0e, 0xe9, 0x24, 0x0d, 0x74, 0x13, + 0xcc, 0xb1, 0x93, 0x1c, 0xc9, 0x41, 0xed, 0xd9, 0xf7, 0xe8, 0xd4, 0x03, 0x37, 0xc6, 0x3a, 0x09, + 0xb1, 0x0e, 0x20, 0x0d, 0x8f, 0x46, 0x74, 0x66, 0x59, 0x5e, 0x6c, 0xb7, 0xd1, 0xa4, 0xf4, 0xce, + 0xfb, 0x1d, 0x68, 0xc5, 0x72, 0x5f, 0x40, 0x5e, 0xb8, 0xbd, 0xbe, 0x3c, 0x19, 0xa0, 0x36, 0x0c, + 0x5c, 0x53, 0xb0, 0xef, 0x40, 0x4f, 0x96, 0x72, 0x0c, 0x55, 0x18, 0x4d, 0x75, 0x6b, 0x53, 0x55, + 0xc4, 0x53, 0x51, 0x36, 0xef, 0x66, 0x53, 0x41, 0xf7, 0x47, 0xd0, 0x15, 0x2a, 0x0a, 0xb5, 0x53, + 0xd7, 0x09, 0x69, 0xab, 0xd4, 0x5e, 0x3f, 0x3f, 0x19, 0x5e, 0x0e, 0x52, 0x79, 0x47, 0x94, 0x43, + 0xd6, 0x55, 0x68, 0xaa, 0xf2, 0xa2, 0x65, 0x1a, 0x55, 0xba, 0x1d, 0x23, 0xcf, 0xb8, 0xb9, 0xc2, + 0xb3, 0xdb, 0x33, 0xd5, 0x07, 0x47, 0xe2, 0x64, 0xc0, 0x74, 0xe9, 0xd0, 0xe2, 0x92, 0x82, 0xa9, + 0xba, 0x84, 0x4f, 0xc5, 0x09, 0xf2, 0x72, 0x52, 0xb5, 0x31, 0x38, 0x33, 0xcb, 0xcb, 0xa2, 0x64, + 0x83, 0x9b, 0x45, 0xb5, 0x06, 0x3a, 0xa4, 0x72, 0x15, 0x89, 0x3c, 0x88, 0x3f, 0x4b, 0x43, 0x5f, + 0x5d, 0x30, 0x54, 0x9e, 0xc7, 0xf3, 0xa5, 0x78, 0xa6, 0x18, 0xe5, 0x5d, 0x30, 0xa2, 0xc4, 0xa3, + 0x72, 0xb4, 0xc1, 0x39, 0xb2, 0xf8, 0x65, 0x55, 0x04, 0x23, 0xcb, 0xe0, 0xc9, 0x91, 0xb5, 0x22, + 0xd9, 0x61, 0x37, 0xa0, 0x13, 0x27, 0xd1, 0xe7, 0xc2, 0xcd, 0x64, 0xf4, 0x7b, 0x7e, 0xbe, 0x7c, + 0x5e, 0xe1, 0x29, 0x18, 0x9e, 0x44, 0xb7, 0x17, 0x9e, 0x19, 0xdd, 0xae, 0xe8, 0xf0, 0x71, 0x30, + 0x5f, 0xf1, 0x40, 0x08, 0x7c, 0x8a, 0x0a, 0x3c, 0x5f, 0x9d, 0x7f, 0x8a, 0x0a, 0x42, 0x07, 0xd0, + 0xf2, 0xd3, 0xbb, 0x7e, 0x92, 0x66, 0x83, 0x8b, 0x7a, 0x51, 0xa2, 0x2e, 0x86, 0xad, 0x7e, 0x7a, + 0xcf, 0x49, 0xb3, 0xc1, 0x25, 0x7d, 0x03, 0x02, 0x7b, 0xc8, 0x73, 0xb9, 0xcd, 0x27, 0xfd, 0x7d, + 0x6d, 0x96, 0xe7, 0xc5, 0x41, 0x9e, 0xca, 0xd7, 0x90, 0xfe, 0x7e, 0x0c, 0x4b, 0x72, 0xcc, 0xc4, + 0x24, 0x5f, 0x9f, 0xd5, 0xc9, 0xa9, 0x13, 0x21, 0xde, 0x4d, 0xa6, 0x0e, 0x88, 0x8a, 0x07, 0xa0, + 0xcb, 0x92, 0x0f, 0xb8, 0xbc, 0xf0, 0x01, 0x85, 0x73, 0x93, 0x0f, 0x28, 0x0e, 0x2f, 0xae, 0x43, + 0x53, 0xd5, 0xc4, 0x5d, 0x99, 0x73, 0x5a, 0xaa, 0x8e, 0x94, 0x2b, 0x0a, 0xf6, 0x0d, 0x68, 0x51, + 0x41, 0x54, 0x14, 0x0f, 0x56, 0x66, 0x95, 0x58, 0x56, 0x33, 0xf1, 0x66, 0x20, 0xab, 0x9a, 0xde, + 0x81, 0x96, 0xde, 0xef, 0xbf, 0x31, 0x6b, 0x98, 0x6a, 0xed, 0xe7, 0x9a, 0x82, 0x5d, 0x85, 0xc6, + 0x18, 0x5d, 0xfa, 0xc0, 0x9a, 0x75, 0x86, 0xd2, 0xd3, 0x4b, 0x2c, 0x39, 0x22, 0xda, 0x66, 0x48, + 0xeb, 0x7b, 0x73, 0xce, 0x11, 0x15, 0x7b, 0x10, 0x0e, 0xe9, 0x64, 0x3f, 0xf2, 0x9b, 0x70, 0xb1, + 0x5c, 0xc1, 0xa4, 0xcb, 0x9b, 0xd4, 0x1d, 0xac, 0xb7, 0xe8, 0x29, 0x6f, 0x2c, 0x50, 0xf0, 0xe9, + 0x42, 0x28, 0x7e, 0x21, 0x7e, 0x46, 0x85, 0xd4, 0xad, 0x62, 0xc1, 0x44, 0xbf, 0x32, 0xb8, 0x3a, + 0x37, 0xad, 0x62, 0xc9, 0xd5, 0xcb, 0x28, 0xad, 0xd4, 0x1f, 0x42, 0x67, 0x98, 0x3f, 0x7d, 0x7a, + 0xa2, 0xd2, 0x04, 0x83, 0x6b, 0x34, 0xae, 0xb4, 0xe7, 0x2c, 0xd5, 0xe3, 0xf0, 0xf6, 0xb0, 0x54, + 0x9c, 0x73, 0x01, 0x5a, 0x6e, 0x68, 0x3b, 0x9e, 0x97, 0x0c, 0xde, 0x96, 0xf5, 0x38, 0x6e, 0xb8, + 0xe1, 0x79, 0x54, 0xd8, 0x14, 0xc5, 0x82, 0xae, 0x92, 0xd8, 0xbe, 0x37, 0x58, 0x95, 0x4b, 0xb7, + 0x06, 0x6d, 0x7b, 0x74, 0x49, 0xcd, 0x49, 0x9c, 0x20, 0x10, 0x18, 0xa2, 0x0c, 0xbe, 0xa1, 0x2e, + 0xa9, 0x29, 0xd0, 0xb6, 0xc7, 0xde, 0x80, 0xce, 0xd8, 0x39, 0xb6, 0x35, 0x64, 0x70, 0x5d, 0xde, + 0x00, 0x1a, 0x3b, 0xc7, 0xbb, 0x0a, 0x84, 0x6a, 0x2e, 0x4b, 0x9f, 0x49, 0xd9, 0xde, 0x99, 0x55, + 0xf3, 0x22, 0x43, 0xc2, 0x4d, 0xbf, 0x48, 0x96, 0x90, 0x3b, 0x22, 0x27, 0x6c, 0x07, 0xeb, 0x83, + 0x77, 0xe7, 0xdd, 0x91, 0x4a, 0xed, 0xa0, 0x3b, 0xd2, 0x59, 0x9e, 0x75, 0x00, 0xe9, 0xad, 0x49, + 0xd8, 0x37, 0x66, 0xc7, 0x14, 0x7b, 0x41, 0x2e, 0xeb, 0x7e, 0x49, 0xd4, 0xeb, 0x00, 0x54, 0xd3, + 0x24, 0xc7, 0xac, 0xcd, 0x8e, 0x29, 0xb6, 0x82, 0xdc, 0x7c, 0x5c, 0xec, 0x0a, 0x6f, 0x82, 0x99, + 0xe3, 0xa6, 0xcf, 0x76, 0x82, 0x60, 0x70, 0x73, 0xd6, 0x06, 0xf4, 0x7e, 0x90, 0x1b, 0xb9, 0x6a, + 0xe1, 0x4b, 0x28, 0xf7, 0x4c, 0x61, 0xdc, 0xe0, 0xbd, 0xd9, 0x97, 0x14, 0x9b, 0x46, 0x6e, 0x1e, + 0x16, 0xfb, 0xc7, 0x8f, 0xa0, 0xab, 0x53, 0xa0, 0x72, 0xd8, 0xfb, 0xb3, 0x4b, 0x47, 0x79, 0xbf, + 0xc0, 0xf5, 0x35, 0x2c, 0x39, 0xf8, 0x16, 0xb4, 0x25, 0xc7, 0xe5, 0xd0, 0xf5, 0x59, 0x05, 0x9b, + 0x04, 0x95, 0x5c, 0x8a, 0x46, 0x0e, 0xbb, 0x0a, 0x0d, 0x27, 0x8e, 0x83, 0x93, 0xc1, 0x07, 0xb3, + 0x56, 0xb5, 0x81, 0x60, 0x2e, 0xb1, 0xa8, 0x87, 0xe3, 0x3c, 0xc8, 0x7c, 0x5d, 0xe7, 0xfb, 0xcd, + 0x59, 0x3d, 0x2c, 0x5d, 0x83, 0xe0, 0xed, 0x71, 0xe9, 0x4e, 0xc4, 0xbb, 0x60, 0xc4, 0x51, 0x9a, + 0xd9, 0xde, 0x38, 0x18, 0xdc, 0x9a, 0x5b, 0x7d, 0x65, 0x7d, 0x2b, 0x6f, 0xc5, 0xb2, 0x61, 0xdd, + 0x82, 0xce, 0x06, 0x5d, 0xce, 0xf4, 0x53, 0x72, 0xe5, 0x57, 0xa1, 0x5e, 0x64, 0xf0, 0x8a, 0x35, + 0x82, 0x28, 0x9e, 0x8a, 0xed, 0x70, 0x18, 0x71, 0x42, 0x5b, 0x7f, 0x5b, 0x83, 0xe6, 0x5e, 0x94, + 0x27, 0xae, 0x78, 0x7e, 0x0d, 0xf8, 0xeb, 0x5a, 0x65, 0xc2, 0x49, 0xad, 0x9a, 0xd4, 0x0e, 0x42, + 0x97, 0x93, 0x83, 0x35, 0xca, 0xb2, 0x14, 0xc9, 0xc1, 0xb3, 0xd0, 0x90, 0x49, 0x01, 0x59, 0x3b, + 0x2c, 0x3b, 0x64, 0x2e, 0x79, 0x7a, 0xe8, 0x45, 0x4f, 0x42, 0x34, 0x97, 0x06, 0x95, 0xde, 0x82, + 0x06, 0x6d, 0x7b, 0x74, 0x1d, 0x45, 0x13, 0x90, 0x3d, 0x36, 0xe5, 0x86, 0x42, 0x03, 0xc9, 0x2a, + 0x75, 0xe2, 0xb1, 0xf5, 0x8c, 0xc4, 0xe3, 0x65, 0xa8, 0x87, 0xba, 0x66, 0xb5, 0xc0, 0xd3, 0x45, + 0x40, 0x82, 0xb3, 0xeb, 0x50, 0x14, 0xae, 0xab, 0x78, 0xed, 0xd9, 0x85, 0xed, 0xeb, 0x60, 0x16, + 0x57, 0x7b, 0x8b, 0x48, 0x6d, 0x72, 0xd9, 0x77, 0x5f, 0xb7, 0xf8, 0x84, 0x6c, 0x41, 0xc6, 0x32, + 0x4e, 0xa2, 0x03, 0x95, 0x8d, 0x6a, 0xbf, 0x4c, 0xc6, 0x72, 0x17, 0xc7, 0xe9, 0x3c, 0xac, 0x9f, + 0xda, 0x6e, 0x14, 0xa6, 0x99, 0xba, 0x59, 0xd0, 0xf2, 0xd3, 0x4d, 0xec, 0x5a, 0xbf, 0x53, 0x01, + 0x03, 0xbf, 0x0e, 0x65, 0xcc, 0x18, 0xd4, 0xc7, 0x6e, 0x9c, 0xab, 0x78, 0x9d, 0xda, 0xea, 0xea, + 0xae, 0x94, 0x9e, 0xba, 0xba, 0x4b, 0xbc, 0xad, 0xc9, 0x74, 0x22, 0xb6, 0xe5, 0xa5, 0xc0, 0x93, + 0x20, 0x72, 0x3c, 0x25, 0x31, 0xdd, 0x65, 0xe7, 0xa0, 0xe9, 0x86, 0xb6, 0x5b, 0x5c, 0x4c, 0x6d, + 0xb8, 0xe1, 0x66, 0x98, 0x29, 0x30, 0xee, 0x04, 0x9a, 0x1a, 0x8c, 0x5b, 0xb2, 0x3f, 0xad, 0xc0, + 0xf2, 0x6e, 0x12, 0xb9, 0x22, 0x4d, 0xef, 0x61, 0x68, 0xe0, 0x50, 0xa0, 0xc7, 0xa0, 0x4e, 0xb9, + 0x42, 0x79, 0xc3, 0x8e, 0xda, 0xa8, 0x5b, 0x32, 0x79, 0x54, 0xec, 0x8a, 0x6a, 0xdc, 0x24, 0x08, + 0x6d, 0x8a, 0x0a, 0x34, 0x0d, 0xac, 0x95, 0xd0, 0x94, 0x65, 0xbc, 0x0a, 0xbd, 0xc9, 0xcd, 0x11, + 0x7a, 0x82, 0xba, 0x5a, 0x5b, 0x40, 0xe9, 0x29, 0x57, 0xa0, 0x9d, 0x08, 0x07, 0x83, 0x27, 0x7a, + 0x4c, 0x83, 0x68, 0x40, 0x82, 0xf0, 0x39, 0xd6, 0x21, 0xf4, 0x77, 0x13, 0x11, 0x3b, 0x89, 0x40, + 0x7f, 0x3c, 0x26, 0x1e, 0x9e, 0x87, 0x66, 0x20, 0xc2, 0x51, 0x76, 0xa8, 0xe6, 0xab, 0x7a, 0xc5, + 0xb5, 0xea, 0x6a, 0xe9, 0x5a, 0x35, 0xf2, 0x32, 0x11, 0x8e, 0xba, 0x7d, 0x4d, 0x6d, 0xd4, 0xfd, + 0x30, 0x0f, 0x54, 0xfe, 0xd2, 0xe0, 0xb2, 0x63, 0xfd, 0x49, 0x0d, 0xda, 0x8a, 0x33, 0xf4, 0x16, + 0x29, 0x95, 0x4a, 0x21, 0x95, 0x3e, 0xd4, 0xd2, 0x47, 0x81, 0x12, 0x13, 0x36, 0xd9, 0x07, 0x50, + 0x0b, 0xfc, 0xb1, 0xda, 0x56, 0x5d, 0x9a, 0xf2, 0xee, 0xd3, 0xfc, 0x55, 0xbb, 0x67, 0xa4, 0x66, + 0x97, 0xc8, 0xfb, 0x1e, 0xdb, 0xa8, 0x44, 0x8a, 0x27, 0xe8, 0x69, 0x8f, 0x51, 0x53, 0x91, 0xa9, + 0x8e, 0x4b, 0x85, 0xc0, 0xda, 0xfc, 0xba, 0xdc, 0x54, 0x90, 0x6d, 0x8f, 0x7d, 0x13, 0x8c, 0x34, + 0x74, 0xe2, 0xf4, 0x30, 0xca, 0xd4, 0x36, 0x8a, 0xad, 0x65, 0xc7, 0xe1, 0xda, 0xe6, 0xce, 0xfe, + 0x71, 0xb8, 0xa7, 0x30, 0xea, 0x65, 0x05, 0x25, 0xfb, 0x0e, 0x74, 0x52, 0x91, 0xa6, 0xf2, 0x0a, + 0xcf, 0x30, 0x52, 0x66, 0x79, 0xae, 0xbc, 0x05, 0x22, 0x2c, 0x7e, 0xb5, 0x1a, 0xdc, 0x4e, 0x27, + 0x20, 0xf6, 0x7d, 0xe8, 0xe9, 0xf1, 0x41, 0x34, 0x1a, 0x15, 0x89, 0xd6, 0x4b, 0x73, 0x4f, 0xb8, + 0x47, 0xe8, 0xd2, 0x73, 0xba, 0x69, 0x19, 0xc1, 0xbe, 0x07, 0xbd, 0x58, 0x0a, 0xd3, 0x56, 0x49, + 0x77, 0x69, 0xde, 0x17, 0xa7, 0x82, 0x91, 0x29, 0x61, 0x4f, 0xca, 0xf2, 0x27, 0xf0, 0xd4, 0xfa, + 0xef, 0x0a, 0xb4, 0x4b, 0xb3, 0xa6, 0xcb, 0xee, 0xa9, 0x48, 0x74, 0x02, 0x1e, 0xdb, 0x08, 0x3b, + 0x8c, 0xd4, 0x1d, 0x51, 0x93, 0x53, 0x1b, 0x61, 0x49, 0xa4, 0x4e, 0x64, 0x4c, 0x4e, 0x6d, 0x74, + 0x69, 0x6a, 0x47, 0x2b, 0xaf, 0xd8, 0x91, 0x50, 0xea, 0xbc, 0x33, 0x01, 0x6e, 0x53, 0x3e, 0x0b, + 0xd5, 0xe9, 0xc0, 0x49, 0xf5, 0x91, 0x40, 0xd1, 0x47, 0xd3, 0x7c, 0x2c, 0x12, 0x9c, 0x8b, 0xf2, + 0x86, 0xba, 0x8b, 0xb2, 0x26, 0x2f, 0xf3, 0x34, 0x0a, 0xe5, 0xa9, 0x6c, 0x87, 0x1b, 0x08, 0xf8, + 0x41, 0x14, 0xd2, 0x30, 0x25, 0x59, 0xe2, 0xa7, 0xc9, 0x75, 0x17, 0x7d, 0xc9, 0xa3, 0x5c, 0x60, + 0xc0, 0xe6, 0xd1, 0x65, 0x4a, 0x93, 0xb7, 0xa8, 0xbf, 0xed, 0x59, 0xff, 0x56, 0x81, 0xe5, 0x39, + 0x66, 0x63, 0x7c, 0x84, 0x8c, 0xd6, 0xb7, 0x25, 0x3a, 0xbc, 0x89, 0xdd, 0x6d, 0x8f, 0x10, 0xd9, + 0x98, 0x94, 0xa9, 0xaa, 0x10, 0xd9, 0x18, 0x35, 0xe9, 0x1c, 0x34, 0xb3, 0x63, 0xfa, 0x5a, 0x69, + 0x18, 0x8d, 0xec, 0x18, 0x3f, 0x73, 0x03, 0xcc, 0x20, 0x1a, 0xd9, 0x81, 0x78, 0x2c, 0x02, 0xe2, + 0x43, 0x6f, 0xfd, 0xad, 0x53, 0xa4, 0xbc, 0x76, 0x2f, 0x1a, 0xdd, 0x43, 0x5a, 0x6e, 0x04, 0xaa, + 0x65, 0x7d, 0x02, 0x86, 0x86, 0x32, 0x13, 0x1a, 0x5b, 0xe2, 0x20, 0x1f, 0xf5, 0x5f, 0x61, 0x06, + 0xd4, 0x71, 0x44, 0xbf, 0x82, 0xad, 0xcf, 0x9c, 0x24, 0xec, 0x57, 0x11, 0x7d, 0x27, 0x49, 0xa2, + 0xa4, 0x5f, 0xc3, 0xe6, 0xae, 0x13, 0xfa, 0x6e, 0xbf, 0x8e, 0xcd, 0xbb, 0x4e, 0xe6, 0x04, 0xfd, + 0x86, 0xf5, 0x67, 0x0d, 0x30, 0x76, 0xd5, 0xdb, 0xd9, 0x16, 0x74, 0x8b, 0xff, 0x0d, 0x2c, 0x4e, + 0xf5, 0xec, 0xce, 0x36, 0x28, 0xd5, 0xd3, 0x89, 0x4b, 0xbd, 0xd9, 0xbf, 0x16, 0x54, 0xe7, 0xfe, + 0x5a, 0xf0, 0x1a, 0xd4, 0x1e, 0x25, 0x27, 0xd3, 0x87, 0x66, 0xbb, 0x81, 0x13, 0x72, 0x04, 0xb3, + 0xf7, 0xa1, 0x8d, 0x72, 0xb7, 0x53, 0x5a, 0xa0, 0x55, 0x9a, 0xa4, 0xfc, 0x6f, 0x08, 0x82, 0x73, + 0x40, 0x22, 0xb5, 0x88, 0xaf, 0x81, 0xe1, 0x1e, 0xfa, 0x81, 0x97, 0x88, 0x50, 0xe5, 0xae, 0xd9, + 0xfc, 0x94, 0x79, 0x41, 0xc3, 0xbe, 0x4b, 0xb7, 0x02, 0x74, 0x7a, 0xa7, 0x5c, 0x94, 0x74, 0x6e, + 0x6a, 0x07, 0xad, 0x29, 0xf8, 0x52, 0x89, 0x9c, 0xd6, 0xa2, 0xc9, 0x35, 0xb6, 0x56, 0xf9, 0x1a, + 0x9b, 0xbc, 0xc9, 0x4e, 0x4b, 0x88, 0x51, 0xec, 0xe3, 0x70, 0x05, 0xb9, 0xa6, 0xd6, 0xe3, 0xb9, + 0xdc, 0x88, 0x5e, 0xb5, 0xd4, 0xba, 0xfc, 0x16, 0xf4, 0x70, 0x9d, 0xb7, 0x65, 0x78, 0x80, 0xae, + 0x04, 0xd4, 0x65, 0xd4, 0x3c, 0x3d, 0xdc, 0xc2, 0x00, 0x01, 0x95, 0xf1, 0x2a, 0xf4, 0xf4, 0xb7, + 0xa8, 0x3b, 0x0d, 0x6d, 0x75, 0x84, 0xa2, 0xa0, 0xf2, 0x4a, 0xc3, 0x1a, 0x9c, 0x71, 0x0f, 0x9d, + 0x30, 0x14, 0x81, 0x7d, 0x90, 0x0f, 0x87, 0x7a, 0x05, 0xe8, 0xd0, 0xd9, 0xe2, 0xb2, 0x42, 0xdd, + 0x26, 0x0c, 0x2d, 0x28, 0x16, 0x74, 0x43, 0x3f, 0x90, 0x77, 0x0f, 0x69, 0xb5, 0xeb, 0x12, 0x65, + 0x3b, 0xf4, 0x03, 0x4a, 0x1b, 0xe3, 0x9a, 0xf7, 0x31, 0xf4, 0xf3, 0xdc, 0xf7, 0x52, 0x3b, 0x8b, + 0xf4, 0x4f, 0x00, 0xe8, 0x04, 0x79, 0x2a, 0xee, 0x7c, 0x98, 0xfb, 0xde, 0x7e, 0xa4, 0x7e, 0x03, + 0xd0, 0x25, 0x7a, 0xdd, 0xb5, 0x3e, 0x86, 0x4e, 0x59, 0x77, 0x50, 0x17, 0x69, 0x43, 0xd6, 0x7f, + 0x85, 0x01, 0x34, 0x77, 0xa2, 0x64, 0xec, 0x04, 0xfd, 0x0a, 0xb6, 0xe5, 0xe5, 0xce, 0x7e, 0x95, + 0x75, 0xc0, 0xd0, 0x3b, 0x85, 0x7e, 0xcd, 0xfa, 0x08, 0x0c, 0xfd, 0x57, 0x03, 0xba, 0x4e, 0x1e, + 0x79, 0x42, 0xc6, 0x49, 0xd2, 0x33, 0x19, 0x08, 0xa0, 0x18, 0x49, 0xff, 0x9e, 0xa3, 0x3a, 0xf9, + 0x3d, 0x87, 0xf5, 0x6b, 0xd0, 0x29, 0x4f, 0x4e, 0x67, 0xf2, 0x2a, 0x93, 0x4c, 0xde, 0x82, 0x51, + 0x74, 0x96, 0x96, 0x44, 0x63, 0xbb, 0x14, 0x32, 0x18, 0x08, 0xc0, 0xd7, 0x58, 0xbf, 0x5d, 0x81, + 0x06, 0x05, 0xbf, 0xb4, 0xb4, 0x60, 0x63, 0x62, 0x3b, 0x0d, 0x6e, 0x12, 0x84, 0xbe, 0xb4, 0x7c, + 0xc4, 0x5c, 0x7d, 0xf6, 0x11, 0x73, 0x6d, 0xfa, 0x88, 0xf9, 0x05, 0x6b, 0x94, 0xae, 0x3f, 0x82, + 0xa6, 0xfc, 0x23, 0x0a, 0x5b, 0x86, 0xee, 0xc3, 0xf0, 0x28, 0x8c, 0x9e, 0x84, 0x12, 0xd0, 0x7f, + 0x85, 0x9d, 0x81, 0x25, 0xcd, 0x74, 0xf5, 0xeb, 0x95, 0x7e, 0x85, 0xf5, 0xa1, 0x43, 0x62, 0xd5, + 0x90, 0x2a, 0x7b, 0x0d, 0x06, 0x6a, 0x71, 0xd8, 0x8a, 0x42, 0xb1, 0x13, 0x65, 0xfe, 0xf0, 0x44, + 0x63, 0x6b, 0x6c, 0x09, 0xda, 0x7b, 0x59, 0x14, 0xef, 0x89, 0xd0, 0xf3, 0xc3, 0x51, 0xbf, 0x7e, + 0xfd, 0x2e, 0x34, 0xe5, 0x8f, 0x5a, 0x4a, 0xaf, 0x94, 0x80, 0xfe, 0x2b, 0x48, 0xfd, 0x99, 0xe3, + 0x67, 0x7e, 0x38, 0xda, 0x11, 0xc7, 0x99, 0x74, 0x4a, 0xf7, 0x9c, 0x34, 0xeb, 0x57, 0x59, 0x0f, + 0x40, 0x3d, 0xf5, 0x4e, 0xe8, 0xf5, 0x6b, 0xb7, 0x37, 0x7f, 0xf2, 0xd3, 0xcb, 0x95, 0xbf, 0xfb, + 0xe9, 0xe5, 0xca, 0x3f, 0xfd, 0xf4, 0xf2, 0x2b, 0x3f, 0xfa, 0xe7, 0xcb, 0x95, 0x1f, 0xbc, 0x5f, + 0xfa, 0x0d, 0xcd, 0xd8, 0xc9, 0x12, 0xff, 0x58, 0x9e, 0x46, 0xea, 0x4e, 0x28, 0x6e, 0xc6, 0x47, + 0xa3, 0x9b, 0xf1, 0xc1, 0x4d, 0xad, 0x73, 0x07, 0x4d, 0xfa, 0xbb, 0xcc, 0x07, 0xff, 0x17, 0x00, + 0x00, 0xff, 0xff, 0x6b, 0x1c, 0x17, 0x8d, 0xdc, 0x46, 0x00, 0x00, } func (m *Message) Marshal() (dAtA []byte, err error) { @@ -7436,6 +7480,26 @@ func (m *PreInsert) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.IsNewUpdate { + i-- + if m.IsNewUpdate { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x58 + } + if m.IsOldUpdate { + i-- + if m.IsOldUpdate { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x50 + } if m.ClusterByExpr != nil { { size, err := m.ClusterByExpr.MarshalToSizedBuffer(dAtA[:i]) @@ -7465,13 +7529,8 @@ func (m *PreInsert) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x38 } - if m.IsUpdate { - i-- - if m.IsUpdate { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } + if m.ColOffset != 0 { + i = encodeVarintPipeline(dAtA, i, uint64(m.ColOffset)) i-- dAtA[i] = 0x30 } @@ -9430,6 +9489,13 @@ func (m *DedupJoin) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.DelColIdx != 0 { + i = encodeVarintPipeline(dAtA, i, uint64(m.DelColIdx)) + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x80 + } if len(m.UpdateColExprList) > 0 { for iNdEx := len(m.UpdateColExprList) - 1; iNdEx >= 0; iNdEx-- { { @@ -10325,6 +10391,11 @@ func (m *HashBuild) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.DelColIdx != 0 { + i = encodeVarintPipeline(dAtA, i, uint64(m.DelColIdx)) + i-- + dAtA[i] = 0x68 + } if len(m.DedupColTypes) > 0 { for iNdEx := len(m.DedupColTypes) - 1; iNdEx >= 0; iNdEx-- { { @@ -10464,6 +10535,11 @@ func (m *Shufflebuild) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.DelColIdx != 0 { + i = encodeVarintPipeline(dAtA, i, uint64(m.DelColIdx)) + i-- + dAtA[i] = 0x60 + } if len(m.DedupColTypes) > 0 { for iNdEx := len(m.DedupColTypes) - 1; iNdEx >= 0; iNdEx-- { { @@ -12840,8 +12916,8 @@ func (m *PreInsert) ProtoSize() (n int) { if m.HasAutoCol { n += 2 } - if m.IsUpdate { - n += 2 + if m.ColOffset != 0 { + n += 1 + sovPipeline(uint64(m.ColOffset)) } if m.EstimatedRowCount != 0 { n += 1 + sovPipeline(uint64(m.EstimatedRowCount)) @@ -12854,6 +12930,12 @@ func (m *PreInsert) ProtoSize() (n int) { l = m.ClusterByExpr.ProtoSize() n += 1 + l + sovPipeline(uint64(l)) } + if m.IsOldUpdate { + n += 2 + } + if m.IsNewUpdate { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -13713,6 +13795,9 @@ func (m *DedupJoin) ProtoSize() (n int) { n += 1 + l + sovPipeline(uint64(l)) } } + if m.DelColIdx != 0 { + n += 2 + sovPipeline(uint64(m.DelColIdx)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -14066,6 +14151,9 @@ func (m *HashBuild) ProtoSize() (n int) { n += 1 + l + sovPipeline(uint64(l)) } } + if m.DelColIdx != 0 { + n += 1 + sovPipeline(uint64(m.DelColIdx)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -14119,6 +14207,9 @@ func (m *Shufflebuild) ProtoSize() (n int) { n += 1 + l + sovPipeline(uint64(l)) } } + if m.DelColIdx != 0 { + n += 1 + sovPipeline(uint64(m.DelColIdx)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -18350,9 +18441,9 @@ func (m *PreInsert) Unmarshal(dAtA []byte) error { m.HasAutoCol = bool(v != 0) case 6: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field IsUpdate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ColOffset", wireType) } - var v int + m.ColOffset = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPipeline @@ -18362,12 +18453,11 @@ func (m *PreInsert) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + m.ColOffset |= int32(b&0x7F) << shift if b < 0x80 { break } } - m.IsUpdate = bool(v != 0) case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field EstimatedRowCount", wireType) @@ -18459,6 +18549,46 @@ func (m *PreInsert) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsOldUpdate", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsOldUpdate = bool(v != 0) + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsNewUpdate", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsNewUpdate = bool(v != 0) default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) @@ -24116,6 +24246,25 @@ func (m *DedupJoin) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 16: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DelColIdx", wireType) + } + m.DelColIdx = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DelColIdx |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) @@ -26313,6 +26462,25 @@ func (m *HashBuild) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 13: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DelColIdx", wireType) + } + m.DelColIdx = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DelColIdx |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) @@ -26637,6 +26805,25 @@ func (m *Shufflebuild) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 12: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DelColIdx", wireType) + } + m.DelColIdx = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPipeline + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DelColIdx |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipPipeline(dAtA[iNdEx:]) diff --git a/pkg/pb/plan/plan.pb.go b/pkg/pb/plan/plan.pb.go index 57013d2a10d9b..fe1f248574556 100644 --- a/pkg/pb/plan/plan.pb.go +++ b/pkg/pb/plan/plan.pb.go @@ -480,7 +480,6 @@ const ( Node_LOCK_OP Node_NodeType = 33 Node_ON_DUPLICATE_KEY Node_NodeType = 34 Node_PRE_INSERT Node_NodeType = 35 - Node_PRE_DELETE Node_NodeType = 36 Node_FUZZY_FILTER Node_NodeType = 37 // the node which build insert batch for hidden table(unique key) Node_PRE_INSERT_UK Node_NodeType = 38 @@ -533,7 +532,6 @@ var Node_NodeType_name = map[int32]string{ 33: "LOCK_OP", 34: "ON_DUPLICATE_KEY", 35: "PRE_INSERT", - 36: "PRE_DELETE", 37: "FUZZY_FILTER", 38: "PRE_INSERT_UK", 39: "PRE_INSERT_SK", @@ -584,7 +582,6 @@ var Node_NodeType_value = map[string]int32{ "LOCK_OP": 33, "ON_DUPLICATE_KEY": 34, "PRE_INSERT": 35, - "PRE_DELETE": 36, "FUZZY_FILTER": 37, "PRE_INSERT_UK": 38, "PRE_INSERT_SK": 39, @@ -819,7 +816,7 @@ func (x Query_StatementType) String() string { } func (Query_StatementType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{70, 0} + return fileDescriptor_2d655ab2f7683c23, []int{69, 0} } type TransationControl_TclType int32 @@ -847,7 +844,7 @@ func (x TransationControl_TclType) String() string { } func (TransationControl_TclType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{71, 0} + return fileDescriptor_2d655ab2f7683c23, []int{70, 0} } type TransationBegin_TransationMode int32 @@ -875,7 +872,7 @@ func (x TransationBegin_TransationMode) String() string { } func (TransationBegin_TransationMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{72, 0} + return fileDescriptor_2d655ab2f7683c23, []int{71, 0} } type DataControl_DclType int32 @@ -924,7 +921,7 @@ func (x DataControl_DclType) String() string { } func (DataControl_DclType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{77, 0} + return fileDescriptor_2d655ab2f7683c23, []int{76, 0} } type DataDefinition_DdlType int32 @@ -1051,7 +1048,7 @@ func (x DataDefinition_DdlType) String() string { } func (DataDefinition_DdlType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{78, 0} + return fileDescriptor_2d655ab2f7683c23, []int{77, 0} } type AlterTableDrop_Typ int32 @@ -1085,7 +1082,7 @@ func (x AlterTableDrop_Typ) String() string { } func (AlterTableDrop_Typ) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{86, 0} + return fileDescriptor_2d655ab2f7683c23, []int{85, 0} } type AlterTable_AlgorithmType int32 @@ -1116,7 +1113,7 @@ func (x AlterTable_AlgorithmType) String() string { } func (AlterTable_AlgorithmType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{97, 0} + return fileDescriptor_2d655ab2f7683c23, []int{96, 0} } type MetadataScanInfo_MetadataScanInfoType int32 @@ -1174,7 +1171,7 @@ func (x MetadataScanInfo_MetadataScanInfoType) String() string { } func (MetadataScanInfo_MetadataScanInfoType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{120, 0} + return fileDescriptor_2d655ab2f7683c23, []int{119, 0} } type Type struct { @@ -6105,7 +6102,6 @@ type Node struct { ReplaceCtx *ReplaceCtx `protobuf:"bytes,31,opt,name=replace_ctx,json=replaceCtx,proto3" json:"replace_ctx,omitempty"` // used to connect two plans[steps] SourceStep []int32 `protobuf:"varint,32,rep,packed,name=source_step,json=sourceStep,proto3" json:"source_step,omitempty"` - PreDeleteCtx *PreDeleteCtx `protobuf:"bytes,33,opt,name=pre_delete_ctx,json=preDeleteCtx,proto3" json:"pre_delete_ctx,omitempty"` PreInsertCtx *PreInsertCtx `protobuf:"bytes,34,opt,name=pre_insert_ctx,json=preInsertCtx,proto3" json:"pre_insert_ctx,omitempty"` // build unique key batch before insert into hidden table which keep the unique key PreInsertUkCtx *PreInsertUkCtx `protobuf:"bytes,35,opt,name=pre_insert_uk_ctx,json=preInsertUkCtx,proto3" json:"pre_insert_uk_ctx,omitempty"` @@ -6399,13 +6395,6 @@ func (m *Node) GetSourceStep() []int32 { return nil } -func (m *Node) GetPreDeleteCtx() *PreDeleteCtx { - if m != nil { - return m.PreDeleteCtx - } - return nil -} - func (m *Node) GetPreInsertCtx() *PreInsertCtx { if m != nil { return m.PreInsertCtx @@ -7155,61 +7144,15 @@ func (m *PreInsertUkCtx) GetUkType() Type { return Type{} } -type PreDeleteCtx struct { - // the indexes of row_id&pk column in the batch - Idx []int32 `protobuf:"varint,1,rep,packed,name=idx,proto3" json:"idx,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -func (m *PreDeleteCtx) Reset() { *m = PreDeleteCtx{} } -func (m *PreDeleteCtx) String() string { return proto.CompactTextString(m) } -func (*PreDeleteCtx) ProtoMessage() {} -func (*PreDeleteCtx) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{62} -} -func (m *PreDeleteCtx) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *PreDeleteCtx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_PreDeleteCtx.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *PreDeleteCtx) XXX_Merge(src proto.Message) { - xxx_messageInfo_PreDeleteCtx.Merge(m, src) -} -func (m *PreDeleteCtx) XXX_Size() int { - return m.ProtoSize() -} -func (m *PreDeleteCtx) XXX_DiscardUnknown() { - xxx_messageInfo_PreDeleteCtx.DiscardUnknown(m) -} - -var xxx_messageInfo_PreDeleteCtx proto.InternalMessageInfo - -func (m *PreDeleteCtx) GetIdx() []int32 { - if m != nil { - return m.Idx - } - return nil -} - type PreInsertCtx struct { Ref *ObjectRef `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"` TableDef *TableDef `protobuf:"bytes,2,opt,name=table_def,json=tableDef,proto3" json:"table_def,omitempty"` HasAutoCol bool `protobuf:"varint,3,opt,name=has_auto_col,json=hasAutoCol,proto3" json:"has_auto_col,omitempty"` - IsUpdate bool `protobuf:"varint,4,opt,name=is_update,json=isUpdate,proto3" json:"is_update,omitempty"` + ColOffset int32 `protobuf:"varint,4,opt,name=col_offset,json=colOffset,proto3" json:"col_offset,omitempty"` CompPkeyExpr *Expr `protobuf:"bytes,5,opt,name=comp_pkey_expr,json=compPkeyExpr,proto3" json:"comp_pkey_expr,omitempty"` ClusterByExpr *Expr `protobuf:"bytes,6,opt,name=cluster_by_expr,json=clusterByExpr,proto3" json:"cluster_by_expr,omitempty"` + IsOldUpdate bool `protobuf:"varint,7,opt,name=is_old_update,json=isOldUpdate,proto3" json:"is_old_update,omitempty"` + IsNewUpdate bool `protobuf:"varint,8,opt,name=is_new_update,json=isNewUpdate,proto3" json:"is_new_update,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -7219,7 +7162,7 @@ func (m *PreInsertCtx) Reset() { *m = PreInsertCtx{} } func (m *PreInsertCtx) String() string { return proto.CompactTextString(m) } func (*PreInsertCtx) ProtoMessage() {} func (*PreInsertCtx) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{63} + return fileDescriptor_2d655ab2f7683c23, []int{62} } func (m *PreInsertCtx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7269,11 +7212,11 @@ func (m *PreInsertCtx) GetHasAutoCol() bool { return false } -func (m *PreInsertCtx) GetIsUpdate() bool { +func (m *PreInsertCtx) GetColOffset() int32 { if m != nil { - return m.IsUpdate + return m.ColOffset } - return false + return 0 } func (m *PreInsertCtx) GetCompPkeyExpr() *Expr { @@ -7290,6 +7233,20 @@ func (m *PreInsertCtx) GetClusterByExpr() *Expr { return nil } +func (m *PreInsertCtx) GetIsOldUpdate() bool { + if m != nil { + return m.IsOldUpdate + } + return false +} + +func (m *PreInsertCtx) GetIsNewUpdate() bool { + if m != nil { + return m.IsNewUpdate + } + return false +} + type RuntimeFilterSpec struct { Tag int32 `protobuf:"varint,1,opt,name=tag,proto3" json:"tag,omitempty"` MatchPrefix bool `protobuf:"varint,2,opt,name=match_prefix,json=matchPrefix,proto3" json:"match_prefix,omitempty"` @@ -7304,7 +7261,7 @@ func (m *RuntimeFilterSpec) Reset() { *m = RuntimeFilterSpec{} } func (m *RuntimeFilterSpec) String() string { return proto.CompactTextString(m) } func (*RuntimeFilterSpec) ProtoMessage() {} func (*RuntimeFilterSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{64} + return fileDescriptor_2d655ab2f7683c23, []int{63} } func (m *RuntimeFilterSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7372,7 +7329,7 @@ func (m *IdList) Reset() { *m = IdList{} } func (m *IdList) String() string { return proto.CompactTextString(m) } func (*IdList) ProtoMessage() {} func (*IdList) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{65} + return fileDescriptor_2d655ab2f7683c23, []int{64} } func (m *IdList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7419,7 +7376,7 @@ func (m *ColPosMap) Reset() { *m = ColPosMap{} } func (m *ColPosMap) String() string { return proto.CompactTextString(m) } func (*ColPosMap) ProtoMessage() {} func (*ColPosMap) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{66} + return fileDescriptor_2d655ab2f7683c23, []int{65} } func (m *ColPosMap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7473,7 +7430,7 @@ func (m *DeleteCtx) Reset() { *m = DeleteCtx{} } func (m *DeleteCtx) String() string { return proto.CompactTextString(m) } func (*DeleteCtx) ProtoMessage() {} func (*DeleteCtx) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{67} + return fileDescriptor_2d655ab2f7683c23, []int{66} } func (m *DeleteCtx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7572,7 +7529,7 @@ func (m *PostDmlFullTextCtx) Reset() { *m = PostDmlFullTextCtx{} } func (m *PostDmlFullTextCtx) String() string { return proto.CompactTextString(m) } func (*PostDmlFullTextCtx) ProtoMessage() {} func (*PostDmlFullTextCtx) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{68} + return fileDescriptor_2d655ab2f7683c23, []int{67} } func (m *PostDmlFullTextCtx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7647,7 +7604,7 @@ func (m *PostDmlCtx) Reset() { *m = PostDmlCtx{} } func (m *PostDmlCtx) String() string { return proto.CompactTextString(m) } func (*PostDmlCtx) ProtoMessage() {} func (*PostDmlCtx) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{69} + return fileDescriptor_2d655ab2f7683c23, []int{68} } func (m *PostDmlCtx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7759,7 +7716,7 @@ func (m *Query) Reset() { *m = Query{} } func (m *Query) String() string { return proto.CompactTextString(m) } func (*Query) ProtoMessage() {} func (*Query) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{70} + return fileDescriptor_2d655ab2f7683c23, []int{69} } func (m *Query) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7862,7 +7819,7 @@ func (m *TransationControl) Reset() { *m = TransationControl{} } func (m *TransationControl) String() string { return proto.CompactTextString(m) } func (*TransationControl) ProtoMessage() {} func (*TransationControl) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{71} + return fileDescriptor_2d655ab2f7683c23, []int{70} } func (m *TransationControl) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7966,7 +7923,7 @@ func (m *TransationBegin) Reset() { *m = TransationBegin{} } func (m *TransationBegin) String() string { return proto.CompactTextString(m) } func (*TransationBegin) ProtoMessage() {} func (*TransationBegin) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{72} + return fileDescriptor_2d655ab2f7683c23, []int{71} } func (m *TransationBegin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8013,7 +7970,7 @@ func (m *TransationCommit) Reset() { *m = TransationCommit{} } func (m *TransationCommit) String() string { return proto.CompactTextString(m) } func (*TransationCommit) ProtoMessage() {} func (*TransationCommit) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{73} + return fileDescriptor_2d655ab2f7683c23, []int{72} } func (m *TransationCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8060,7 +8017,7 @@ func (m *TransationRollback) Reset() { *m = TransationRollback{} } func (m *TransationRollback) String() string { return proto.CompactTextString(m) } func (*TransationRollback) ProtoMessage() {} func (*TransationRollback) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{74} + return fileDescriptor_2d655ab2f7683c23, []int{73} } func (m *TransationRollback) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8115,7 +8072,7 @@ func (m *Plan) Reset() { *m = Plan{} } func (m *Plan) String() string { return proto.CompactTextString(m) } func (*Plan) ProtoMessage() {} func (*Plan) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{75} + return fileDescriptor_2d655ab2f7683c23, []int{74} } func (m *Plan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8238,7 +8195,7 @@ func (m *Column) Reset() { *m = Column{} } func (m *Column) String() string { return proto.CompactTextString(m) } func (*Column) ProtoMessage() {} func (*Column) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{76} + return fileDescriptor_2d655ab2f7683c23, []int{75} } func (m *Column) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8294,7 +8251,7 @@ func (m *DataControl) Reset() { *m = DataControl{} } func (m *DataControl) String() string { return proto.CompactTextString(m) } func (*DataControl) ProtoMessage() {} func (*DataControl) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{77} + return fileDescriptor_2d655ab2f7683c23, []int{76} } func (m *DataControl) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8449,7 +8406,7 @@ func (m *DataDefinition) Reset() { *m = DataDefinition{} } func (m *DataDefinition) String() string { return proto.CompactTextString(m) } func (*DataDefinition) ProtoMessage() {} func (*DataDefinition) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{78} + return fileDescriptor_2d655ab2f7683c23, []int{77} } func (m *DataDefinition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8753,7 +8710,7 @@ func (m *SubscriptionOption) Reset() { *m = SubscriptionOption{} } func (m *SubscriptionOption) String() string { return proto.CompactTextString(m) } func (*SubscriptionOption) ProtoMessage() {} func (*SubscriptionOption) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{79} + return fileDescriptor_2d655ab2f7683c23, []int{78} } func (m *SubscriptionOption) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8810,7 +8767,7 @@ func (m *CreateDatabase) Reset() { *m = CreateDatabase{} } func (m *CreateDatabase) String() string { return proto.CompactTextString(m) } func (*CreateDatabase) ProtoMessage() {} func (*CreateDatabase) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{80} + return fileDescriptor_2d655ab2f7683c23, []int{79} } func (m *CreateDatabase) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8879,7 +8836,7 @@ func (m *AlterDatabase) Reset() { *m = AlterDatabase{} } func (m *AlterDatabase) String() string { return proto.CompactTextString(m) } func (*AlterDatabase) ProtoMessage() {} func (*AlterDatabase) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{81} + return fileDescriptor_2d655ab2f7683c23, []int{80} } func (m *AlterDatabase) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8941,7 +8898,7 @@ func (m *DropDatabase) Reset() { *m = DropDatabase{} } func (m *DropDatabase) String() string { return proto.CompactTextString(m) } func (*DropDatabase) ProtoMessage() {} func (*DropDatabase) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{82} + return fileDescriptor_2d655ab2f7683c23, []int{81} } func (m *DropDatabase) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9017,7 +8974,7 @@ func (m *FkColName) Reset() { *m = FkColName{} } func (m *FkColName) String() string { return proto.CompactTextString(m) } func (*FkColName) ProtoMessage() {} func (*FkColName) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{83} + return fileDescriptor_2d655ab2f7683c23, []int{82} } func (m *FkColName) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9083,7 +9040,7 @@ func (m *ForeignKeyInfo) Reset() { *m = ForeignKeyInfo{} } func (m *ForeignKeyInfo) String() string { return proto.CompactTextString(m) } func (*ForeignKeyInfo) ProtoMessage() {} func (*ForeignKeyInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{84} + return fileDescriptor_2d655ab2f7683c23, []int{83} } func (m *ForeignKeyInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9177,7 +9134,7 @@ func (m *CreateTable) Reset() { *m = CreateTable{} } func (m *CreateTable) String() string { return proto.CompactTextString(m) } func (*CreateTable) ProtoMessage() {} func (*CreateTable) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{85} + return fileDescriptor_2d655ab2f7683c23, []int{84} } func (m *CreateTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9324,7 +9281,7 @@ func (m *AlterTableDrop) Reset() { *m = AlterTableDrop{} } func (m *AlterTableDrop) String() string { return proto.CompactTextString(m) } func (*AlterTableDrop) ProtoMessage() {} func (*AlterTableDrop) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{86} + return fileDescriptor_2d655ab2f7683c23, []int{85} } func (m *AlterTableDrop) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9389,7 +9346,7 @@ func (m *AlterTableAddFk) Reset() { *m = AlterTableAddFk{} } func (m *AlterTableAddFk) String() string { return proto.CompactTextString(m) } func (*AlterTableAddFk) ProtoMessage() {} func (*AlterTableAddFk) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{87} + return fileDescriptor_2d655ab2f7683c23, []int{86} } func (m *AlterTableAddFk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9461,7 +9418,7 @@ func (m *AlterTableAddIndex) Reset() { *m = AlterTableAddIndex{} } func (m *AlterTableAddIndex) String() string { return proto.CompactTextString(m) } func (*AlterTableAddIndex) ProtoMessage() {} func (*AlterTableAddIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{88} + return fileDescriptor_2d655ab2f7683c23, []int{87} } func (m *AlterTableAddIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9539,7 +9496,7 @@ func (m *AlterTableDropIndex) Reset() { *m = AlterTableDropIndex{} } func (m *AlterTableDropIndex) String() string { return proto.CompactTextString(m) } func (*AlterTableDropIndex) ProtoMessage() {} func (*AlterTableDropIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{89} + return fileDescriptor_2d655ab2f7683c23, []int{88} } func (m *AlterTableDropIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9610,7 +9567,7 @@ func (m *AlterTableAlterIndex) Reset() { *m = AlterTableAlterIndex{} } func (m *AlterTableAlterIndex) String() string { return proto.CompactTextString(m) } func (*AlterTableAlterIndex) ProtoMessage() {} func (*AlterTableAlterIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{90} + return fileDescriptor_2d655ab2f7683c23, []int{89} } func (m *AlterTableAlterIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9681,7 +9638,7 @@ func (m *AlterTableAlterReIndex) Reset() { *m = AlterTableAlterReIndex{} func (m *AlterTableAlterReIndex) String() string { return proto.CompactTextString(m) } func (*AlterTableAlterReIndex) ProtoMessage() {} func (*AlterTableAlterReIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{91} + return fileDescriptor_2d655ab2f7683c23, []int{90} } func (m *AlterTableAlterReIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9749,7 +9706,7 @@ func (m *AlterTableComment) Reset() { *m = AlterTableComment{} } func (m *AlterTableComment) String() string { return proto.CompactTextString(m) } func (*AlterTableComment) ProtoMessage() {} func (*AlterTableComment) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{92} + return fileDescriptor_2d655ab2f7683c23, []int{91} } func (m *AlterTableComment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9797,7 +9754,7 @@ func (m *AlterTableName) Reset() { *m = AlterTableName{} } func (m *AlterTableName) String() string { return proto.CompactTextString(m) } func (*AlterTableName) ProtoMessage() {} func (*AlterTableName) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{93} + return fileDescriptor_2d655ab2f7683c23, []int{92} } func (m *AlterTableName) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9854,7 +9811,7 @@ func (m *AlterAddColumn) Reset() { *m = AlterAddColumn{} } func (m *AlterAddColumn) String() string { return proto.CompactTextString(m) } func (*AlterAddColumn) ProtoMessage() {} func (*AlterAddColumn) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{94} + return fileDescriptor_2d655ab2f7683c23, []int{93} } func (m *AlterAddColumn) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9923,7 +9880,7 @@ func (m *AlterDropColumn) Reset() { *m = AlterDropColumn{} } func (m *AlterDropColumn) String() string { return proto.CompactTextString(m) } func (*AlterDropColumn) ProtoMessage() {} func (*AlterDropColumn) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{95} + return fileDescriptor_2d655ab2f7683c23, []int{94} } func (m *AlterDropColumn) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9977,7 +9934,7 @@ func (m *RenameTable) Reset() { *m = RenameTable{} } func (m *RenameTable) String() string { return proto.CompactTextString(m) } func (*RenameTable) ProtoMessage() {} func (*RenameTable) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{96} + return fileDescriptor_2d655ab2f7683c23, []int{95} } func (m *RenameTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10037,7 +9994,7 @@ func (m *AlterTable) Reset() { *m = AlterTable{} } func (m *AlterTable) String() string { return proto.CompactTextString(m) } func (*AlterTable) ProtoMessage() {} func (*AlterTable) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{97} + return fileDescriptor_2d655ab2f7683c23, []int{96} } func (m *AlterTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10165,7 +10122,7 @@ func (m *AlterTable_Action) Reset() { *m = AlterTable_Action{} } func (m *AlterTable_Action) String() string { return proto.CompactTextString(m) } func (*AlterTable_Action) ProtoMessage() {} func (*AlterTable_Action) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{97, 0} + return fileDescriptor_2d655ab2f7683c23, []int{96, 0} } func (m *AlterTable_Action) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10347,7 +10304,7 @@ func (m *DropTable) Reset() { *m = DropTable{} } func (m *DropTable) String() string { return proto.CompactTextString(m) } func (*DropTable) ProtoMessage() {} func (*DropTable) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{98} + return fileDescriptor_2d655ab2f7683c23, []int{97} } func (m *DropTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10467,7 +10424,7 @@ func (m *CreateView) Reset() { *m = CreateView{} } func (m *CreateView) String() string { return proto.CompactTextString(m) } func (*CreateView) ProtoMessage() {} func (*CreateView) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{99} + return fileDescriptor_2d655ab2f7683c23, []int{98} } func (m *CreateView) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10537,7 +10494,7 @@ func (m *AlterView) Reset() { *m = AlterView{} } func (m *AlterView) String() string { return proto.CompactTextString(m) } func (*AlterView) ProtoMessage() {} func (*AlterView) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{100} + return fileDescriptor_2d655ab2f7683c23, []int{99} } func (m *AlterView) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10600,7 +10557,7 @@ func (m *CreateSequence) Reset() { *m = CreateSequence{} } func (m *CreateSequence) String() string { return proto.CompactTextString(m) } func (*CreateSequence) ProtoMessage() {} func (*CreateSequence) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{101} + return fileDescriptor_2d655ab2f7683c23, []int{100} } func (m *CreateSequence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10664,7 +10621,7 @@ func (m *DropSequence) Reset() { *m = DropSequence{} } func (m *DropSequence) String() string { return proto.CompactTextString(m) } func (*DropSequence) ProtoMessage() {} func (*DropSequence) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{102} + return fileDescriptor_2d655ab2f7683c23, []int{101} } func (m *DropSequence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10734,7 +10691,7 @@ func (m *AlterSequence) Reset() { *m = AlterSequence{} } func (m *AlterSequence) String() string { return proto.CompactTextString(m) } func (*AlterSequence) ProtoMessage() {} func (*AlterSequence) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{103} + return fileDescriptor_2d655ab2f7683c23, []int{102} } func (m *AlterSequence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10800,7 +10757,7 @@ func (m *CreateIndex) Reset() { *m = CreateIndex{} } func (m *CreateIndex) String() string { return proto.CompactTextString(m) } func (*CreateIndex) ProtoMessage() {} func (*CreateIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{104} + return fileDescriptor_2d655ab2f7683c23, []int{103} } func (m *CreateIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10882,7 +10839,7 @@ func (m *AlterIndex) Reset() { *m = AlterIndex{} } func (m *AlterIndex) String() string { return proto.CompactTextString(m) } func (*AlterIndex) ProtoMessage() {} func (*AlterIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{105} + return fileDescriptor_2d655ab2f7683c23, []int{104} } func (m *AlterIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -10932,7 +10889,7 @@ func (m *DropIndex) Reset() { *m = DropIndex{} } func (m *DropIndex) String() string { return proto.CompactTextString(m) } func (*DropIndex) ProtoMessage() {} func (*DropIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{106} + return fileDescriptor_2d655ab2f7683c23, []int{105} } func (m *DropIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11006,7 +10963,7 @@ func (m *TruncateTable) Reset() { *m = TruncateTable{} } func (m *TruncateTable) String() string { return proto.CompactTextString(m) } func (*TruncateTable) ProtoMessage() {} func (*TruncateTable) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{107} + return fileDescriptor_2d655ab2f7683c23, []int{106} } func (m *TruncateTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11097,7 +11054,7 @@ func (m *ClusterTable) Reset() { *m = ClusterTable{} } func (m *ClusterTable) String() string { return proto.CompactTextString(m) } func (*ClusterTable) ProtoMessage() {} func (*ClusterTable) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{108} + return fileDescriptor_2d655ab2f7683c23, []int{107} } func (m *ClusterTable) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11159,7 +11116,7 @@ func (m *ShowVariables) Reset() { *m = ShowVariables{} } func (m *ShowVariables) String() string { return proto.CompactTextString(m) } func (*ShowVariables) ProtoMessage() {} func (*ShowVariables) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{109} + return fileDescriptor_2d655ab2f7683c23, []int{108} } func (m *ShowVariables) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11213,7 +11170,7 @@ func (m *SetVariables) Reset() { *m = SetVariables{} } func (m *SetVariables) String() string { return proto.CompactTextString(m) } func (*SetVariables) ProtoMessage() {} func (*SetVariables) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{110} + return fileDescriptor_2d655ab2f7683c23, []int{109} } func (m *SetVariables) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11264,7 +11221,7 @@ func (m *SetVariablesItem) Reset() { *m = SetVariablesItem{} } func (m *SetVariablesItem) String() string { return proto.CompactTextString(m) } func (*SetVariablesItem) ProtoMessage() {} func (*SetVariablesItem) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{111} + return fileDescriptor_2d655ab2f7683c23, []int{110} } func (m *SetVariablesItem) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11342,7 +11299,7 @@ func (m *Prepare) Reset() { *m = Prepare{} } func (m *Prepare) String() string { return proto.CompactTextString(m) } func (*Prepare) ProtoMessage() {} func (*Prepare) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{112} + return fileDescriptor_2d655ab2f7683c23, []int{111} } func (m *Prepare) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11411,7 +11368,7 @@ func (m *Execute) Reset() { *m = Execute{} } func (m *Execute) String() string { return proto.CompactTextString(m) } func (*Execute) ProtoMessage() {} func (*Execute) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{113} + return fileDescriptor_2d655ab2f7683c23, []int{112} } func (m *Execute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11465,7 +11422,7 @@ func (m *Deallocate) Reset() { *m = Deallocate{} } func (m *Deallocate) String() string { return proto.CompactTextString(m) } func (*Deallocate) ProtoMessage() {} func (*Deallocate) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{114} + return fileDescriptor_2d655ab2f7683c23, []int{113} } func (m *Deallocate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11512,7 +11469,7 @@ func (m *OtherDCL) Reset() { *m = OtherDCL{} } func (m *OtherDCL) String() string { return proto.CompactTextString(m) } func (*OtherDCL) ProtoMessage() {} func (*OtherDCL) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{115} + return fileDescriptor_2d655ab2f7683c23, []int{114} } func (m *OtherDCL) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11560,7 +11517,7 @@ func (m *TableLockInfo) Reset() { *m = TableLockInfo{} } func (m *TableLockInfo) String() string { return proto.CompactTextString(m) } func (*TableLockInfo) ProtoMessage() {} func (*TableLockInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{116} + return fileDescriptor_2d655ab2f7683c23, []int{115} } func (m *TableLockInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11614,7 +11571,7 @@ func (m *LockTables) Reset() { *m = LockTables{} } func (m *LockTables) String() string { return proto.CompactTextString(m) } func (*LockTables) ProtoMessage() {} func (*LockTables) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{117} + return fileDescriptor_2d655ab2f7683c23, []int{116} } func (m *LockTables) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11660,7 +11617,7 @@ func (m *UnLockTables) Reset() { *m = UnLockTables{} } func (m *UnLockTables) String() string { return proto.CompactTextString(m) } func (*UnLockTables) ProtoMessage() {} func (*UnLockTables) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{118} + return fileDescriptor_2d655ab2f7683c23, []int{117} } func (m *UnLockTables) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11700,7 +11657,7 @@ func (m *MetadataScanInfos) Reset() { *m = MetadataScanInfos{} } func (m *MetadataScanInfos) String() string { return proto.CompactTextString(m) } func (*MetadataScanInfos) ProtoMessage() {} func (*MetadataScanInfos) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{119} + return fileDescriptor_2d655ab2f7683c23, []int{118} } func (m *MetadataScanInfos) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11757,7 +11714,7 @@ func (m *MetadataScanInfo) Reset() { *m = MetadataScanInfo{} } func (m *MetadataScanInfo) String() string { return proto.CompactTextString(m) } func (*MetadataScanInfo) ProtoMessage() {} func (*MetadataScanInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_2d655ab2f7683c23, []int{120} + return fileDescriptor_2d655ab2f7683c23, []int{119} } func (m *MetadataScanInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -11957,7 +11914,6 @@ func init() { proto.RegisterType((*ExternAttr)(nil), "plan.ExternAttr") proto.RegisterType((*LockTarget)(nil), "plan.LockTarget") proto.RegisterType((*PreInsertUkCtx)(nil), "plan.PreInsertUkCtx") - proto.RegisterType((*PreDeleteCtx)(nil), "plan.PreDeleteCtx") proto.RegisterType((*PreInsertCtx)(nil), "plan.PreInsertCtx") proto.RegisterType((*RuntimeFilterSpec)(nil), "plan.RuntimeFilterSpec") proto.RegisterType((*IdList)(nil), "plan.IdList") @@ -12024,719 +11980,719 @@ func init() { func init() { proto.RegisterFile("plan.proto", fileDescriptor_2d655ab2f7683c23) } var fileDescriptor_2d655ab2f7683c23 = []byte{ - // 11385 bytes of a gzipped FileDescriptorProto + // 11389 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0xbd, 0x5d, 0x6c, 0x23, 0x57, 0x96, 0x18, 0x2c, 0x8a, 0xff, 0x87, 0x3f, 0x2a, 0xdd, 0xfe, 0x63, 0xb7, 0xdb, 0xdd, 0xea, 0x72, - 0xbb, 0x2d, 0xb7, 0xed, 0xb6, 0xdd, 0xed, 0xdf, 0xd9, 0x99, 0x1d, 0x53, 0x14, 0xd5, 0xe2, 0x34, - 0x45, 0x6a, 0x2e, 0xa9, 0x6e, 0x7b, 0x16, 0xdf, 0x57, 0x28, 0xb2, 0x8a, 0x52, 0x59, 0xc5, 0x2a, - 0xba, 0xaa, 0xd8, 0x92, 0x0c, 0x2c, 0x30, 0xf8, 0x16, 0xd8, 0x0f, 0x9b, 0xd7, 0x45, 0x16, 0x79, - 0x48, 0x80, 0xc9, 0x02, 0x01, 0x82, 0x45, 0x16, 0x48, 0x90, 0x05, 0x36, 0x48, 0x1e, 0xf3, 0xb2, - 0x59, 0x04, 0x41, 0x80, 0x00, 0x09, 0x36, 0x01, 0x16, 0xc1, 0xe4, 0x21, 0x4f, 0xc9, 0x3e, 0x24, - 0x2f, 0x79, 0xda, 0xe0, 0x9c, 0x7b, 0xab, 0x78, 0x4b, 0x54, 0xbb, 0x6d, 0xcf, 0x2c, 0x90, 0xbc, - 0x48, 0x75, 0xcf, 0xcf, 0xfd, 0xbf, 0xe7, 0x9e, 0x73, 0xee, 0xb9, 0x97, 0x00, 0x33, 0xd7, 0xf4, - 0x1e, 0xcc, 0x02, 0x3f, 0xf2, 0x59, 0x0e, 0xbf, 0x6f, 0xbc, 0x73, 0xe8, 0x44, 0x47, 0xf3, 0xd1, - 0x83, 0xb1, 0x3f, 0x7d, 0xf7, 0xd0, 0x3f, 0xf4, 0xdf, 0x25, 0xe4, 0x68, 0x3e, 0xa1, 0x14, 0x25, - 0xe8, 0x4b, 0x30, 0xdd, 0x00, 0xd7, 0x1f, 0x1f, 0xcb, 0xef, 0xb5, 0xc8, 0x99, 0xda, 0x61, 0x64, - 0x4e, 0x67, 0x02, 0xa0, 0xff, 0x69, 0x06, 0x72, 0xc3, 0xb3, 0x99, 0xcd, 0xea, 0xb0, 0xea, 0x58, - 0x8d, 0xcc, 0x46, 0x66, 0x33, 0xcf, 0x57, 0x1d, 0x8b, 0x6d, 0x40, 0xc5, 0xf3, 0xa3, 0xde, 0xdc, - 0x75, 0xcd, 0x91, 0x6b, 0x37, 0x56, 0x37, 0x32, 0x9b, 0x25, 0xae, 0x82, 0xd8, 0x2b, 0x50, 0x36, + 0xbb, 0xdd, 0x6e, 0xdb, 0x6d, 0xbb, 0xdb, 0xbf, 0xb3, 0x33, 0x3b, 0xa6, 0x28, 0xaa, 0xc5, 0x69, + 0x8a, 0xd4, 0x5c, 0x52, 0xdd, 0xf6, 0x2c, 0xbe, 0xaf, 0x50, 0x64, 0x15, 0xa5, 0xb2, 0x8a, 0x55, + 0x74, 0x55, 0xb1, 0x25, 0x19, 0x58, 0x60, 0xf0, 0x7d, 0xc0, 0x06, 0x9b, 0xd7, 0x45, 0x16, 0x79, + 0x48, 0x80, 0xc9, 0x02, 0x01, 0x82, 0x45, 0x16, 0x48, 0x90, 0x0d, 0x36, 0xd8, 0x3c, 0xe6, 0x65, + 0x13, 0x24, 0x41, 0x80, 0x00, 0x09, 0x36, 0x01, 0x16, 0xc1, 0xe4, 0x21, 0x4f, 0xc9, 0x3e, 0x24, + 0x2f, 0x79, 0x4a, 0x70, 0xce, 0xbd, 0x55, 0xbc, 0x25, 0x4a, 0x6e, 0xdb, 0x33, 0x0b, 0x24, 0x2f, + 0x52, 0xdd, 0xf3, 0x73, 0xff, 0xef, 0xb9, 0xe7, 0x9c, 0x7b, 0xee, 0x25, 0xc0, 0xcc, 0x35, 0xbd, + 0x87, 0xb3, 0xc0, 0x8f, 0x7c, 0x96, 0xc3, 0xef, 0x1b, 0xef, 0x1c, 0x38, 0xd1, 0xe1, 0x7c, 0xf4, + 0x70, 0xec, 0x4f, 0xdf, 0x3d, 0xf0, 0x0f, 0xfc, 0x77, 0x09, 0x39, 0x9a, 0x4f, 0x28, 0x45, 0x09, + 0xfa, 0x12, 0x4c, 0x37, 0xc0, 0xf5, 0xc7, 0x47, 0xf2, 0x7b, 0x2d, 0x72, 0xa6, 0x76, 0x18, 0x99, + 0xd3, 0x99, 0x00, 0xe8, 0x7f, 0x92, 0x81, 0xdc, 0xf0, 0x74, 0x66, 0xb3, 0x3a, 0xac, 0x3a, 0x56, + 0x23, 0xb3, 0x91, 0xb9, 0x9f, 0xe7, 0xab, 0x8e, 0xc5, 0x36, 0xa0, 0xe2, 0xf9, 0x51, 0x6f, 0xee, + 0xba, 0xe6, 0xc8, 0xb5, 0x1b, 0xab, 0x1b, 0x99, 0xfb, 0x25, 0xae, 0x82, 0xd8, 0x2b, 0x50, 0x36, 0xe7, 0x91, 0x6f, 0x38, 0xde, 0x38, 0x68, 0x64, 0x09, 0x5f, 0x42, 0x40, 0xc7, 0x1b, 0x07, 0xec, - 0x32, 0xe4, 0x4f, 0x1c, 0x2b, 0x3a, 0x6a, 0xe4, 0x28, 0x47, 0x91, 0x40, 0x68, 0x38, 0x36, 0x5d, - 0xbb, 0x91, 0x17, 0x50, 0x4a, 0x20, 0x34, 0xa2, 0x42, 0x0a, 0x1b, 0x99, 0xcd, 0x32, 0x17, 0x09, - 0x76, 0x0b, 0xc0, 0xf6, 0xe6, 0xd3, 0xe7, 0xa6, 0x3b, 0xb7, 0xc3, 0x46, 0x91, 0x50, 0x0a, 0x44, - 0xff, 0x31, 0x94, 0xa7, 0xe1, 0xe1, 0xae, 0x6d, 0x5a, 0x76, 0xc0, 0xae, 0x41, 0x71, 0x1a, 0x1e, - 0x1a, 0x91, 0x79, 0x28, 0x9b, 0x50, 0x98, 0x86, 0x87, 0x43, 0xf3, 0x90, 0x5d, 0x87, 0x12, 0x21, - 0xce, 0x66, 0xa2, 0x0d, 0x79, 0x8e, 0x84, 0xd8, 0x62, 0xfd, 0xaf, 0xf2, 0x50, 0xec, 0x3a, 0x91, - 0x1d, 0x98, 0x2e, 0xbb, 0x0a, 0x05, 0x27, 0xf4, 0xe6, 0xae, 0x4b, 0xec, 0x25, 0x2e, 0x53, 0xec, - 0x2a, 0xe4, 0x9d, 0x4f, 0x9e, 0x9b, 0xae, 0xe0, 0xdd, 0x5d, 0xe1, 0x22, 0xc9, 0x1a, 0x50, 0x70, - 0xde, 0xff, 0x08, 0x11, 0x59, 0x89, 0x90, 0x69, 0xc2, 0x3c, 0x7a, 0x88, 0x98, 0x5c, 0x82, 0xa1, - 0x34, 0x61, 0x3e, 0xfa, 0x00, 0x31, 0xd8, 0xfa, 0x2c, 0x61, 0x28, 0x8d, 0xa5, 0xcc, 0xa9, 0x14, - 0xec, 0x80, 0x1a, 0x96, 0x32, 0x8f, 0x4b, 0x99, 0x8b, 0x52, 0x8a, 0x12, 0x21, 0xd3, 0x84, 0x11, - 0xa5, 0x94, 0x12, 0x4c, 0x52, 0xca, 0x5c, 0x94, 0x52, 0xde, 0xc8, 0x6c, 0xe6, 0x08, 0x23, 0x4a, - 0xb9, 0x0c, 0x39, 0x0b, 0xe1, 0xb0, 0x91, 0xd9, 0xcc, 0xec, 0xae, 0x70, 0x4a, 0x21, 0x34, 0x44, - 0x68, 0x05, 0x3b, 0x18, 0xa1, 0xa1, 0x84, 0x8e, 0x10, 0x5a, 0xc5, 0xde, 0x40, 0xe8, 0x48, 0x42, - 0x27, 0x08, 0xad, 0x6d, 0x64, 0x36, 0x57, 0x11, 0x8a, 0x29, 0x76, 0x03, 0x8a, 0x96, 0x19, 0xd9, - 0x88, 0xa8, 0xcb, 0x26, 0xc7, 0x00, 0xc4, 0xe1, 0x8c, 0x43, 0xdc, 0x9a, 0x6c, 0x74, 0x0c, 0x60, - 0x3a, 0x54, 0x90, 0x2c, 0xc6, 0x6b, 0x12, 0xaf, 0x02, 0xd9, 0x87, 0x50, 0xb5, 0xec, 0xb1, 0x33, - 0x35, 0x5d, 0xd1, 0xa6, 0xf5, 0x8d, 0xcc, 0x66, 0xe5, 0xe1, 0xda, 0x03, 0x5a, 0x13, 0x09, 0x66, - 0x77, 0x85, 0xa7, 0xc8, 0xd8, 0x27, 0x50, 0x93, 0xe9, 0xf7, 0x1f, 0x52, 0xc7, 0x32, 0xe2, 0xd3, - 0x52, 0x7c, 0xef, 0x3f, 0xfc, 0x64, 0x77, 0x85, 0xa7, 0x09, 0xd9, 0x5d, 0xa8, 0x26, 0x4b, 0x04, - 0x19, 0x2f, 0xc9, 0x5a, 0xa5, 0xa0, 0xd8, 0xac, 0x2f, 0x43, 0xdf, 0x43, 0x82, 0xcb, 0xb2, 0xdf, - 0x62, 0x00, 0xdb, 0x00, 0xb0, 0xec, 0x89, 0x39, 0x77, 0x23, 0x44, 0x5f, 0x91, 0x1d, 0xa8, 0xc0, - 0xd8, 0x2d, 0x28, 0xcf, 0x67, 0xd8, 0xca, 0xa7, 0xa6, 0xdb, 0xb8, 0x2a, 0x09, 0x16, 0x20, 0xcc, - 0x1d, 0xe7, 0x39, 0x62, 0xaf, 0xc9, 0xd1, 0x8d, 0x01, 0xb8, 0x56, 0x9c, 0x70, 0xcb, 0xf1, 0x1a, - 0x0d, 0x9a, 0xa7, 0x22, 0xc1, 0x6e, 0x42, 0x36, 0x0c, 0xc6, 0x8d, 0xeb, 0xd4, 0x4a, 0x10, 0xad, - 0x6c, 0x9f, 0xce, 0x02, 0x8e, 0xe0, 0xad, 0x22, 0xe4, 0x69, 0xcd, 0xe8, 0x37, 0xa1, 0xb4, 0x6f, - 0x06, 0xe6, 0x94, 0xdb, 0x13, 0xa6, 0x41, 0x76, 0xe6, 0x87, 0x72, 0xb5, 0xe0, 0xa7, 0xde, 0x85, - 0xc2, 0x53, 0x33, 0x40, 0x1c, 0x83, 0x9c, 0x67, 0x4e, 0x6d, 0x42, 0x96, 0x39, 0x7d, 0xe3, 0x0a, - 0x09, 0xcf, 0xc2, 0xc8, 0x9e, 0x4a, 0x51, 0x20, 0x53, 0x08, 0x3f, 0x74, 0xfd, 0x91, 0x5c, 0x09, - 0x25, 0x2e, 0x53, 0xfa, 0xff, 0x97, 0x81, 0x42, 0xcb, 0x77, 0x31, 0xbb, 0x6b, 0x50, 0x0c, 0x6c, - 0xd7, 0x58, 0x14, 0x57, 0x08, 0x6c, 0x77, 0xdf, 0x0f, 0x11, 0x31, 0xf6, 0x05, 0x42, 0xac, 0xcd, - 0xc2, 0xd8, 0x27, 0x44, 0x5c, 0x81, 0xac, 0x52, 0x81, 0xeb, 0x50, 0x8a, 0x46, 0xae, 0x41, 0xf0, - 0x1c, 0xc1, 0x8b, 0xd1, 0xc8, 0xed, 0x21, 0xea, 0x1a, 0x14, 0xad, 0x91, 0xc0, 0xe4, 0x09, 0x53, - 0xb0, 0x46, 0x88, 0xd0, 0x3f, 0x85, 0x32, 0x37, 0x4f, 0x64, 0x35, 0xae, 0x40, 0x01, 0x33, 0x90, - 0x52, 0x2e, 0xc7, 0xf3, 0xd1, 0xc8, 0xed, 0x58, 0x08, 0xc6, 0x4a, 0x38, 0x16, 0xd5, 0x21, 0xc7, - 0xf3, 0x63, 0xdf, 0xed, 0x58, 0xfa, 0x10, 0xa0, 0xe5, 0x07, 0xc1, 0xf7, 0x6e, 0xc2, 0x65, 0xc8, - 0x5b, 0xf6, 0x2c, 0x3a, 0x12, 0x02, 0x82, 0x8b, 0x84, 0x7e, 0x1f, 0x4a, 0x38, 0x2e, 0x5d, 0x27, - 0x8c, 0xd8, 0x2d, 0xc8, 0xb9, 0x4e, 0x18, 0x35, 0x32, 0x1b, 0xd9, 0x73, 0xa3, 0x46, 0x70, 0x7d, - 0x03, 0x4a, 0x7b, 0xe6, 0xe9, 0x53, 0x1c, 0x39, 0xcc, 0x8d, 0x86, 0x50, 0x0e, 0x89, 0x1c, 0xcf, - 0x2a, 0xc0, 0xd0, 0x0c, 0x0e, 0xed, 0x88, 0xe4, 0xd9, 0xff, 0xc8, 0x40, 0x65, 0x30, 0x1f, 0x7d, - 0x35, 0xb7, 0x83, 0x33, 0xac, 0xf3, 0x26, 0x64, 0xa3, 0xb3, 0x19, 0x71, 0xd4, 0x1f, 0x5e, 0x15, - 0xd9, 0x2b, 0xf8, 0x07, 0xc8, 0xc4, 0x91, 0x04, 0x1b, 0xe1, 0xf9, 0x96, 0x1d, 0xf7, 0x41, 0x9e, - 0x17, 0x30, 0xd9, 0xb1, 0x70, 0x53, 0xf0, 0x67, 0x72, 0x14, 0x56, 0xfd, 0x19, 0xdb, 0x80, 0xfc, - 0xf8, 0xc8, 0x71, 0x2d, 0x1a, 0x80, 0x74, 0x9d, 0x05, 0x02, 0x47, 0x29, 0xf0, 0x4f, 0x8c, 0xd0, - 0xf9, 0x3a, 0x16, 0xf2, 0xc5, 0xc0, 0x3f, 0x19, 0x38, 0x5f, 0xdb, 0xfa, 0x50, 0xee, 0x34, 0x00, - 0x85, 0x41, 0xab, 0xd9, 0x6d, 0x72, 0x6d, 0x05, 0xbf, 0xdb, 0x9f, 0x77, 0x06, 0xc3, 0x81, 0x96, - 0x61, 0x75, 0x80, 0x5e, 0x7f, 0x68, 0xc8, 0xf4, 0x2a, 0x2b, 0xc0, 0x6a, 0xa7, 0xa7, 0x65, 0x91, - 0x06, 0xe1, 0x9d, 0x9e, 0x96, 0x63, 0x45, 0xc8, 0x36, 0x7b, 0x5f, 0x68, 0x79, 0xfa, 0xe8, 0x76, - 0xb5, 0x82, 0xfe, 0x47, 0xab, 0x50, 0xee, 0x8f, 0xbe, 0xb4, 0xc7, 0x11, 0xb6, 0x19, 0x67, 0xa9, - 0x1d, 0x3c, 0xb7, 0x03, 0x6a, 0x76, 0x96, 0xcb, 0x14, 0x36, 0xc4, 0x1a, 0x51, 0xe3, 0xb2, 0x7c, - 0xd5, 0x1a, 0x11, 0xdd, 0xf8, 0xc8, 0x9e, 0x9a, 0xd4, 0x38, 0xa4, 0xa3, 0x14, 0xae, 0x0a, 0x7f, - 0xf4, 0x25, 0x35, 0x2f, 0xcb, 0xf1, 0x93, 0xdd, 0x86, 0x8a, 0xc8, 0x43, 0x9d, 0x5f, 0x20, 0x40, - 0xe7, 0x27, 0x5f, 0x41, 0x9d, 0x7c, 0xc4, 0x49, 0xb9, 0x0a, 0xa4, 0xdc, 0xc1, 0x04, 0xa8, 0x27, - 0x67, 0xb4, 0x3f, 0xfa, 0x52, 0x60, 0x4b, 0x62, 0x46, 0xfb, 0xa3, 0x2f, 0x09, 0xf5, 0x16, 0xac, - 0x87, 0xf3, 0x51, 0x38, 0x0e, 0x9c, 0x59, 0xe4, 0xf8, 0x9e, 0xa0, 0x29, 0x13, 0x8d, 0xa6, 0x22, - 0x88, 0x78, 0x13, 0x4a, 0xb3, 0xf9, 0xc8, 0x70, 0xbc, 0x89, 0x4f, 0xc2, 0xbd, 0xf2, 0xb0, 0x26, - 0x06, 0x66, 0x7f, 0x3e, 0xea, 0x78, 0x13, 0x9f, 0x17, 0x67, 0xe2, 0x43, 0xbf, 0x07, 0x45, 0x09, - 0xc3, 0xdd, 0x3b, 0xb2, 0x3d, 0xd3, 0x8b, 0x8c, 0x64, 0xdb, 0x2f, 0x09, 0x40, 0xc7, 0xd2, 0xff, - 0x24, 0x03, 0xda, 0x40, 0x29, 0x66, 0xcf, 0x8e, 0xcc, 0x0b, 0xa5, 0xc2, 0xab, 0x00, 0xe6, 0x78, - 0xec, 0xcf, 0x45, 0x36, 0x62, 0xf2, 0x94, 0x25, 0xa4, 0x63, 0xa9, 0x7d, 0x93, 0x4d, 0xf5, 0xcd, - 0x1d, 0xa8, 0xc6, 0x7c, 0xca, 0x82, 0xae, 0x48, 0x58, 0xdc, 0x3b, 0xe1, 0x3c, 0xb5, 0xaa, 0x8b, - 0xe1, 0x5c, 0x70, 0x5f, 0x85, 0x02, 0xe9, 0x08, 0x61, 0xdc, 0xe3, 0x22, 0xa5, 0xff, 0x87, 0x0c, - 0xd4, 0x3a, 0x9e, 0x65, 0x9f, 0x0e, 0xc6, 0xa6, 0x47, 0xad, 0xd4, 0xa1, 0xe6, 0x84, 0x86, 0x83, - 0x30, 0x23, 0x1c, 0x9b, 0x9e, 0xdc, 0xde, 0x2b, 0x4e, 0x98, 0xd0, 0x61, 0x1b, 0x04, 0x01, 0x15, - 0xb5, 0x4a, 0x39, 0x96, 0x09, 0x42, 0x85, 0xdd, 0x83, 0xb5, 0x91, 0xed, 0xfa, 0xde, 0xa1, 0x11, - 0xf9, 0x86, 0xd0, 0x53, 0x44, 0x5b, 0x6a, 0x02, 0x3c, 0xf4, 0x87, 0xa4, 0xaf, 0x5c, 0x86, 0xfc, - 0xcc, 0x0c, 0xa2, 0xb0, 0x91, 0xdb, 0xc8, 0xe2, 0x12, 0xa5, 0x04, 0x76, 0xb3, 0x13, 0x1a, 0x73, - 0xcf, 0xf9, 0x6a, 0x2e, 0x9a, 0x51, 0xe2, 0x25, 0x27, 0x3c, 0xa0, 0x34, 0xdb, 0x04, 0x4d, 0x94, - 0x4c, 0xd9, 0xaa, 0x73, 0xa8, 0x4e, 0x70, 0xca, 0x98, 0x04, 0xd9, 0xdf, 0x5a, 0x85, 0xd2, 0xce, - 0xdc, 0x1b, 0xe3, 0x60, 0xb0, 0xd7, 0x20, 0x37, 0x99, 0x7b, 0x63, 0x6a, 0x4b, 0xb2, 0x19, 0x26, - 0x6b, 0x80, 0x13, 0x12, 0xa5, 0x8b, 0x19, 0x1c, 0xa2, 0x54, 0x5a, 0x92, 0x2e, 0x08, 0xd7, 0xff, - 0x59, 0x46, 0xe4, 0xb8, 0xe3, 0x9a, 0x87, 0xac, 0x04, 0xb9, 0x5e, 0xbf, 0xd7, 0xd6, 0x56, 0x58, - 0x15, 0x4a, 0x9d, 0xde, 0xb0, 0xcd, 0x7b, 0xcd, 0xae, 0x96, 0xa1, 0xa5, 0x3a, 0x6c, 0x6e, 0x75, - 0xdb, 0xda, 0x2a, 0x62, 0x9e, 0xf6, 0xbb, 0xcd, 0x61, 0xa7, 0xdb, 0xd6, 0x72, 0x02, 0xc3, 0x3b, - 0xad, 0xa1, 0x56, 0x62, 0x1a, 0x54, 0xf7, 0x79, 0x7f, 0xfb, 0xa0, 0xd5, 0x36, 0x7a, 0x07, 0xdd, - 0xae, 0xa6, 0xb1, 0x4b, 0xb0, 0x96, 0x40, 0xfa, 0x02, 0xb8, 0x81, 0x2c, 0x4f, 0x9b, 0xbc, 0xc9, - 0x1f, 0x6b, 0x9f, 0xb1, 0x12, 0x64, 0x9b, 0x8f, 0x1f, 0x6b, 0x3f, 0xc7, 0x55, 0x5f, 0x7e, 0xd6, - 0xe9, 0x19, 0x4f, 0x9b, 0xdd, 0x83, 0xb6, 0xf6, 0xf3, 0xd5, 0x38, 0xdd, 0xe7, 0xdb, 0x6d, 0xae, - 0xfd, 0x3c, 0xc7, 0xd6, 0xa1, 0xfa, 0xb3, 0x7e, 0xaf, 0xbd, 0xd7, 0xdc, 0xdf, 0xa7, 0x8a, 0xfc, - 0xbc, 0xa4, 0xff, 0xb7, 0x1c, 0xe4, 0xb0, 0x25, 0x4c, 0x5f, 0x48, 0xb8, 0xa4, 0x89, 0x28, 0x62, - 0xb6, 0x72, 0x7f, 0xf6, 0x97, 0xb7, 0x57, 0x84, 0x6c, 0xbb, 0x03, 0x59, 0xd7, 0x89, 0x68, 0x58, - 0x93, 0x75, 0x21, 0xb5, 0xbe, 0xdd, 0x15, 0x8e, 0x38, 0x76, 0x0b, 0x32, 0x42, 0xc8, 0x55, 0x1e, - 0xd6, 0xe5, 0xc2, 0x91, 0xbb, 0xe4, 0xee, 0x0a, 0xcf, 0xcc, 0xd8, 0x4d, 0xc8, 0x3c, 0x97, 0x12, - 0xaf, 0x2a, 0xf0, 0x62, 0x9f, 0x44, 0xec, 0x73, 0xb6, 0x01, 0xd9, 0xb1, 0x2f, 0x74, 0xba, 0x04, - 0x2f, 0x76, 0x0d, 0xcc, 0x7f, 0xec, 0xbb, 0xec, 0x35, 0xc8, 0x06, 0xe6, 0x09, 0x8d, 0x6c, 0x32, - 0x5c, 0xc9, 0xb6, 0x84, 0x44, 0x81, 0x79, 0x82, 0x95, 0x98, 0x90, 0x8c, 0x48, 0x2a, 0x11, 0x8f, - 0x37, 0x16, 0x33, 0x61, 0x1b, 0x90, 0x39, 0x21, 0x29, 0x91, 0xa8, 0x31, 0xcf, 0x1c, 0xcf, 0xf2, - 0x4f, 0x06, 0x33, 0x7b, 0x8c, 0x14, 0x27, 0xec, 0x75, 0xc8, 0x86, 0xf3, 0x11, 0x49, 0x89, 0xca, - 0xc3, 0xf5, 0x25, 0x79, 0x8f, 0x05, 0x85, 0xf3, 0x11, 0xbb, 0x07, 0xb9, 0xb1, 0x1f, 0x04, 0x52, - 0x52, 0x68, 0x71, 0x85, 0xe3, 0xad, 0x0e, 0xd5, 0x3a, 0xc4, 0x63, 0x81, 0x11, 0x69, 0x85, 0x09, - 0xd1, 0x62, 0xaf, 0xc1, 0x02, 0x23, 0x76, 0x57, 0x6e, 0x60, 0x55, 0xb5, 0xd6, 0xf1, 0xf6, 0x86, - 0xf9, 0x20, 0x16, 0x07, 0x69, 0x6a, 0x9e, 0x92, 0xce, 0x98, 0x10, 0xc5, 0xfb, 0x1a, 0xd6, 0x69, - 0x6a, 0x9e, 0xb2, 0xbb, 0x90, 0x7d, 0x6e, 0x8f, 0x49, 0x7d, 0x4c, 0x4a, 0x93, 0x83, 0xf4, 0x94, - 0x9a, 0x87, 0x68, 0x9a, 0xf7, 0xbe, 0x6b, 0x91, 0x26, 0x99, 0x8c, 0xe5, 0x8e, 0xef, 0x5a, 0x4f, - 0x69, 0x2c, 0x09, 0x89, 0xdb, 0xb9, 0x39, 0x3f, 0x45, 0x69, 0xa4, 0x89, 0x8d, 0xd7, 0x9c, 0x9f, - 0x76, 0x2c, 0x14, 0xec, 0x9e, 0xf5, 0x9c, 0xf4, 0xc7, 0x0c, 0xc7, 0x4f, 0x34, 0x70, 0x42, 0xdb, - 0xb5, 0xc7, 0x91, 0xf3, 0xdc, 0x89, 0xce, 0x48, 0x43, 0xcc, 0x70, 0x15, 0xb4, 0x55, 0x80, 0x9c, - 0x7d, 0x3a, 0x0b, 0xf4, 0x5d, 0x28, 0xca, 0x52, 0x96, 0xac, 0xa4, 0xeb, 0x50, 0x72, 0x42, 0x63, - 0xec, 0x7b, 0x61, 0x24, 0xf5, 0xa2, 0xa2, 0x13, 0xb6, 0x30, 0x89, 0xe2, 0xd2, 0x32, 0x23, 0xb1, - 0xc1, 0x54, 0x39, 0x7d, 0xeb, 0x0f, 0x01, 0x16, 0xcd, 0xc2, 0x3a, 0xb9, 0xb6, 0x17, 0xab, 0x60, - 0xae, 0xed, 0x25, 0x3c, 0xab, 0x0a, 0xcf, 0x75, 0x28, 0x27, 0xba, 0x2d, 0xab, 0x42, 0xc6, 0x94, - 0x5b, 0x5b, 0xc6, 0xd4, 0x37, 0x51, 0xd5, 0x8c, 0xb5, 0xd7, 0x34, 0x0e, 0x53, 0xf1, 0x86, 0x97, - 0x19, 0xe9, 0x3f, 0x84, 0x2a, 0xb7, 0xc3, 0xb9, 0x1b, 0xb5, 0x7c, 0x77, 0xdb, 0x9e, 0xb0, 0xb7, - 0x01, 0x92, 0x74, 0x28, 0x35, 0x90, 0xc5, 0xdc, 0xdd, 0xb6, 0x27, 0x5c, 0xc1, 0xeb, 0xff, 0x30, - 0x47, 0xba, 0xdc, 0xb6, 0x50, 0xa2, 0xa4, 0xb6, 0x94, 0x51, 0xb4, 0xa5, 0x64, 0x6f, 0x58, 0x4d, - 0x6b, 0x8c, 0x47, 0x8e, 0x65, 0xd9, 0x5e, 0xac, 0x19, 0x8a, 0x14, 0x0e, 0xb6, 0xe9, 0x1e, 0xd2, - 0x82, 0xaa, 0x3f, 0x64, 0x71, 0xa1, 0xd3, 0x59, 0x60, 0x87, 0xa1, 0xd0, 0x49, 0x4c, 0xf7, 0x30, - 0x5e, 0xdb, 0xf9, 0x6f, 0x5a, 0xdb, 0xd7, 0xa1, 0xe4, 0xf9, 0x91, 0x41, 0x76, 0x5b, 0x41, 0xf4, - 0xbe, 0x34, 0x50, 0xd9, 0x1b, 0x50, 0x94, 0x1a, 0xb7, 0x5c, 0x54, 0x72, 0xba, 0x6c, 0x0b, 0x20, - 0x8f, 0xb1, 0xac, 0x81, 0x0a, 0xdc, 0x74, 0x6a, 0x7b, 0x51, 0xbc, 0x07, 0xcb, 0x24, 0x7b, 0x0b, - 0xca, 0xbe, 0x67, 0x08, 0xb5, 0x5c, 0xae, 0x2a, 0x39, 0x7d, 0xfb, 0xde, 0x01, 0x41, 0x79, 0xc9, - 0x97, 0x5f, 0x58, 0x15, 0xd7, 0x3f, 0x31, 0xc6, 0x66, 0x60, 0xd1, 0xca, 0x2a, 0xf1, 0xa2, 0xeb, - 0x9f, 0xb4, 0xcc, 0xc0, 0x12, 0x3a, 0xc9, 0x57, 0xde, 0x7c, 0x4a, 0xab, 0xa9, 0xc6, 0x65, 0x8a, - 0xdd, 0x84, 0xf2, 0xd8, 0x9d, 0x87, 0x91, 0x1d, 0x6c, 0x9d, 0x09, 0x43, 0x8b, 0x2f, 0x00, 0x58, - 0xaf, 0x59, 0xe0, 0x4c, 0xcd, 0xe0, 0x8c, 0x96, 0x4e, 0x89, 0xc7, 0x49, 0xda, 0x68, 0x8e, 0x1d, - 0xeb, 0x54, 0x58, 0x5b, 0x5c, 0x24, 0x90, 0xfe, 0x88, 0x6c, 0xe1, 0x90, 0xd6, 0x47, 0x89, 0xc7, - 0x49, 0x1a, 0x07, 0xfa, 0xa4, 0x15, 0x51, 0xe6, 0x32, 0x95, 0x52, 0xa8, 0xd7, 0x5f, 0xa8, 0x50, - 0xb3, 0xf3, 0x3a, 0x8d, 0x1f, 0x38, 0x87, 0x8e, 0xd4, 0x48, 0x2e, 0x09, 0x9d, 0x46, 0x80, 0x68, - 0xa3, 0xfa, 0x0a, 0x8a, 0xb2, 0x8b, 0x71, 0x07, 0xc2, 0xe5, 0x93, 0x16, 0xcf, 0x62, 0x07, 0x42, - 0x38, 0x7b, 0x0d, 0x6a, 0x32, 0xaf, 0x30, 0x0a, 0x1c, 0xef, 0x50, 0x4e, 0x9e, 0xaa, 0x00, 0x0e, - 0x08, 0x86, 0x8a, 0x02, 0x0e, 0xaf, 0x61, 0x8e, 0x1c, 0x17, 0x97, 0x69, 0x56, 0xfa, 0x21, 0xe6, - 0xae, 0xdb, 0x14, 0x20, 0xbd, 0x0f, 0xa5, 0x78, 0x40, 0x7e, 0x2d, 0x65, 0xea, 0xbf, 0x9b, 0x81, - 0x0a, 0xa9, 0x07, 0x7d, 0x52, 0x7e, 0xd8, 0xdb, 0xc0, 0xc6, 0x81, 0x6d, 0x46, 0xb6, 0x61, 0x9f, - 0x46, 0x81, 0x29, 0x95, 0x00, 0xa1, 0x49, 0x68, 0x02, 0xd3, 0x46, 0x84, 0xd0, 0x03, 0x6e, 0x43, - 0x65, 0x66, 0x06, 0x61, 0xac, 0x30, 0x8a, 0x02, 0x40, 0x80, 0xa4, 0xba, 0xa6, 0x79, 0x87, 0x81, - 0x39, 0x35, 0x22, 0xff, 0xd8, 0xf6, 0x84, 0xaa, 0x2c, 0x8c, 0x84, 0x3a, 0xc1, 0x87, 0x08, 0x26, - 0x8d, 0xf9, 0x3f, 0x66, 0xa0, 0xb6, 0x2f, 0x46, 0xfd, 0x89, 0x7d, 0xb6, 0x2d, 0x2c, 0xb3, 0x71, - 0xbc, 0x62, 0x73, 0x9c, 0xbe, 0xd9, 0x2d, 0xa8, 0xcc, 0x8e, 0xed, 0x33, 0x23, 0x65, 0xc5, 0x94, - 0x11, 0xd4, 0xa2, 0xb5, 0xf9, 0x26, 0x14, 0x7c, 0x6a, 0x88, 0xdc, 0xe3, 0xe4, 0xd6, 0xa0, 0xb4, - 0x90, 0x4b, 0x02, 0x54, 0x97, 0x92, 0xac, 0x54, 0xbd, 0x4c, 0x66, 0x46, 0xd5, 0xbf, 0x0c, 0x79, - 0x44, 0x85, 0x8d, 0xbc, 0xd0, 0x73, 0x28, 0xc1, 0xde, 0x83, 0xda, 0xd8, 0x9f, 0xce, 0x8c, 0x98, - 0x5d, 0xee, 0x76, 0x69, 0x99, 0x52, 0x41, 0x92, 0x7d, 0x91, 0x97, 0xfe, 0x07, 0x59, 0x28, 0x51, - 0x1d, 0xa4, 0x58, 0x71, 0xac, 0xd3, 0x58, 0xac, 0x94, 0x79, 0xde, 0xb1, 0x50, 0x6a, 0xbf, 0x44, - 0x35, 0x4b, 0x54, 0xae, 0xac, 0xaa, 0x72, 0x5d, 0x85, 0x82, 0xd4, 0xb7, 0x72, 0x42, 0xee, 0xcc, - 0x5f, 0xac, 0x6d, 0xe5, 0x2f, 0xd2, 0xb6, 0x70, 0x08, 0x05, 0x8d, 0x7d, 0x8a, 0xfb, 0x9b, 0x10, - 0x2d, 0x40, 0xa0, 0x36, 0x42, 0x54, 0xa1, 0x51, 0x4c, 0x0b, 0x8d, 0x06, 0x14, 0x9f, 0x3b, 0xa1, - 0x83, 0x13, 0xa4, 0x24, 0x96, 0xa1, 0x4c, 0x2a, 0xc3, 0x50, 0x7e, 0xd9, 0x30, 0x24, 0xcd, 0x36, - 0xdd, 0x43, 0xa1, 0xd2, 0xc7, 0xcd, 0x6e, 0xba, 0x87, 0x3e, 0x7b, 0x1f, 0xae, 0x2c, 0xd0, 0xb2, - 0x35, 0xe4, 0xe0, 0x22, 0x1f, 0x0e, 0x67, 0x09, 0x25, 0xb5, 0x88, 0x6c, 0xae, 0xfb, 0xb0, 0xae, - 0xb0, 0xcc, 0x50, 0xbd, 0x09, 0x49, 0xe6, 0x94, 0xf9, 0x5a, 0x42, 0x4e, 0x5a, 0x4f, 0xa8, 0xff, - 0xab, 0x55, 0xa8, 0xed, 0xf8, 0x81, 0xed, 0x1c, 0x7a, 0x8b, 0x59, 0xb7, 0xa4, 0xf9, 0xc7, 0x33, - 0x71, 0x55, 0x99, 0x89, 0xb7, 0xa1, 0x32, 0x11, 0x8c, 0x46, 0x34, 0x12, 0x0e, 0x81, 0x1c, 0x07, - 0x09, 0x1a, 0x8e, 0x5c, 0x5c, 0xcd, 0x31, 0x01, 0x31, 0xe7, 0x88, 0x39, 0x66, 0xc2, 0xbd, 0x86, - 0xfd, 0x80, 0xa4, 0xae, 0x65, 0xbb, 0x76, 0x24, 0x86, 0xa7, 0xfe, 0xf0, 0xd5, 0x78, 0xa7, 0x57, - 0xea, 0xf4, 0x80, 0xdb, 0x93, 0x26, 0xa9, 0x47, 0x28, 0x84, 0xb7, 0x89, 0x5c, 0xf2, 0x4a, 0x89, - 0x5d, 0xf8, 0x96, 0xbc, 0x42, 0x72, 0xe8, 0x43, 0x28, 0x27, 0x60, 0xd4, 0x75, 0x79, 0x5b, 0xea, - 0xb7, 0x2b, 0xac, 0x02, 0xc5, 0x56, 0x73, 0xd0, 0x6a, 0x6e, 0xb7, 0xb5, 0x0c, 0xa2, 0x06, 0xed, - 0xa1, 0xd0, 0x69, 0x57, 0xd9, 0x1a, 0x54, 0x30, 0xb5, 0xdd, 0xde, 0x69, 0x1e, 0x74, 0x87, 0x5a, - 0x96, 0xd5, 0xa0, 0xdc, 0xeb, 0x1b, 0xcd, 0xd6, 0xb0, 0xd3, 0xef, 0x69, 0x39, 0xfd, 0x33, 0x28, - 0xb5, 0x8e, 0xec, 0xf1, 0xf1, 0x8b, 0x7a, 0x91, 0x0c, 0x6a, 0x7b, 0x7c, 0x2c, 0xf5, 0xd3, 0x73, - 0x06, 0xb5, 0x3d, 0x3e, 0xd6, 0x9f, 0x42, 0xb5, 0x15, 0x6f, 0x0a, 0x2f, 0xca, 0xe5, 0x21, 0xd4, - 0x69, 0xf1, 0x8d, 0x47, 0xf1, 0xea, 0x5b, 0xbd, 0x60, 0xf5, 0x55, 0x91, 0xa6, 0x35, 0x92, 0xcb, - 0xef, 0x43, 0xa8, 0xec, 0x07, 0xfe, 0xcc, 0x0e, 0x22, 0xca, 0x56, 0x83, 0xec, 0xb1, 0x7d, 0x26, - 0x73, 0xc5, 0xcf, 0x85, 0xcb, 0x61, 0x55, 0x75, 0x39, 0x3c, 0x84, 0x52, 0xcc, 0xf6, 0xad, 0x79, - 0x7e, 0x8c, 0x52, 0x8c, 0x78, 0x1c, 0x3b, 0xc4, 0xc2, 0x1e, 0x00, 0xcc, 0x12, 0x80, 0xd4, 0x3e, - 0x62, 0xcd, 0x5b, 0x66, 0xce, 0x15, 0x0a, 0xfd, 0x55, 0x28, 0x3e, 0x75, 0xec, 0x13, 0xd9, 0xfc, - 0xe7, 0x8e, 0x7d, 0x12, 0x37, 0x1f, 0xbf, 0xf5, 0x7f, 0x5e, 0x82, 0x12, 0x4d, 0xf5, 0xed, 0x17, - 0x7b, 0x79, 0xbe, 0x8b, 0x82, 0xb2, 0x21, 0xa7, 0x76, 0xee, 0x02, 0xb5, 0x48, 0x4c, 0xf4, 0x57, - 0x01, 0x94, 0x65, 0x27, 0x84, 0x48, 0x39, 0x4a, 0x56, 0x1b, 0xee, 0xec, 0xb4, 0x2d, 0x84, 0x5f, - 0xb9, 0xd2, 0xa0, 0x5b, 0x00, 0xd8, 0x03, 0xb1, 0xef, 0x92, 0x09, 0x27, 0x74, 0x93, 0x4b, 0xb1, - 0x7e, 0x3d, 0x72, 0xed, 0x58, 0xeb, 0xa7, 0xcd, 0x18, 0x13, 0x24, 0x52, 0xec, 0x20, 0x44, 0xc9, - 0x41, 0xce, 0x5e, 0x1e, 0x27, 0xd9, 0x1b, 0x90, 0x43, 0x79, 0x2b, 0xb5, 0xf4, 0x4b, 0x71, 0x0f, - 0x2a, 0x1b, 0x06, 0x27, 0x02, 0xb6, 0x09, 0x45, 0x5a, 0xe5, 0x36, 0x2e, 0x7a, 0xa5, 0xb7, 0x63, - 0xf9, 0xcb, 0x63, 0x34, 0x7b, 0x13, 0xf2, 0x93, 0x63, 0xfb, 0x2c, 0x6c, 0xd4, 0x88, 0xee, 0xd2, - 0x05, 0xcb, 0x87, 0x0b, 0x0a, 0x76, 0x17, 0xea, 0x81, 0x3d, 0x31, 0xc8, 0xef, 0x83, 0xeb, 0x3d, - 0x6c, 0xd4, 0x69, 0x39, 0x57, 0x03, 0x7b, 0xd2, 0x42, 0xe0, 0x70, 0xe4, 0x86, 0xec, 0x1e, 0x14, - 0x68, 0x22, 0xa3, 0x5a, 0xa2, 0x94, 0x1c, 0xaf, 0x0a, 0x2e, 0xb1, 0xec, 0x7d, 0x00, 0xa9, 0xfc, - 0x18, 0xa3, 0x33, 0xf2, 0x8a, 0x56, 0x12, 0xe5, 0x50, 0x99, 0xff, 0xaa, 0x8a, 0xf4, 0x06, 0xe4, - 0x71, 0x92, 0x84, 0x8d, 0x6b, 0x94, 0xf3, 0x7a, 0x7a, 0x06, 0x51, 0x4d, 0x09, 0xcf, 0x36, 0xa1, - 0x84, 0x13, 0xc5, 0xc0, 0xe1, 0x68, 0xa8, 0xda, 0xa0, 0x9c, 0x55, 0x28, 0xa4, 0xed, 0x93, 0xc1, - 0x57, 0x2e, 0xbb, 0x0f, 0x39, 0xcb, 0x9e, 0x84, 0x8d, 0xeb, 0x94, 0xe3, 0x55, 0x65, 0x5c, 0x50, - 0x6e, 0x6c, 0xdb, 0x13, 0x52, 0x50, 0x89, 0x86, 0xed, 0x42, 0x1d, 0xa7, 0xd1, 0x43, 0xda, 0x77, - 0xb1, 0xfb, 0x1a, 0x37, 0x88, 0xeb, 0xce, 0x39, 0xae, 0x9e, 0x24, 0xa2, 0xce, 0x6e, 0x7b, 0x51, - 0x70, 0xc6, 0x6b, 0x9e, 0x0a, 0x63, 0x37, 0xd0, 0x8a, 0xe8, 0xfa, 0xe3, 0x63, 0xdb, 0x6a, 0xbc, - 0x12, 0xfb, 0x08, 0x44, 0x9a, 0x7d, 0x0a, 0x35, 0x9a, 0x58, 0x98, 0xc4, 0xc2, 0x1b, 0x37, 0x49, - 0xae, 0xa9, 0x53, 0x26, 0x46, 0xf1, 0x34, 0x25, 0x4a, 0x5b, 0x27, 0x34, 0x22, 0x7b, 0x3a, 0xf3, - 0x03, 0xd4, 0x23, 0x5f, 0x8d, 0x7d, 0x1f, 0xc3, 0x18, 0x84, 0x7b, 0x62, 0x72, 0x86, 0x63, 0xf8, - 0x93, 0x49, 0x68, 0x47, 0x8d, 0x5b, 0xb4, 0x6e, 0xea, 0xf1, 0x51, 0x4e, 0x9f, 0xa0, 0xb4, 0x27, - 0x85, 0x86, 0x75, 0xe6, 0x99, 0x53, 0x67, 0xdc, 0xb8, 0x2d, 0xd4, 0x55, 0x27, 0xdc, 0x16, 0x00, - 0x55, 0x63, 0xdc, 0x48, 0x69, 0x8c, 0x97, 0x20, 0x6f, 0x8d, 0x70, 0x39, 0xde, 0xa1, 0x6c, 0x73, - 0xd6, 0xa8, 0x63, 0xdd, 0x78, 0x4c, 0x5a, 0x22, 0x55, 0xf2, 0xc3, 0x73, 0xb2, 0x20, 0x35, 0x93, - 0x15, 0xa1, 0xb1, 0xbb, 0xa2, 0x8a, 0x84, 0xad, 0x3c, 0x64, 0x2d, 0x7b, 0x72, 0xe3, 0x33, 0x60, - 0xcb, 0xdd, 0xfb, 0x32, 0xc1, 0x94, 0x97, 0x82, 0xe9, 0x07, 0xab, 0x9f, 0x64, 0xf4, 0x4f, 0xa1, - 0x96, 0x5a, 0x77, 0x17, 0x0a, 0x58, 0xa1, 0x68, 0x98, 0x53, 0x69, 0x98, 0x89, 0x84, 0xfe, 0x6f, - 0xb2, 0x50, 0xdd, 0x35, 0xc3, 0xa3, 0x3d, 0x73, 0x36, 0x88, 0xcc, 0x28, 0xc4, 0x0e, 0x3f, 0x32, - 0xc3, 0xa3, 0xa9, 0x39, 0x13, 0x5a, 0x5d, 0x46, 0xd8, 0x94, 0x12, 0x86, 0x2a, 0x1d, 0x0e, 0x35, - 0x26, 0xfb, 0xde, 0xfe, 0x13, 0x69, 0x30, 0x26, 0x69, 0x5c, 0xe8, 0xe1, 0xd1, 0x7c, 0x32, 0x91, - 0x1e, 0xa6, 0x12, 0x8f, 0x93, 0xec, 0x2e, 0xd4, 0xe4, 0x27, 0xa9, 0x74, 0xa7, 0xf2, 0x54, 0x2d, - 0x0d, 0x64, 0x8f, 0xa0, 0x22, 0x01, 0xc3, 0x58, 0x2c, 0xd5, 0x13, 0x47, 0xc0, 0x02, 0xc1, 0x55, - 0x2a, 0xf6, 0x53, 0xb8, 0xa2, 0x24, 0x77, 0xfc, 0x60, 0x6f, 0xee, 0x46, 0x4e, 0xab, 0x27, 0xf7, - 0xcf, 0x57, 0x96, 0xd8, 0x17, 0x24, 0xfc, 0x62, 0xce, 0x74, 0x6d, 0xf7, 0x1c, 0x8f, 0xa4, 0x5c, - 0x96, 0xa7, 0x81, 0xe7, 0xa8, 0xcc, 0x53, 0x12, 0x6e, 0x69, 0x2a, 0xf3, 0x14, 0xa7, 0xbf, 0x04, - 0xec, 0xd9, 0xd1, 0x91, 0x6f, 0x91, 0xf2, 0x94, 0x4c, 0xff, 0x81, 0x8a, 0xe2, 0x69, 0x4a, 0xec, - 0x4e, 0x34, 0x13, 0xc6, 0x5e, 0x44, 0x2a, 0x54, 0x96, 0xc7, 0x49, 0x14, 0xfc, 0x81, 0xe9, 0x1d, - 0xda, 0x61, 0xa3, 0xb2, 0x91, 0xdd, 0xcc, 0x70, 0x99, 0xd2, 0xff, 0xc1, 0x2a, 0xe4, 0xc5, 0x48, - 0xbe, 0x02, 0xe5, 0x91, 0xeb, 0x8f, 0x8f, 0x0d, 0x34, 0xdb, 0xa4, 0x77, 0x94, 0x00, 0xbd, 0xf9, - 0x54, 0xa8, 0x3e, 0xd2, 0xe0, 0xcf, 0x70, 0xfa, 0xc6, 0x2c, 0xfd, 0x79, 0x84, 0x65, 0x65, 0x09, - 0x2a, 0x53, 0x58, 0x89, 0xc0, 0x3f, 0xa1, 0xd9, 0x90, 0x23, 0x44, 0x9c, 0x24, 0x07, 0x2c, 0xed, - 0x21, 0xc8, 0x94, 0x27, 0x5c, 0x89, 0x00, 0x2d, 0x2f, 0x3a, 0xef, 0x9c, 0x28, 0x2c, 0x39, 0x27, - 0xd8, 0x2d, 0x40, 0xc5, 0x6a, 0x6c, 0xf7, 0x3d, 0xbb, 0xd5, 0xa3, 0x1e, 0x2e, 0x71, 0x05, 0x82, - 0x6b, 0xc0, 0xf2, 0x67, 0xd4, 0xa9, 0x79, 0x8e, 0x9f, 0xec, 0xa3, 0x64, 0x76, 0x52, 0x1b, 0xa5, - 0x1a, 0x2a, 0x65, 0xac, 0x3a, 0x8f, 0x79, 0x8a, 0x0e, 0x73, 0x42, 0xc1, 0x29, 0xd4, 0x50, 0xfc, - 0xd4, 0xdb, 0x00, 0xdc, 0x3f, 0x09, 0xed, 0x88, 0xbc, 0x70, 0xd7, 0xa8, 0x89, 0xa9, 0xb3, 0x11, - 0xff, 0x64, 0xdf, 0x0f, 0x13, 0x63, 0x6c, 0xf5, 0x62, 0x63, 0x4c, 0x7f, 0x17, 0x8a, 0xb8, 0xab, - 0x9a, 0x91, 0xc9, 0xee, 0x4a, 0xc7, 0x87, 0xd0, 0x05, 0xa4, 0x07, 0x68, 0x51, 0x86, 0x74, 0x85, - 0x74, 0xe3, 0x72, 0x89, 0xe7, 0x8e, 0x62, 0x0b, 0x25, 0x12, 0x5d, 0x66, 0x28, 0xf7, 0xe9, 0x57, - 0xa0, 0x8c, 0x55, 0x23, 0xa7, 0xb2, 0x5c, 0xfa, 0xa5, 0xc0, 0x3f, 0x69, 0x61, 0x5a, 0xff, 0x4f, - 0x19, 0xa8, 0xf4, 0x03, 0x0b, 0xb7, 0x92, 0xc1, 0xcc, 0x1e, 0xbf, 0xd4, 0x76, 0xc4, 0x5d, 0xdd, - 0x77, 0x5d, 0x93, 0x74, 0x78, 0x69, 0x8b, 0x24, 0x00, 0xf6, 0x3e, 0xe4, 0x26, 0xae, 0x79, 0x48, - 0xc3, 0x9f, 0xa8, 0x9d, 0x4a, 0xf6, 0xf1, 0xf7, 0x8e, 0x6b, 0x1e, 0x72, 0x22, 0xd5, 0x7f, 0x2b, - 0x29, 0x9f, 0x9c, 0xb0, 0xaa, 0xeb, 0x75, 0x85, 0x0e, 0x38, 0x06, 0x2d, 0x2d, 0xc3, 0x4a, 0x90, - 0xdb, 0x6e, 0x0f, 0x5a, 0x42, 0xd9, 0x44, 0xb5, 0x73, 0x60, 0xec, 0x74, 0xf8, 0x60, 0xa8, 0xe5, - 0xe8, 0xc4, 0x84, 0x00, 0xdd, 0xe6, 0x60, 0xa8, 0x95, 0x18, 0x40, 0xe1, 0xa0, 0xd7, 0xf9, 0xe9, - 0x41, 0x5b, 0xd3, 0xf4, 0x7f, 0x97, 0x01, 0x58, 0x78, 0x08, 0xd9, 0x5b, 0x50, 0x39, 0xa1, 0x94, - 0xa1, 0xb8, 0x8e, 0xd5, 0x36, 0x82, 0x40, 0x93, 0xc6, 0xf1, 0x0e, 0x54, 0xd1, 0x94, 0x72, 0xe8, - 0xe8, 0x61, 0x74, 0x76, 0x81, 0x0f, 0xb9, 0x92, 0xe0, 0xb7, 0xce, 0xd8, 0xdb, 0x50, 0xf2, 0xb1, - 0x1d, 0x48, 0x9a, 0x55, 0xb7, 0x62, 0xa5, 0xf9, 0xbc, 0xe8, 0x8b, 0x04, 0xee, 0xda, 0x93, 0x20, - 0xb6, 0x2d, 0x13, 0xd2, 0x1d, 0x04, 0xb5, 0x5c, 0x73, 0x1e, 0xda, 0x5c, 0xe0, 0x13, 0x41, 0x9c, - 0x5f, 0x08, 0x62, 0xfd, 0x67, 0x50, 0x1f, 0x98, 0xd3, 0x99, 0x10, 0xd7, 0xd4, 0x30, 0x06, 0x39, - 0x9c, 0x13, 0x72, 0xea, 0xd1, 0x37, 0x2e, 0xba, 0x7d, 0x3b, 0x18, 0xdb, 0x5e, 0xbc, 0x46, 0xe3, - 0x24, 0x8a, 0xdf, 0x83, 0xd0, 0xf1, 0x0e, 0xb9, 0x7f, 0x12, 0x87, 0x2c, 0xc4, 0x69, 0xfd, 0x1f, - 0x65, 0xa0, 0xa2, 0x54, 0x83, 0xbd, 0x0b, 0x39, 0x52, 0xef, 0x32, 0xaa, 0x20, 0x54, 0x08, 0xc4, - 0xb7, 0x50, 0x08, 0x90, 0x90, 0xdd, 0x83, 0x7c, 0x18, 0x99, 0x41, 0xec, 0x6c, 0xd6, 0x14, 0x8e, - 0x2d, 0x7f, 0xee, 0x59, 0x5c, 0xa0, 0x99, 0x0e, 0x59, 0xdb, 0xb3, 0xa4, 0x35, 0xbe, 0x4c, 0x85, - 0x48, 0x7d, 0x03, 0xca, 0x49, 0xf6, 0x38, 0x05, 0x78, 0xff, 0xd9, 0x40, 0x5b, 0x61, 0x65, 0xc8, - 0xf3, 0x66, 0xef, 0x71, 0x5b, 0xcb, 0xe8, 0x7f, 0x92, 0x01, 0x58, 0x70, 0xb1, 0x07, 0xa9, 0xda, - 0xde, 0x38, 0x9f, 0xeb, 0x03, 0xfa, 0xab, 0x54, 0xf6, 0x26, 0x94, 0xe7, 0x1e, 0x01, 0x6d, 0x4b, - 0xee, 0x44, 0x0b, 0x00, 0xbb, 0x09, 0xd9, 0x38, 0xb8, 0xe1, 0xdc, 0x81, 0xf2, 0x73, 0xd3, 0xd5, - 0x7f, 0x00, 0xe5, 0x24, 0x3b, 0xb4, 0x78, 0x76, 0xfa, 0xdd, 0x6e, 0xff, 0x59, 0xa7, 0xf7, 0x58, - 0x5b, 0xc1, 0xe4, 0x3e, 0x6f, 0xb7, 0xda, 0xdb, 0x98, 0xcc, 0xe0, 0x9c, 0x6d, 0x1d, 0x70, 0xde, - 0xee, 0x0d, 0x0d, 0xde, 0x7f, 0xa6, 0xad, 0xea, 0xbf, 0x93, 0x83, 0xf5, 0xbe, 0xb7, 0x3d, 0x9f, - 0xb9, 0xce, 0xd8, 0x8c, 0xec, 0x27, 0xf6, 0x59, 0x2b, 0x3a, 0xc5, 0x0d, 0xd6, 0x8c, 0xa2, 0x40, - 0x2c, 0xe6, 0x32, 0x17, 0x09, 0x61, 0xb1, 0x87, 0x76, 0x10, 0x91, 0x43, 0x42, 0x5d, 0xc5, 0x75, - 0x01, 0x6f, 0xf9, 0x2e, 0xad, 0x65, 0xf6, 0x23, 0xb8, 0x22, 0xac, 0x7c, 0x41, 0x89, 0x2a, 0xa5, - 0x41, 0x8b, 0x39, 0xbb, 0x34, 0x75, 0x99, 0x20, 0x44, 0x56, 0x24, 0x23, 0x11, 0x76, 0x1b, 0x2a, - 0x0b, 0xf6, 0xf8, 0x04, 0x07, 0x12, 0x42, 0xaa, 0x09, 0x5a, 0xa5, 0x71, 0xad, 0x0d, 0xc7, 0x3a, - 0x25, 0xff, 0x47, 0x9e, 0xd7, 0xfd, 0x45, 0x63, 0x70, 0x13, 0xfe, 0x1c, 0xd6, 0x53, 0x94, 0x54, - 0x8b, 0x02, 0xd5, 0xe2, 0xed, 0xd8, 0x7b, 0x78, 0xae, 0xf5, 0x2a, 0x04, 0xab, 0x23, 0x74, 0xc4, - 0x35, 0x3f, 0x0d, 0x95, 0x47, 0x49, 0xce, 0xa1, 0xe7, 0x07, 0xb6, 0x14, 0xf8, 0x25, 0x27, 0xec, - 0x50, 0x7a, 0x61, 0x91, 0x28, 0xa7, 0x89, 0x62, 0x7f, 0x89, 0x0f, 0xd3, 0x04, 0xda, 0x11, 0x3b, - 0x68, 0x8e, 0x17, 0x29, 0xdd, 0xb1, 0xd8, 0x6b, 0x52, 0xc1, 0x34, 0x62, 0x23, 0x03, 0xc8, 0xc8, - 0xa8, 0x12, 0xf0, 0xa9, 0x80, 0xdd, 0xe8, 0xc1, 0xe5, 0x8b, 0x2a, 0x79, 0x81, 0xa6, 0xb5, 0xa1, - 0x6a, 0x5a, 0xe7, 0x2c, 0xda, 0x85, 0xd6, 0xf5, 0x8f, 0x33, 0x50, 0xdd, 0xb6, 0xad, 0xf9, 0xec, - 0x27, 0xbe, 0xe3, 0xe1, 0x04, 0xf8, 0x00, 0xaa, 0xbe, 0x6b, 0xd1, 0xe8, 0x29, 0x87, 0xe2, 0xa9, - 0xe3, 0x14, 0xe9, 0xf9, 0x05, 0xdf, 0xb5, 0x5a, 0xbe, 0x4b, 0x47, 0xe8, 0xef, 0xc0, 0x25, 0x61, - 0xed, 0x4b, 0xe7, 0xd7, 0xa9, 0x60, 0x5e, 0xa5, 0x91, 0xd1, 0x04, 0x4a, 0x28, 0x47, 0x44, 0xfe, - 0x1b, 0x70, 0x59, 0x21, 0xc7, 0x91, 0x11, 0xf4, 0xcb, 0x93, 0x64, 0x3d, 0xe1, 0x8d, 0xcf, 0x33, - 0xf4, 0x7f, 0x9d, 0x81, 0xb2, 0xf0, 0x15, 0x60, 0x7d, 0x37, 0xa1, 0xe8, 0x8f, 0xbe, 0x34, 0x02, - 0x7b, 0xf2, 0xa2, 0x63, 0xb8, 0x82, 0x3f, 0xfa, 0x92, 0xdb, 0x13, 0xf6, 0x56, 0xbc, 0xcf, 0x5b, - 0xf6, 0x44, 0x76, 0x4a, 0x3d, 0x6d, 0x21, 0xc8, 0x7d, 0x1f, 0xad, 0xd7, 0x47, 0x50, 0x59, 0xcc, - 0xf8, 0xb0, 0x51, 0x7c, 0x71, 0x2f, 0x24, 0x0b, 0x20, 0x44, 0x26, 0xe1, 0x2f, 0x11, 0x4c, 0xa5, - 0x17, 0x33, 0x09, 0x32, 0xf2, 0xe9, 0xff, 0x93, 0x0c, 0x94, 0x3b, 0x22, 0x8f, 0xe8, 0x94, 0xdd, - 0x81, 0xec, 0x37, 0x34, 0x05, 0x71, 0xec, 0x3e, 0xac, 0x9b, 0x96, 0x65, 0x98, 0x93, 0x89, 0x3d, - 0x8e, 0x6c, 0xcb, 0x40, 0x3d, 0x46, 0x0a, 0x8e, 0x35, 0xd3, 0xb2, 0x9a, 0x12, 0x4e, 0x02, 0x18, - 0x17, 0x6e, 0x68, 0xc4, 0xf6, 0xdc, 0xe2, 0xd0, 0xb4, 0xc4, 0xeb, 0x4e, 0x28, 0xcd, 0x39, 0xe1, - 0x2d, 0x4d, 0xf5, 0x4e, 0xee, 0x9b, 0x7b, 0x47, 0xff, 0xdb, 0xab, 0x00, 0xdc, 0x9e, 0xb9, 0xe6, - 0xd8, 0xfe, 0xbf, 0xa6, 0xd2, 0x28, 0x5b, 0x92, 0xd1, 0xf1, 0xac, 0x38, 0x80, 0x20, 0x1e, 0x09, - 0xcf, 0x62, 0x9f, 0xc1, 0xab, 0x81, 0x7d, 0x12, 0x38, 0x91, 0x6d, 0x4c, 0x02, 0x7f, 0x6a, 0xa4, - 0xc4, 0x07, 0xae, 0xae, 0x32, 0x55, 0xe2, 0xba, 0x24, 0xda, 0x09, 0xfc, 0x69, 0x5a, 0x84, 0xe8, - 0xff, 0xbd, 0x04, 0x95, 0xa6, 0x67, 0xba, 0x67, 0x5f, 0xdb, 0x74, 0xea, 0x4d, 0xfe, 0xc3, 0xd9, - 0x3c, 0x12, 0xcd, 0x15, 0x47, 0x42, 0x65, 0x82, 0x50, 0x43, 0x6f, 0x43, 0xc5, 0x9f, 0x47, 0x09, - 0x5e, 0x1c, 0x12, 0x81, 0x00, 0x11, 0x41, 0xc2, 0x9f, 0xf8, 0xa6, 0x63, 0x7e, 0xb2, 0x61, 0x16, - 0xfc, 0x89, 0x5e, 0x9b, 0xf0, 0x13, 0x01, 0x8a, 0x14, 0x67, 0x4a, 0x0d, 0x0e, 0xe7, 0x53, 0x5b, - 0x34, 0x3a, 0x2b, 0x62, 0xa8, 0x5a, 0x12, 0x86, 0xb9, 0x4c, 0xed, 0xa9, 0x1f, 0x9c, 0x89, 0x5c, - 0x0a, 0x22, 0x17, 0x01, 0xa2, 0x5c, 0xde, 0x06, 0x76, 0x62, 0x3a, 0x91, 0x91, 0xce, 0x4a, 0xd8, - 0x12, 0x1a, 0x62, 0x86, 0x6a, 0x76, 0x57, 0xa1, 0x60, 0x39, 0xe1, 0x71, 0xa7, 0x2f, 0xed, 0x08, - 0x99, 0xc2, 0xb6, 0x84, 0x63, 0x13, 0xd5, 0x98, 0xc8, 0x16, 0x3a, 0x6f, 0x96, 0x97, 0x11, 0xb2, - 0x85, 0x00, 0xdc, 0x06, 0x3d, 0x3b, 0x3a, 0xf1, 0x03, 0xe4, 0x14, 0x66, 0xc2, 0x02, 0x80, 0xea, - 0x02, 0x92, 0x62, 0x41, 0xe4, 0x64, 0xc9, 0xf2, 0x24, 0x8d, 0x0a, 0xb8, 0x58, 0x83, 0x84, 0xad, - 0x8a, 0xea, 0x2f, 0x20, 0xec, 0x2e, 0xd4, 0xa9, 0xfa, 0x64, 0x46, 0x60, 0x1b, 0xe8, 0x1c, 0x27, - 0xcb, 0xab, 0x08, 0x25, 0x1b, 0x1d, 0xa9, 0x3e, 0x85, 0xeb, 0xa9, 0xf6, 0x19, 0x66, 0x10, 0x98, - 0x67, 0xc6, 0xd4, 0xfc, 0xd2, 0x0f, 0xc8, 0x9f, 0x92, 0xe5, 0x57, 0xd5, 0x6e, 0x6b, 0x22, 0x7a, - 0x0f, 0xb1, 0x2f, 0x64, 0x75, 0x3c, 0x3f, 0x20, 0x67, 0xcb, 0x85, 0xac, 0x88, 0x25, 0xcf, 0x00, - 0x0d, 0x30, 0xd9, 0x34, 0xa1, 0x88, 0xbd, 0xe3, 0x15, 0x82, 0x6d, 0x11, 0x08, 0xb5, 0xfa, 0xf0, - 0x91, 0x10, 0x8f, 0xeb, 0x32, 0x44, 0xe6, 0x11, 0x09, 0x51, 0x81, 0x38, 0xb2, 0x4d, 0x8b, 0xce, - 0x86, 0x08, 0xb1, 0x6b, 0x9b, 0x74, 0xf2, 0x1a, 0x3e, 0x32, 0x66, 0xf3, 0x48, 0x04, 0xcd, 0xf1, - 0x7c, 0xf8, 0x68, 0x7f, 0x1e, 0x49, 0xf0, 0xa1, 0x1d, 0x51, 0xa8, 0x1c, 0x81, 0x1f, 0xdb, 0x11, - 0xee, 0x66, 0xe1, 0xa3, 0xd8, 0xcf, 0x7b, 0x45, 0xf6, 0xed, 0x23, 0xe9, 0xc8, 0xd5, 0xa1, 0x96, - 0x20, 0x8d, 0xe9, 0x5c, 0x44, 0xc9, 0x65, 0x79, 0x25, 0x26, 0xd8, 0x9b, 0xbb, 0x38, 0xb0, 0x63, - 0x73, 0x7c, 0x64, 0x1b, 0x01, 0x56, 0xe5, 0x9a, 0x18, 0x3a, 0x82, 0x70, 0xac, 0xcd, 0x2b, 0x20, - 0x12, 0xc6, 0x91, 0x13, 0x91, 0xd3, 0x27, 0xcb, 0x4b, 0x04, 0xd8, 0x75, 0x22, 0x14, 0x0b, 0x02, - 0x29, 0x67, 0x20, 0x65, 0x71, 0x9d, 0x88, 0xd6, 0x08, 0xb1, 0x47, 0x70, 0xca, 0x68, 0x13, 0xb4, - 0x14, 0x2d, 0xe6, 0x77, 0x83, 0x48, 0xeb, 0x0a, 0x29, 0xe6, 0x7a, 0x0f, 0x04, 0xb3, 0x81, 0x53, - 0x4f, 0xe4, 0xf9, 0x8a, 0xb0, 0x69, 0x09, 0xbc, 0xed, 0x84, 0xc7, 0x94, 0xe3, 0x5d, 0xa8, 0x2b, - 0x74, 0x98, 0xdf, 0x4d, 0x31, 0x33, 0x12, 0xb2, 0x54, 0x1d, 0x03, 0x7b, 0xea, 0x47, 0xb2, 0x99, - 0xaf, 0x2a, 0x75, 0xe4, 0x04, 0x4f, 0xd7, 0x51, 0xd2, 0x62, 0x9e, 0xb7, 0x94, 0x3a, 0x0a, 0x52, - 0xcc, 0xf5, 0x0e, 0x54, 0x51, 0x8a, 0x44, 0xb6, 0x27, 0x16, 0xff, 0x6d, 0xd1, 0xb1, 0x12, 0x46, - 0xab, 0xff, 0x0e, 0x54, 0x45, 0xcf, 0x4b, 0x71, 0xb9, 0x21, 0x48, 0x24, 0x0c, 0x49, 0xf4, 0x9f, - 0x67, 0xe0, 0x46, 0x9f, 0x8e, 0xcc, 0x48, 0xe0, 0xed, 0xd9, 0x61, 0x68, 0x1e, 0xda, 0x3b, 0x7e, - 0xb0, 0x33, 0xff, 0xfa, 0xeb, 0x33, 0xb6, 0x09, 0x6b, 0xfb, 0x66, 0x60, 0x7b, 0x51, 0x72, 0xa4, - 0x22, 0x35, 0x84, 0xf3, 0x60, 0xf6, 0x09, 0x68, 0x02, 0x74, 0x90, 0xe8, 0x5a, 0xd2, 0xda, 0x48, - 0xbb, 0x5d, 0x97, 0xa8, 0xf4, 0xbf, 0xde, 0x80, 0x5c, 0xcf, 0xb7, 0x6c, 0xf6, 0x1e, 0x94, 0x29, - 0x78, 0x4d, 0xd1, 0x7e, 0xa5, 0x77, 0x00, 0xd1, 0xf4, 0x87, 0xd4, 0xde, 0x92, 0x27, 0xbf, 0x5e, - 0x1c, 0xee, 0x76, 0x87, 0x14, 0x78, 0x3a, 0x4f, 0x42, 0x99, 0x5e, 0x91, 0x4e, 0x06, 0xb2, 0x89, - 0x05, 0x06, 0x25, 0x02, 0x39, 0x3c, 0x03, 0xdb, 0x23, 0x35, 0x31, 0xcf, 0x93, 0x34, 0x99, 0x4d, - 0x81, 0x8f, 0xfb, 0x8f, 0x58, 0x37, 0xf9, 0x0b, 0xcc, 0x26, 0x81, 0xa7, 0x85, 0xf4, 0x1e, 0x94, - 0xbf, 0xf4, 0x1d, 0x4f, 0x54, 0xbc, 0xb0, 0x54, 0x71, 0xd4, 0x8c, 0x44, 0xc5, 0xbf, 0x94, 0x5f, - 0xec, 0x35, 0x28, 0xfa, 0x9e, 0xc8, 0xbb, 0xb8, 0x94, 0x77, 0xc1, 0xf7, 0xba, 0x22, 0xde, 0xa2, - 0x36, 0x9a, 0x3b, 0xae, 0x85, 0xfb, 0x88, 0x6b, 0x4f, 0x22, 0x79, 0x0e, 0x55, 0x21, 0x60, 0xdf, - 0xeb, 0xda, 0x93, 0x08, 0xad, 0xc1, 0x89, 0xe3, 0xe2, 0x36, 0x47, 0x99, 0x95, 0x97, 0x32, 0x03, - 0x81, 0xa6, 0x0c, 0x5f, 0x87, 0xd2, 0x61, 0xe0, 0xcf, 0x67, 0x68, 0xde, 0xc1, 0x12, 0x65, 0x91, - 0x70, 0x5b, 0x67, 0x28, 0xf4, 0xe9, 0xd3, 0xf1, 0x0e, 0x0d, 0xb2, 0x84, 0x2b, 0x1b, 0xd9, 0xcd, - 0x12, 0xaf, 0xc6, 0x40, 0xb2, 0x71, 0x5f, 0x87, 0x92, 0x79, 0x78, 0x68, 0xc8, 0xb0, 0x91, 0xa5, - 0xbc, 0xcc, 0xc3, 0x43, 0x2a, 0xf2, 0x01, 0xd4, 0x4e, 0x1c, 0xcf, 0x08, 0x67, 0xf6, 0x58, 0xd0, - 0xd6, 0x96, 0xbb, 0xf2, 0xc4, 0xf1, 0xd0, 0x00, 0x24, 0x7a, 0xd5, 0x02, 0xad, 0xbf, 0xd4, 0x02, - 0xdd, 0x80, 0xbc, 0xeb, 0x4c, 0x9d, 0x48, 0x06, 0x92, 0xa4, 0x54, 0x54, 0x42, 0x30, 0x1d, 0x0a, - 0xd2, 0x19, 0xaa, 0x2d, 0x91, 0x48, 0x4c, 0x5a, 0x09, 0x58, 0x7f, 0x89, 0x12, 0xa0, 0xa8, 0x8b, - 0xec, 0x9b, 0xd5, 0xc5, 0x0f, 0xa1, 0x3e, 0xa3, 0xb9, 0x6e, 0xc4, 0x0c, 0x97, 0x2e, 0x66, 0xa8, - 0x0a, 0xb2, 0xbe, 0x60, 0x7b, 0x1f, 0x2a, 0x01, 0xb9, 0x46, 0x0c, 0xf2, 0xa3, 0x5c, 0x56, 0x6d, - 0xcb, 0x85, 0xcf, 0x84, 0x43, 0xb0, 0xf0, 0x9f, 0x34, 0x61, 0x6d, 0x11, 0x18, 0x27, 0xa2, 0x07, - 0xaf, 0xa8, 0xee, 0xd7, 0x54, 0x24, 0x9d, 0xd4, 0x20, 0x6b, 0x4e, 0x2a, 0xbc, 0xee, 0x35, 0xa8, - 0x89, 0x23, 0x71, 0x71, 0x70, 0x19, 0x92, 0x9c, 0x2e, 0xf3, 0x2a, 0x01, 0xc5, 0xa1, 0x66, 0xc8, - 0x1e, 0x00, 0xc4, 0x0a, 0x50, 0x74, 0x4a, 0x82, 0x3a, 0x69, 0x8d, 0x90, 0xe6, 0xad, 0xe8, 0x94, - 0x97, 0xad, 0xf8, 0x13, 0xe5, 0xcf, 0xc8, 0xf1, 0x2c, 0x9c, 0x47, 0x91, 0x79, 0x18, 0x36, 0x1a, - 0xb4, 0xcc, 0x2a, 0x12, 0x36, 0x34, 0x0f, 0x43, 0xb4, 0x16, 0x4c, 0xa1, 0xef, 0x88, 0x7a, 0x5f, - 0x57, 0x5d, 0x09, 0x8a, 0x26, 0xc4, 0x2b, 0xa6, 0xa2, 0x16, 0x7d, 0x0c, 0x2c, 0x3e, 0x78, 0x51, - 0x94, 0xff, 0x1b, 0x4b, 0x53, 0x6b, 0x4d, 0x9e, 0xbc, 0x24, 0x91, 0xba, 0x1f, 0x43, 0x2d, 0xad, - 0x16, 0xde, 0xbc, 0xe0, 0x78, 0x82, 0x46, 0x9d, 0x57, 0xc7, 0xaa, 0xa2, 0xf8, 0x1a, 0xd4, 0x3c, - 0x3f, 0x32, 0x48, 0x06, 0x13, 0xa3, 0x70, 0xc1, 0x57, 0x3d, 0x3f, 0x6a, 0xc5, 0x30, 0xec, 0x9f, - 0x58, 0xe7, 0x8f, 0x4e, 0x49, 0x6c, 0x27, 0xfd, 0x93, 0x28, 0xe8, 0xa8, 0x7e, 0xc5, 0xba, 0x3a, - 0x0e, 0xb5, 0x50, 0x82, 0x89, 0xe1, 0x76, 0x6a, 0xa8, 0x13, 0xed, 0x98, 0x43, 0xb0, 0xd0, 0x94, - 0x6f, 0x43, 0x25, 0xf4, 0xe7, 0xc1, 0xd8, 0x36, 0xc2, 0xc8, 0x9e, 0x35, 0x36, 0xa8, 0x47, 0x41, - 0x80, 0x06, 0x91, 0x3d, 0x63, 0x9f, 0x40, 0x7d, 0x16, 0xd8, 0x86, 0x32, 0x4e, 0x77, 0xd4, 0x26, - 0xee, 0x07, 0xf6, 0x62, 0xa8, 0xaa, 0x33, 0x25, 0x15, 0x73, 0x2a, 0x2d, 0xd0, 0xcf, 0x71, 0x2e, - 0x1a, 0x81, 0x9c, 0x0b, 0x9b, 0xe3, 0xc7, 0xb0, 0xae, 0x70, 0xce, 0x8f, 0x89, 0xf9, 0x35, 0x62, - 0xbe, 0x7c, 0x8e, 0xf9, 0xe0, 0x18, 0xd9, 0xeb, 0xb3, 0x54, 0x9a, 0x35, 0xcf, 0x19, 0xe5, 0xa8, - 0x2b, 0xdf, 0x25, 0xfe, 0x6b, 0x2f, 0xb0, 0xb4, 0x53, 0xd6, 0xfa, 0x13, 0x71, 0x2e, 0xd0, 0x09, - 0xdb, 0x9e, 0xd5, 0x78, 0x5d, 0x84, 0xd3, 0x53, 0x82, 0x3d, 0x82, 0xaa, 0xd0, 0xda, 0x28, 0xe0, - 0x2d, 0x6c, 0xdc, 0x53, 0xbd, 0x92, 0xa4, 0xba, 0x11, 0x82, 0x57, 0xdc, 0xe4, 0x3b, 0x64, 0x1f, - 0xc1, 0xba, 0x70, 0x19, 0xab, 0x92, 0xf5, 0x8d, 0xe5, 0xc9, 0x45, 0x44, 0x3b, 0x0b, 0xf1, 0xca, - 0xe1, 0x7a, 0x30, 0xf7, 0x48, 0x93, 0x93, 0x9c, 0xb3, 0xc0, 0x1f, 0xd9, 0x82, 0x7f, 0x93, 0xf8, - 0x65, 0x73, 0xb8, 0x20, 0x13, 0xbc, 0x24, 0xd2, 0xae, 0x06, 0x2a, 0x68, 0x1f, 0xf9, 0x5e, 0x90, - 0xa7, 0xd8, 0x12, 0x28, 0xcf, 0x37, 0xbf, 0x4b, 0x9e, 0x5b, 0xc8, 0x47, 0x79, 0x32, 0xc8, 0xcd, - 0xe7, 0x8e, 0xd5, 0xb8, 0x2f, 0x62, 0xd3, 0xf0, 0x9b, 0xbd, 0x0e, 0xf5, 0xc0, 0x1e, 0xcf, 0x83, - 0xd0, 0x79, 0x6e, 0x1b, 0xa1, 0xe3, 0x1d, 0x37, 0xde, 0xa2, 0x7e, 0xac, 0x25, 0xd0, 0x81, 0xe3, - 0x1d, 0xe3, 0x8c, 0xb5, 0x4f, 0x23, 0x3b, 0xf0, 0x44, 0x0c, 0xee, 0xdb, 0xea, 0x8c, 0x6d, 0x13, - 0x02, 0x25, 0x0a, 0x07, 0x3b, 0xf9, 0x3e, 0x37, 0x39, 0x42, 0x31, 0x39, 0x1e, 0x7c, 0xab, 0xc9, - 0x31, 0xa0, 0xc9, 0x71, 0x0f, 0x4a, 0x8e, 0x17, 0xd9, 0xc1, 0x73, 0xd3, 0x6d, 0xbc, 0xbb, 0x24, - 0xc4, 0x13, 0x1c, 0xbb, 0x0b, 0xc5, 0xd0, 0x75, 0x50, 0xb2, 0x34, 0xde, 0x5b, 0x22, 0x8b, 0x51, - 0x6c, 0x13, 0xca, 0xc9, 0x05, 0x90, 0xc6, 0xfb, 0x4b, 0x74, 0x0b, 0x24, 0xbb, 0x05, 0xb9, 0x13, - 0x9c, 0x50, 0x0f, 0x97, 0xbd, 0xc8, 0x08, 0xc7, 0x5d, 0x7f, 0xe2, 0xb8, 0xae, 0xd8, 0xf5, 0x1f, - 0x2d, 0xed, 0xfa, 0x3b, 0x8e, 0xeb, 0x8a, 0x5d, 0x7f, 0x22, 0xbf, 0x70, 0xcf, 0x24, 0x0e, 0x6c, - 0xc9, 0x07, 0xcb, 0x7b, 0x26, 0xe2, 0x9e, 0xd2, 0x55, 0x99, 0x4a, 0x48, 0xae, 0x51, 0xe1, 0xe1, - 0xfd, 0x50, 0xed, 0xab, 0xb4, 0xcf, 0x94, 0x43, 0x98, 0xa4, 0x51, 0x8d, 0x96, 0x8e, 0x61, 0xc7, - 0x3a, 0x6d, 0x7c, 0x24, 0x22, 0xb8, 0x05, 0xa4, 0x63, 0x9d, 0xb2, 0xf7, 0xa0, 0x16, 0x87, 0x48, - 0x60, 0x71, 0x61, 0xe3, 0xe3, 0xa5, 0x1a, 0xa4, 0x09, 0xd8, 0x36, 0x54, 0x27, 0xa8, 0x05, 0x4e, - 0x85, 0x52, 0xd8, 0xf8, 0x84, 0x2a, 0xb2, 0x11, 0xef, 0xc7, 0x2f, 0x52, 0x1a, 0x79, 0x8a, 0x8b, - 0x3d, 0x00, 0xe6, 0x4c, 0xc4, 0x78, 0xa2, 0xc1, 0x2b, 0x14, 0xbf, 0xc6, 0xa7, 0x34, 0xbb, 0x2e, - 0xc0, 0xb0, 0x47, 0x50, 0x0b, 0x6d, 0xcf, 0x32, 0xa6, 0xa1, 0xd4, 0x2e, 0x7e, 0x40, 0xf5, 0x94, - 0x72, 0x34, 0xb9, 0x28, 0xc6, 0x2b, 0x48, 0xb5, 0x17, 0x0a, 0x35, 0xe3, 0x11, 0xe0, 0x44, 0x7d, - 0xbe, 0x60, 0xfa, 0x8d, 0x17, 0x30, 0x21, 0x55, 0xcc, 0xf4, 0x09, 0xd4, 0x2d, 0xdb, 0x9a, 0xcf, - 0x0c, 0x52, 0xde, 0x70, 0x5a, 0xfe, 0x50, 0x15, 0x78, 0xaa, 0x57, 0x8b, 0x57, 0x2d, 0xd5, 0xc7, - 0xf5, 0x31, 0xac, 0xc5, 0xee, 0xa7, 0x48, 0x7a, 0xaa, 0x7e, 0xa4, 0x16, 0x98, 0x78, 0x97, 0x78, - 0x6d, 0x1e, 0x7f, 0xc6, 0xf5, 0xa4, 0x3d, 0x3a, 0xf4, 0xcc, 0x59, 0x78, 0xe4, 0x47, 0x8d, 0xdf, - 0x54, 0xd5, 0x8d, 0x81, 0x84, 0xf2, 0x2a, 0x12, 0xc5, 0x29, 0xdc, 0x7b, 0x16, 0x6b, 0x73, 0x1c, - 0xd9, 0x8d, 0x1f, 0x8b, 0xbd, 0x27, 0x01, 0xb6, 0x22, 0xec, 0x36, 0x30, 0x67, 0x33, 0xf7, 0x4c, - 0x4c, 0xc7, 0xcf, 0x68, 0x3a, 0x5e, 0x56, 0xa6, 0x63, 0x13, 0x91, 0x34, 0x1f, 0xcb, 0x66, 0xfc, - 0xc9, 0x1e, 0x42, 0x75, 0xe6, 0x87, 0x91, 0x61, 0x4d, 0x5d, 0x6a, 0x7f, 0x53, 0x5d, 0xcf, 0xfb, - 0x7e, 0x18, 0x6d, 0x4f, 0x5d, 0xda, 0x81, 0x66, 0xc9, 0x37, 0xeb, 0xc2, 0xa5, 0x94, 0xac, 0x36, - 0xe9, 0xb0, 0xb5, 0xb1, 0x45, 0x25, 0xde, 0x54, 0x4a, 0x54, 0x64, 0xb6, 0x8c, 0xd1, 0x59, 0xf7, - 0xcf, 0x83, 0xd0, 0x82, 0x12, 0x63, 0x90, 0x04, 0xaa, 0xb5, 0x84, 0xe2, 0x41, 0xd0, 0x38, 0x52, - 0xed, 0x13, 0x58, 0x5b, 0x50, 0x61, 0x03, 0xc3, 0xc6, 0xb6, 0x3a, 0x7b, 0x95, 0x70, 0xd2, 0x5a, - 0xcc, 0x88, 0xb0, 0x50, 0xff, 0xf3, 0x3c, 0x94, 0x62, 0xc3, 0x81, 0x55, 0xa0, 0x78, 0xd0, 0x7b, - 0xd2, 0xeb, 0x3f, 0xeb, 0x89, 0x0b, 0x2b, 0xcd, 0xc1, 0xa0, 0xcd, 0x87, 0x9a, 0xc5, 0xea, 0x00, - 0x14, 0xb6, 0x6e, 0x0c, 0x5a, 0xcd, 0x9e, 0xb8, 0xc0, 0x42, 0xc1, 0xf2, 0x22, 0xbd, 0xca, 0xd6, - 0xa1, 0xb6, 0x73, 0xd0, 0xa3, 0x50, 0x20, 0x01, 0xca, 0x22, 0xa8, 0xfd, 0xb9, 0x38, 0xe3, 0x11, - 0xa0, 0x1c, 0x82, 0xf6, 0x9a, 0xc3, 0x36, 0xef, 0xc4, 0xa0, 0x3c, 0x45, 0x15, 0xf5, 0x0f, 0x78, - 0x4b, 0xe6, 0x54, 0x60, 0x57, 0x60, 0x3d, 0x61, 0x8b, 0xb3, 0xd4, 0x8a, 0x58, 0xb3, 0x7d, 0xde, - 0xff, 0x49, 0xbb, 0x35, 0xd4, 0x80, 0x0e, 0x8c, 0x1e, 0x3f, 0xd6, 0x2a, 0xac, 0x0a, 0xa5, 0xed, - 0xce, 0x60, 0xd8, 0xe9, 0xb5, 0x86, 0x5a, 0x15, 0x2b, 0xbc, 0xd3, 0xe9, 0x0e, 0xdb, 0x5c, 0xab, - 0xb1, 0x12, 0xe4, 0x7e, 0xd2, 0xef, 0xf4, 0xb4, 0x3a, 0x85, 0xef, 0x37, 0xf7, 0xf6, 0xbb, 0x6d, - 0x6d, 0x0d, 0xa1, 0x83, 0x3e, 0x1f, 0x6a, 0x1a, 0x42, 0x9f, 0x75, 0x7a, 0xdb, 0xfd, 0x67, 0xda, - 0x3a, 0x2b, 0x43, 0xfe, 0xa0, 0x87, 0xc5, 0x30, 0x56, 0x83, 0x32, 0x7d, 0x1a, 0xcd, 0x6e, 0x57, - 0xbb, 0xa4, 0x9c, 0x32, 0x5d, 0x46, 0x14, 0x9d, 0x59, 0x0d, 0xb0, 0x0e, 0x57, 0xb0, 0x2d, 0x49, - 0x92, 0xa8, 0xaf, 0x62, 0x3e, 0x7b, 0x9d, 0xde, 0xc1, 0x40, 0xbb, 0x86, 0xc4, 0xf4, 0x49, 0x98, - 0x06, 0xe6, 0xd3, 0xe9, 0x51, 0x57, 0xde, 0xc2, 0xef, 0xed, 0x76, 0xb7, 0x3d, 0x6c, 0x6b, 0xb7, - 0xb1, 0x55, 0xbc, 0xbd, 0xdf, 0x6d, 0xb6, 0xda, 0xda, 0x06, 0x26, 0xba, 0xfd, 0xd6, 0x13, 0xa3, - 0xbf, 0xaf, 0xdd, 0x61, 0x97, 0x41, 0xeb, 0xf7, 0x8c, 0xed, 0x83, 0xfd, 0x6e, 0xa7, 0xd5, 0x1c, - 0xb6, 0x8d, 0x27, 0xed, 0x2f, 0x34, 0x1d, 0xbb, 0x7d, 0x9f, 0xb7, 0x0d, 0x99, 0xd7, 0x6b, 0x71, - 0x5a, 0xe6, 0x77, 0x97, 0x69, 0x50, 0xdd, 0x39, 0xf8, 0xd9, 0xcf, 0xbe, 0x30, 0x64, 0x3f, 0xbc, - 0x8e, 0xd5, 0x5c, 0x70, 0x18, 0x07, 0x4f, 0xb4, 0x7b, 0xe7, 0x40, 0x83, 0x27, 0xda, 0x1b, 0xd8, - 0x8f, 0xf1, 0xc0, 0x68, 0x9b, 0x48, 0xc0, 0xdb, 0xad, 0x03, 0x3e, 0xe8, 0x3c, 0x6d, 0x1b, 0xad, - 0x61, 0x5b, 0x7b, 0x93, 0x3a, 0xae, 0xd3, 0x7b, 0xa2, 0xdd, 0xc7, 0x96, 0xe1, 0x97, 0x18, 0xae, - 0xb7, 0x18, 0x83, 0xfa, 0x82, 0x96, 0x60, 0x6f, 0x23, 0xc9, 0x16, 0xef, 0x37, 0xb7, 0x5b, 0xcd, - 0xc1, 0x50, 0x7b, 0x07, 0xbb, 0x65, 0xb0, 0xdf, 0xed, 0x0c, 0xb5, 0x07, 0xd8, 0xf6, 0xc7, 0xcd, - 0xe1, 0x6e, 0x9b, 0x6b, 0xef, 0xe2, 0xc8, 0x0f, 0x3b, 0x7b, 0x6d, 0x43, 0x0e, 0xc3, 0x43, 0x2c, - 0x63, 0xa7, 0xd3, 0xed, 0x6a, 0x8f, 0xe8, 0x60, 0xa5, 0xc9, 0x87, 0x1d, 0x1a, 0xfb, 0x0f, 0x30, - 0x83, 0xe6, 0xfe, 0x7e, 0xf7, 0x0b, 0xed, 0x43, 0x6c, 0xe0, 0xde, 0x41, 0x77, 0xd8, 0x31, 0x0e, - 0xf6, 0xb7, 0x9b, 0xc3, 0xb6, 0xf6, 0x11, 0x4d, 0x8c, 0xfe, 0x60, 0xb8, 0xbd, 0xd7, 0xd5, 0x3e, - 0xd6, 0x7f, 0x1b, 0x4a, 0xb1, 0x2d, 0x89, 0x5c, 0x9d, 0x5e, 0xaf, 0xcd, 0xb5, 0x15, 0xcc, 0xb9, - 0xdb, 0xde, 0x19, 0x6a, 0x19, 0x3a, 0x54, 0xea, 0x3c, 0xde, 0x1d, 0x6a, 0xab, 0xf8, 0xd9, 0x3f, - 0xc0, 0x4e, 0xca, 0x52, 0xeb, 0xda, 0x7b, 0x1d, 0x2d, 0x87, 0x5f, 0xcd, 0xde, 0xb0, 0xa3, 0xe5, - 0x69, 0xda, 0x74, 0x7a, 0x8f, 0xbb, 0x6d, 0xad, 0x80, 0xd0, 0xbd, 0x26, 0x7f, 0xa2, 0x15, 0x45, - 0xa6, 0xdb, 0xed, 0xcf, 0xb5, 0x12, 0x2b, 0xc0, 0x6a, 0xf7, 0xa1, 0x56, 0x46, 0xd0, 0x76, 0x7b, - 0xfb, 0x60, 0x5f, 0x03, 0x7d, 0x13, 0x8a, 0xcd, 0xc3, 0xc3, 0x3d, 0x34, 0xd5, 0xb1, 0x31, 0x07, - 0xdd, 0xae, 0x58, 0x46, 0x5b, 0xfd, 0xe1, 0xb0, 0xbf, 0xa7, 0x65, 0x70, 0xe2, 0x0e, 0xfb, 0xfb, - 0xda, 0xaa, 0xde, 0x81, 0x52, 0xbc, 0xfd, 0x29, 0x37, 0x52, 0x4a, 0x90, 0xdb, 0xe7, 0xed, 0xa7, - 0xe2, 0x24, 0xb4, 0xd7, 0xfe, 0x1c, 0xab, 0x89, 0x5f, 0x98, 0x51, 0x16, 0x0b, 0x12, 0x57, 0x47, - 0xe8, 0x4a, 0x4a, 0xb7, 0xd3, 0x6b, 0x37, 0xb9, 0x96, 0xd7, 0x3f, 0x4c, 0x1d, 0x32, 0x49, 0xa9, - 0x81, 0xc5, 0x37, 0x3b, 0xb2, 0xf8, 0xce, 0xe3, 0x5e, 0x9f, 0xb7, 0xc5, 0x1d, 0x17, 0xd9, 0x6f, - 0xab, 0xfa, 0x5b, 0x50, 0x4e, 0x24, 0x1e, 0xce, 0xa3, 0x16, 0xef, 0x0f, 0x06, 0xa2, 0x9b, 0x57, - 0x30, 0x4d, 0x7d, 0x23, 0xd2, 0x19, 0xfd, 0xff, 0x85, 0x52, 0x22, 0x6c, 0xef, 0xc2, 0xea, 0x70, - 0x20, 0x3d, 0xd1, 0x97, 0x1f, 0x2c, 0x2e, 0x59, 0x0f, 0xe3, 0x2f, 0xbe, 0x3a, 0x1c, 0xb0, 0xb7, - 0xa1, 0x20, 0xae, 0x58, 0xc9, 0x73, 0x80, 0xcb, 0x69, 0x01, 0x3e, 0x24, 0x1c, 0x97, 0x34, 0x7a, - 0x17, 0xea, 0x69, 0x0c, 0xbb, 0x05, 0x20, 0x70, 0x8a, 0x4b, 0x45, 0x81, 0xb0, 0x1b, 0x10, 0x5f, - 0xe1, 0xda, 0xa6, 0x12, 0x6a, 0xc9, 0x95, 0xae, 0x6d, 0xfd, 0xef, 0x66, 0x01, 0x16, 0xba, 0x16, - 0x6a, 0x73, 0x89, 0xc3, 0x24, 0x2f, 0x8f, 0x04, 0x5f, 0x81, 0xb2, 0xeb, 0x9b, 0x96, 0x7a, 0x59, - 0xba, 0x84, 0x00, 0xea, 0x0d, 0xf5, 0x3a, 0x43, 0x59, 0x9c, 0xc7, 0xb3, 0xab, 0x50, 0x98, 0xf8, - 0xc1, 0xd4, 0x8c, 0x64, 0x9c, 0xb0, 0x4c, 0xe1, 0xd6, 0x23, 0x8e, 0xa9, 0x50, 0xe3, 0xf4, 0x28, - 0x54, 0x38, 0xb3, 0x99, 0xe3, 0x55, 0x09, 0xec, 0x22, 0x0c, 0x6d, 0x12, 0xdb, 0x1b, 0xbb, 0x7e, - 0x68, 0x5b, 0x68, 0xb6, 0x17, 0x48, 0xad, 0x84, 0x18, 0xb4, 0x75, 0x26, 0x5a, 0x1b, 0x4c, 0x1d, - 0xcf, 0x8c, 0xa4, 0xdf, 0x97, 0x5a, 0x1b, 0x43, 0xb0, 0xba, 0x5f, 0x86, 0xbe, 0xf4, 0x9f, 0x88, - 0x13, 0xaf, 0x12, 0x02, 0xa8, 0xba, 0xaf, 0x02, 0xd8, 0xe1, 0xd8, 0x9c, 0x89, 0xcc, 0xcb, 0x94, - 0x79, 0x59, 0x42, 0xb6, 0xce, 0x58, 0x17, 0xea, 0xc3, 0x11, 0x8a, 0x7b, 0x1f, 0x4d, 0xe1, 0x96, - 0xef, 0x4a, 0xcf, 0xc6, 0xdd, 0xf3, 0x4a, 0xe9, 0x83, 0x34, 0x99, 0x38, 0x9a, 0x3b, 0xc7, 0x7b, - 0xa3, 0x09, 0x97, 0x2e, 0x20, 0xfb, 0x4e, 0x61, 0x48, 0x6e, 0x3c, 0x3a, 0xcd, 0x28, 0xa2, 0xd0, - 0xfc, 0x64, 0x67, 0xcb, 0xc4, 0x01, 0xc6, 0x62, 0x53, 0x7b, 0x85, 0xa2, 0x10, 0x64, 0xc0, 0x99, - 0x1c, 0xa4, 0x24, 0x90, 0xec, 0x1e, 0xac, 0x21, 0x72, 0xe2, 0xd8, 0xae, 0x25, 0x49, 0x44, 0x64, - 0x79, 0x6d, 0xec, 0xbb, 0x3b, 0x08, 0x25, 0x3a, 0xfd, 0x9f, 0xe6, 0x00, 0x16, 0x76, 0x4c, 0xea, - 0x74, 0x30, 0x93, 0x3e, 0x1d, 0x7c, 0x08, 0x57, 0xe5, 0xbd, 0x83, 0xe4, 0x88, 0xcd, 0xf1, 0x8c, - 0x91, 0x19, 0x1f, 0xc4, 0x32, 0x89, 0x15, 0xa7, 0x6c, 0x1d, 0x6f, 0xcb, 0x44, 0x0d, 0x69, 0x4d, - 0xe5, 0x89, 0xce, 0x66, 0xe9, 0x83, 0x64, 0x75, 0xdf, 0x5d, 0xb0, 0x0f, 0xcf, 0x66, 0xec, 0x3d, - 0xb8, 0x12, 0xd8, 0x93, 0xc0, 0x0e, 0x8f, 0x8c, 0x28, 0x54, 0x0b, 0x13, 0xf1, 0x4e, 0xeb, 0x12, - 0x39, 0x0c, 0x93, 0xb2, 0xde, 0x83, 0x2b, 0xd2, 0xc2, 0x39, 0x57, 0x3d, 0x71, 0xf9, 0x74, 0x5d, - 0x20, 0xd5, 0xda, 0xbd, 0x0a, 0x20, 0x8d, 0xbb, 0xf8, 0xc9, 0x81, 0x12, 0x2f, 0x0b, 0x43, 0x4e, - 0x5e, 0xe3, 0x23, 0x0b, 0x4d, 0x9e, 0xba, 0x88, 0x04, 0xd3, 0x21, 0x87, 0x12, 0x8c, 0x4e, 0x08, - 0xea, 0x0f, 0xeb, 0x0f, 0xe8, 0x49, 0x05, 0xec, 0x41, 0x84, 0x72, 0xc2, 0xb1, 0x77, 0xe0, 0x92, - 0xda, 0xec, 0xf8, 0xbe, 0x70, 0x85, 0x2a, 0xa2, 0x2d, 0x1a, 0xca, 0xc5, 0xcd, 0xe1, 0xb7, 0x80, - 0x29, 0x35, 0x8f, 0xa9, 0xab, 0x44, 0xbd, 0x96, 0x54, 0x5b, 0x12, 0xbf, 0x01, 0x54, 0x45, 0xe1, - 0x90, 0xad, 0x2d, 0x9b, 0x33, 0x88, 0x24, 0xe7, 0xed, 0x7b, 0x70, 0x65, 0xd1, 0x3a, 0xc3, 0x8c, - 0x8c, 0xe8, 0xc8, 0x36, 0x6c, 0xcf, 0xa2, 0xcb, 0x22, 0x25, 0xbe, 0x9e, 0x34, 0xb4, 0x19, 0x0d, - 0x8f, 0x6c, 0x34, 0x48, 0x14, 0xd7, 0xd4, 0xda, 0x37, 0xba, 0xa6, 0xf4, 0xbf, 0x97, 0x81, 0x7a, - 0xda, 0xea, 0x12, 0x81, 0xf0, 0xee, 0x7c, 0xea, 0x89, 0x93, 0xfb, 0x3c, 0x8f, 0x93, 0x38, 0x4f, - 0x67, 0xc7, 0x86, 0x48, 0xc5, 0xf3, 0x74, 0x76, 0xdc, 0xa2, 0x34, 0x7b, 0x13, 0x8a, 0xb3, 0x63, - 0xb1, 0x70, 0x5f, 0x34, 0x33, 0x0a, 0x33, 0x11, 0xc4, 0xf8, 0x26, 0x14, 0xe7, 0x92, 0x34, 0xf7, - 0x22, 0xd2, 0x39, 0x91, 0xea, 0x1b, 0x50, 0x55, 0x1d, 0x15, 0xb8, 0xfe, 0xd0, 0xa6, 0x11, 0x15, - 0xc3, 0x4f, 0xfd, 0x77, 0x56, 0x89, 0xe4, 0x3b, 0x9d, 0x7b, 0x7e, 0xa7, 0xf3, 0xdb, 0x0d, 0x8a, - 0xb1, 0x32, 0x28, 0xa6, 0x72, 0xec, 0xc7, 0x77, 0xe2, 0xe1, 0xc8, 0x0c, 0x9b, 0xf3, 0xc8, 0x6f, - 0xf9, 0x6e, 0x7c, 0x21, 0x54, 0xc4, 0xa8, 0xe7, 0x92, 0x0b, 0xa1, 0xe2, 0xfa, 0xca, 0x7b, 0x32, - 0x90, 0x9b, 0x6e, 0x51, 0x50, 0xe4, 0x40, 0x7e, 0x69, 0xac, 0xab, 0xf1, 0x25, 0x0a, 0x0a, 0x0a, - 0x78, 0x08, 0x6b, 0x8b, 0xb0, 0xd9, 0x38, 0xd8, 0xe0, 0x3c, 0x4b, 0x2d, 0x89, 0x99, 0xc5, 0xa4, - 0xfe, 0x7b, 0x19, 0x58, 0x5f, 0xb2, 0xfb, 0xb1, 0xb7, 0x16, 0xcf, 0x67, 0xe0, 0x27, 0xbb, 0x03, - 0xd5, 0xa9, 0x19, 0x8d, 0x8f, 0x8c, 0x59, 0x60, 0x4f, 0x9c, 0xd3, 0xf8, 0x0d, 0x10, 0x82, 0xed, - 0x13, 0x88, 0x02, 0x27, 0x66, 0x33, 0xf2, 0x76, 0x4c, 0x9d, 0x48, 0x0a, 0x1b, 0x20, 0x50, 0x97, - 0x3c, 0xa9, 0x71, 0x50, 0x55, 0xee, 0x05, 0x31, 0x60, 0x37, 0xa1, 0xd0, 0x49, 0xfc, 0x0b, 0xc9, - 0xc9, 0x7f, 0x56, 0x5e, 0x81, 0xf7, 0xa1, 0xdc, 0xa2, 0xeb, 0xf4, 0x7b, 0xe6, 0x8c, 0xdd, 0x87, - 0xec, 0xd4, 0x9c, 0xc9, 0xc8, 0x80, 0x46, 0x72, 0x3c, 0x20, 0xb0, 0x0f, 0xf6, 0xcc, 0x99, 0x10, - 0xce, 0x48, 0x74, 0xe3, 0x23, 0x28, 0xc5, 0x80, 0xef, 0x24, 0x86, 0xff, 0xfd, 0x2a, 0x94, 0xb7, - 0x55, 0x4f, 0x24, 0x9a, 0x5d, 0x51, 0x30, 0xf7, 0x50, 0x8d, 0x88, 0x2f, 0x0f, 0x8f, 0x4d, 0x6f, - 0x28, 0x41, 0xf1, 0x04, 0x5a, 0xfd, 0x86, 0x09, 0x74, 0x13, 0x20, 0x20, 0xf3, 0x9a, 0x2c, 0xec, - 0x6c, 0x12, 0x85, 0xd6, 0xb1, 0xd0, 0xc0, 0xbe, 0xf0, 0x84, 0x3a, 0xf7, 0xed, 0x4f, 0xa8, 0xf3, - 0x17, 0x9e, 0x50, 0xdf, 0x5b, 0x88, 0x60, 0x9c, 0x4a, 0x58, 0x70, 0x59, 0x6c, 0x04, 0xb3, 0x24, - 0x3c, 0x1c, 0x4b, 0xff, 0x01, 0xd4, 0xe3, 0xd6, 0xc9, 0xfc, 0x20, 0x15, 0x91, 0x2e, 0x71, 0xc2, - 0xb7, 0x59, 0x8b, 0xd4, 0x64, 0x7a, 0x61, 0x54, 0x5e, 0x72, 0x74, 0xff, 0xf7, 0x33, 0xc0, 0xa4, - 0x69, 0xb8, 0x33, 0x77, 0xdd, 0xa1, 0x7d, 0x4a, 0xeb, 0xef, 0x3e, 0xac, 0x4b, 0xc7, 0xa4, 0x12, - 0xbd, 0x22, 0xcf, 0x8a, 0x04, 0x62, 0x71, 0x56, 0x74, 0xd1, 0xfd, 0x9d, 0xd5, 0x0b, 0xef, 0xef, - 0x5c, 0x7c, 0x2f, 0xe8, 0x36, 0x54, 0xd4, 0xdb, 0x2f, 0x42, 0x65, 0x01, 0x73, 0x71, 0xf1, 0xe5, - 0x2f, 0x56, 0x01, 0x16, 0xe6, 0xeb, 0xaf, 0x3b, 0xbc, 0xe0, 0x82, 0x21, 0xc9, 0x5e, 0x34, 0x24, - 0x9b, 0xa0, 0xa9, 0x74, 0xca, 0x35, 0xac, 0xfa, 0x82, 0x30, 0x56, 0x05, 0x9c, 0x50, 0xbd, 0x2a, - 0x43, 0xa2, 0x44, 0x1e, 0xa1, 0xca, 0x68, 0x21, 0x92, 0x74, 0x72, 0x97, 0x2b, 0x39, 0xa1, 0x90, - 0x7c, 0xec, 0x53, 0xb8, 0x9e, 0x70, 0x1a, 0x27, 0x4e, 0x74, 0xe4, 0xcf, 0x23, 0xe9, 0x29, 0x0c, - 0x65, 0x68, 0xd1, 0xd5, 0x38, 0xa7, 0x67, 0x02, 0x2d, 0x24, 0x45, 0xc8, 0x3e, 0x84, 0xf2, 0x64, - 0xee, 0xba, 0x46, 0x64, 0x9f, 0x46, 0xf2, 0x3e, 0x72, 0x23, 0x65, 0xf9, 0x2b, 0xc3, 0xcb, 0x4b, - 0x13, 0x99, 0xd0, 0xff, 0xd7, 0x2a, 0xe4, 0x7f, 0x3a, 0xb7, 0x83, 0x33, 0xf6, 0x11, 0x94, 0xc3, - 0x68, 0x1a, 0xa9, 0xe7, 0x75, 0xd7, 0x45, 0x06, 0x84, 0xa7, 0xe3, 0x36, 0x7b, 0x6a, 0x7b, 0x91, - 0x70, 0x83, 0x21, 0x2d, 0x6d, 0x04, 0x97, 0x21, 0x1f, 0x46, 0xf6, 0x2c, 0x94, 0xd1, 0x3d, 0x22, - 0xc1, 0x36, 0x20, 0xef, 0xf9, 0x96, 0x1d, 0xa6, 0x63, 0x78, 0xd0, 0x76, 0xe7, 0x02, 0xc1, 0x74, - 0x28, 0x24, 0x23, 0xbe, 0x74, 0x66, 0x26, 0x30, 0x14, 0x95, 0x6d, 0x9b, 0x96, 0xe3, 0x1d, 0xc6, - 0xd7, 0xda, 0x92, 0x34, 0x6e, 0x71, 0xa4, 0x04, 0x9b, 0x87, 0xf1, 0x1d, 0x53, 0x99, 0x64, 0x1b, - 0x50, 0xc1, 0xcf, 0x67, 0x81, 0x13, 0xd9, 0x83, 0x47, 0xb2, 0xdf, 0x54, 0x10, 0xaa, 0xb0, 0x96, - 0x1d, 0xd9, 0xe3, 0x68, 0xf0, 0x95, 0x0c, 0xcc, 0xa1, 0xd0, 0x8f, 0x18, 0xa2, 0x5b, 0x50, 0x4b, - 0x35, 0x77, 0xc9, 0xd7, 0x30, 0x68, 0x77, 0xd1, 0xb2, 0xce, 0x28, 0xc6, 0xf2, 0xaa, 0x6a, 0x20, - 0x67, 0x15, 0xcb, 0x39, 0xa7, 0x98, 0x32, 0x79, 0xb2, 0xbb, 0xdb, 0xfc, 0x71, 0x5b, 0x2b, 0xe8, - 0x7f, 0xb8, 0x0a, 0xeb, 0xc3, 0xc0, 0xf4, 0x42, 0x8a, 0x54, 0x6d, 0xf9, 0x5e, 0x14, 0xf8, 0x2e, - 0xfb, 0x01, 0x94, 0xa2, 0xb1, 0xab, 0x0e, 0xc3, 0xed, 0x78, 0xd1, 0x9f, 0x23, 0x7d, 0x30, 0x1c, - 0x0b, 0x9f, 0x64, 0x31, 0x12, 0x1f, 0xec, 0x1d, 0xc8, 0x8f, 0xec, 0x43, 0xc7, 0x93, 0x72, 0xef, - 0xca, 0x79, 0xc6, 0x2d, 0x44, 0xee, 0xae, 0x70, 0x41, 0xc5, 0xde, 0x83, 0xc2, 0xd8, 0x9f, 0xc6, - 0x1b, 0xc4, 0xe2, 0x5e, 0x85, 0x52, 0x10, 0x62, 0x77, 0x57, 0xb8, 0xa4, 0x63, 0x1f, 0x41, 0x29, - 0xf0, 0x5d, 0x77, 0x64, 0x8e, 0x8f, 0xe5, 0xd6, 0xd1, 0x38, 0xcf, 0xc3, 0x25, 0x7e, 0x77, 0x85, - 0x27, 0xb4, 0xfa, 0x03, 0x28, 0xca, 0xca, 0x62, 0x07, 0x6c, 0xb5, 0x1f, 0x77, 0x64, 0x47, 0xb6, - 0xfa, 0x7b, 0x7b, 0x9d, 0xa1, 0xb8, 0xbf, 0xc5, 0xfb, 0xdd, 0xee, 0x56, 0xb3, 0xf5, 0x44, 0x5b, - 0xdd, 0x2a, 0x41, 0x41, 0x78, 0xa2, 0xf4, 0xdf, 0xcd, 0xc0, 0xda, 0xb9, 0x06, 0xb0, 0x4f, 0x20, - 0x37, 0x45, 0xad, 0x4f, 0x74, 0xcf, 0xdd, 0x0b, 0x5b, 0xa9, 0xa4, 0x85, 0x2e, 0x88, 0x1c, 0xfa, - 0xa7, 0x50, 0x4f, 0xc3, 0x15, 0x83, 0xb6, 0x06, 0x65, 0xde, 0x6e, 0x6e, 0x1b, 0xfd, 0x1e, 0x9a, - 0x91, 0x68, 0x56, 0x52, 0xf2, 0x19, 0xef, 0x90, 0x0d, 0xfa, 0x5b, 0xa0, 0x9d, 0xef, 0x18, 0xf6, - 0x18, 0xf5, 0xfa, 0xe9, 0xcc, 0xb5, 0x29, 0x22, 0x57, 0x19, 0xb2, 0x5b, 0x17, 0xf4, 0xa4, 0x24, - 0xa3, 0x11, 0xab, 0x8f, 0x53, 0x69, 0xfd, 0xff, 0x01, 0xb6, 0xdc, 0x83, 0xbf, 0xbe, 0xec, 0xff, - 0x67, 0x06, 0x72, 0xfb, 0xae, 0xe9, 0xb1, 0xd7, 0x20, 0x4f, 0xef, 0x0e, 0x48, 0xe9, 0x59, 0x51, - 0x16, 0x38, 0x4e, 0x0b, 0xc2, 0xb1, 0xb7, 0x20, 0x1b, 0x8d, 0xe3, 0xbb, 0x6a, 0xd7, 0x5e, 0x30, - 0xf9, 0x76, 0x57, 0x38, 0x52, 0xb1, 0x4d, 0xc8, 0x5a, 0x56, 0x1c, 0x91, 0x2a, 0x0d, 0x67, 0xb4, - 0xb6, 0xb6, 0xed, 0x89, 0xe3, 0x39, 0xf2, 0x9d, 0x04, 0x24, 0x61, 0xaf, 0x43, 0xd6, 0x1a, 0xbb, - 0xe9, 0xf0, 0x62, 0x61, 0x97, 0x25, 0x19, 0x5a, 0x63, 0x97, 0xe9, 0x50, 0x8b, 0x82, 0x33, 0x23, - 0x98, 0x7b, 0x14, 0x9d, 0x13, 0x4a, 0x8b, 0xa1, 0x82, 0x3a, 0xc4, 0x9c, 0x42, 0x7c, 0x42, 0x79, - 0xe9, 0x65, 0x16, 0xd8, 0x33, 0x33, 0x48, 0x6c, 0x05, 0x27, 0xdc, 0x17, 0x80, 0xad, 0x02, 0xd0, - 0x83, 0x6c, 0xfa, 0xdb, 0x74, 0x29, 0x1e, 0x15, 0x5b, 0x3d, 0xfe, 0xba, 0xe0, 0x55, 0x1f, 0x89, - 0xd1, 0xff, 0x32, 0x0b, 0x15, 0xa5, 0x3e, 0xec, 0x03, 0x28, 0x59, 0xe9, 0x85, 0x78, 0x7d, 0xa9, - 0xd2, 0x0f, 0xb6, 0xe3, 0x25, 0x68, 0xc9, 0xe9, 0xfd, 0x29, 0xd4, 0x42, 0x3b, 0x32, 0x9e, 0x9b, - 0x81, 0x23, 0x9e, 0x42, 0x59, 0x55, 0xbd, 0xd0, 0x03, 0x3b, 0x7a, 0x1a, 0x63, 0x76, 0x57, 0x78, - 0x35, 0x54, 0xd2, 0xa4, 0x7d, 0xcb, 0x26, 0x65, 0x53, 0xcf, 0xc5, 0x08, 0xe0, 0xee, 0x0a, 0x8f, - 0xf1, 0x48, 0x6a, 0x9f, 0xda, 0xe3, 0x79, 0x14, 0x6b, 0xdf, 0xb5, 0xb8, 0x41, 0x04, 0xa4, 0x97, - 0xa9, 0xc4, 0x27, 0x7b, 0x88, 0xb2, 0xce, 0x74, 0x5d, 0x9f, 0x54, 0xa5, 0xbc, 0xea, 0x13, 0xde, - 0x4e, 0xe0, 0xe2, 0x25, 0xac, 0x38, 0xc5, 0xee, 0x41, 0xde, 0x8f, 0x8e, 0xec, 0x58, 0x67, 0x8d, - 0xaf, 0xd7, 0x23, 0x68, 0xbb, 0xd5, 0xc5, 0x99, 0x42, 0x68, 0xfd, 0x17, 0x19, 0x28, 0xca, 0x1e, - 0x60, 0xeb, 0x50, 0x1b, 0xb4, 0x87, 0xc6, 0xd3, 0x26, 0xef, 0x34, 0xb7, 0xba, 0x6d, 0x19, 0x15, - 0xfd, 0x98, 0x37, 0x7b, 0x52, 0x4e, 0xf2, 0xf6, 0xd3, 0xfe, 0x93, 0xb6, 0xf0, 0x12, 0x6d, 0xb7, - 0x7b, 0x5f, 0x68, 0x59, 0xe1, 0x28, 0x6d, 0xef, 0x37, 0x39, 0x4a, 0xc9, 0x0a, 0x14, 0xdb, 0x9f, - 0xb7, 0x5b, 0x07, 0x24, 0x26, 0xeb, 0x00, 0xdb, 0xed, 0x66, 0xb7, 0xdb, 0x6f, 0xa1, 0xd8, 0x2c, - 0x30, 0x06, 0xf5, 0x16, 0x6f, 0x37, 0x87, 0x6d, 0xa3, 0xd9, 0x6a, 0xf5, 0x0f, 0x7a, 0x43, 0xad, - 0x88, 0x25, 0x36, 0xbb, 0xc3, 0x36, 0x4f, 0x40, 0xf4, 0xe4, 0xc9, 0x36, 0xef, 0xef, 0x27, 0x90, - 0xf2, 0x56, 0x19, 0x2d, 0x21, 0x1a, 0x2b, 0xfd, 0xbf, 0xd6, 0xa1, 0x9e, 0x9e, 0x9a, 0xec, 0x63, - 0x28, 0x59, 0x56, 0x6a, 0x8c, 0x6f, 0x5e, 0x34, 0x85, 0x1f, 0x6c, 0x5b, 0xf1, 0x30, 0x8b, 0x0f, - 0x76, 0x27, 0x5e, 0x48, 0xab, 0x4b, 0x0b, 0x29, 0x5e, 0x46, 0x3f, 0x86, 0x35, 0x79, 0x3d, 0xdd, - 0x32, 0x23, 0x73, 0x64, 0x86, 0x76, 0x7a, 0x95, 0xb4, 0x08, 0xb9, 0x2d, 0x71, 0xbb, 0x2b, 0xbc, - 0x3e, 0x4e, 0x41, 0xd8, 0x0f, 0xa1, 0x6e, 0x92, 0x21, 0x9a, 0xf0, 0xe7, 0x54, 0x25, 0xb0, 0x89, - 0x38, 0x85, 0xbd, 0x66, 0xaa, 0x00, 0x9c, 0x88, 0x56, 0xe0, 0xcf, 0x16, 0xcc, 0xf9, 0xd4, 0x71, - 0x48, 0xe0, 0xcf, 0x14, 0xde, 0xaa, 0xa5, 0xa4, 0xd9, 0x47, 0x50, 0x95, 0x35, 0x5f, 0x18, 0xe3, - 0xc9, 0x92, 0x15, 0xd5, 0x26, 0xa5, 0x6e, 0x77, 0x85, 0x57, 0xc6, 0x8b, 0x24, 0x7b, 0x84, 0x9a, - 0xdc, 0x42, 0x05, 0x2e, 0xaa, 0x73, 0x8d, 0x6a, 0x1b, 0x73, 0x81, 0x99, 0xa4, 0xd8, 0x7b, 0x00, - 0x54, 0x4f, 0xc1, 0x53, 0x4a, 0x85, 0x21, 0x04, 0xfe, 0x2c, 0x66, 0x29, 0x5b, 0x71, 0x42, 0xa9, - 0x9e, 0x70, 0xa5, 0x94, 0x97, 0xab, 0x47, 0xee, 0x94, 0x45, 0xf5, 0x84, 0x17, 0x26, 0xa9, 0x9e, - 0x60, 0x83, 0xa5, 0xea, 0xc5, 0x5c, 0xa2, 0x7a, 0x82, 0x29, 0xae, 0x9e, 0xe0, 0xa9, 0x9c, 0xaf, - 0x5e, 0xcc, 0x42, 0xd5, 0x13, 0x1c, 0x3f, 0x5c, 0xd2, 0xdd, 0xab, 0x2f, 0xd4, 0xdd, 0x71, 0xd8, - 0xd2, 0xda, 0xfb, 0x0f, 0xa1, 0x1e, 0x1e, 0xf9, 0x27, 0x8a, 0x00, 0xa9, 0xa9, 0xdc, 0x83, 0x23, - 0xff, 0x44, 0x95, 0x20, 0xb5, 0x50, 0x05, 0x60, 0x6d, 0x45, 0x13, 0xe9, 0x32, 0x6e, 0x5d, 0xad, - 0x2d, 0xb5, 0xf0, 0xa9, 0x63, 0x9f, 0x60, 0x6d, 0xcd, 0x38, 0x81, 0x9d, 0xb2, 0x70, 0x4c, 0x84, - 0xd2, 0xd5, 0x90, 0x3a, 0x52, 0x97, 0x25, 0x41, 0xe2, 0xa2, 0x08, 0x71, 0x6e, 0xcd, 0x3d, 0x95, - 0x4d, 0x53, 0xe7, 0xd6, 0x81, 0x97, 0x62, 0xac, 0x0a, 0x52, 0xc9, 0xba, 0x58, 0x15, 0xa1, 0xfd, - 0xd5, 0xdc, 0xf6, 0xc6, 0xb6, 0x0c, 0xd2, 0x49, 0xad, 0x8a, 0x81, 0xc4, 0x2d, 0x56, 0x45, 0x0c, - 0x49, 0xe6, 0x75, 0xc2, 0xce, 0xce, 0xcf, 0x6b, 0x85, 0x99, 0xe6, 0x75, 0xc2, 0x9a, 0x2c, 0xa8, - 0x84, 0xf7, 0xd2, 0xd2, 0x82, 0x52, 0x98, 0xc5, 0x82, 0x4a, 0xb8, 0x1f, 0x81, 0x9c, 0x4d, 0xa2, - 0x73, 0x53, 0xa1, 0x3c, 0xa2, 0xd6, 0xb2, 0x77, 0x61, 0x9c, 0xa4, 0x70, 0xae, 0x06, 0x36, 0xda, - 0x0a, 0x72, 0x2a, 0x5c, 0x51, 0xe7, 0x2a, 0x27, 0x4c, 0xb2, 0x94, 0x82, 0x45, 0x52, 0xff, 0xe3, - 0x3c, 0x14, 0xa5, 0xd0, 0x61, 0x97, 0x60, 0x4d, 0xca, 0xbe, 0xed, 0xe6, 0xb0, 0xb9, 0xd5, 0x1c, - 0xa0, 0xb6, 0xc2, 0xa0, 0x2e, 0x84, 0x5f, 0x02, 0xcb, 0xa0, 0x40, 0x24, 0xe9, 0x97, 0x80, 0x56, - 0x51, 0x20, 0x4a, 0x5e, 0xf1, 0x5e, 0x54, 0x96, 0xad, 0x41, 0x45, 0x30, 0x0a, 0x00, 0xdd, 0x56, - 0x22, 0x2e, 0x91, 0xce, 0x2b, 0x2c, 0xe2, 0xf4, 0xa0, 0xb0, 0x60, 0x11, 0x80, 0x62, 0xc2, 0x12, - 0x1f, 0x2f, 0x30, 0xa8, 0x0f, 0xf9, 0x41, 0xaf, 0xb5, 0x28, 0xa7, 0x4c, 0x37, 0x4c, 0x44, 0x36, - 0x4f, 0x3b, 0xed, 0x67, 0x1a, 0x20, 0x93, 0xc8, 0x85, 0xd2, 0x15, 0xd4, 0xb7, 0x28, 0x13, 0x4a, - 0x56, 0xd9, 0x35, 0xb8, 0x34, 0xd8, 0xed, 0x3f, 0x33, 0x04, 0x53, 0xd2, 0x84, 0x1a, 0xbb, 0x0c, - 0x9a, 0x82, 0x10, 0xd9, 0xd7, 0xb1, 0x48, 0x82, 0xc6, 0x84, 0x03, 0x6d, 0x8d, 0xce, 0xe7, 0x10, - 0x36, 0x14, 0x1b, 0x90, 0x86, 0x4d, 0x11, 0xac, 0xfd, 0xee, 0xc1, 0x5e, 0x6f, 0xa0, 0xad, 0x63, - 0x25, 0x08, 0x22, 0x6a, 0xce, 0x92, 0x6c, 0x16, 0xdb, 0xd6, 0x25, 0xda, 0xc9, 0x10, 0xf6, 0xac, - 0xc9, 0x7b, 0x9d, 0xde, 0xe3, 0x81, 0x76, 0x39, 0xc9, 0xb9, 0xcd, 0x79, 0x9f, 0x0f, 0xb4, 0x2b, - 0x09, 0x60, 0x30, 0x6c, 0x0e, 0x0f, 0x06, 0xda, 0xd5, 0xa4, 0x96, 0xfb, 0xbc, 0xdf, 0x6a, 0x0f, - 0x06, 0xdd, 0xce, 0x60, 0xa8, 0x5d, 0x63, 0x57, 0x60, 0x7d, 0x51, 0xa3, 0x98, 0xb8, 0xa1, 0x54, - 0x94, 0x3f, 0x6e, 0x0f, 0xb5, 0xeb, 0x49, 0x35, 0x5a, 0xfd, 0x6e, 0xb7, 0x49, 0x27, 0x49, 0x37, - 0x90, 0x88, 0x8e, 0xd8, 0x64, 0x6b, 0x5e, 0xc1, 0x7a, 0x1d, 0xf4, 0x54, 0xd0, 0x4d, 0x65, 0x6a, - 0x0c, 0xda, 0x3f, 0x3d, 0x68, 0xf7, 0x5a, 0x6d, 0xed, 0xd5, 0xc5, 0xd4, 0x48, 0x60, 0xb7, 0x92, - 0xa9, 0x91, 0x80, 0x6e, 0x27, 0x65, 0xc6, 0xa0, 0x81, 0xb6, 0x81, 0xf9, 0xc9, 0x7a, 0xf4, 0x7a, - 0xed, 0xd6, 0x10, 0xdb, 0x7a, 0x27, 0xe9, 0xc5, 0x83, 0xfd, 0xc7, 0xbc, 0xb9, 0xdd, 0xd6, 0x74, - 0x84, 0xf0, 0x76, 0xaf, 0xb9, 0x17, 0x8f, 0xf6, 0x6b, 0x5b, 0x55, 0x7a, 0x5d, 0x53, 0x6e, 0x97, - 0xfa, 0x4f, 0x80, 0xa9, 0xcf, 0xd4, 0xc9, 0xf7, 0x5a, 0x18, 0xe4, 0x26, 0x81, 0x3f, 0x8d, 0x6f, - 0xf0, 0xe2, 0x37, 0xda, 0x6a, 0xb3, 0xf9, 0x88, 0x8e, 0x83, 0x16, 0xd7, 0xf7, 0x54, 0x90, 0xfe, - 0xc7, 0x19, 0xa8, 0xa7, 0xb7, 0x4a, 0x7a, 0x3d, 0x6e, 0x62, 0x78, 0x7e, 0x24, 0x1e, 0x02, 0x09, - 0x93, 0xd7, 0xe3, 0x26, 0x3d, 0x3f, 0xa2, 0x97, 0x40, 0xc8, 0x74, 0x4c, 0x76, 0x3e, 0x91, 0x6b, - 0x92, 0x66, 0x1d, 0xb8, 0x94, 0x7a, 0xc5, 0x2f, 0xf5, 0x0c, 0x4b, 0x23, 0x79, 0xa1, 0xeb, 0x5c, - 0xfd, 0x39, 0x0b, 0x97, 0xdb, 0x24, 0x2f, 0x61, 0xe6, 0x16, 0x97, 0x30, 0x77, 0xa1, 0x96, 0xda, - 0x99, 0xc9, 0xe2, 0x9f, 0xa4, 0x6b, 0x5a, 0x72, 0x26, 0x2f, 0xaf, 0xa6, 0xfe, 0x47, 0x19, 0xa8, - 0xaa, 0xfb, 0xf4, 0xf7, 0xce, 0x89, 0xee, 0x3a, 0xc8, 0x6f, 0xc3, 0xb1, 0xe2, 0x07, 0x40, 0x62, - 0x50, 0x87, 0x5e, 0x15, 0x16, 0xae, 0xcf, 0x9d, 0xe3, 0x41, 0xd2, 0x1c, 0x15, 0x84, 0x26, 0x33, - 0x5d, 0xdf, 0xda, 0x79, 0x82, 0x04, 0xf2, 0xb6, 0xc4, 0x02, 0xa2, 0xdf, 0x86, 0xf2, 0xce, 0x71, - 0x7c, 0xc2, 0xaf, 0x3e, 0x87, 0x53, 0x16, 0x77, 0x3e, 0xf5, 0x3f, 0xcd, 0x40, 0x7d, 0xf1, 0x5e, - 0x01, 0x05, 0xfe, 0x89, 0xd7, 0x1f, 0xc5, 0x74, 0x58, 0xb5, 0x46, 0x8b, 0x07, 0x87, 0x57, 0xd5, - 0x07, 0x87, 0x5f, 0x93, 0x99, 0x65, 0xd5, 0xdd, 0x2c, 0x29, 0x4b, 0xde, 0x28, 0x7d, 0x04, 0x55, - 0xfc, 0xcf, 0xed, 0x89, 0x1d, 0x04, 0x76, 0xfc, 0x10, 0xe6, 0x12, 0x71, 0x8a, 0x88, 0x2c, 0x12, - 0x7b, 0x22, 0x15, 0xa3, 0x0b, 0x9f, 0x54, 0x40, 0xbc, 0xfe, 0x2f, 0x72, 0x50, 0x51, 0xb4, 0x9e, - 0x6f, 0x35, 0xfd, 0x6e, 0x42, 0x79, 0x71, 0xc1, 0x5f, 0x5e, 0xe3, 0x4b, 0x00, 0xa9, 0xb1, 0xca, - 0x9e, 0x1b, 0xab, 0x06, 0x14, 0x65, 0x84, 0xa0, 0x74, 0x37, 0xc6, 0xc9, 0xb4, 0x63, 0x2f, 0xff, - 0x12, 0x8f, 0xf7, 0xfb, 0x50, 0x55, 0xbc, 0x72, 0xa1, 0xbc, 0xea, 0x76, 0x9e, 0xbe, 0xb2, 0xf0, - 0xd0, 0x85, 0xec, 0x0a, 0x14, 0x26, 0xc7, 0x86, 0x35, 0x12, 0xf7, 0x9b, 0xca, 0x3c, 0x3f, 0x39, - 0xde, 0x1e, 0xd1, 0x89, 0xc1, 0x24, 0xd9, 0xe8, 0x85, 0xaf, 0xa4, 0x34, 0x89, 0xb7, 0xf3, 0x4d, - 0x28, 0x4e, 0x8e, 0xc5, 0xfd, 0xa6, 0xb2, 0x1a, 0x33, 0xb3, 0xe8, 0xf2, 0xc2, 0xe4, 0x98, 0x6e, - 0x43, 0xbd, 0x0b, 0x97, 0xe5, 0xf6, 0x69, 0x86, 0x86, 0xb8, 0x31, 0x4d, 0x0f, 0x3f, 0x88, 0xc7, - 0x71, 0xd6, 0x05, 0xae, 0x19, 0x0e, 0x08, 0x83, 0x33, 0x4e, 0x87, 0xaa, 0x32, 0x01, 0xc5, 0x0b, - 0x19, 0x65, 0x9e, 0x82, 0xb1, 0x4f, 0xa0, 0x3a, 0x39, 0x16, 0x03, 0x3a, 0xf4, 0xf7, 0x6c, 0x19, - 0x8f, 0x7c, 0xf9, 0xfc, 0x50, 0x52, 0xcc, 0x69, 0x8a, 0x92, 0xbd, 0x03, 0x2c, 0xb0, 0x23, 0xdb, - 0x23, 0x01, 0x60, 0xd9, 0xa6, 0xe5, 0x3a, 0x9e, 0x4d, 0x1a, 0x53, 0x96, 0xaf, 0x27, 0x98, 0x6d, - 0x89, 0x60, 0x57, 0xa1, 0xc0, 0xcd, 0x93, 0xc1, 0x4f, 0xbb, 0xa4, 0x21, 0x95, 0xb9, 0x4c, 0xe1, - 0xc2, 0xe9, 0x84, 0xfb, 0xf1, 0xa5, 0x5b, 0xd2, 0x83, 0x4a, 0x5c, 0x05, 0xe9, 0xff, 0x32, 0x03, - 0xf5, 0x85, 0xf2, 0x8b, 0xeb, 0x99, 0xdd, 0x57, 0x5f, 0x80, 0x6d, 0x9c, 0xd7, 0x8f, 0x91, 0xe4, - 0xc1, 0xf0, 0x6c, 0x26, 0xde, 0x52, 0xbb, 0xe8, 0x81, 0x94, 0x8b, 0x3c, 0xae, 0xd9, 0x0b, 0xdf, - 0xa7, 0x7c, 0x0c, 0xd9, 0xe1, 0xd9, 0x4c, 0x38, 0x5a, 0x70, 0x0b, 0x14, 0x46, 0x99, 0xd8, 0xfc, - 0xe8, 0x84, 0xff, 0x49, 0xfb, 0x0b, 0x71, 0x83, 0x79, 0x9f, 0x77, 0xf6, 0x9a, 0xfc, 0x0b, 0x8a, - 0xdd, 0x20, 0x25, 0x61, 0xa7, 0xcf, 0xdb, 0x9d, 0xc7, 0x3d, 0x02, 0xe4, 0xc8, 0x0d, 0xb3, 0xa8, - 0x62, 0xd3, 0xb2, 0x76, 0x8e, 0xd5, 0xb7, 0x25, 0x32, 0xa9, 0xb7, 0x25, 0xd2, 0x97, 0x1e, 0x57, - 0xcf, 0x5f, 0x7a, 0x64, 0xc9, 0x82, 0x4e, 0xa4, 0x03, 0x7b, 0x03, 0x72, 0x93, 0x63, 0xfb, 0x2c, - 0x6d, 0xe1, 0xa4, 0xd7, 0x22, 0x11, 0xe8, 0xbf, 0xcc, 0x00, 0x4b, 0x55, 0x44, 0x28, 0xdd, 0xdf, - 0xb7, 0x2e, 0x1f, 0x43, 0x43, 0x3e, 0x3c, 0x26, 0xa8, 0x14, 0x17, 0xaf, 0xec, 0xd2, 0x2b, 0xfe, - 0x22, 0x36, 0x6e, 0xf1, 0x86, 0x0b, 0x7b, 0x17, 0xc4, 0xcb, 0x4f, 0x38, 0xb5, 0xd2, 0x3e, 0x0d, - 0x45, 0x54, 0xf0, 0x05, 0xcd, 0xe2, 0xa9, 0x27, 0xf5, 0x09, 0x2b, 0xe1, 0x1d, 0x5e, 0x5b, 0x8c, - 0x1a, 0x89, 0x0f, 0xfd, 0x0f, 0x32, 0x70, 0x29, 0x3d, 0x21, 0x7e, 0xb5, 0x56, 0xa6, 0xdf, 0xeb, - 0xca, 0x9e, 0x7f, 0xaf, 0xeb, 0xa2, 0xf9, 0x94, 0xbb, 0x70, 0x3e, 0xfd, 0xff, 0x19, 0xb8, 0xac, - 0xf4, 0xfe, 0xc2, 0x4c, 0xfa, 0x1b, 0xaa, 0x99, 0xf2, 0x6c, 0x57, 0x2e, 0xf5, 0x6c, 0x97, 0xfe, - 0x87, 0x19, 0xb8, 0x7a, 0xae, 0x26, 0xdc, 0xfe, 0x1b, 0xad, 0x4b, 0xfa, 0x79, 0x2f, 0xf2, 0x50, - 0x8b, 0x60, 0x41, 0x71, 0xd1, 0x8e, 0xa5, 0xdf, 0xeb, 0xa2, 0xbb, 0xa9, 0x1f, 0xc0, 0xfa, 0xa2, - 0x8e, 0x2d, 0xf9, 0x14, 0xd9, 0x6d, 0xa8, 0x78, 0xf6, 0x89, 0x11, 0x3f, 0x54, 0x26, 0xc3, 0x45, - 0x3c, 0xfb, 0x44, 0x12, 0xe8, 0x3b, 0xaa, 0xc0, 0x48, 0x5e, 0x24, 0x76, 0xad, 0x54, 0xdc, 0x81, - 0xef, 0x5a, 0x31, 0x0a, 0x73, 0x53, 0x5a, 0x54, 0xf4, 0xec, 0x13, 0x1a, 0xac, 0x13, 0x99, 0x4f, - 0xd3, 0xb2, 0xe4, 0xf9, 0xee, 0x45, 0x6f, 0xa8, 0x5c, 0x87, 0xd2, 0x2c, 0x48, 0x75, 0x49, 0x71, - 0x16, 0x88, 0x62, 0xef, 0xca, 0x60, 0x94, 0x17, 0x9d, 0x05, 0x8b, 0xf0, 0x14, 0xf9, 0x62, 0x79, - 0x6e, 0xf1, 0x62, 0xf9, 0x87, 0x52, 0x56, 0xe0, 0xc4, 0x95, 0x25, 0x27, 0x67, 0xbe, 0x99, 0xcd, - 0x1a, 0x9d, 0xf9, 0x92, 0xe6, 0x64, 0x7f, 0x25, 0xe3, 0x61, 0xf0, 0x53, 0xdf, 0x82, 0x8a, 0x62, - 0x11, 0xe1, 0x96, 0xae, 0x78, 0x13, 0xc2, 0xf4, 0x1b, 0x14, 0x8b, 0x0e, 0xe2, 0x95, 0x85, 0x33, - 0x21, 0xd4, 0xff, 0xa2, 0x0c, 0xb0, 0xc0, 0xa5, 0x36, 0xda, 0xcc, 0xb9, 0x8d, 0xf6, 0x3b, 0x1d, - 0x20, 0x7f, 0x00, 0xf5, 0xb1, 0x3f, 0x3b, 0x33, 0x16, 0x1c, 0xd9, 0x0b, 0x39, 0xaa, 0x48, 0x35, - 0x5c, 0x5c, 0x2f, 0x59, 0x3e, 0x18, 0xcc, 0x5d, 0x78, 0x30, 0xf8, 0x3e, 0x14, 0x85, 0xc3, 0x3b, - 0x94, 0xd7, 0x93, 0xae, 0x9d, 0x6f, 0xe7, 0x03, 0x19, 0x76, 0x19, 0xd3, 0xb1, 0x36, 0x5a, 0xb3, - 0x87, 0x7e, 0xe0, 0x44, 0x47, 0x53, 0xf5, 0xb2, 0xd2, 0xad, 0x65, 0xce, 0x98, 0x4c, 0xbc, 0x46, - 0x64, 0xaa, 0x49, 0x65, 0x5f, 0x8e, 0xa6, 0xd2, 0x0b, 0x43, 0xfb, 0x72, 0x51, 0xdd, 0x97, 0x87, - 0x53, 0xe1, 0x7b, 0xc1, 0x7d, 0xf9, 0x1d, 0xb8, 0x24, 0xc3, 0xbf, 0x91, 0x01, 0xbb, 0x93, 0xe8, - 0x45, 0xa4, 0x8f, 0x7c, 0x18, 0x60, 0x38, 0x25, 0xad, 0x15, 0xc9, 0x3f, 0x87, 0xcb, 0xe3, 0x23, - 0xd3, 0x3b, 0xb4, 0x8d, 0x68, 0xe4, 0x1a, 0xf4, 0x2c, 0xa9, 0x31, 0x35, 0x67, 0x52, 0x5d, 0x78, - 0x63, 0xa9, 0xb2, 0x2d, 0x22, 0x1e, 0x8e, 0x5c, 0x0a, 0x0e, 0x49, 0x8e, 0x8f, 0xd7, 0xc7, 0xe7, - 0xe1, 0xe7, 0x4e, 0x71, 0xe0, 0xfc, 0x29, 0xce, 0x92, 0x02, 0x51, 0x59, 0x56, 0x20, 0x6e, 0xfc, - 0x7e, 0x0e, 0x0a, 0x32, 0x0c, 0xed, 0x3e, 0xe4, 0xac, 0xc0, 0x9f, 0x25, 0xd1, 0x62, 0x17, 0x6c, - 0xcb, 0xf4, 0xeb, 0x0c, 0xb8, 0x83, 0x3f, 0x80, 0x82, 0x69, 0x59, 0xc6, 0xe4, 0x38, 0x7d, 0xd2, - 0x72, 0x6e, 0x87, 0xdc, 0x5d, 0xe1, 0x79, 0x93, 0xb6, 0xca, 0x8f, 0xa1, 0x8c, 0xf4, 0x8b, 0xd0, - 0x9f, 0xca, 0xf2, 0xbe, 0x1f, 0xef, 0x65, 0xbb, 0x2b, 0xbc, 0x64, 0xc6, 0xfb, 0xda, 0x8f, 0xd2, - 0x3e, 0x2b, 0xb1, 0xd1, 0xdc, 0x58, 0x62, 0x7d, 0x91, 0xf7, 0xea, 0x37, 0x41, 0x38, 0x31, 0x12, - 0x69, 0x93, 0x57, 0x9d, 0xfa, 0x4b, 0xb2, 0x69, 0x77, 0x85, 0x8b, 0x35, 0x17, 0xcb, 0xaa, 0x0f, - 0x63, 0x7f, 0x52, 0xf2, 0x06, 0xf6, 0x05, 0x3d, 0x83, 0xb2, 0x22, 0x71, 0x2a, 0x91, 0xe0, 0x40, - 0x36, 0xcb, 0x8a, 0xa3, 0x4c, 0x8a, 0x4b, 0x6c, 0x89, 0x44, 0x22, 0xb6, 0x44, 0x3c, 0x7d, 0x02, - 0x15, 0x72, 0xed, 0x48, 0xbe, 0xd2, 0x52, 0xd7, 0x2e, 0x04, 0x0a, 0x39, 0xac, 0x17, 0xe2, 0xa5, - 0x15, 0xb7, 0x33, 0xb0, 0x55, 0x9f, 0xe0, 0xcd, 0x0b, 0x3b, 0x8a, 0x27, 0xee, 0x41, 0xd1, 0x58, - 0x2e, 0x78, 0x16, 0x87, 0x4e, 0x37, 0x38, 0x5c, 0xbd, 0x78, 0x1a, 0xaa, 0x41, 0x0b, 0x39, 0x11, - 0xb4, 0xa0, 0xa7, 0x1f, 0x56, 0x48, 0xdf, 0x8f, 0x54, 0x42, 0x18, 0x3e, 0x43, 0xbb, 0x50, 0x5d, - 0x78, 0x15, 0x28, 0xc6, 0xef, 0x13, 0x52, 0x34, 0x65, 0xab, 0xbf, 0xff, 0x85, 0x96, 0x41, 0x70, - 0xa7, 0x37, 0x18, 0x36, 0x7b, 0xf2, 0x48, 0xb1, 0xd3, 0x93, 0x47, 0x8a, 0xfa, 0xdf, 0xc9, 0x42, - 0x39, 0x71, 0x89, 0x7e, 0x7f, 0x63, 0x30, 0xb1, 0xb2, 0xb2, 0xaa, 0x95, 0x75, 0x4e, 0x3d, 0x11, - 0x4f, 0x89, 0x8a, 0x07, 0x37, 0xd6, 0xd2, 0x4a, 0x40, 0xb8, 0x7c, 0xef, 0x2a, 0xff, 0x2d, 0xef, - 0x5d, 0xa9, 0x01, 0x6d, 0x85, 0x74, 0x40, 0xdb, 0xb9, 0x37, 0x2a, 0x8b, 0xf4, 0x64, 0x9d, 0xfa, - 0x46, 0x25, 0xfd, 0x14, 0xcc, 0x53, 0xc7, 0x3e, 0x91, 0x11, 0x60, 0x32, 0x95, 0x16, 0xe3, 0xf0, - 0x12, 0x31, 0xfe, 0x2d, 0x44, 0x02, 0x7b, 0x08, 0x97, 0x27, 0xc7, 0xc9, 0x43, 0x79, 0x0b, 0xdb, - 0xa2, 0x4a, 0x55, 0xba, 0x10, 0xa7, 0xff, 0x7e, 0x06, 0x60, 0xe1, 0x03, 0xfc, 0x95, 0x1d, 0x14, - 0x8a, 0x0d, 0x98, 0xfd, 0x06, 0x1b, 0xf0, 0x65, 0xef, 0x32, 0x7c, 0x05, 0xe5, 0xc4, 0xeb, 0xfb, - 0xfd, 0xe7, 0xcb, 0x77, 0x2a, 0xf2, 0xb7, 0x63, 0x67, 0x4d, 0xe2, 0x36, 0xfd, 0x55, 0xfb, 0x22, - 0x55, 0x7c, 0xf6, 0x25, 0xc5, 0x9f, 0x0a, 0x8f, 0x49, 0x52, 0xf8, 0xaf, 0x79, 0x91, 0xa8, 0xf3, - 0x37, 0x97, 0x9a, 0xbf, 0xfa, 0x5c, 0xba, 0x7d, 0x7e, 0xf5, 0xa2, 0xbf, 0x53, 0x83, 0xff, 0x2a, - 0x13, 0xfb, 0x26, 0x92, 0x27, 0x0b, 0x5f, 0xa8, 0xf0, 0x5c, 0xec, 0x5e, 0xf9, 0x2e, 0xc5, 0x7d, - 0xa3, 0xb9, 0x94, 0xfb, 0x26, 0x73, 0xe9, 0x0d, 0xc8, 0x0b, 0xc1, 0x9c, 0x7f, 0x91, 0xa9, 0x24, - 0xf0, 0x2f, 0x7d, 0xe3, 0x57, 0xd7, 0xa5, 0x82, 0x27, 0xda, 0x7b, 0x39, 0xce, 0x37, 0x7e, 0x9f, - 0x98, 0xe2, 0x68, 0x7f, 0x37, 0x23, 0x24, 0xe5, 0xf7, 0xed, 0x93, 0x5f, 0x9b, 0xbd, 0xf4, 0xd7, - 0x19, 0xa8, 0xa5, 0x0e, 0x7c, 0xbe, 0x47, 0x65, 0x2e, 0x94, 0xcc, 0xd9, 0xff, 0x83, 0x24, 0x73, - 0x2a, 0xde, 0xa9, 0x94, 0x8e, 0x77, 0x42, 0xc9, 0x58, 0x4d, 0x69, 0xba, 0x17, 0xe9, 0xc4, 0x99, - 0x0b, 0x75, 0xe2, 0x5b, 0xc9, 0x8f, 0x98, 0x74, 0xb6, 0x45, 0x78, 0x51, 0x8d, 0x2b, 0x10, 0xf6, - 0x29, 0x5c, 0x17, 0x9a, 0x82, 0xfc, 0x21, 0x11, 0x7f, 0x62, 0x24, 0x3f, 0x71, 0x22, 0x63, 0xb8, - 0xae, 0x0a, 0x02, 0xf1, 0x98, 0xf3, 0xa4, 0x19, 0x63, 0xf5, 0x0e, 0xd4, 0x52, 0x27, 0x69, 0xca, - 0xcf, 0x25, 0x65, 0xd4, 0x9f, 0x4b, 0x62, 0x1b, 0x90, 0x3f, 0x39, 0xb2, 0x03, 0xfb, 0x82, 0xb7, - 0xd6, 0x04, 0x42, 0xff, 0x21, 0x54, 0xd5, 0x53, 0x7d, 0xf6, 0x36, 0xe4, 0x9d, 0xc8, 0x9e, 0xc6, - 0xf6, 0xca, 0xd5, 0xe5, 0x83, 0xff, 0x4e, 0x64, 0x4f, 0xb9, 0x20, 0xd2, 0x7f, 0x91, 0x01, 0xed, - 0x3c, 0x4e, 0xf9, 0x4d, 0xa7, 0xcc, 0x0b, 0x7e, 0xd3, 0x69, 0x35, 0x55, 0xc9, 0x8b, 0x7e, 0x96, - 0x29, 0x79, 0xef, 0x29, 0xf7, 0x82, 0xf7, 0x9e, 0xd8, 0x3d, 0x28, 0x05, 0x36, 0xfd, 0x60, 0x8e, - 0x75, 0x41, 0x38, 0x6b, 0x82, 0xd3, 0x7f, 0x2f, 0x03, 0x45, 0x19, 0x82, 0x70, 0xa1, 0x01, 0xf9, - 0x26, 0x14, 0xc5, 0x8f, 0xe7, 0xc4, 0x4f, 0x44, 0x2c, 0xc5, 0xe4, 0xc5, 0x78, 0x76, 0x4b, 0x04, - 0x66, 0xa4, 0x0d, 0xca, 0x7d, 0xd7, 0xf4, 0x38, 0xc1, 0xe5, 0x1b, 0xed, 0xe6, 0x54, 0xde, 0x0a, - 0x13, 0x0f, 0x39, 0x00, 0x81, 0xc4, 0x05, 0xb0, 0x1f, 0x41, 0x51, 0x86, 0x38, 0x5c, 0x58, 0x95, - 0x97, 0xfd, 0xb8, 0xca, 0x06, 0xc0, 0x22, 0xe6, 0xe1, 0xa2, 0x1c, 0xf4, 0xfb, 0x50, 0x8a, 0xc3, - 0x1c, 0x70, 0xfe, 0x2d, 0x8a, 0x96, 0xe1, 0xca, 0x6a, 0x65, 0x5c, 0xf9, 0x44, 0x69, 0xd7, 0x1f, - 0x1f, 0x93, 0x8b, 0xe7, 0x5d, 0xa0, 0x80, 0xef, 0xe1, 0xd2, 0x8b, 0x17, 0xe9, 0xe7, 0x60, 0x13, - 0x22, 0x76, 0x1f, 0x12, 0xd1, 0xfa, 0x32, 0x0b, 0x54, 0x6f, 0xc6, 0x57, 0x03, 0x68, 0x96, 0x3d, - 0x92, 0xae, 0x8c, 0x2e, 0xbd, 0x13, 0x93, 0x51, 0x1f, 0x05, 0x4e, 0xd5, 0x89, 0x2b, 0x64, 0x7a, - 0x1d, 0xaa, 0xea, 0xd9, 0xac, 0xde, 0x84, 0xf5, 0x3d, 0x3b, 0x32, 0x51, 0xfe, 0xc4, 0x4f, 0x07, - 0x88, 0xf9, 0x8b, 0x1f, 0xe9, 0xf9, 0x7b, 0x9e, 0x8e, 0x0b, 0x22, 0xfd, 0x17, 0x39, 0xd0, 0xce, - 0xe3, 0xbe, 0xe9, 0x9a, 0xc4, 0x6d, 0xa8, 0xf8, 0x34, 0x2f, 0x52, 0xaf, 0xf0, 0x0b, 0x90, 0x12, - 0x3c, 0x99, 0x7a, 0xff, 0xb9, 0xe4, 0x84, 0xbb, 0xe2, 0x05, 0xe8, 0x6b, 0x22, 0x26, 0xde, 0xf5, - 0xc7, 0x34, 0xad, 0xab, 0x14, 0x02, 0xdf, 0xf5, 0xc7, 0x74, 0xfb, 0x42, 0x1a, 0xb1, 0x22, 0x60, - 0xa8, 0xca, 0x4b, 0xd2, 0x72, 0x25, 0x07, 0xb6, 0x0c, 0xa9, 0x8c, 0x42, 0x79, 0x9f, 0xa5, 0x24, - 0x00, 0xc3, 0x30, 0x7e, 0x25, 0x73, 0x2c, 0x9f, 0x8c, 0xcf, 0xd2, 0x2b, 0x99, 0x2d, 0x8f, 0x2e, - 0x5f, 0xd0, 0x2f, 0x1c, 0x8c, 0xe5, 0x2f, 0x50, 0xc8, 0x77, 0x4a, 0x11, 0xf5, 0x9a, 0x78, 0x54, - 0x3f, 0xb0, 0xc3, 0x50, 0x3c, 0x92, 0x54, 0x96, 0xef, 0xc4, 0x48, 0x60, 0xf2, 0x1a, 0x93, 0xfc, - 0x49, 0x03, 0x24, 0x01, 0xf9, 0x1a, 0x93, 0xf8, 0x41, 0x03, 0x24, 0xb8, 0x0e, 0xa5, 0xaf, 0x7d, - 0xcf, 0x26, 0x63, 0xb8, 0x42, 0xb5, 0x2a, 0x62, 0x7a, 0xcf, 0x9c, 0xe9, 0x7f, 0x9e, 0x81, 0xcb, - 0xe7, 0x7b, 0x95, 0x26, 0x4c, 0x15, 0x4a, 0xad, 0x7e, 0xd7, 0xe8, 0x35, 0xf7, 0xda, 0xda, 0x0a, - 0x5b, 0x83, 0x4a, 0x7f, 0xeb, 0x27, 0xed, 0xd6, 0x50, 0x00, 0x32, 0x74, 0xed, 0x6f, 0x60, 0xec, - 0x76, 0xb6, 0xb7, 0xdb, 0x3d, 0x61, 0x3d, 0xf4, 0xb7, 0x7e, 0x62, 0x74, 0xfb, 0x2d, 0xf1, 0x02, - 0x7a, 0x7c, 0x12, 0x3c, 0xd0, 0x72, 0x74, 0xfa, 0x4a, 0xf1, 0x89, 0x98, 0xcc, 0x8b, 0xf0, 0xbb, - 0x67, 0x03, 0xa3, 0xd5, 0x1b, 0x6a, 0x05, 0x4c, 0xf5, 0x0e, 0xba, 0x5d, 0x4a, 0x51, 0x9c, 0x4d, - 0xab, 0xbf, 0xb7, 0xcf, 0xdb, 0x83, 0x81, 0x31, 0xe8, 0xfc, 0xac, 0xad, 0x95, 0xa8, 0x64, 0xde, - 0x79, 0xdc, 0xe9, 0x09, 0x40, 0x99, 0x15, 0x21, 0xbb, 0xd7, 0xe9, 0x89, 0xeb, 0x8e, 0x7b, 0xcd, - 0xcf, 0xb5, 0x0a, 0x7e, 0x0c, 0x0e, 0xf6, 0xb4, 0xea, 0xfd, 0x3b, 0x50, 0x55, 0x7f, 0x46, 0x84, - 0x22, 0xee, 0x7c, 0xcf, 0x16, 0x6f, 0x69, 0x76, 0xbf, 0xfe, 0x40, 0xcb, 0xdc, 0xd7, 0xa1, 0xa2, - 0xbc, 0x64, 0x8b, 0x14, 0xbb, 0x66, 0x78, 0x24, 0xdf, 0x55, 0x44, 0x3b, 0x4c, 0xcb, 0xdc, 0xbf, - 0x87, 0x22, 0x5b, 0x7d, 0x47, 0x16, 0xa0, 0xd0, 0xf3, 0x83, 0xa9, 0xe9, 0x4a, 0x3a, 0x7b, 0x1e, - 0x22, 0xdd, 0xbb, 0x70, 0xe5, 0xc2, 0x57, 0x71, 0x29, 0x6c, 0xd3, 0x99, 0xce, 0x5c, 0x5b, 0x44, - 0x1e, 0xee, 0x9e, 0x8d, 0x02, 0xc7, 0xd2, 0x32, 0xf7, 0x3f, 0x89, 0xaf, 0xf8, 0xc4, 0x65, 0x77, - 0xfb, 0xcd, 0x6d, 0xd1, 0xbb, 0xc9, 0xe5, 0xce, 0xe1, 0x96, 0x78, 0x33, 0x91, 0xb7, 0x07, 0x07, - 0xdd, 0xa1, 0xbc, 0x48, 0x7a, 0xff, 0x33, 0x68, 0xbc, 0x28, 0x04, 0x0f, 0x6b, 0xd4, 0xda, 0x6d, - 0x52, 0x98, 0x23, 0xf6, 0x66, 0xdf, 0x10, 0xa9, 0x8c, 0x88, 0x12, 0xed, 0xb6, 0xe9, 0x78, 0xfe, - 0xfe, 0xcf, 0x33, 0x8a, 0x0c, 0x89, 0xc3, 0xa8, 0x12, 0x80, 0xec, 0x26, 0x15, 0xc4, 0x6d, 0xd3, - 0xd2, 0x32, 0xec, 0x2a, 0xb0, 0x14, 0xa8, 0xeb, 0x8f, 0x4d, 0x57, 0x5b, 0xa5, 0x83, 0xf8, 0x18, - 0x4e, 0xc1, 0xae, 0x5a, 0x96, 0xbd, 0x0a, 0xd7, 0x13, 0x58, 0xd7, 0x3f, 0xd9, 0x0f, 0x1c, 0x34, - 0x42, 0xcf, 0x04, 0x3a, 0xb7, 0xf5, 0xe3, 0x3f, 0xfb, 0xe5, 0xad, 0xcc, 0xbf, 0xfd, 0xe5, 0xad, - 0xcc, 0x7f, 0xfe, 0xe5, 0xad, 0x95, 0x5f, 0xfc, 0x97, 0x5b, 0x99, 0x9f, 0xa9, 0xbf, 0x63, 0x3a, - 0x35, 0xa3, 0xc0, 0x39, 0x15, 0xb3, 0x36, 0x4e, 0x78, 0xf6, 0xbb, 0xb3, 0xe3, 0xc3, 0x77, 0x67, - 0xa3, 0x77, 0x51, 0x34, 0x8c, 0x0a, 0xf4, 0x8b, 0xa5, 0x8f, 0xfe, 0x77, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x30, 0x49, 0xde, 0xa3, 0x11, 0x75, 0x00, 0x00, + 0x32, 0xe4, 0x8f, 0x1d, 0x2b, 0x3a, 0x6c, 0xe4, 0x28, 0x47, 0x91, 0x40, 0x68, 0x38, 0x36, 0x5d, + 0xbb, 0x91, 0x17, 0x50, 0x4a, 0x20, 0x34, 0xa2, 0x42, 0x0a, 0x1b, 0x99, 0xfb, 0x65, 0x2e, 0x12, + 0xec, 0x16, 0x80, 0xed, 0xcd, 0xa7, 0x2f, 0x4c, 0x77, 0x6e, 0x87, 0x8d, 0x22, 0xa1, 0x14, 0x88, + 0xfe, 0x63, 0x28, 0x4f, 0xc3, 0x83, 0x1d, 0xdb, 0xb4, 0xec, 0x80, 0x5d, 0x83, 0xe2, 0x34, 0x3c, + 0x30, 0x22, 0xf3, 0x40, 0x36, 0xa1, 0x30, 0x0d, 0x0f, 0x86, 0xe6, 0x01, 0xbb, 0x0e, 0x25, 0x42, + 0x9c, 0xce, 0x44, 0x1b, 0xf2, 0x1c, 0x09, 0xb1, 0xc5, 0xfa, 0x5f, 0xe6, 0xa1, 0xd8, 0x75, 0x22, + 0x3b, 0x30, 0x5d, 0x76, 0x15, 0x0a, 0x4e, 0xe8, 0xcd, 0x5d, 0x97, 0xd8, 0x4b, 0x5c, 0xa6, 0xd8, + 0x55, 0xc8, 0x3b, 0x9f, 0xbc, 0x30, 0x5d, 0xc1, 0xbb, 0xb3, 0xc2, 0x45, 0x92, 0x35, 0xa0, 0xe0, + 0xbc, 0xff, 0x11, 0x22, 0xb2, 0x12, 0x21, 0xd3, 0x84, 0x79, 0xfc, 0x08, 0x31, 0xb9, 0x04, 0x43, + 0x69, 0xc2, 0x7c, 0xf4, 0x01, 0x62, 0xb0, 0xf5, 0x59, 0xc2, 0x50, 0x1a, 0x4b, 0x99, 0x53, 0x29, + 0xd8, 0x01, 0x35, 0x2c, 0x65, 0x1e, 0x97, 0x32, 0x17, 0xa5, 0x14, 0x25, 0x42, 0xa6, 0x09, 0x23, + 0x4a, 0x29, 0x25, 0x98, 0xa4, 0x94, 0xb9, 0x28, 0xa5, 0xbc, 0x91, 0xb9, 0x9f, 0x23, 0x8c, 0x28, + 0xe5, 0x32, 0xe4, 0x2c, 0x84, 0xc3, 0x46, 0xe6, 0x7e, 0x66, 0x67, 0x85, 0x53, 0x0a, 0xa1, 0x21, + 0x42, 0x2b, 0xd8, 0xc1, 0x08, 0x0d, 0x25, 0x74, 0x84, 0xd0, 0x2a, 0xf6, 0x06, 0x42, 0x47, 0x12, + 0x3a, 0x41, 0x68, 0x6d, 0x23, 0x73, 0x7f, 0x15, 0xa1, 0x98, 0x62, 0x37, 0xa0, 0x68, 0x99, 0x91, + 0x8d, 0x88, 0xba, 0x6c, 0x72, 0x0c, 0x40, 0x1c, 0xce, 0x38, 0xc4, 0xad, 0xc9, 0x46, 0xc7, 0x00, + 0xa6, 0x43, 0x05, 0xc9, 0x62, 0xbc, 0x26, 0xf1, 0x2a, 0x90, 0x7d, 0x08, 0x55, 0xcb, 0x1e, 0x3b, + 0x53, 0xd3, 0x15, 0x6d, 0x5a, 0xdf, 0xc8, 0xdc, 0xaf, 0x3c, 0x5a, 0x7b, 0x48, 0x6b, 0x22, 0xc1, + 0xec, 0xac, 0xf0, 0x14, 0x19, 0xfb, 0x04, 0x6a, 0x32, 0xfd, 0xfe, 0x23, 0xea, 0x58, 0x46, 0x7c, + 0x5a, 0x8a, 0xef, 0xfd, 0x47, 0x9f, 0xec, 0xac, 0xf0, 0x34, 0x21, 0xbb, 0x0b, 0xd5, 0x64, 0x89, + 0x20, 0xe3, 0x25, 0x59, 0xab, 0x14, 0x14, 0x9b, 0xf5, 0x65, 0xe8, 0x7b, 0x48, 0x70, 0x59, 0xf6, + 0x5b, 0x0c, 0x60, 0x1b, 0x00, 0x96, 0x3d, 0x31, 0xe7, 0x6e, 0x84, 0xe8, 0x2b, 0xb2, 0x03, 0x15, + 0x18, 0xbb, 0x05, 0xe5, 0xf9, 0x0c, 0x5b, 0xf9, 0xcc, 0x74, 0x1b, 0x57, 0x25, 0xc1, 0x02, 0x84, + 0xb9, 0xe3, 0x3c, 0x47, 0xec, 0x35, 0x39, 0xba, 0x31, 0x00, 0xd7, 0x8a, 0x13, 0x6e, 0x3a, 0x5e, + 0xa3, 0x41, 0xf3, 0x54, 0x24, 0xd8, 0x4d, 0xc8, 0x86, 0xc1, 0xb8, 0x71, 0x9d, 0x5a, 0x09, 0xa2, + 0x95, 0xed, 0x93, 0x59, 0xc0, 0x11, 0xbc, 0x59, 0x84, 0x3c, 0xad, 0x19, 0xfd, 0x26, 0x94, 0xf6, + 0xcc, 0xc0, 0x9c, 0x72, 0x7b, 0xc2, 0x34, 0xc8, 0xce, 0xfc, 0x50, 0xae, 0x16, 0xfc, 0xd4, 0xbb, + 0x50, 0x78, 0x66, 0x06, 0x88, 0x63, 0x90, 0xf3, 0xcc, 0xa9, 0x4d, 0xc8, 0x32, 0xa7, 0x6f, 0x5c, + 0x21, 0xe1, 0x69, 0x18, 0xd9, 0x53, 0x29, 0x0a, 0x64, 0x0a, 0xe1, 0x07, 0xae, 0x3f, 0x92, 0x2b, + 0xa1, 0xc4, 0x65, 0x4a, 0xff, 0xff, 0x32, 0x50, 0x68, 0xf9, 0x2e, 0x66, 0x77, 0x0d, 0x8a, 0x81, + 0xed, 0x1a, 0x8b, 0xe2, 0x0a, 0x81, 0xed, 0xee, 0xf9, 0x21, 0x22, 0xc6, 0xbe, 0x40, 0x88, 0xb5, + 0x59, 0x18, 0xfb, 0x84, 0x88, 0x2b, 0x90, 0x55, 0x2a, 0x70, 0x1d, 0x4a, 0xd1, 0xc8, 0x35, 0x08, + 0x9e, 0x23, 0x78, 0x31, 0x1a, 0xb9, 0x3d, 0x44, 0x5d, 0x83, 0xa2, 0x35, 0x12, 0x98, 0x3c, 0x61, + 0x0a, 0xd6, 0x08, 0x11, 0xfa, 0xa7, 0x50, 0xe6, 0xe6, 0xb1, 0xac, 0xc6, 0x15, 0x28, 0x60, 0x06, + 0x52, 0xca, 0xe5, 0x78, 0x3e, 0x1a, 0xb9, 0x1d, 0x0b, 0xc1, 0x58, 0x09, 0xc7, 0xa2, 0x3a, 0xe4, + 0x78, 0x7e, 0xec, 0xbb, 0x1d, 0x4b, 0x1f, 0x02, 0xb4, 0xfc, 0x20, 0xf8, 0xde, 0x4d, 0xb8, 0x0c, + 0x79, 0xcb, 0x9e, 0x45, 0x87, 0x42, 0x40, 0x70, 0x91, 0xd0, 0x1f, 0x40, 0x09, 0xc7, 0xa5, 0xeb, + 0x84, 0x11, 0xbb, 0x05, 0x39, 0xd7, 0x09, 0xa3, 0x46, 0x66, 0x23, 0x7b, 0x66, 0xd4, 0x08, 0xae, + 0x6f, 0x40, 0x69, 0xd7, 0x3c, 0x79, 0x86, 0x23, 0x87, 0xb9, 0xd1, 0x10, 0xca, 0x21, 0x91, 0xe3, + 0x59, 0x05, 0x18, 0x9a, 0xc1, 0x81, 0x1d, 0x91, 0x3c, 0xfb, 0xef, 0x19, 0xa8, 0x0c, 0xe6, 0xa3, + 0xaf, 0xe6, 0x76, 0x70, 0x8a, 0x75, 0xbe, 0x0f, 0xd9, 0xe8, 0x74, 0x46, 0x1c, 0xf5, 0x47, 0x57, + 0x45, 0xf6, 0x0a, 0xfe, 0x21, 0x32, 0x71, 0x24, 0xc1, 0x46, 0x78, 0xbe, 0x65, 0xc7, 0x7d, 0x90, + 0xe7, 0x05, 0x4c, 0x76, 0x2c, 0xdc, 0x14, 0xfc, 0x99, 0x1c, 0x85, 0x55, 0x7f, 0xc6, 0x36, 0x20, + 0x3f, 0x3e, 0x74, 0x5c, 0x8b, 0x06, 0x20, 0x5d, 0x67, 0x81, 0xc0, 0x51, 0x0a, 0xfc, 0x63, 0x23, + 0x74, 0xbe, 0x8e, 0x85, 0x7c, 0x31, 0xf0, 0x8f, 0x07, 0xce, 0xd7, 0xb6, 0x3e, 0x94, 0x3b, 0x0d, + 0x40, 0x61, 0xd0, 0x6a, 0x76, 0x9b, 0x5c, 0x5b, 0xc1, 0xef, 0xf6, 0xe7, 0x9d, 0xc1, 0x70, 0xa0, + 0x65, 0x58, 0x1d, 0xa0, 0xd7, 0x1f, 0x1a, 0x32, 0xbd, 0xca, 0x0a, 0xb0, 0xda, 0xe9, 0x69, 0x59, + 0xa4, 0x41, 0x78, 0xa7, 0xa7, 0xe5, 0x58, 0x11, 0xb2, 0xcd, 0xde, 0x17, 0x5a, 0x9e, 0x3e, 0xba, + 0x5d, 0xad, 0xa0, 0xff, 0xe1, 0x2a, 0x94, 0xfb, 0xa3, 0x2f, 0xed, 0x71, 0x84, 0x6d, 0xc6, 0x59, + 0x6a, 0x07, 0x2f, 0xec, 0x80, 0x9a, 0x9d, 0xe5, 0x32, 0x85, 0x0d, 0xb1, 0x46, 0xd4, 0xb8, 0x2c, + 0x5f, 0xb5, 0x46, 0x44, 0x37, 0x3e, 0xb4, 0xa7, 0x26, 0x35, 0x0e, 0xe9, 0x28, 0x85, 0xab, 0xc2, + 0x1f, 0x7d, 0x49, 0xcd, 0xcb, 0x72, 0xfc, 0x64, 0xb7, 0xa1, 0x22, 0xf2, 0x50, 0xe7, 0x17, 0x08, + 0xd0, 0xd9, 0xc9, 0x57, 0x50, 0x27, 0x1f, 0x71, 0x52, 0xae, 0x02, 0x29, 0x77, 0x30, 0x01, 0xea, + 0xc9, 0x19, 0xed, 0x8f, 0xbe, 0x14, 0xd8, 0x92, 0x98, 0xd1, 0xfe, 0xe8, 0x4b, 0x42, 0xbd, 0x05, + 0xeb, 0xe1, 0x7c, 0x14, 0x8e, 0x03, 0x67, 0x16, 0x39, 0xbe, 0x27, 0x68, 0xca, 0x44, 0xa3, 0xa9, + 0x08, 0x22, 0xbe, 0x0f, 0xa5, 0xd9, 0x7c, 0x64, 0x38, 0xde, 0xc4, 0x27, 0xe1, 0x5e, 0x79, 0x54, + 0x13, 0x03, 0xb3, 0x37, 0x1f, 0x75, 0xbc, 0x89, 0xcf, 0x8b, 0x33, 0xf1, 0xa1, 0xdf, 0x83, 0xa2, + 0x84, 0xe1, 0xee, 0x1d, 0xd9, 0x9e, 0xe9, 0x45, 0x46, 0xb2, 0xed, 0x97, 0x04, 0xa0, 0x63, 0xe9, + 0x7f, 0x9c, 0x01, 0x6d, 0xa0, 0x14, 0xb3, 0x6b, 0x47, 0xe6, 0xb9, 0x52, 0xe1, 0x55, 0x00, 0x73, + 0x3c, 0xf6, 0xe7, 0x22, 0x1b, 0x31, 0x79, 0xca, 0x12, 0xd2, 0xb1, 0xd4, 0xbe, 0xc9, 0xa6, 0xfa, + 0xe6, 0x0e, 0x54, 0x63, 0x3e, 0x65, 0x41, 0x57, 0x24, 0x2c, 0xee, 0x9d, 0x70, 0x9e, 0x5a, 0xd5, + 0xc5, 0x70, 0x2e, 0xb8, 0xaf, 0x42, 0x81, 0x74, 0x84, 0x30, 0xee, 0x71, 0x91, 0xd2, 0xff, 0x7d, + 0x06, 0x6a, 0x1d, 0xcf, 0xb2, 0x4f, 0x06, 0x63, 0xd3, 0xa3, 0x56, 0xea, 0x50, 0x73, 0x42, 0xc3, + 0x41, 0x98, 0x11, 0x8e, 0x4d, 0x4f, 0x6e, 0xef, 0x15, 0x27, 0x4c, 0xe8, 0xb0, 0x0d, 0x82, 0x80, + 0x8a, 0x5a, 0xa5, 0x1c, 0xcb, 0x04, 0xa1, 0xc2, 0xee, 0xc1, 0xda, 0xc8, 0x76, 0x7d, 0xef, 0xc0, + 0x88, 0x7c, 0x43, 0xe8, 0x29, 0xa2, 0x2d, 0x35, 0x01, 0x1e, 0xfa, 0x43, 0xd2, 0x57, 0x2e, 0x43, + 0x7e, 0x66, 0x06, 0x51, 0xd8, 0xc8, 0x6d, 0x64, 0x71, 0x89, 0x52, 0x02, 0xbb, 0xd9, 0x09, 0x8d, + 0xb9, 0xe7, 0x7c, 0x35, 0x17, 0xcd, 0x28, 0xf1, 0x92, 0x13, 0xee, 0x53, 0x9a, 0xdd, 0x07, 0x4d, + 0x94, 0x4c, 0xd9, 0xaa, 0x73, 0xa8, 0x4e, 0x70, 0xca, 0x98, 0x04, 0xd9, 0x5f, 0x5f, 0x85, 0xd2, + 0xf6, 0xdc, 0x1b, 0xe3, 0x60, 0xb0, 0xd7, 0x20, 0x37, 0x99, 0x7b, 0x63, 0x6a, 0x4b, 0xb2, 0x19, + 0x26, 0x6b, 0x80, 0x13, 0x12, 0xa5, 0x8b, 0x19, 0x1c, 0xa0, 0x54, 0x5a, 0x92, 0x2e, 0x08, 0xd7, + 0xff, 0x49, 0x46, 0xe4, 0xb8, 0xed, 0x9a, 0x07, 0xac, 0x04, 0xb9, 0x5e, 0xbf, 0xd7, 0xd6, 0x56, + 0x58, 0x15, 0x4a, 0x9d, 0xde, 0xb0, 0xcd, 0x7b, 0xcd, 0xae, 0x96, 0xa1, 0xa5, 0x3a, 0x6c, 0x6e, + 0x76, 0xdb, 0xda, 0x2a, 0x62, 0x9e, 0xf5, 0xbb, 0xcd, 0x61, 0xa7, 0xdb, 0xd6, 0x72, 0x02, 0xc3, + 0x3b, 0xad, 0xa1, 0x56, 0x62, 0x1a, 0x54, 0xf7, 0x78, 0x7f, 0x6b, 0xbf, 0xd5, 0x36, 0x7a, 0xfb, + 0xdd, 0xae, 0xa6, 0xb1, 0x4b, 0xb0, 0x96, 0x40, 0xfa, 0x02, 0xb8, 0x81, 0x2c, 0xcf, 0x9a, 0xbc, + 0xc9, 0x9f, 0x68, 0x9f, 0xb1, 0x12, 0x64, 0x9b, 0x4f, 0x9e, 0x68, 0x3f, 0xc7, 0x55, 0x5f, 0x7e, + 0xde, 0xe9, 0x19, 0xcf, 0x9a, 0xdd, 0xfd, 0xb6, 0xf6, 0xf3, 0xd5, 0x38, 0xdd, 0xe7, 0x5b, 0x6d, + 0xae, 0xfd, 0x3c, 0xc7, 0xd6, 0xa1, 0xfa, 0xb3, 0x7e, 0xaf, 0xbd, 0xdb, 0xdc, 0xdb, 0xa3, 0x8a, + 0xfc, 0xbc, 0xa4, 0xff, 0xd7, 0x1c, 0xe4, 0xb0, 0x25, 0x4c, 0x5f, 0x48, 0xb8, 0xa4, 0x89, 0x28, + 0x62, 0x36, 0x73, 0x7f, 0xf6, 0x17, 0xb7, 0x57, 0x84, 0x6c, 0xbb, 0x03, 0x59, 0xd7, 0x89, 0x68, + 0x58, 0x93, 0x75, 0x21, 0xb5, 0xbe, 0x9d, 0x15, 0x8e, 0x38, 0x76, 0x0b, 0x32, 0x42, 0xc8, 0x55, + 0x1e, 0xd5, 0xe5, 0xc2, 0x91, 0xbb, 0xe4, 0xce, 0x0a, 0xcf, 0xcc, 0xd8, 0x4d, 0xc8, 0xbc, 0x90, + 0x12, 0xaf, 0x2a, 0xf0, 0x62, 0x9f, 0x44, 0xec, 0x0b, 0xb6, 0x01, 0xd9, 0xb1, 0x2f, 0x74, 0xba, + 0x04, 0x2f, 0x76, 0x0d, 0xcc, 0x7f, 0xec, 0xbb, 0xec, 0x35, 0xc8, 0x06, 0xe6, 0x31, 0x8d, 0x6c, + 0x32, 0x5c, 0xc9, 0xb6, 0x84, 0x44, 0x81, 0x79, 0x8c, 0x95, 0x98, 0x90, 0x8c, 0x48, 0x2a, 0x11, + 0x8f, 0x37, 0x16, 0x33, 0x61, 0x1b, 0x90, 0x39, 0x26, 0x29, 0x91, 0xa8, 0x31, 0xcf, 0x1d, 0xcf, + 0xf2, 0x8f, 0x07, 0x33, 0x7b, 0x8c, 0x14, 0xc7, 0xec, 0x75, 0xc8, 0x86, 0xf3, 0x11, 0x49, 0x89, + 0xca, 0xa3, 0xf5, 0x25, 0x79, 0x8f, 0x05, 0x85, 0xf3, 0x11, 0xbb, 0x07, 0xb9, 0xb1, 0x1f, 0x04, + 0x52, 0x52, 0x68, 0x71, 0x85, 0xe3, 0xad, 0x0e, 0xd5, 0x3a, 0xc4, 0x63, 0x81, 0x11, 0x69, 0x85, + 0x09, 0xd1, 0x62, 0xaf, 0xc1, 0x02, 0x23, 0x76, 0x57, 0x6e, 0x60, 0x55, 0xb5, 0xd6, 0xf1, 0xf6, + 0x86, 0xf9, 0x20, 0x16, 0x07, 0x69, 0x6a, 0x9e, 0x90, 0xce, 0x98, 0x10, 0xc5, 0xfb, 0x1a, 0xd6, + 0x69, 0x6a, 0x9e, 0xb0, 0xbb, 0x90, 0x7d, 0x61, 0x8f, 0x49, 0x7d, 0x4c, 0x4a, 0x93, 0x83, 0xf4, + 0x8c, 0x9a, 0x87, 0x68, 0x9a, 0xf7, 0xbe, 0x6b, 0x91, 0x26, 0x99, 0x8c, 0xe5, 0xb6, 0xef, 0x5a, + 0xcf, 0x68, 0x2c, 0x09, 0x89, 0xdb, 0xb9, 0x39, 0x3f, 0x41, 0x69, 0xa4, 0x89, 0x8d, 0xd7, 0x9c, + 0x9f, 0x74, 0x2c, 0x14, 0xec, 0x9e, 0xf5, 0x82, 0xf4, 0xc7, 0x0c, 0xc7, 0x4f, 0x34, 0x70, 0x42, + 0xdb, 0xb5, 0xc7, 0x91, 0xf3, 0xc2, 0x89, 0x4e, 0x49, 0x43, 0xcc, 0x70, 0x15, 0xb4, 0x59, 0x80, + 0x9c, 0x7d, 0x32, 0x0b, 0xf4, 0x1d, 0x28, 0xca, 0x52, 0x96, 0xac, 0xa4, 0xeb, 0x50, 0x72, 0x42, + 0x63, 0xec, 0x7b, 0x61, 0x24, 0xf5, 0xa2, 0xa2, 0x13, 0xb6, 0x30, 0x89, 0xe2, 0xd2, 0x32, 0x23, + 0xb1, 0xc1, 0x54, 0x39, 0x7d, 0xeb, 0x8f, 0x00, 0x16, 0xcd, 0xc2, 0x3a, 0xb9, 0xb6, 0x17, 0xab, + 0x60, 0xae, 0xed, 0x25, 0x3c, 0xab, 0x0a, 0xcf, 0x75, 0x28, 0x27, 0xba, 0x2d, 0xab, 0x42, 0xc6, + 0x94, 0x5b, 0x5b, 0xc6, 0xd4, 0xef, 0xa3, 0xaa, 0x19, 0x6b, 0xaf, 0x69, 0x1c, 0xa6, 0xe2, 0x0d, + 0x2f, 0x33, 0xd2, 0x7f, 0x08, 0x55, 0x6e, 0x87, 0x73, 0x37, 0x6a, 0xf9, 0xee, 0x96, 0x3d, 0x61, + 0x6f, 0x03, 0x24, 0xe9, 0x50, 0x6a, 0x20, 0x8b, 0xb9, 0xbb, 0x65, 0x4f, 0xb8, 0x82, 0xd7, 0xff, + 0x5e, 0x8e, 0x74, 0xb9, 0x2d, 0xa1, 0x44, 0x49, 0x6d, 0x29, 0xa3, 0x68, 0x4b, 0xc9, 0xde, 0xb0, + 0x9a, 0xd6, 0x18, 0x0f, 0x1d, 0xcb, 0xb2, 0xbd, 0x58, 0x33, 0x14, 0x29, 0x1c, 0x6c, 0xd3, 0x3d, + 0xa0, 0x05, 0x55, 0x7f, 0xc4, 0xe2, 0x42, 0xa7, 0xb3, 0xc0, 0x0e, 0x43, 0xa1, 0x93, 0x98, 0xee, + 0x41, 0xbc, 0xb6, 0xf3, 0xdf, 0xb4, 0xb6, 0xaf, 0x43, 0xc9, 0xf3, 0x23, 0x83, 0xec, 0xb6, 0x82, + 0xe8, 0x7d, 0x69, 0xa0, 0xb2, 0x37, 0xa0, 0x28, 0x35, 0x6e, 0xb9, 0xa8, 0xe4, 0x74, 0xd9, 0x12, + 0x40, 0x1e, 0x63, 0x59, 0x03, 0x15, 0xb8, 0xe9, 0xd4, 0xf6, 0xa2, 0x78, 0x0f, 0x96, 0x49, 0xf6, + 0x16, 0x94, 0x7d, 0xcf, 0x10, 0x6a, 0xb9, 0x5c, 0x55, 0x72, 0xfa, 0xf6, 0xbd, 0x7d, 0x82, 0xf2, + 0x92, 0x2f, 0xbf, 0xb0, 0x2a, 0xae, 0x7f, 0x6c, 0x8c, 0xcd, 0xc0, 0xa2, 0x95, 0x55, 0xe2, 0x45, + 0xd7, 0x3f, 0x6e, 0x99, 0x81, 0x25, 0x74, 0x92, 0xaf, 0xbc, 0xf9, 0x94, 0x56, 0x53, 0x8d, 0xcb, + 0x14, 0xbb, 0x09, 0xe5, 0xb1, 0x3b, 0x0f, 0x23, 0x3b, 0xd8, 0x3c, 0x15, 0x86, 0x16, 0x5f, 0x00, + 0xb0, 0x5e, 0xb3, 0xc0, 0x99, 0x9a, 0xc1, 0x29, 0x2d, 0x9d, 0x12, 0x8f, 0x93, 0xb4, 0xd1, 0x1c, + 0x39, 0xd6, 0x89, 0xb0, 0xb6, 0xb8, 0x48, 0x20, 0xfd, 0x21, 0xd9, 0xc2, 0x21, 0xad, 0x8f, 0x12, + 0x8f, 0x93, 0x34, 0x0e, 0xf4, 0x49, 0x2b, 0xa2, 0xcc, 0x65, 0x2a, 0xa5, 0x50, 0xaf, 0x5f, 0xa8, + 0x50, 0xb3, 0xb3, 0x3a, 0x8d, 0x1f, 0x38, 0x07, 0x8e, 0xd4, 0x48, 0x2e, 0x09, 0x9d, 0x46, 0x80, + 0x68, 0xa3, 0xfa, 0x0a, 0x8a, 0xb2, 0x8b, 0x71, 0x07, 0xc2, 0xe5, 0x93, 0x16, 0xcf, 0x62, 0x07, + 0x42, 0x38, 0x7b, 0x0d, 0x6a, 0x32, 0xaf, 0x30, 0x0a, 0x1c, 0xef, 0x40, 0x4e, 0x9e, 0xaa, 0x00, + 0x0e, 0x08, 0x86, 0x8a, 0x02, 0x0e, 0xaf, 0x61, 0x8e, 0x1c, 0x17, 0x97, 0x69, 0x56, 0xfa, 0x21, + 0xe6, 0xae, 0xdb, 0x14, 0x20, 0xbd, 0x0f, 0xa5, 0x78, 0x40, 0x7e, 0x2d, 0x65, 0xea, 0xbf, 0x93, + 0x81, 0x0a, 0xa9, 0x07, 0x7d, 0x52, 0x7e, 0xd8, 0xdb, 0xc0, 0xc6, 0x81, 0x6d, 0x46, 0xb6, 0x61, + 0x9f, 0x44, 0x81, 0x29, 0x95, 0x00, 0xa1, 0x49, 0x68, 0x02, 0xd3, 0x46, 0x84, 0xd0, 0x03, 0x6e, + 0x43, 0x65, 0x66, 0x06, 0x61, 0xac, 0x30, 0x8a, 0x02, 0x40, 0x80, 0xa4, 0xba, 0xa6, 0x79, 0x07, + 0x81, 0x39, 0x35, 0x22, 0xff, 0xc8, 0xf6, 0x84, 0xaa, 0x2c, 0x8c, 0x84, 0x3a, 0xc1, 0x87, 0x08, + 0x26, 0x8d, 0xf9, 0x3f, 0x64, 0xa0, 0xb6, 0x27, 0x46, 0xfd, 0xa9, 0x7d, 0xba, 0x25, 0x2c, 0xb3, + 0x71, 0xbc, 0x62, 0x73, 0x9c, 0xbe, 0xd9, 0x2d, 0xa8, 0xcc, 0x8e, 0xec, 0x53, 0x23, 0x65, 0xc5, + 0x94, 0x11, 0xd4, 0xa2, 0xb5, 0xf9, 0x26, 0x14, 0x7c, 0x6a, 0x88, 0xdc, 0xe3, 0xe4, 0xd6, 0xa0, + 0xb4, 0x90, 0x4b, 0x02, 0x54, 0x97, 0x92, 0xac, 0x54, 0xbd, 0x4c, 0x66, 0x46, 0xd5, 0xbf, 0x0c, + 0x79, 0x44, 0x85, 0x8d, 0xbc, 0xd0, 0x73, 0x28, 0xc1, 0xde, 0x83, 0xda, 0xd8, 0x9f, 0xce, 0x8c, + 0x98, 0x5d, 0xee, 0x76, 0x69, 0x99, 0x52, 0x41, 0x92, 0x3d, 0x91, 0x97, 0xfe, 0xfb, 0x59, 0x28, + 0x51, 0x1d, 0xa4, 0x58, 0x71, 0xac, 0x93, 0x58, 0xac, 0x94, 0x79, 0xde, 0xb1, 0x50, 0x6a, 0xbf, + 0x44, 0x35, 0x4b, 0x54, 0xae, 0xac, 0xaa, 0x72, 0x5d, 0x85, 0x82, 0xd4, 0xb7, 0x72, 0x42, 0xee, + 0xcc, 0x2f, 0xd6, 0xb6, 0xf2, 0xe7, 0x69, 0x5b, 0x38, 0x84, 0x82, 0xc6, 0x3e, 0xc1, 0xfd, 0x4d, + 0x88, 0x16, 0x20, 0x50, 0x1b, 0x21, 0xaa, 0xd0, 0x28, 0xa6, 0x85, 0x46, 0x03, 0x8a, 0x2f, 0x9c, + 0xd0, 0xc1, 0x09, 0x52, 0x12, 0xcb, 0x50, 0x26, 0x95, 0x61, 0x28, 0xbf, 0x6c, 0x18, 0x92, 0x66, + 0x9b, 0xee, 0x81, 0x50, 0xe9, 0xe3, 0x66, 0x37, 0xdd, 0x03, 0x9f, 0xbd, 0x0f, 0x57, 0x16, 0x68, + 0xd9, 0x1a, 0x72, 0x70, 0x91, 0x0f, 0x87, 0xb3, 0x84, 0x92, 0x5a, 0x44, 0x36, 0xd7, 0x03, 0x58, + 0x57, 0x58, 0x66, 0xa8, 0xde, 0x84, 0x24, 0x73, 0xca, 0x7c, 0x2d, 0x21, 0x27, 0xad, 0x27, 0xd4, + 0xff, 0xf9, 0x2a, 0xd4, 0xb6, 0xfd, 0xc0, 0x76, 0x0e, 0xbc, 0xc5, 0xac, 0x5b, 0xd2, 0xfc, 0xe3, + 0x99, 0xb8, 0xaa, 0xcc, 0xc4, 0xdb, 0x50, 0x99, 0x08, 0x46, 0x23, 0x1a, 0x09, 0x87, 0x40, 0x8e, + 0x83, 0x04, 0x0d, 0x47, 0x2e, 0xae, 0xe6, 0x98, 0x80, 0x98, 0x73, 0xc4, 0x1c, 0x33, 0xe1, 0x5e, + 0xc3, 0x7e, 0x40, 0x52, 0xd7, 0xb2, 0x5d, 0x3b, 0x12, 0xc3, 0x53, 0x7f, 0xf4, 0x6a, 0xbc, 0xd3, + 0x2b, 0x75, 0x7a, 0xc8, 0xed, 0x49, 0x93, 0xd4, 0x23, 0x14, 0xc2, 0x5b, 0x44, 0x2e, 0x79, 0xa5, + 0xc4, 0x2e, 0x7c, 0x4b, 0x5e, 0x21, 0x39, 0xf4, 0x21, 0x94, 0x13, 0x30, 0xea, 0xba, 0xbc, 0x2d, + 0xf5, 0xdb, 0x15, 0x56, 0x81, 0x62, 0xab, 0x39, 0x68, 0x35, 0xb7, 0xda, 0x5a, 0x06, 0x51, 0x83, + 0xf6, 0x50, 0xe8, 0xb4, 0xab, 0x6c, 0x0d, 0x2a, 0x98, 0xda, 0x6a, 0x6f, 0x37, 0xf7, 0xbb, 0x43, + 0x2d, 0xcb, 0x6a, 0x50, 0xee, 0xf5, 0x8d, 0x66, 0x6b, 0xd8, 0xe9, 0xf7, 0xb4, 0x9c, 0xfe, 0x19, + 0x94, 0x5a, 0x87, 0xf6, 0xf8, 0xe8, 0xa2, 0x5e, 0x24, 0x83, 0xda, 0x1e, 0x1f, 0x49, 0xfd, 0xf4, + 0x8c, 0x41, 0x6d, 0x8f, 0x8f, 0xf4, 0x67, 0x50, 0x6d, 0xc5, 0x9b, 0xc2, 0x45, 0xb9, 0x3c, 0x82, + 0x3a, 0x2d, 0xbe, 0xf1, 0x28, 0x5e, 0x7d, 0xab, 0xe7, 0xac, 0xbe, 0x2a, 0xd2, 0xb4, 0x46, 0x72, + 0xf9, 0x7d, 0x08, 0x95, 0xbd, 0xc0, 0x9f, 0xd9, 0x41, 0x44, 0xd9, 0x6a, 0x90, 0x3d, 0xb2, 0x4f, + 0x65, 0xae, 0xf8, 0xb9, 0x70, 0x39, 0xac, 0xaa, 0x2e, 0x87, 0x47, 0x50, 0x8a, 0xd9, 0xbe, 0x35, + 0xcf, 0x8f, 0x51, 0x8a, 0x11, 0x8f, 0x63, 0x87, 0x58, 0xd8, 0x43, 0x80, 0x59, 0x02, 0x90, 0xda, + 0x47, 0xac, 0x79, 0xcb, 0xcc, 0xb9, 0x42, 0xa1, 0xbf, 0x0a, 0xc5, 0x67, 0x8e, 0x7d, 0x2c, 0x9b, + 0xff, 0xc2, 0xb1, 0x8f, 0xe3, 0xe6, 0xe3, 0xb7, 0xfe, 0xa7, 0x25, 0x28, 0xd1, 0x54, 0xdf, 0xba, + 0xd8, 0xcb, 0xf3, 0x5d, 0x14, 0x94, 0x0d, 0x39, 0xb5, 0x73, 0xe7, 0xa8, 0x45, 0x62, 0xa2, 0xbf, + 0x0a, 0xa0, 0x2c, 0x3b, 0x21, 0x44, 0xca, 0x51, 0xb2, 0xda, 0x70, 0x67, 0xa7, 0x6d, 0x21, 0xfc, + 0xca, 0x95, 0x06, 0xdd, 0x02, 0xc0, 0x1e, 0x8a, 0x7d, 0x97, 0x4c, 0x38, 0xa1, 0x9b, 0x5c, 0x8a, + 0xf5, 0xeb, 0x91, 0x6b, 0xc7, 0x5a, 0x3f, 0x6d, 0xc6, 0x98, 0x20, 0x91, 0x62, 0x07, 0x21, 0x4a, + 0x0e, 0x72, 0xf6, 0xf2, 0x38, 0xc9, 0xde, 0x80, 0x1c, 0xca, 0x5b, 0xa9, 0xa5, 0x5f, 0x8a, 0x7b, + 0x50, 0xd9, 0x30, 0x38, 0x11, 0xb0, 0xfb, 0x50, 0xa4, 0x55, 0x6e, 0xe3, 0xa2, 0x57, 0x7a, 0x3b, + 0x96, 0xbf, 0x3c, 0x46, 0xb3, 0x37, 0x21, 0x3f, 0x39, 0xb2, 0x4f, 0xc3, 0x46, 0x8d, 0xe8, 0x2e, + 0x9d, 0xb3, 0x7c, 0xb8, 0xa0, 0x60, 0x77, 0xa1, 0x1e, 0xd8, 0x13, 0x83, 0xfc, 0x3e, 0xb8, 0xde, + 0xc3, 0x46, 0x9d, 0x96, 0x73, 0x35, 0xb0, 0x27, 0x2d, 0x04, 0x0e, 0x47, 0x6e, 0xc8, 0xee, 0x41, + 0x81, 0x26, 0x32, 0xaa, 0x25, 0x4a, 0xc9, 0xf1, 0xaa, 0xe0, 0x12, 0xcb, 0xde, 0x07, 0x90, 0xca, + 0x8f, 0x31, 0x3a, 0x25, 0xaf, 0x68, 0x25, 0x51, 0x0e, 0x95, 0xf9, 0xaf, 0xaa, 0x48, 0x6f, 0x40, + 0x1e, 0x27, 0x49, 0xd8, 0xb8, 0x46, 0x39, 0xaf, 0xa7, 0x67, 0x10, 0xd5, 0x94, 0xf0, 0xec, 0x3e, + 0x94, 0x70, 0xa2, 0x18, 0x38, 0x1c, 0x0d, 0x55, 0x1b, 0x94, 0xb3, 0x0a, 0x85, 0xb4, 0x7d, 0x3c, + 0xf8, 0xca, 0x65, 0x0f, 0x20, 0x67, 0xd9, 0x93, 0xb0, 0x71, 0x9d, 0x72, 0xbc, 0xaa, 0x8c, 0x0b, + 0xca, 0x8d, 0x2d, 0x7b, 0x42, 0x0a, 0x2a, 0xd1, 0xb0, 0x1d, 0xa8, 0xe3, 0x34, 0x7a, 0x44, 0xfb, + 0x2e, 0x76, 0x5f, 0xe3, 0x06, 0x71, 0xdd, 0x39, 0xc3, 0xd5, 0x93, 0x44, 0xd4, 0xd9, 0x6d, 0x2f, + 0x0a, 0x4e, 0x79, 0xcd, 0x53, 0x61, 0xec, 0x06, 0x5a, 0x11, 0x5d, 0x7f, 0x7c, 0x64, 0x5b, 0x8d, + 0x57, 0x62, 0x1f, 0x81, 0x48, 0xb3, 0x4f, 0xa1, 0x46, 0x13, 0x0b, 0x93, 0x58, 0x78, 0xe3, 0x26, + 0xc9, 0x35, 0x75, 0xca, 0xc4, 0x28, 0x9e, 0xa6, 0x44, 0x69, 0xeb, 0x84, 0x46, 0x64, 0x4f, 0x67, + 0x7e, 0x80, 0x7a, 0xe4, 0xab, 0xb1, 0xef, 0x63, 0x18, 0x83, 0x70, 0x4f, 0x4c, 0xce, 0x70, 0x0c, + 0x7f, 0x32, 0x09, 0xed, 0xa8, 0x71, 0x8b, 0xd6, 0x4d, 0x3d, 0x3e, 0xca, 0xe9, 0x13, 0x94, 0xf6, + 0xa4, 0xd0, 0xb0, 0x4e, 0x3d, 0x73, 0xea, 0x8c, 0x1b, 0xb7, 0x85, 0xba, 0xea, 0x84, 0x5b, 0x02, + 0xa0, 0x6a, 0x8c, 0x1b, 0x29, 0x8d, 0xf1, 0x12, 0xe4, 0xad, 0x11, 0x2e, 0xc7, 0x3b, 0x94, 0x6d, + 0xce, 0x1a, 0x75, 0xac, 0x1b, 0x4f, 0x48, 0x4b, 0xa4, 0x4a, 0x7e, 0x78, 0x46, 0x16, 0xa4, 0x66, + 0xb2, 0x22, 0x34, 0x76, 0x56, 0x54, 0x91, 0xb0, 0x99, 0x87, 0xac, 0x65, 0x4f, 0x6e, 0x7c, 0x06, + 0x6c, 0xb9, 0x7b, 0x5f, 0x26, 0x98, 0xf2, 0x52, 0x30, 0xfd, 0x60, 0xf5, 0x93, 0x8c, 0xfe, 0x29, + 0xd4, 0x52, 0xeb, 0xee, 0x5c, 0x01, 0x2b, 0x14, 0x0d, 0x73, 0x2a, 0x0d, 0x33, 0x91, 0xd0, 0xff, + 0x75, 0x16, 0xaa, 0x3b, 0x66, 0x78, 0xb8, 0x6b, 0xce, 0x06, 0x91, 0x19, 0x85, 0xd8, 0xe1, 0x87, + 0x66, 0x78, 0x38, 0x35, 0x67, 0x42, 0xab, 0xcb, 0x08, 0x9b, 0x52, 0xc2, 0x50, 0xa5, 0xc3, 0xa1, + 0xc6, 0x64, 0xdf, 0xdb, 0x7b, 0x2a, 0x0d, 0xc6, 0x24, 0x8d, 0x0b, 0x3d, 0x3c, 0x9c, 0x4f, 0x26, + 0xd2, 0xc3, 0x54, 0xe2, 0x71, 0x92, 0xdd, 0x85, 0x9a, 0xfc, 0x24, 0x95, 0xee, 0x44, 0x9e, 0xaa, + 0xa5, 0x81, 0xec, 0x31, 0x54, 0x24, 0x60, 0x18, 0x8b, 0xa5, 0x7a, 0xe2, 0x08, 0x58, 0x20, 0xb8, + 0x4a, 0xc5, 0x7e, 0x0a, 0x57, 0x94, 0xe4, 0xb6, 0x1f, 0xec, 0xce, 0xdd, 0xc8, 0x69, 0xf5, 0xe4, + 0xfe, 0xf9, 0xca, 0x12, 0xfb, 0x82, 0x84, 0x9f, 0xcf, 0x99, 0xae, 0xed, 0xae, 0xe3, 0x91, 0x94, + 0xcb, 0xf2, 0x34, 0xf0, 0x0c, 0x95, 0x79, 0x42, 0xc2, 0x2d, 0x4d, 0x65, 0x9e, 0xe0, 0xf4, 0x97, + 0x80, 0x5d, 0x3b, 0x3a, 0xf4, 0x2d, 0x52, 0x9e, 0x92, 0xe9, 0x3f, 0x50, 0x51, 0x3c, 0x4d, 0x89, + 0xdd, 0x89, 0x66, 0xc2, 0xd8, 0x8b, 0x48, 0x85, 0xca, 0xf2, 0x38, 0x89, 0x82, 0x3f, 0x30, 0xbd, + 0x03, 0x3b, 0x6c, 0x54, 0x36, 0xb2, 0xf7, 0x33, 0x5c, 0xa6, 0xf4, 0xbf, 0xbb, 0x0a, 0x79, 0x31, + 0x92, 0xaf, 0x40, 0x79, 0xe4, 0xfa, 0xe3, 0x23, 0x03, 0xcd, 0x36, 0xe9, 0x1d, 0x25, 0x40, 0x6f, + 0x3e, 0x15, 0xaa, 0x8f, 0x34, 0xf8, 0x33, 0x9c, 0xbe, 0x31, 0x4b, 0x7f, 0x1e, 0x61, 0x59, 0x59, + 0x82, 0xca, 0x14, 0x56, 0x22, 0xf0, 0x8f, 0x69, 0x36, 0xe4, 0x08, 0x11, 0x27, 0xc9, 0x01, 0x4b, + 0x7b, 0x08, 0x32, 0xe5, 0x09, 0x57, 0x22, 0x40, 0xcb, 0x8b, 0xce, 0x3a, 0x27, 0x0a, 0x4b, 0xce, + 0x09, 0x76, 0x0b, 0x50, 0xb1, 0x1a, 0xdb, 0x7d, 0xcf, 0x6e, 0xf5, 0xa8, 0x87, 0x4b, 0x5c, 0x81, + 0xe0, 0x1a, 0xb0, 0xfc, 0x19, 0x75, 0x6a, 0x9e, 0xe3, 0x27, 0xfb, 0x28, 0x99, 0x9d, 0xd4, 0x46, + 0xa9, 0x86, 0x4a, 0x19, 0xab, 0xce, 0x63, 0x9e, 0xa2, 0xc3, 0x9c, 0x50, 0x70, 0x0a, 0x35, 0x14, + 0x3f, 0xf5, 0x36, 0x00, 0xf7, 0x8f, 0x43, 0x3b, 0x22, 0x2f, 0xdc, 0x35, 0x6a, 0x62, 0xea, 0x6c, + 0xc4, 0x3f, 0xde, 0xf3, 0xc3, 0xc4, 0x18, 0x5b, 0x3d, 0xdf, 0x18, 0xd3, 0xdf, 0x85, 0x22, 0xee, + 0xaa, 0x66, 0x64, 0xb2, 0xbb, 0xd2, 0xf1, 0x21, 0x74, 0x01, 0xe9, 0x01, 0x5a, 0x94, 0x21, 0x5d, + 0x21, 0xdd, 0xb8, 0x5c, 0xe2, 0xb9, 0xa3, 0xd8, 0x42, 0x89, 0x44, 0x97, 0x19, 0xca, 0x7d, 0xfa, + 0x15, 0x28, 0x63, 0xd5, 0xc8, 0xa9, 0x2c, 0x97, 0x7e, 0x29, 0xf0, 0x8f, 0x5b, 0x98, 0xd6, 0xff, + 0x63, 0x06, 0x2a, 0xfd, 0xc0, 0xc2, 0xad, 0x64, 0x30, 0xb3, 0xc7, 0x2f, 0xb5, 0x1d, 0x71, 0x57, + 0xf7, 0x5d, 0xd7, 0x24, 0x1d, 0x5e, 0xda, 0x22, 0x09, 0x80, 0xbd, 0x0f, 0xb9, 0x89, 0x6b, 0x1e, + 0xd0, 0xf0, 0x27, 0x6a, 0xa7, 0x92, 0x7d, 0xfc, 0xbd, 0xed, 0x9a, 0x07, 0x9c, 0x48, 0xf5, 0xdf, + 0x4a, 0xca, 0x27, 0x27, 0xac, 0xea, 0x7a, 0x5d, 0xa1, 0x03, 0x8e, 0x41, 0x4b, 0xcb, 0xb0, 0x12, + 0xe4, 0xb6, 0xda, 0x83, 0x96, 0x50, 0x36, 0x51, 0xed, 0x1c, 0x18, 0xdb, 0x1d, 0x3e, 0x18, 0x6a, + 0x39, 0x3a, 0x31, 0x21, 0x40, 0xb7, 0x39, 0x18, 0x6a, 0x25, 0x06, 0x50, 0xd8, 0xef, 0x75, 0x7e, + 0xba, 0xdf, 0xd6, 0x34, 0xfd, 0xdf, 0x66, 0x00, 0x16, 0x1e, 0x42, 0xf6, 0x16, 0x54, 0x8e, 0x29, + 0x65, 0x28, 0xae, 0x63, 0xb5, 0x8d, 0x20, 0xd0, 0xa4, 0x71, 0xbc, 0x03, 0x55, 0x34, 0xa5, 0x1c, + 0x3a, 0x7a, 0x18, 0x9d, 0x9e, 0xe3, 0x43, 0xae, 0x24, 0xf8, 0xcd, 0x53, 0xf6, 0x36, 0x94, 0x7c, + 0x6c, 0x07, 0x92, 0x66, 0xd5, 0xad, 0x58, 0x69, 0x3e, 0x2f, 0xfa, 0x22, 0x81, 0xbb, 0xf6, 0x24, + 0x88, 0x6d, 0xcb, 0x84, 0x74, 0x1b, 0x41, 0x2d, 0xd7, 0x9c, 0x87, 0x36, 0x17, 0xf8, 0x44, 0x10, + 0xe7, 0x17, 0x82, 0x58, 0xff, 0x19, 0xd4, 0x07, 0xe6, 0x74, 0x26, 0xc4, 0x35, 0x35, 0x8c, 0x41, + 0x0e, 0xe7, 0x84, 0x9c, 0x7a, 0xf4, 0x8d, 0x8b, 0x6e, 0xcf, 0x0e, 0xc6, 0xb6, 0x17, 0xaf, 0xd1, + 0x38, 0x89, 0xe2, 0x77, 0x3f, 0x74, 0xbc, 0x03, 0xee, 0x1f, 0xc7, 0x21, 0x0b, 0x71, 0x5a, 0xff, + 0xfb, 0x19, 0xa8, 0x28, 0xd5, 0x60, 0xef, 0x42, 0x8e, 0xd4, 0xbb, 0x8c, 0x2a, 0x08, 0x15, 0x02, + 0xf1, 0x2d, 0x14, 0x02, 0x24, 0x64, 0xf7, 0x20, 0x1f, 0x46, 0x66, 0x10, 0x3b, 0x9b, 0x35, 0x85, + 0x63, 0xd3, 0x9f, 0x7b, 0x16, 0x17, 0x68, 0xa6, 0x43, 0xd6, 0xf6, 0x2c, 0x69, 0x8d, 0x2f, 0x53, + 0x21, 0x52, 0xdf, 0x80, 0x72, 0x92, 0x3d, 0x4e, 0x01, 0xde, 0x7f, 0x3e, 0xd0, 0x56, 0x58, 0x19, + 0xf2, 0xbc, 0xd9, 0x7b, 0xd2, 0xd6, 0x32, 0xfa, 0x1f, 0x67, 0x00, 0x16, 0x5c, 0xec, 0x61, 0xaa, + 0xb6, 0x37, 0xce, 0xe6, 0xfa, 0x90, 0xfe, 0x2a, 0x95, 0xbd, 0x09, 0xe5, 0xb9, 0x47, 0x40, 0xdb, + 0x92, 0x3b, 0xd1, 0x02, 0xc0, 0x6e, 0x42, 0x36, 0x0e, 0x6e, 0x38, 0x73, 0xa0, 0xfc, 0xc2, 0x74, + 0xf5, 0x1f, 0x40, 0x39, 0xc9, 0x0e, 0x2d, 0x9e, 0xed, 0x7e, 0xb7, 0xdb, 0x7f, 0xde, 0xe9, 0x3d, + 0xd1, 0x56, 0x30, 0xb9, 0xc7, 0xdb, 0xad, 0xf6, 0x16, 0x26, 0x33, 0x38, 0x67, 0x5b, 0xfb, 0x9c, + 0xb7, 0x7b, 0x43, 0x83, 0xf7, 0x9f, 0x6b, 0xab, 0xfa, 0xff, 0x9f, 0x83, 0xf5, 0xbe, 0xb7, 0x35, + 0x9f, 0xb9, 0xce, 0xd8, 0x8c, 0xec, 0xa7, 0xf6, 0x69, 0x2b, 0x3a, 0xc1, 0x0d, 0xd6, 0x8c, 0xa2, + 0x40, 0x2c, 0xe6, 0x32, 0x17, 0x09, 0x61, 0xb1, 0x87, 0x76, 0x10, 0x91, 0x43, 0x42, 0x5d, 0xc5, + 0x75, 0x01, 0x6f, 0xf9, 0x2e, 0xad, 0x65, 0xf6, 0x23, 0xb8, 0x22, 0xac, 0x7c, 0x41, 0x89, 0x2a, + 0xa5, 0x41, 0x8b, 0x39, 0xbb, 0x34, 0x75, 0x99, 0x20, 0x44, 0x56, 0x24, 0x23, 0x11, 0x76, 0x1b, + 0x2a, 0x0b, 0xf6, 0xf8, 0x04, 0x07, 0x12, 0x42, 0xaa, 0x09, 0x5a, 0xa5, 0x71, 0xad, 0x0d, 0xc7, + 0x3a, 0x21, 0xff, 0x47, 0x9e, 0xd7, 0xfd, 0x45, 0x63, 0x70, 0x13, 0xfe, 0x1c, 0xd6, 0x53, 0x94, + 0x54, 0x8b, 0x02, 0xd5, 0xe2, 0xed, 0xd8, 0x7b, 0x78, 0xa6, 0xf5, 0x2a, 0x04, 0xab, 0x23, 0x74, + 0xc4, 0x35, 0x3f, 0x0d, 0x95, 0x47, 0x49, 0xce, 0x81, 0xe7, 0x07, 0xb6, 0x14, 0xf8, 0x25, 0x27, + 0xec, 0x50, 0x7a, 0x61, 0x91, 0x28, 0xa7, 0x89, 0x62, 0x7f, 0x89, 0x0f, 0xd3, 0x04, 0xda, 0x11, + 0x3b, 0x68, 0x8e, 0x17, 0x29, 0xdd, 0xb1, 0xd8, 0x6b, 0x52, 0xc1, 0x34, 0x62, 0x23, 0x03, 0xc8, + 0xc8, 0xa8, 0x12, 0xf0, 0x99, 0x80, 0xdd, 0xe8, 0xc1, 0xe5, 0xf3, 0x2a, 0x79, 0x8e, 0xa6, 0xb5, + 0xa1, 0x6a, 0x5a, 0x67, 0x2c, 0xda, 0x85, 0xd6, 0xf5, 0x0f, 0x32, 0x50, 0xdd, 0xb2, 0xad, 0xf9, + 0xec, 0x27, 0xbe, 0xe3, 0xe1, 0x04, 0xf8, 0x00, 0xaa, 0xbe, 0x6b, 0xd1, 0xe8, 0x29, 0x87, 0xe2, + 0xa9, 0xe3, 0x14, 0xe9, 0xf9, 0x05, 0xdf, 0xb5, 0x5a, 0xbe, 0x4b, 0x47, 0xe8, 0xef, 0xc0, 0x25, + 0x61, 0xed, 0x4b, 0xe7, 0xd7, 0x89, 0x60, 0x5e, 0xa5, 0x91, 0xd1, 0x04, 0x4a, 0x28, 0x47, 0x44, + 0xfe, 0x1b, 0x70, 0x59, 0x21, 0xc7, 0x91, 0x11, 0xf4, 0xcb, 0x93, 0x64, 0x3d, 0xe1, 0x8d, 0xcf, + 0x33, 0xf4, 0x7f, 0x99, 0x81, 0xb2, 0xf0, 0x15, 0x60, 0x7d, 0xef, 0x43, 0xd1, 0x1f, 0x7d, 0x69, + 0x04, 0xf6, 0xe4, 0xa2, 0x63, 0xb8, 0x82, 0x3f, 0xfa, 0x92, 0xdb, 0x13, 0xf6, 0x56, 0xbc, 0xcf, + 0x5b, 0xf6, 0x44, 0x76, 0x4a, 0x3d, 0x6d, 0x21, 0xc8, 0x7d, 0x1f, 0xad, 0xd7, 0xc7, 0x50, 0x59, + 0xcc, 0xf8, 0xb0, 0x51, 0xbc, 0xb8, 0x17, 0x92, 0x05, 0x10, 0x22, 0x93, 0xf0, 0x97, 0x08, 0xa6, + 0xd2, 0xc5, 0x4c, 0x82, 0x8c, 0x7c, 0xfa, 0xff, 0x30, 0x03, 0xe5, 0x8e, 0xc8, 0x23, 0x3a, 0x61, + 0x77, 0x20, 0xfb, 0x0d, 0x4d, 0x41, 0x1c, 0x7b, 0x00, 0xeb, 0xa6, 0x65, 0x19, 0xe6, 0x64, 0x62, + 0x8f, 0x23, 0xdb, 0x32, 0x50, 0x8f, 0x91, 0x82, 0x63, 0xcd, 0xb4, 0xac, 0xa6, 0x84, 0x93, 0x00, + 0xc6, 0x85, 0x1b, 0x1a, 0xb1, 0x3d, 0xb7, 0x38, 0x34, 0x2d, 0xf1, 0xba, 0x13, 0x4a, 0x73, 0x4e, + 0x78, 0x4b, 0x53, 0xbd, 0x93, 0xfb, 0xe6, 0xde, 0xd1, 0xff, 0xc6, 0x2a, 0x00, 0xb7, 0x67, 0xae, + 0x39, 0xb6, 0xff, 0xaf, 0xa9, 0x34, 0xca, 0x96, 0x64, 0x74, 0x3c, 0x2b, 0x0e, 0x20, 0x88, 0x47, + 0xc2, 0xb3, 0xd8, 0x67, 0xf0, 0x6a, 0x60, 0x1f, 0x07, 0x4e, 0x64, 0x1b, 0x93, 0xc0, 0x9f, 0x1a, + 0x29, 0xf1, 0x81, 0xab, 0xab, 0x4c, 0x95, 0xb8, 0x2e, 0x89, 0xb6, 0x03, 0x7f, 0x9a, 0x16, 0x21, + 0xfa, 0x7f, 0x2b, 0x41, 0xa5, 0xe9, 0x99, 0xee, 0xe9, 0xd7, 0x36, 0x9d, 0x7a, 0x93, 0xff, 0x70, + 0x36, 0x8f, 0x44, 0x73, 0xc5, 0x91, 0x50, 0x99, 0x20, 0xd4, 0xd0, 0xdb, 0x50, 0xf1, 0xe7, 0x51, + 0x82, 0x17, 0x87, 0x44, 0x20, 0x40, 0x44, 0x90, 0xf0, 0x27, 0xbe, 0xe9, 0x98, 0x9f, 0x6c, 0x98, + 0x05, 0x7f, 0xa2, 0xd7, 0x26, 0xfc, 0x44, 0x80, 0x22, 0xc5, 0x99, 0x52, 0x83, 0xc3, 0xf9, 0xd4, + 0x16, 0x8d, 0xce, 0x8a, 0x18, 0xaa, 0x96, 0x84, 0x61, 0x2e, 0x53, 0x7b, 0xea, 0x07, 0xa7, 0x22, + 0x97, 0x82, 0xc8, 0x45, 0x80, 0x28, 0x97, 0xb7, 0x81, 0x1d, 0x9b, 0x4e, 0x64, 0xa4, 0xb3, 0x12, + 0xb6, 0x84, 0x86, 0x98, 0xa1, 0x9a, 0xdd, 0x55, 0x28, 0x58, 0x4e, 0x78, 0xd4, 0xe9, 0x4b, 0x3b, + 0x42, 0xa6, 0xb0, 0x2d, 0xe1, 0xd8, 0x44, 0x35, 0x26, 0xb2, 0x85, 0xce, 0x9b, 0xe5, 0x65, 0x84, + 0x6c, 0x22, 0x00, 0xb7, 0x41, 0xcf, 0x8e, 0x8e, 0xfd, 0x00, 0x39, 0x85, 0x99, 0xb0, 0x00, 0xa0, + 0xba, 0x80, 0xa4, 0x58, 0x10, 0x39, 0x59, 0xb2, 0x3c, 0x49, 0xa3, 0x02, 0x2e, 0xd6, 0x20, 0x61, + 0xab, 0xa2, 0xfa, 0x0b, 0x08, 0xbb, 0x0b, 0x75, 0xaa, 0x3e, 0x99, 0x11, 0xd8, 0x06, 0x3a, 0xc7, + 0xc9, 0xf2, 0x2a, 0x42, 0xc9, 0x46, 0x47, 0xaa, 0x4f, 0xe1, 0x7a, 0xaa, 0x7d, 0x86, 0x19, 0x04, + 0xe6, 0xa9, 0x31, 0x35, 0xbf, 0xf4, 0x03, 0xf2, 0xa7, 0x64, 0xf9, 0x55, 0xb5, 0xdb, 0x9a, 0x88, + 0xde, 0x45, 0xec, 0x85, 0xac, 0x8e, 0xe7, 0x07, 0xe4, 0x6c, 0x39, 0x97, 0x15, 0xb1, 0xe4, 0x19, + 0xa0, 0x01, 0x26, 0x9b, 0x26, 0x14, 0xb1, 0x77, 0xbc, 0x42, 0xb0, 0x4d, 0x02, 0xa1, 0x56, 0x1f, + 0x3e, 0x16, 0xe2, 0x71, 0x5d, 0x86, 0xc8, 0x3c, 0x26, 0x21, 0x2a, 0x10, 0x87, 0xb6, 0x69, 0xd1, + 0xd9, 0x10, 0x21, 0x76, 0x6c, 0x93, 0x4e, 0x5e, 0xc3, 0xc7, 0xc6, 0x6c, 0x1e, 0x89, 0xa0, 0x39, + 0x9e, 0x0f, 0x1f, 0xef, 0xcd, 0x23, 0x09, 0x3e, 0xb0, 0x23, 0x0a, 0x95, 0x23, 0xf0, 0x13, 0x3b, + 0xc2, 0xdd, 0x2c, 0x7c, 0x1c, 0xfb, 0x79, 0xaf, 0xc8, 0xbe, 0x7d, 0x2c, 0x1d, 0xb9, 0x3a, 0xd4, + 0x12, 0xa4, 0x31, 0x9d, 0x8b, 0x28, 0xb9, 0x2c, 0xaf, 0xc4, 0x04, 0xbb, 0x73, 0x17, 0x07, 0x76, + 0x6c, 0x8e, 0x0f, 0x6d, 0x23, 0xc0, 0xaa, 0x5c, 0x13, 0x43, 0x47, 0x10, 0x8e, 0xb5, 0x79, 0x05, + 0x44, 0xc2, 0x38, 0x74, 0x22, 0x72, 0xfa, 0x64, 0x79, 0x89, 0x00, 0x3b, 0x4e, 0x84, 0x62, 0x41, + 0x20, 0xe5, 0x0c, 0xa4, 0x2c, 0xae, 0x13, 0xd1, 0x1a, 0x21, 0x76, 0x09, 0x4e, 0x19, 0xdd, 0x07, + 0x2d, 0x45, 0x8b, 0xf9, 0xdd, 0x20, 0xd2, 0xba, 0x42, 0x8a, 0xb9, 0xde, 0x03, 0xc1, 0x6c, 0xe0, + 0xd4, 0x13, 0x79, 0xbe, 0x22, 0x6c, 0x5a, 0x02, 0x6f, 0x39, 0xe1, 0x11, 0xe5, 0x78, 0x17, 0xea, + 0x0a, 0x1d, 0xe6, 0x77, 0x53, 0xcc, 0x8c, 0x84, 0x2c, 0x55, 0xc7, 0xc0, 0x9e, 0xfa, 0x91, 0x6c, + 0xe6, 0xab, 0x4a, 0x1d, 0x39, 0xc1, 0xd3, 0x75, 0x94, 0xb4, 0x98, 0xe7, 0x2d, 0xa5, 0x8e, 0x82, + 0x14, 0x73, 0xbd, 0x03, 0x55, 0x94, 0x22, 0x91, 0xed, 0x89, 0xc5, 0x7f, 0x5b, 0x74, 0xac, 0x84, + 0xd1, 0xea, 0xbf, 0x03, 0x55, 0xd1, 0xf3, 0x52, 0x5c, 0x6e, 0x08, 0x12, 0x09, 0x43, 0x12, 0xfd, + 0xe7, 0x19, 0xb8, 0xd1, 0xa7, 0x23, 0x33, 0x12, 0x78, 0xbb, 0x76, 0x18, 0x9a, 0x07, 0xf6, 0xb6, + 0x1f, 0x6c, 0xcf, 0xbf, 0xfe, 0xfa, 0x94, 0xdd, 0x87, 0xb5, 0x3d, 0x33, 0xb0, 0xbd, 0x28, 0x39, + 0x52, 0x91, 0x1a, 0xc2, 0x59, 0x30, 0xfb, 0x04, 0x34, 0x01, 0xda, 0x4f, 0x74, 0x2d, 0x69, 0x6d, + 0xa4, 0xdd, 0xae, 0x4b, 0x54, 0xfa, 0x3f, 0xde, 0x80, 0x5c, 0xcf, 0xb7, 0x6c, 0xf6, 0x1e, 0x94, + 0x29, 0x78, 0x4d, 0xd1, 0x7e, 0xa5, 0x77, 0x00, 0xd1, 0xf4, 0x87, 0xd4, 0xde, 0x92, 0x27, 0xbf, + 0x2e, 0x0e, 0x77, 0xbb, 0x43, 0x0a, 0x3c, 0x9d, 0x27, 0xa1, 0x4c, 0xaf, 0x48, 0x27, 0x03, 0xd9, + 0xc4, 0x02, 0x83, 0x12, 0x81, 0x1c, 0x9e, 0x81, 0xed, 0x91, 0x9a, 0x98, 0xe7, 0x49, 0x9a, 0xcc, + 0xa6, 0xc0, 0xc7, 0xfd, 0x47, 0xac, 0x9b, 0xfc, 0x39, 0x66, 0x93, 0xc0, 0xd3, 0x42, 0x7a, 0x0f, + 0xca, 0x5f, 0xfa, 0x8e, 0x27, 0x2a, 0x5e, 0x58, 0xaa, 0x38, 0x6a, 0x46, 0xa2, 0xe2, 0x5f, 0xca, + 0x2f, 0xf6, 0x1a, 0x14, 0x7d, 0x4f, 0xe4, 0x5d, 0x5c, 0xca, 0xbb, 0xe0, 0x7b, 0x5d, 0x11, 0x6f, + 0x51, 0x1b, 0xcd, 0x1d, 0xd7, 0xc2, 0x7d, 0xc4, 0xb5, 0x27, 0x91, 0x3c, 0x87, 0xaa, 0x10, 0xb0, + 0xef, 0x75, 0xed, 0x49, 0x84, 0xd6, 0xe0, 0xc4, 0x71, 0x71, 0x9b, 0xa3, 0xcc, 0xca, 0x4b, 0x99, + 0x81, 0x40, 0x53, 0x86, 0xaf, 0x43, 0xe9, 0x20, 0xf0, 0xe7, 0x33, 0x34, 0xef, 0x60, 0x89, 0xb2, + 0x48, 0xb8, 0xcd, 0x53, 0x14, 0xfa, 0xf4, 0xe9, 0x78, 0x07, 0x06, 0x59, 0xc2, 0x95, 0x8d, 0xec, + 0xfd, 0x12, 0xaf, 0xc6, 0x40, 0xb2, 0x71, 0x5f, 0x87, 0x92, 0x79, 0x70, 0x60, 0xc8, 0xb0, 0x91, + 0xa5, 0xbc, 0xcc, 0x83, 0x03, 0x2a, 0xf2, 0x21, 0xd4, 0x8e, 0x1d, 0xcf, 0x08, 0x67, 0xf6, 0x58, + 0xd0, 0xd6, 0x96, 0xbb, 0xf2, 0xd8, 0xf1, 0xd0, 0x00, 0x24, 0x7a, 0xd5, 0x02, 0xad, 0xbf, 0xd4, + 0x02, 0xdd, 0x80, 0xbc, 0xeb, 0x4c, 0x9d, 0x48, 0x06, 0x92, 0xa4, 0x54, 0x54, 0x42, 0x30, 0x1d, + 0x0a, 0xd2, 0x19, 0xaa, 0x2d, 0x91, 0x48, 0x4c, 0x5a, 0x09, 0x58, 0x7f, 0x89, 0x12, 0xa0, 0xa8, + 0x8b, 0xec, 0x9b, 0xd5, 0xc5, 0x0f, 0xa1, 0x3e, 0xa3, 0xb9, 0x6e, 0xc4, 0x0c, 0x97, 0xce, 0x67, + 0xa8, 0x0a, 0xb2, 0xbe, 0x60, 0x7b, 0x1f, 0x2a, 0x01, 0xb9, 0x46, 0x0c, 0xf2, 0xa3, 0x5c, 0x56, + 0x6d, 0xcb, 0x85, 0xcf, 0x84, 0x43, 0xb0, 0xf0, 0x9f, 0x34, 0x61, 0x6d, 0x11, 0x18, 0x27, 0xa2, + 0x07, 0xaf, 0xa8, 0xee, 0xd7, 0x54, 0x24, 0x9d, 0xd4, 0x20, 0x6b, 0x4e, 0x2a, 0xbc, 0xee, 0x35, + 0xa8, 0x89, 0x23, 0x71, 0x71, 0x70, 0x19, 0x92, 0x9c, 0x2e, 0xf3, 0x2a, 0x01, 0xc5, 0xa1, 0x66, + 0xc8, 0x1e, 0x02, 0xc4, 0x0a, 0x50, 0x74, 0x42, 0x82, 0x3a, 0x69, 0x8d, 0x90, 0xe6, 0xad, 0xe8, + 0x84, 0x97, 0xad, 0xf8, 0x13, 0xe5, 0xcf, 0xc8, 0xf1, 0x2c, 0x9c, 0x47, 0x91, 0x79, 0x10, 0x36, + 0x1a, 0xb4, 0xcc, 0x2a, 0x12, 0x36, 0x34, 0x0f, 0x42, 0xb4, 0x16, 0x4c, 0xa1, 0xef, 0x88, 0x7a, + 0x5f, 0x57, 0x5d, 0x09, 0x8a, 0x26, 0xc4, 0x2b, 0xa6, 0xa2, 0x16, 0x7d, 0x0c, 0x2c, 0x3e, 0x78, + 0x51, 0x94, 0xff, 0x1b, 0x4b, 0x53, 0x6b, 0x4d, 0x9e, 0xbc, 0x24, 0x91, 0xba, 0x1f, 0x43, 0x2d, + 0xad, 0x16, 0xde, 0x3c, 0xe7, 0x78, 0x82, 0x46, 0x9d, 0x57, 0xc7, 0xaa, 0xa2, 0xf8, 0x1a, 0xd4, + 0x3c, 0x3f, 0x32, 0x48, 0x06, 0x13, 0xa3, 0x70, 0xc1, 0x57, 0x3d, 0x3f, 0x6a, 0xc5, 0x30, 0xec, + 0x9f, 0x58, 0xe7, 0x8f, 0x4e, 0x48, 0x6c, 0x27, 0xfd, 0x93, 0x28, 0xe8, 0xa8, 0x7e, 0xc5, 0xba, + 0x3a, 0x0e, 0xb5, 0x50, 0x82, 0x89, 0xe1, 0x76, 0x6a, 0xa8, 0x13, 0xed, 0x98, 0x43, 0xb0, 0xd0, + 0x94, 0x6f, 0x43, 0x25, 0xf4, 0xe7, 0xc1, 0xd8, 0x36, 0xc2, 0xc8, 0x9e, 0x35, 0x36, 0xa8, 0x47, + 0x41, 0x80, 0x06, 0x91, 0x3d, 0x63, 0x9f, 0x40, 0x7d, 0x16, 0x60, 0x67, 0x26, 0xf5, 0xd0, 0xd5, + 0x26, 0xee, 0x05, 0xf6, 0xa2, 0x2a, 0xd5, 0x99, 0x92, 0x62, 0x3f, 0x86, 0x75, 0x85, 0x73, 0x7e, + 0x44, 0xcc, 0xaf, 0x11, 0xf3, 0xe5, 0x33, 0xcc, 0xfb, 0x47, 0xc8, 0x5e, 0x9f, 0xa5, 0xd2, 0xac, + 0x79, 0xc6, 0xb4, 0x46, 0x8d, 0xf7, 0x2e, 0xf1, 0x5f, 0xbb, 0xc0, 0x5e, 0x4e, 0xd9, 0xdc, 0x4f, + 0x85, 0x77, 0xbf, 0x13, 0xb6, 0x3d, 0xab, 0xf1, 0xba, 0x08, 0x8a, 0xa7, 0x04, 0x7b, 0x0c, 0x55, + 0xa1, 0x7b, 0x51, 0xd8, 0x5a, 0xd8, 0xb8, 0xa7, 0xfa, 0x16, 0x49, 0x01, 0x23, 0x04, 0xaf, 0xb8, + 0xc9, 0x77, 0xc8, 0x3e, 0x82, 0x75, 0xe1, 0xf8, 0x55, 0xe5, 0xe3, 0x1b, 0xcb, 0x53, 0x84, 0x88, + 0xb6, 0x17, 0x42, 0x92, 0xc3, 0xf5, 0x60, 0xee, 0x91, 0x3e, 0x26, 0x39, 0x67, 0x81, 0x3f, 0xb2, + 0x05, 0xff, 0x7d, 0xe2, 0x97, 0xcd, 0xe1, 0x82, 0x4c, 0xf0, 0x92, 0x60, 0xba, 0x1a, 0xa8, 0xa0, + 0x3d, 0xe4, 0xbb, 0x20, 0x4f, 0x21, 0xd8, 0x29, 0xcf, 0x37, 0xbf, 0x4b, 0x9e, 0x9b, 0xc8, 0x47, + 0x79, 0x32, 0xc8, 0xcd, 0xe7, 0x8e, 0xd5, 0x78, 0x20, 0x22, 0xcc, 0xf0, 0x9b, 0xbd, 0x0e, 0xf5, + 0xc0, 0x1e, 0xcf, 0x83, 0xd0, 0x79, 0x61, 0x1b, 0xa1, 0xe3, 0x1d, 0x35, 0xde, 0xa2, 0x7e, 0xac, + 0x25, 0xd0, 0x81, 0xe3, 0x1d, 0xe1, 0xbc, 0xb3, 0x4f, 0x22, 0x3b, 0xf0, 0x44, 0x24, 0xed, 0xdb, + 0xea, 0xbc, 0x6b, 0x13, 0x02, 0xe5, 0x02, 0x07, 0x3b, 0xf9, 0x3e, 0x33, 0x39, 0x42, 0x31, 0x39, + 0x1e, 0x7e, 0xab, 0xc9, 0x31, 0xa0, 0xc9, 0x71, 0x0f, 0x4a, 0x8e, 0x17, 0xd9, 0xc1, 0x0b, 0xd3, + 0x6d, 0xbc, 0xbb, 0x24, 0x8a, 0x13, 0x1c, 0xbb, 0x0b, 0xc5, 0xd0, 0x75, 0x50, 0x3e, 0x34, 0xde, + 0x5b, 0x22, 0x8b, 0x51, 0xec, 0x3e, 0x94, 0x93, 0x6b, 0x1c, 0x8d, 0xf7, 0x97, 0xe8, 0x16, 0x48, + 0x76, 0x0b, 0x72, 0xc7, 0x38, 0xa1, 0x1e, 0x2d, 0xfb, 0x82, 0x11, 0x8e, 0x7b, 0xf7, 0xc4, 0x71, + 0x5d, 0xb1, 0x77, 0x3f, 0x5e, 0xda, 0xbb, 0xb7, 0x1d, 0xd7, 0x15, 0x7b, 0xf7, 0x44, 0x7e, 0xe1, + 0xce, 0x47, 0x1c, 0xd8, 0x92, 0x0f, 0x96, 0x77, 0x3e, 0xc4, 0x3d, 0xa3, 0x0b, 0x2f, 0x95, 0x90, + 0x1c, 0x9c, 0xc2, 0x4f, 0xfb, 0xa1, 0xda, 0x57, 0x69, 0xcf, 0x27, 0x87, 0x30, 0x49, 0xa3, 0x32, + 0x2c, 0xdd, 0xbb, 0x8e, 0x75, 0xd2, 0xf8, 0x48, 0xc4, 0x61, 0x0b, 0x48, 0xc7, 0x3a, 0x61, 0xef, + 0x41, 0x2d, 0x0e, 0x74, 0xc0, 0xe2, 0xc2, 0xc6, 0xc7, 0x4b, 0x35, 0x48, 0x13, 0xb0, 0x2d, 0xa8, + 0x4e, 0x50, 0x97, 0x9b, 0x0a, 0xd5, 0xae, 0xf1, 0x09, 0x55, 0x64, 0x23, 0xde, 0x55, 0x2f, 0x52, + 0xfd, 0x78, 0x8a, 0x8b, 0x3d, 0x04, 0xe6, 0x4c, 0xc4, 0x78, 0xa2, 0xd9, 0x2a, 0xd4, 0xb7, 0xc6, + 0xa7, 0x34, 0xbb, 0xce, 0xc1, 0xb0, 0xc7, 0x50, 0x0b, 0x6d, 0xcf, 0x32, 0xa6, 0xa1, 0xd4, 0x11, + 0x7e, 0x40, 0xf5, 0x94, 0xd2, 0x30, 0xb9, 0xee, 0xc5, 0x2b, 0x48, 0xb5, 0x1b, 0x0a, 0x65, 0xe1, + 0x31, 0xe0, 0x44, 0x7d, 0xb1, 0x60, 0xfa, 0x8d, 0x0b, 0x98, 0x90, 0x2a, 0x66, 0xfa, 0x04, 0xea, + 0x96, 0x6d, 0xcd, 0x67, 0x06, 0xa9, 0x60, 0x38, 0x2d, 0x7f, 0xa8, 0x0a, 0x3c, 0xd5, 0x37, 0xc5, + 0xab, 0x96, 0xea, 0xa9, 0xfa, 0x18, 0xd6, 0x62, 0x27, 0x52, 0x24, 0xfd, 0x4d, 0x3f, 0x52, 0x0b, + 0x4c, 0x7c, 0x44, 0xbc, 0x36, 0x8f, 0x3f, 0xe3, 0x7a, 0xd2, 0x4e, 0x1b, 0x7a, 0xe6, 0x2c, 0x3c, + 0xf4, 0xa3, 0xc6, 0x6f, 0xaa, 0x4a, 0xc3, 0x40, 0x42, 0x79, 0x15, 0x89, 0xe2, 0x14, 0xee, 0x20, + 0x8b, 0xb5, 0x39, 0x8e, 0xec, 0xc6, 0x8f, 0xc5, 0x0e, 0x92, 0x00, 0x5b, 0x11, 0x76, 0x1b, 0x98, + 0xb3, 0x99, 0x7b, 0x2a, 0xa6, 0xe3, 0x67, 0x34, 0x1d, 0x2f, 0x2b, 0xd3, 0xb1, 0x89, 0x48, 0x9a, + 0x8f, 0x65, 0x33, 0xfe, 0x64, 0x8f, 0xa0, 0x3a, 0xf3, 0xc3, 0xc8, 0xb0, 0xa6, 0x2e, 0xb5, 0xbf, + 0xa9, 0xae, 0xe7, 0x3d, 0x3f, 0x8c, 0xb6, 0xa6, 0x2e, 0xed, 0x23, 0xb3, 0xe4, 0x9b, 0x75, 0xe1, + 0x52, 0x4a, 0x56, 0x9b, 0x74, 0x64, 0xda, 0xd8, 0xa4, 0x12, 0x6f, 0x2a, 0x25, 0x2a, 0x32, 0x5b, + 0x46, 0xda, 0xac, 0xfb, 0x67, 0x41, 0x68, 0x07, 0x89, 0x31, 0x48, 0xc2, 0xcd, 0x5a, 0x42, 0x7d, + 0x20, 0x68, 0x1c, 0x6f, 0xf6, 0x09, 0xac, 0x2d, 0xa8, 0xb0, 0x81, 0x61, 0x63, 0x4b, 0x9d, 0xbd, + 0x4a, 0x50, 0x68, 0x2d, 0x66, 0x44, 0x58, 0xa8, 0xff, 0x69, 0x1e, 0x4a, 0xb1, 0xfa, 0xcf, 0x2a, + 0x50, 0xdc, 0xef, 0x3d, 0xed, 0xf5, 0x9f, 0xf7, 0xc4, 0xb5, 0x93, 0xe6, 0x60, 0xd0, 0xe6, 0x43, + 0xcd, 0x62, 0x75, 0x00, 0x0a, 0x3e, 0x37, 0x06, 0xad, 0x66, 0x4f, 0x5c, 0x43, 0xa1, 0x90, 0x77, + 0x91, 0x5e, 0x65, 0xeb, 0x50, 0xdb, 0xde, 0xef, 0x51, 0x40, 0x8f, 0x00, 0x65, 0x11, 0xd4, 0xfe, + 0x5c, 0x9c, 0xd4, 0x08, 0x50, 0x0e, 0x41, 0xbb, 0xcd, 0x61, 0x9b, 0x77, 0x62, 0x50, 0x9e, 0x62, + 0x83, 0xfa, 0xfb, 0xbc, 0x25, 0x73, 0x2a, 0xb0, 0x2b, 0xb0, 0x9e, 0xb0, 0xc5, 0x59, 0x6a, 0x45, + 0xac, 0xd9, 0x1e, 0xef, 0xff, 0xa4, 0xdd, 0x1a, 0x6a, 0x40, 0xc7, 0x3e, 0x4f, 0x9e, 0x68, 0x15, + 0x56, 0x85, 0xd2, 0x56, 0x67, 0x30, 0xec, 0xf4, 0x5a, 0x43, 0xad, 0x8a, 0x15, 0xde, 0xee, 0x74, + 0x87, 0x6d, 0xae, 0xd5, 0x58, 0x09, 0x72, 0x3f, 0xe9, 0x77, 0x7a, 0x5a, 0x9d, 0x82, 0xf0, 0x9b, + 0xbb, 0x7b, 0xdd, 0xb6, 0xb6, 0x86, 0xd0, 0x41, 0x9f, 0x0f, 0x35, 0x0d, 0xa1, 0xcf, 0x3b, 0xbd, + 0xad, 0xfe, 0x73, 0x6d, 0x9d, 0x95, 0x21, 0xbf, 0xdf, 0xc3, 0x62, 0x18, 0xab, 0x41, 0x99, 0x3e, + 0x8d, 0x66, 0xb7, 0xab, 0x5d, 0x52, 0xce, 0x8a, 0x2e, 0x23, 0x8a, 0x4e, 0x9e, 0x06, 0x58, 0x87, + 0x2b, 0xd8, 0x96, 0x24, 0x49, 0xd4, 0x57, 0x31, 0x9f, 0xdd, 0x4e, 0x6f, 0x7f, 0xa0, 0x5d, 0x43, + 0x62, 0xfa, 0x24, 0x4c, 0x03, 0xf3, 0xe9, 0xf4, 0xa8, 0x2b, 0x6f, 0xe1, 0xf7, 0x56, 0xbb, 0xdb, + 0x1e, 0xb6, 0xb5, 0xdb, 0xd8, 0x2a, 0xde, 0xde, 0xeb, 0x36, 0x5b, 0x6d, 0x6d, 0x03, 0x13, 0xdd, + 0x7e, 0xeb, 0xa9, 0xd1, 0xdf, 0xd3, 0xee, 0xb0, 0xcb, 0xa0, 0xf5, 0x7b, 0xc6, 0xd6, 0xfe, 0x5e, + 0xb7, 0xd3, 0x6a, 0x0e, 0xdb, 0xc6, 0xd3, 0xf6, 0x17, 0x9a, 0x8e, 0xdd, 0xbe, 0xc7, 0xdb, 0x86, + 0xcc, 0xeb, 0x35, 0xa6, 0x41, 0x75, 0x7b, 0xff, 0x67, 0x3f, 0xfb, 0xc2, 0x90, 0xed, 0x7e, 0x1d, + 0xab, 0xb5, 0xa0, 0x30, 0xf6, 0x9f, 0x6a, 0xf7, 0xce, 0x80, 0x06, 0x4f, 0xb5, 0x37, 0xb0, 0xdf, + 0xe2, 0x81, 0xd0, 0xee, 0x23, 0x01, 0x6f, 0xb7, 0xf6, 0xf9, 0xa0, 0xf3, 0xac, 0x6d, 0xb4, 0x86, + 0x6d, 0xed, 0x4d, 0xea, 0xa8, 0x4e, 0xef, 0xa9, 0xf6, 0x00, 0x5b, 0x82, 0x5f, 0x62, 0x78, 0xde, + 0x62, 0x0c, 0xea, 0x0b, 0x5a, 0x82, 0xbd, 0x8d, 0x24, 0x9b, 0xbc, 0xdf, 0xdc, 0x6a, 0x35, 0x07, + 0x43, 0xed, 0x1d, 0xec, 0x86, 0xc1, 0x5e, 0xb7, 0x33, 0xd4, 0x1e, 0x62, 0x5b, 0x9f, 0x34, 0x87, + 0x3b, 0x6d, 0xae, 0xbd, 0x8b, 0x23, 0x3d, 0xec, 0xec, 0xb6, 0x0d, 0xd9, 0xed, 0x8f, 0xb0, 0x8c, + 0xed, 0x4e, 0xb7, 0xab, 0x3d, 0xa6, 0xe3, 0x90, 0x26, 0x1f, 0x76, 0x68, 0xac, 0x3f, 0xc0, 0x0c, + 0x9a, 0x7b, 0x7b, 0xdd, 0x2f, 0xb4, 0x0f, 0xb1, 0x81, 0xbb, 0xfb, 0xdd, 0x61, 0xc7, 0xd8, 0xdf, + 0xdb, 0x6a, 0x0e, 0xdb, 0xda, 0x47, 0x34, 0x11, 0xfa, 0x83, 0xe1, 0xd6, 0x6e, 0x57, 0xfb, 0x58, + 0xff, 0x6d, 0x28, 0xc5, 0x16, 0x20, 0x72, 0x75, 0x7a, 0xbd, 0x36, 0xd7, 0x56, 0x30, 0xe7, 0x6e, + 0x7b, 0x7b, 0xa8, 0x65, 0xe8, 0x28, 0xa8, 0xf3, 0x64, 0x67, 0xa8, 0xad, 0xe2, 0x67, 0x7f, 0x1f, + 0x3b, 0x29, 0x4b, 0xad, 0x6b, 0xef, 0x76, 0xb4, 0x1c, 0x7e, 0x35, 0x7b, 0xc3, 0x8e, 0x96, 0xa7, + 0x69, 0xd2, 0xe9, 0x3d, 0xe9, 0xb6, 0xb5, 0x02, 0x42, 0x77, 0x9b, 0xfc, 0xa9, 0x56, 0x14, 0x99, + 0x6e, 0xb5, 0x3f, 0xd7, 0x4a, 0xac, 0x00, 0xab, 0xdd, 0x47, 0x5a, 0x19, 0x41, 0x5b, 0xed, 0xad, + 0xfd, 0x3d, 0x0d, 0xf4, 0xfb, 0x50, 0x6c, 0x1e, 0x1c, 0xec, 0xa2, 0x81, 0x8d, 0x8d, 0xd9, 0xef, + 0x76, 0xc5, 0xb2, 0xd9, 0xec, 0x0f, 0x87, 0xfd, 0x5d, 0x2d, 0x83, 0x13, 0x75, 0xd8, 0xdf, 0xd3, + 0x56, 0xf5, 0x0e, 0x94, 0xe2, 0xed, 0x4e, 0xb9, 0x47, 0x52, 0x82, 0xdc, 0x1e, 0x6f, 0x3f, 0x13, + 0xe7, 0x97, 0xbd, 0xf6, 0xe7, 0x58, 0x4d, 0xfc, 0xc2, 0x8c, 0xb2, 0x58, 0x90, 0xb8, 0xf0, 0x41, + 0x17, 0x49, 0xba, 0x9d, 0x5e, 0xbb, 0xc9, 0xb5, 0xbc, 0xfe, 0x61, 0xea, 0x68, 0x48, 0x4a, 0x09, + 0x2c, 0xbe, 0xd9, 0x91, 0xc5, 0x77, 0x9e, 0xf4, 0xfa, 0xbc, 0x2d, 0x6e, 0xa6, 0xc8, 0x7e, 0x5b, + 0xd5, 0xdf, 0x82, 0x72, 0x22, 0xe1, 0x70, 0x1e, 0xb5, 0x78, 0x7f, 0x30, 0x10, 0xdd, 0xbc, 0x82, + 0x69, 0xea, 0x1b, 0x91, 0xce, 0xe8, 0xff, 0x2f, 0x94, 0x12, 0xe1, 0x7a, 0x17, 0x56, 0x87, 0x03, + 0xe9, 0x3f, 0xbe, 0xfc, 0x70, 0x71, 0x35, 0x7a, 0x18, 0x7f, 0xf1, 0xd5, 0xe1, 0x80, 0xbd, 0x0d, + 0x05, 0x71, 0x31, 0x4a, 0x7a, 0xef, 0x2f, 0xa7, 0x05, 0xf6, 0x90, 0x70, 0x5c, 0xd2, 0xe8, 0x5d, + 0xa8, 0xa7, 0x31, 0xec, 0x16, 0x80, 0xc0, 0x29, 0x8e, 0x10, 0x05, 0xc2, 0x6e, 0x40, 0x7c, 0xf1, + 0x6a, 0x8b, 0x4a, 0xa8, 0x25, 0x17, 0xb1, 0xb6, 0xf4, 0xbf, 0x95, 0x05, 0x58, 0xe8, 0x56, 0xa8, + 0xbd, 0x25, 0x6e, 0x8e, 0xbc, 0x3c, 0xc8, 0x7b, 0x05, 0xca, 0xae, 0x6f, 0x5a, 0xea, 0x15, 0xe7, + 0x12, 0x02, 0xa8, 0x37, 0xd4, 0x4b, 0x08, 0x65, 0x71, 0x8a, 0xce, 0xae, 0x42, 0x61, 0xe2, 0x07, + 0x53, 0x33, 0x92, 0xd1, 0xbd, 0x32, 0x85, 0x5b, 0x8d, 0x38, 0x5c, 0x42, 0x0d, 0xd3, 0xa3, 0x00, + 0xdf, 0xcc, 0xfd, 0x1c, 0xaf, 0x4a, 0x60, 0x17, 0x61, 0x68, 0x49, 0xd8, 0xde, 0xd8, 0xf5, 0x43, + 0xdb, 0x42, 0x63, 0xbb, 0x40, 0x6a, 0x24, 0xc4, 0xa0, 0xcd, 0x53, 0xd1, 0xda, 0x60, 0xea, 0x78, + 0x66, 0x24, 0xbd, 0xb5, 0xd4, 0xda, 0x18, 0x82, 0xd5, 0xfd, 0x32, 0xf4, 0xa5, 0xd7, 0x43, 0x9c, + 0x53, 0x95, 0x10, 0x40, 0xd5, 0x7d, 0x15, 0xc0, 0x0e, 0xc7, 0xe6, 0x4c, 0x64, 0x5e, 0xa6, 0xcc, + 0xcb, 0x12, 0xb2, 0x79, 0xca, 0xba, 0x50, 0x1f, 0x8e, 0x50, 0xbc, 0xfb, 0x68, 0xc0, 0xb6, 0x7c, + 0x57, 0xfa, 0x23, 0xee, 0x9e, 0x55, 0x42, 0x1f, 0xa6, 0xc9, 0xc4, 0x81, 0xda, 0x19, 0xde, 0x1b, + 0x4d, 0xb8, 0x74, 0x0e, 0xd9, 0x77, 0x0a, 0x1e, 0x72, 0xe3, 0xd1, 0x69, 0x46, 0x11, 0x05, 0xd4, + 0x27, 0x3b, 0x59, 0x26, 0x0e, 0x0b, 0x16, 0x9b, 0xd8, 0x2b, 0x14, 0x3b, 0x20, 0xc3, 0xc4, 0xe4, + 0x20, 0x25, 0xe1, 0x5f, 0xf7, 0x60, 0x0d, 0x91, 0x13, 0xc7, 0x76, 0x2d, 0x49, 0x22, 0xe2, 0xc1, + 0x6b, 0x63, 0xdf, 0xdd, 0x46, 0x28, 0xd1, 0xe9, 0xff, 0x28, 0x07, 0xb0, 0xb0, 0x5b, 0x52, 0x67, + 0x7a, 0x99, 0xf4, 0x99, 0xde, 0x23, 0xb8, 0x2a, 0x6f, 0x0b, 0x24, 0x07, 0x63, 0x8e, 0x67, 0x8c, + 0xcc, 0xf8, 0xf8, 0x94, 0x49, 0xac, 0x38, 0x1b, 0xeb, 0x78, 0x9b, 0x26, 0x6a, 0x44, 0x6b, 0x2a, + 0x4f, 0x74, 0x3a, 0x4b, 0x1f, 0xff, 0xaa, 0xfb, 0xec, 0x82, 0x7d, 0x78, 0x3a, 0x63, 0xef, 0xc1, + 0x95, 0xc0, 0x9e, 0x04, 0x76, 0x78, 0x68, 0x44, 0xa1, 0x5a, 0x98, 0x88, 0x52, 0x5a, 0x97, 0xc8, + 0x61, 0x98, 0x94, 0xf5, 0x1e, 0x5c, 0x91, 0x16, 0xcd, 0x99, 0xea, 0x89, 0x2b, 0xa3, 0xeb, 0x02, + 0xa9, 0xd6, 0xee, 0x55, 0x00, 0x69, 0xcc, 0xc5, 0x0f, 0x05, 0x94, 0x78, 0x59, 0x18, 0x6e, 0xf2, + 0xf2, 0x1d, 0x59, 0x64, 0xf2, 0xac, 0x44, 0x24, 0x98, 0x0e, 0x39, 0x94, 0x60, 0xe4, 0xd7, 0xaf, + 0x3f, 0xaa, 0x3f, 0xa4, 0x87, 0x10, 0xb0, 0x07, 0x11, 0xca, 0x09, 0xc7, 0xde, 0x81, 0x4b, 0x6a, + 0xb3, 0xe3, 0x5b, 0xbe, 0x15, 0xaa, 0x88, 0xb6, 0x68, 0x28, 0x17, 0xf7, 0x7d, 0xdf, 0x02, 0xa6, + 0xd4, 0x3c, 0xa6, 0xae, 0x12, 0xf5, 0x5a, 0x52, 0x6d, 0x49, 0xfc, 0x06, 0x50, 0x15, 0x85, 0x1b, + 0xb5, 0xb6, 0x6c, 0xbe, 0x20, 0x92, 0x5c, 0xae, 0xef, 0xc1, 0x95, 0x45, 0xeb, 0x0c, 0x33, 0x32, + 0xa2, 0x43, 0xdb, 0xb0, 0x3d, 0x8b, 0xae, 0x78, 0x94, 0xf8, 0x7a, 0xd2, 0xd0, 0x66, 0x34, 0x3c, + 0xb4, 0xd1, 0x00, 0x51, 0x1c, 0x4a, 0x6b, 0xdf, 0xe8, 0x50, 0xd2, 0xff, 0x76, 0x06, 0xea, 0x69, + 0x2b, 0x4b, 0x84, 0xaf, 0xbb, 0xf3, 0xa9, 0x27, 0xce, 0xdb, 0xf3, 0x3c, 0x4e, 0xe2, 0x3c, 0x9d, + 0x1d, 0x19, 0x22, 0x15, 0xcf, 0xd3, 0xd9, 0x51, 0x8b, 0xd2, 0xec, 0x4d, 0x28, 0xce, 0x8e, 0xc4, + 0xc2, 0xbd, 0x68, 0x66, 0x14, 0x66, 0x22, 0xf4, 0xf0, 0x4d, 0x28, 0xce, 0x25, 0x69, 0xee, 0x22, + 0xd2, 0x39, 0x91, 0xea, 0xff, 0x6a, 0x15, 0xaa, 0xaa, 0x7f, 0xe1, 0xdb, 0x1c, 0xeb, 0x7d, 0xa7, + 0x33, 0xd5, 0x0d, 0x8a, 0x7b, 0x32, 0x28, 0xce, 0x71, 0xec, 0xc7, 0xf7, 0xd4, 0xe1, 0xd0, 0x0c, + 0x9b, 0xf3, 0xc8, 0x6f, 0xf9, 0xe2, 0x28, 0xc1, 0x77, 0xe3, 0xf8, 0x47, 0x31, 0x6b, 0x71, 0xbd, + 0xca, 0xd0, 0xc7, 0xf7, 0x64, 0x78, 0x35, 0xdd, 0x6d, 0xa0, 0xf3, 0xfc, 0xfc, 0xd2, 0x58, 0x56, + 0xe3, 0xab, 0x0d, 0x74, 0x54, 0xff, 0x08, 0xd6, 0x16, 0xc1, 0xac, 0x71, 0x08, 0xc0, 0x59, 0x96, + 0x5a, 0x12, 0xc9, 0x2a, 0x2f, 0x33, 0xd6, 0x9c, 0xd0, 0xf0, 0x5d, 0x2b, 0x0e, 0x60, 0x2f, 0xc6, + 0xe1, 0x9a, 0x7d, 0xd7, 0x92, 0xd7, 0x5b, 0x04, 0x8d, 0x67, 0x1f, 0xc7, 0x34, 0xa5, 0x98, 0xa6, + 0x67, 0x1f, 0xcb, 0x40, 0xf6, 0xdf, 0xcd, 0xc0, 0xfa, 0x92, 0x3f, 0x00, 0xa5, 0xda, 0xe2, 0x71, + 0x0c, 0xfc, 0x64, 0x77, 0xa0, 0x3a, 0x35, 0xa3, 0xf1, 0xa1, 0x31, 0x0b, 0xec, 0x89, 0x73, 0x12, + 0xbf, 0xf0, 0x41, 0xb0, 0x3d, 0x02, 0x51, 0x58, 0xc4, 0x6c, 0x46, 0x5e, 0x90, 0xa9, 0x13, 0x49, + 0xa1, 0x04, 0x04, 0xea, 0x92, 0x9f, 0x34, 0x0e, 0x99, 0xca, 0x5d, 0x10, 0xe1, 0x75, 0x13, 0x0a, + 0x9d, 0xc4, 0xef, 0x90, 0x9c, 0xeb, 0x67, 0xe5, 0x05, 0x77, 0x1f, 0xca, 0x2d, 0xba, 0x2c, 0xbf, + 0x6b, 0xce, 0xd8, 0x03, 0xc8, 0x4e, 0xcd, 0x99, 0x3c, 0xf7, 0x6f, 0x24, 0xce, 0x7f, 0x81, 0x7d, + 0xb8, 0x6b, 0xce, 0x84, 0x10, 0x47, 0xa2, 0x1b, 0x1f, 0x41, 0x29, 0x06, 0x7c, 0x27, 0x71, 0xfd, + 0xef, 0x56, 0xa1, 0xbc, 0xa5, 0xfa, 0x19, 0xd1, 0x1c, 0x8b, 0x82, 0xb9, 0x87, 0xea, 0x46, 0x7c, + 0x35, 0x78, 0x6c, 0x7a, 0x43, 0x09, 0x8a, 0xa7, 0xe2, 0xea, 0x37, 0x4c, 0xc5, 0x9b, 0x00, 0x01, + 0x99, 0xdd, 0x64, 0x79, 0x67, 0x93, 0x18, 0xb3, 0x8e, 0x85, 0x86, 0xf7, 0xb9, 0xe7, 0xcf, 0xb9, + 0x6f, 0x7f, 0xfe, 0x9c, 0x3f, 0xf7, 0xfc, 0xf9, 0xde, 0x42, 0x54, 0xe3, 0x94, 0xc4, 0x82, 0xcb, + 0x62, 0xc3, 0x98, 0x25, 0xc1, 0xdf, 0x58, 0xfa, 0x0f, 0xa0, 0x1e, 0xb7, 0x4e, 0xe6, 0x07, 0xa9, + 0x78, 0x73, 0x89, 0x13, 0x9e, 0xcb, 0x5a, 0xa4, 0x26, 0xd3, 0x4b, 0xac, 0xf2, 0x92, 0x83, 0xf9, + 0xbf, 0x93, 0x01, 0x26, 0x4d, 0xc6, 0xed, 0xb9, 0xeb, 0x0e, 0xed, 0x13, 0x5a, 0xc9, 0x0f, 0x60, + 0x5d, 0xba, 0x1d, 0x95, 0xd8, 0x14, 0x79, 0x12, 0x24, 0x10, 0x8b, 0x93, 0xa0, 0xf3, 0x6e, 0xe7, + 0xac, 0x9e, 0x7b, 0x3b, 0xe7, 0xfc, 0x5b, 0x3f, 0xb7, 0xa1, 0xa2, 0xde, 0x6d, 0x11, 0xaa, 0x0d, + 0x98, 0x8b, 0x6b, 0x2d, 0x7f, 0xbe, 0x0a, 0xb0, 0x30, 0x6b, 0x7f, 0xdd, 0xc1, 0x03, 0xe7, 0x0c, + 0x49, 0xf6, 0xbc, 0x21, 0xb9, 0x0f, 0x9a, 0x4a, 0xa7, 0x5c, 0xb2, 0xaa, 0x2f, 0x08, 0x63, 0x95, + 0xc1, 0x09, 0xd5, 0x8b, 0x30, 0x14, 0xee, 0x23, 0x0f, 0x48, 0x65, 0x2c, 0x10, 0xc9, 0x4c, 0xb9, + 0x1b, 0x96, 0x9c, 0x50, 0xc8, 0x50, 0xf6, 0x29, 0x5c, 0x4f, 0x38, 0x8d, 0x63, 0x27, 0x3a, 0xf4, + 0xe7, 0x91, 0xf4, 0x20, 0x86, 0x52, 0xaa, 0x5c, 0x8d, 0x73, 0x7a, 0x2e, 0xd0, 0x42, 0x52, 0x84, + 0xec, 0x43, 0x28, 0x4f, 0xe6, 0xae, 0x6b, 0x44, 0xf6, 0x49, 0x24, 0x6f, 0x1b, 0x37, 0x52, 0x1e, + 0x01, 0x65, 0x78, 0x79, 0x69, 0x22, 0x13, 0xfa, 0xff, 0x5c, 0x85, 0xfc, 0x4f, 0xe7, 0x76, 0x70, + 0xca, 0x3e, 0x82, 0x72, 0x18, 0x4d, 0x23, 0xf5, 0x34, 0xee, 0xba, 0xc8, 0x80, 0xf0, 0x74, 0x98, + 0x66, 0x4f, 0x6d, 0x2f, 0x12, 0xee, 0x31, 0xa4, 0xa5, 0x0d, 0xe3, 0x32, 0xe4, 0xc3, 0xc8, 0x9e, + 0x85, 0x32, 0x76, 0x47, 0x24, 0xd8, 0x06, 0xe4, 0x3d, 0xdf, 0xb2, 0xc3, 0x74, 0x84, 0x0e, 0xda, + 0xf4, 0x5c, 0x20, 0x98, 0x0e, 0x85, 0x64, 0xc4, 0x97, 0x4e, 0xc4, 0x04, 0x86, 0x62, 0xae, 0x6d, + 0xd3, 0x72, 0xbc, 0x83, 0xf8, 0xd2, 0x5a, 0x92, 0xc6, 0xad, 0x90, 0x94, 0x65, 0xf3, 0x20, 0xbe, + 0x41, 0x2a, 0x93, 0x6c, 0x03, 0x2a, 0xf8, 0xf9, 0x3c, 0x70, 0x22, 0x7b, 0xf0, 0x38, 0x96, 0xc6, + 0x0a, 0x08, 0x55, 0x5d, 0xcb, 0x8e, 0xec, 0x71, 0x34, 0xf8, 0x4a, 0x86, 0xdd, 0x50, 0x60, 0x47, + 0x0c, 0xd1, 0x2d, 0xa8, 0xa5, 0x9a, 0xbb, 0xe4, 0x83, 0x18, 0xb4, 0xbb, 0x68, 0x71, 0x67, 0x14, + 0x23, 0x7a, 0x55, 0x35, 0x9c, 0xb3, 0x8a, 0x45, 0x9d, 0x53, 0x4c, 0x9e, 0x3c, 0xd9, 0xe3, 0x6d, + 0xfe, 0xa4, 0xad, 0x15, 0xf4, 0x3f, 0x58, 0x85, 0xf5, 0x61, 0x60, 0x7a, 0x21, 0xc5, 0xa1, 0xb6, + 0x7c, 0x2f, 0x0a, 0x7c, 0x97, 0xfd, 0x00, 0x4a, 0xd1, 0xd8, 0x55, 0x87, 0xe1, 0x76, 0xbc, 0xe8, + 0xcf, 0x90, 0x3e, 0x1c, 0x8e, 0x85, 0xaf, 0xb2, 0x18, 0x89, 0x0f, 0xf6, 0x0e, 0xe4, 0x47, 0xf6, + 0x81, 0xe3, 0x49, 0xb9, 0x77, 0xe5, 0x2c, 0xe3, 0x26, 0x22, 0x77, 0x56, 0xb8, 0xa0, 0x62, 0xef, + 0x41, 0x61, 0xec, 0x4f, 0xe3, 0x0d, 0x62, 0x71, 0x6b, 0x42, 0x29, 0x08, 0xb1, 0x3b, 0x2b, 0x5c, + 0xd2, 0xb1, 0x8f, 0xa0, 0x14, 0xf8, 0xae, 0x3b, 0x32, 0xc7, 0x47, 0x72, 0xeb, 0x68, 0x9c, 0xe5, + 0xe1, 0x12, 0xbf, 0xb3, 0xc2, 0x13, 0x5a, 0xfd, 0x21, 0x14, 0x65, 0x65, 0xb1, 0x03, 0x36, 0xdb, + 0x4f, 0x3a, 0xb2, 0x23, 0x5b, 0xfd, 0xdd, 0xdd, 0xce, 0x50, 0xdc, 0xce, 0xe2, 0xfd, 0x6e, 0x77, + 0xb3, 0xd9, 0x7a, 0xaa, 0xad, 0x6e, 0x96, 0xa0, 0x20, 0x3c, 0x54, 0xfa, 0xef, 0x64, 0x60, 0xed, + 0x4c, 0x03, 0xd8, 0x27, 0x90, 0x9b, 0xa2, 0x76, 0x28, 0xba, 0xe7, 0xee, 0xb9, 0xad, 0x54, 0xd2, + 0x42, 0x67, 0x44, 0x0e, 0xfd, 0x53, 0xa8, 0xa7, 0xe1, 0x8a, 0xe1, 0x5b, 0x83, 0x32, 0x6f, 0x37, + 0xb7, 0x8c, 0x7e, 0x0f, 0xcd, 0x4d, 0x34, 0x3f, 0x29, 0xf9, 0x9c, 0x77, 0xc8, 0x56, 0xfd, 0x2d, + 0xd0, 0xce, 0x76, 0x0c, 0x7b, 0x82, 0xfa, 0xff, 0x74, 0xe6, 0xda, 0x14, 0x6f, 0xab, 0x0c, 0xd9, + 0xad, 0x73, 0x7a, 0x52, 0x92, 0xd1, 0x88, 0xd5, 0xc7, 0xa9, 0xb4, 0xfe, 0xff, 0x00, 0x5b, 0xee, + 0xc1, 0x5f, 0x5f, 0xf6, 0xff, 0x23, 0x03, 0xb9, 0x3d, 0xd7, 0xf4, 0xd8, 0x6b, 0x90, 0xa7, 0x57, + 0x05, 0xa4, 0xf4, 0xac, 0x28, 0x0b, 0x1c, 0xa7, 0x05, 0xe1, 0xd8, 0x5b, 0x90, 0x8d, 0xc6, 0xf1, + 0x4d, 0xb4, 0x6b, 0x17, 0x4c, 0xbe, 0x9d, 0x15, 0x8e, 0x54, 0xec, 0x3e, 0x64, 0x2d, 0x2b, 0x8e, + 0x37, 0x95, 0x06, 0x36, 0x5a, 0x65, 0x5b, 0xf6, 0xc4, 0xf1, 0x1c, 0xf9, 0x0a, 0x02, 0x92, 0xb0, + 0xd7, 0x21, 0x6b, 0x8d, 0xdd, 0x74, 0xf0, 0xb0, 0xb0, 0xdf, 0x92, 0x0c, 0xad, 0xb1, 0x8b, 0x9a, + 0x52, 0x14, 0x9c, 0x1a, 0xc1, 0xdc, 0xa3, 0xd8, 0x9b, 0x50, 0x5a, 0x16, 0x15, 0xd4, 0x21, 0xe6, + 0x14, 0xc0, 0x13, 0xca, 0x2b, 0x2d, 0xb3, 0xc0, 0x9e, 0x99, 0x41, 0x62, 0x53, 0x38, 0xe1, 0x9e, + 0x00, 0x6c, 0x16, 0x80, 0x9e, 0x5b, 0xd3, 0xdf, 0xa6, 0x2b, 0xef, 0xa8, 0x00, 0xeb, 0xf1, 0xd7, + 0x39, 0x6f, 0xf6, 0x48, 0x8c, 0xfe, 0x17, 0x59, 0xa8, 0x28, 0xf5, 0x61, 0x1f, 0x40, 0xc9, 0x4a, + 0x2f, 0xc4, 0xeb, 0x4b, 0x95, 0x7e, 0xb8, 0x15, 0x2f, 0x41, 0x4b, 0x4e, 0xef, 0x4f, 0xa1, 0x16, + 0xda, 0x91, 0xf1, 0xc2, 0x0c, 0x1c, 0xf1, 0xd0, 0xc9, 0xaa, 0xea, 0x9d, 0x1e, 0xd8, 0xd1, 0xb3, + 0x18, 0xb3, 0xb3, 0xc2, 0xab, 0xa1, 0x92, 0x26, 0x2d, 0x5d, 0x36, 0x29, 0x9b, 0x7a, 0x0c, 0x46, + 0x00, 0x77, 0x56, 0x78, 0x8c, 0x47, 0x52, 0xfb, 0xc4, 0x1e, 0xcf, 0xa3, 0x58, 0x4b, 0xaf, 0xc5, + 0x0d, 0x22, 0x20, 0xbd, 0x3b, 0x25, 0x3e, 0xd9, 0x23, 0x94, 0x75, 0xa6, 0xeb, 0xfa, 0xa4, 0x2a, + 0xe5, 0x55, 0x5f, 0xf1, 0x56, 0x02, 0x17, 0xef, 0x5c, 0xc5, 0x29, 0x76, 0x0f, 0xf2, 0x7e, 0x74, + 0x68, 0xc7, 0xba, 0x6f, 0x7c, 0x79, 0x1e, 0x41, 0x5b, 0xad, 0x2e, 0xce, 0x14, 0x42, 0xeb, 0xbf, + 0xc8, 0x40, 0x51, 0xf6, 0x00, 0x5b, 0x87, 0xda, 0xa0, 0x3d, 0x34, 0x9e, 0x35, 0x79, 0xa7, 0xb9, + 0xd9, 0x6d, 0xcb, 0x98, 0xe7, 0x27, 0xbc, 0xd9, 0x93, 0x72, 0x92, 0xb7, 0x9f, 0xf5, 0x9f, 0xb6, + 0x85, 0x37, 0x69, 0xab, 0xdd, 0xfb, 0x42, 0xcb, 0x0a, 0x07, 0x6a, 0x7b, 0xaf, 0xc9, 0x51, 0x4a, + 0x56, 0xa0, 0xd8, 0xfe, 0xbc, 0xdd, 0xda, 0x27, 0x31, 0x59, 0x07, 0xd8, 0x6a, 0x37, 0xbb, 0xdd, + 0x7e, 0x0b, 0xc5, 0x66, 0x81, 0x31, 0xa8, 0xb7, 0x78, 0xbb, 0x39, 0x6c, 0x1b, 0xcd, 0x56, 0xab, + 0xbf, 0xdf, 0x1b, 0x6a, 0x45, 0x2c, 0xb1, 0xd9, 0x1d, 0xb6, 0x79, 0x02, 0xa2, 0x07, 0x4d, 0xb6, + 0x78, 0x7f, 0x2f, 0x81, 0x94, 0x37, 0xcb, 0x68, 0x31, 0xd1, 0x58, 0xe9, 0xff, 0xa5, 0x0e, 0xf5, + 0xf4, 0xd4, 0x64, 0x1f, 0x43, 0xc9, 0xb2, 0x52, 0x63, 0x7c, 0xf3, 0xbc, 0x29, 0xfc, 0x70, 0xcb, + 0x8a, 0x87, 0x59, 0x7c, 0xb0, 0x3b, 0xf1, 0x42, 0x5a, 0x5d, 0x5a, 0x48, 0xf1, 0x32, 0xfa, 0x31, + 0xac, 0xc9, 0xcb, 0xe7, 0x96, 0x19, 0x99, 0x23, 0x33, 0xb4, 0xd3, 0xab, 0xa4, 0x45, 0xc8, 0x2d, + 0x89, 0xdb, 0x59, 0xe1, 0xf5, 0x71, 0x0a, 0xc2, 0x7e, 0x08, 0x75, 0x93, 0x0c, 0xd6, 0x84, 0x3f, + 0xa7, 0x2a, 0x81, 0x4d, 0xc4, 0x29, 0xec, 0x35, 0x53, 0x05, 0xe0, 0x44, 0xb4, 0x02, 0x7f, 0xb6, + 0x60, 0xce, 0xa7, 0x8e, 0x49, 0x02, 0x7f, 0xa6, 0xf0, 0x56, 0x2d, 0x25, 0xcd, 0x3e, 0x82, 0xaa, + 0xac, 0xf9, 0xc2, 0x68, 0x4f, 0x96, 0xac, 0xa8, 0x36, 0x29, 0x75, 0x3b, 0x2b, 0xbc, 0x32, 0x5e, + 0x24, 0xd9, 0x63, 0xd4, 0xe4, 0x16, 0x2a, 0x70, 0x51, 0x9d, 0x6b, 0x54, 0xdb, 0x98, 0x0b, 0xcc, + 0x24, 0xc5, 0xde, 0x03, 0xa0, 0x7a, 0x0a, 0x9e, 0x52, 0x2a, 0xc8, 0x20, 0xf0, 0x67, 0x31, 0x4b, + 0xd9, 0x8a, 0x13, 0x4a, 0xf5, 0x84, 0xcb, 0xa5, 0xbc, 0x5c, 0x3d, 0x72, 0xbb, 0x2c, 0xaa, 0x27, + 0xbc, 0x35, 0x49, 0xf5, 0x04, 0x1b, 0x2c, 0x55, 0x2f, 0xe6, 0x12, 0xd5, 0x13, 0x4c, 0x71, 0xf5, + 0x04, 0x4f, 0xe5, 0x6c, 0xf5, 0x62, 0x16, 0xaa, 0x9e, 0xe0, 0xf8, 0xe1, 0x92, 0xee, 0x5e, 0xbd, + 0x50, 0x77, 0xc7, 0x61, 0x4b, 0x6b, 0xef, 0x3f, 0x84, 0x7a, 0x78, 0xe8, 0x1f, 0x2b, 0x02, 0xa4, + 0xa6, 0x72, 0x0f, 0x0e, 0xfd, 0x63, 0x55, 0x82, 0xd4, 0x42, 0x15, 0x80, 0xb5, 0x15, 0x4d, 0xa4, + 0xab, 0xb6, 0x75, 0xb5, 0xb6, 0xd4, 0xc2, 0x67, 0x8e, 0x7d, 0x8c, 0xb5, 0x35, 0xe3, 0x04, 0x76, + 0xca, 0xc2, 0x81, 0x11, 0x4a, 0x97, 0x44, 0xea, 0xa8, 0x5d, 0x96, 0x04, 0x89, 0x2b, 0x23, 0xc4, + 0xb9, 0x35, 0xf7, 0x54, 0x36, 0x4d, 0x9d, 0x5b, 0xfb, 0x5e, 0x8a, 0xb1, 0x2a, 0x48, 0x25, 0xeb, + 0x62, 0x55, 0x84, 0xf6, 0x57, 0x73, 0xdb, 0x1b, 0xdb, 0x32, 0x04, 0x27, 0xb5, 0x2a, 0x06, 0x12, + 0xb7, 0x58, 0x15, 0x31, 0x24, 0x99, 0xd7, 0x09, 0x3b, 0x3b, 0x3b, 0xaf, 0x15, 0x66, 0x9a, 0xd7, + 0x09, 0x6b, 0xb2, 0xa0, 0x12, 0xde, 0x4b, 0x4b, 0x0b, 0x4a, 0x61, 0x16, 0x0b, 0x2a, 0xe1, 0x7e, + 0x0c, 0x72, 0x36, 0x89, 0xce, 0x4d, 0x05, 0xea, 0x88, 0x5a, 0xcb, 0xde, 0x85, 0x71, 0x92, 0xc2, + 0xb9, 0x1a, 0xd8, 0x68, 0x2b, 0xc8, 0xa9, 0x70, 0x45, 0x9d, 0xab, 0x9c, 0x30, 0xc9, 0x52, 0x0a, + 0x16, 0x49, 0xfd, 0x8f, 0xf2, 0x50, 0x94, 0x42, 0x87, 0x5d, 0x82, 0x35, 0x29, 0xfb, 0xb6, 0x9a, + 0xc3, 0xe6, 0x66, 0x73, 0x80, 0xda, 0x0a, 0x83, 0xba, 0x10, 0x7e, 0x09, 0x2c, 0x83, 0x02, 0x91, + 0xa4, 0x5f, 0x02, 0x5a, 0x45, 0x81, 0x28, 0x79, 0xc5, 0x6b, 0x50, 0x59, 0xb6, 0x06, 0x15, 0xc1, + 0x28, 0x00, 0x74, 0x17, 0x89, 0xb8, 0x44, 0x3a, 0xaf, 0xb0, 0x88, 0x53, 0x86, 0xc2, 0x82, 0x45, + 0x00, 0x8a, 0x09, 0x4b, 0x7c, 0x0c, 0xc1, 0xa0, 0x3e, 0xe4, 0xfb, 0xbd, 0xd6, 0xa2, 0x9c, 0x32, + 0xdd, 0x1f, 0x11, 0xd9, 0x3c, 0xeb, 0xb4, 0x9f, 0x6b, 0x80, 0x4c, 0x22, 0x17, 0x4a, 0x57, 0x50, + 0xdf, 0xa2, 0x4c, 0x28, 0x59, 0x65, 0xd7, 0xe0, 0xd2, 0x60, 0xa7, 0xff, 0xdc, 0x10, 0x4c, 0x49, + 0x13, 0x6a, 0xec, 0x32, 0x68, 0x0a, 0x42, 0x64, 0x5f, 0xc7, 0x22, 0x09, 0x1a, 0x13, 0x0e, 0xb4, + 0x35, 0x3a, 0xb7, 0x43, 0xd8, 0x50, 0x6c, 0x40, 0x1a, 0x36, 0x45, 0xb0, 0xf6, 0xbb, 0xfb, 0xbb, + 0xbd, 0x81, 0xb6, 0x8e, 0x95, 0x20, 0x88, 0xa8, 0x39, 0x4b, 0xb2, 0x59, 0x6c, 0x5b, 0x97, 0x68, + 0x27, 0x43, 0xd8, 0xf3, 0x26, 0xef, 0x75, 0x7a, 0x4f, 0x06, 0xda, 0xe5, 0x24, 0xe7, 0x36, 0xe7, + 0x7d, 0x3e, 0xd0, 0xae, 0x24, 0x80, 0xc1, 0xb0, 0x39, 0xdc, 0x1f, 0x68, 0x57, 0x93, 0x5a, 0xee, + 0xf1, 0x7e, 0xab, 0x3d, 0x18, 0x74, 0x3b, 0x83, 0xa1, 0x76, 0x8d, 0x5d, 0x81, 0xf5, 0x45, 0x8d, + 0x62, 0xe2, 0x86, 0x52, 0x51, 0xfe, 0xa4, 0x3d, 0xd4, 0xae, 0x27, 0xd5, 0x68, 0xf5, 0xbb, 0xdd, + 0x26, 0x9d, 0x38, 0xdd, 0x40, 0x22, 0x3a, 0x7a, 0x93, 0xad, 0x79, 0x05, 0xeb, 0xb5, 0xdf, 0x53, + 0x41, 0x37, 0x95, 0xa9, 0x31, 0x68, 0xff, 0x74, 0xbf, 0xdd, 0x6b, 0xb5, 0xb5, 0x57, 0x17, 0x53, + 0x23, 0x81, 0xdd, 0x4a, 0xa6, 0x46, 0x02, 0xba, 0x9d, 0x94, 0x19, 0x83, 0x06, 0xda, 0x06, 0xe6, + 0x27, 0xeb, 0xd1, 0xeb, 0xb5, 0x5b, 0x43, 0x6c, 0xeb, 0x9d, 0xa4, 0x17, 0xf7, 0xf7, 0x9e, 0xf0, + 0xe6, 0x56, 0x5b, 0xd3, 0x11, 0xc2, 0xdb, 0xbd, 0xe6, 0x6e, 0x3c, 0xda, 0xaf, 0x6d, 0x56, 0xe9, + 0xed, 0x4c, 0xb9, 0x5d, 0xea, 0x3f, 0x01, 0xa6, 0x3e, 0x42, 0x27, 0x5f, 0x63, 0x61, 0x90, 0x9b, + 0x04, 0xfe, 0x34, 0xbe, 0x9f, 0x8b, 0xdf, 0x68, 0xab, 0xcd, 0xe6, 0x23, 0x3a, 0x36, 0x5a, 0x5c, + 0xce, 0x53, 0x41, 0xfa, 0x1f, 0x65, 0xa0, 0x9e, 0xde, 0x2a, 0xc9, 0x99, 0x36, 0x31, 0x3c, 0x3f, + 0x12, 0xcf, 0x7c, 0x84, 0xc9, 0xdb, 0x70, 0x93, 0x9e, 0x1f, 0xd1, 0x3b, 0x1f, 0x64, 0x3a, 0x26, + 0x3b, 0x9f, 0xc8, 0x35, 0x49, 0xb3, 0x0e, 0x5c, 0x4a, 0xbd, 0xd1, 0x97, 0x7a, 0x64, 0xa5, 0x91, + 0xbc, 0xbf, 0x75, 0xa6, 0xfe, 0x9c, 0x85, 0xcb, 0x6d, 0x92, 0x57, 0x2c, 0x73, 0x8b, 0x2b, 0x96, + 0x3b, 0x50, 0x4b, 0xed, 0xcc, 0x64, 0xf1, 0x4f, 0xd2, 0x35, 0x2d, 0x39, 0x93, 0x97, 0x57, 0x53, + 0xff, 0xc3, 0x0c, 0x54, 0xd5, 0x7d, 0xfa, 0x7b, 0xe7, 0x44, 0x37, 0x19, 0xe4, 0xb7, 0xe1, 0x58, + 0xf1, 0xf3, 0x1e, 0x31, 0xa8, 0x43, 0x6f, 0x06, 0x0b, 0xbf, 0xe4, 0xf6, 0xd1, 0x20, 0x69, 0x8e, + 0x0a, 0x42, 0x93, 0x99, 0x2e, 0x67, 0x6d, 0x3f, 0x45, 0x02, 0x79, 0x17, 0x62, 0x01, 0xd1, 0x6f, + 0x43, 0x79, 0xfb, 0x28, 0x3e, 0xf9, 0x57, 0x1f, 0xbb, 0x29, 0x8b, 0x1b, 0x9d, 0xfa, 0x9f, 0x64, + 0xa0, 0xbe, 0x78, 0x8d, 0x80, 0xc2, 0xfa, 0xc4, 0xdb, 0x8e, 0x62, 0x3a, 0xac, 0x5a, 0xa3, 0xc5, + 0x73, 0xc2, 0xab, 0xea, 0x73, 0xc2, 0xaf, 0xc9, 0xcc, 0xb2, 0xea, 0x6e, 0x96, 0x94, 0x25, 0xef, + 0x8b, 0x3e, 0x86, 0x2a, 0xfe, 0xe7, 0xf6, 0xc4, 0x0e, 0x02, 0x3b, 0x7e, 0xe6, 0x72, 0x89, 0x38, + 0x45, 0x44, 0x16, 0x89, 0x3d, 0x91, 0x8a, 0xd1, 0xb9, 0x0f, 0x26, 0x20, 0x5e, 0xff, 0xa7, 0x39, + 0xa8, 0x28, 0x5a, 0xcf, 0xb7, 0x9a, 0x7e, 0x37, 0xa1, 0xbc, 0xb8, 0xbe, 0x2f, 0x2f, 0xe9, 0x25, + 0x80, 0xd4, 0x58, 0x65, 0xcf, 0x8c, 0x55, 0x03, 0x8a, 0x32, 0xfe, 0x4f, 0xba, 0x1b, 0xe3, 0x64, + 0xda, 0xb1, 0x97, 0x7f, 0x89, 0xef, 0xfc, 0x7d, 0xa8, 0x2a, 0x5e, 0xb9, 0x50, 0x5e, 0x64, 0x3b, + 0x4b, 0x5f, 0x59, 0x78, 0xe8, 0x42, 0x76, 0x05, 0x0a, 0x93, 0x23, 0xc3, 0x1a, 0x89, 0xdb, 0x4b, + 0x65, 0x9e, 0x9f, 0x1c, 0x6d, 0x8d, 0xe8, 0x64, 0x61, 0x92, 0x6c, 0xf4, 0xc2, 0x57, 0x52, 0x9a, + 0xc4, 0xdb, 0xf9, 0x7d, 0x28, 0x4e, 0x8e, 0xc4, 0xed, 0xa5, 0xb2, 0x1a, 0x4b, 0xb3, 0xe8, 0xf2, + 0xc2, 0xe4, 0x88, 0xee, 0x3a, 0xbd, 0x0b, 0x97, 0xe5, 0xf6, 0x69, 0x86, 0x86, 0xb8, 0x0f, 0x4d, + 0xcf, 0x3a, 0x88, 0xa7, 0x6f, 0xd6, 0x05, 0xae, 0x19, 0x0e, 0x08, 0x83, 0x33, 0x4e, 0x87, 0xaa, + 0x32, 0x01, 0xc5, 0xfb, 0x17, 0x65, 0x9e, 0x82, 0xb1, 0x4f, 0xa0, 0x3a, 0x39, 0x12, 0x03, 0x3a, + 0xf4, 0x77, 0x6d, 0x19, 0x6d, 0x7c, 0xf9, 0xec, 0x50, 0x52, 0x44, 0x69, 0x8a, 0x92, 0xbd, 0x03, + 0x2c, 0xb0, 0x23, 0xdb, 0x23, 0x01, 0x60, 0xd9, 0xa6, 0xe5, 0x3a, 0x9e, 0x4d, 0x1a, 0x53, 0x96, + 0xaf, 0x27, 0x98, 0x2d, 0x89, 0x60, 0x57, 0xa1, 0xc0, 0xcd, 0xe3, 0xc1, 0x4f, 0xbb, 0xa4, 0x21, + 0x95, 0xb9, 0x4c, 0xe1, 0xc2, 0xe9, 0x84, 0x7b, 0xf1, 0x95, 0x5a, 0xd2, 0x83, 0x4a, 0x5c, 0x05, + 0xe9, 0xff, 0x2c, 0x03, 0xf5, 0x85, 0xf2, 0x8b, 0xeb, 0x99, 0x3d, 0x50, 0xdf, 0x77, 0x6d, 0x9c, + 0xd5, 0x8f, 0x91, 0xe4, 0xe1, 0xf0, 0x74, 0x26, 0x5e, 0x4a, 0x3b, 0xef, 0xf9, 0x93, 0xf3, 0x3c, + 0xae, 0xd9, 0x73, 0x5f, 0x9f, 0x7c, 0x02, 0xd9, 0xe1, 0xe9, 0x4c, 0x38, 0x5a, 0x70, 0x0b, 0x14, + 0x46, 0x99, 0xd8, 0xfc, 0x28, 0x12, 0xe0, 0x69, 0xfb, 0x0b, 0x71, 0x3f, 0x79, 0x8f, 0x77, 0x76, + 0x9b, 0xfc, 0x0b, 0x8a, 0xe9, 0x20, 0x25, 0x61, 0xbb, 0xcf, 0xdb, 0x9d, 0x27, 0x3d, 0x02, 0xe4, + 0xc8, 0x0d, 0xb3, 0xa8, 0x62, 0xd3, 0xb2, 0xb6, 0x8f, 0xd4, 0x97, 0x23, 0x32, 0xa9, 0x97, 0x23, + 0xd2, 0x57, 0x1a, 0x57, 0xcf, 0x5e, 0x69, 0x64, 0xc9, 0x82, 0x4e, 0xa4, 0x03, 0x7b, 0x03, 0x72, + 0x93, 0x23, 0xfb, 0x34, 0x6d, 0xe1, 0xa4, 0xd7, 0x22, 0x11, 0xe8, 0xbf, 0xcc, 0x00, 0x4b, 0x55, + 0x44, 0x28, 0xdd, 0xdf, 0xb7, 0x2e, 0x1f, 0x43, 0x43, 0x3e, 0x2b, 0x26, 0xa8, 0x14, 0x17, 0xaf, + 0xec, 0xd2, 0x2b, 0xfe, 0x22, 0x66, 0x6e, 0xf1, 0x42, 0x0b, 0x7b, 0x17, 0xc4, 0xbb, 0x4e, 0x38, + 0xb5, 0xd2, 0x3e, 0x0d, 0x45, 0x54, 0xf0, 0x05, 0xcd, 0xe2, 0x21, 0x27, 0xf5, 0x81, 0x2a, 0xe1, + 0x1d, 0x5e, 0x5b, 0x8c, 0x1a, 0x89, 0x0f, 0xfd, 0xf7, 0x33, 0x70, 0x29, 0x3d, 0x21, 0x7e, 0xb5, + 0x56, 0xa6, 0x5f, 0xe3, 0xca, 0x9e, 0x7d, 0x8d, 0xeb, 0xbc, 0xf9, 0x94, 0x3b, 0x77, 0x3e, 0xfd, + 0xb5, 0x0c, 0x5c, 0x56, 0x7a, 0x7f, 0x61, 0x26, 0xfd, 0x15, 0xd5, 0x4c, 0x79, 0x94, 0x2b, 0x97, + 0x7a, 0x94, 0x4b, 0xff, 0x83, 0x0c, 0x5c, 0x3d, 0x53, 0x13, 0x6e, 0xff, 0x95, 0xd6, 0x25, 0xfd, + 0x78, 0x17, 0x79, 0xa8, 0x45, 0x10, 0xa1, 0xb8, 0x46, 0xc7, 0xd2, 0xaf, 0x71, 0xd1, 0xcd, 0xd3, + 0x0f, 0x60, 0x7d, 0x51, 0xc7, 0x96, 0x7c, 0x68, 0xec, 0x36, 0x54, 0x3c, 0xfb, 0xd8, 0x88, 0x9f, + 0x21, 0x93, 0x61, 0x25, 0x9e, 0x7d, 0x2c, 0x09, 0xf4, 0x6d, 0x55, 0x60, 0x24, 0xef, 0x0d, 0xbb, + 0x56, 0x2a, 0x3e, 0xc1, 0x77, 0xad, 0x18, 0x85, 0xb9, 0x29, 0x2d, 0x2a, 0x7a, 0xf6, 0x31, 0x0d, + 0xd6, 0xb1, 0xcc, 0xa7, 0x69, 0x59, 0xf2, 0x1c, 0xf8, 0xbc, 0x17, 0x52, 0xae, 0x43, 0x69, 0x16, + 0xa4, 0xba, 0xa4, 0x38, 0x0b, 0x44, 0xb1, 0x77, 0x65, 0xd0, 0xca, 0x45, 0x67, 0xc6, 0x22, 0x8c, + 0x45, 0xbe, 0x47, 0x9e, 0x5b, 0xbc, 0x47, 0xfe, 0xa1, 0x94, 0x15, 0x38, 0x71, 0x65, 0xc9, 0x1a, + 0x64, 0x1d, 0xeb, 0x84, 0x0a, 0xae, 0x71, 0xfc, 0x24, 0xcd, 0xc9, 0xfe, 0x4a, 0xc6, 0xcd, 0xe0, + 0xa7, 0xbe, 0x09, 0x15, 0xc5, 0x22, 0xc2, 0x2d, 0x5d, 0xf1, 0x26, 0x84, 0xe9, 0x17, 0x26, 0x16, + 0x1d, 0xc4, 0x2b, 0x0b, 0x67, 0x42, 0xa8, 0xff, 0x79, 0x19, 0x60, 0x81, 0x4b, 0x6d, 0xb4, 0x99, + 0x33, 0x1b, 0xed, 0x77, 0x3a, 0x8a, 0xfe, 0x00, 0xea, 0x63, 0x7f, 0x76, 0x6a, 0x2c, 0x38, 0xb2, + 0xe7, 0x72, 0x54, 0x91, 0x6a, 0xb8, 0xb8, 0x3c, 0xb2, 0x7c, 0x30, 0x98, 0x3b, 0xf7, 0x60, 0xf0, + 0x7d, 0x28, 0x0a, 0x87, 0x77, 0x28, 0x2f, 0x1f, 0x5d, 0x3b, 0xdb, 0xce, 0x87, 0x32, 0x1c, 0x33, + 0xa6, 0x63, 0x6d, 0xb4, 0x66, 0x0f, 0xfc, 0xc0, 0x89, 0x0e, 0xa7, 0xea, 0x55, 0xa4, 0x5b, 0xcb, + 0x9c, 0x31, 0x99, 0x78, 0x6b, 0xc8, 0x54, 0x93, 0xca, 0xbe, 0x1c, 0x4d, 0xa5, 0x17, 0x86, 0xf6, + 0xe5, 0xa2, 0xba, 0x2f, 0x0f, 0xa7, 0xc2, 0xf7, 0x82, 0xfb, 0xf2, 0x3b, 0x70, 0x49, 0x86, 0x85, + 0x23, 0x03, 0x76, 0x27, 0xd1, 0x8b, 0x88, 0x20, 0x79, 0xed, 0x7f, 0x38, 0x25, 0xad, 0x15, 0xc9, + 0x3f, 0x87, 0xcb, 0xe3, 0x43, 0xd3, 0x3b, 0xb0, 0x8d, 0x68, 0xe4, 0x1a, 0xf4, 0xe8, 0xa8, 0x31, + 0x35, 0x67, 0x52, 0x5d, 0x78, 0x63, 0xa9, 0xb2, 0x2d, 0x22, 0x1e, 0x8e, 0x5c, 0x0a, 0x22, 0x49, + 0x8e, 0x8f, 0xd7, 0xc7, 0x67, 0xe1, 0x67, 0x4e, 0x71, 0xe0, 0xec, 0x29, 0xce, 0x92, 0x02, 0x51, + 0x59, 0x56, 0x20, 0x6e, 0xfc, 0x5e, 0x0e, 0x0a, 0x32, 0x5c, 0xed, 0x01, 0xe4, 0xac, 0xc0, 0x9f, + 0x25, 0x51, 0x65, 0xe7, 0x6c, 0xcb, 0xf4, 0xdb, 0x0b, 0xb8, 0x83, 0x3f, 0x84, 0x82, 0x69, 0x59, + 0xc6, 0xe4, 0x28, 0x7d, 0xd2, 0x72, 0x66, 0x87, 0xdc, 0x59, 0xe1, 0x79, 0x93, 0xb6, 0xca, 0x8f, + 0xa1, 0x8c, 0xf4, 0x8b, 0x10, 0xa1, 0xca, 0xf2, 0xbe, 0x1f, 0xef, 0x65, 0x3b, 0x2b, 0xbc, 0x64, + 0xc6, 0xfb, 0xda, 0x8f, 0xd2, 0x3e, 0x2b, 0xb1, 0xd1, 0xdc, 0x58, 0x62, 0xbd, 0xc8, 0x7b, 0xf5, + 0x9b, 0x20, 0x9c, 0x18, 0x89, 0xb4, 0xc9, 0xab, 0x4e, 0xfd, 0x25, 0xd9, 0xb4, 0xb3, 0xc2, 0xc5, + 0x9a, 0x8b, 0x65, 0xd5, 0x87, 0xb1, 0x3f, 0x29, 0x79, 0xe1, 0xfa, 0x9c, 0x9e, 0x41, 0x59, 0x91, + 0x38, 0x95, 0x48, 0x70, 0x20, 0x9b, 0x65, 0xc5, 0xd1, 0x28, 0xc5, 0x25, 0xb6, 0x44, 0x22, 0x11, + 0x5b, 0x22, 0x9e, 0x3e, 0x81, 0x0a, 0xb9, 0x76, 0x24, 0x5f, 0x69, 0xa9, 0x6b, 0x17, 0x02, 0x85, + 0x1c, 0xd6, 0x0b, 0xf1, 0xd2, 0x8a, 0xdb, 0x19, 0xd8, 0xaa, 0x4f, 0xf0, 0xe6, 0xb9, 0x1d, 0xc5, + 0x13, 0xf7, 0xa0, 0x68, 0x2c, 0x17, 0x3c, 0x8b, 0x43, 0xa7, 0x1b, 0x1c, 0xae, 0x9e, 0x3f, 0x0d, + 0xd5, 0xa0, 0x85, 0x9c, 0x08, 0x5a, 0xd0, 0xd3, 0xcf, 0x26, 0xa4, 0x6f, 0x3f, 0x2a, 0x21, 0x0c, + 0x9f, 0xa1, 0x5d, 0xa8, 0x2e, 0xbc, 0x0a, 0x14, 0xe3, 0xd7, 0x07, 0x29, 0xea, 0xb2, 0xd5, 0xdf, + 0xfb, 0x42, 0xcb, 0x20, 0xb8, 0xd3, 0x1b, 0x0c, 0x9b, 0x3d, 0x79, 0xa4, 0xd8, 0xe9, 0xc9, 0x23, + 0x45, 0xfd, 0x6f, 0x66, 0xa1, 0x9c, 0xb8, 0x44, 0xbf, 0xbf, 0x31, 0x98, 0x58, 0x59, 0x59, 0xd5, + 0xca, 0x3a, 0xa3, 0x9e, 0x88, 0x87, 0x42, 0xc5, 0x73, 0x1a, 0x6b, 0x69, 0x25, 0x20, 0x5c, 0xbe, + 0x55, 0x95, 0xff, 0x96, 0xb7, 0xaa, 0xd4, 0xc0, 0xb7, 0x42, 0x3a, 0xf0, 0xed, 0xcc, 0x0b, 0x94, + 0x45, 0x7a, 0x90, 0x4e, 0x7d, 0x81, 0x92, 0x7e, 0xe8, 0xe5, 0x99, 0x63, 0x1f, 0xcb, 0x48, 0x31, + 0x99, 0x4a, 0x8b, 0x71, 0x78, 0x89, 0x18, 0xff, 0x16, 0x22, 0x81, 0x3d, 0x82, 0xcb, 0x93, 0xa3, + 0xe4, 0x19, 0xbc, 0x85, 0x6d, 0x51, 0xa5, 0x2a, 0x9d, 0x8b, 0xd3, 0x7f, 0x2f, 0x03, 0xb0, 0xf0, + 0x01, 0xfe, 0xca, 0x0e, 0x0a, 0xc5, 0x06, 0xcc, 0x7e, 0x83, 0x0d, 0xf8, 0xb2, 0x57, 0x17, 0xbe, + 0x82, 0x72, 0xe2, 0xf5, 0xfd, 0xfe, 0xf3, 0xe5, 0x3b, 0x15, 0xf9, 0xdb, 0xb1, 0xb3, 0x26, 0x71, + 0x9b, 0xfe, 0xaa, 0x7d, 0x91, 0x2a, 0x3e, 0xfb, 0x92, 0xe2, 0x4f, 0x84, 0xc7, 0x24, 0x29, 0xfc, + 0xd7, 0xbc, 0x48, 0xd4, 0xf9, 0x9b, 0x4b, 0xcd, 0x5f, 0x7d, 0x2e, 0xdd, 0x3e, 0xbf, 0x7a, 0xd1, + 0xdf, 0xa9, 0xc1, 0x7f, 0x99, 0x89, 0x7d, 0x13, 0xc9, 0x83, 0x84, 0x17, 0x2a, 0x3c, 0xe7, 0xbb, + 0x57, 0xbe, 0x4b, 0x71, 0xdf, 0x68, 0x2e, 0xe5, 0xbe, 0xc9, 0x5c, 0x7a, 0x03, 0xf2, 0x42, 0x30, + 0xe7, 0x2f, 0x32, 0x95, 0x04, 0xfe, 0xa5, 0x2f, 0xf8, 0xea, 0xba, 0x54, 0xf0, 0x44, 0x7b, 0x2f, + 0xc7, 0xf9, 0xc6, 0xaf, 0x0f, 0x53, 0xbc, 0xed, 0xef, 0x64, 0x84, 0xa4, 0xfc, 0xbe, 0x7d, 0xf2, + 0x6b, 0xb3, 0x97, 0xfe, 0x57, 0x06, 0x6a, 0xa9, 0x03, 0x9f, 0xef, 0x51, 0x99, 0x73, 0x25, 0x73, + 0xf6, 0xff, 0x20, 0xc9, 0x9c, 0x8a, 0x77, 0x2a, 0xa5, 0xe3, 0x9d, 0x50, 0x32, 0x56, 0x53, 0x9a, + 0xee, 0x79, 0x3a, 0x71, 0xe6, 0x5c, 0x9d, 0xf8, 0x56, 0xf2, 0x13, 0x25, 0x9d, 0x2d, 0x11, 0x5e, + 0x54, 0xe3, 0x0a, 0x84, 0x7d, 0x0a, 0xd7, 0x85, 0xa6, 0x20, 0x7f, 0x26, 0xc4, 0x9f, 0x18, 0xc9, + 0x0f, 0x98, 0xc8, 0x18, 0xae, 0xab, 0x82, 0x40, 0x3c, 0xd5, 0x3c, 0x69, 0xc6, 0x58, 0xbd, 0x03, + 0xb5, 0xd4, 0x49, 0x9a, 0xf2, 0x63, 0x48, 0x19, 0xf5, 0xc7, 0x90, 0xd8, 0x06, 0xe4, 0x8f, 0x0f, + 0xed, 0xc0, 0x3e, 0xe7, 0x25, 0x35, 0x81, 0xd0, 0x7f, 0x08, 0x55, 0xf5, 0x54, 0x9f, 0xbd, 0x0d, + 0x79, 0x27, 0xb2, 0xa7, 0xb1, 0xbd, 0x72, 0x75, 0xf9, 0xe0, 0xbf, 0x13, 0xd9, 0x53, 0x2e, 0x88, + 0xf4, 0x5f, 0x64, 0x40, 0x3b, 0x8b, 0x53, 0x7e, 0xb1, 0x29, 0x73, 0xc1, 0x2f, 0x36, 0xad, 0xa6, + 0x2a, 0x79, 0xde, 0x8f, 0x2e, 0x25, 0xaf, 0x39, 0xe5, 0x2e, 0x78, 0xcd, 0x89, 0xdd, 0x83, 0x52, + 0x60, 0xd3, 0xcf, 0xe1, 0x58, 0xe7, 0x84, 0xc5, 0x26, 0x38, 0xfd, 0x77, 0x33, 0x50, 0x94, 0x21, + 0x08, 0xe7, 0x1a, 0x90, 0x6f, 0x42, 0x51, 0xfc, 0x34, 0x4e, 0xfc, 0x00, 0xc4, 0x52, 0x4c, 0x5e, + 0x8c, 0x67, 0xb7, 0x44, 0x60, 0x46, 0xda, 0xa0, 0xdc, 0x73, 0x4d, 0x8f, 0x13, 0x5c, 0xbe, 0xc0, + 0x6e, 0x4e, 0xe5, 0x6d, 0x31, 0xf1, 0x4c, 0x03, 0x10, 0x48, 0x5c, 0x0c, 0xfb, 0x11, 0x14, 0x65, + 0x88, 0xc3, 0xb9, 0x55, 0x79, 0xd9, 0x4f, 0xa7, 0x6c, 0x00, 0x2c, 0x62, 0x1e, 0xce, 0xcb, 0x41, + 0x7f, 0x00, 0xa5, 0x38, 0xcc, 0x01, 0xe7, 0xdf, 0xa2, 0x68, 0x19, 0x6f, 0xad, 0x56, 0xc6, 0x95, + 0x0f, 0x90, 0x76, 0xfd, 0xf1, 0x11, 0xb9, 0x78, 0xde, 0x05, 0x0a, 0x0c, 0x1f, 0x2e, 0xbd, 0x67, + 0x91, 0x7e, 0xec, 0x35, 0x21, 0x62, 0x0f, 0x20, 0x11, 0xad, 0x2f, 0xb3, 0x40, 0xf5, 0x66, 0x7c, + 0x85, 0x80, 0x66, 0xd9, 0x63, 0xe9, 0xca, 0xe8, 0xd2, 0x2b, 0x30, 0x19, 0xf5, 0xc9, 0xdf, 0x54, + 0x9d, 0xb8, 0x42, 0xa6, 0xd7, 0xa1, 0xaa, 0x9e, 0xcd, 0xea, 0x4d, 0x58, 0xdf, 0xb5, 0x23, 0x13, + 0xe5, 0x4f, 0xfc, 0x30, 0x80, 0x98, 0xbf, 0xf8, 0x91, 0x9e, 0xbf, 0x67, 0xe9, 0xb8, 0x20, 0xd2, + 0x7f, 0x91, 0x03, 0xed, 0x2c, 0xee, 0x9b, 0xae, 0x53, 0xdc, 0x86, 0x8a, 0x4f, 0xf3, 0x22, 0xf5, + 0xc6, 0xbe, 0x00, 0x29, 0xc1, 0x93, 0xa9, 0xd7, 0x9d, 0x4b, 0x4e, 0xb8, 0x23, 0xde, 0x77, 0xbe, + 0x26, 0x62, 0xe7, 0x5d, 0x7f, 0x4c, 0xd3, 0xba, 0x4a, 0xa1, 0xf2, 0x5d, 0x7f, 0x4c, 0xb7, 0x34, + 0xa4, 0x11, 0x2b, 0x02, 0x86, 0xaa, 0xbc, 0x24, 0x2d, 0x57, 0x72, 0x60, 0xcb, 0x90, 0xca, 0x28, + 0x94, 0xf7, 0x5e, 0x4a, 0x02, 0x30, 0x0c, 0xe3, 0x37, 0x30, 0xc7, 0xf2, 0x41, 0xf8, 0x2c, 0xbd, + 0x81, 0xd9, 0xf2, 0xe8, 0x92, 0x06, 0xfd, 0x7e, 0xc1, 0x58, 0xfe, 0xbe, 0x84, 0x7c, 0x85, 0x14, + 0x51, 0xaf, 0x89, 0x27, 0xf3, 0x03, 0x3b, 0x0c, 0xc5, 0x13, 0x48, 0x65, 0xf9, 0x0a, 0x8c, 0x04, + 0x26, 0x6f, 0x2d, 0xc9, 0x1f, 0x2c, 0x40, 0x12, 0x90, 0x6f, 0x2d, 0x89, 0x9f, 0x2b, 0x40, 0x82, + 0xeb, 0x50, 0xfa, 0xda, 0xf7, 0x6c, 0x32, 0x86, 0x2b, 0x54, 0xab, 0x22, 0xa6, 0x77, 0xcd, 0x99, + 0xfe, 0x2f, 0x32, 0x70, 0xf9, 0x6c, 0xaf, 0xd2, 0x84, 0xa9, 0x42, 0xa9, 0xd5, 0xef, 0x1a, 0xbd, + 0xe6, 0x6e, 0x5b, 0x5b, 0x61, 0x6b, 0x50, 0xe9, 0x6f, 0xfe, 0xa4, 0xdd, 0x1a, 0x0a, 0x40, 0x86, + 0xae, 0x03, 0x0e, 0x8c, 0x9d, 0xce, 0xd6, 0x56, 0xbb, 0x27, 0xac, 0x87, 0xfe, 0xe6, 0x4f, 0x8c, + 0x6e, 0xbf, 0x25, 0xde, 0x37, 0x8f, 0x4f, 0x82, 0x07, 0x5a, 0x8e, 0x4e, 0x5f, 0x29, 0x3e, 0x11, + 0x93, 0x79, 0x11, 0x7e, 0xf7, 0x7c, 0x60, 0xb4, 0x7a, 0x43, 0xad, 0x80, 0xa9, 0xde, 0x7e, 0xb7, + 0x4b, 0x29, 0x8a, 0xb3, 0x69, 0xf5, 0x77, 0xf7, 0x78, 0x7b, 0x30, 0x30, 0x06, 0x9d, 0x9f, 0xb5, + 0xb5, 0x12, 0x95, 0xcc, 0x3b, 0x4f, 0x3a, 0x3d, 0x01, 0x28, 0xb3, 0x22, 0x64, 0x77, 0x3b, 0x3d, + 0x71, 0x0d, 0x72, 0xb7, 0xf9, 0xb9, 0x56, 0xc1, 0x8f, 0xc1, 0xfe, 0xae, 0x56, 0x7d, 0x70, 0x07, + 0xaa, 0xea, 0x8f, 0x84, 0x50, 0xc4, 0x9d, 0xef, 0xd9, 0xe2, 0xa5, 0xcc, 0xee, 0xd7, 0x1f, 0x68, + 0x99, 0x07, 0x3a, 0x54, 0x94, 0x77, 0x6a, 0x91, 0x62, 0xc7, 0x0c, 0x0f, 0xe5, 0xab, 0x89, 0x68, + 0x87, 0x69, 0x99, 0x07, 0xf7, 0x50, 0x64, 0xab, 0xaf, 0xc4, 0x02, 0x14, 0x7a, 0x7e, 0x30, 0x35, + 0x5d, 0x49, 0x67, 0xcf, 0x43, 0xa4, 0x7b, 0x17, 0xae, 0x9c, 0xfb, 0xe6, 0x2d, 0x85, 0x6d, 0x3a, + 0xd3, 0x99, 0x6b, 0x8b, 0xc8, 0xc3, 0x9d, 0xd3, 0x51, 0xe0, 0x58, 0x5a, 0xe6, 0xc1, 0x27, 0xf1, + 0x55, 0xa0, 0xb8, 0xec, 0x6e, 0xbf, 0xb9, 0x25, 0x7a, 0x37, 0xb9, 0xf4, 0x39, 0xdc, 0x14, 0x2f, + 0x22, 0xf2, 0xf6, 0x60, 0xbf, 0x3b, 0x94, 0x17, 0x4c, 0x1f, 0x7c, 0x06, 0x8d, 0x8b, 0x42, 0xf0, + 0xb0, 0x46, 0xad, 0x9d, 0x26, 0x85, 0x39, 0x62, 0x6f, 0xf6, 0x0d, 0x91, 0xca, 0x88, 0x28, 0xd1, + 0x6e, 0x9b, 0x8e, 0xe7, 0x1f, 0xfc, 0x3c, 0xa3, 0xc8, 0x90, 0x38, 0x8c, 0x2a, 0x01, 0xc8, 0x6e, + 0x52, 0x41, 0xdc, 0x36, 0x2d, 0x2d, 0xc3, 0xae, 0x02, 0x4b, 0x81, 0xba, 0xfe, 0xd8, 0x74, 0xb5, + 0x55, 0x3a, 0x88, 0x8f, 0xe1, 0x14, 0xec, 0xaa, 0x65, 0xd9, 0xab, 0x70, 0x3d, 0x81, 0x75, 0xfd, + 0xe3, 0xbd, 0xc0, 0x41, 0x23, 0xf4, 0x54, 0xa0, 0x73, 0x9b, 0x3f, 0xfe, 0xb3, 0x5f, 0xde, 0xca, + 0xfc, 0x9b, 0x5f, 0xde, 0xca, 0xfc, 0xa7, 0x5f, 0xde, 0x5a, 0xf9, 0xc5, 0x7f, 0xbe, 0x95, 0xf9, + 0x99, 0xfa, 0x2b, 0xa5, 0x53, 0x33, 0x0a, 0x9c, 0x13, 0x31, 0x6b, 0xe3, 0x84, 0x67, 0xbf, 0x3b, + 0x3b, 0x3a, 0x78, 0x77, 0x36, 0x7a, 0x17, 0x45, 0xc3, 0xa8, 0x40, 0xbf, 0x47, 0xfa, 0xf8, 0x7f, + 0x07, 0x00, 0x00, 0xff, 0xff, 0x16, 0xc7, 0x61, 0x92, 0xef, 0x74, 0x00, 0x00, } func (m *Type) Marshal() (dAtA []byte, err error) { @@ -17654,36 +17610,22 @@ func (m *Node) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x92 } - if m.PreDeleteCtx != nil { - { - size, err := m.PreDeleteCtx.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintPlan(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x2 - i-- - dAtA[i] = 0x8a - } if len(m.SourceStep) > 0 { - dAtA85 := make([]byte, len(m.SourceStep)*10) - var j84 int + dAtA84 := make([]byte, len(m.SourceStep)*10) + var j83 int for _, num1 := range m.SourceStep { num := uint64(num1) for num >= 1<<7 { - dAtA85[j84] = uint8(uint64(num)&0x7f | 0x80) + dAtA84[j83] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j84++ + j83++ } - dAtA85[j84] = uint8(num) - j84++ + dAtA84[j83] = uint8(num) + j83++ } - i -= j84 - copy(dAtA[i:], dAtA85[:j84]) - i = encodeVarintPlan(dAtA, i, uint64(j84)) + i -= j83 + copy(dAtA[i:], dAtA84[:j83]) + i = encodeVarintPlan(dAtA, i, uint64(j83)) i-- dAtA[i] = 0x2 i-- @@ -17774,21 +17716,21 @@ func (m *Node) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0xca } if len(m.BindingTags) > 0 { - dAtA91 := make([]byte, len(m.BindingTags)*10) - var j90 int + dAtA90 := make([]byte, len(m.BindingTags)*10) + var j89 int for _, num1 := range m.BindingTags { num := uint64(num1) for num >= 1<<7 { - dAtA91[j90] = uint8(uint64(num)&0x7f | 0x80) + dAtA90[j89] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j90++ + j89++ } - dAtA91[j90] = uint8(num) - j90++ + dAtA90[j89] = uint8(num) + j89++ } - i -= j90 - copy(dAtA[i:], dAtA91[:j90]) - i = encodeVarintPlan(dAtA, i, uint64(j90)) + i -= j89 + copy(dAtA[i:], dAtA90[:j89]) + i = encodeVarintPlan(dAtA, i, uint64(j89)) i-- dAtA[i] = 0x1 i-- @@ -18038,21 +17980,21 @@ func (m *Node) MarshalToSizedBuffer(dAtA []byte) (int, error) { } } if len(m.Children) > 0 { - dAtA101 := make([]byte, len(m.Children)*10) - var j100 int + dAtA100 := make([]byte, len(m.Children)*10) + var j99 int for _, num1 := range m.Children { num := uint64(num1) for num >= 1<<7 { - dAtA101[j100] = uint8(uint64(num)&0x7f | 0x80) + dAtA100[j99] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j100++ + j99++ } - dAtA101[j100] = uint8(num) - j100++ + dAtA100[j99] = uint8(num) + j99++ } - i -= j100 - copy(dAtA[i:], dAtA101[:j100]) - i = encodeVarintPlan(dAtA, i, uint64(j100)) + i -= j99 + copy(dAtA[i:], dAtA100[:j99]) + i = encodeVarintPlan(dAtA, i, uint64(j99)) i-- dAtA[i] = 0x22 } @@ -18492,28 +18434,28 @@ func (m *PreInsertUkCtx) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x10 } if len(m.Columns) > 0 { - dAtA111 := make([]byte, len(m.Columns)*10) - var j110 int + dAtA110 := make([]byte, len(m.Columns)*10) + var j109 int for _, num1 := range m.Columns { num := uint64(num1) for num >= 1<<7 { - dAtA111[j110] = uint8(uint64(num)&0x7f | 0x80) + dAtA110[j109] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j110++ + j109++ } - dAtA111[j110] = uint8(num) - j110++ + dAtA110[j109] = uint8(num) + j109++ } - i -= j110 - copy(dAtA[i:], dAtA111[:j110]) - i = encodeVarintPlan(dAtA, i, uint64(j110)) + i -= j109 + copy(dAtA[i:], dAtA110[:j109]) + i = encodeVarintPlan(dAtA, i, uint64(j109)) i-- dAtA[i] = 0xa } return len(dAtA) - i, nil } -func (m *PreDeleteCtx) Marshal() (dAtA []byte, err error) { +func (m *PreInsertCtx) Marshal() (dAtA []byte, err error) { size := m.ProtoSize() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -18523,12 +18465,12 @@ func (m *PreDeleteCtx) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *PreDeleteCtx) MarshalTo(dAtA []byte) (int, error) { +func (m *PreInsertCtx) MarshalTo(dAtA []byte) (int, error) { size := m.ProtoSize() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *PreDeleteCtx) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *PreInsertCtx) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -18537,51 +18479,25 @@ func (m *PreDeleteCtx) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.Idx) > 0 { - dAtA113 := make([]byte, len(m.Idx)*10) - var j112 int - for _, num1 := range m.Idx { - num := uint64(num1) - for num >= 1<<7 { - dAtA113[j112] = uint8(uint64(num)&0x7f | 0x80) - num >>= 7 - j112++ - } - dAtA113[j112] = uint8(num) - j112++ + if m.IsNewUpdate { + i-- + if m.IsNewUpdate { + dAtA[i] = 1 + } else { + dAtA[i] = 0 } - i -= j112 - copy(dAtA[i:], dAtA113[:j112]) - i = encodeVarintPlan(dAtA, i, uint64(j112)) i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *PreInsertCtx) Marshal() (dAtA []byte, err error) { - size := m.ProtoSize() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err + dAtA[i] = 0x40 } - return dAtA[:n], nil -} - -func (m *PreInsertCtx) MarshalTo(dAtA []byte) (int, error) { - size := m.ProtoSize() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *PreInsertCtx) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.XXX_unrecognized != nil { - i -= len(m.XXX_unrecognized) - copy(dAtA[i:], m.XXX_unrecognized) + if m.IsOldUpdate { + i-- + if m.IsOldUpdate { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x38 } if m.ClusterByExpr != nil { { @@ -18607,13 +18523,8 @@ func (m *PreInsertCtx) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x2a } - if m.IsUpdate { - i-- - if m.IsUpdate { - dAtA[i] = 1 - } else { - dAtA[i] = 0 - } + if m.ColOffset != 0 { + i = encodeVarintPlan(dAtA, i, uint64(m.ColOffset)) i-- dAtA[i] = 0x20 } @@ -18738,21 +18649,21 @@ func (m *IdList) MarshalToSizedBuffer(dAtA []byte) (int, error) { copy(dAtA[i:], m.XXX_unrecognized) } if len(m.List) > 0 { - dAtA120 := make([]byte, len(m.List)*10) - var j119 int + dAtA117 := make([]byte, len(m.List)*10) + var j116 int for _, num1 := range m.List { num := uint64(num1) for num >= 1<<7 { - dAtA120[j119] = uint8(uint64(num)&0x7f | 0x80) + dAtA117[j116] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j119++ + j116++ } - dAtA120[j119] = uint8(num) - j119++ + dAtA117[j116] = uint8(num) + j116++ } - i -= j119 - copy(dAtA[i:], dAtA120[:j119]) - i = encodeVarintPlan(dAtA, i, uint64(j119)) + i -= j116 + copy(dAtA[i:], dAtA117[:j116]) + i = encodeVarintPlan(dAtA, i, uint64(j116)) i-- dAtA[i] = 0xa } @@ -19157,21 +19068,21 @@ func (m *Query) MarshalToSizedBuffer(dAtA []byte) (int, error) { } } if len(m.Steps) > 0 { - dAtA127 := make([]byte, len(m.Steps)*10) - var j126 int + dAtA124 := make([]byte, len(m.Steps)*10) + var j123 int for _, num1 := range m.Steps { num := uint64(num1) for num >= 1<<7 { - dAtA127[j126] = uint8(uint64(num)&0x7f | 0x80) + dAtA124[j123] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j126++ + j123++ } - dAtA127[j126] = uint8(num) - j126++ + dAtA124[j123] = uint8(num) + j123++ } - i -= j126 - copy(dAtA[i:], dAtA127[:j126]) - i = encodeVarintPlan(dAtA, i, uint64(j126)) + i -= j123 + copy(dAtA[i:], dAtA124[:j123]) + i = encodeVarintPlan(dAtA, i, uint64(j123)) i-- dAtA[i] = 0x12 } @@ -21615,20 +21526,20 @@ func (m *DropTable) MarshalToSizedBuffer(dAtA []byte) (int, error) { copy(dAtA[i:], m.XXX_unrecognized) } if len(m.FkChildTblsReferToMe) > 0 { - dAtA181 := make([]byte, len(m.FkChildTblsReferToMe)*10) - var j180 int + dAtA178 := make([]byte, len(m.FkChildTblsReferToMe)*10) + var j177 int for _, num := range m.FkChildTblsReferToMe { for num >= 1<<7 { - dAtA181[j180] = uint8(uint64(num)&0x7f | 0x80) + dAtA178[j177] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j180++ + j177++ } - dAtA181[j180] = uint8(num) - j180++ + dAtA178[j177] = uint8(num) + j177++ } - i -= j180 - copy(dAtA[i:], dAtA181[:j180]) - i = encodeVarintPlan(dAtA, i, uint64(j180)) + i -= j177 + copy(dAtA[i:], dAtA178[:j177]) + i = encodeVarintPlan(dAtA, i, uint64(j177)) i-- dAtA[i] = 0x62 } @@ -21664,20 +21575,20 @@ func (m *DropTable) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x48 } if len(m.ForeignTbl) > 0 { - dAtA184 := make([]byte, len(m.ForeignTbl)*10) - var j183 int + dAtA181 := make([]byte, len(m.ForeignTbl)*10) + var j180 int for _, num := range m.ForeignTbl { for num >= 1<<7 { - dAtA184[j183] = uint8(uint64(num)&0x7f | 0x80) + dAtA181[j180] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j183++ + j180++ } - dAtA184[j183] = uint8(num) - j183++ + dAtA181[j180] = uint8(num) + j180++ } - i -= j183 - copy(dAtA[i:], dAtA184[:j183]) - i = encodeVarintPlan(dAtA, i, uint64(j183)) + i -= j180 + copy(dAtA[i:], dAtA181[:j180]) + i = encodeVarintPlan(dAtA, i, uint64(j180)) i-- dAtA[i] = 0x3a } @@ -22230,20 +22141,20 @@ func (m *TruncateTable) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x40 } if len(m.ForeignTbl) > 0 { - dAtA193 := make([]byte, len(m.ForeignTbl)*10) - var j192 int + dAtA190 := make([]byte, len(m.ForeignTbl)*10) + var j189 int for _, num := range m.ForeignTbl { for num >= 1<<7 { - dAtA193[j192] = uint8(uint64(num)&0x7f | 0x80) + dAtA190[j189] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j192++ + j189++ } - dAtA193[j192] = uint8(num) - j192++ + dAtA190[j189] = uint8(num) + j189++ } - i -= j192 - copy(dAtA[i:], dAtA193[:j192]) - i = encodeVarintPlan(dAtA, i, uint64(j192)) + i -= j189 + copy(dAtA[i:], dAtA190[:j189]) + i = encodeVarintPlan(dAtA, i, uint64(j189)) i-- dAtA[i] = 0x3a } @@ -22320,20 +22231,20 @@ func (m *ClusterTable) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x18 } if len(m.AccountIDs) > 0 { - dAtA196 := make([]byte, len(m.AccountIDs)*10) - var j195 int + dAtA193 := make([]byte, len(m.AccountIDs)*10) + var j192 int for _, num := range m.AccountIDs { for num >= 1<<7 { - dAtA196[j195] = uint8(uint64(num)&0x7f | 0x80) + dAtA193[j192] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j195++ + j192++ } - dAtA196[j195] = uint8(num) - j195++ + dAtA193[j192] = uint8(num) + j192++ } - i -= j195 - copy(dAtA[i:], dAtA196[:j195]) - i = encodeVarintPlan(dAtA, i, uint64(j195)) + i -= j192 + copy(dAtA[i:], dAtA193[:j192]) + i = encodeVarintPlan(dAtA, i, uint64(j192)) i-- dAtA[i] = 0x12 } @@ -22545,21 +22456,21 @@ func (m *Prepare) MarshalToSizedBuffer(dAtA []byte) (int, error) { copy(dAtA[i:], m.XXX_unrecognized) } if len(m.ParamTypes) > 0 { - dAtA200 := make([]byte, len(m.ParamTypes)*10) - var j199 int + dAtA197 := make([]byte, len(m.ParamTypes)*10) + var j196 int for _, num1 := range m.ParamTypes { num := uint64(num1) for num >= 1<<7 { - dAtA200[j199] = uint8(uint64(num)&0x7f | 0x80) + dAtA197[j196] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j199++ + j196++ } - dAtA200[j199] = uint8(num) - j199++ + dAtA197[j196] = uint8(num) + j196++ } - i -= j199 - copy(dAtA[i:], dAtA200[:j199]) - i = encodeVarintPlan(dAtA, i, uint64(j199)) + i -= j196 + copy(dAtA[i:], dAtA197[:j196]) + i = encodeVarintPlan(dAtA, i, uint64(j196)) i-- dAtA[i] = 0x22 } @@ -22706,21 +22617,21 @@ func (m *OtherDCL) MarshalToSizedBuffer(dAtA []byte) (int, error) { copy(dAtA[i:], m.XXX_unrecognized) } if len(m.ParamTypes) > 0 { - dAtA203 := make([]byte, len(m.ParamTypes)*10) - var j202 int + dAtA200 := make([]byte, len(m.ParamTypes)*10) + var j199 int for _, num1 := range m.ParamTypes { num := uint64(num1) for num >= 1<<7 { - dAtA203[j202] = uint8(uint64(num)&0x7f | 0x80) + dAtA200[j199] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j202++ + j199++ } - dAtA203[j202] = uint8(num) - j202++ + dAtA200[j199] = uint8(num) + j199++ } - i -= j202 - copy(dAtA[i:], dAtA203[:j202]) - i = encodeVarintPlan(dAtA, i, uint64(j202)) + i -= j199 + copy(dAtA[i:], dAtA200[:j199]) + i = encodeVarintPlan(dAtA, i, uint64(j199)) i-- dAtA[i] = 0xa } @@ -25204,10 +25115,6 @@ func (m *Node) ProtoSize() (n int) { } n += 2 + sovPlan(uint64(l)) + l } - if m.PreDeleteCtx != nil { - l = m.PreDeleteCtx.ProtoSize() - n += 2 + l + sovPlan(uint64(l)) - } if m.PreInsertCtx != nil { l = m.PreInsertCtx.ProtoSize() n += 2 + l + sovPlan(uint64(l)) @@ -25554,25 +25461,6 @@ func (m *PreInsertUkCtx) ProtoSize() (n int) { return n } -func (m *PreDeleteCtx) ProtoSize() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Idx) > 0 { - l = 0 - for _, e := range m.Idx { - l += sovPlan(uint64(e)) - } - n += 1 + sovPlan(uint64(l)) + l - } - if m.XXX_unrecognized != nil { - n += len(m.XXX_unrecognized) - } - return n -} - func (m *PreInsertCtx) ProtoSize() (n int) { if m == nil { return 0 @@ -25590,8 +25478,8 @@ func (m *PreInsertCtx) ProtoSize() (n int) { if m.HasAutoCol { n += 2 } - if m.IsUpdate { - n += 2 + if m.ColOffset != 0 { + n += 1 + sovPlan(uint64(m.ColOffset)) } if m.CompPkeyExpr != nil { l = m.CompPkeyExpr.ProtoSize() @@ -25601,6 +25489,12 @@ func (m *PreInsertCtx) ProtoSize() (n int) { l = m.ClusterByExpr.ProtoSize() n += 1 + l + sovPlan(uint64(l)) } + if m.IsOldUpdate { + n += 2 + } + if m.IsNewUpdate { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -40053,42 +39947,6 @@ func (m *Node) Unmarshal(dAtA []byte) error { } else { return fmt.Errorf("proto: wrong wireType = %d for field SourceStep", wireType) } - case 33: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PreDeleteCtx", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowPlan - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthPlan - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthPlan - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.PreDeleteCtx == nil { - m.PreDeleteCtx = &PreDeleteCtx{} - } - if err := m.PreDeleteCtx.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex case 34: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field PreInsertCtx", wireType) @@ -42501,133 +42359,6 @@ func (m *PreInsertUkCtx) Unmarshal(dAtA []byte) error { } return nil } -func (m *PreDeleteCtx) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowPlan - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: PreDeleteCtx: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: PreDeleteCtx: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType == 0 { - var v int32 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowPlan - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int32(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.Idx = append(m.Idx, v) - } else if wireType == 2 { - var packedLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowPlan - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - packedLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if packedLen < 0 { - return ErrInvalidLengthPlan - } - postIndex := iNdEx + packedLen - if postIndex < 0 { - return ErrInvalidLengthPlan - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - var elementCount int - var count int - for _, integer := range dAtA[iNdEx:postIndex] { - if integer < 128 { - count++ - } - } - elementCount = count - if elementCount != 0 && len(m.Idx) == 0 { - m.Idx = make([]int32, 0, elementCount) - } - for iNdEx < postIndex { - var v int32 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowPlan - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int32(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.Idx = append(m.Idx, v) - } - } else { - return fmt.Errorf("proto: wrong wireType = %d for field Idx", wireType) - } - default: - iNdEx = preIndex - skippy, err := skipPlan(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthPlan - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *PreInsertCtx) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -42751,9 +42482,9 @@ func (m *PreInsertCtx) Unmarshal(dAtA []byte) error { m.HasAutoCol = bool(v != 0) case 4: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field IsUpdate", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ColOffset", wireType) } - var v int + m.ColOffset = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowPlan @@ -42763,12 +42494,11 @@ func (m *PreInsertCtx) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + m.ColOffset |= int32(b&0x7F) << shift if b < 0x80 { break } } - m.IsUpdate = bool(v != 0) case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CompPkeyExpr", wireType) @@ -42841,6 +42571,46 @@ func (m *PreInsertCtx) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsOldUpdate", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPlan + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsOldUpdate = bool(v != 0) + case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IsNewUpdate", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowPlan + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.IsNewUpdate = bool(v != 0) default: iNdEx = preIndex skippy, err := skipPlan(dAtA[iNdEx:]) diff --git a/pkg/sql/colexec/dedupjoin/join.go b/pkg/sql/colexec/dedupjoin/join.go index cfccbaf2b610e..8eac350962eb1 100644 --- a/pkg/sql/colexec/dedupjoin/join.go +++ b/pkg/sql/colexec/dedupjoin/join.go @@ -166,7 +166,7 @@ func (dedupJoin *DedupJoin) build(analyzer process.Analyzer, proc *process.Proce if dedupJoin.OnDuplicateAction != plan.Node_UPDATE { ctr.matched.InitWithSize(ctr.batchRowCount) } else { - ctr.matched.InitWithSize(int64(ctr.mp.GetGroupCount()) + 1) + ctr.matched.InitWithSize(int64(ctr.mp.GetGroupCount())) } } return @@ -196,10 +196,31 @@ func (ctr *container) finalize(ap *DedupJoin, proc *process.Process) error { } } - if ap.OnDuplicateAction != plan.Node_UPDATE { + if ap.OnDuplicateAction != plan.Node_UPDATE || ctr.mp.HashOnUnique() { if ctr.matched.Count() == 0 { - ap.ctr.buf = ctr.batches - ctr.batches = nil + ap.ctr.buf = make([]*batch.Batch, len(ctr.batches)) + for i := range ap.ctr.buf { + ap.ctr.buf[i] = batch.NewWithSize(len(ap.Result)) + bat := ctr.batches[i] + ap.ctr.buf[i].Attrs = bat.Attrs + batSize := bat.RowCount() + for j, rp := range ap.Result { + if rp.Rel == 1 { + typ := ap.RightTypes[rp.Pos] + ap.ctr.buf[i].Vecs[j] = vector.NewVec(typ) + if err := vector.GetUnionAllFunction(typ, proc.Mp())(ap.ctr.buf[i].Vecs[j], bat.Vecs[rp.Pos]); err != nil { + return err + } + } else { + ap.ctr.buf[i].Vecs[j] = vector.NewVec(ap.LeftTypes[rp.Pos]) + if err := vector.AppendMultiFixed(ap.ctr.buf[i].Vecs[j], 0, true, batSize, proc.Mp()); err != nil { + return err + } + } + } + + ap.ctr.buf[i].SetRowCount(batSize) + } return nil } @@ -295,7 +316,7 @@ func (ctr *container) finalize(ap *DedupJoin, proc *process.Process) error { ctr.joinBat1, ctr.cfs1 = colexec.NewJoinBatch(ctr.batches[0], proc.Mp()) bitmapLen := uint64(ctr.matched.Len()) - for i := uint64(1); i < bitmapLen; i++ { + for i := uint64(0); i < bitmapLen; i++ { if ctr.matched.Contains(i) { continue } @@ -311,41 +332,59 @@ func (ctr *container) finalize(ap *DedupJoin, proc *process.Process) error { } } - sels = ctr.mp.GetSels(i) + sels = ctr.mp.GetSels(i + 1) idx1, idx2 := sels[0]/colexec.DefaultBatchSize, sels[0]%colexec.DefaultBatchSize - err := colexec.SetJoinBatchValues(ctr.joinBat1, ctr.batches[idx1], int64(idx2), 1, ctr.cfs1) - if err != nil { - return err - } - - for _, sel := range sels[1:] { - idx1, idx2 = sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize - err = colexec.SetJoinBatchValues(ctr.joinBat2, ctr.batches[idx1], int64(idx2), 1, ctr.cfs2) + if len(sels) == 1 { + for j, rp := range ap.Result { + if rp.Rel == 1 { + if err := ap.ctr.buf[batIdx].Vecs[j].UnionOne(ctr.batches[idx1].Vecs[rp.Pos], int64(idx2), proc.Mp()); err != nil { + return err + } + } else { + if err := ap.ctr.buf[batIdx].Vecs[j].UnionNull(proc.Mp()); err != nil { + return err + } + } + } + } else { + err := colexec.SetJoinBatchValues(ctr.joinBat1, ctr.batches[idx1], int64(idx2), 1, ctr.cfs1) if err != nil { return err } - vecs := make([]*vector.Vector, len(ctr.exprExecs)) - for j, exprExec := range ctr.exprExecs { - vecs[j], err = exprExec.Eval(proc, []*batch.Batch{ctr.joinBat1, ctr.joinBat2}, nil) + if ctr.joinBat2 == nil { + ctr.joinBat2, ctr.cfs2 = colexec.NewJoinBatch(ctr.batches[0], proc.Mp()) + } + + for _, sel := range sels[1:] { + idx1, idx2 = sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize + err = colexec.SetJoinBatchValues(ctr.joinBat2, ctr.batches[idx1], int64(idx2), 1, ctr.cfs2) if err != nil { return err } - } - for j, pos := range ap.UpdateColIdxList { - ctr.joinBat1.Vecs[pos] = vecs[j] - } - } + vecs := make([]*vector.Vector, len(ctr.exprExecs)) + for j, exprExec := range ctr.exprExecs { + vecs[j], err = exprExec.Eval(proc, []*batch.Batch{ctr.joinBat1, ctr.joinBat2}, nil) + if err != nil { + return err + } + } - for j, rp := range ap.Result { - if rp.Rel == 1 { - if err := ap.ctr.buf[batIdx].Vecs[j].UnionOne(ctr.joinBat1.Vecs[rp.Pos], 0, proc.Mp()); err != nil { - return err + for j, pos := range ap.UpdateColIdxList { + ctr.joinBat1.Vecs[pos] = vecs[j] } - } else { - if err := ap.ctr.buf[batIdx].Vecs[j].UnionNull(proc.Mp()); err != nil { - return err + } + + for j, rp := range ap.Result { + if rp.Rel == 1 { + if err := ap.ctr.buf[batIdx].Vecs[j].UnionOne(ctr.joinBat1.Vecs[rp.Pos], 0, proc.Mp()); err != nil { + return err + } + } else { + if err := ap.ctr.buf[batIdx].Vecs[j].UnionNull(proc.Mp()); err != nil { + return err + } } } } @@ -369,11 +408,14 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce if err != nil { return err } - if ctr.joinBat1 == nil { - ctr.joinBat1, ctr.cfs1 = colexec.NewJoinBatch(bat, proc.Mp()) - } - if ctr.joinBat2 == nil && ctr.batchRowCount > 0 { - ctr.joinBat2, ctr.cfs2 = colexec.NewJoinBatch(ctr.batches[0], proc.Mp()) + + if ap.OnDuplicateAction == plan.Node_UPDATE { + if ctr.joinBat1 == nil { + ctr.joinBat1, ctr.cfs1 = colexec.NewJoinBatch(bat, proc.Mp()) + } + if ctr.joinBat2 == nil && ctr.batchRowCount > 0 { + ctr.joinBat2, ctr.cfs2 = colexec.NewJoinBatch(ctr.batches[0], proc.Mp()) + } } rowCntInc := 0 @@ -393,6 +435,10 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce switch ap.OnDuplicateAction { case plan.Node_FAIL: + if ctr.mp.IsDeleted(vals[k] - 1) { + continue + } + // do nothing for txn.mode = Optimistic if !isPessimistic { continue @@ -430,8 +476,8 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce return err } - sels := ctr.mp.GetSels(vals[k]) - for _, sel := range sels { + if ctr.mp.HashOnUnique() { + sel := vals[k] - 1 idx1, idx2 := sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize err = colexec.SetJoinBatchValues(ctr.joinBat2, ctr.batches[idx1], int64(idx2), 1, ctr.cfs2) if err != nil { @@ -449,6 +495,27 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce for j, pos := range ap.UpdateColIdxList { ctr.joinBat1.Vecs[pos] = vecs[j] } + } else { + sels := ctr.mp.GetSels(vals[k]) + for _, sel := range sels { + idx1, idx2 := sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize + err = colexec.SetJoinBatchValues(ctr.joinBat2, ctr.batches[idx1], int64(idx2), 1, ctr.cfs2) + if err != nil { + return err + } + + vecs := make([]*vector.Vector, len(ctr.exprExecs)) + for j, exprExec := range ctr.exprExecs { + vecs[j], err = exprExec.Eval(proc, []*batch.Batch{ctr.joinBat1, ctr.joinBat2}, nil) + if err != nil { + return err + } + } + + for j, pos := range ap.UpdateColIdxList { + ctr.joinBat1.Vecs[pos] = vecs[j] + } + } } for j, rp := range ap.Result { @@ -471,7 +538,7 @@ func (ctr *container) probe(bat *batch.Batch, ap *DedupJoin, proc *process.Proce } } - ctr.matched.Add(vals[k]) + ctr.matched.Add(vals[k] - 1) rowCntInc++ } } diff --git a/pkg/sql/colexec/dedupjoin/join_test.go b/pkg/sql/colexec/dedupjoin/join_test.go index a43967b250725..7cb8bf8222faf 100644 --- a/pkg/sql/colexec/dedupjoin/join_test.go +++ b/pkg/sql/colexec/dedupjoin/join_test.go @@ -89,6 +89,7 @@ func TestDedupJoin(t *testing.T) { err := tc.arg.Prepare(tc.proc) require.NoError(t, err) tc.barg.IsDedup = true + tc.barg.DelColIdx = -1 err = tc.barg.Prepare(tc.proc) require.NoError(t, err) diff --git a/pkg/sql/colexec/dedupjoin/types.go b/pkg/sql/colexec/dedupjoin/types.go index 69bf11b3c3679..2d2b4eba5fd76 100644 --- a/pkg/sql/colexec/dedupjoin/types.go +++ b/pkg/sql/colexec/dedupjoin/types.go @@ -88,6 +88,7 @@ type DedupJoin struct { OnDuplicateAction plan.Node_OnDuplicateAction DedupColName string DedupColTypes []plan.Type + DelColIdx int32 UpdateColIdxList []int32 UpdateColExprList []*plan.Expr diff --git a/pkg/sql/colexec/hashbuild/build.go b/pkg/sql/colexec/hashbuild/build.go index 860c59e5ef226..84a6f779893fe 100644 --- a/pkg/sql/colexec/hashbuild/build.go +++ b/pkg/sql/colexec/hashbuild/build.go @@ -42,14 +42,16 @@ func (hashBuild *HashBuild) Prepare(proc *process.Process) (err error) { hashBuild.OpAnalyzer.Reset() } - if hashBuild.NeedHashMap { - hashBuild.ctr.hashmapBuilder.IsDedup = hashBuild.IsDedup - hashBuild.ctr.hashmapBuilder.OnDuplicateAction = hashBuild.OnDuplicateAction - hashBuild.ctr.hashmapBuilder.DedupColName = hashBuild.DedupColName - hashBuild.ctr.hashmapBuilder.DedupColTypes = hashBuild.DedupColTypes - return hashBuild.ctr.hashmapBuilder.Prepare(hashBuild.Conditions, proc) + if !hashBuild.NeedHashMap { + return nil } - return nil + + hashBuild.ctr.hashmapBuilder.IsDedup = hashBuild.IsDedup + hashBuild.ctr.hashmapBuilder.OnDuplicateAction = hashBuild.OnDuplicateAction + hashBuild.ctr.hashmapBuilder.DedupColName = hashBuild.DedupColName + hashBuild.ctr.hashmapBuilder.DedupColTypes = hashBuild.DedupColTypes + + return hashBuild.ctr.hashmapBuilder.Prepare(hashBuild.Conditions, hashBuild.DelColIdx, proc) } func (hashBuild *HashBuild) Call(proc *process.Process) (vm.CallResult, error) { @@ -75,9 +77,8 @@ func (hashBuild *HashBuild) Call(proc *process.Process) (vm.CallResult, error) { case SendJoinMap: var jm *message.JoinMap if ctr.hashmapBuilder.InputBatchRowCount > 0 { - jm = message.NewJoinMap(ctr.hashmapBuilder.MultiSels, ctr.hashmapBuilder.IntHashMap, ctr.hashmapBuilder.StrHashMap, ctr.hashmapBuilder.Batches.Buf, proc.Mp()) + jm = message.NewJoinMap(ctr.hashmapBuilder.MultiSels, ctr.hashmapBuilder.IntHashMap, ctr.hashmapBuilder.StrHashMap, ctr.hashmapBuilder.DelRows, ctr.hashmapBuilder.Batches.Buf, proc.Mp()) jm.SetPushedRuntimeFilterIn(ctr.runtimeFilterIn) - //jm.SetIgnoreRows(ctr.hashmapBuilder.IgnoreRows) if ap.NeedBatches { jm.SetRowCount(int64(ctr.hashmapBuilder.InputBatchRowCount)) } diff --git a/pkg/sql/colexec/hashbuild/types.go b/pkg/sql/colexec/hashbuild/types.go index 1480f59043ea6..4ce8bd4f2da9f 100644 --- a/pkg/sql/colexec/hashbuild/types.go +++ b/pkg/sql/colexec/hashbuild/types.go @@ -51,6 +51,7 @@ type HashBuild struct { RuntimeFilterSpec *plan.RuntimeFilterSpec IsDedup bool + DelColIdx int32 OnDuplicateAction plan.Node_OnDuplicateAction DedupColName string DedupColTypes []plan.Type diff --git a/pkg/sql/colexec/hashmap_util/hashmap_util.go b/pkg/sql/colexec/hashmap_util/hashmap_util.go index 7b1562382d666..0a3612a2568d3 100644 --- a/pkg/sql/colexec/hashmap_util/hashmap_util.go +++ b/pkg/sql/colexec/hashmap_util/hashmap_util.go @@ -40,7 +40,7 @@ type HashmapBuilder struct { MultiSels message.JoinSels keyWidth int // keyWidth is the width of hash columns, it determines which hash map to use. Batches colexec.Batches - executor []colexec.ExpressionExecutor + executors []colexec.ExpressionExecutor UniqueJoinKeys []*vector.Vector IsDedup bool @@ -49,6 +49,10 @@ type HashmapBuilder struct { DedupColTypes []plan.Type IgnoreRows *bitmap.Bitmap + + delColIdx int32 + delVecs []*vector.Vector + DelRows *bitmap.Bitmap } func (hb *HashmapBuilder) GetSize() int64 { @@ -69,16 +73,16 @@ func (hb *HashmapBuilder) GetGroupCount() uint64 { return 0 } -func (hb *HashmapBuilder) Prepare(Conditions []*plan.Expr, proc *process.Process) error { +func (hb *HashmapBuilder) Prepare(keyCols []*plan.Expr, delColIdx int32, proc *process.Process) error { var err error - if len(hb.executor) == 0 { + if len(hb.executors) == 0 { hb.needDupVec = false hb.vecs = make([][]*vector.Vector, 0) - hb.executor = make([]colexec.ExpressionExecutor, len(Conditions)) + hb.executors = make([]colexec.ExpressionExecutor, len(keyCols)) hb.keyWidth = 0 hb.InputBatchRowCount = 0 - for i, expr := range Conditions { - if _, ok := Conditions[i].Expr.(*plan.Expr_Col); !ok { + for i, expr := range keyCols { + if _, ok := keyCols[i].Expr.(*plan.Expr_Col); !ok { hb.needDupVec = true } typ := expr.Typ @@ -88,12 +92,19 @@ func (hb *HashmapBuilder) Prepare(Conditions []*plan.Expr, proc *process.Process width = 128 } hb.keyWidth += width - hb.executor[i], err = colexec.NewExpressionExecutor(proc, Conditions[i]) + hb.executors[i], err = colexec.NewExpressionExecutor(proc, keyCols[i]) if err != nil { return err } } } + + if hb.IsDedup { + hb.delColIdx = delColIdx + } else { + hb.delColIdx = -1 + } + return nil } @@ -119,9 +130,9 @@ func (hb *HashmapBuilder) Reset(proc *process.Process, hashTableHasNotSent bool) } hb.UniqueJoinKeys = nil hb.MultiSels.Free() - for i := range hb.executor { - if hb.executor[i] != nil { - hb.executor[i].ResetForNextQuery() + for i := range hb.executors { + if hb.executors[i] != nil { + hb.executors[i].ResetForNextQuery() } } } @@ -132,12 +143,12 @@ func (hb *HashmapBuilder) Free(proc *process.Process) { hb.IntHashMap = nil hb.StrHashMap = nil hb.MultiSels.Free() - for i := range hb.executor { - if hb.executor[i] != nil { - hb.executor[i].Free() + for i := range hb.executors { + if hb.executors[i] != nil { + hb.executors[i].Free() } } - hb.executor = nil + hb.executors = nil hb.vecs = nil for i := range hb.UniqueJoinKeys { hb.UniqueJoinKeys[i].Free(proc.Mp()) @@ -159,10 +170,10 @@ func (hb *HashmapBuilder) FreeHashMapAndBatches(proc *process.Process) { func (hb *HashmapBuilder) evalJoinCondition(proc *process.Process) error { for idx1 := range hb.Batches.Buf { - tmpVes := make([]*vector.Vector, len(hb.executor)) + tmpVes := make([]*vector.Vector, len(hb.executors)) hb.vecs = append(hb.vecs, tmpVes) - for idx2 := range hb.executor { - vec, err := hb.executor[idx2].Eval(proc, []*batch.Batch{hb.Batches.Buf[idx1]}, nil) + for idx2 := range hb.executors { + vec, err := hb.executors[idx2].Eval(proc, []*batch.Batch{hb.Batches.Buf[idx1]}, nil) if err != nil { return err } @@ -176,6 +187,14 @@ func (hb *HashmapBuilder) evalJoinCondition(proc *process.Process) error { } } } + + if hb.delColIdx != -1 { + hb.delVecs = make([]*vector.Vector, len(hb.Batches.Buf)) + for i := range hb.Batches.Buf { + hb.delVecs[i] = hb.Batches.Buf[i].Vecs[hb.delColIdx] + } + } + return nil } @@ -221,17 +240,17 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee hb.MultiSels.InitSel(hb.InputBatchRowCount) } - if hb.IsDedup && hb.OnDuplicateAction == plan.Node_IGNORE && hb.InputBatchRowCount > 0 { + if hb.IsDedup && hb.OnDuplicateAction == plan.Node_IGNORE { hb.IgnoreRows = &bitmap.Bitmap{} hb.IgnoreRows.InitWithSize(int64(hb.InputBatchRowCount)) } var ( + vOld uint64 cardinality uint64 - sels []int32 + newSels []int64 ) - vOld := uint64(0) for i := 0; i < hb.InputBatchRowCount; i += hashmap.UnitLimit { if i%(hashmap.UnitLimit*32) == 0 { runtime.Gosched() @@ -284,7 +303,7 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee } if hb.IsDedup { - if v <= vOld { + if v <= cardinality { switch hb.OnDuplicateAction { case plan.Node_FAIL: var rowStr string @@ -313,7 +332,7 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee hb.IgnoreRows.Add(uint64(i + k)) } } else { - vOld = v + cardinality = v } } else if !hashOnPK && needAllocateSels { hb.MultiSels.InsertSel(int32(v-1), int32(i+k)) @@ -322,7 +341,7 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee if needUniqueVec { if len(hb.UniqueJoinKeys) == 0 { - hb.UniqueJoinKeys = make([]*vector.Vector, len(hb.executor)) + hb.UniqueJoinKeys = make([]*vector.Vector, len(hb.executors)) for j, vec := range hb.vecs[vecIdx1] { hb.UniqueJoinKeys[j] = vector.NewVec(*vec.GetType()) } @@ -336,31 +355,55 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee } } } else { - if sels == nil { - sels = make([]int32, hashmap.UnitLimit) + if newSels == nil { + newSels = make([]int64, hashmap.UnitLimit) } - sels = sels[:0] + newSels = newSels[:0] for j, v := range vals[:n] { - if v > cardinality { - sels = append(sels, int32(i+j)) - cardinality = v + if v > vOld { + newSels = append(newSels, int64(vecIdx2+j)) + vOld = v } } for j, vec := range hb.vecs[vecIdx1] { - for _, sel := range sels { - _, idx2 := sel/colexec.DefaultBatchSize, sel%colexec.DefaultBatchSize - err = hb.UniqueJoinKeys[j].UnionOne(vec, int64(idx2), proc.Mp()) - if err != nil { - return err - } + err = hb.UniqueJoinKeys[j].Union(vec, newSels, proc.Mp()) + if err != nil { + return err } } } } } + if hb.delColIdx != -1 { + hb.DelRows = &bitmap.Bitmap{} + hb.DelRows.InitWithSize(int64(cardinality)) + + tmpVecs := make([]*vector.Vector, 1) + for i := 0; i < hb.InputBatchRowCount; i += hashmap.UnitLimit { + if i%(hashmap.UnitLimit*32) == 0 { + runtime.Gosched() + } + n := hb.InputBatchRowCount - i + if n > hashmap.UnitLimit { + n = hashmap.UnitLimit + } + + vecIdx1 := i / colexec.DefaultBatchSize + vecIdx2 := i % colexec.DefaultBatchSize + tmpVecs[0] = hb.delVecs[vecIdx1] + vals, zvals := itr.Find(vecIdx2, n, tmpVecs) + + for k, v := range vals[:n] { + if zvals[k] != 0 && v != 0 { + hb.DelRows.Add(v - 1) + } + } + } + } + if hb.IsDedup && hb.OnDuplicateAction == plan.Node_IGNORE { err := hb.Batches.Shrink(hb.IgnoreRows, proc) if err != nil { @@ -370,16 +413,15 @@ func (hb *HashmapBuilder) BuildHashmap(hashOnPK bool, needAllocateSels bool, nee // if groupcount == inputrowcount, it means building hashmap on unique rows // we can free sels now - if !hb.IsDedup { - if hb.keyWidth <= 8 { - if hb.InputBatchRowCount == int(hb.IntHashMap.GroupCount()) { - hb.MultiSels.Free() - } - } else { - if hb.InputBatchRowCount == int(hb.StrHashMap.GroupCount()) { - hb.MultiSels.Free() - } + if hb.keyWidth <= 8 { + if hb.InputBatchRowCount == int(hb.IntHashMap.GroupCount()) { + hb.MultiSels.Free() + } + } else { + if hb.InputBatchRowCount == int(hb.StrHashMap.GroupCount()) { + hb.MultiSels.Free() } } + return nil } diff --git a/pkg/sql/colexec/hashmap_util/hashmap_util_test.go b/pkg/sql/colexec/hashmap_util/hashmap_util_test.go index 8e899ac980a61..c1ae49eee740a 100644 --- a/pkg/sql/colexec/hashmap_util/hashmap_util_test.go +++ b/pkg/sql/colexec/hashmap_util/hashmap_util_test.go @@ -44,7 +44,7 @@ func newExpr(pos int32, typ types.Type) *plan.Expr { func TestBuildHashMap(t *testing.T) { var hb HashmapBuilder proc := testutil.NewProcessWithMPool("", mpool.MustNewZero()) - err := hb.Prepare([]*plan.Expr{newExpr(0, types.T_int32.ToType())}, proc) + err := hb.Prepare([]*plan.Expr{newExpr(0, types.T_int32.ToType())}, -1, proc) require.NoError(t, err) inputBatch := testutil.NewBatch([]types.Type{types.T_int32.ToType()}, true, int(100000), proc.Mp()) diff --git a/pkg/sql/colexec/mergegroup/exec.go b/pkg/sql/colexec/mergegroup/exec.go index 1ed5dedb67405..616bb9a567547 100644 --- a/pkg/sql/colexec/mergegroup/exec.go +++ b/pkg/sql/colexec/mergegroup/exec.go @@ -16,13 +16,14 @@ package mergegroup import ( "bytes" + "math" + "github.com/matrixorigin/matrixone/pkg/common/hashmap" "github.com/matrixorigin/matrixone/pkg/container/batch" "github.com/matrixorigin/matrixone/pkg/sql/colexec/aggexec" "github.com/matrixorigin/matrixone/pkg/sql/colexec/group" "github.com/matrixorigin/matrixone/pkg/vm" "github.com/matrixorigin/matrixone/pkg/vm/process" - "math" ) var makeInitialAggListFromList = aggexec.MakeInitialAggListFromList diff --git a/pkg/sql/colexec/preinsert/preinsert.go b/pkg/sql/colexec/preinsert/preinsert.go index 99542b3c0da11..dcf8a1446cd09 100644 --- a/pkg/sql/colexec/preinsert/preinsert.go +++ b/pkg/sql/colexec/preinsert/preinsert.go @@ -16,6 +16,7 @@ package preinsert import ( "bytes" + "slices" "time" "github.com/matrixorigin/matrixone/pkg/catalog" @@ -71,19 +72,26 @@ func (preInsert *PreInsert) constructColBuf(proc *proc, bat *batch.Batch, first if first { for idx := range preInsert.Attrs { if preInsert.TableDef.Cols[idx].Typ.AutoIncr { - preInsert.ctr.canFreeVecIdx[idx] = true + preInsert.ctr.canFreeVecIdx[int(preInsert.ColOffset)+idx] = true } } - preInsert.ctr.buf = batch.NewWithSize(len(preInsert.Attrs)) - preInsert.ctr.buf.Attrs = make([]string, 0, len(preInsert.Attrs)) - preInsert.ctr.buf.Attrs = append(preInsert.ctr.buf.Attrs, preInsert.Attrs...) + if preInsert.IsNewUpdate { + preInsert.ctr.buf = batch.NewWithSize(len(bat.Vecs)) + } else { + preInsert.ctr.buf = batch.NewWithSize(len(preInsert.Attrs)) + preInsert.ctr.buf.Attrs = slices.Clone(preInsert.Attrs) + } } else { preInsert.ctr.buf.SetRowCount(0) } // if col is AutoIncr, genAutoIncrCol function may change the vector of this col, we should copy the vec from children vec, so it in canFreeVecIdx // and the other cols of preInsert.Attrs is stable, we just use the vecs of children's vecs - for idx := range preInsert.Attrs { - if _, ok := preInsert.ctr.canFreeVecIdx[idx]; ok { + vecCnt := len(preInsert.Attrs) + if preInsert.IsNewUpdate { + vecCnt = len(bat.Vecs) + } + for idx := 0; idx < vecCnt; idx++ { + if preInsert.ctr.canFreeVecIdx[idx] { typ := bat.Vecs[idx].GetType() if preInsert.ctr.buf.Vecs[idx] != nil { preInsert.ctr.buf.Vecs[idx].CleanOnlyData() @@ -118,54 +126,54 @@ func (preInsert *PreInsert) constructHiddenColBuf(proc *proc, bat *batch.Batch, if err != nil { return err } + preInsert.ctr.canFreeVecIdx[len(preInsert.ctr.buf.Vecs)] = true preInsert.ctr.buf.Vecs = append(preInsert.ctr.buf.Vecs, vec) preInsert.ctr.buf.Attrs = append(preInsert.ctr.buf.Attrs, catalog.CPrimaryKeyColName) } - if preInsert.ctr.clusterByExecutor != nil { vec, err := preInsert.ctr.clusterByExecutor.Eval(proc, []*batch.Batch{preInsert.ctr.buf}, nil) if err != nil { return err } + preInsert.ctr.canFreeVecIdx[len(preInsert.ctr.buf.Vecs)] = true preInsert.ctr.buf.Vecs = append(preInsert.ctr.buf.Vecs, vec) preInsert.ctr.buf.Attrs = append(preInsert.ctr.buf.Attrs, preInsert.TableDef.ClusterBy.Name) } - if preInsert.IsUpdate { - idx := len(bat.Vecs) - 1 + if preInsert.IsOldUpdate { + rowIdIdx := len(bat.Vecs) - 1 preInsert.ctr.buf.Attrs = append(preInsert.ctr.buf.Attrs, catalog.Row_ID) - rowIdVec := vector.NewVec(*bat.GetVector(int32(idx)).GetType()) - err = rowIdVec.UnionBatch(bat.Vecs[idx], 0, bat.Vecs[idx].Length(), nil, proc.Mp()) + rowIdVec := vector.NewVec(*bat.GetVector(int32(rowIdIdx)).GetType()) + err = rowIdVec.UnionBatch(bat.Vecs[rowIdIdx], 0, bat.Vecs[rowIdIdx].Length(), nil, proc.Mp()) if err != nil { rowIdVec.Free(proc.Mp()) return err } + preInsert.ctr.canFreeVecIdx[len(preInsert.ctr.buf.Vecs)] = true preInsert.ctr.buf.Vecs = append(preInsert.ctr.buf.Vecs, rowIdVec) } - } else { - idx := len(preInsert.Attrs) + colIdx := len(preInsert.Attrs) if preInsert.ctr.compPkExecutor != nil { vec, err := preInsert.ctr.compPkExecutor.Eval(proc, []*batch.Batch{preInsert.ctr.buf}, nil) if err != nil { return err } - preInsert.ctr.buf.Vecs[idx] = vec - idx += 1 + preInsert.ctr.buf.Vecs[colIdx] = vec + colIdx += 1 } if preInsert.ctr.clusterByExecutor != nil { vec, err := preInsert.ctr.clusterByExecutor.Eval(proc, []*batch.Batch{preInsert.ctr.buf}, nil) if err != nil { return err } - preInsert.ctr.buf.Vecs[idx] = vec - idx += 1 + preInsert.ctr.buf.Vecs[colIdx] = vec + colIdx += 1 } - - if preInsert.IsUpdate { - i := len(bat.Vecs) - 1 - rowIdVec := preInsert.ctr.buf.Vecs[idx] + if preInsert.IsOldUpdate { + rowIdIdx := len(bat.Vecs) - 1 + rowIdVec := preInsert.ctr.buf.Vecs[colIdx] rowIdVec.CleanOnlyData() - err = rowIdVec.UnionBatch(bat.Vecs[i], 0, bat.Vecs[i].Length(), nil, proc.Mp()) + err = rowIdVec.UnionBatch(bat.Vecs[rowIdIdx], 0, bat.Vecs[rowIdIdx].Length(), nil, proc.Mp()) if err != nil { return err } @@ -206,7 +214,7 @@ func (preInsert *PreInsert) Call(proc *proc) (vm.CallResult, error) { analyzer.AddIncrementTime(start) } // check new rows not null - tempVecs := preInsert.ctr.buf.Vecs[:len(preInsert.Attrs)] + tempVecs := preInsert.ctr.buf.Vecs[preInsert.ColOffset : int(preInsert.ColOffset)+len(preInsert.Attrs)] err = colexec.BatchDataNotNullCheck(tempVecs, preInsert.Attrs, preInsert.TableDef, proc.Ctx) if err != nil { return result, err @@ -227,18 +235,18 @@ func (preInsert *PreInsert) Call(proc *proc) (vm.CallResult, error) { func checkIfNeedReGenAutoIncrCol(bat *batch.Batch, preInsert *PreInsert) map[string]int { needCheck := make(map[string]int) - var pkSet map[string]struct{} + var pkSet map[string]bool if preInsert.TableDef.IsTemporary || preInsert.TableDef.Pkey.PkeyColName == catalog.FakePrimaryKeyColName { // 1. currently temporary table is supported by memory engine, this distinction should be removed after refactoring // 2. for __mo_fake_pk_col, user can not specify the value for this column, so no need to check } else { - pkSet = make(map[string]struct{}) + pkSet = make(map[string]bool) for _, n := range preInsert.TableDef.Pkey.Names { - pkSet[n] = struct{}{} + pkSet[n] = true } for i, col := range preInsert.TableDef.Cols { - if _, ok := pkSet[col.Name]; ok && col.Typ.AutoIncr { - vec := bat.GetVector(int32(i)) + if pkSet[col.Name] && col.Typ.AutoIncr { + vec := bat.GetVector(preInsert.ColOffset + int32(i)) if vec.AllNull() { needCheck[col.Name] = i } @@ -257,7 +265,8 @@ func genAutoIncrCol(bat *batch.Batch, proc *proc, preInsert *PreInsert) error { lastInsertValue, err := proc.GetIncrService().InsertValues( proc.Ctx, tableID, - bat, + bat.Vecs[preInsert.ColOffset:int(preInsert.ColOffset)+len(preInsert.Attrs)], + bat.RowCount(), preInsert.EstimatedRowCount, ) if err != nil { @@ -286,7 +295,7 @@ func genAutoIncrCol(bat *batch.Batch, proc *proc, preInsert *PreInsert) error { } for col, idx := range needReCheck { - vec := bat.GetVector(int32(idx)) + vec := bat.GetVector(preInsert.ColOffset + int32(idx)) from, err := proc.GetIncrService().GetLastAllocateTS(proc.Ctx, tableID, col) if err != nil { return err diff --git a/pkg/sql/colexec/preinsert/preinsert_test.go b/pkg/sql/colexec/preinsert/preinsert_test.go index 704a0c49f62e8..24d02b7b90d94 100644 --- a/pkg/sql/colexec/preinsert/preinsert_test.go +++ b/pkg/sql/colexec/preinsert/preinsert_test.go @@ -71,9 +71,9 @@ func TestPreInsertNormal(t *testing.T) { }, Pkey: &plan.PrimaryKeyDef{}, }, - Attrs: []string{"int64_column", "scalar_int64", "varchar_column", "scalar_varchar", "int64_column"}, - IsUpdate: false, - HasAutoCol: false, + Attrs: []string{"int64_column", "scalar_int64", "varchar_column", "scalar_varchar", "int64_column"}, + IsOldUpdate: false, + HasAutoCol: false, OperatorBase: vm.OperatorBase{ OperatorInfo: vm.OperatorInfo{ Idx: 0, @@ -183,7 +183,7 @@ func TestPreInsertHasAutoCol(t *testing.T) { }).AnyTimes() incrService := mock_frontend.NewMockAutoIncrementService(ctrl) - incrService.EXPECT().InsertValues(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(uint64(111111), nil).AnyTimes() + incrService.EXPECT().InsertValues(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(uint64(111111), nil).AnyTimes() proc := testutil.NewProc() proc.Base.TxnClient = txnClient @@ -203,8 +203,8 @@ func TestPreInsertHasAutoCol(t *testing.T) { }, Pkey: &plan.PrimaryKeyDef{}, }, - Attrs: []string{"int64_column", "scalar_int64", "varchar_column", "scalar_varchar", "int64_column"}, - IsUpdate: false, + Attrs: []string{"int64_column", "scalar_int64", "varchar_column", "scalar_varchar", "int64_column"}, + IsOldUpdate: false, OperatorBase: vm.OperatorBase{ OperatorInfo: vm.OperatorInfo{ Idx: 0, @@ -249,16 +249,16 @@ func TestPreInsertIsUpdate(t *testing.T) { }).AnyTimes() incrService := mock_frontend.NewMockAutoIncrementService(ctrl) - incrService.EXPECT().InsertValues(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(uint64(111111), nil).AnyTimes() + incrService.EXPECT().InsertValues(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(uint64(111111), nil).AnyTimes() proc := testutil.NewProc() proc.Base.TxnClient = txnClient proc.Base.IncrService = incrService proc.Base.SessionInfo.StorageEngine = eng argument1 := PreInsert{ - ctr: container{}, - IsUpdate: true, - SchemaName: "testDb", + ctr: container{}, + IsOldUpdate: true, + SchemaName: "testDb", TableDef: &plan.TableDef{ Cols: []*plan.ColDef{ {Name: "int64_column", Typ: i64typ}, diff --git a/pkg/sql/colexec/preinsert/types.go b/pkg/sql/colexec/preinsert/types.go index 9def5d83675a0..9f7b57721e8bb 100644 --- a/pkg/sql/colexec/preinsert/types.go +++ b/pkg/sql/colexec/preinsert/types.go @@ -17,9 +17,8 @@ package preinsert import ( "github.com/matrixorigin/matrixone/pkg/common/reuse" "github.com/matrixorigin/matrixone/pkg/container/batch" - pb "github.com/matrixorigin/matrixone/pkg/pb/plan" + "github.com/matrixorigin/matrixone/pkg/pb/plan" "github.com/matrixorigin/matrixone/pkg/sql/colexec" - "github.com/matrixorigin/matrixone/pkg/sql/plan" "github.com/matrixorigin/matrixone/pkg/vm" "github.com/matrixorigin/matrixone/pkg/vm/process" ) @@ -37,16 +36,18 @@ type container struct { type PreInsert struct { ctr container - HasAutoCol bool - IsUpdate bool - SchemaName string - TableDef *pb.TableDef + HasAutoCol bool + IsOldUpdate bool + IsNewUpdate bool + SchemaName string + TableDef *plan.TableDef // letter case: origin Attrs []string EstimatedRowCount int64 CompPkeyExpr *plan.Expr ClusterByExpr *plan.Expr + ColOffset int32 vm.OperatorBase } @@ -101,20 +102,8 @@ func (preInsert *PreInsert) Free(proc *process.Process, pipelineFailed bool, err preInsert.ctr.clusterByExecutor = nil } if preInsert.ctr.buf != nil { - for idx := range preInsert.Attrs { - if _, ok := preInsert.ctr.canFreeVecIdx[idx]; !ok { - preInsert.ctr.buf.SetVector(int32(idx), nil) - } - } - idx := len(preInsert.Attrs) - if preInsert.CompPkeyExpr != nil { - if idx < len(preInsert.ctr.buf.Vecs) { - preInsert.ctr.buf.SetVector(int32(idx), nil) - } - idx += 1 - } - if preInsert.ClusterByExpr != nil { - if idx < len(preInsert.ctr.buf.Vecs) { + for idx := range preInsert.ctr.buf.Vecs { + if !preInsert.ctr.canFreeVecIdx[idx] { preInsert.ctr.buf.SetVector(int32(idx), nil) } } diff --git a/pkg/sql/colexec/shufflebuild/build.go b/pkg/sql/colexec/shufflebuild/build.go index c52842c3c224d..ab8c83f1daa57 100644 --- a/pkg/sql/colexec/shufflebuild/build.go +++ b/pkg/sql/colexec/shufflebuild/build.go @@ -47,7 +47,7 @@ func (shuffleBuild *ShuffleBuild) Prepare(proc *process.Process) (err error) { shuffleBuild.ctr.hashmapBuilder.OnDuplicateAction = shuffleBuild.OnDuplicateAction shuffleBuild.ctr.hashmapBuilder.DedupColName = shuffleBuild.DedupColName shuffleBuild.ctr.hashmapBuilder.DedupColTypes = shuffleBuild.DedupColTypes - return shuffleBuild.ctr.hashmapBuilder.Prepare(shuffleBuild.Conditions, proc) + return shuffleBuild.ctr.hashmapBuilder.Prepare(shuffleBuild.Conditions, -1, proc) } func (shuffleBuild *ShuffleBuild) Call(proc *process.Process) (vm.CallResult, error) { @@ -85,7 +85,7 @@ func (shuffleBuild *ShuffleBuild) Call(proc *process.Process) (vm.CallResult, er } var jm *message.JoinMap if ctr.hashmapBuilder.InputBatchRowCount > 0 { - jm = message.NewJoinMap(ctr.hashmapBuilder.MultiSels, ctr.hashmapBuilder.IntHashMap, ctr.hashmapBuilder.StrHashMap, ctr.hashmapBuilder.Batches.Buf, proc.Mp()) + jm = message.NewJoinMap(ctr.hashmapBuilder.MultiSels, ctr.hashmapBuilder.IntHashMap, ctr.hashmapBuilder.StrHashMap, nil, ctr.hashmapBuilder.Batches.Buf, proc.Mp()) if ap.NeedBatches { jm.SetRowCount(int64(ctr.hashmapBuilder.InputBatchRowCount)) } diff --git a/pkg/sql/colexec/shufflebuild/types.go b/pkg/sql/colexec/shufflebuild/types.go index 669dd10b620cf..1dc270ff08fd9 100644 --- a/pkg/sql/colexec/shufflebuild/types.go +++ b/pkg/sql/colexec/shufflebuild/types.go @@ -52,6 +52,7 @@ type ShuffleBuild struct { OnDuplicateAction plan.Node_OnDuplicateAction DedupColName string DedupColTypes []plan.Type + DelColIdx int32 vm.OperatorBase } diff --git a/pkg/sql/compile/compile.go b/pkg/sql/compile/compile.go index b8776c65afc0d..f00a65bcd4081 100644 --- a/pkg/sql/compile/compile.go +++ b/pkg/sql/compile/compile.go @@ -995,7 +995,7 @@ func (c *Compile) compilePlanScope(step int32, curNodeIdx int32, ns []*plan.Node } ss = c.compileSort(n, c.compileProjection(n, c.compileRestrict(n, ss))) return ss, nil - case plan.Node_FILTER, plan.Node_PROJECT, plan.Node_PRE_DELETE: + case plan.Node_FILTER, plan.Node_PROJECT: ss, err = c.compilePlanScope(step, n.Children[0], ns) if err != nil { return nil, err diff --git a/pkg/sql/compile/operator.go b/pkg/sql/compile/operator.go index 5a4c84353f667..cebc51827eaa9 100644 --- a/pkg/sql/compile/operator.go +++ b/pkg/sql/compile/operator.go @@ -533,11 +533,13 @@ func dupOperator(sourceOp vm.Operator, index int, maxParallel int) vm.Operator { op.SchemaName = t.SchemaName op.TableDef = t.TableDef op.Attrs = t.Attrs - op.IsUpdate = t.IsUpdate + op.IsOldUpdate = t.IsOldUpdate + op.IsNewUpdate = t.IsNewUpdate op.HasAutoCol = t.HasAutoCol op.EstimatedRowCount = t.EstimatedRowCount op.CompPkeyExpr = t.CompPkeyExpr op.ClusterByExpr = t.ClusterByExpr + op.ColOffset = t.ColOffset op.SetInfo(&info) return op case vm.Deletion: @@ -628,6 +630,7 @@ func dupOperator(sourceOp vm.Operator, index int, maxParallel int) vm.Operator { op.DedupColTypes = t.DedupColTypes op.UpdateColIdxList = t.UpdateColIdxList op.UpdateColExprList = t.UpdateColExprList + op.DelColIdx = t.DelColIdx return op case vm.PostDml: @@ -771,10 +774,12 @@ func constructPreInsert(ns []*plan.Node, n *plan.Node, eg engine.Engine, proc *p op.SchemaName = schemaName op.TableDef = preCtx.TableDef op.Attrs = attrs - op.IsUpdate = preCtx.IsUpdate + op.IsOldUpdate = preCtx.IsOldUpdate + op.IsNewUpdate = preCtx.IsNewUpdate op.EstimatedRowCount = int64(ns[n.Children[0]].Stats.Outcnt) op.CompPkeyExpr = preCtx.CompPkeyExpr op.ClusterByExpr = preCtx.ClusterByExpr + op.ColOffset = preCtx.ColOffset return op, nil } @@ -1134,9 +1139,13 @@ func constructDedupJoin(n *plan.Node, leftTypes, rightTypes []types.Type, proc * arg.OnDuplicateAction = n.OnDuplicateAction arg.DedupColName = n.DedupColName arg.DedupColTypes = n.DedupColTypes + arg.DelColIdx = -1 if n.DedupJoinCtx != nil { arg.UpdateColIdxList = n.DedupJoinCtx.UpdateColIdxList arg.UpdateColExprList = n.DedupJoinCtx.UpdateColExprList + if n.OnDuplicateAction == plan.Node_FAIL && len(n.DedupJoinCtx.OldColList) > 0 { + arg.DelColIdx = n.DedupJoinCtx.OldColList[0].ColPos + } } arg.IsShuffle = n.Stats.HashmapStats != nil && n.Stats.HashmapStats.Shuffle for i := range n.SendMsgList { @@ -1874,6 +1883,7 @@ func constructHashBuild(op vm.Operator, proc *process.Process, mcpu int32) *hash ret.OnDuplicateAction = arg.OnDuplicateAction ret.DedupColName = arg.DedupColName ret.DedupColTypes = arg.DedupColTypes + ret.DelColIdx = arg.DelColIdx if len(arg.RuntimeFilterSpecs) > 0 { ret.RuntimeFilterSpec = arg.RuntimeFilterSpecs[0] } @@ -2006,6 +2016,7 @@ func constructShuffleBuild(op vm.Operator, proc *process.Process) *shufflebuild. ret.OnDuplicateAction = arg.OnDuplicateAction ret.DedupColName = arg.DedupColName ret.DedupColTypes = arg.DedupColTypes + ret.DelColIdx = arg.DelColIdx if len(arg.RuntimeFilterSpecs) > 0 { ret.RuntimeFilterSpec = plan2.DeepCopyRuntimeFilterSpec(arg.RuntimeFilterSpecs[0]) } diff --git a/pkg/sql/compile/remoterun.go b/pkg/sql/compile/remoterun.go index 2b939e803ba14..0c8607ab88aef 100644 --- a/pkg/sql/compile/remoterun.go +++ b/pkg/sql/compile/remoterun.go @@ -452,11 +452,13 @@ func convertToPipelineInstruction(op vm.Operator, proc *process.Process, ctx *sc SchemaName: t.SchemaName, TableDef: t.TableDef, HasAutoCol: t.HasAutoCol, - IsUpdate: t.IsUpdate, + IsOldUpdate: t.IsOldUpdate, + IsNewUpdate: t.IsNewUpdate, Attrs: t.Attrs, EstimatedRowCount: int64(t.EstimatedRowCount), CompPkeyExpr: t.CompPkeyExpr, ClusterByExpr: t.ClusterByExpr, + ColOffset: t.ColOffset, } case *lockop.LockOp: in.LockOp = &pipeline.LockOp{ @@ -765,6 +767,7 @@ func convertToPipelineInstruction(op vm.Operator, proc *process.Process, ctx *sc OnDuplicateAction: t.OnDuplicateAction, DedupColName: t.DedupColName, DedupColTypes: t.DedupColTypes, + DelColIdx: t.DelColIdx, } case *shufflebuild.ShuffleBuild: in.ShuffleBuild = &pipeline.Shufflebuild{ @@ -779,6 +782,7 @@ func convertToPipelineInstruction(op vm.Operator, proc *process.Process, ctx *sc OnDuplicateAction: t.OnDuplicateAction, DedupColName: t.DedupColName, DedupColTypes: t.DedupColTypes, + DelColIdx: t.DelColIdx, } case *indexbuild.IndexBuild: in.IndexBuild = &pipeline.Indexbuild{ @@ -798,6 +802,7 @@ func convertToPipelineInstruction(op vm.Operator, proc *process.Process, ctx *sc OnDuplicateAction: t.OnDuplicateAction, DedupColName: t.DedupColName, DedupColTypes: t.DedupColTypes, + DelColIdx: t.DelColIdx, LeftTypes: convertToPlanTypes(t.LeftTypes), RightTypes: convertToPlanTypes(t.RightTypes), UpdateColIdxList: t.UpdateColIdxList, @@ -905,10 +910,12 @@ func convertToVmOperator(opr *pipeline.Instruction, ctx *scopeContext, eng engin arg.TableDef = t.GetTableDef() arg.Attrs = t.GetAttrs() arg.HasAutoCol = t.GetHasAutoCol() - arg.IsUpdate = t.GetIsUpdate() + arg.IsOldUpdate = t.GetIsOldUpdate() + arg.IsNewUpdate = t.GetIsNewUpdate() arg.EstimatedRowCount = int64(t.GetEstimatedRowCount()) arg.CompPkeyExpr = t.CompPkeyExpr arg.ClusterByExpr = t.ClusterByExpr + arg.ColOffset = t.ColOffset op = arg case vm.LockOp: t := opr.GetLockOp() @@ -1271,6 +1278,7 @@ func convertToVmOperator(opr *pipeline.Instruction, ctx *scopeContext, eng engin arg.OnDuplicateAction = t.OnDuplicateAction arg.DedupColName = t.DedupColName arg.DedupColTypes = t.DedupColTypes + arg.DelColIdx = t.DelColIdx op = arg case vm.ShuffleBuild: arg := shufflebuild.NewArgument() @@ -1286,6 +1294,7 @@ func convertToVmOperator(opr *pipeline.Instruction, ctx *scopeContext, eng engin arg.OnDuplicateAction = t.OnDuplicateAction arg.DedupColName = t.DedupColName arg.DedupColTypes = t.DedupColTypes + arg.DelColIdx = t.DelColIdx op = arg case vm.IndexBuild: arg := indexbuild.NewArgument() @@ -1305,6 +1314,7 @@ func convertToVmOperator(opr *pipeline.Instruction, ctx *scopeContext, eng engin arg.OnDuplicateAction = t.OnDuplicateAction arg.DedupColName = t.DedupColName arg.DedupColTypes = t.DedupColTypes + arg.DelColIdx = t.DelColIdx arg.UpdateColIdxList = t.UpdateColIdxList arg.UpdateColExprList = t.UpdateColExprList op = arg diff --git a/pkg/sql/plan/apply_indices.go b/pkg/sql/plan/apply_indices.go index 6a8ffd9943ee9..de79e90b704de 100644 --- a/pkg/sql/plan/apply_indices.go +++ b/pkg/sql/plan/apply_indices.go @@ -923,7 +923,8 @@ func (builder *QueryBuilder) getMostSelectiveIndexForPointSelect(indexes []*Inde func (builder *QueryBuilder) applyIndicesForJoins(nodeID int32, node *plan.Node, colRefCnt map[[2]int32]int, idxColMap map[[2]int32]*plan.Expr) int32 { sid := builder.compCtx.GetProcess().GetService() - if node.JoinType == plan.Node_INDEX { + if node.JoinType != plan.Node_INNER && node.JoinType != plan.Node_RIGHT && node.JoinType != plan.Node_SEMI && + (node.JoinType != plan.Node_ANTI || !node.BuildOnLeft) { return nodeID } diff --git a/pkg/sql/plan/bind_delete.go b/pkg/sql/plan/bind_delete.go index 457cb494a4de1..7fbd9f08ed34d 100644 --- a/pkg/sql/plan/bind_delete.go +++ b/pkg/sql/plan/bind_delete.go @@ -230,7 +230,7 @@ func (builder *QueryBuilder) bindDelete(stmt *tree.Delete, bindCtx *BindContext) lockTarget := &plan.LockTarget{ TableId: tableDef.TblId, ObjRef: DeepCopyObjectRef(dmlCtx.objRefs[i]), - PrimaryColIdxInBat: int32(pkPos), + PrimaryColIdxInBat: pkPos, PrimaryColRelPos: selectNodeTag, PrimaryColTyp: col.Typ, } @@ -266,7 +266,7 @@ func (builder *QueryBuilder) bindDelete(stmt *tree.Delete, bindCtx *BindContext) lockTargets = append(lockTargets, &plan.LockTarget{ TableId: idxNode.TableDef.TblId, ObjRef: DeepCopyObjectRef(idxNode.ObjRef), - PrimaryColIdxInBat: int32(pkPos), + PrimaryColIdxInBat: pkPos, PrimaryColRelPos: idxNode.BindingTags[0], PrimaryColTyp: col.Typ, }) diff --git a/pkg/sql/plan/bind_insert.go b/pkg/sql/plan/bind_insert.go index b10d4100b5627..cb089cb8f124e 100644 --- a/pkg/sql/plan/bind_insert.go +++ b/pkg/sql/plan/bind_insert.go @@ -190,7 +190,7 @@ func (builder *QueryBuilder) appendDedupAndMultiUpdateNodesForBindInsert( lockTarget := &plan.LockTarget{ TableId: tableDef.TblId, ObjRef: DeepCopyObjectRef(objRef), - PrimaryColIdxInBat: int32(colName2Idx[tableDef.Name+"."+col.Name]), + PrimaryColIdxInBat: colName2Idx[tableDef.Name+"."+col.Name], PrimaryColRelPos: selectTag, PrimaryColTyp: col.Typ, } diff --git a/pkg/sql/plan/bind_update.go b/pkg/sql/plan/bind_update.go index 26a5746701c26..e5478cee0e061 100644 --- a/pkg/sql/plan/bind_update.go +++ b/pkg/sql/plan/bind_update.go @@ -16,6 +16,7 @@ package plan import ( "fmt" + "strings" "github.com/matrixorigin/matrixone/pkg/catalog" "github.com/matrixorigin/matrixone/pkg/common/moerr" @@ -32,8 +33,10 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) } var selectList []tree.SelectExpr - colName2Idx := make(map[string]int32) - updateColName2Idx := make(map[string]int32) + oldColName2Idx := make(map[string]int32) + newColName2Idx := make(map[string]int32) + updateAutoIncrCols := make([]bool, len(dmlCtx.aliases)) + colOffsets := make([]int32, len(dmlCtx.aliases)) for i, alias := range dmlCtx.aliases { if len(dmlCtx.updateCol2Expr[i]) == 0 { @@ -41,40 +44,56 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) } tableDef := dmlCtx.tableDefs[i] + colOffsets[i] = int32(len(selectList)) useColInPartExpr := make(map[string]bool) // append table.* to project list for _, col := range tableDef.Cols { - colName2Idx[alias+"."+col.Name] = int32(len(selectList)) + oldColName2Idx[alias+"."+col.Name] = int32(len(selectList)) e := tree.NewUnresolvedName(tree.NewCStr(alias, bindCtx.lower), tree.NewCStr(col.Name, 1)) selectList = append(selectList, tree.SelectExpr{ Expr: e, }) } - // TODO: support update primary key or unique key or secondary key or master index or ivfflat index var pkAndUkCols = make(map[string]bool) - if tableDef.Pkey != nil { + var vecAndTextIndexCols = make(map[string]bool) + + if tableDef.Name == catalog.MO_PUBS || tableDef.Name == catalog.MO_SUBS { for _, colName := range tableDef.Pkey.Names { pkAndUkCols[colName] = true } } + for _, idxDef := range tableDef.Indexes { - if !idxDef.TableExist || !idxDef.Unique { - if catalog.IsRegularIndexAlgo(idxDef.IndexAlgo) { + if !idxDef.TableExist { + continue + } + + if catalog.IsRegularIndexAlgo(idxDef.IndexAlgo) { + if !idxDef.Unique { continue } - } - for _, colName := range idxDef.Parts { - realColName := catalog.ResolveAlias(colName) - pkAndUkCols[realColName] = true + if tableDef.Name == catalog.MO_PUBS || tableDef.Name == catalog.MO_SUBS { + for _, colName := range idxDef.Parts { + pkAndUkCols[catalog.ResolveAlias(colName)] = true + } + } + } else { + for _, colName := range idxDef.Parts { + vecAndTextIndexCols[catalog.ResolveAlias(colName)] = true + } } } for colName, updateExpr := range dmlCtx.updateCol2Expr[i] { if pkAndUkCols[colName] { - return 0, moerr.NewUnsupportedDML(builder.compCtx.GetContext(), "update primary key or unique key or master index or ivfflat index") + return 0, moerr.NewUnsupportedDML(builder.compCtx.GetContext(), "update pk/uk on pub/sub table") + } + + if vecAndTextIndexCols[colName] { + return 0, moerr.NewUnsupportedDML(builder.compCtx.GetContext(), "update vector index or full-text index") } if !dmlCtx.updatePartCol[i] { @@ -122,14 +141,17 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) return 0, moerr.NewConstraintViolation(builder.compCtx.GetContext(), fmt.Sprintf("Column '%s' cannot be null", colName)) } } + + updateAutoIncrCols[i] = true } } } - updateColName2Idx[alias+"."+colName] = int32(len(selectList)) - selectList = append(selectList, tree.SelectExpr{ - Expr: updateExpr, - }) + oldPos := oldColName2Idx[alias+"."+colName] + newColName2Idx[alias+"."+colName] = oldPos + oldColName2Idx[alias+"."+colName] = int32(len(selectList)) + selectList = append(selectList, selectList[oldPos]) + selectList[oldPos] = tree.SelectExpr{Expr: updateExpr} } } @@ -152,6 +174,7 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) } selectNode := builder.qry.Nodes[lastNodeID] + selectNodeTag := selectNode.BindingTags[0] for i, alias := range dmlCtx.aliases { if len(dmlCtx.updateCol2Expr[i]) == 0 { @@ -161,7 +184,7 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) tableDef := dmlCtx.tableDefs[i] for originPos, col := range tableDef.Cols { - if colPos, ok := updateColName2Idx[alias+"."+col.Name]; ok { + if colPos, ok := newColName2Idx[alias+"."+col.Name]; ok { updateExpr := selectNode.ProjectList[colPos] if isDefaultValExpr(updateExpr) { // set col = default updateExpr, err = getDefaultExpr(builder.GetContext(), col) @@ -212,9 +235,26 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) } } - selectNodeTag := selectNode.BindingTags[0] + for i, tableDef := range dmlCtx.tableDefs { + if updateAutoIncrCols[i] { + lastNodeID = builder.appendNode(&plan.Node{ + NodeType: plan.Node_PRE_INSERT, + Children: []int32{lastNodeID}, + PreInsertCtx: &plan.PreInsertCtx{ + Ref: dmlCtx.objRefs[i], + TableDef: tableDef, + HasAutoCol: true, + ColOffset: colOffsets[i], + IsNewUpdate: true, + }, + }, bindCtx) + } + } + idxScanNodes := make([][]*plan.Node, len(dmlCtx.tableDefs)) + pkNeedUpdate := make([]bool, len(dmlCtx.tableDefs)) idxNeedUpdate := make([][]bool, len(dmlCtx.tableDefs)) + updatePkOrUk := false for i, tableDef := range dmlCtx.tableDefs { if len(dmlCtx.updateCol2Expr[i]) == 0 { @@ -222,22 +262,306 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) } alias := dmlCtx.aliases[i] - idxScanNodes[i] = make([]*plan.Node, len(tableDef.Indexes)) + + for _, colName := range tableDef.Pkey.Names { + if _, ok := newColName2Idx[alias+"."+colName]; ok { + pkNeedUpdate[i] = true + updatePkOrUk = true + break + } + } + idxNeedUpdate[i] = make([]bool, len(tableDef.Indexes)) for j, idxDef := range tableDef.Indexes { - if !idxDef.TableExist || idxDef.Unique { + if !idxDef.TableExist { continue } for _, colName := range idxDef.Parts { - realColName := catalog.ResolveAlias(colName) - if _, ok := updateColName2Idx[alias+"."+realColName]; ok { + if _, ok := newColName2Idx[alias+"."+catalog.ResolveAlias(colName)]; ok { idxNeedUpdate[i][j] = true + updatePkOrUk = true break } } - if !idxNeedUpdate[i][j] { + } + } + + if updatePkOrUk { + newProjTag := builder.genNewTag() + newProjList := make([]*plan.Expr, len(selectNode.ProjectList)) + for i := range selectNode.ProjectList { + newProjList[i] = &plan.Expr{ + Typ: selectNode.ProjectList[i].Typ, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: selectNodeTag, + ColPos: int32(i), + }, + }, + } + } + + newProjNode := &plan.Node{ + NodeType: plan.Node_PROJECT, + ProjectList: newProjList, + Children: []int32{lastNodeID}, + BindingTags: []int32{newProjTag}, + } + lastNodeID = builder.appendNode(newProjNode, bindCtx) + + for i, tableDef := range dmlCtx.tableDefs { + if len(dmlCtx.updateCol2Expr[i]) == 0 { + continue + } + + alias := dmlCtx.aliases[i] + + if pkNeedUpdate[i] { + if len(tableDef.Pkey.Names) > 1 { + newColName2Idx[alias+"."+catalog.CPrimaryKeyColName] = int32(len(newProjNode.ProjectList)) + args := make([]*plan.Expr, len(tableDef.Pkey.Names)) + + for j, colName := range tableDef.Pkey.Names { + colPos := int32(oldColName2Idx[alias+"."+colName]) + if updateIdx, ok := newColName2Idx[alias+"."+colName]; ok { + colPos = int32(updateIdx) + } + + args[j] = &plan.Expr{ + Typ: selectNode.ProjectList[colPos].Typ, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: selectNodeTag, + ColPos: colPos, + }, + }, + } + } + + newPkExpr, _ := BindFuncExprImplByPlanExpr(builder.GetContext(), "serial", args) + newProjNode.ProjectList = append(newProjNode.ProjectList, newPkExpr) + } + + scanTag := builder.genNewTag() + scanNodeID := builder.appendNode(&plan.Node{ + NodeType: plan.Node_TABLE_SCAN, + TableDef: tableDef, + ObjRef: dmlCtx.objRefs[i], + BindingTags: []int32{scanTag}, + ScanSnapshot: bindCtx.snapshot, + }, bindCtx) + + pkPos := tableDef.Name2ColIndex[tableDef.Pkey.PkeyColName] + pkTyp := tableDef.Cols[pkPos].Typ + leftExpr := &plan.Expr{ + Typ: pkTyp, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: scanTag, + ColPos: pkPos, + }, + }, + } + + rightExpr := &plan.Expr{ + Typ: pkTyp, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: newProjTag, + ColPos: newColName2Idx[alias+"."+tableDef.Pkey.PkeyColName], + }, + }, + } + + joinCond, _ := BindFuncExprImplByPlanExpr(builder.GetContext(), "=", []*plan.Expr{ + leftExpr, + rightExpr, + }) + + var dedupColName string + dedupColTypes := make([]plan.Type, len(tableDef.Pkey.Names)) + + if len(tableDef.Pkey.Names) == 1 { + dedupColName = tableDef.Pkey.Names[0] + } else { + dedupColName = "(" + strings.Join(tableDef.Pkey.Names, ",") + ")" + } + + for j, part := range tableDef.Pkey.Names { + dedupColTypes[j] = tableDef.Cols[tableDef.Name2ColIndex[part]].Typ + } + + dedupJoinNode := &plan.Node{ + NodeType: plan.Node_JOIN, + Children: []int32{scanNodeID, lastNodeID}, + JoinType: plan.Node_DEDUP, + OnList: []*plan.Expr{joinCond}, + OnDuplicateAction: plan.Node_FAIL, + DedupColName: dedupColName, + DedupColTypes: dedupColTypes, + DedupJoinCtx: &plan.DedupJoinCtx{ + OldColList: []plan.ColRef{ + { + RelPos: newProjTag, + ColPos: oldColName2Idx[alias+"."+tableDef.Pkey.PkeyColName], + }, + }, + }, + } + + lastNodeID = builder.appendNode(dedupJoinNode, bindCtx) + } + + idxScanNodes[i] = make([]*plan.Node, len(tableDef.Indexes)) + + for j, idxDef := range tableDef.Indexes { + if !idxDef.TableExist || !idxDef.Unique || !idxNeedUpdate[i][j] { + continue + } + + idxObjRef, idxTableDef := builder.compCtx.ResolveIndexTableByRef(dmlCtx.objRefs[i], idxDef.IndexTableName, bindCtx.snapshot) + idxTag := builder.genNewTag() + builder.addNameByColRef(idxTag, idxTableDef) + + idxScanNode := &plan.Node{ + NodeType: plan.Node_TABLE_SCAN, + TableDef: idxTableDef, + ObjRef: idxObjRef, + BindingTags: []int32{idxTag}, + ScanSnapshot: bindCtx.snapshot, + } + idxTableNodeID := builder.appendNode(idxScanNode, bindCtx) + + if len(idxDef.Parts) > 1 { + oldColName2Idx[idxTableDef.Name+"."+catalog.IndexTableIndexColName] = int32(len(newProjNode.ProjectList)) + oldArgs := make([]*plan.Expr, len(idxDef.Parts)) + + for j, colName := range idxDef.Parts { + colPos := int32(oldColName2Idx[alias+"."+colName]) + oldArgs[j] = &plan.Expr{ + Typ: selectNode.ProjectList[colPos].Typ, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: selectNodeTag, + ColPos: colPos, + }, + }, + } + } + + oldUkExpr, _ := BindFuncExprImplByPlanExpr(builder.GetContext(), "serial", oldArgs) + newProjNode.ProjectList = append(newProjNode.ProjectList, oldUkExpr) + + newColName2Idx[idxTableDef.Name+"."+catalog.IndexTableIndexColName] = int32(len(newProjNode.ProjectList)) + newArgs := make([]*plan.Expr, len(idxDef.Parts)) + + for j, colName := range idxDef.Parts { + colPos := oldColName2Idx[alias+"."+colName] + if updateIdx, ok := newColName2Idx[alias+"."+colName]; ok { + colPos = updateIdx + } + + newArgs[j] = &plan.Expr{ + Typ: selectNode.ProjectList[colPos].Typ, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: selectNodeTag, + ColPos: colPos, + }, + }, + } + } + + newUkExpr, _ := BindFuncExprImplByPlanExpr(builder.GetContext(), "serial", newArgs) + newProjNode.ProjectList = append(newProjNode.ProjectList, newUkExpr) + } else { + oldColName2Idx[idxTableDef.Name+"."+catalog.IndexTableIndexColName] = oldColName2Idx[alias+"."+idxDef.Parts[0]] + newColName2Idx[idxTableDef.Name+"."+catalog.IndexTableIndexColName] = newColName2Idx[alias+"."+idxDef.Parts[0]] + } + + rightPkPos := idxTableDef.Name2ColIndex[catalog.IndexTableIndexColName] + pkTyp := idxTableDef.Cols[rightPkPos].Typ + + leftExpr := &plan.Expr{ + Typ: pkTyp, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: idxTag, + ColPos: rightPkPos, + }, + }, + } + + rightExpr := &plan.Expr{ + Typ: pkTyp, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: newProjTag, + ColPos: newColName2Idx[idxTableDef.Name+"."+catalog.IndexTableIndexColName], + }, + }, + } + + joinCond, _ := BindFuncExprImplByPlanExpr(builder.GetContext(), "=", []*plan.Expr{ + leftExpr, + rightExpr, + }) + + var dedupColName string + dedupColTypes := make([]plan.Type, len(idxDef.Parts)) + + if len(idxDef.Parts) == 1 { + dedupColName = catalog.ResolveAlias(idxDef.Parts[0]) + } else { + dedupColName = "(" + strings.Join(idxDef.Parts, ",") + ")" + } + + for j, part := range idxDef.Parts { + dedupColTypes[j] = tableDef.Cols[tableDef.Name2ColIndex[catalog.ResolveAlias(part)]].Typ + } + + dedupJoinNode := &plan.Node{ + NodeType: plan.Node_JOIN, + Children: []int32{idxTableNodeID, lastNodeID}, + JoinType: plan.Node_DEDUP, + OnList: []*plan.Expr{joinCond}, + OnDuplicateAction: plan.Node_FAIL, + DedupColName: dedupColName, + DedupColTypes: dedupColTypes, + DedupJoinCtx: &plan.DedupJoinCtx{ + OldColList: []plan.ColRef{ + { + RelPos: newProjTag, + ColPos: oldColName2Idx[idxTableDef.Name+"."+catalog.IndexTableIndexColName], + }, + }, + }, + } + + lastNodeID = builder.appendNode(dedupJoinNode, bindCtx) + } + } + + selectNodeTag = newProjTag + selectNode = newProjNode + } + + // join index tables to get old RowID + for i, tableDef := range dmlCtx.tableDefs { + if len(dmlCtx.updateCol2Expr[i]) == 0 { + continue + } + + alias := dmlCtx.aliases[i] + + for j, idxDef := range tableDef.Indexes { + if !idxDef.TableExist { + continue + } + + if !pkNeedUpdate[i] && !idxNeedUpdate[i][j] { continue } @@ -272,7 +596,7 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) var colPos int32 var ok bool for k, colName := range idxDef.Parts { - if colPos, ok = colName2Idx[alias+"."+catalog.ResolveAlias(colName)]; !ok { + if colPos, ok = oldColName2Idx[alias+"."+catalog.ResolveAlias(colName)]; !ok { errMsg := fmt.Sprintf("bind update err, can not find colName = %s", colName) return 0, moerr.NewInternalError(builder.GetContext(), errMsg) } @@ -287,17 +611,28 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) } } - leftExpr, _ := BindFuncExprImplByPlanExpr(builder.GetContext(), "serial_full", args) + leftExpr := args[0] + if len(idxDef.Parts) > 1 { + funcName := "serial" + if !idxDef.Unique { + funcName = "serial_full" + } + leftExpr, _ = BindFuncExprImplByPlanExpr(builder.GetContext(), funcName, args) + } joinCond, _ := BindFuncExprImplByPlanExpr(builder.GetContext(), "=", []*plan.Expr{ leftExpr, rightExpr, }) + joinType := plan.Node_LEFT + if !idxDef.Unique { + joinType = plan.Node_INNER + } lastNodeID = builder.appendNode(&plan.Node{ NodeType: plan.Node_JOIN, Children: []int32{lastNodeID, idxTableNodeID}, - JoinType: plan.Node_INNER, + JoinType: joinType, OnList: []*plan.Expr{joinCond}, }, bindCtx) } @@ -310,6 +645,13 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) finalColName2Idx := make(map[string]int32) var finalProjList []*plan.Expr + finalProjNode := &plan.Node{ + NodeType: plan.Node_PROJECT, + Children: []int32{lastNodeID}, + BindingTags: []int32{finalProjTag}, + } + lastNodeID = builder.appendNode(finalProjNode, bindCtx) + for i, tableDef := range dmlCtx.tableDefs { if len(dmlCtx.updateCol2Expr[i]) == 0 { continue @@ -320,37 +662,14 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) for j, col := range tableDef.Cols { finalColIdx := len(finalProjList) - if col.Name == tableDef.Pkey.PkeyColName { - lockTarget := &plan.LockTarget{ - TableId: tableDef.TblId, - ObjRef: DeepCopyObjectRef(dmlCtx.objRefs[i]), - PrimaryColIdxInBat: int32(finalColIdx), - PrimaryColRelPos: finalProjTag, - PrimaryColTyp: col.Typ, - } - lockTargets = append(lockTargets, lockTarget) - - if dmlCtx.updatePartCol[i] { - // if update col which partition expr used, - // need lock oldPk by old partition idx, lock new pk by new partition idx - lockTarget := &plan.LockTarget{ - TableId: tableDef.TblId, - ObjRef: DeepCopyObjectRef(dmlCtx.objRefs[i]), - PrimaryColIdxInBat: int32(finalColIdx), - PrimaryColRelPos: finalProjTag, - PrimaryColTyp: col.Typ, - } - lockTargets = append(lockTargets, lockTarget) - } - } if col.Name != catalog.Row_ID { insertCols[j].RelPos = finalProjTag insertCols[j].ColPos = int32(finalColIdx) } - colIdx := colName2Idx[alias+"."+col.Name] - if updateIdx, ok := updateColName2Idx[alias+"."+col.Name]; ok { + colIdx := oldColName2Idx[alias+"."+col.Name] + if updateIdx, ok := newColName2Idx[alias+"."+col.Name]; ok { colIdx = updateIdx } @@ -366,6 +685,21 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) }) } + oldPkPos := finalColName2Idx[alias+"."+tableDef.Pkey.PkeyColName] + newPkPos := oldPkPos + if updateIdx, ok := newColName2Idx[alias+"."+tableDef.Pkey.PkeyColName]; ok { + oldPkPos = int32(len(finalProjList)) + finalProjList = append(finalProjList, &plan.Expr{ + Typ: selectNode.ProjectList[updateIdx].Typ, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: selectNodeTag, + ColPos: oldColName2Idx[alias+"."+tableDef.Pkey.PkeyColName], + }, + }, + }) + } + updateCtxList = append(updateCtxList, &plan.UpdateCtx{ ObjRef: dmlCtx.objRefs[i], TableDef: tableDef, @@ -377,13 +711,30 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) }, { RelPos: finalProjTag, - ColPos: finalColName2Idx[alias+"."+tableDef.Pkey.PkeyColName], + ColPos: oldPkPos, }, }, }) + lockTargets = append(lockTargets, &plan.LockTarget{ + TableId: tableDef.TblId, + ObjRef: dmlCtx.objRefs[i], + PrimaryColIdxInBat: int32(newPkPos), + PrimaryColRelPos: finalProjTag, + PrimaryColTyp: finalProjList[newPkPos].Typ, + }) + if newPkPos != oldPkPos { + lockTargets = append(lockTargets, &plan.LockTarget{ + TableId: tableDef.TblId, + ObjRef: dmlCtx.objRefs[i], + PrimaryColIdxInBat: int32(oldPkPos), + PrimaryColRelPos: finalProjTag, + PrimaryColTyp: finalProjList[oldPkPos].Typ, + }) + } + for j, idxNode := range idxScanNodes[i] { - if !idxNeedUpdate[i][j] { + if !pkNeedUpdate[i] && !idxNeedUpdate[i][j] { continue } @@ -420,31 +771,62 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) deleteCols[1].RelPos = finalProjTag deleteCols[1].ColPos = int32(oldIdx) - oldIdx = len(finalProjList) + newIdx := oldIdx + idxDef := tableDef.Indexes[j] - args := make([]*plan.Expr, len(idxDef.Parts)) + if idxDef.Unique { + if idxNeedUpdate[i][j] { + newPos := newColName2Idx[idxNode.TableDef.Name+"."+catalog.IndexTableIndexColName] + newIdxExpr := &plan.Expr{ + Typ: selectNode.ProjectList[newPos].Typ, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: selectNodeTag, + ColPos: newPos, + }, + }, + } - for k, colName := range idxDef.Parts { - realColName := catalog.ResolveAlias(colName) - colPos := int32(colName2Idx[alias+"."+realColName]) - if updateIdx, ok := updateColName2Idx[alias+"."+realColName]; ok { - colPos = int32(updateIdx) + newIdx = len(finalProjList) + finalProjList = append(finalProjList, newIdxExpr) } - args[k] = &plan.Expr{ - Typ: selectNode.ProjectList[colPos].Typ, - Expr: &plan.Expr_Col{ - Col: &plan.ColRef{ - RelPos: selectNodeTag, - ColPos: colPos, + } else { + args := make([]*plan.Expr, len(idxDef.Parts)) + + for k, colName := range idxDef.Parts { + realColName := catalog.ResolveAlias(colName) + colPos := int32(oldColName2Idx[alias+"."+realColName]) + if updateIdx, ok := newColName2Idx[alias+"."+realColName]; ok { + colPos = int32(updateIdx) + } + args[k] = &plan.Expr{ + Typ: selectNode.ProjectList[colPos].Typ, + Expr: &plan.Expr_Col{ + Col: &plan.ColRef{ + RelPos: selectNodeTag, + ColPos: colPos, + }, }, - }, + } + } + + var newIdxExpr *plan.Expr + if len(idxDef.Parts) == 0 { + newIdxExpr = args[0] + } else { + funcName := "serial" + if !idxDef.Unique { + funcName = "serial_full" + } + newIdxExpr, _ = BindFuncExprImplByPlanExpr(builder.GetContext(), funcName, args) } + + newIdx = len(finalProjList) + finalProjList = append(finalProjList, newIdxExpr) } - newIdxExpr, _ := BindFuncExprImplByPlanExpr(builder.GetContext(), "serial_full", args) - finalProjList = append(finalProjList, newIdxExpr) insertCols[0].RelPos = finalProjTag - insertCols[0].ColPos = int32(oldIdx) + insertCols[0].ColPos = int32(newIdx) insertCols[1].RelPos = finalProjTag insertCols[1].ColPos = finalColName2Idx[alias+"."+tableDef.Pkey.PkeyColName] @@ -455,22 +837,36 @@ func (builder *QueryBuilder) bindUpdate(stmt *tree.Update, bindCtx *BindContext) InsertCols: insertCols, DeleteCols: deleteCols, }) + + if idxDef.Unique { + lockTargets = append(lockTargets, &plan.LockTarget{ + TableId: idxNode.TableDef.TblId, + ObjRef: idxNode.ObjRef, + PrimaryColIdxInBat: int32(oldIdx), + PrimaryColRelPos: finalProjTag, + PrimaryColTyp: finalProjList[oldIdx].Typ, + }) + if idxNeedUpdate[i][j] { + lockTargets = append(lockTargets, &plan.LockTarget{ + TableId: idxNode.TableDef.TblId, + ObjRef: idxNode.ObjRef, + PrimaryColIdxInBat: int32(newIdx), + PrimaryColRelPos: finalProjTag, + PrimaryColTyp: finalProjList[newIdx].Typ, + }) + } + } } } + finalProjNode.ProjectList = finalProjList + dmlNode := &plan.Node{ NodeType: plan.Node_MULTI_UPDATE, BindingTags: []int32{builder.genNewTag()}, UpdateCtxList: updateCtxList, } - lastNodeID = builder.appendNode(&plan.Node{ - NodeType: plan.Node_PROJECT, - ProjectList: finalProjList, - Children: []int32{lastNodeID}, - BindingTags: []int32{finalProjTag}, - }, bindCtx) - lastNodeID = builder.appendNode(&plan.Node{ NodeType: plan.Node_LOCK_OP, Children: []int32{lastNodeID}, diff --git a/pkg/sql/plan/build_dml_util.go b/pkg/sql/plan/build_dml_util.go index f6cabb3165cd4..0895fde9c3eeb 100644 --- a/pkg/sql/plan/build_dml_util.go +++ b/pkg/sql/plan/build_dml_util.go @@ -1733,7 +1733,7 @@ func appendPreInsertNode(builder *QueryBuilder, bindCtx *BindContext, Ref: objRef, TableDef: DeepCopyTableDef(tableDef, true), HasAutoCol: hashAutoCol, - IsUpdate: isUpdate, + IsOldUpdate: isUpdate, CompPkeyExpr: makeCompPkeyExpr(tableDef, name2ColIndex), ClusterByExpr: makeClusterByExpr(tableDef, name2ColIndex), }, @@ -4333,7 +4333,7 @@ func buildPreInsertFullTextIndex(stmt *tree.Insert, ctx CompilerContext, builder Ref: indexObjRef, TableDef: DeepCopyTableDef(indexTableDef, true), HasAutoCol: true, - IsUpdate: false, + IsOldUpdate: false, CompPkeyExpr: nil, ClusterByExpr: nil, }, diff --git a/pkg/sql/plan/deepcopy.go b/pkg/sql/plan/deepcopy.go index d41a0635aea18..bb108a06c628e 100644 --- a/pkg/sql/plan/deepcopy.go +++ b/pkg/sql/plan/deepcopy.go @@ -128,10 +128,14 @@ func DeepCopyPreInsertCtx(ctx *plan.PreInsertCtx) *plan.PreInsertCtx { return nil } newCtx := &plan.PreInsertCtx{ - Ref: DeepCopyObjectRef(ctx.Ref), - TableDef: DeepCopyTableDef(ctx.TableDef, true), - HasAutoCol: ctx.HasAutoCol, - IsUpdate: ctx.IsUpdate, + Ref: DeepCopyObjectRef(ctx.Ref), + TableDef: DeepCopyTableDef(ctx.TableDef, true), + HasAutoCol: ctx.HasAutoCol, + ColOffset: ctx.ColOffset, + CompPkeyExpr: DeepCopyExpr(ctx.CompPkeyExpr), + ClusterByExpr: DeepCopyExpr(ctx.ClusterByExpr), + IsOldUpdate: ctx.IsOldUpdate, + IsNewUpdate: ctx.IsNewUpdate, } return newCtx @@ -151,17 +155,6 @@ func DeepCopyPreInsertUkCtx(ctx *plan.PreInsertUkCtx) *plan.PreInsertUkCtx { return newCtx } -func DeepCopyPreDeleteCtx(ctx *plan.PreDeleteCtx) *plan.PreDeleteCtx { - if ctx == nil { - return nil - } - newCtx := &plan.PreDeleteCtx{ - Idx: slices.Clone(ctx.Idx), - } - - return newCtx -} - func DeepCopyLockTarget(target *plan.LockTarget) *plan.LockTarget { if target == nil { return nil @@ -221,7 +214,6 @@ func DeepCopyNode(node *plan.Node) *plan.Node { SourceStep: node.SourceStep, PreInsertCtx: DeepCopyPreInsertCtx(node.PreInsertCtx), PreInsertUkCtx: DeepCopyPreInsertUkCtx(node.PreInsertUkCtx), - PreDeleteCtx: DeepCopyPreDeleteCtx(node.PreDeleteCtx), OnDuplicateKey: DeepCopyOnDuplicateKeyCtx(node.OnDuplicateKey), LockTargets: make([]*plan.LockTarget, len(node.LockTargets)), AnalyzeInfo: DeepCopyAnalyzeInfo(node.AnalyzeInfo), diff --git a/pkg/sql/plan/explain/explain_node.go b/pkg/sql/plan/explain/explain_node.go index 6bafd52b2c313..d56a71b475ea7 100644 --- a/pkg/sql/plan/explain/explain_node.go +++ b/pkg/sql/plan/explain/explain_node.go @@ -136,8 +136,6 @@ func (ndesc *NodeDescribeImpl) GetNodeBasicInfo(ctx context.Context, options *Ex pname = "PreInsert UniqueKey" case plan.Node_PRE_INSERT_SK: pname = "PreInsert SecondaryKey" - case plan.Node_PRE_DELETE: - pname = "PreDelete" case plan.Node_ON_DUPLICATE_KEY: pname = "On Duplicate Key" case plan.Node_FUZZY_FILTER: @@ -199,13 +197,6 @@ func (ndesc *NodeDescribeImpl) GetNodeBasicInfo(ctx context.Context, options *Ex buf.WriteString(ndesc.Node.TableDef.GetName()) } } - case plan.Node_PRE_DELETE: - buf.WriteString(" on ") - if ndesc.Node.ObjRef != nil { - buf.WriteString(ndesc.Node.ObjRef.GetSchemaName() + "." + ndesc.Node.ObjRef.GetObjName()) - } else if ndesc.Node.TableDef != nil { - buf.WriteString(ndesc.Node.TableDef.GetName()) - } case plan.Node_POSTDML: buf.WriteString(" on ") if ndesc.Node.PostDmlCtx != nil && ndesc.Node.PostDmlCtx.Ref != nil { diff --git a/pkg/sql/plan/explain/marshal_model.go b/pkg/sql/plan/explain/marshal_model.go index 44048396c1f03..e32a7a0a54484 100644 --- a/pkg/sql/plan/explain/marshal_model.go +++ b/pkg/sql/plan/explain/marshal_model.go @@ -86,7 +86,6 @@ var nodeTypeToNameMap = map[plan2.Node_NodeType]string{ plan2.Node_ON_DUPLICATE_KEY: "On Duplicate Key", plan2.Node_PRE_INSERT: "Pre Insert", - plan2.Node_PRE_DELETE: "Pre Delete", plan2.Node_PRE_INSERT_UK: "Pre Insert Unique", plan2.Node_PRE_INSERT_SK: "Pre Insert 2nd Key", diff --git a/pkg/sql/plan/explain/marshal_query.go b/pkg/sql/plan/explain/marshal_query.go index 9944a52d339b4..cba64eea09c56 100644 --- a/pkg/sql/plan/explain/marshal_query.go +++ b/pkg/sql/plan/explain/marshal_query.go @@ -182,8 +182,6 @@ func (m MarshalNodeImpl) GetNodeTitle(ctx context.Context, options *ExplainOptio return "preinsert_uk", nil case plan.Node_PRE_INSERT_SK: return "preinsert_sk", nil - case plan.Node_PRE_DELETE: - return "predelete", nil case plan.Node_SINK: return "sink", nil case plan.Node_SINK_SCAN: @@ -522,11 +520,6 @@ func (m MarshalNodeImpl) GetNodeLabels(ctx context.Context, options *ExplainOpti Name: Label_Pre_InsertSk, //"pre insert sk", Value: []string{}, }) - case plan.Node_PRE_DELETE: - labels = append(labels, models.Label{ - Name: Label_Pre_Delete, //"pre delete", - Value: []string{}, - }) case plan.Node_SINK: labels = append(labels, models.Label{ Name: Label_Sink, //"sink", diff --git a/pkg/sql/plan/opt_misc.go b/pkg/sql/plan/opt_misc.go index 20952af979362..98dee26384509 100644 --- a/pkg/sql/plan/opt_misc.go +++ b/pkg/sql/plan/opt_misc.go @@ -49,14 +49,9 @@ func (builder *QueryBuilder) countColRefs(nodeID int32, colRefCnt map[[2]int32]i } if node.NodeType == plan.Node_LOCK_OP { - var colRefs []ColRef for _, lockTarget := range node.LockTargets { - colRefs = append(colRefs, ColRef{ - RelPos: lockTarget.PrimaryColRelPos, - ColPos: lockTarget.PrimaryColIdxInBat, - }) + colRefCnt[[2]int32{lockTarget.PrimaryColRelPos, lockTarget.PrimaryColIdxInBat}] += 1 } - increaseRefCntForColRefList(colRefs, 1, colRefCnt) } for _, childID := range node.Children { @@ -203,6 +198,17 @@ func (builder *QueryBuilder) canRemoveProject(parentType plan.Node_NodeType, nod if childType == plan.Node_FUNCTION_SCAN || childType == plan.Node_EXTERNAL_FUNCTION { return parentType == plan.Node_PROJECT } + if childType == plan.Node_TABLE_SCAN { + if parentType == plan.Node_PROJECT { + return true + } + + for _, proj := range node.ProjectList { + if proj.GetLit() != nil { + return false + } + } + } return true } diff --git a/pkg/sql/plan/query_builder.go b/pkg/sql/plan/query_builder.go index 1f9d40002ab6b..7f0f5adc586b1 100644 --- a/pkg/sql/plan/query_builder.go +++ b/pkg/sql/plan/query_builder.go @@ -24,7 +24,6 @@ import ( "time" "github.com/google/uuid" - "github.com/matrixorigin/matrixone/pkg/catalog" "github.com/matrixorigin/matrixone/pkg/common/moerr" "github.com/matrixorigin/matrixone/pkg/container/types" @@ -1387,8 +1386,8 @@ func (builder *QueryBuilder) remapAllColRefs(nodeID int32, step int32, colRefCnt case plan.Node_LOCK_OP: preNode := builder.qry.Nodes[node.Children[0]] - var pkExprs, partExprs []*plan.Expr - var oldPkPos, oldPartPos [][2]int32 + var pkExprs []*plan.Expr + var oldPkPos [][2]int32 for _, lockTarget := range node.LockTargets { pkExpr := &plan.Expr{ // Typ: node.LockTargets[0].GetPrimaryColTyp(), @@ -1402,9 +1401,6 @@ func (builder *QueryBuilder) remapAllColRefs(nodeID int32, step int32, colRefCnt increaseRefCnt(pkExpr, 1, colRefCnt) pkExprs = append(pkExprs, pkExpr) oldPkPos = append(oldPkPos, [2]int32{lockTarget.PrimaryColRelPos, lockTarget.PrimaryColIdxInBat}) - - partExprs = append(partExprs, nil) - oldPartPos = append(oldPartPos, [2]int32{-1, -1}) } childRemapping, err := builder.remapAllColRefs(node.Children[0], step, colRefCnt, colRefBool, sinkColRef) @@ -1412,20 +1408,12 @@ func (builder *QueryBuilder) remapAllColRefs(nodeID int32, step int32, colRefCnt return nil, err } - for pkIdx, pkExpr := range pkExprs { - if newPos, ok := childRemapping.globalToLocal[oldPkPos[pkIdx]]; ok { - node.LockTargets[pkIdx].PrimaryColRelPos = newPos[0] - node.LockTargets[pkIdx].PrimaryColIdxInBat = newPos[1] - } - increaseRefCnt(pkExpr, -1, colRefCnt) - - if partExprs[pkIdx] != nil { - if newPos, ok := childRemapping.globalToLocal[oldPartPos[pkIdx]]; ok { - node.LockTargets[pkIdx].FilterColRelPos = newPos[0] - node.LockTargets[pkIdx].FilterColIdxInBat = newPos[1] - } - increaseRefCnt(partExprs[pkIdx], -1, colRefCnt) + for oldPkIdx, lockTarget := range node.LockTargets { + if newPos, ok := childRemapping.globalToLocal[oldPkPos[oldPkIdx]]; ok { + lockTarget.PrimaryColRelPos = newPos[0] + lockTarget.PrimaryColIdxInBat = newPos[1] } + increaseRefCnt(pkExprs[oldPkIdx], -1, colRefCnt) } for i, globalRef := range childRemapping.localToGlobal { diff --git a/pkg/sql/plan/shuffle.go b/pkg/sql/plan/shuffle.go index 4fc3c6de2d05a..95947791cc19a 100644 --- a/pkg/sql/plan/shuffle.go +++ b/pkg/sql/plan/shuffle.go @@ -19,18 +19,15 @@ import ( "math/bits" "unsafe" - "github.com/matrixorigin/matrixone/pkg/sql/util" - "github.com/matrixorigin/matrixone/pkg/catalog" - "github.com/matrixorigin/matrixone/pkg/logutil" - - "github.com/matrixorigin/matrixone/pkg/vm/engine" - "github.com/matrixorigin/matrixone/pkg/container/hashtable" "github.com/matrixorigin/matrixone/pkg/container/types" + "github.com/matrixorigin/matrixone/pkg/logutil" "github.com/matrixorigin/matrixone/pkg/objectio" "github.com/matrixorigin/matrixone/pkg/pb/plan" pb "github.com/matrixorigin/matrixone/pkg/pb/statsinfo" + "github.com/matrixorigin/matrixone/pkg/sql/util" + "github.com/matrixorigin/matrixone/pkg/vm/engine" ) const ( @@ -473,6 +470,10 @@ func determineShuffleForJoin(n *plan.Node, builder *QueryBuilder) { } switch n.JoinType { case plan.Node_DEDUP: + if n.OnDuplicateAction == plan.Node_FAIL && len(n.GetDedupJoinCtx().GetOldColList()) > 0 { + return + } + rightchild := builder.qry.Nodes[n.Children[1]] if rightchild.Stats.Outcnt > 320000 { //dedup join always go hash shuffle, optimize this in the future @@ -483,6 +484,7 @@ func determineShuffleForJoin(n *plan.Node, builder *QueryBuilder) { return case plan.Node_INNER, plan.Node_ANTI, plan.Node_SEMI, plan.Node_LEFT, plan.Node_RIGHT: + default: return } diff --git a/pkg/vm/message/joinMapMsg.go b/pkg/vm/message/joinMapMsg.go index 5c1ffd5545065..feb0d60083cac 100644 --- a/pkg/vm/message/joinMapMsg.go +++ b/pkg/vm/message/joinMapMsg.go @@ -20,6 +20,7 @@ import ( "strconv" "sync/atomic" + "github.com/matrixorigin/matrixone/pkg/common/bitmap" "github.com/matrixorigin/matrixone/pkg/common/hashmap" "github.com/matrixorigin/matrixone/pkg/common/mpool" "github.com/matrixorigin/matrixone/pkg/container/batch" @@ -68,22 +69,23 @@ type JoinMap struct { valid bool rowCnt int64 // for debug purpose refCnt int64 + mpool *mpool.MPool shm *hashmap.StrHashMap ihm *hashmap.IntHashMap - mpool *mpool.MPool multiSels JoinSels + delRows *bitmap.Bitmap batches []*batch.Batch - //ignoreRows *bitmap.Bitmap } -func NewJoinMap(sels JoinSels, ihm *hashmap.IntHashMap, shm *hashmap.StrHashMap, batches []*batch.Batch, m *mpool.MPool) *JoinMap { +func NewJoinMap(sels JoinSels, ihm *hashmap.IntHashMap, shm *hashmap.StrHashMap, delRows *bitmap.Bitmap, batches []*batch.Batch, m *mpool.MPool) *JoinMap { return &JoinMap{ + valid: true, + mpool: m, shm: shm, ihm: ihm, multiSels: sels, + delRows: delRows, batches: batches, - mpool: m, - valid: true, } } @@ -159,6 +161,10 @@ func (jm *JoinMap) IsValid() bool { return jm.valid } +func (jm *JoinMap) IsDeleted(row uint64) bool { + return jm.delRows != nil && jm.delRows.Contains(uint64(row)) +} + func (jm *JoinMap) FreeMemory() { jm.multiSels.Free() if jm.ihm != nil { diff --git a/proto/pipeline.proto b/proto/pipeline.proto index ac23748200201..0c206e8db15a7 100644 --- a/proto/pipeline.proto +++ b/proto/pipeline.proto @@ -170,10 +170,12 @@ message PreInsert { repeated int32 idx = 3; repeated string attrs = 4; bool has_auto_col = 5; - bool is_update = 6; + int32 col_offset = 6; int64 estimated_row_count = 7; plan.Expr comp_pkey_expr = 8; plan.Expr cluster_by_expr = 9; + bool is_old_update = 10; + bool is_new_update = 11; } message PostDml { @@ -369,6 +371,7 @@ message DedupJoin { repeated plan.Type right_types = 13 [(gogoproto.nullable) = false]; repeated int32 update_col_idx_list = 14; repeated plan.Expr update_col_expr_list = 15; + int32 del_col_idx = 16; } message Product { @@ -451,6 +454,7 @@ message HashBuild { plan.Node.OnDuplicateAction on_duplicate_action = 10; string dedup_col_name = 11; repeated plan.Type dedup_col_types = 12 [(gogoproto.nullable) = false]; + int32 del_col_idx = 13; } message Shufflebuild { @@ -465,6 +469,7 @@ message Shufflebuild { plan.Node.OnDuplicateAction on_duplicate_action = 9; string dedup_col_name = 10; repeated plan.Type dedup_col_types = 11 [(gogoproto.nullable) = false]; + int32 del_col_idx = 12; } message Indexbuild { diff --git a/proto/plan.proto b/proto/plan.proto index 3af4bdd92f14a..fa0068058136d 100644 --- a/proto/plan.proto +++ b/proto/plan.proto @@ -684,7 +684,7 @@ message Node { LOCK_OP = 33; ON_DUPLICATE_KEY = 34; PRE_INSERT = 35; - PRE_DELETE = 36; + FUZZY_FILTER = 37; // the node which build insert batch for hidden table(unique key) PRE_INSERT_UK = 38; @@ -803,7 +803,6 @@ message Node { // used to connect two plans[steps] repeated int32 source_step = 32; - PreDeleteCtx pre_delete_ctx = 33; PreInsertCtx pre_insert_ctx = 34; // build unique key batch before insert into hidden table which keep the unique key PreInsertUkCtx pre_insert_uk_ctx = 35; @@ -919,18 +918,15 @@ message PreInsertUkCtx { Type uk_type = 4 [(gogoproto.nullable) = false]; } -message PreDeleteCtx { - //the indexes of row_id&pk column in the batch - repeated int32 idx = 1; -} - message PreInsertCtx { - ObjectRef ref = 1; - TableDef table_def = 2; + ObjectRef ref = 1; + TableDef table_def = 2; bool has_auto_col = 3; - bool is_update = 4; - Expr comp_pkey_expr = 5; - Expr cluster_by_expr = 6; + int32 col_offset = 4; + Expr comp_pkey_expr = 5; + Expr cluster_by_expr = 6; + bool is_old_update = 7; + bool is_new_update = 8; } message RuntimeFilterSpec { diff --git a/test/distributed/cases/dml/update/update.result b/test/distributed/cases/dml/update/update.result index a9a20a84a1885..c850371a07674 100644 --- a/test/distributed/cases/dml/update/update.result +++ b/test/distributed/cases/dml/update/update.result @@ -265,7 +265,7 @@ insert into t1 values(1, 3); insert into t1 values(2, 2); insert into t1 values(2, 3); update t1 set a = 2 where a = 1; -Duplicate entry ('\(\d\,\d\)'|'\d\w\d{5}\w\d{4}') for key '__mo_cpkey_col' +Duplicate entry ('\(\d\,\d\)'|'\d\w\d{5}\w\d{4}') for key '(\(a,b\)|__mo_cpkey_col)' drop table if exists t1; create table t1(a int, b varchar(20), unique key(a)); insert into t1 values(1, '1'); @@ -326,4 +326,4 @@ delete from db1.t1; select * from db1.t1; a b drop database if exists db1; -drop database if exists db2; \ No newline at end of file +drop database if exists db2; diff --git a/test/distributed/cases/optimistic/isolation_2.result b/test/distributed/cases/optimistic/isolation_2.result index 1af000d56de20..63d4da420dd0e 100644 --- a/test/distributed/cases/optimistic/isolation_2.result +++ b/test/distributed/cases/optimistic/isolation_2.result @@ -558,7 +558,7 @@ a b c d insert into dis_table_07 values (2,'blue',12.00,'2024-01-20'); begin; update dis_table_07 set d='2024-01-20' where a=2 and b='blue'; -Duplicate entry '(2,blue,2024-01-20 00:00:00)' for key '__mo_cpkey_col' +Duplicate entry '(2,blue,2024-01-20 00:00:00)' for key '(a,b,d)' select * from dis_table_07; a b c d 1 yellow 20.09 2020-09-27 00:00:00 diff --git a/test/distributed/cases/pessimistic_transaction/isolation_2.result b/test/distributed/cases/pessimistic_transaction/isolation_2.result index 3a9e7d7f0ec3b..637787b306385 100644 --- a/test/distributed/cases/pessimistic_transaction/isolation_2.result +++ b/test/distributed/cases/pessimistic_transaction/isolation_2.result @@ -603,7 +603,7 @@ a b c d insert into dis_table_07 values (2,'blue',12.00,'2024-01-20'); begin; update dis_table_07 set d='2024-01-20' where a=2 and b='blue'; -Duplicate entry '(2,blue,2024-01-20 00:00:00)' for key '__mo_cpkey_col' +Duplicate entry '(2,blue,2024-01-20 00:00:00)' for key '(a,b,d)' select * from dis_table_07; a b c d 1 yellow 20.09 2020-09-27 00:00:00 diff --git a/test/distributed/cases/pessimistic_transaction/unique_secondary_index.result b/test/distributed/cases/pessimistic_transaction/unique_secondary_index.result index 61b8635537d51..e968dcb179a59 100644 --- a/test/distributed/cases/pessimistic_transaction/unique_secondary_index.result +++ b/test/distributed/cases/pessimistic_transaction/unique_secondary_index.result @@ -292,7 +292,7 @@ apple bread chart update index_table_05 set col2='bread' where col1=1; -Duplicate entry 'bread' for key '__mo_index_idx_col' +Duplicate entry 'bread' for key 'col2' select * from index_table_05; col1 col2 col3 col4 1 apple 1 10 @@ -590,7 +590,7 @@ apple bread chart update create_index_19 set col2='bread' where col1=1; -Duplicate entry 'bread' for key '__mo_index_idx_col' +Duplicate entry 'bread' for key 'col2' select * from create_index_19; col1 col2 col3 col4 1 apple 1 10