Commit 1a2863b7 authored by pengjun's avatar pengjun

#627 add preIndex & preStatus to collateralize create

parent b975d224
...@@ -121,9 +121,11 @@ func (action *Action) GetCreateReceiptLog(collateralize *pty.Collateralize) *typ ...@@ -121,9 +121,11 @@ func (action *Action) GetCreateReceiptLog(collateralize *pty.Collateralize) *typ
c := &pty.ReceiptCollateralize{} c := &pty.ReceiptCollateralize{}
c.CollateralizeId = collateralize.CollateralizeId c.CollateralizeId = collateralize.CollateralizeId
c.PreStatus = collateralize.PreStatus
c.Status = collateralize.Status c.Status = collateralize.Status
c.CreateAddr = action.fromaddr c.CreateAddr = action.fromaddr
c.Index = collateralize.Index c.Index = collateralize.Index
c.PreIndex = collateralize.PreIndex
log.Log = types.Encode(c) log.Log = types.Encode(c)
...@@ -205,14 +207,14 @@ func (action *Action) GetFeedReceiptLog(collateralize *pty.Collateralize, record ...@@ -205,14 +207,14 @@ func (action *Action) GetFeedReceiptLog(collateralize *pty.Collateralize, record
} }
// GetCloseReceiptLog generate logs for Collateralize close action // GetCloseReceiptLog generate logs for Collateralize close action
func (action *Action) GetCloseReceiptLog(collateralize *pty.Collateralize) *types.ReceiptLog { func (action *Action) GetRetrieveReceiptLog(collateralize *pty.Collateralize) *types.ReceiptLog {
log := &types.ReceiptLog{} log := &types.ReceiptLog{}
log.Ty = pty.TyLogCollateralizeRetrieve log.Ty = pty.TyLogCollateralizeRetrieve
c := &pty.ReceiptCollateralize{} c := &pty.ReceiptCollateralize{}
c.CollateralizeId = collateralize.CollateralizeId c.CollateralizeId = collateralize.CollateralizeId
c.Status = collateralize.Status c.Status = collateralize.Status
c.PreStatus = pty.CollateralizeStatusCreated c.PreStatus = collateralize.PreStatus
c.CreateAddr = action.fromaddr c.CreateAddr = action.fromaddr
c.PreIndex = collateralize.PreIndex c.PreIndex = collateralize.PreIndex
c.Index = collateralize.Index c.Index = collateralize.Index
...@@ -462,6 +464,9 @@ func (action *Action) CollateralizeCreate(create *pty.CollateralizeCreate) (*typ ...@@ -462,6 +464,9 @@ func (action *Action) CollateralizeCreate(create *pty.CollateralizeCreate) (*typ
coll.Collateralize = *collateralize coll.Collateralize = *collateralize
coll.TotalBalance += create.TotalBalance coll.TotalBalance += create.TotalBalance
coll.Balance += create.TotalBalance coll.Balance += create.TotalBalance
coll.PreIndex = coll.Index
coll.PreStatus = coll.Status
coll.Index = action.GetIndex()
} }
clog.Debug("CollateralizeCreate created", "CollateralizeID", collateralizeID, "TotalBalance", create.TotalBalance) clog.Debug("CollateralizeCreate created", "CollateralizeID", collateralizeID, "TotalBalance", create.TotalBalance)
...@@ -1146,7 +1151,7 @@ func (action *Action) CollateralizeRetrieve(retrieve *pty.CollateralizeRetrieve) ...@@ -1146,7 +1151,7 @@ func (action *Action) CollateralizeRetrieve(retrieve *pty.CollateralizeRetrieve)
// 收回金额不能大于待放出金额 // 收回金额不能大于待放出金额
if retrieve.Balance > collateralize.Balance { if retrieve.Balance > collateralize.Balance {
clog.Error("CollateralizeRetrieve", "CollateralizeId", retrieve.CollateralizeId, "error", "balance error", "retrieve balance", retrieve.Balance, "available balance", collateralize.Balance) clog.Error("CollateralizeRetrieve", "CollateralizeId", retrieve.CollateralizeId, "error", "balance error", "retrieve balance", retrieve.Balance, "available balance", collateralize.Balance)
return nil, pty.ErrPermissionDeny return nil, types.ErrAmount
} }
// 解冻ccny // 解冻ccny
...@@ -1163,15 +1168,16 @@ func (action *Action) CollateralizeRetrieve(retrieve *pty.CollateralizeRetrieve) ...@@ -1163,15 +1168,16 @@ func (action *Action) CollateralizeRetrieve(retrieve *pty.CollateralizeRetrieve)
coll := &CollateralizeDB{*collateralize} coll := &CollateralizeDB{*collateralize}
coll.TotalBalance -= retrieve.Balance coll.TotalBalance -= retrieve.Balance
coll.Balance -= retrieve.Balance coll.Balance -= retrieve.Balance
coll.PreStatus = coll.Status
if coll.TotalBalance == 0 { if coll.TotalBalance == 0 {
coll.PreIndex = coll.Index
coll.Index = action.GetIndex()
coll.Status = pty.CollateralizeStatusClose coll.Status = pty.CollateralizeStatusClose
} }
coll.PreIndex = coll.Index
coll.Index = action.GetIndex()
coll.Save(action.db) coll.Save(action.db)
kv = append(kv, coll.GetKVSet()...) kv = append(kv, coll.GetKVSet()...)
receiptLog := action.GetCloseReceiptLog(&coll.Collateralize) receiptLog := action.GetRetrieveReceiptLog(&coll.Collateralize)
logs = append(logs, receiptLog) logs = append(logs, receiptLog)
return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil return &types.Receipt{Ty: types.ExecOk, KV: kv, Logs: logs}, nil
......
...@@ -24,6 +24,8 @@ func (c *Collateralize) execDelLocal(tx *types.Transaction, receiptData *types.R ...@@ -24,6 +24,8 @@ func (c *Collateralize) execDelLocal(tx *types.Transaction, receiptData *types.R
case pty.TyLogCollateralizeCreate: case pty.TyLogCollateralizeCreate:
set.KV = append(set.KV, c.deleteCollateralizeStatus(collateralizeLog.Status, collateralizeLog.Index)...) set.KV = append(set.KV, c.deleteCollateralizeStatus(collateralizeLog.Status, collateralizeLog.Index)...)
set.KV = append(set.KV, c.deleteCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.Index)...) set.KV = append(set.KV, c.deleteCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeStatus(collateralizeLog.PreStatus, collateralizeLog.CollateralizeId, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId, collateralizeLog.PreStatus, collateralizeLog.PreIndex)...)
break break
case pty.TyLogCollateralizeBorrow: case pty.TyLogCollateralizeBorrow:
set.KV = append(set.KV, c.deleteCollateralizeRecordStatus(collateralizeLog.Status, collateralizeLog.Index)...) set.KV = append(set.KV, c.deleteCollateralizeRecordStatus(collateralizeLog.Status, collateralizeLog.Index)...)
...@@ -58,13 +60,10 @@ func (c *Collateralize) execDelLocal(tx *types.Transaction, receiptData *types.R ...@@ -58,13 +60,10 @@ func (c *Collateralize) execDelLocal(tx *types.Transaction, receiptData *types.R
//} //}
break break
case pty.TyLogCollateralizeRetrieve: case pty.TyLogCollateralizeRetrieve:
if collateralizeLog.Status == pty.CollateralizeStatusClose { set.KV = append(set.KV, c.deleteCollateralizeStatus(collateralizeLog.Status, collateralizeLog.Index)...)
set.KV = append(set.KV, c.deleteCollateralizeStatus(collateralizeLog.Status, collateralizeLog.Index)...) set.KV = append(set.KV, c.deleteCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeStatus(pty.CollateralizeStatusCreated, collateralizeLog.CollateralizeId, set.KV = append(set.KV, c.addCollateralizeStatus(collateralizeLog.PreStatus, collateralizeLog.CollateralizeId, collateralizeLog.PreIndex)...)
collateralizeLog.PreIndex)...) set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId, collateralizeLog.PreStatus, collateralizeLog.PreIndex)...)
//set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId,
// collateralizeLog.PreStatus, collateralizeLog.PreIndex)...)
}
break break
} }
} }
......
...@@ -23,6 +23,8 @@ func (c *Collateralize) execLocal(tx *types.Transaction, receipt *types.ReceiptD ...@@ -23,6 +23,8 @@ func (c *Collateralize) execLocal(tx *types.Transaction, receipt *types.ReceiptD
switch item.Ty { switch item.Ty {
case pty.TyLogCollateralizeCreate: case pty.TyLogCollateralizeCreate:
set.KV = append(set.KV, c.deleteCollateralizeStatus(collateralizeLog.PreStatus, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.deleteCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.addCollateralizeStatus(collateralizeLog.Status, collateralizeLog.CollateralizeId, collateralizeLog.Index)...) set.KV = append(set.KV, c.addCollateralizeStatus(collateralizeLog.Status, collateralizeLog.CollateralizeId, collateralizeLog.Index)...)
set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId, collateralizeLog.Status, collateralizeLog.Index)...) set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId, collateralizeLog.Status, collateralizeLog.Index)...)
break break
...@@ -60,11 +62,10 @@ func (c *Collateralize) execLocal(tx *types.Transaction, receipt *types.ReceiptD ...@@ -60,11 +62,10 @@ func (c *Collateralize) execLocal(tx *types.Transaction, receipt *types.ReceiptD
//} //}
break break
case pty.TyLogCollateralizeRetrieve: case pty.TyLogCollateralizeRetrieve:
if collateralizeLog.Status == pty.CollateralizeStatusClose { set.KV = append(set.KV, c.deleteCollateralizeStatus(collateralizeLog.PreStatus, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.addCollateralizeStatus(collateralizeLog.Status, collateralizeLog.CollateralizeId, collateralizeLog.Index)...) set.KV = append(set.KV, c.deleteCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.PreIndex)...)
set.KV = append(set.KV, c.deleteCollateralizeStatus(collateralizeLog.PreStatus, collateralizeLog.PreIndex)...) set.KV = append(set.KV, c.addCollateralizeStatus(collateralizeLog.Status, collateralizeLog.CollateralizeId, collateralizeLog.Index)...)
//set.KV = append(set.KV, c.deleteCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.PreIndex)...) set.KV = append(set.KV, c.addCollateralizeAddr(collateralizeLog.CreateAddr, collateralizeLog.CollateralizeId, collateralizeLog.Status, collateralizeLog.Index)...)
}
break break
} }
} }
......
...@@ -20,6 +20,7 @@ message Collateralize { ...@@ -20,6 +20,7 @@ message Collateralize {
int64 index = 14;//当前索引 int64 index = 14;//当前索引
int64 preIndex = 15;//上一个索引 int64 preIndex = 15;//上一个索引
int64 collBalance = 16;//抵押bty int64 collBalance = 16;//抵押bty
int32 preStatus = 17;//上一个状态
} }
// 借出记录 // 借出记录
......
...@@ -38,6 +38,7 @@ type Collateralize struct { ...@@ -38,6 +38,7 @@ type Collateralize struct {
Index int64 `protobuf:"varint,14,opt,name=index,proto3" json:"index,omitempty"` Index int64 `protobuf:"varint,14,opt,name=index,proto3" json:"index,omitempty"`
PreIndex int64 `protobuf:"varint,15,opt,name=preIndex,proto3" json:"preIndex,omitempty"` PreIndex int64 `protobuf:"varint,15,opt,name=preIndex,proto3" json:"preIndex,omitempty"`
CollBalance int64 `protobuf:"varint,16,opt,name=collBalance,proto3" json:"collBalance,omitempty"` CollBalance int64 `protobuf:"varint,16,opt,name=collBalance,proto3" json:"collBalance,omitempty"`
PreStatus int32 `protobuf:"varint,17,opt,name=preStatus,proto3" json:"preStatus,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"` XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"` XXX_sizecache int32 `json:"-"`
...@@ -180,6 +181,13 @@ func (m *Collateralize) GetCollBalance() int64 { ...@@ -180,6 +181,13 @@ func (m *Collateralize) GetCollBalance() int64 {
return 0 return 0
} }
func (m *Collateralize) GetPreStatus() int32 {
if m != nil {
return m.PreStatus
}
return 0
}
// 借出记录 // 借出记录
type BorrowRecord struct { type BorrowRecord struct {
AccountAddr string `protobuf:"bytes,1,opt,name=accountAddr,proto3" json:"accountAddr,omitempty"` AccountAddr string `protobuf:"bytes,1,opt,name=accountAddr,proto3" json:"accountAddr,omitempty"`
...@@ -1969,85 +1977,85 @@ func init() { ...@@ -1969,85 +1977,85 @@ func init() {
func init() { proto.RegisterFile("collateralize.proto", fileDescriptor_a988fb4a61381972) } func init() { proto.RegisterFile("collateralize.proto", fileDescriptor_a988fb4a61381972) }
var fileDescriptor_a988fb4a61381972 = []byte{ var fileDescriptor_a988fb4a61381972 = []byte{
// 1266 bytes of a gzipped FileDescriptorProto // 1273 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0xdd, 0x6e, 0xdc, 0x44, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0xdd, 0x6e, 0xdc, 0x44,
0x14, 0xae, 0xed, 0xf5, 0x6e, 0xf6, 0x6c, 0x92, 0xa6, 0x93, 0x34, 0x98, 0x10, 0x45, 0xab, 0x11, 0x14, 0xae, 0xed, 0xf5, 0x6e, 0xf6, 0x6c, 0x92, 0xa6, 0x93, 0x34, 0x98, 0x10, 0x45, 0xab, 0x11,
0x12, 0x2b, 0xa0, 0x91, 0x48, 0x2b, 0x44, 0xe1, 0x86, 0x24, 0x6d, 0x95, 0x95, 0x8a, 0x54, 0x99, 0x12, 0x2b, 0xa0, 0x91, 0x48, 0x2b, 0x44, 0xe1, 0x86, 0x24, 0x6d, 0x95, 0x95, 0x8a, 0x54, 0x99,
0x82, 0x50, 0x11, 0x48, 0x5e, 0x7b, 0x12, 0x2c, 0x39, 0xb6, 0x63, 0xcf, 0x86, 0x2c, 0xf7, 0xf4, 0x82, 0x50, 0x11, 0x48, 0x5e, 0x7b, 0x12, 0x2c, 0x39, 0xb6, 0x63, 0xcf, 0x86, 0x2c, 0xf7, 0xf4,
0x02, 0xf1, 0x0a, 0x5c, 0x72, 0xcb, 0x33, 0xf1, 0x06, 0x5c, 0xf0, 0x02, 0x68, 0x7e, 0xfc, 0x33, 0x02, 0x71, 0xc3, 0x03, 0x70, 0xc9, 0x2d, 0xcf, 0xc4, 0x1b, 0xf0, 0x0a, 0x68, 0x7e, 0xfc, 0x33,
0x63, 0x3b, 0xda, 0x05, 0x6e, 0xe0, 0x26, 0xda, 0x39, 0xf3, 0xcd, 0xcc, 0x37, 0xe7, 0x7c, 0x73, 0x63, 0x3b, 0xda, 0x05, 0x6e, 0xe0, 0x26, 0xda, 0x39, 0xf3, 0xcd, 0x99, 0xf3, 0xf3, 0xcd, 0x39,
0xce, 0x71, 0x60, 0xdb, 0x4f, 0xa2, 0xc8, 0xa3, 0x24, 0xf3, 0xa2, 0xf0, 0x07, 0x72, 0x98, 0x66, 0xc7, 0x81, 0x6d, 0x3f, 0x89, 0x22, 0x8f, 0x92, 0xcc, 0x8b, 0xc2, 0x1f, 0xc8, 0x61, 0x9a, 0x25,
0x09, 0x4d, 0x90, 0x4d, 0x17, 0x29, 0xc9, 0xf1, 0x9f, 0x3d, 0xd8, 0x38, 0xad, 0x4f, 0xa3, 0x09, 0x34, 0x41, 0x36, 0x5d, 0xa4, 0x24, 0xc7, 0xbf, 0xd8, 0xb0, 0x71, 0x5a, 0xdf, 0x46, 0x13, 0xb8,
0xdc, 0x55, 0xf0, 0xd3, 0xc0, 0x31, 0xc6, 0xc6, 0x64, 0xe8, 0xea, 0x66, 0x84, 0x61, 0x9d, 0x26, 0xab, 0xe0, 0xa7, 0x81, 0x63, 0x8c, 0x8d, 0xc9, 0xd0, 0xd5, 0xc5, 0x08, 0xc3, 0x3a, 0x4d, 0xa8,
0xd4, 0x8b, 0x4e, 0xbc, 0xc8, 0x8b, 0x7d, 0xe2, 0x98, 0x63, 0x63, 0x62, 0xb9, 0x8a, 0x0d, 0x8d, 0x17, 0x9d, 0x78, 0x91, 0x17, 0xfb, 0xc4, 0x31, 0xc7, 0xc6, 0xc4, 0x72, 0x15, 0x19, 0x1a, 0xc3,
0x61, 0x14, 0x90, 0x19, 0x3d, 0x25, 0x61, 0x14, 0xc6, 0x17, 0x8e, 0xc5, 0x21, 0x75, 0x13, 0x7a, 0x28, 0x20, 0x33, 0x7a, 0x4a, 0xc2, 0x28, 0x8c, 0x2f, 0x1c, 0x8b, 0x43, 0xea, 0x22, 0xf4, 0x2e,
0x17, 0xb6, 0xa2, 0xf0, 0x6a, 0x1e, 0x06, 0x1e, 0x0d, 0x93, 0xd8, 0x65, 0x7f, 0x9d, 0xde, 0xd8, 0x6c, 0x45, 0xe1, 0xd5, 0x3c, 0x0c, 0x3c, 0x1a, 0x26, 0xb1, 0xcb, 0xfe, 0x3a, 0xbd, 0xb1, 0x31,
0x98, 0x18, 0x6e, 0xc3, 0x8e, 0xde, 0x87, 0x7b, 0x39, 0xf5, 0x66, 0x61, 0x14, 0xd2, 0xc5, 0x33, 0x31, 0xdc, 0x86, 0x1c, 0xbd, 0x0f, 0xf7, 0x72, 0xea, 0xcd, 0xc2, 0x28, 0xa4, 0x8b, 0x67, 0x84,
0x42, 0x04, 0xd8, 0xe6, 0xe0, 0xe6, 0x04, 0x3a, 0x00, 0xf0, 0x33, 0xe2, 0x51, 0x72, 0x1c, 0x04, 0x08, 0xb0, 0xcd, 0xc1, 0xcd, 0x0d, 0x74, 0x00, 0xe0, 0x67, 0xc4, 0xa3, 0xe4, 0x38, 0x08, 0x32,
0x99, 0xd3, 0xe7, 0x97, 0xa8, 0x59, 0x90, 0x03, 0x83, 0x99, 0xa4, 0x3e, 0xe0, 0xbc, 0x8a, 0x21, 0xa7, 0xcf, 0x9d, 0xa8, 0x49, 0x90, 0x03, 0x83, 0x99, 0x34, 0x7d, 0xc0, 0xed, 0x2a, 0x96, 0xe8,
0x7a, 0x0c, 0x1b, 0xb3, 0x24, 0xcb, 0x92, 0xef, 0x5d, 0xe2, 0x27, 0x59, 0x90, 0x3b, 0x6b, 0x63, 0x31, 0x6c, 0xcc, 0x92, 0x2c, 0x4b, 0xbe, 0x77, 0x89, 0x9f, 0x64, 0x41, 0xee, 0xac, 0x8d, 0xad,
0x6b, 0x32, 0x3a, 0xda, 0x3e, 0xe4, 0x4e, 0x3b, 0x3c, 0xa9, 0xcd, 0xb9, 0x2a, 0x12, 0x7d, 0x02, 0xc9, 0xe8, 0x68, 0xfb, 0x90, 0x07, 0xed, 0xf0, 0xa4, 0xb6, 0xe7, 0xaa, 0x48, 0xf4, 0x09, 0x6c,
0x9b, 0xd3, 0xf8, 0xda, 0x8b, 0xc2, 0xa0, 0x58, 0x3b, 0xec, 0x5e, 0xab, 0x41, 0xd1, 0x2e, 0xf4, 0x4e, 0xe3, 0x6b, 0x2f, 0x0a, 0x83, 0xe2, 0xec, 0xb0, 0xfb, 0xac, 0x06, 0x45, 0xbb, 0xd0, 0xcf,
0x73, 0xea, 0xd1, 0x79, 0xee, 0xc0, 0xd8, 0x98, 0xd8, 0xae, 0x1c, 0xa1, 0x0f, 0x61, 0x97, 0x79, 0xa9, 0x47, 0xe7, 0xb9, 0x03, 0x63, 0x63, 0x62, 0xbb, 0x72, 0x85, 0x3e, 0x84, 0x5d, 0x16, 0xf9,
0x3e, 0xa7, 0xcf, 0x2b, 0x8f, 0xbc, 0xc8, 0x42, 0x9f, 0x38, 0x23, 0x7e, 0xf9, 0x8e, 0x59, 0xb6, 0x9c, 0x3e, 0xaf, 0x22, 0xf2, 0x22, 0x0b, 0x7d, 0xe2, 0x8c, 0xb8, 0xf3, 0x1d, 0xbb, 0x4c, 0x5f,
0x5f, 0x4a, 0xb2, 0x30, 0x09, 0x9c, 0x75, 0x7e, 0x41, 0x39, 0xe2, 0x3e, 0xe7, 0x2b, 0x9e, 0xde, 0x4a, 0xb2, 0x30, 0x09, 0x9c, 0x75, 0xee, 0xa0, 0x5c, 0xf1, 0x98, 0xf3, 0x13, 0x4f, 0x6f, 0xd2,
0xa4, 0x61, 0x46, 0x5e, 0x86, 0x97, 0xc4, 0xd9, 0xe0, 0x88, 0x86, 0x1d, 0xed, 0x80, 0x1d, 0xc6, 0x30, 0x23, 0x2f, 0xc3, 0x4b, 0xe2, 0x6c, 0x70, 0x44, 0x43, 0x8e, 0x76, 0xc0, 0x0e, 0xe3, 0x80,
0x01, 0xb9, 0x71, 0x36, 0x39, 0x40, 0x0c, 0xd0, 0x1e, 0xac, 0xa5, 0x19, 0x99, 0xf2, 0x89, 0xbb, 0xdc, 0x38, 0x9b, 0x1c, 0x20, 0x16, 0x68, 0x0f, 0xd6, 0xd2, 0x8c, 0x4c, 0xf9, 0xc6, 0x5d, 0xbe,
0x7c, 0xa2, 0x1c, 0xb3, 0x98, 0x33, 0xa9, 0x14, 0xb2, 0xd8, 0x12, 0x31, 0xaf, 0x99, 0xf0, 0xef, 0x51, 0xae, 0x59, 0xce, 0x19, 0x55, 0x0a, 0x5a, 0x6c, 0x89, 0x9c, 0xd7, 0x44, 0x68, 0x1f, 0x86,
0x16, 0xac, 0xd7, 0x1d, 0xc1, 0x96, 0x78, 0xbe, 0x9f, 0xcc, 0x63, 0xca, 0x63, 0x25, 0x04, 0x57, 0x69, 0x46, 0x3e, 0x17, 0xae, 0xde, 0xe3, 0xae, 0x56, 0x02, 0xfc, 0x87, 0x05, 0xeb, 0xf5, 0x30,
0x37, 0xa1, 0x7d, 0x18, 0xe6, 0xd4, 0xcb, 0x28, 0xe7, 0x2a, 0x94, 0x56, 0x19, 0x54, 0xd1, 0x7e, 0x31, 0x85, 0x9e, 0xef, 0x27, 0xf3, 0x98, 0xf2, 0x4c, 0x0a, 0x3a, 0xd6, 0x45, 0x4c, 0x61, 0x4e,
0xe9, 0x45, 0x73, 0x22, 0xa5, 0xa6, 0x9b, 0x55, 0xa4, 0xf0, 0xa1, 0x50, 0x9b, 0x6e, 0x66, 0x27, 0xbd, 0x8c, 0x72, 0x4f, 0x04, 0x0f, 0x2b, 0x81, 0x4a, 0xe9, 0x2f, 0xbd, 0x68, 0x4e, 0x24, 0x11,
0x32, 0x9d, 0x8a, 0xdd, 0x6c, 0x71, 0x62, 0x69, 0xd0, 0x64, 0x2b, 0x36, 0xea, 0x37, 0x64, 0x5b, 0x75, 0xb1, 0x8a, 0x14, 0x11, 0x16, 0x5c, 0xd4, 0xc5, 0xec, 0x46, 0xc6, 0x62, 0xa1, 0xcd, 0x16,
0x86, 0x41, 0x86, 0x75, 0xa0, 0x84, 0xf5, 0x6d, 0xd8, 0x28, 0xb0, 0x22, 0x06, 0x6b, 0xfc, 0x14, 0x37, 0x96, 0x02, 0x8d, 0xd4, 0x42, 0x51, 0xbf, 0x41, 0xea, 0x32, 0x49, 0x32, 0xe9, 0x03, 0x25,
0xd5, 0xc8, 0x64, 0x4c, 0xaa, 0x30, 0x0d, 0x39, 0xa4, 0x66, 0x61, 0x3c, 0xd3, 0x8c, 0x7c, 0x5e, 0xe9, 0x6f, 0xc3, 0x46, 0x81, 0x15, 0x19, 0x5a, 0xe3, 0xb7, 0xa8, 0x42, 0x46, 0x72, 0x52, 0x25,
0xd7, 0x4d, 0x65, 0x60, 0x81, 0xca, 0xb8, 0x8f, 0xa7, 0x01, 0x17, 0xcb, 0xd0, 0x2d, 0xc7, 0x6d, 0x71, 0xc8, 0x21, 0x35, 0x89, 0x1a, 0x6a, 0xd0, 0x42, 0xcd, 0xd2, 0x98, 0xf1, 0x18, 0x4f, 0x03,
0x4f, 0x7d, 0xbd, 0xfd, 0xa9, 0x97, 0x22, 0xd8, 0xe8, 0x12, 0xc1, 0xa6, 0x2a, 0x02, 0xfc, 0xda, 0x4e, 0xa5, 0xa1, 0x5b, 0xae, 0xdb, 0x0a, 0xc1, 0x7a, 0x7b, 0x21, 0x28, 0x29, 0xb2, 0xd1, 0x45,
0x80, 0xad, 0xe3, 0x3c, 0x27, 0x94, 0xbb, 0x40, 0x86, 0xf9, 0x00, 0x40, 0x1c, 0xce, 0xaf, 0x62, 0x91, 0x4d, 0x95, 0x22, 0xf8, 0xb5, 0x01, 0x5b, 0xc7, 0x79, 0x4e, 0x28, 0x0f, 0x81, 0x4c, 0xf3,
0x88, 0xab, 0x54, 0x16, 0xb6, 0xe1, 0x8c, 0x2e, 0x84, 0x33, 0x4d, 0xee, 0xcc, 0x72, 0x2c, 0xe6, 0x01, 0x80, 0xb8, 0x9c, 0xbb, 0x62, 0x08, 0x57, 0x2a, 0x09, 0x53, 0x38, 0xa3, 0x0b, 0x11, 0x4c,
0x7c, 0x31, 0x67, 0x15, 0x73, 0x7e, 0x39, 0x47, 0xe8, 0x77, 0xf5, 0x68, 0x96, 0x63, 0xfc, 0xab, 0x93, 0x07, 0xb3, 0x5c, 0x8b, 0x3d, 0x5f, 0xec, 0x59, 0xc5, 0x9e, 0x5f, 0xee, 0x11, 0xfa, 0x5d,
0x05, 0xdb, 0x4a, 0x86, 0x3b, 0xf6, 0x59, 0x64, 0xd0, 0x23, 0xe8, 0x8b, 0x5c, 0xc0, 0x79, 0x8c, 0x3d, 0x9b, 0xe5, 0x1a, 0xff, 0x66, 0xc1, 0xb6, 0x52, 0xff, 0x8e, 0x7d, 0x96, 0x19, 0xf4, 0x08,
0x8e, 0xf6, 0xe4, 0x03, 0x55, 0xb0, 0xa7, 0x1c, 0x71, 0x76, 0xc7, 0x95, 0x58, 0xb6, 0x4a, 0xbc, 0xfa, 0xa2, 0x52, 0x70, 0x3b, 0x46, 0x47, 0x7b, 0xf2, 0xf9, 0x2a, 0xd8, 0x53, 0x8e, 0x38, 0xbb,
0x77, 0xce, 0xaf, 0x63, 0x95, 0x90, 0x36, 0x5b, 0x25, 0xb0, 0xe8, 0x03, 0xb0, 0x33, 0x92, 0x7a, 0xe3, 0x4a, 0x2c, 0x3b, 0x25, 0xaa, 0x01, 0xb7, 0xaf, 0xe3, 0x94, 0xa0, 0x36, 0x3b, 0x25, 0xb0,
0x0b, 0x4e, 0x7c, 0x74, 0xf4, 0x66, 0xdb, 0x22, 0x97, 0x01, 0xce, 0xee, 0xb8, 0x02, 0xc9, 0x0e, 0xe8, 0x03, 0xb0, 0x33, 0x92, 0x7a, 0x0b, 0x6e, 0xf8, 0xe8, 0xe8, 0xcd, 0xb6, 0x43, 0x2e, 0x03,
0xf2, 0xd2, 0x94, 0xc4, 0x01, 0xbf, 0x50, 0xc7, 0x41, 0xc7, 0x1c, 0xc1, 0x0e, 0x12, 0x58, 0x74, 0x9c, 0xdd, 0x71, 0x05, 0x92, 0x5d, 0xe4, 0xa5, 0x29, 0x89, 0x03, 0xee, 0x50, 0xc7, 0x45, 0xc7,
0x08, 0xbd, 0x73, 0x42, 0x02, 0x2e, 0xd7, 0xd1, 0x91, 0xd3, 0xb6, 0xe6, 0x19, 0x21, 0x6c, 0x05, 0x1c, 0xc1, 0x2e, 0x12, 0x58, 0x74, 0x08, 0xbd, 0x73, 0x42, 0x02, 0x4e, 0xd7, 0xd1, 0x91, 0xd3,
0xc7, 0xa1, 0x8f, 0x99, 0x3a, 0x68, 0x16, 0x92, 0x6b, 0xa1, 0xde, 0xd1, 0xd1, 0x7e, 0x3b, 0x37, 0x76, 0xe6, 0x19, 0x21, 0xec, 0x04, 0xc7, 0xa1, 0x8f, 0x19, 0x3b, 0x68, 0x16, 0x92, 0x6b, 0xc1,
0x81, 0x39, 0xbb, 0xe3, 0x96, 0x78, 0xc6, 0xf0, 0xd2, 0x8b, 0xbd, 0x0b, 0x91, 0x3d, 0x3b, 0x18, 0xde, 0xd1, 0xd1, 0x7e, 0xbb, 0x6d, 0x02, 0x73, 0x76, 0xc7, 0x2d, 0xf1, 0xcc, 0xc2, 0x4b, 0x2f,
0x7e, 0xc6, 0x11, 0x8c, 0xa1, 0xc0, 0xa2, 0x4d, 0x30, 0xe9, 0x42, 0xca, 0xd4, 0xa4, 0x8b, 0x93, 0xf6, 0x2e, 0x44, 0x6d, 0xed, 0xb0, 0xf0, 0x33, 0x8e, 0x60, 0x16, 0x0a, 0x2c, 0xda, 0x04, 0x93,
0x01, 0xd8, 0xd7, 0xec, 0x41, 0xe1, 0x3f, 0x0c, 0x2d, 0x4e, 0x62, 0xa9, 0x5e, 0x41, 0x8c, 0xe5, 0x2e, 0x24, 0x4d, 0x4d, 0xba, 0x38, 0x19, 0x80, 0x7d, 0xcd, 0x1e, 0x14, 0xfe, 0xd3, 0xd0, 0xf2,
0x2a, 0x88, 0xb9, 0x4a, 0x05, 0xb1, 0xba, 0x2a, 0x48, 0x95, 0x3f, 0x7b, 0x4a, 0xfe, 0xd4, 0x2b, 0x24, 0x8e, 0xea, 0xfd, 0xc5, 0x58, 0xae, 0xbf, 0x98, 0xab, 0xf4, 0x17, 0xab, 0xab, 0xbf, 0x54,
0x9f, 0xdd, 0x5e, 0xf9, 0xfc, 0x79, 0x96, 0x91, 0x58, 0xa4, 0xac, 0xbe, 0xcc, 0x82, 0x95, 0x09, 0xd5, 0xb5, 0xa7, 0x54, 0x57, 0xbd, 0x2f, 0xda, 0xed, 0x7d, 0xd1, 0x9f, 0x67, 0x19, 0x89, 0x45,
0x3f, 0x84, 0x7b, 0x6a, 0x34, 0x59, 0x9e, 0x3b, 0x00, 0xc8, 0xe7, 0x29, 0xc9, 0xd8, 0x20, 0x77, 0xc9, 0xea, 0xcb, 0x1a, 0x59, 0x89, 0xf0, 0x43, 0xb8, 0xa7, 0x66, 0x93, 0xd5, 0xb9, 0x03, 0x80,
0x8c, 0xb1, 0xc5, 0x8a, 0x56, 0x65, 0xc1, 0x8f, 0x35, 0x2f, 0x09, 0x85, 0x36, 0x18, 0x19, 0x4d, 0x7c, 0x9e, 0x92, 0x8c, 0x2d, 0x72, 0xc7, 0x18, 0x5b, 0xac, 0xa5, 0x55, 0x12, 0xfc, 0x58, 0x8b,
0x46, 0xf8, 0x0b, 0x6d, 0xa9, 0x90, 0xe9, 0x0a, 0x05, 0x7f, 0x47, 0xc6, 0x4a, 0xe6, 0x5f, 0x19, 0x92, 0x60, 0x68, 0xc3, 0x22, 0xa3, 0x69, 0x11, 0xfe, 0x42, 0x3b, 0x2a, 0x68, 0xba, 0xc2, 0x38,
0xb8, 0x57, 0x80, 0x9a, 0x42, 0x5e, 0x61, 0xd7, 0x7a, 0x86, 0x32, 0xd5, 0x0c, 0x85, 0x7f, 0xd4, 0xb0, 0x23, 0x73, 0x25, 0xeb, 0xaf, 0x4c, 0xdc, 0x2b, 0x40, 0x4d, 0x22, 0xaf, 0xa0, 0xb5, 0x5e,
0x45, 0x21, 0x14, 0xff, 0xef, 0xec, 0xbe, 0x7c, 0xd5, 0xc0, 0xdf, 0x68, 0xa1, 0x62, 0x8f, 0x88, 0xa1, 0x4c, 0xb5, 0x42, 0xe1, 0x1f, 0x75, 0x52, 0x08, 0xc6, 0xff, 0x3b, 0xda, 0x97, 0xef, 0x1a,
0x6d, 0xcd, 0x70, 0x2f, 0x17, 0xa9, 0xf0, 0xb7, 0xed, 0x96, 0x63, 0xe6, 0xaa, 0x54, 0xa6, 0x31, 0xf8, 0x1b, 0x2d, 0x55, 0xec, 0x11, 0x31, 0xd5, 0x0c, 0xf7, 0x72, 0x91, 0x8a, 0x78, 0xdb, 0x6e,
0x6b, 0x62, 0xb8, 0x62, 0xc0, 0xf4, 0x74, 0x9d, 0x44, 0xf3, 0x4b, 0x76, 0x8e, 0xc5, 0xf4, 0x24, 0xb9, 0x66, 0xa1, 0x4a, 0x65, 0x19, 0xb3, 0x26, 0x86, 0x2b, 0x16, 0x8c, 0x4f, 0xd7, 0x49, 0x34,
0x46, 0xf8, 0x6b, 0xb8, 0xdf, 0xfa, 0xde, 0x56, 0xb8, 0x67, 0xad, 0x99, 0x31, 0x95, 0x66, 0x06, 0xbf, 0x64, 0xf7, 0x58, 0x8c, 0x4f, 0x62, 0x85, 0xbf, 0x86, 0xfb, 0xad, 0xef, 0x6d, 0x05, 0x3f,
0xbf, 0x36, 0x61, 0xc7, 0x25, 0x3e, 0x09, 0x53, 0xfa, 0x77, 0x3b, 0x3d, 0xb5, 0x93, 0x32, 0x1b, 0x6b, 0xa3, 0x8e, 0xa9, 0x8c, 0x3a, 0xf8, 0xb5, 0x09, 0x3b, 0x2e, 0xf1, 0x49, 0x98, 0xd2, 0xbf,
0x9d, 0x94, 0x56, 0xbe, 0xad, 0x66, 0xf9, 0xae, 0x87, 0xa1, 0xa7, 0x85, 0xa1, 0x2a, 0x8f, 0xb6, 0x3b, 0x07, 0xaa, 0x73, 0x96, 0xd9, 0x98, 0xb3, 0xb4, 0xf6, 0x6d, 0x35, 0xdb, 0x77, 0x3d, 0x0d,
0x52, 0x1e, 0xf7, 0x61, 0xf8, 0xa2, 0x2c, 0x6c, 0x7d, 0x51, 0xd8, 0x4a, 0x43, 0x55, 0x92, 0x06, 0x3d, 0x2d, 0x0d, 0x55, 0x7b, 0xb4, 0x95, 0xf6, 0xb8, 0x0f, 0xc3, 0x17, 0x65, 0x63, 0xeb, 0x8b,
0x5d, 0x25, 0x69, 0x4d, 0x2b, 0x49, 0xbf, 0xe8, 0x62, 0x92, 0x55, 0x69, 0x79, 0x3f, 0x20, 0xe8, 0xc6, 0x56, 0x0a, 0xaa, 0x96, 0x34, 0xe8, 0x6a, 0x49, 0x6b, 0x5a, 0x4b, 0xfa, 0x55, 0x27, 0x93,
0x79, 0x95, 0x07, 0xf8, 0x6f, 0xe5, 0x66, 0x56, 0xe7, 0xcd, 0x7a, 0xca, 0xcd, 0x4a, 0xee, 0x76, 0xec, 0x4a, 0xcb, 0xc7, 0x01, 0x41, 0xcf, 0xab, 0x22, 0xc0, 0x7f, 0x2b, 0x9e, 0x59, 0x9d, 0x9e,
0x8d, 0x3b, 0x7e, 0x0e, 0x3b, 0x2d, 0xf4, 0x72, 0xf4, 0x08, 0x06, 0x99, 0xec, 0x25, 0x0d, 0xde, 0xf5, 0x14, 0xcf, 0x4a, 0xdb, 0xed, 0x9a, 0xed, 0xf8, 0x39, 0xec, 0xb4, 0x98, 0x97, 0xa3, 0x47,
0x4b, 0xee, 0xb5, 0xe7, 0x68, 0xde, 0x52, 0x16, 0x50, 0xfc, 0x29, 0x8b, 0xfa, 0x95, 0x02, 0x99, 0x30, 0xc8, 0xe4, 0xa4, 0x69, 0xf0, 0x49, 0x73, 0xaf, 0xbd, 0x46, 0xf3, 0x81, 0xb3, 0x80, 0xe2,
0xc6, 0xe7, 0xc9, 0xf2, 0xb7, 0xc5, 0xbf, 0x59, 0xf0, 0x96, 0x4b, 0x52, 0x35, 0xdd, 0x88, 0xfc, 0x4f, 0x59, 0xd6, 0xaf, 0x14, 0xc8, 0x34, 0x3e, 0x4f, 0x96, 0xf7, 0x16, 0xff, 0x6e, 0xc1, 0x5b,
0xc5, 0x77, 0xaa, 0x6e, 0x67, 0x28, 0xb7, 0xfb, 0xff, 0x7e, 0x17, 0x54, 0xf5, 0x60, 0x4d, 0xa9, 0x2e, 0x49, 0xd5, 0x72, 0x23, 0xea, 0x17, 0xd7, 0x54, 0x79, 0x67, 0x28, 0xde, 0xfd, 0x7f, 0xbf,
0x07, 0x2d, 0x3e, 0x1d, 0xb6, 0x2b, 0x48, 0xeb, 0x8d, 0xa1, 0xd1, 0x1b, 0x37, 0xbf, 0x3d, 0x46, 0x1a, 0xaa, 0x7e, 0xb0, 0xa6, 0xf4, 0x83, 0x96, 0x98, 0x0e, 0xdb, 0x19, 0xa4, 0x4d, 0xce, 0xd0,
0xcb, 0x7e, 0x7b, 0xe0, 0x53, 0xb8, 0xdf, 0x16, 0xf2, 0x9c, 0xf9, 0x52, 0x23, 0x52, 0x94, 0x96, 0x9c, 0x9c, 0x1b, 0x5f, 0x26, 0xa3, 0x65, 0xbf, 0x4c, 0xf0, 0x29, 0xdc, 0x6f, 0x4b, 0x79, 0xce,
0x86, 0x1d, 0x7f, 0x05, 0xfb, 0xb7, 0x04, 0x3d, 0x47, 0x1f, 0x31, 0xed, 0x9e, 0x27, 0x85, 0x16, 0x62, 0xa9, 0x19, 0x52, 0xb4, 0x96, 0x86, 0x1c, 0x7f, 0x05, 0xfb, 0xb7, 0x24, 0x3d, 0x47, 0x1f,
0xb1, 0xe4, 0x75, 0xcb, 0x1a, 0x57, 0x2c, 0xc0, 0x67, 0xe0, 0xe8, 0xf4, 0x4e, 0x16, 0xf2, 0x35, 0x31, 0xee, 0x9e, 0x27, 0x05, 0x17, 0xb1, 0xb4, 0xeb, 0x96, 0x33, 0xae, 0x38, 0x80, 0xcf, 0xc0,
0x77, 0x69, 0xa9, 0x7c, 0x29, 0x66, 0xfd, 0xa5, 0xbc, 0x82, 0xdd, 0xe6, 0x4e, 0x3c, 0x76, 0xc5, 0xd1, 0xcd, 0x3b, 0x59, 0xc8, 0xd7, 0xdc, 0xc5, 0xa5, 0xf2, 0xa5, 0x98, 0xf5, 0x97, 0xf2, 0x0a,
0x0b, 0x35, 0x6a, 0x2f, 0xb4, 0xda, 0xdb, 0x6c, 0xdf, 0xdb, 0xaa, 0xef, 0xfd, 0x0e, 0x6c, 0xeb, 0x76, 0x9b, 0x9a, 0x78, 0xee, 0x8a, 0x17, 0x6a, 0xd4, 0x5e, 0x68, 0xa5, 0xdb, 0x6c, 0xd7, 0x6d,
0x77, 0x99, 0x3e, 0xc9, 0xd1, 0x16, 0x58, 0xd3, 0x27, 0x85, 0xd7, 0xd8, 0x4f, 0xfc, 0x93, 0xc1, 0xd5, 0x75, 0xbf, 0x03, 0xdb, 0xba, 0x2f, 0xd3, 0x27, 0x39, 0xda, 0x02, 0x6b, 0xfa, 0xa4, 0x88,
0x3c, 0x75, 0xd5, 0xf2, 0x08, 0x25, 0x97, 0x7f, 0x96, 0x57, 0x2a, 0xd6, 0x56, 0x3b, 0xeb, 0x5e, 0x1a, 0xfb, 0x89, 0x7f, 0x32, 0x58, 0xa4, 0xae, 0x5a, 0x1e, 0xa1, 0xb4, 0xe5, 0x9f, 0xd5, 0x95,
0x9d, 0xf5, 0x0d, 0x1c, 0x74, 0x71, 0x91, 0x1e, 0x5e, 0x9e, 0xcd, 0x6a, 0xfe, 0x3a, 0x83, 0x37, 0xca, 0x6a, 0xab, 0xdd, 0xea, 0x5e, 0xdd, 0xea, 0x1b, 0x38, 0xe8, 0xb2, 0x45, 0x46, 0x78, 0x79,
0x74, 0x7f, 0x15, 0x89, 0xeb, 0x81, 0x9e, 0xb8, 0x5a, 0x45, 0x5c, 0x66, 0xac, 0x6f, 0x9b, 0x51, 0x6b, 0x56, 0x8b, 0xd7, 0x19, 0xbc, 0xa1, 0xc7, 0xab, 0x28, 0x5c, 0x0f, 0xf4, 0xc2, 0xd5, 0x4a,
0x5d, 0x39, 0x43, 0xdf, 0xd6, 0x4c, 0x3c, 0x65, 0xfb, 0xb7, 0x31, 0x45, 0xef, 0x41, 0x5f, 0xa0, 0xe2, 0xb2, 0x62, 0x7d, 0xdb, 0xcc, 0xea, 0xca, 0x15, 0xfa, 0xb6, 0x61, 0xe2, 0x29, 0xd3, 0xdf,
0xe4, 0xb7, 0x40, 0x2b, 0x4f, 0x09, 0xc1, 0x3f, 0x9b, 0xcd, 0x7d, 0x4e, 0x93, 0xf8, 0x3c, 0xbc, 0x66, 0x29, 0x7a, 0x0f, 0xfa, 0x02, 0x25, 0xbf, 0x05, 0x5a, 0xed, 0x94, 0x10, 0xfc, 0xb3, 0xd9,
0xf8, 0xcf, 0xf6, 0xaa, 0xb5, 0x8c, 0xd7, 0x57, 0x33, 0x9e, 0xd6, 0xc5, 0x0e, 0x9a, 0x5d, 0xec, 0xd4, 0x73, 0x9a, 0xc4, 0xe7, 0xe1, 0xc5, 0x7f, 0x76, 0x56, 0xad, 0x55, 0xbc, 0xbe, 0x5a, 0xf1,
0x03, 0x96, 0x74, 0x54, 0x6f, 0x88, 0x8f, 0xb2, 0xb2, 0x05, 0x32, 0x38, 0x65, 0x31, 0x98, 0xf5, 0xb4, 0x29, 0x76, 0xd0, 0x9c, 0x62, 0x1f, 0xb0, 0xa2, 0xa3, 0x46, 0x43, 0x7c, 0x94, 0x95, 0x23,
0xf9, 0xbf, 0x9f, 0x1e, 0xfe, 0x15, 0x00, 0x00, 0xff, 0xff, 0x44, 0xb2, 0x25, 0xe1, 0x95, 0x12, 0x90, 0xc1, 0x4d, 0x16, 0x8b, 0x59, 0x9f, 0xff, 0x73, 0xea, 0xe1, 0x5f, 0x01, 0x00, 0x00, 0xff,
0x00, 0x00, 0xff, 0x4f, 0x51, 0xb1, 0x22, 0xb3, 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