Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OdysseusProtocol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Odysseus
OdysseusProtocol
Commits
599be72f
Commit
599be72f
authored
Apr 16, 2024
by
vicotor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update protocol
parent
b244b62f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
157 additions
and
88 deletions
+157
-88
request_response.pb.go
gen/proto/go/nodemanager/v1/request_response.pb.go
+150
-88
request_response.proto
nodemanager/nodemanager/v1/request_response.proto
+7
-0
No files found.
gen/proto/go/nodemanager/v1/request_response.pb.go
View file @
599be72f
...
@@ -650,6 +650,8 @@ type RegisteMessage struct {
...
@@ -650,6 +650,8 @@ type RegisteMessage struct {
DeviceIp
string
`protobuf:"bytes,1,opt,name=device_ip,json=deviceIp,proto3" json:"device_ip,omitempty"`
DeviceIp
string
`protobuf:"bytes,1,opt,name=device_ip,json=deviceIp,proto3" json:"device_ip,omitempty"`
MinerPubkey
string
`protobuf:"bytes,2,opt,name=miner_pubkey,json=minerPubkey,proto3" json:"miner_pubkey,omitempty"`
MinerPubkey
string
`protobuf:"bytes,2,opt,name=miner_pubkey,json=minerPubkey,proto3" json:"miner_pubkey,omitempty"`
BenefitAddress
string
`protobuf:"bytes,3,opt,name=benefit_address,json=benefitAddress,proto3" json:"benefit_address,omitempty"`
BenefitAddress
string
`protobuf:"bytes,3,opt,name=benefit_address,json=benefitAddress,proto3" json:"benefit_address,omitempty"`
Timestamp
int64
`protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
DeviceSignature
[]
byte
`protobuf:"bytes,5,opt,name=device_signature,json=deviceSignature,proto3" json:"device_signature,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:"-"`
...
@@ -700,6 +702,20 @@ func (m *RegisteMessage) GetBenefitAddress() string {
...
@@ -700,6 +702,20 @@ func (m *RegisteMessage) GetBenefitAddress() string {
return
""
return
""
}
}
func
(
m
*
RegisteMessage
)
GetTimestamp
()
int64
{
if
m
!=
nil
{
return
m
.
Timestamp
}
return
0
}
func
(
m
*
RegisteMessage
)
GetDeviceSignature
()
[]
byte
{
if
m
!=
nil
{
return
m
.
DeviceSignature
}
return
nil
}
type
NodeInfoRequest
struct
{
type
NodeInfoRequest
struct
{
XXX_NoUnkeyedLiteral
struct
{}
`json:"-"`
XXX_NoUnkeyedLiteral
struct
{}
`json:"-"`
XXX_unrecognized
[]
byte
`json:"-"`
XXX_unrecognized
[]
byte
`json:"-"`
...
@@ -1050,6 +1066,10 @@ func (m *SubmitTaskResult) GetTaskExecuteError() string {
...
@@ -1050,6 +1066,10 @@ func (m *SubmitTaskResult) GetTaskExecuteError() string {
type
SubmitTaskAck
struct
{
type
SubmitTaskAck
struct
{
TaskId
string
`protobuf:"bytes,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
TaskId
string
`protobuf:"bytes,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
CanExecute
bool
`protobuf:"varint,2,opt,name=can_execute,json=canExecute,proto3" json:"can_execute,omitempty"`
BootUpTime
int64
`protobuf:"varint,3,opt,name=boot_up_time,json=bootUpTime,proto3" json:"boot_up_time,omitempty"`
QueueWaitTime
int64
`protobuf:"varint,4,opt,name=queue_wait_time,json=queueWaitTime,proto3" json:"queue_wait_time,omitempty"`
ExecuteTime
int64
`protobuf:"varint,5,opt,name=execute_time,json=executeTime,proto3" json:"execute_time,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:"-"`
...
@@ -1086,8 +1106,37 @@ func (m *SubmitTaskAck) GetTaskId() string {
...
@@ -1086,8 +1106,37 @@ func (m *SubmitTaskAck) GetTaskId() string {
return
""
return
""
}
}
func
(
m
*
SubmitTaskAck
)
GetCanExecute
()
bool
{
if
m
!=
nil
{
return
m
.
CanExecute
}
return
false
}
func
(
m
*
SubmitTaskAck
)
GetBootUpTime
()
int64
{
if
m
!=
nil
{
return
m
.
BootUpTime
}
return
0
}
func
(
m
*
SubmitTaskAck
)
GetQueueWaitTime
()
int64
{
if
m
!=
nil
{
return
m
.
QueueWaitTime
}
return
0
}
func
(
m
*
SubmitTaskAck
)
GetExecuteTime
()
int64
{
if
m
!=
nil
{
return
m
.
ExecuteTime
}
return
0
}
type
SubmitResourceMap
struct
{
type
SubmitResourceMap
struct
{
ResourceMap
[]
byte
`protobuf:"bytes,1,opt,name=resource_map,json=resourceMap,proto3" json:"resource_map,omitempty"`
ResourceMap
[]
byte
`protobuf:"bytes,1,opt,name=resource_map,json=resourceMap,proto3" json:"resource_map,omitempty"`
BootupMap
[]
byte
`protobuf:"bytes,2,opt,name=bootup_map,json=bootupMap,proto3" json:"bootup_map,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:"-"`
...
@@ -1124,6 +1173,13 @@ func (m *SubmitResourceMap) GetResourceMap() []byte {
...
@@ -1124,6 +1173,13 @@ func (m *SubmitResourceMap) GetResourceMap() []byte {
return
nil
return
nil
}
}
func
(
m
*
SubmitResourceMap
)
GetBootupMap
()
[]
byte
{
if
m
!=
nil
{
return
m
.
BootupMap
}
return
nil
}
type
ProofTaskResult
struct
{
type
ProofTaskResult
struct
{
TaskId
string
`protobuf:"bytes,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
TaskId
string
`protobuf:"bytes,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
Workload
uint64
`protobuf:"varint,2,opt,name=workload,proto3" json:"workload,omitempty"`
Workload
uint64
`protobuf:"varint,2,opt,name=workload,proto3" json:"workload,omitempty"`
...
@@ -1425,92 +1481,98 @@ func init() {
...
@@ -1425,92 +1481,98 @@ func init() {
}
}
var
fileDescriptor_810ae261dc8e2975
=
[]
byte
{
var
fileDescriptor_810ae261dc8e2975
=
[]
byte
{
// 1385 bytes of a gzipped FileDescriptorProto
// 1484 bytes of a gzipped FileDescriptorProto
0x1f
,
0x8b
,
0x08
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x02
,
0xff
,
0xb4
,
0x57
,
0x5d
,
0x6f
,
0x1b
,
0x45
,
0x1f
,
0x8b
,
0x08
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x02
,
0xff
,
0xb4
,
0x57
,
0x4b
,
0x6f
,
0xdb
,
0xc6
,
0x17
,
0xae
,
0xed
,
0x7c
,
0xd8
,
0xc7
,
0x89
,
0xd7
,
0x1e
,
0xe7
,
0xed
,
0x6b
,
0x52
,
0x4a
,
0xd3
,
0xad
,
0x16
,
0x8e
,
0x24
,
0x3f
,
0xa4
,
0x23
,
0x5b
,
0x8f
,
0xb1
,
0x6f
,
0xae
,
0xae
,
0x73
,
0x7d
,
0xe3
,
0x30
,
0x10
,
0x29
,
0x1f
,
0x76
,
0x1d
,
0x3e
,
0x84
,
0xda
,
0x0b
,
0xd4
,
0x34
,
0x6d
,
0x52
,
0x41
,
0x5a
,
0xb3
,
0xb8
,
0xad
,
0xd3
,
0x87
,
0x15
,
0xb9
,
0x2d
,
0x50
,
0x24
,
0x8b
,
0x22
,
0x8e
,
0x13
,
0x3b
,
0x68
,
0x9d
,
0x29
,
0xa5
,
0x42
,
0x15
,
0xd6
,
0x78
,
0x77
,
0x62
,
0xaf
,
0xdc
,
0xdd
,
0x59
,
0x76
,
0x66
,
0x03
,
0x16
,
0xb8
,
0x74
,
0x5e
,
0x28
,
0x82
,
0x12
,
0x23
,
0x72
,
0x2c
,
0x11
,
0x0e
,
0x39
,
0x0c
,
0x67
,
0xe8
,
0xd4
,
0xff
,
0x81
,
0x1f
,
0xc1
,
0x25
,
0xf7
,
0xdc
,
0x71
,
0x8f
,
0x84
,
0xc4
,
0x1d
,
0xbf
,
0x80
,
0x4b
,
0x7e
,
0xe8
,
0x7f
,
0xe8
,
0x8f
,
0xe8
,
0xb2
,
0xfb
,
0x76
,
0xd5
,
0x55
,
0x37
,
0x05
,
0x0a
,
0x74
,
0xd7
,
0x5f
,
0x05
,
0x9a
,
0x8f
,
0xf5
,
0xee
,
0xac
,
0xed
,
0xc0
,
0x0d
,
0x77
,
0xde
,
0x67
,
0x9e
,
0x39
,
0x33
,
0xe7
,
0xd0
,
0x65
,
0x7f
,
0x45
,
0x31
,
0x67
,
0x86
,
0x12
,
0x49
,
0x51
,
0x69
,
0x37
,
0xdd
,
0x89
,
0xdf
,
0x7c
,
0x9c
,
0xe7
,
0x9c
,
0x33
,
0x86
,
0x37
,
0x43
,
0xea
,
0x91
,
0x00
,
0x87
,
0x78
,
0x4c
,
0xe2
,
0xde
,
0x45
,
0x73
,
0xe6
,
0xbc
,
0xcf
,
0x11
,
0xfc
,
0x3f
,
0xe4
,
0x1e
,
0x0b
,
0x68
,
0x48
,
0x47
,
0x2c
,
0xee
,
0x9f
,
0xbf
,
0x17
,
0x93
,
0x6f
,
0x12
,
0xc2
,
0xf8
,
0x30
,
0x26
,
0x2c
,
0xa2
,
0x21
,
0x23
,
0xdd
,
0x28
,
0xa6
,
0x0f
,
0xfa
,
0x31
,
0x7b
,
0x95
,
0x30
,
0x21
,
0x9d
,
0x98
,
0x89
,
0x88
,
0x87
,
0x82
,
0xed
,
0x44
,
0x31
,
0x9c
,
0xa2
,
0x46
,
0x8e
,
0xd6
,
0xbd
,
0xe8
,
0xef
,
0x5a
,
0x23
,
0xcc
,
0x48
,
0x6f
,
0x4c
,
0xc7
,
0x54
,
0x97
,
0x9c
,
0xb4
,
0x32
,
0xb4
,
0x9d
,
0xf3
,
0xc1
,
0x46
,
0x7b
,
0x48
,
0x05
,
0xeb
,
0x8f
,
0xf8
,
0x88
,
0x11
,
0x76
,
0xaf
,
0x4a
,
0xe0
,
0xa2
,
0xdf
,
0xa3
,
0xde
,
0x8c
,
0x31
,
0x92
,
0x30
,
0x8d
,
0x5f
,
0x5f
,
0x6b
,
0xc2
,
0xc6
,
0x65
,
0x04
,
0xce
,
0x07
,
0x7d
,
0xee
,
0x5d
,
0x08
,
0xc1
,
0x12
,
0x61
,
0xf0
,
0xcd
,
0xb0
,
0xcf
,
0x68
,
0x12
,
0xbb
,
0xda
,
0xae
,
0xfd
,
0xeb
,
0x06
,
0x6c
,
0x7f
,
0x49
,
0xe3
,
0x29
,
0x89
,
0x19
,
0xf9
,
0x82
,
0x27
,
0xb1
,
0x6b
,
0xe4
,
0x5a
,
0x3f
,
0x2f
,
0xc1
,
0xea
,
0x33
,
0x1e
,
0x9f
,
0xb1
,
0x4f
,
0x09
,
0x63
,
0x78
,
0x4c
,
0x90
,
0x03
,
0x68
,
0x42
,
0x70
,
0xcc
,
0x47
,
0x04
,
0x67
,
0xb7
,
0xe8
,
0xf8
,
0x88
,
0x09
,
0x41
,
0x47
,
0x8c
,
0xd8
,
0x40
,
0xc6
,
0x8c
,
0xc6
,
0x72
,
0xc8
,
0xe8
,
0x54
,
0x8b
,
0x94
,
0xf6
,
0x4a
,
0xfb
,
0xf5
,
0x83
,
0x9b
,
0x5d
,
0xf3
,
0x1a
,
0xdd
,
0x93
,
0x94
,
0xe9
,
0x68
,
0xe2
,
0x5e
,
0x65
,
0xab
,
0xb2
,
0xdd
,
0xdc
,
0xbd
,
0xb6
,
0x93
,
0x57
,
0x63
,
0xe7
,
0x30
,
0x65
,
0xda
,
0x86
,
0xc9
,
0x15
,
0xa7
,
0x35
,
0x29
,
0x82
,
0x68
,
0x00
,
0x88
,
0x25
,
0xa3
,
0xc0
,
0xe7
,
0x43
,
0x8e
,
0xd9
,
0x78
,
0x78
,
0xc9
,
0xee
,
0x8e
,
0x8b
,
0x20
,
0x39
,
0x06
,
0x22
,
0x92
,
0x61
,
0xe0
,
0x4b
,
0x47
,
0x52
,
0x54
,
0x58
,
0x4d
,
0x5e
,
0xf1
,
0x4e
,
0x59
,
0xda
,
0xdc
,
0x2b
,
0xda
,
0x3c
,
0x93
,
0xcc
,
0x67
,
0x98
,
0x71
,
0xa6
,
0xa4
,
0x26
,
0x2f
,
0x65
,
0xaf
,
0x8a
,
0x32
,
0xb7
,
0x8a
,
0x32
,
0x4f
,
0x90
,
0xf9
,
0x98
,
0x4d
,
0x1d
,
0xc9
,
0x3b
,
0xb9
,
0xe2
,
0x34
,
0x59
,
0x01
,
0x43
,
0x1f
,
0xc3
,
0x06
,
0xe3
,
0x98
,
0x27
,
0x8a
,
0x33
,
0x1b
,
0x79
,
0x87
,
0x97
,
0xec
,
0x8e
,
0x28
,
0x60
,
0xe4
,
0x63
,
0x58
,
0x12
,
0x92
,
0xca
,
0xac
,
0x53
,
0x91
,
0x56
,
0xde
,
0x58
,
0xb0
,
0x22
,
0x57
,
0x73
,
0xd7
,
0xd2
,
0x7c
,
0x74
,
0x04
,
0x75
,
0x44
,
0xf4
,
0x6a
,
0x28
,
0xe5
,
0x7f
,
0x33
,
0x52
,
0xf0
,
0x34
,
0xa3
,
0x96
,
0xe1
,
0x93
,
0x7d
,
0x68
,
0x8f
,
0x5c
,
0xf8
,
0x2e
,
0x19
,
0xfa
,
0xe1
,
0x39
,
0xed
,
0xac
,
0x2d
,
0x77
,
0xec
,
0x48
,
0x52
,
0x1e
,
0x7a
,
0xec
,
0xdc
,
0x77
,
0x99
,
0xe3
,
0x87
,
0xa7
,
0xbc
,
0xb7
,
0x50
,
0x6e
,
0xd8
,
0x3e
,
0x52
,
0x1e
,
0x87
,
0xe7
,
0x54
,
0xc7
,
0xe5
,
0xe4
,
0x8a
,
0x03
,
0xde
,
0x1c
,
0x44
,
0x27
,
0xb0
,
0xa5
,
0xad
,
0x24
,
0x84
,
0xa7
,
0xdc
,
0xf8
,
0xe5
,
0xf0
,
0x92
,
0x0d
,
0xde
,
0x04
,
0x24
,
0x87
,
0xb0
,
0x62
,
0xa4
,
0x24
,
0x62
,
0xb5
,
0xb3
,
0x2e
,
0xcd
,
0xdc
,
0x5a
,
0x6e
,
0xe6
,
0x0b
,
0x41
,
0xc9
,
0x5d
,
0x45
,
0x5f
,
0x40
,
0xea
,
0xb4
,
0xb7
,
0x88
,
0x62
,
0xae
,
0x97
,
0x8b
,
0x79
,
0xa2
,
0x28
,
0x19
,
0x55
,
0x8c
,
0x02
,
0x08
,
0xc2
,
0xe8
,
0x31
,
0x58
,
0x63
,
0x4a
,
0xbd
,
0xd1
,
0x8c
,
0x0c
,
0x03
,
0x75
,
0x54
,
0x67
,
0x63
,
0xb9
,
0x93
,
0x07
,
0xd0
,
0x1e
,
0x71
,
0xee
,
0x0d
,
0x2f
,
0x98
,
0x13
,
0xe8
,
0xa7
,
0x7a
,
0x4b
,
0xe5
,
0x26
,
0x4b
,
0xc7
,
0x8a
,
0x96
,
0x5d
,
0xa8
,
0x31
,
0x36
,
0x10
,
0xf4
,
0x08
,
0xb6
,
0xd2
,
0xf4
,
0x0e
,
0x03
,
0x1d
,
0x68
,
0xda
,
0x54
,
0xa1
,
0xd6
,
0x28
,
0x87
,
0x90
,
0xfb
,
0xb0
,
0x92
,
0x86
,
0xd7
,
0x09
,
0x68
,
0x1c
,
0x75
,
0x36
,
0x97
,
0xfb
,
0xa6
,
0x02
,
0xec
,
0x68
,
0xe6
,
0x29
,
0x8e
,
0xc4
,
0x95
,
0xe2
,
0xec
,
0xd4
,
0x5b
,
0x2e
,
0xb7
,
0x4d
,
0x3b
,
0xd8
,
0x36
,
0xcc
,
0x23
,
0x1a
,
0x29
,
0x95
,
0xe2
,
0xe9
,
0x27
,
0x13
,
0x9d
,
0x41
,
0xfb
,
0x9c
,
0x70
,
0x77
,
0x32
,
0x64
,
0x1c
,
0x87
,
0x1e
,
0x8e
,
0x3d
,
0x99
,
0xb6
,
0x39
,
0x81
,
0xb5
,
0x53
,
0x26
,
0xdd
,
0xb1
,
0x23
,
0x24
,
0x0d
,
0x3d
,
0x1a
,
0x7b
,
0x18
,
0xb6
,
0x5e
,
0x4e
,
0x75
,
0xb9
,
0xb9
,
0x47
,
0x82
,
0x7a
,
0xa6
,
0x99
,
0x22
,
0x45
,
0x42
,
0x03
,
0xe7
,
0x45
,
0x50
,
0xbd
,
0x5c
,
0xdc
,
0x7d
,
0x45
,
0x3d
,
0x31
,
0x4c
,
0x15
,
0x22
,
0x95
,
0x03
,
0xa7
,
0x45
,
0x50
,
0xd9
,
0xf8
,
0x19
,
0x93
,
0xb1
,
0xcf
,
0x78
,
0xe6
,
0x67
,
0x6d
,
0xb9
,
0x9f
,
0x8e
,
0xa2
,
0xe5
,
0xfc
,
0x8c
,
0x19
,
0xb3
,
0x91
,
0x2f
,
0xe4
,
0xd4
,
0xce
,
0x46
,
0xb9
,
0x9d
,
0xb6
,
0xa6
,
0x65
,
0xec
,
0x8c
,
0x73
,
0x0d
,
0x04
,
0x7d
,
0x02
,
0x35
,
0xb1
,
0x45
,
0x25
,
0x10
,
0x96
,
0xab
,
0xe8
,
0x09
,
0xf5
,
0x64
,
0xa6
,
0x08
,
0xf9
,
0x04
,
0x1a
,
0xea
,
0x8a
,
0x0e
,
0x20
,
0x94
,
0x67
,
0xd1
,
0x43
,
0xee
,
0x61
,
0xa4
,
0x32
,
0x72
,
0x61
,
0xaf
,
0x86
,
0x1a
,
0x43
,
0xc7
,
0x60
,
0xe5
,
0xf5
,
0x88
,
0xdd
,
0x69
,
0xa7
,
0x2e
,
0xcd
,
0x6e
,
0xaf
,
0x87
,
0x06
,
0x23
,
0x07
,
0xd0
,
0xce
,
0xe6
,
0x23
,
0x75
,
0xcf
,
0x7a
,
0x4d
,
0x14
,
0xb3
,
0x5c
,
0x5f
,
0x2d
,
0xc6
,
0xfb
,
0xae
,
0x70
,
0x6c
,
0x9b
,
0xe5
,
0x81
,
0xc3
,
0x1a
,
0x6c
,
0x6a
,
0x67
,
0x39
,
0x3f
,
0x19
,
0xef
,
0xb8
,
0xca
,
0xb0
,
0x55
,
0x91
,
0x05
,
0xf6
,
0x1a
,
0xb0
,
0x6c
,
0x8c
,
0xb1
,
0xec
,
0x9f
,
0xd7
,
0xa0
,
0x71
,
0xaa
,
0x36
,
0xa6
,
0xf7
,
0x7c
,
0x0a
,
0xad
,
0x7c
,
0x29
,
0xc9
,
0xc2
,
0xbe
,
0x5f
,
0x80
,
0xd6
,
0x91
,
0xbe
,
0x98
,
0xea
,
0xf9
,
0x08
,
0xba
,
0xd9
,
0x52
,
0xc2
,
0xc2
,
0x36
,
0xd6
,
0x95
,
0xb4
,
0x77
,
0x49
,
0x25
,
0x49
,
0x9e
,
0x50
,
0xfd
,
0xa4
,
0x80
,
0xa1
,
0x53
,
0x68
,
0x45
,
0x95
,
0xb4
,
0xf5
,
0x86
,
0x4a
,
0x42
,
0x9e
,
0xca
,
0xfa
,
0x71
,
0x01
,
0x23
,
0x47
,
0xd0
,
0x8d
,
0x12
,
0x09
,
0x9b
,
0xa8
,
0x5b
,
0xa7
,
0x51
,
0x54
,
0x65
,
0x74
,
0xa3
,
0x68
,
0x70
,
0x90
,
0xb0
,
0x89
,
0xb8
,
0x31
,
0xd6
,
0x5a
,
0xa7
,
0x5e
,
0xd4
,
0x65
,
0x74
,
0xb5
,
0x28
,
0xf0
,
0x38
,
0x11
,
0x63
,
0xa5
,
0xe6
,
0x66
,
0x16
,
0x46
,
0x2b
,
0x32
,
0x21
,
0x69
,
0x2e
,
0xa6
,
0xf4
,
0xdc
,
0xa8
,
0xca
,
0xca
,
0x0a
,
0x73
,
0xd4
,
0x8d
,
0xed
,
0x28
,
0x0f
,
0xa1
,
0xb8
,
0x98
,
0xf3
,
0xd3
,
0x5c
,
0x55
,
0xd6
,
0xe6
,
0x88
,
0x53
,
0x82
,
0x68
,
0x14
,
0xa5
,
0x15
,
0x99
,
0x10
,
0x7a
,
0x04
,
0x0d
,
0x55
,
0x63
,
0x73
,
0x5f
,
0xd7
,
0x56
,
0xc4
,
0x5c
,
0x51
,
0xb6
,
0xa3
,
0x3c
,
0x44
,
0xee
,
0x43
,
0x4b
,
0xd7
,
0xd8
,
0xc4
,
0xd6
,
0x85
,
0x39
,
0x04
,
0x55
,
0xd7
,
0x66
,
0xea
,
0xe8
,
0x36
,
0xcb
,
0x03
,
0xe8
,
0x78
,
0x69
,
0x6d
,
0xd9
,
0x97
,
0xd6
,
0x4e
,
0x35
,
0xb5
,
0x99
,
0x1a
,
0xba
,
0x2a
,
0xb2
,
0x00
,
0x39
,
0x28
,
0xad
,
0x2d
,
0xeb
,
0x8d
,
0xb5
,
0x56
,
0x6a
,
0xea
,
0xbf
,
0x2a
,
0xad
,
0x53
,
0x68
,
0xcd
,
0x25
,
0x37
,
0x77
,
0x6f
,
0x73
,
0x79
,
0xa8
,
0x95
,
0x8a
,
0xfa
,
0xa7
,
0x4a
,
0xeb
,
0x08
,
0xba
,
0x93
,
0x94
,
0x9b
,
0x98
,
0xb7
,
0x5c
,
0xee
,
0xaa
,
0x32
,
0xe9
,
0xa5
,
0xb7
,
0xb2
,
0x42
,
0x13
,
0xca
,
0xeb
,
0x66
,
0x1f
,
0x1a
,
0xe6
,
0xe9
,
0xe8
,
0x2a
,
0x69
,
0xea
,
0xa5
,
0x5a
,
0xb5
,
0xc3
,
0x3c
,
0x94
,
0xcd
,
0x9b
,
0x6d
,
0x68
,
0xe5
,
0x5f
,
0x27
,
0x97
,
0x6c
,
0xc4
,
0x04
,
0x33
,
0x1a
,
0x4a
,
0xad
,
0xd4
,
0x1c
,
0xfd
,
0x65
,
0xdf
,
0x81
,
0x66
,
0x51
,
0x25
,
0x61
,
0x29
,
0x66
,
0x54
,
0xf0
,
0x10
,
0x73
,
0xa5
,
0x61
,
0x9b
,
0x2f
,
0xeb
,
0x26
,
0x74
,
0x8a
,
0x59
,
0xe8
,
0x75
,
0xa8
,
0x71
,
0x3f
,
0x20
,
0x8c
,
0xe3
,
0x20
,
0x92
,
0xf4
,
0x35
,
0x27
,
0x03
,
0xec
,
0x3e
,
0x42
,
0xfe
,
0x0b
,
0x0d
,
0xe9
,
0x07
,
0x4c
,
0x48
,
0x1a
,
0x44
,
0x48
,
0x5f
,
0xb0
,
0xa7
,
0x80
,
0x35
,
0xb4
,
0x16
,
0x3a
,
0xf4
,
0x3f
,
0x6c
,
0xb1
,
0x60
,
0xdb
,
0x48
,
0x8f
,
0xbd
,
0x03
,
0x68
,
0x31
,
0xd2
,
0x80
,
0xee
,
0x4c
,
0x87
,
0xfe
,
0x8b
,
0x2b
,
0x6d
,
0x58
,
0xcd
,
0x85
,
0xc7
,
0x5a
,
0x07
,
0x32
,
0xeb
,
0xf6
,
0x09
,
0xb4
,
0x97
,
0xf4
,
0x36
,
0xd4
,
0x87
,
0x75
,
0x95
,
0xb3
,
0xd2
,
0x5e
,
0x65
,
0xbf
,
0x7e
,
0x69
,
0xeb
,
0x10
,
0xd6
,
0x4a
,
0x7a
,
0x1b
,
0x19
,
0xc0
,
0xa2
,
0x8e
,
0x59
,
0x65
,
0xab
,
0xb6
,
0xdd
,
0x70
,
0xed
,
0xb2
,
0x9c
,
0x29
,
0xa6
,
0xdd
,
0x86
,
0x56
,
0xd6
,
0x6c
,
0x53
,
0xf3
,
0x3c
,
0x0f
,
0xa6
,
0xdc
,
0xbd
,
0xf2
,
0xa6
,
0x98
,
0x69
,
0xa6
,
0xb5
,
0x06
,
0xdd
,
0x69
,
0xb3
,
0x4d
,
0xc5
,
0xcb
,
0x2c
,
0x71
,
0xf9
,
0x00
,
0x36
,
0x55
,
0x76
,
0x45
,
0xd3
,
0x17
,
0xe6
,
0x77
,
0x57
,
0x77
,
0x6d
,
0x27
,
0xa5
,
0x98
,
0xfa
,
0xe5
,
0x43
,
0x58
,
0xd6
,
0xd1
,
0x55
,
0x4d
,
0x5f
,
0x89
,
0xdf
,
0x98
,
0xdf
,
0xb5
,
0xed
,
0xa2
,
0xdb
,
0xd0
,
0xd4
,
0x6a
,
0x62
,
0xfe
,
0x38
,
0xc4
,
0x3c
,
0x89
,
0x89
,
0xd4
,
0xe5
,
0x96
,
0x63
,
0x94
,
0x4a
,
0x6e
,
0x40
,
0xc7
,
0x64
,
0x93
,
0xf0
,
0x47
,
0x21
,
0x95
,
0x49
,
0xcc
,
0x30
,
0x2f
,
0x57
,
0x29
,
0xfc
,
0x2c
,
0x85
,
0xed
,
0x19
,
0x34
,
0xcc
,
0xde
,
0x83
,
0xae
,
0x41
,
0x2d
,
0x1d
,
0x16
,
0x91
,
0xec
,
0xb6
,
0xc6
,
0x4f
,
0x52
,
0xd8
,
0xfa
,
0xa9
,
0x02
,
0xad
,
0x7c
,
0xf3
,
0x21
,
0x57
,
0xa0
,
0x91
,
0xce
,
0x46
,
0x55
,
0x4f
,
0x81
,
0x08
,
0xdd
,
0x84
,
0xad
,
0xc0
,
0x0f
,
0x49
,
0x3c
,
0x8c
,
0x92
,
0xd1
,
0x4e
,
0x8b
,
0xc8
,
0x84
,
0xa3
,
0x6e
,
0xc6
,
0x40
,
0x44
,
0xae
,
0xc1
,
0x4a
,
0xe0
,
0x87
,
0x2c
,
0x76
,
0x94
,
0xcc
,
0x64
,
0x21
,
0xd6
,
0x9c
,
0xba
,
0xc4
,
0x06
,
0x12
,
0x42
,
0x6f
,
0x81
,
0x35
,
0x22
,
0x21
,
0xa2
,
0x64
,
0x78
,
0xc6
,
0x2e
,
0xb0
,
0x12
,
0x1b
,
0x76
,
0x13
,
0xb1
,
0x63
,
0x84
,
0xc8
,
0xdb
,
0xd0
,
0x39
,
0xf7
,
0xf9
,
0x10
,
0x7b
,
0x5e
,
0x4c
,
0x98
,
0x9a
,
0x57
,
0x35
,
0xa7
,
0xa1
,
0xe1
,
0xfb
,
0x0a
,
0x1e
,
0xb2
,
0x90
,
0x9d
,
0xfa
,
0xd2
,
0xa1
,
0x9e
,
0x17
,
0x33
,
0xa1
,
0x07
,
0x56
,
0xc3
,
0x6e
,
0x19
,
0xb5
,
0x5b
,
0x60
,
0x15
,
0x64
,
0x63
,
0x7f
,
0x0f
,
0xcd
,
0x62
,
0x13
,
0x5b
,
0x38
,
0xb2
,
0xf4
,
0xaf
,
0xf8
,
0x8e
,
0x46
,
0xf3
,
0x51
,
0x51
,
0xfa
,
0xd5
,
0x32
,
0x51
,
0x29
,
0x35
,
0x62
,
0xb1
,
0xdc
,
0x88
,
0x8e
,
0x2c
,
0x2f
,
0x3b
,
0xd2
,
0xf4
,
0xad
,
0x62
,
0xfa
,
0x66
,
0x7f
,
0x0e
,
0xf5
,
0x5c
,
0xae
,
0xd0
,
0x2e
,
0xb4
,
0x0b
,
0x09
,
0x68
,
0x7d
,
0x0d
,
0x9d
,
0x62
,
0x3b
,
0x9c
,
0xd1
,
0xbd
,
0xf2
,
0xb7
,
0x74
,
0x8d
,
0xf9
,
0xd0
,
0xe4
,
0xb3
,
0x88
,
0xe8
,
0x63
,
0xf5
,
0x3c
,
0x7c
,
0x36
,
0x8b
,
0xe4
,
0xc5
,
0x8c
,
0xaf
,
0x96
,
0xea
,
0x9e
,
0x73
,
0x52
,
0x2d
,
0xef
,
0x24
,
0xeb
,
0x73
,
0x68
,
0x66
,
0xa2
,
0x4e
,
0xae
,
0x9a
,
0x2d
,
0x4b
,
0x5d
,
0xe5
,
0xab
,
0xd1
,
0xfe
,
0x10
,
0x1a
,
0xe6
,
0x50
,
0x46
,
0xb7
,
0x60
,
0x3b
,
0x4e
,
0xc6
,
0xaf
,
0xbc
,
0x88
,
0x98
,
0x79
,
0xd6
,
0x4c
,
0xd6
,
0xc7
,
0x17
,
0x11
,
0x2a
,
0x96
,
0xab
,
0x4d
,
0x8d
,
0x9a
,
0xe5
,
0x25
,
0x99
,
0x17
,
0x6d
,
0x49
,
0x91
,
0xed
,
0xdf
,
0x4b
,
0x60
,
0x15
,
0x7a
,
0xfe
,
0x2a
,
0x66
,
0x68
,
0xb6
,
0xae
,
0xad
,
0x8f
,
0xa0
,
0x95
,
0x1f
,
0xef
,
0xe4
,
0x3a
,
0xac
,
0xa6
,
0x19
,
0xfa
,
0x3f
,
0x6c
,
0xca
,
0x96
,
0xe5
,
0x7b
,
0x69
,
0x89
,
0x88
,
0xcf
,
0xc7
,
0x1e
,
0xea
,
0x42
,
0xfe
,
0xd1
,
0x5b
,
0x41
,
0x05
,
0x9d
,
0x63
,
0x24
,
0x69
,
0xb2
,
0xf5
,
0x6b
,
0x05
,
0xda
,
0x85
,
0xae
,
0x4d
,
0x2e
,
0x4c
,
0xfd
,
0xd0
,
0x93
,
0x77
,
0x68
,
0x1c
,
0xb4
,
0xba
,
0xe2
,
0x65
,
0x24
,
0xd4
,
0x21
,
0x48
,
0xfe
,
0x0d
,
0xcb
,
0xd8
,
0xfc
,
0x7c
,
0x2f
,
0x2d
,
0x36
,
0xf5
,
0xf9
,
0xc0
,
0x23
,
0x3b
,
0xd0
,
0x2c
,
0x7c
,
0xea
,
0x87
,
0x9e
,
0x53
,
0xe5
,
0xfa
,
0x17
,
0xda
,
0x85
,
0xea
,
0xb7
,
0x34
,
0x9e
,
0xbe
,
0xc0
,
0x83
,
0x33
,
0x3f
,
0xf4
,
0x50
,
0x87
,
0xd6
,
0x6e
,
0x77
,
0x47
,
0xed
,
0x58
,
0x2a
,
0xcf
,
0x94
,
0xa2
,
0xd8
,
0x93
,
0x21
,
0x58
,
0x73
,
0xe6
,
0xdf
,
0xe8
,
0x35
,
0x90
,
0xbc
,
0xa1
,
0x1b
,
0x78
,
0x52
,
0x84
,
0x4f
,
0xfd
,
0xd0
,
0xb3
,
0xeb
,
0xd2
,
0xfc
,
0x22
,
0x1b
,
0x50
,
0x7f
,
0xcd
,
0xe3
,
0xb3
,
0x97
,
0x30
,
0x35
,
0x47
,
0x1e
,
0xfa
,
0x20
,
0xf0
,
0xd0
,
0x75
,
0x00
,
0xb9
,
0x14
,
0xe1
,
0x18
,
0x07
,
0xb2
,
0x9c
,
0x7a
,
0xe8
,
0x82
,
0x05
,
0x7b
,
0xf2
,
0x4d
,
0xfe
,
0x03
,
0xc8
,
0x73
,
0xdc
,
0xc0
,
0xc3
,
0xd0
,
0x3f
,
0x6d
,
0x39
,
0xf2
,
0xe0
,
0x81
,
0x00
,
0x44
,
0x64
,
0xe5
,
0xb2
,
0x8c
,
0xd5
,
0x86
,
0x32
,
0x2b
,
0x36
,
0x6c
,
0x7c
,
0xf4
,
0x6e
,
0xe0
,
0x91
,
0x4d
,
0x00
,
0x3c
,
0x8a
,
0x68
,
0x4c
,
0x03
,
0x13
,
0x52
,
0x00
,
0x11
,
0x29
,
0xfb
,
0x87
,
0x0a
,
0x34
,
0x8b
,
0x4f
,
0x9c
,
0xd5
,
0x0e
,
0xf5
,
0xa0
,
0xed
,
0xd2
,
0x7c
,
0xf8
,
0x58
,
0x01
,
0xca
,
0xb3
,
0x78
,
0x8c
,
0xbe
,
0x5a
,
0xd2
,
0x62
,
0x15
,
0xa0
,
0x3c
,
0x65
,
0x90
,
0x63
,
0x99
,
0xf4
,
0x4c
,
0xc0
,
0x65
,
0x79
,
0x24
,
0x9a
,
0x2f
,
0xcd
,
0x35
,
0x2c
,
0xd2
,
0x1f
,
0x7d
,
0x53
,
0x83
,
0x4e
,
0x71
,
0x59
,
0x9a
,
0x6f
,
0x50
,
0x1f
,
0xd6
,
0x5c
,
0x1e
,
0x4a
,
0x8a
,
0x41
,
0x14
,
0xc8
,
0x15
,
0x49
,
0x6e
,
0x04
,
0x26
,
0xf1
,
0x5d
,
0x40
,
0xb9
,
0xb6
,
0x3f
,
0x9c
,
0x10
,
0xec
,
0x9f
,
0x66
,
0x51
,
0x15
,
0x9f
,
0x24
,
0x93
,
0xa3
,
0x49
,
0x22
,
0xa9
,
0xf0
,
0x07
,
0x05
,
0x72
,
0x0d
,
0x91
,
0x58
,
0x57
,
0x46
,
0x93
,
0x67
,
0x8d
,
0x5e
,
0xe2
,
0x68
,
0x1f
,
0x9a
,
0x79
,
0xf6
,
0x88
,
0x7a
,
0xc9
,
0xad
,
0x20
,
0x4f
,
0x7c
,
0x0f
,
0x48
,
0x66
,
0x80
,
0x38
,
0x63
,
0x46
,
0x3d
,
0x16
,
0x9b
,
0x1a
,
0x33
,
0xed
,
0x77
,
0x23
,
0xe3
,
0x1e
,
0x52
,
0x6f
,
0x26
,
0x94
,
0xe0
,
0xb3
,
0x21
,
0x4b
,
0x5c
,
0x97
,
0xeb
,
0xc8
,
0xe9
,
0xc8
,
0x40
,
0x9c
,
0x6c
,
0x43
,
0x27
,
0xcb
,
0x1e
,
0x72
,
0xef
,
0xc2
,
0xd8
,
0xdd
,
0x30
,
0x46
,
0x3c
,
0xe9
,
0x7f
,
0xd5
,
0xa9
,
0xfb
,
0xec
,
0x2c
,
0x85
,
0xd0
,
0x01
,
0xfc
,
0x4f
,
0x1a
,
0x9a
,
0x72
,
0xf7
,
0xb8
,
0x77
,
0xa1
,
0x32
,
0xc1
,
0x17
,
0x8e
,
0x48
,
0x5c
,
0x97
,
0x09
,
0xc1
,
0x3c
,
0x23
,
0xdf
,
0x11
,
0x37
,
0xe1
,
0x64
,
0xe8
,
0x25
,
0x31
,
0xe6
,
0x3e
,
0x0d
,
0x65
,
0x43
,
0x5d
,
0x73
,
0xb4
,
0xbf
,
0x6e
,
0x37
,
0x7d
,
0x71
,
0x92
,
0x42
,
0x64
,
0x17
,
0xfe
,
0x85
,
0xc2
,
0xd8
,
0x57
,
0xcc
,
0xda
,
0x62
,
0xf1
,
0xa1
,
0x5a
,
0x3b
,
0xd2
,
0x4b
,
0xe8
,
0x6d
,
0x68
,
0x19
,
0x7b
,
0x5c
,
0xea
,
0x11
,
0x4d
,
0x24
,
0x73
,
0xbc
,
0x24
,
0xa6
,
0xd2
,
0xe7
,
0x21
,
0xb6
,
0xe6
,
0x05
,
0x7b
,
0x4d
,
0x1d
,
0xde
,
0xf9
,
0x22
,
0x59
,
0x77
,
0xac
,
0x1c
,
0xff
,
0x01
,
0xf5
,
0x32
,
0xd7
,
0x52
,
0x2e
,
0x89
,
0x63
,
0x1a
,
0xd3
,
0x67
,
0xfb
,
0xe6
,
0x88
,
0xbc
,
0x03
,
0xdd
,
0xdc
,
0x1d
,
0x97
,
0x7b
,
0x0c
,
0x77
,
0x9b
,
0x45
,
0xcb
,
0xd7
,
0x46
,
0x4d
,
0xb9
,
0xa6
,
0xc9
,
0x0f
,
0x05
,
0x6e
,
0xef
,
0xc3
,
0xb6
,
0x31
,
0xe5
,
0x57
,
0xbb
,
0x9d
,
0xe1
,
0xdf
,
0xe5
,
0xde
,
0xd4
,
0xb4
,
0x94
,
0xcb
,
0xe2
,
0x98
,
0xc7
,
0xb8
,
0xb7
,
0x34
,
0x26
,
0xc3
,
0xfe
,
0x08
,
0x5a
,
0x0b
,
0x6f
,
0x27
,
0xe1
,
0xaf
,
0xf1
,
0xe8
,
0x52
,
0x1a
,
0xce
,
0xbf
,
0xb4
,
0x69
,
0x86
,
0x7c
,
0x4f
,
0xe1
,
0xd6
,
0x0f
,
0x15
,
0x58
,
0xcd
,
0x2d
,
0x0c
,
0xf3
,
0xa3
,
0x71
,
0xa7
,
0xec
,
0x5f
,
0x84
,
0x84
,
0x0b
,
0xc3
,
0x72
,
0x65
,
0xc6
,
0xf3
,
0x92
,
0x2c
,
0x17
,
0x24
,
0x69
,
0x15
,
0x9a
,
0x2e
,
0x0d
,
0x53
,
0xb9
,
0x18
,
0x85
,
0xba
,
0x0d
,
0x2e
,
0x0d
,
0x8d
,
0x40
,
0xb2
,
0x05
,
0xb4
,
0xee
,
0x4a
,
0xa1
,
0x75
,
0xa3
,
0x77
,
0xa0
,
0xa5
,
0x7b
,
0xe1
,
0x42
,
0xab
,
0x6b
,
0xea
,
0x85
,
0x2b
,
0x43
,
0xce
,
0xa5
,
0x93
,
0x44
,
0x8e
,
0x6a
,
0x03
,
0xe8
,
0xfa
,
0x9a
,
0x0d
,
0x0a
,
0x7b
,
0x12
,
0x2c
,
0xfd
,
0xb7
,
0xa1
,
0x99
,
0x09
,
0x4b
,
0x77
,
0x13
,
0x95
,
0x50
,
0x6b
,
0x8e
,
0xab
,
0x8e
,
0x62
,
0x3d
,
0xf6
,
0x03
,
0x46
,
0xde
,
0x82
,
0xf6
,
0xab
,
0x84
,
0x25
,
0xcc
,
0x79
,
0x4d
,
0xd5
,
0x22
,
0xa3
,
0xdf
,
0x81
,
0xd6
,
0xc2
,
0x1b
,
0xcf
,
0xd4
,
0x78
,
0xa9
,
0xa0
,
0xf1
,
0xaf
,
0xa1
,
0x7d
,
0xe4
,
0xb3
,
0x48
,
0xba
,
0x6f
,
0xac
,
0x22
,
0xfc
,
0x8c
,
0xfa
,
0x12
,
0x79
,
0xd7
,
0x60
,
0x25
,
0x55
,
0x1f
,
0x49
,
0x08
,
0x73
,
0x77
,
0xa2
,
0x5c
,
0x56
,
0xc3
,
0xaa
,
0xaf
,
0xf7
,
0x78
,
0x98
,
0x63
,
0xfd
,
0x0e
,
0xda
,
0x8b
,
0x48
,
0x6a
,
0x1a
,
0x4c
,
0x51
,
0xac
,
0x27
,
0xd0
,
0x9d
,
0x59
,
0x0a
,
0xd5
,
0xbd
,
0xdc
,
0x36
,
0x31
,
0xaa
,
0xf3
,
0x01
,
0x0d
,
0x39
,
0x09
,
0xb9
,
0xb2
,
0x74
,
0x84
,
0x39
,
0x46
,
0x3b
,
0xb0
,
0x2e
,
0xa9
,
0x4b
,
0x2a
,
0xb7
,
0x28
,
0x6e
,
0x02
,
0x2a
,
0x94
,
0x44
,
0x48
,
0xd0
,
0xa9
,
0xd4
,
0xd0
,
0xc8
,
0x75
,
0xab
,
0x7b
,
0x98
,
0xfa
,
0xb0
,
0x1f
,
0xc2
,
0x8e
,
0x69
,
0x5f
,
0x37
,
0x94
,
0x95
,
0x41
,
0x5d
,
0x11
,
0x8d
,
0xac
,
0x1f
,
0x55
,
0xc1
,
0x15
,
0x96
,
0x84
,
0xb9
,
0x1e
,
0xc9
,
0x16
,
0x50
,
0xb5
,
0x50
,
0x6e
,
0x66
,
0x07
,
0x90
,
0x7e
,
0xb1
,
0x7d
,
0xe6
,
0xb3
,
0x74
,
0xa4
,
0xda
,
0x0e
,
0xb4
,
0x0d
,
0x54
,
0x40
,
0xb9
,
0xe6
,
0x58
,
0x2b
,
0x8c
,
0x2c
,
0xf2
,
0x2e
,
0x74
,
0xcd
,
0x0c
,
0x98
,
0x69
,
0xf1
,
0x1d
,
0xdb
,
0xbe
,
0x07
,
0x55
,
0x1d
,
0x44
,
0xa6
,
0xa7
,
0xdb
,
0xd2
,
0xc1
,
0xaf
,
0xb7
,
0xca
,
0xae
,
0x3d
,
0x73
,
0x30
,
0x4d
,
0xd6
,
0x1b
,
0xd0
,
0x99
,
0x96
,
0x81
,
0xe9
,
0x7d
,
0xa6
,
0x93
,
0x4e
,
0x70
,
0xdd
,
0xdf
,
0x70
,
0xf8
,
0x47
,
0x09
,
0x90
,
0x4b
,
0x83
,
0xc2
,
0x86
,
0xc3
,
0x1d
,
0x7d
,
0x66
,
0x7a
,
0xc8
,
0xff
,
0xac
,
0x9b
,
0xd0
,
0x9d
,
0xd9
,
0x6d
,
0xf3
,
0x15
,
0x59
,
0x29
,
0x54
,
0xe4
,
0x97
,
0xb0
,
0xb6
,
0x40
,
0xfc
,
0x27
,
0x1b
,
0x94
,
0xbe
,
0x7a
,
0x3a
,
0xf6
,
0xf9
,
0x24
,
0x19
,
0x75
,
0x5d
,
0x1a
,
0xcc
,
0xef
,
0x8b
,
0x88
,
0x4a
,
0x77
,
0xac
,
0x4d
,
0xd6
,
0x43
,
0x7a
,
0x60
,
0xee
,
0x78
,
0x54
,
0x52
,
0xb3
,
0xff
,
0xcf
,
0xcd
,
0x7f
,
0xbc
,
0x27
,
0xff
,
0xb9
,
0xb9
,
0xf4
,
0x55
,
0x6f
,
0x4c
,
0xc2
,
0x9e
,
0xfc
,
0xff
,
0xad
,
0xe7
,
0x7a
,
0xc9
,
0x5d
,
0x1e
,
0x4a
,
0x16
,
0x4a
,
0x2d
,
0x69
,
0x9f
,
0x4a
,
0x4a
,
0xd6
,
0xe8
,
0x8d
,
0x69
,
0xcf
,
0xfc
,
0x9f
,
0x77
,
0x2f
,
0xf7
,
0x79
,
0xd1
,
0xff
,
0xb1
,
0x5c
,
0x79
,
0xf2
,
0x61
,
0x11
,
0xab
,
0xcc
,
0x74
,
0x5c
,
0xfd
,
0x61
,
0xdd
,
0x83
,
0xf5
,
0xbc
,
0x7c
,
0xd3
,
0xfe
,
0xe6
,
0xe2
,
0xc5
,
0x4f
,
0xe5
,
0xc6
,
0x93
,
0xdc
,
0xf9
,
0xcf
,
0xfb
,
0xbf
,
0x19
,
0xc0
,
0xcb
,
0xe7
,
0xfd
,
0x3a
,
0xb5
,
0x5c
,
0xcc
,
0x3a
,
0x10
,
0xb3
,
0xa9
,
0x7e
,
0xe6
,
0x8b
,
0x74
,
0x95
,
0xb0
,
0x6c
,
0x58
,
0x3f
,
0xcb
,
0xbb
,
0x26
,
0xf0
,
0xf2
,
0x78
,
0x70
,
0x78
,
0x4a
,
0x38
,
0x16
,
0x19
,
0xfb
,
0xab
,
0x6c
,
0xcb
,
0xa1
,
0x46
,
0xf6
,
0x6d
,
0xa8
,
0x1b
,
0x27
,
0x0a
,
0x33
,
0xd5
,
0x4b
,
0x17
,
0x1e
,
0x73
,
0x15
,
0xe5
,
0x16
,
0xef
,
0xde
,
0x7d
,
0xde
,
0x1f
,
0x6d
,
0xc8
,
0xd3
,
0xdf
,
0xff
,
0x3b
,
0x00
,
0x00
,
0xff
,
0x67
,
0xcc
,
0xe4
,
0xc2
,
0xde
,
0x6f
,
0x15
,
0x20
,
0x2e
,
0x0f
,
0x0a
,
0x17
,
0xf6
,
0xd6
,
0xcd
,
0x9b
,
0xff
,
0x53
,
0xb9
,
0x6f
,
0x86
,
0xc5
,
0x0e
,
0x00
,
0x00
,
0xe9
,
0x23
,
0xc7
,
0xea
,
0xbf
,
0xe8
,
0x71
,
0xe5
,
0x8b
,
0x47
,
0x23
,
0x5f
,
0x8e
,
0x93
,
0xe1
,
0x8e
,
0xcb
,
0x83
,
0xc9
,
0xff
,
0xd8
,
0xc9
,
0x8f
,
0xf7
,
0xf1
,
0x1f
,
0xab
,
0xcb
,
0x5f
,
0xf6
,
0x47
,
0x2c
,
0xec
,
0xe3
,
0x47
,
0x7f
,
0xc4
,
0xfb
,
0xf9
,
0xff
,
0xb7
,
0xb7
,
0x33
,
0x9f
,
0xe7
,
0x83
,
0x6f
,
0xab
,
0xb5
,
0x87
,
0xcf
,
0x9f
,
0x7f
,
0x57
,
0x6d
,
0x3d
,
0xcc
,
0xbc
,
0xff
,
0x74
,
0xf0
,
0x4b
,
0x0e
,
0x78
,
0xf1
,
0x74
,
0xf0
,
0x7b
,
0x75
,
0x23
,
0x0f
,
0xbc
,
0x38
,
0x38
,
0xde
,
0x3b
,
0x62
,
0x92
,
0xaa
,
0x88
,
0xfd
,
0x51
,
0x6d
,
0x67
,
0x0e
,
0x6f
,
0xdd
,
0x7a
,
0x3a
,
0x18
,
0x2e
,
0xe1
,
0xeb
,
0x1f
,
0xfc
,
0x19
,
0x00
,
0x00
,
0xff
,
0xff
,
0x4e
,
0xad
,
0x53
,
0xf4
,
0xbd
,
0x0f
,
0x00
,
0x00
,
}
}
nodemanager/nodemanager/v1/request_response.proto
View file @
599be72f
...
@@ -67,6 +67,8 @@ message RegisteMessage {
...
@@ -67,6 +67,8 @@ message RegisteMessage {
string
device_ip
=
1
;
string
device_ip
=
1
;
string
miner_pubkey
=
2
;
string
miner_pubkey
=
2
;
string
benefit_address
=
3
;
string
benefit_address
=
3
;
int64
timestamp
=
4
;
bytes
device_signature
=
5
;
}
}
message
NodeInfoRequest
{
message
NodeInfoRequest
{
...
@@ -114,10 +116,15 @@ message SubmitTaskResult {
...
@@ -114,10 +116,15 @@ message SubmitTaskResult {
message
SubmitTaskAck
{
message
SubmitTaskAck
{
string
task_id
=
1
;
string
task_id
=
1
;
bool
can_execute
=
2
;
int64
boot_up_time
=
3
;
int64
queue_wait_time
=
4
;
int64
execute_time
=
5
;
}
}
message
SubmitResourceMap
{
message
SubmitResourceMap
{
bytes
resource_map
=
1
;
// a bitmap of all task id.
bytes
resource_map
=
1
;
// a bitmap of all task id.
bytes
bootup_map
=
2
;
// a bitmap of task id that has been boot up.
}
}
message
ProofTaskResult
{
message
ProofTaskResult
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment