Commit bb1aa4b8 authored by pengjun's avatar pengjun

#627 add borrow record to collateralize info query

parent 172ed60e
......@@ -16,7 +16,7 @@ func (c *Collateralize) Query_CollateralizeInfoByID(req *pty.ReqCollateralizeInf
return nil, err
}
return &pty.RepCollateralizeCurrentInfo{
info := &pty.RepCollateralizeCurrentInfo{
Status: coll.Status,
TotalBalance: coll.TotalBalance,
DebtCeiling: coll.DebtCeiling,
......@@ -27,7 +27,11 @@ func (c *Collateralize) Query_CollateralizeInfoByID(req *pty.ReqCollateralizeInf
Period: coll.Period,
CollateralizeId: coll.CollateralizeId,
CollBalance: coll.CollBalance,
}, nil
}
info.BorrowRecords = append(info.BorrowRecords, coll.BorrowRecords...)
info.BorrowRecords = append(info.BorrowRecords, coll.InvalidRecords...)
return info, nil
}
func (c *Collateralize) Query_CollateralizeInfoByIDs(req *pty.ReqCollateralizeInfos) (types.Message, error) {
......@@ -39,7 +43,7 @@ func (c *Collateralize) Query_CollateralizeInfoByIDs(req *pty.ReqCollateralizeIn
return nil, err
}
infos.Infos = append(infos.Infos, &pty.RepCollateralizeCurrentInfo{
info := &pty.RepCollateralizeCurrentInfo{
Status: coll.Status,
TotalBalance: coll.TotalBalance,
DebtCeiling: coll.DebtCeiling,
......@@ -50,7 +54,11 @@ func (c *Collateralize) Query_CollateralizeInfoByIDs(req *pty.ReqCollateralizeIn
Period: coll.Period,
CollateralizeId: coll.CollateralizeId,
CollBalance: coll.CollBalance,
})
}
info.BorrowRecords = append(info.BorrowRecords, coll.BorrowRecords...)
info.BorrowRecords = append(info.BorrowRecords, coll.InvalidRecords...)
infos.Infos = append(infos.Infos, info)
}
return infos, nil
......
......@@ -143,16 +143,17 @@ message ReqCollateralizeInfo {
// 返回一期放贷信息
message RepCollateralizeCurrentInfo {
int32 status = 1;//当期借贷的状态,是否关闭
int64 totalBalance = 2; //当期可借贷的总金额(ccny)
int64 debtCeiling = 3; //单用户可借出的限额(ccny)
float liquidationRatio = 4; //清算比例
float stabilityFeeRatio = 5; //稳定费
string createAddr = 6; //创建人地址
int64 balance = 7; //剩余可借贷金额(ccny)
int64 period = 8; //合约期限
string collateralizeId = 9; //放贷ID
int64 collBalance = 10;//抵押bty
int32 status = 1;//当期借贷的状态,是否关闭
int64 totalBalance = 2; //当期可借贷的总金额(ccny)
int64 debtCeiling = 3; //单用户可借出的限额(ccny)
float liquidationRatio = 4; //清算比例
float stabilityFeeRatio = 5; //稳定费
string createAddr = 6; //创建人地址
int64 balance = 7; //剩余可借贷金额(ccny)
int64 period = 8; //合约期限
string collateralizeId = 9; //放贷ID
int64 collBalance = 10;//抵押bty
repeated BorrowRecord borrowRecords = 11;//借贷记录
}
// 根据ID列表查询多期放贷信息
......
......@@ -1208,19 +1208,20 @@ func (m *ReqCollateralizeInfo) GetCollateralizeId() string {
// 返回一期放贷信息
type RepCollateralizeCurrentInfo struct {
Status int32 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
TotalBalance int64 `protobuf:"varint,2,opt,name=totalBalance,proto3" json:"totalBalance,omitempty"`
DebtCeiling int64 `protobuf:"varint,3,opt,name=debtCeiling,proto3" json:"debtCeiling,omitempty"`
LiquidationRatio float32 `protobuf:"fixed32,4,opt,name=liquidationRatio,proto3" json:"liquidationRatio,omitempty"`
StabilityFeeRatio float32 `protobuf:"fixed32,5,opt,name=stabilityFeeRatio,proto3" json:"stabilityFeeRatio,omitempty"`
CreateAddr string `protobuf:"bytes,6,opt,name=createAddr,proto3" json:"createAddr,omitempty"`
Balance int64 `protobuf:"varint,7,opt,name=balance,proto3" json:"balance,omitempty"`
Period int64 `protobuf:"varint,8,opt,name=period,proto3" json:"period,omitempty"`
CollateralizeId string `protobuf:"bytes,9,opt,name=collateralizeId,proto3" json:"collateralizeId,omitempty"`
CollBalance int64 `protobuf:"varint,10,opt,name=collBalance,proto3" json:"collBalance,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
Status int32 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
TotalBalance int64 `protobuf:"varint,2,opt,name=totalBalance,proto3" json:"totalBalance,omitempty"`
DebtCeiling int64 `protobuf:"varint,3,opt,name=debtCeiling,proto3" json:"debtCeiling,omitempty"`
LiquidationRatio float32 `protobuf:"fixed32,4,opt,name=liquidationRatio,proto3" json:"liquidationRatio,omitempty"`
StabilityFeeRatio float32 `protobuf:"fixed32,5,opt,name=stabilityFeeRatio,proto3" json:"stabilityFeeRatio,omitempty"`
CreateAddr string `protobuf:"bytes,6,opt,name=createAddr,proto3" json:"createAddr,omitempty"`
Balance int64 `protobuf:"varint,7,opt,name=balance,proto3" json:"balance,omitempty"`
Period int64 `protobuf:"varint,8,opt,name=period,proto3" json:"period,omitempty"`
CollateralizeId string `protobuf:"bytes,9,opt,name=collateralizeId,proto3" json:"collateralizeId,omitempty"`
CollBalance int64 `protobuf:"varint,10,opt,name=collBalance,proto3" json:"collBalance,omitempty"`
BorrowRecords []*BorrowRecord `protobuf:"bytes,11,rep,name=borrowRecords,proto3" json:"borrowRecords,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RepCollateralizeCurrentInfo) Reset() { *m = RepCollateralizeCurrentInfo{} }
......@@ -1318,6 +1319,13 @@ func (m *RepCollateralizeCurrentInfo) GetCollBalance() int64 {
return 0
}
func (m *RepCollateralizeCurrentInfo) GetBorrowRecords() []*BorrowRecord {
if m != nil {
return m.BorrowRecords
}
return nil
}
// 根据ID列表查询多期放贷信息
type ReqCollateralizeInfos struct {
CollateralizeIds []string `protobuf:"bytes,1,rep,name=collateralizeIds,proto3" json:"collateralizeIds,omitempty"`
......@@ -1878,6 +1886,7 @@ func (m *RepCollateralizeConfig) GetCurrentTime() int64 {
return 0
}
// 返回最新抵押物价格
type RepCollateralizePrice struct {
Price float32 `protobuf:"fixed32,1,opt,name=price,proto3" json:"price,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
......@@ -1952,83 +1961,84 @@ func init() {
func init() { proto.RegisterFile("collateralize.proto", fileDescriptor_a988fb4a61381972) }
var fileDescriptor_a988fb4a61381972 = []byte{
// 1248 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0x5f, 0x6f, 0xdc, 0x44,
0x10, 0xaf, 0xed, 0xfb, 0x93, 0x9b, 0x4b, 0xd2, 0x74, 0x13, 0x8a, 0x29, 0x55, 0x74, 0xb2, 0x90,
0x38, 0x01, 0x8d, 0x44, 0x5a, 0x21, 0x2a, 0x24, 0x44, 0x72, 0x6d, 0x95, 0x93, 0x8a, 0x54, 0x99,
0x82, 0x50, 0x25, 0x90, 0x7c, 0xf6, 0x26, 0x58, 0x72, 0x6c, 0xc7, 0xde, 0x0b, 0x39, 0xde, 0xe9,
0x03, 0x9f, 0xa1, 0x7c, 0x37, 0xbe, 0x43, 0x1f, 0x78, 0x45, 0x3b, 0xbb, 0xfe, 0xb3, 0x6b, 0x3b,
0xca, 0x01, 0x4f, 0x7d, 0xa9, 0xb2, 0xb3, 0xbf, 0x19, 0xcf, 0x9f, 0xdf, 0xce, 0xcc, 0x15, 0x76,
0xfd, 0x24, 0x8a, 0x3c, 0x46, 0x33, 0x2f, 0x0a, 0x7f, 0xa3, 0x07, 0x69, 0x96, 0xb0, 0x84, 0xf4,
0xd9, 0x2a, 0xa5, 0xb9, 0xf3, 0xb6, 0x07, 0x5b, 0xb3, 0xfa, 0x35, 0x99, 0xc2, 0x6d, 0x05, 0x3f,
0x0f, 0x6c, 0x63, 0x62, 0x4c, 0x47, 0xae, 0x2e, 0x26, 0x0e, 0x6c, 0xb2, 0x84, 0x79, 0xd1, 0xb1,
0x17, 0x79, 0xb1, 0x4f, 0x6d, 0x73, 0x62, 0x4c, 0x2d, 0x57, 0x91, 0x91, 0x09, 0x8c, 0x03, 0xba,
0x60, 0x33, 0x1a, 0x46, 0x61, 0x7c, 0x66, 0x5b, 0x08, 0xa9, 0x8b, 0xc8, 0x27, 0xb0, 0x13, 0x85,
0x17, 0xcb, 0x30, 0xf0, 0x58, 0x98, 0xc4, 0x2e, 0xff, 0xd7, 0xee, 0x4d, 0x8c, 0xa9, 0xe9, 0x36,
0xe4, 0xe4, 0x33, 0xb8, 0x93, 0x33, 0x6f, 0x11, 0x46, 0x21, 0x5b, 0x3d, 0xa3, 0x54, 0x80, 0xfb,
0x08, 0x6e, 0x5e, 0x90, 0x7d, 0x00, 0x3f, 0xa3, 0x1e, 0xa3, 0x47, 0x41, 0x90, 0xd9, 0x03, 0x0c,
0xa2, 0x26, 0x21, 0x36, 0x0c, 0x17, 0xd2, 0xf5, 0x21, 0xfa, 0x55, 0x1c, 0xc9, 0x63, 0xd8, 0x5a,
0x24, 0x59, 0x96, 0xfc, 0xea, 0x52, 0x3f, 0xc9, 0x82, 0xdc, 0xde, 0x98, 0x58, 0xd3, 0xf1, 0xe1,
0xee, 0x01, 0x26, 0xed, 0xe0, 0xb8, 0x76, 0xe7, 0xaa, 0x48, 0xf2, 0x15, 0x6c, 0xcf, 0xe3, 0x4b,
0x2f, 0x0a, 0x83, 0x42, 0x77, 0xd4, 0xad, 0xab, 0x41, 0xc9, 0x5d, 0x18, 0xe4, 0xcc, 0x63, 0xcb,
0xdc, 0x86, 0x89, 0x31, 0xed, 0xbb, 0xf2, 0x44, 0xbe, 0x80, 0xbb, 0x3c, 0xf3, 0x39, 0x7b, 0x5e,
0x65, 0xe4, 0x45, 0x16, 0xfa, 0xd4, 0x1e, 0x63, 0xf0, 0x1d, 0xb7, 0xdc, 0x5e, 0x4a, 0xb3, 0x30,
0x09, 0xec, 0x4d, 0x0c, 0x50, 0x9e, 0x30, 0xe7, 0xa8, 0xf1, 0xf4, 0x2a, 0x0d, 0x33, 0xfa, 0x32,
0x3c, 0xa7, 0xf6, 0x16, 0x22, 0x1a, 0x72, 0xb2, 0x07, 0xfd, 0x30, 0x0e, 0xe8, 0x95, 0xbd, 0x8d,
0x00, 0x71, 0x20, 0xf7, 0x60, 0x23, 0xcd, 0xe8, 0x1c, 0x2f, 0x6e, 0xe3, 0x45, 0x79, 0xe6, 0x35,
0xe7, 0x54, 0x29, 0x68, 0xb1, 0x23, 0x6a, 0x5e, 0x13, 0x39, 0x7f, 0x59, 0xb0, 0x59, 0x4f, 0x04,
0x57, 0xf1, 0x7c, 0x3f, 0x59, 0xc6, 0x0c, 0x6b, 0x25, 0x08, 0x57, 0x17, 0x91, 0xfb, 0x30, 0xca,
0x99, 0x97, 0x31, 0xf4, 0x55, 0x30, 0xad, 0x12, 0xa8, 0xa4, 0xfd, 0xc1, 0x8b, 0x96, 0x54, 0x52,
0x4d, 0x17, 0xab, 0x48, 0x91, 0x43, 0xc1, 0x36, 0x5d, 0xcc, 0xbf, 0xc8, 0x79, 0x2a, 0xac, 0xf5,
0xc5, 0x17, 0x4b, 0x81, 0x46, 0x5b, 0x61, 0x68, 0xd0, 0xa0, 0x6d, 0x59, 0x06, 0x59, 0xd6, 0xa1,
0x52, 0xd6, 0x8f, 0x60, 0xab, 0xc0, 0x8a, 0x1a, 0x6c, 0xe0, 0x57, 0x54, 0x21, 0xa7, 0x31, 0xad,
0xca, 0x34, 0x42, 0x48, 0x4d, 0xc2, 0xfd, 0x4c, 0x33, 0xfa, 0x5d, 0x9d, 0x37, 0x95, 0x80, 0x17,
0x2a, 0xc3, 0x1c, 0xcf, 0x03, 0x24, 0xcb, 0xc8, 0x2d, 0xcf, 0x6d, 0x4f, 0x7d, 0xb3, 0xfd, 0xa9,
0x97, 0x24, 0xd8, 0xea, 0x22, 0xc1, 0xb6, 0x4a, 0x02, 0xe7, 0xb5, 0x01, 0x3b, 0x47, 0x79, 0x4e,
0x19, 0xa6, 0x40, 0x96, 0x79, 0x1f, 0x40, 0x7c, 0x1c, 0x43, 0x31, 0x44, 0x28, 0x95, 0x84, 0x1b,
0x5c, 0xb0, 0x95, 0x48, 0xa6, 0x89, 0xc9, 0x2c, 0xcf, 0xe2, 0xce, 0x17, 0x77, 0x56, 0x71, 0xe7,
0x97, 0x77, 0x94, 0xfd, 0x52, 0xaf, 0x66, 0x79, 0x76, 0xde, 0x58, 0xb0, 0xab, 0x74, 0xb8, 0x23,
0x9f, 0x57, 0x86, 0x3c, 0x82, 0x81, 0xe8, 0x05, 0xe8, 0xc7, 0xf8, 0xf0, 0x9e, 0x7c, 0xa0, 0x0a,
0x76, 0x86, 0x88, 0x93, 0x5b, 0xae, 0xc4, 0x72, 0x2d, 0xf1, 0xde, 0xd1, 0xbf, 0x0e, 0x2d, 0x41,
0x6d, 0xae, 0x25, 0xb0, 0xe4, 0x73, 0xe8, 0x67, 0x34, 0xf5, 0x56, 0xe8, 0xf8, 0xf8, 0xf0, 0x83,
0x36, 0x25, 0x97, 0x03, 0x4e, 0x6e, 0xb9, 0x02, 0xc9, 0x3f, 0xe4, 0xa5, 0x29, 0x8d, 0x03, 0x0c,
0xa8, 0xe3, 0x43, 0x47, 0x88, 0xe0, 0x1f, 0x12, 0x58, 0x72, 0x00, 0xbd, 0x53, 0x4a, 0x03, 0xa4,
0xeb, 0xf8, 0xd0, 0x6e, 0xd3, 0x79, 0x46, 0x29, 0xd7, 0x40, 0x1c, 0x77, 0xcc, 0x8f, 0x92, 0x5c,
0x50, 0xb7, 0xc3, 0xb1, 0x19, 0x07, 0x70, 0xc7, 0x10, 0xc9, 0x1d, 0x3b, 0xf7, 0x62, 0xef, 0x4c,
0x34, 0xcd, 0x0e, 0xc7, 0xbe, 0x45, 0x04, 0x77, 0x4c, 0x60, 0xc9, 0x36, 0x98, 0x6c, 0x25, 0xd9,
0x69, 0xb2, 0xd5, 0xf1, 0x10, 0xfa, 0x97, 0xfc, 0x1d, 0x39, 0x7f, 0x1b, 0x5a, 0x79, 0x84, 0xaa,
0x3e, 0x38, 0x8c, 0x9b, 0x0d, 0x0e, 0x73, 0x9d, 0xc1, 0x61, 0x75, 0x0d, 0x8e, 0xaa, 0x6d, 0xf6,
0xf4, 0xb6, 0xc9, 0x1f, 0xc6, 0xcb, 0xfa, 0xd0, 0x13, 0x8d, 0xa1, 0x21, 0xc7, 0x26, 0xb8, 0xcc,
0x32, 0x1a, 0x8b, 0x8e, 0x35, 0x90, 0x4d, 0xb0, 0x12, 0x39, 0x0f, 0xe1, 0x8e, 0x5a, 0x4c, 0xde,
0xe6, 0xf6, 0x01, 0xf2, 0x65, 0x4a, 0x33, 0x7e, 0xc8, 0x6d, 0x63, 0x62, 0xf1, 0x99, 0x55, 0x49,
0x9c, 0xc7, 0x5a, 0xb6, 0x04, 0x41, 0x1b, 0xa3, 0xd8, 0x68, 0x8e, 0x62, 0xe7, 0x7b, 0x4d, 0x55,
0xb0, 0x74, 0x8d, 0x79, 0xbf, 0x27, 0x6b, 0x26, 0xdb, 0xaf, 0x2c, 0xe0, 0x2b, 0x20, 0x4d, 0x1e,
0xaf, 0x61, 0xb5, 0xde, 0xa0, 0x4c, 0xb5, 0x41, 0x39, 0xbf, 0xeb, 0xe4, 0x10, 0x84, 0xff, 0x7f,
0xac, 0xdf, 0x7c, 0x68, 0x38, 0x3f, 0x69, 0xa5, 0xe2, 0x6f, 0x88, 0x9b, 0xc6, 0xaa, 0xaf, 0x52,
0x91, 0xef, 0xbe, 0x5b, 0x9e, 0x79, 0xaa, 0x52, 0xd9, 0xc5, 0xac, 0xa9, 0xe9, 0x8a, 0x03, 0xe7,
0xd5, 0x65, 0x12, 0x2d, 0xcf, 0xf9, 0x77, 0x2c, 0xce, 0x2b, 0x71, 0x72, 0xbe, 0xd6, 0x52, 0x88,
0x2f, 0xee, 0xe6, 0x41, 0x3a, 0xaf, 0x4d, 0xd8, 0x73, 0xa9, 0x4f, 0xc3, 0x94, 0xfd, 0xdb, 0x5d,
0x4e, 0xdd, 0x95, 0xcc, 0xc6, 0xae, 0xa4, 0x0d, 0x68, 0xab, 0x39, 0xa0, 0xeb, 0x99, 0xee, 0x69,
0x99, 0xae, 0x06, 0x60, 0x5f, 0x19, 0x80, 0xf7, 0x61, 0xf4, 0xa2, 0x1c, 0x5d, 0x03, 0x31, 0xba,
0x4a, 0x41, 0x35, 0x74, 0x86, 0x5d, 0x43, 0x67, 0x43, 0x1b, 0x3a, 0x7f, 0xea, 0x7c, 0x91, 0x73,
0xe7, 0xe6, 0x79, 0x20, 0xd0, 0xf3, 0xaa, 0x0c, 0xe0, 0xdf, 0x4a, 0x64, 0x56, 0x67, 0x64, 0x3d,
0x25, 0xb2, 0xd2, 0xf7, 0x7e, 0xcd, 0x77, 0xe7, 0x39, 0xec, 0xb5, 0xb8, 0x97, 0x93, 0x47, 0x30,
0xcc, 0xe4, 0xb6, 0x68, 0xe0, 0xb6, 0x78, 0xaf, 0x7d, 0x42, 0xe0, 0xd2, 0x58, 0x40, 0x9d, 0x6f,
0x78, 0xd5, 0x2f, 0x14, 0xc8, 0x3c, 0x3e, 0x4d, 0xd6, 0x20, 0xce, 0x5b, 0x13, 0x3e, 0x74, 0x69,
0xaa, 0x92, 0x4f, 0xb4, 0x28, 0xb4, 0x54, 0x45, 0x67, 0x28, 0xd1, 0xbd, 0xbb, 0x9b, 0x7f, 0xd5,
0xfa, 0x37, 0x94, 0xd6, 0xdf, 0x92, 0xd3, 0x51, 0x3b, 0x83, 0xb4, 0xed, 0x17, 0x9a, 0xdb, 0xef,
0x0c, 0xde, 0x6b, 0xab, 0x5b, 0x5e, 0xcc, 0x97, 0x9a, 0xb5, 0x62, 0x04, 0x34, 0xe4, 0xce, 0x8f,
0x70, 0xff, 0x9a, 0xca, 0xe5, 0xe4, 0x4b, 0x4e, 0xc0, 0xd3, 0xa4, 0x20, 0x94, 0x23, 0x09, 0x75,
0x8d, 0x8e, 0x2b, 0x14, 0x9c, 0x13, 0xb0, 0x75, 0xf7, 0x8e, 0x57, 0xf2, 0x49, 0x76, 0x11, 0xa2,
0xa4, 0xbb, 0x59, 0xa7, 0xfb, 0x2b, 0xb8, 0xdb, 0xb4, 0x84, 0x05, 0x28, 0x9e, 0x99, 0x51, 0x7b,
0x66, 0x95, 0x6d, 0xb3, 0xdd, 0xb6, 0x55, 0xb7, 0xfd, 0x31, 0xec, 0xea, 0xb1, 0xcc, 0x9f, 0xe4,
0x64, 0x07, 0xac, 0xf9, 0x93, 0x22, 0x6b, 0xfc, 0x4f, 0xe7, 0x0f, 0x83, 0x67, 0xea, 0xa2, 0xe5,
0x25, 0x49, 0x5f, 0xfe, 0x5b, 0x73, 0xa8, 0xbc, 0xb6, 0xda, 0xbd, 0xee, 0xd5, 0xbd, 0xbe, 0x82,
0xfd, 0x2e, 0x5f, 0x64, 0x86, 0x6f, 0xee, 0xcd, 0x7a, 0xf9, 0x3a, 0x81, 0xf7, 0xf5, 0x7c, 0x15,
0xdd, 0xe7, 0x81, 0xde, 0x7d, 0x5a, 0x7f, 0xab, 0x96, 0x6d, 0xe7, 0xe7, 0x66, 0x55, 0xd7, 0x6e,
0xb3, 0xd7, 0x0d, 0xfd, 0xa7, 0xdc, 0x7e, 0x9b, 0xa7, 0xe4, 0x53, 0x18, 0x08, 0x94, 0x5c, 0xd9,
0x5b, 0xfd, 0x94, 0x10, 0xe7, 0x8d, 0xd9, 0xb4, 0x33, 0x4b, 0xe2, 0xd3, 0xf0, 0xec, 0x9d, 0xd8,
0x2d, 0x6b, 0x2d, 0x66, 0xd0, 0x68, 0x31, 0xfa, 0xf6, 0x39, 0x6c, 0x6e, 0x9f, 0x0f, 0x78, 0x13,
0x52, 0xb3, 0x23, 0x7e, 0x4b, 0x95, 0xab, 0x8b, 0x81, 0x21, 0x88, 0xc3, 0x62, 0x80, 0xff, 0x6b,
0xf4, 0xf0, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8a, 0xd8, 0xf3, 0xdd, 0x4c, 0x12, 0x00, 0x00,
// 1257 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0xdd, 0x6e, 0xdc, 0x44,
0x14, 0xae, 0xed, 0xfd, 0xc9, 0x9e, 0x4d, 0xd2, 0x74, 0x12, 0x8a, 0x09, 0x51, 0xb4, 0xb2, 0x90,
0x58, 0x01, 0x8d, 0x44, 0x5a, 0x21, 0x2a, 0x24, 0x44, 0xb2, 0x6d, 0x95, 0x95, 0x8a, 0x54, 0x99,
0x82, 0x50, 0x25, 0x90, 0xbc, 0xf6, 0x24, 0x58, 0x72, 0xd6, 0x8e, 0x3d, 0x1b, 0xb2, 0xdc, 0xd3,
0x0b, 0x9e, 0xa1, 0xbc, 0x02, 0xcf, 0xc4, 0x3b, 0x70, 0xc1, 0x2d, 0x9a, 0x33, 0xe3, 0x9f, 0x19,
0xdb, 0xd1, 0x2e, 0x70, 0xd5, 0x9b, 0x68, 0xe7, 0xcc, 0x37, 0x33, 0xe7, 0xe7, 0x3b, 0x3f, 0x0e,
0xec, 0xfa, 0x71, 0x14, 0x79, 0x8c, 0xa6, 0x5e, 0x14, 0xfe, 0x42, 0x8f, 0x92, 0x34, 0x66, 0x31,
0xe9, 0xb2, 0x65, 0x42, 0x33, 0xe7, 0xaf, 0x0e, 0x6c, 0x4d, 0xaa, 0xdb, 0x64, 0x0c, 0x77, 0x15,
0xfc, 0x34, 0xb0, 0x8d, 0x91, 0x31, 0x1e, 0xb8, 0xba, 0x98, 0x38, 0xb0, 0xc9, 0x62, 0xe6, 0x45,
0xa7, 0x5e, 0xe4, 0xcd, 0x7d, 0x6a, 0x9b, 0x23, 0x63, 0x6c, 0xb9, 0x8a, 0x8c, 0x8c, 0x60, 0x18,
0xd0, 0x19, 0x9b, 0xd0, 0x30, 0x0a, 0xe7, 0x17, 0xb6, 0x85, 0x90, 0xaa, 0x88, 0x7c, 0x04, 0x3b,
0x51, 0x78, 0xb5, 0x08, 0x03, 0x8f, 0x85, 0xf1, 0xdc, 0xe5, 0x7f, 0xed, 0xce, 0xc8, 0x18, 0x9b,
0x6e, 0x4d, 0x4e, 0x3e, 0x81, 0x7b, 0x19, 0xf3, 0x66, 0x61, 0x14, 0xb2, 0xe5, 0x33, 0x4a, 0x05,
0xb8, 0x8b, 0xe0, 0xfa, 0x06, 0x39, 0x04, 0xf0, 0x53, 0xea, 0x31, 0x7a, 0x12, 0x04, 0xa9, 0xdd,
0x43, 0x23, 0x2a, 0x12, 0x62, 0x43, 0x7f, 0x26, 0x55, 0xef, 0xa3, 0x5e, 0xf9, 0x92, 0x3c, 0x86,
0xad, 0x59, 0x9c, 0xa6, 0xf1, 0xcf, 0x2e, 0xf5, 0xe3, 0x34, 0xc8, 0xec, 0x8d, 0x91, 0x35, 0x1e,
0x1e, 0xef, 0x1e, 0xa1, 0xd3, 0x8e, 0x4e, 0x2b, 0x7b, 0xae, 0x8a, 0x24, 0x5f, 0xc0, 0xf6, 0x74,
0x7e, 0xed, 0x45, 0x61, 0x90, 0x9f, 0x1d, 0xb4, 0x9f, 0xd5, 0xa0, 0xe4, 0x3e, 0xf4, 0x32, 0xe6,
0xb1, 0x45, 0x66, 0xc3, 0xc8, 0x18, 0x77, 0x5d, 0xb9, 0x22, 0x9f, 0xc1, 0x7d, 0xee, 0xf9, 0x8c,
0x3d, 0x2f, 0x3d, 0xf2, 0x22, 0x0d, 0x7d, 0x6a, 0x0f, 0xd1, 0xf8, 0x96, 0x5d, 0x7e, 0x5f, 0x42,
0xd3, 0x30, 0x0e, 0xec, 0x4d, 0x34, 0x50, 0xae, 0xd0, 0xe7, 0x78, 0xe2, 0xe9, 0x4d, 0x12, 0xa6,
0xf4, 0x65, 0x78, 0x49, 0xed, 0x2d, 0x44, 0xd4, 0xe4, 0x64, 0x0f, 0xba, 0xe1, 0x3c, 0xa0, 0x37,
0xf6, 0x36, 0x02, 0xc4, 0x82, 0xec, 0xc3, 0x46, 0x92, 0xd2, 0x29, 0x6e, 0xdc, 0xc5, 0x8d, 0x62,
0xcd, 0x63, 0xce, 0xa9, 0x92, 0xd3, 0x62, 0x47, 0xc4, 0xbc, 0x22, 0x72, 0xfe, 0xb4, 0x60, 0xb3,
0xea, 0x08, 0x7e, 0xc4, 0xf3, 0xfd, 0x78, 0x31, 0x67, 0x18, 0x2b, 0x41, 0xb8, 0xaa, 0x88, 0x1c,
0xc0, 0x20, 0x63, 0x5e, 0xca, 0x50, 0x57, 0xc1, 0xb4, 0x52, 0xa0, 0x92, 0xf6, 0x3b, 0x2f, 0x5a,
0x50, 0x49, 0x35, 0x5d, 0xac, 0x22, 0x85, 0x0f, 0x05, 0xdb, 0x74, 0x31, 0x7f, 0x91, 0xf3, 0x54,
0xdc, 0xd6, 0x15, 0x2f, 0x16, 0x02, 0x8d, 0xb6, 0xe2, 0xa2, 0x5e, 0x8d, 0xb6, 0x45, 0x18, 0x64,
0x58, 0xfb, 0x4a, 0x58, 0x3f, 0x80, 0xad, 0x1c, 0x2b, 0x62, 0xb0, 0x81, 0xaf, 0xa8, 0x42, 0x4e,
0x63, 0x5a, 0x86, 0x69, 0x80, 0x90, 0x8a, 0x84, 0xeb, 0x99, 0xa4, 0xf4, 0x9b, 0x2a, 0x6f, 0x4a,
0x01, 0x0f, 0x54, 0x8a, 0x3e, 0x9e, 0x06, 0x48, 0x96, 0x81, 0x5b, 0xac, 0x9b, 0x52, 0x7d, 0xb3,
0x39, 0xd5, 0x0b, 0x12, 0x6c, 0xb5, 0x91, 0x60, 0x5b, 0x25, 0x81, 0xf3, 0xda, 0x80, 0x9d, 0x93,
0x2c, 0xa3, 0x0c, 0x5d, 0x20, 0xc3, 0x7c, 0x08, 0x20, 0x1e, 0x47, 0x53, 0x0c, 0x61, 0x4a, 0x29,
0xe1, 0x17, 0xce, 0xd8, 0x52, 0x38, 0xd3, 0x44, 0x67, 0x16, 0x6b, 0xb1, 0xe7, 0x8b, 0x3d, 0x2b,
0xdf, 0xf3, 0x8b, 0x3d, 0xca, 0x7e, 0xaa, 0x46, 0xb3, 0x58, 0x3b, 0x6f, 0x2c, 0xd8, 0x55, 0x2a,
0xdc, 0x89, 0xcf, 0x23, 0x43, 0x1e, 0x41, 0x4f, 0xd4, 0x02, 0xd4, 0x63, 0x78, 0xbc, 0x2f, 0x13,
0x54, 0xc1, 0x4e, 0x10, 0x71, 0x76, 0xc7, 0x95, 0x58, 0x7e, 0x4a, 0xe4, 0x3b, 0xea, 0xd7, 0x72,
0x4a, 0x50, 0x9b, 0x9f, 0x12, 0x58, 0xf2, 0x29, 0x74, 0x53, 0x9a, 0x78, 0x4b, 0x54, 0x7c, 0x78,
0xfc, 0x5e, 0xd3, 0x21, 0x97, 0x03, 0xce, 0xee, 0xb8, 0x02, 0xc9, 0x1f, 0xf2, 0x92, 0x84, 0xce,
0x03, 0x34, 0xa8, 0xe5, 0xa1, 0x13, 0x44, 0xf0, 0x87, 0x04, 0x96, 0x1c, 0x41, 0xe7, 0x9c, 0xd2,
0x00, 0xe9, 0x3a, 0x3c, 0xb6, 0x9b, 0xce, 0x3c, 0xa3, 0x94, 0x9f, 0x40, 0x1c, 0x57, 0xcc, 0x8f,
0xe2, 0x4c, 0x50, 0xb7, 0x45, 0xb1, 0x09, 0x07, 0x70, 0xc5, 0x10, 0xc9, 0x15, 0xbb, 0xf4, 0xe6,
0xde, 0x85, 0x28, 0x9a, 0x2d, 0x8a, 0x7d, 0x8d, 0x08, 0xae, 0x98, 0xc0, 0x92, 0x6d, 0x30, 0xd9,
0x52, 0xb2, 0xd3, 0x64, 0xcb, 0xd3, 0x3e, 0x74, 0xaf, 0x79, 0x1e, 0x39, 0x7f, 0x1b, 0x5a, 0x78,
0xc4, 0x51, 0xbd, 0x71, 0x18, 0xab, 0x35, 0x0e, 0x73, 0x9d, 0xc6, 0x61, 0xb5, 0x35, 0x8e, 0xb2,
0x6c, 0x76, 0xf4, 0xb2, 0xc9, 0x13, 0xe3, 0x65, 0xb5, 0xe9, 0x89, 0xc2, 0x50, 0x93, 0x63, 0x11,
0x5c, 0xa4, 0x29, 0x9d, 0x8b, 0x8a, 0xd5, 0x93, 0x45, 0xb0, 0x14, 0x39, 0x0f, 0xe1, 0x9e, 0x1a,
0x4c, 0x5e, 0xe6, 0x0e, 0x01, 0xb2, 0x45, 0x42, 0x53, 0xbe, 0xc8, 0x6c, 0x63, 0x64, 0xf1, 0x9e,
0x55, 0x4a, 0x9c, 0xc7, 0x9a, 0xb7, 0x04, 0x41, 0x6b, 0xad, 0xd8, 0xa8, 0xb7, 0x62, 0xe7, 0x5b,
0xed, 0xa8, 0x60, 0xe9, 0x1a, 0xfd, 0x7e, 0x4f, 0xc6, 0x4c, 0x96, 0x5f, 0x19, 0xc0, 0x57, 0x40,
0xea, 0x3c, 0x5e, 0xe3, 0xd6, 0x6a, 0x81, 0x32, 0xd5, 0x02, 0xe5, 0xfc, 0xaa, 0x93, 0x43, 0x10,
0xfe, 0xff, 0xb9, 0x7d, 0xf5, 0xa6, 0xe1, 0xfc, 0xa0, 0x85, 0x8a, 0xe7, 0x10, 0xbf, 0x1a, 0xa3,
0xbe, 0x4c, 0x84, 0xbf, 0xbb, 0x6e, 0xb1, 0xe6, 0xae, 0x4a, 0x64, 0x15, 0xb3, 0xc6, 0xa6, 0x2b,
0x16, 0x9c, 0x57, 0xd7, 0x71, 0xb4, 0xb8, 0xe4, 0xef, 0x58, 0x9c, 0x57, 0x62, 0xe5, 0x7c, 0xa9,
0xb9, 0x10, 0x33, 0x6e, 0x75, 0x23, 0x9d, 0xd7, 0x26, 0xec, 0xb9, 0xd4, 0xa7, 0x61, 0xc2, 0xfe,
0xed, 0x2c, 0xa7, 0xce, 0x4a, 0x66, 0x6d, 0x56, 0xd2, 0x1a, 0xb4, 0x55, 0x6f, 0xd0, 0x55, 0x4f,
0x77, 0x34, 0x4f, 0x97, 0x0d, 0xb0, 0xab, 0x34, 0xc0, 0x03, 0x18, 0xbc, 0x28, 0x5a, 0x57, 0x4f,
0xb4, 0xae, 0x42, 0x50, 0x36, 0x9d, 0x7e, 0x5b, 0xd3, 0xd9, 0xd0, 0x9a, 0xce, 0xef, 0x3a, 0x5f,
0x64, 0xdf, 0x59, 0xdd, 0x0f, 0x04, 0x3a, 0x5e, 0xe9, 0x01, 0xfc, 0xad, 0x58, 0x66, 0xb5, 0x5a,
0xd6, 0x51, 0x2c, 0x2b, 0x74, 0xef, 0x56, 0x74, 0x77, 0x9e, 0xc3, 0x5e, 0x83, 0x7a, 0x19, 0x79,
0x04, 0xfd, 0x54, 0x4e, 0x8b, 0x06, 0x4e, 0x8b, 0xfb, 0xcd, 0x1d, 0x02, 0x87, 0xc6, 0x1c, 0xea,
0x7c, 0xc5, 0xa3, 0x7e, 0xa5, 0x40, 0xa6, 0xf3, 0xf3, 0x78, 0x0d, 0xe2, 0xfc, 0x61, 0xc1, 0xfb,
0x2e, 0x4d, 0x54, 0xf2, 0x89, 0x12, 0x85, 0x37, 0x95, 0xd6, 0x19, 0x8a, 0x75, 0x6f, 0xef, 0xe4,
0x5f, 0x96, 0xfe, 0x0d, 0xa5, 0xf4, 0x37, 0xf8, 0x74, 0xd0, 0xcc, 0x20, 0x6d, 0xfa, 0x85, 0xda,
0xf4, 0x5b, 0xff, 0xba, 0x18, 0xae, 0xfa, 0x75, 0xe1, 0x4c, 0xe0, 0x9d, 0xa6, 0x90, 0x67, 0x79,
0x6b, 0xaa, 0x28, 0x92, 0x77, 0x8f, 0x9a, 0xdc, 0xf9, 0x1e, 0x0e, 0x6e, 0x09, 0x7a, 0x46, 0x3e,
0xe7, 0xdc, 0x3d, 0x8f, 0x73, 0x2e, 0x3a, 0x52, 0xaf, 0x5b, 0xce, 0xb8, 0xe2, 0x80, 0x73, 0x06,
0xb6, 0xae, 0xde, 0xe9, 0x52, 0x66, 0x73, 0x1b, 0x97, 0x8a, 0x4c, 0x31, 0xab, 0x99, 0xf2, 0x0a,
0xee, 0xd7, 0x6f, 0xc2, 0xd8, 0xe5, 0x19, 0x6a, 0x54, 0x32, 0xb4, 0xbc, 0xdb, 0x6c, 0xbe, 0xdb,
0xaa, 0xde, 0xfd, 0x21, 0xec, 0xea, 0xb6, 0x4c, 0x9f, 0x64, 0x64, 0x07, 0xac, 0xe9, 0x93, 0xdc,
0x6b, 0xfc, 0xa7, 0xf3, 0x9b, 0xc1, 0x3d, 0x75, 0xd5, 0x90, 0x84, 0x52, 0x97, 0xff, 0x56, 0x57,
0x4a, 0xad, 0xad, 0x66, 0xad, 0x3b, 0x55, 0xad, 0x6f, 0xe0, 0xb0, 0x4d, 0x17, 0xe9, 0xe1, 0xd5,
0xb5, 0x59, 0xcf, 0x5f, 0x67, 0xf0, 0xae, 0xee, 0xaf, 0xbc, 0x70, 0x3d, 0xd0, 0x0b, 0x57, 0x23,
0x89, 0x8b, 0x8a, 0xf5, 0x63, 0x3d, 0xaa, 0x6b, 0x57, 0xe8, 0xdb, 0xe6, 0x85, 0xa7, 0xfc, 0xfe,
0x26, 0x4d, 0xc9, 0xc7, 0xd0, 0x13, 0x28, 0x39, 0xed, 0x37, 0xea, 0x29, 0x21, 0xce, 0x1b, 0xb3,
0x7e, 0xcf, 0x24, 0x9e, 0x9f, 0x87, 0x17, 0x6f, 0xc5, 0x58, 0x5a, 0xa9, 0x4e, 0xbd, 0x7a, 0x75,
0xd2, 0x06, 0xd7, 0x7e, 0x7d, 0x70, 0x7d, 0xc0, 0x8b, 0x90, 0xea, 0x1d, 0xf1, 0x19, 0x56, 0x4c,
0x3d, 0x06, 0x9a, 0x20, 0x16, 0xb3, 0x1e, 0xfe, 0xc3, 0xe9, 0xe1, 0x3f, 0x01, 0x00, 0x00, 0xff,
0xff, 0x18, 0xd7, 0xbc, 0xeb, 0x87, 0x12, 0x00, 0x00,
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment