rpc: add signature to VerifyMessage response

This commit is contained in:
Philip Hayes 2017-04-29 04:44:29 -07:00 committed by Olaoluwa Osuntokun
parent ad5b69b798
commit 3b84db1f25
7 changed files with 343 additions and 317 deletions

View File

@ -1625,7 +1625,7 @@ var verifyMessageCommand = cli.Command{
Usage: "the message to verify",
},
cli.StringFlag{
Name: "signature",
Name: "sig",
Usage: "the zbase32 encoded signature of the message",
},
},
@ -1638,8 +1638,8 @@ func verifyMessage(ctx *cli.Context) error {
defer cleanUp()
var (
msg []byte
signature string
msg []byte
sig string
)
args := ctx.Args()
@ -1655,15 +1655,15 @@ func verifyMessage(ctx *cli.Context) error {
}
switch {
case ctx.IsSet("signature"):
signature = ctx.String("signature")
case ctx.IsSet("sig"):
sig = ctx.String("sig")
case args.Present():
signature = args.First()
sig = args.First()
default:
return fmt.Errorf("signature argument missing")
}
req := &lnrpc.VerifyMessageRequest{Msg: msg, Signature: signature}
req := &lnrpc.VerifyMessageRequest{Msg: msg, Signature: sig}
resp, err := client.VerifyMessage(ctxb, req)
if err != nil {
return err

View File

@ -2352,14 +2352,20 @@ func testNodeAnnouncement(net *networkHarness, t *harnessTest) {
}
func testNodeSignVerify(net *networkHarness, t *harnessTest) {
timeout := time.Duration(time.Second * 5)
ctxb := context.Background()
// bob should be able to verify alice's signature
chanAmt := btcutil.Amount(btcutil.SatoshiPerBitcoin / 2)
pushAmt := btcutil.Amount(100000)
// Create a channel between alice and bob.
ctxt, _ := context.WithTimeout(ctxb, timeout)
aliceBobCh := openChannelAndAssert(ctxt, t, net, net.Alice, net.Bob,
chanAmt, pushAmt)
aliceMsg := []byte("alice msg")
// alice: sign "alice msg"
// alice signs "alice msg" and sends her signature to bob.
sigReq := &lnrpc.SignMessageRequest{Msg: aliceMsg}
sigResp, err := net.Alice.SignMessage(ctxb, sigReq)
if err != nil {
@ -2367,10 +2373,9 @@ func testNodeSignVerify(net *networkHarness, t *harnessTest) {
}
aliceSig := sigResp.Signature
// bob: verify alice's signature -> should succeed
verifyReq := &lnrpc.VerifyMessageRequest{
Msg: aliceMsg, Signature: aliceSig}
// bob verifying alice's signature should succeed since alice and bob are
// connected.
verifyReq := &lnrpc.VerifyMessageRequest{Msg: aliceMsg, Signature: aliceSig}
verifyResp, err := net.Bob.VerifyMessage(ctxb, verifyReq)
if err != nil {
t.Fatalf("VerifyMessage failed: %v", err)
@ -2378,9 +2383,11 @@ func testNodeSignVerify(net *networkHarness, t *harnessTest) {
if !verifyResp.Valid {
t.Fatalf("alice's signature didn't validate")
}
if verifyResp.Pubkey != net.Alice.PubKeyStr {
t.Fatalf("alice's signature doesn't contain alice's pubkey.")
}
// carol is a new node that is unconnected to alice or bob
// carol is a new node that is unconnected to alice or bob.
carol, err := net.NewNode(nil)
if err != nil {
t.Fatalf("unable to create new node: %v", err)
@ -2388,8 +2395,7 @@ func testNodeSignVerify(net *networkHarness, t *harnessTest) {
carolMsg := []byte("carol msg")
// carol: sign "carol msg"
// carol signs "carol msg" and sends her signature to bob.
sigReq = &lnrpc.SignMessageRequest{Msg: carolMsg}
sigResp, err = carol.SignMessage(ctxb, sigReq)
if err != nil {
@ -2397,10 +2403,8 @@ func testNodeSignVerify(net *networkHarness, t *harnessTest) {
}
carolSig := sigResp.Signature
// bob: verify carol's signature -> should fail
verifyReq = &lnrpc.VerifyMessageRequest{
Msg: carolMsg, Signature: carolSig}
// bob verifying carol's signature should fail since they are not connected.
verifyReq = &lnrpc.VerifyMessageRequest{Msg: carolMsg, Signature: carolSig}
verifyResp, err = net.Bob.VerifyMessage(ctxb, verifyReq)
if err != nil {
t.Fatalf("VerifyMessage failed: %v", err)
@ -2408,6 +2412,18 @@ func testNodeSignVerify(net *networkHarness, t *harnessTest) {
if verifyResp.Valid {
t.Fatalf("carol's signature should not be valid")
}
if verifyResp.Pubkey != carol.PubKeyStr {
t.Fatalf("carol's signature doesn't contain her pubkey")
}
// Clean up carol's node.
if err := carol.Shutdown(); err != nil {
t.Fatalf("unable to shutdown carol: %v", err)
}
// Close the channel between alice and bob.
ctxt, _ = context.WithTimeout(ctxb, timeout)
closeChannelAndAssert(ctxt, t, net, net.Alice, aliceBobCh, false)
}
type testCase struct {
@ -2473,16 +2489,16 @@ var testsCases = []*testCase{
name: "node announcement",
test: testNodeAnnouncement,
},
{
name: "node sign verify",
test: testNodeSignVerify,
},
{
// TODO(roasbeef): test always needs to be last as Bob's state
// is borked since we trick him into attempting to cheat Alice?
name: "revoked uncooperative close retribution",
test: testRevokedCloseRetribution,
},
{
name: "node sign verify",
test: testNodeSignVerify,
},
}
// TestLightningNetworkDaemon performs a series of integration tests amongst a

View File

@ -537,7 +537,8 @@ func (m *VerifyMessageRequest) GetSignature() string {
}
type VerifyMessageResponse struct {
Valid bool `protobuf:"varint,1,opt,name=valid" json:"valid,omitempty"`
Valid bool `protobuf:"varint,1,opt,name=valid" json:"valid,omitempty"`
Pubkey string `protobuf:"bytes,2,opt,name=pubkey" json:"pubkey,omitempty"`
}
func (m *VerifyMessageResponse) Reset() { *m = VerifyMessageResponse{} }
@ -552,6 +553,13 @@ func (m *VerifyMessageResponse) GetValid() bool {
return false
}
func (m *VerifyMessageResponse) GetPubkey() string {
if m != nil {
return m.Pubkey
}
return ""
}
type ConnectPeerRequest struct {
Addr *LightningAddress `protobuf:"bytes,1,opt,name=addr" json:"addr,omitempty"`
Perm bool `protobuf:"varint,2,opt,name=perm" json:"perm,omitempty"`
@ -4313,273 +4321,273 @@ var _Lightning_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("rpc.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 4280 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0xcd, 0x6f, 0x1c, 0x47,
0x76, 0x77, 0x0f, 0x87, 0x14, 0xe7, 0xcd, 0x0c, 0x3f, 0x8a, 0x14, 0x35, 0x1a, 0xc9, 0x5e, 0xb9,
0xd6, 0xb0, 0x19, 0xed, 0x86, 0x94, 0xb9, 0x89, 0xa3, 0xb5, 0x92, 0x18, 0xb4, 0xbe, 0xe8, 0x2c,
0x2d, 0x73, 0x9b, 0xb2, 0x95, 0xec, 0x22, 0x98, 0x34, 0xa7, 0x8b, 0xc3, 0x5e, 0xf5, 0x74, 0xb7,
0xbb, 0x6b, 0x28, 0xcd, 0x0a, 0x42, 0x02, 0x67, 0x73, 0x4b, 0xb0, 0x08, 0xf6, 0xbe, 0x48, 0x90,
0x73, 0x2e, 0x39, 0x26, 0xff, 0x41, 0x80, 0x00, 0x01, 0xf6, 0x94, 0x7b, 0x90, 0x7b, 0x0e, 0xb9,
0xe5, 0x10, 0xbc, 0xfa, 0xea, 0xaa, 0xee, 0xa6, 0xa4, 0x20, 0xc1, 0x9e, 0x38, 0xf5, 0xab, 0xd7,
0xaf, 0xaa, 0x5e, 0xbd, 0x7a, 0x5f, 0x55, 0x84, 0x4e, 0x9e, 0x8d, 0x77, 0xb2, 0x3c, 0xe5, 0x29,
0x59, 0x8c, 0x93, 0x3c, 0x1b, 0x0f, 0xaf, 0x4f, 0xd2, 0x74, 0x12, 0xb3, 0xdd, 0x20, 0x8b, 0x76,
0x83, 0x24, 0x49, 0x79, 0xc0, 0xa3, 0x34, 0x29, 0x24, 0x11, 0xfd, 0x4f, 0x0f, 0xba, 0x8f, 0xf3,
0x20, 0x29, 0x82, 0x31, 0xc2, 0x64, 0x00, 0x97, 0xf8, 0xf3, 0xd1, 0x59, 0x50, 0x9c, 0x0d, 0xbc,
0x1b, 0xde, 0x76, 0xc7, 0xd7, 0x4d, 0xb2, 0x05, 0x4b, 0xc1, 0x34, 0x9d, 0x25, 0x7c, 0xd0, 0xba,
0xe1, 0x6d, 0x2f, 0xf8, 0xaa, 0x45, 0xbe, 0x0b, 0xeb, 0xc9, 0x6c, 0x3a, 0x1a, 0xa7, 0xc9, 0x69,
0x94, 0x4f, 0x25, 0xf3, 0xc1, 0xc2, 0x0d, 0x6f, 0x7b, 0xd1, 0xaf, 0x77, 0x90, 0x77, 0x00, 0x4e,
0xe2, 0x74, 0xfc, 0x54, 0x0e, 0xd1, 0x16, 0x43, 0x58, 0x08, 0xa1, 0xd0, 0x53, 0x2d, 0x16, 0x4d,
0xce, 0xf8, 0x60, 0x51, 0x30, 0x72, 0x30, 0xe4, 0xc1, 0xa3, 0x29, 0x1b, 0x15, 0x3c, 0x98, 0x66,
0x83, 0x25, 0x31, 0x1b, 0x0b, 0x11, 0xfd, 0x29, 0x0f, 0xe2, 0xd1, 0x29, 0x63, 0xc5, 0xe0, 0x92,
0xea, 0x37, 0x08, 0x1d, 0xc0, 0xd6, 0x43, 0xc6, 0xad, 0x55, 0x17, 0x3e, 0xfb, 0x7a, 0xc6, 0x0a,
0x4e, 0x0f, 0x81, 0x58, 0xf0, 0x3d, 0xc6, 0x83, 0x28, 0x2e, 0xc8, 0x47, 0xd0, 0xe3, 0x16, 0xf1,
0xc0, 0xbb, 0xb1, 0xb0, 0xdd, 0xdd, 0x23, 0x3b, 0x42, 0xbe, 0x3b, 0xd6, 0x07, 0xbe, 0x43, 0x47,
0xff, 0xd5, 0x83, 0xee, 0x31, 0x4b, 0x42, 0xc5, 0x9d, 0x10, 0x68, 0x87, 0xac, 0xe0, 0x42, 0xb0,
0x3d, 0x5f, 0xfc, 0x26, 0xdf, 0x82, 0x2e, 0xfe, 0x1d, 0x15, 0x3c, 0x8f, 0x92, 0x89, 0x10, 0x6d,
0xc7, 0x07, 0x84, 0x8e, 0x05, 0x42, 0xd6, 0x60, 0x21, 0x98, 0x72, 0x21, 0xd0, 0x05, 0x1f, 0x7f,
0x92, 0x77, 0xa1, 0x97, 0x05, 0xf3, 0x29, 0x4b, 0x78, 0x29, 0xc4, 0x9e, 0xdf, 0x55, 0xd8, 0x01,
0x4a, 0x71, 0x07, 0x36, 0x6c, 0x12, 0xcd, 0x7d, 0x51, 0x70, 0x5f, 0xb7, 0x28, 0xd5, 0x20, 0x1f,
0xc0, 0xaa, 0xa6, 0xcf, 0xe5, 0x64, 0x85, 0x58, 0x3b, 0xfe, 0x8a, 0x82, 0xb5, 0x80, 0x12, 0xe8,
0xc9, 0x15, 0x15, 0x59, 0x9a, 0x14, 0x8c, 0xdc, 0x84, 0x35, 0xfd, 0x61, 0x96, 0xb3, 0x68, 0x1a,
0x4c, 0x98, 0x5a, 0x5e, 0x0d, 0x27, 0x7b, 0xd0, 0x37, 0x83, 0xa4, 0x33, 0xce, 0xc4, 0x62, 0xbb,
0x7b, 0x3d, 0x25, 0x47, 0x1f, 0x31, 0xdf, 0x25, 0xa1, 0xdf, 0x78, 0xd0, 0xbb, 0x7b, 0x16, 0x24,
0x09, 0x8b, 0x8f, 0xd2, 0x28, 0xe1, 0xa8, 0x1f, 0xa7, 0xb3, 0x24, 0x8c, 0x92, 0xc9, 0x88, 0x3f,
0x8f, 0x42, 0x35, 0x98, 0x83, 0xe1, 0xa4, 0xec, 0x36, 0xae, 0x5e, 0x09, 0xb6, 0x86, 0x23, 0xbf,
0x74, 0xc6, 0xb3, 0x19, 0x1f, 0x45, 0x49, 0xc8, 0x9e, 0x0b, 0x39, 0xf7, 0x7d, 0x07, 0xa3, 0xbf,
0x0f, 0x6b, 0x87, 0xa8, 0x78, 0x49, 0x94, 0x4c, 0xf6, 0xc3, 0x30, 0x67, 0x45, 0x81, 0xa7, 0x21,
0x9b, 0x9d, 0x3c, 0x65, 0x73, 0x75, 0x4c, 0x54, 0x0b, 0xf7, 0xf8, 0x2c, 0x2d, 0xb8, 0x1a, 0x4f,
0xfc, 0xa6, 0x7f, 0xe3, 0xc1, 0x2a, 0x4a, 0xed, 0xf3, 0x20, 0x99, 0x6b, 0x5d, 0x38, 0x84, 0x1e,
0xb2, 0x7a, 0x9c, 0xee, 0xcb, 0x33, 0x25, 0x75, 0x6a, 0x5b, 0xc9, 0xa2, 0x42, 0xbd, 0x63, 0x93,
0xde, 0x4f, 0x78, 0x3e, 0xf7, 0x9d, 0xaf, 0x87, 0x9f, 0xc0, 0x7a, 0x8d, 0x04, 0x35, 0xa7, 0x9c,
0x1f, 0xfe, 0x24, 0x9b, 0xb0, 0x78, 0x1e, 0xc4, 0x33, 0xa6, 0x4e, 0xb0, 0x6c, 0x7c, 0xdc, 0xba,
0xed, 0xd1, 0xf7, 0x61, 0xad, 0x1c, 0x53, 0xed, 0x2d, 0x81, 0xb6, 0x11, 0x71, 0xc7, 0x17, 0xbf,
0x51, 0x14, 0x48, 0x77, 0x37, 0x8d, 0xcc, 0xa1, 0x41, 0xba, 0x20, 0x0c, 0x73, 0x4d, 0x87, 0xbf,
0x2f, 0x32, 0x16, 0xf4, 0x03, 0x58, 0xb7, 0xbe, 0x7f, 0xc5, 0x40, 0xbf, 0xf4, 0x60, 0xfd, 0x11,
0x7b, 0xa6, 0xc4, 0xad, 0x87, 0xba, 0x0d, 0x6d, 0x3e, 0xcf, 0xa4, 0x8a, 0xad, 0xec, 0xbd, 0xa7,
0xa4, 0x55, 0xa3, 0xdb, 0x51, 0xcd, 0xc7, 0xf3, 0x8c, 0xf9, 0xe2, 0x0b, 0xfa, 0x05, 0x74, 0x2d,
0x90, 0x5c, 0x81, 0x8d, 0x27, 0x9f, 0x3d, 0x7e, 0x74, 0xff, 0xf8, 0x78, 0x74, 0xf4, 0xe5, 0xa7,
0x3f, 0xb8, 0xff, 0x47, 0xa3, 0x83, 0xfd, 0xe3, 0x83, 0xb5, 0xb7, 0xc8, 0x16, 0x90, 0x47, 0xf7,
0x8f, 0x1f, 0xdf, 0xbf, 0xe7, 0xe0, 0x1e, 0x59, 0x85, 0xae, 0x0d, 0xb4, 0xe8, 0x10, 0x06, 0x8f,
0xd8, 0xb3, 0x27, 0x11, 0x4f, 0x58, 0x51, 0xb8, 0xc3, 0xd3, 0x1d, 0x20, 0xf6, 0x9c, 0xd4, 0x32,
0x07, 0x70, 0x29, 0x90, 0x90, 0x36, 0xad, 0xaa, 0x49, 0xdf, 0x07, 0x72, 0x1c, 0x4d, 0x92, 0xcf,
0x59, 0x51, 0x04, 0x13, 0xa6, 0x17, 0xbb, 0x06, 0x0b, 0xd3, 0x62, 0xa2, 0x34, 0x1c, 0x7f, 0xd2,
0xef, 0xc1, 0x86, 0x43, 0xa7, 0x18, 0x5f, 0x87, 0x4e, 0x11, 0x4d, 0x92, 0x80, 0xcf, 0x72, 0xa6,
0x58, 0x97, 0x00, 0x7d, 0x00, 0x9b, 0x5f, 0xb1, 0x3c, 0x3a, 0x9d, 0xbf, 0x8e, 0xbd, 0xcb, 0xa7,
0x55, 0xe5, 0xf3, 0x9b, 0x70, 0xb9, 0xc2, 0x47, 0x0d, 0x2f, 0xb5, 0x4a, 0xed, 0xdf, 0xb2, 0x2f,
0x1b, 0xf4, 0x4b, 0x20, 0x77, 0xd3, 0x24, 0x61, 0x63, 0x7e, 0xc4, 0x58, 0xae, 0x07, 0xfd, 0x8e,
0xa5, 0x2b, 0xdd, 0xbd, 0x2b, 0x6a, 0x03, 0xab, 0xa7, 0x4b, 0x29, 0x11, 0x81, 0x76, 0xc6, 0xf2,
0xa9, 0x98, 0xca, 0xb2, 0x2f, 0x7e, 0xd3, 0x5d, 0xd8, 0x70, 0xd8, 0x96, 0xb2, 0xcd, 0x18, 0xcb,
0x47, 0x6a, 0x16, 0x8b, 0xbe, 0x6e, 0xd2, 0x0f, 0xe1, 0xf2, 0xbd, 0xa8, 0x18, 0xd7, 0xa7, 0x82,
0x9f, 0xcc, 0x4e, 0x46, 0xe5, 0x11, 0xd1, 0x4d, 0xf4, 0x0f, 0xd5, 0x4f, 0xe4, 0x30, 0xf4, 0x1f,
0x3c, 0x68, 0x1f, 0x3c, 0x3e, 0xbc, 0x4b, 0x86, 0xb0, 0x1c, 0x25, 0xe3, 0x74, 0x8a, 0x56, 0x55,
0x2e, 0xdb, 0xb4, 0x2f, 0x74, 0x94, 0xd7, 0xa1, 0x23, 0x8c, 0x31, 0xba, 0x32, 0x61, 0x67, 0x7a,
0x7e, 0x09, 0xa0, 0x1b, 0x65, 0xcf, 0xb3, 0x28, 0x17, 0x7e, 0x52, 0x7b, 0xbf, 0xb6, 0xb0, 0x46,
0xf5, 0x0e, 0x34, 0x71, 0x39, 0x3b, 0x4f, 0xc7, 0x12, 0x0c, 0x59, 0x1c, 0xcc, 0x85, 0x75, 0xef,
0xfb, 0x35, 0x9c, 0xfe, 0xc7, 0x02, 0xf4, 0xf7, 0xc7, 0x3c, 0x3a, 0x67, 0xca, 0x92, 0x8a, 0x19,
0x0a, 0x40, 0xcd, 0x5d, 0xb5, 0xc8, 0x7b, 0xd0, 0xcf, 0xd9, 0x34, 0xe5, 0x6c, 0xa4, 0x6c, 0x9b,
0x54, 0x02, 0x17, 0x44, 0xaa, 0xb1, 0x64, 0x34, 0xca, 0xd0, 0x26, 0x8b, 0xb5, 0x74, 0x7c, 0x17,
0x44, 0xf1, 0x22, 0x80, 0x3b, 0x82, 0xab, 0x68, 0xfb, 0xba, 0x89, 0xb2, 0x1b, 0x07, 0x59, 0x30,
0x8e, 0xb8, 0x9c, 0xf3, 0x82, 0x6f, 0xda, 0xc8, 0x3b, 0x4e, 0xc7, 0x41, 0x3c, 0x3a, 0x09, 0xe2,
0x20, 0x19, 0x33, 0xe5, 0xdd, 0x5d, 0x90, 0xbc, 0x0f, 0x2b, 0x6a, 0x4a, 0x9a, 0x4c, 0x3a, 0xf9,
0x0a, 0x8a, 0x32, 0x9d, 0x25, 0x05, 0xe3, 0x3c, 0x66, 0xa1, 0x21, 0x5d, 0x16, 0xa4, 0xf5, 0x0e,
0x72, 0x0b, 0x36, 0x64, 0x90, 0x50, 0x04, 0x3c, 0x2d, 0xce, 0xa2, 0x62, 0x54, 0xb0, 0x84, 0x0f,
0x3a, 0x82, 0xbe, 0xa9, 0x8b, 0xdc, 0x86, 0x2b, 0x15, 0x38, 0x67, 0x63, 0x16, 0x9d, 0xb3, 0x70,
0x00, 0xe2, 0xab, 0x8b, 0xba, 0xc9, 0x0d, 0xe8, 0x62, 0x6c, 0x34, 0xcb, 0xc2, 0x80, 0xb3, 0x62,
0xd0, 0x15, 0x12, 0xb2, 0x21, 0xf2, 0x21, 0xf4, 0x33, 0x26, 0x9d, 0xd5, 0x19, 0x8f, 0xc7, 0xc5,
0xa0, 0x27, 0x3c, 0x44, 0x57, 0x1d, 0x19, 0xd4, 0x42, 0xdf, 0xa5, 0xa0, 0x97, 0x61, 0xe3, 0x30,
0x2a, 0xb8, 0xda, 0x65, 0x63, 0x8d, 0x0e, 0x60, 0xd3, 0x85, 0xd5, 0x99, 0xb9, 0x05, 0xcb, 0x6a,
0xcb, 0x70, 0x02, 0xc8, 0x7c, 0x53, 0x31, 0x77, 0xb4, 0xc5, 0x37, 0x54, 0xf4, 0x67, 0x2d, 0x68,
0xe3, 0x79, 0xb8, 0xf8, 0xec, 0xd8, 0x07, 0xb1, 0xe5, 0x1c, 0x44, 0xdb, 0xfc, 0x2d, 0x38, 0xe6,
0x4f, 0xc4, 0x84, 0x73, 0xce, 0x94, 0xbc, 0xa5, 0xb6, 0x58, 0x48, 0xd9, 0x9f, 0xb3, 0xf1, 0xb9,
0x50, 0x19, 0xd3, 0x8f, 0x08, 0x2a, 0x54, 0x11, 0x70, 0xf9, 0xb5, 0xd4, 0x17, 0xd3, 0xd6, 0x7d,
0xe2, 0xcb, 0x4b, 0x65, 0x9f, 0xf8, 0x6e, 0x00, 0x97, 0xa2, 0xe4, 0x24, 0x9d, 0x25, 0xa1, 0x50,
0x8a, 0x65, 0x5f, 0x37, 0xf1, 0xa8, 0x66, 0x22, 0x4c, 0x88, 0xa6, 0x4c, 0x29, 0x40, 0x09, 0x50,
0x82, 0xf1, 0x40, 0x21, 0x2c, 0x83, 0x11, 0xf2, 0x47, 0xb0, 0x6e, 0x61, 0x4a, 0xc2, 0xef, 0xc2,
0x22, 0xae, 0x5e, 0x47, 0x8c, 0x7a, 0xef, 0x84, 0x49, 0x91, 0x3d, 0x74, 0x0d, 0x56, 0x1e, 0x32,
0xfe, 0x59, 0x72, 0x9a, 0x6a, 0x4e, 0xff, 0xd5, 0x82, 0x55, 0x03, 0x29, 0x46, 0xdb, 0xb0, 0x1a,
0x85, 0x2c, 0xe1, 0x11, 0x9f, 0x8f, 0x9c, 0xb0, 0xa3, 0x0a, 0xa3, 0x31, 0x0e, 0xe2, 0x28, 0x28,
0xd4, 0xd1, 0x95, 0x0d, 0xb2, 0x07, 0x9b, 0xa8, 0x5b, 0x5a, 0x5d, 0xcc, 0xb6, 0xcb, 0x68, 0xa7,
0xb1, 0x0f, 0x8f, 0x03, 0xe2, 0xd2, 0x34, 0x94, 0x9f, 0x48, 0x93, 0xd4, 0xd4, 0x85, 0x52, 0x93,
0x9c, 0x70, 0xc9, 0xd2, 0x1a, 0x95, 0x40, 0x2d, 0xb2, 0x5f, 0x92, 0x91, 0x56, 0x35, 0xb2, 0xb7,
0xb2, 0x83, 0xe5, 0x5a, 0x76, 0xb0, 0x0d, 0xab, 0xc5, 0x3c, 0x19, 0xb3, 0x70, 0xc4, 0x53, 0x1c,
0x37, 0x4a, 0xc4, 0xee, 0x2c, 0xfb, 0x55, 0x58, 0xe4, 0x31, 0xac, 0xe0, 0x09, 0xe3, 0xe2, 0x28,
0x2e, 0xfb, 0xba, 0x89, 0xc6, 0x4f, 0x90, 0x48, 0xa5, 0xef, 0xf8, 0xaa, 0x45, 0x7f, 0x2a, 0x1c,
0x96, 0x49, 0x55, 0xbe, 0x14, 0xe7, 0x90, 0x5c, 0x83, 0x8e, 0x1c, 0xbf, 0x38, 0x0b, 0x94, 0xaf,
0x5c, 0x16, 0xc0, 0xf1, 0x59, 0x80, 0x91, 0xb8, 0xb3, 0x24, 0xa9, 0xf1, 0x5d, 0x81, 0x1d, 0xc8,
0x15, 0xbd, 0x07, 0x2b, 0x3a, 0x09, 0x2a, 0x46, 0x31, 0x3b, 0xe5, 0x3a, 0xc2, 0x4c, 0x66, 0x53,
0x1c, 0xae, 0x38, 0x64, 0xa7, 0x9c, 0x3e, 0x82, 0x75, 0x75, 0xda, 0xbe, 0xc8, 0x98, 0x1e, 0xfa,
0xfb, 0x55, 0x3b, 0x2b, 0x9d, 0xe6, 0x86, 0xd2, 0x22, 0x3b, 0x2c, 0xae, 0x18, 0x5f, 0xea, 0x03,
0x51, 0xdd, 0x77, 0xe3, 0xb4, 0x60, 0x8a, 0x21, 0x85, 0xde, 0x38, 0x4e, 0x8b, 0x6a, 0xec, 0x6c,
0x63, 0x28, 0xb7, 0x62, 0x36, 0x1e, 0xe3, 0x29, 0x95, 0x6e, 0x57, 0x37, 0xe9, 0xcf, 0x3c, 0xd8,
0x10, 0xdc, 0xb4, 0x5d, 0x30, 0x31, 0xd9, 0x9b, 0x4f, 0xb3, 0x37, 0xb6, 0x63, 0xf9, 0xb7, 0x55,
0x1e, 0x17, 0x47, 0xd3, 0x48, 0x3b, 0xcb, 0x0e, 0x22, 0x87, 0x08, 0xa0, 0x2a, 0x9f, 0xa6, 0xf9,
0x98, 0x09, 0x89, 0x2d, 0xfb, 0xb2, 0x41, 0xff, 0xcd, 0x83, 0x75, 0x31, 0x8d, 0x63, 0x1e, 0xf0,
0x59, 0xa1, 0x96, 0xf6, 0xbb, 0xd0, 0xc7, 0x65, 0x30, 0xad, 0xc6, 0x6a, 0x12, 0x9b, 0xe6, 0xc4,
0x09, 0x54, 0x12, 0x1f, 0xbc, 0xe5, 0xbb, 0xc4, 0xe4, 0x13, 0xe8, 0xd9, 0x59, 0xaa, 0x4a, 0x4c,
0xae, 0xea, 0x15, 0xd4, 0xb4, 0xe2, 0xe0, 0x2d, 0xdf, 0xf9, 0x80, 0xdc, 0x01, 0x10, 0xde, 0x4d,
0xb0, 0x15, 0xf3, 0xb5, 0x3e, 0xaf, 0x6d, 0xc4, 0xc1, 0x5b, 0xbe, 0x45, 0xfe, 0xe9, 0x32, 0x2c,
0x49, 0xa3, 0x4f, 0x1f, 0x42, 0xdf, 0x99, 0xa9, 0x13, 0x19, 0xf7, 0x64, 0x64, 0x5c, 0xcb, 0x58,
0x5a, 0x0d, 0x19, 0xcb, 0x7f, 0x7b, 0x40, 0x50, 0x93, 0x2a, 0x5b, 0xf5, 0x3e, 0xac, 0xf0, 0x20,
0x9f, 0x30, 0x3e, 0x72, 0x83, 0xa5, 0x0a, 0x2a, 0xbc, 0x53, 0x1a, 0x3a, 0x51, 0x40, 0xcf, 0xb7,
0x21, 0xb2, 0x03, 0xc4, 0x6a, 0xea, 0xfc, 0x52, 0xda, 0xf5, 0x86, 0x1e, 0x34, 0x40, 0xd2, 0x85,
0xeb, 0x04, 0x4c, 0x45, 0x48, 0x6d, 0xb1, 0xe9, 0x8d, 0x7d, 0x68, 0xba, 0xb3, 0x19, 0x26, 0xaf,
0x01, 0xd7, 0x71, 0x82, 0x6e, 0x6b, 0x53, 0x23, 0x8e, 0x95, 0xb2, 0x24, 0x25, 0x40, 0x7f, 0xe5,
0xc1, 0x1a, 0x2e, 0xdf, 0x51, 0x91, 0x8f, 0x41, 0x68, 0xdf, 0x1b, 0x6a, 0x88, 0x43, 0xfb, 0x7f,
0x57, 0x90, 0xdb, 0xd0, 0x11, 0x0c, 0xd3, 0x8c, 0x25, 0x4a, 0x3f, 0x06, 0xae, 0x7e, 0x94, 0x07,
0xff, 0xe0, 0x2d, 0xbf, 0x24, 0xb6, 0xb4, 0xe3, 0x0a, 0x5c, 0x56, 0xb3, 0x74, 0xb7, 0x95, 0xfe,
0x6d, 0x07, 0xb6, 0xaa, 0x3d, 0xc6, 0xc7, 0xab, 0xc0, 0x25, 0x8e, 0xa6, 0x27, 0xa9, 0x89, 0x81,
0x3c, 0x3b, 0xa6, 0x71, 0xba, 0xc8, 0x29, 0x5c, 0xd6, 0xae, 0x00, 0xc7, 0x2f, 0x0d, 0x7f, 0x4b,
0xf8, 0xb0, 0x5b, 0xae, 0xbc, 0x2a, 0xe3, 0x69, 0xd8, 0xd6, 0xbd, 0x66, 0x76, 0x64, 0x02, 0x03,
0xe3, 0x72, 0x94, 0x01, 0xb2, 0xdc, 0x12, 0x0e, 0xf5, 0x9d, 0x57, 0x0f, 0x25, 0x0e, 0x54, 0xa8,
0xd1, 0x0b, 0x99, 0x91, 0xe7, 0xf0, 0x8e, 0xee, 0x13, 0x16, 0xa4, 0x3e, 0x5c, 0xfb, 0x4d, 0x56,
0xf6, 0x00, 0xbf, 0x75, 0xc7, 0x7c, 0x0d, 0xdf, 0xe1, 0x3f, 0x7b, 0xb0, 0xe2, 0x72, 0x43, 0x07,
0xa6, 0x62, 0x54, 0x7d, 0x48, 0xb4, 0x23, 0xaf, 0xc0, 0xf5, 0x28, 0xbb, 0xd5, 0x14, 0x65, 0xdb,
0xb1, 0xf4, 0xc2, 0xeb, 0x62, 0xe9, 0xf6, 0x9b, 0xc5, 0xd2, 0x8b, 0x4d, 0xb1, 0xf4, 0xf0, 0x1f,
0x3d, 0x20, 0xf5, 0xdd, 0x25, 0x0f, 0x64, 0x98, 0x9f, 0xb0, 0x58, 0x1d, 0xa8, 0xef, 0xbe, 0x91,
0x82, 0x68, 0x58, 0x7f, 0x8c, 0x8a, 0x6a, 0x1f, 0x18, 0xdb, 0xa3, 0xf6, 0xfd, 0xa6, 0x2e, 0x4c,
0x81, 0x84, 0xa3, 0x2d, 0x46, 0x3c, 0x8a, 0xe3, 0xf2, 0x64, 0xf5, 0xfd, 0x1a, 0x3e, 0x7c, 0x01,
0x7d, 0x67, 0xeb, 0xfe, 0xdf, 0xa6, 0x5d, 0x75, 0xa9, 0x72, 0x93, 0x1c, 0x6c, 0xf8, 0x4d, 0x0b,
0x48, 0x5d, 0x7b, 0x7e, 0x9d, 0x53, 0x10, 0xaa, 0xe0, 0x18, 0x80, 0x05, 0xa5, 0x0a, 0xce, 0xd1,
0xdf, 0x86, 0xd5, 0x29, 0xe6, 0xfa, 0x18, 0x4e, 0x3a, 0x09, 0x68, 0x15, 0xc6, 0xdd, 0x2a, 0x65,
0x3c, 0xd2, 0xbd, 0x2a, 0xe6, 0x6b, 0xea, 0xa2, 0xdf, 0x87, 0xcd, 0x27, 0x41, 0x1c, 0x33, 0xfe,
0xa9, 0x1c, 0x4c, 0xbb, 0xa4, 0x77, 0xa1, 0xf7, 0x4c, 0xd6, 0x50, 0x46, 0x69, 0x12, 0xcf, 0x55,
0x42, 0xda, 0x55, 0xd8, 0x17, 0x49, 0x3c, 0xc7, 0x0c, 0xbe, 0xf2, 0x69, 0x99, 0xf4, 0xdb, 0x06,
0xcd, 0xf3, 0x75, 0x13, 0x4d, 0xa5, 0x92, 0x93, 0x3b, 0x1c, 0xdd, 0x83, 0xad, 0x6a, 0x47, 0x33,
0xb3, 0x85, 0x92, 0xd9, 0x27, 0x40, 0x7e, 0x38, 0x63, 0xf9, 0x5c, 0x14, 0x28, 0x4d, 0x29, 0xea,
0x4a, 0x35, 0x05, 0x5a, 0xca, 0x66, 0x27, 0x3f, 0x60, 0x73, 0x5d, 0xb0, 0x6d, 0x99, 0x82, 0x2d,
0xbd, 0x03, 0x1b, 0x0e, 0x03, 0x35, 0xe2, 0x7b, 0xb0, 0x24, 0x8a, 0x9c, 0x3a, 0x3d, 0x70, 0x0b,
0xa1, 0xaa, 0x8f, 0xfe, 0x29, 0x2c, 0x1c, 0xa4, 0x99, 0x9d, 0x4e, 0x7b, 0x6e, 0x3a, 0xad, 0x0c,
0xc5, 0xc8, 0xd8, 0x01, 0x39, 0xb2, 0x0b, 0xe2, 0x31, 0x0f, 0xa6, 0x1c, 0xe3, 0xe3, 0xd3, 0x34,
0x7f, 0x16, 0xe4, 0xa1, 0x52, 0x81, 0x0a, 0x8a, 0xb3, 0x3f, 0x65, 0xda, 0x54, 0xe0, 0x4f, 0xfa,
0x73, 0x0f, 0x16, 0xc5, 0x94, 0x50, 0x3f, 0xa4, 0xc7, 0x90, 0x51, 0x5b, 0x3a, 0x7e, 0x2a, 0xe6,
0xd2, 0xf7, 0xab, 0x70, 0xa5, 0x02, 0xdf, 0xaa, 0x56, 0xe0, 0xd1, 0x7d, 0xcb, 0x56, 0x59, 0xda,
0x2e, 0x01, 0xf2, 0x0e, 0xb4, 0xcf, 0xd2, 0x4c, 0xdb, 0x65, 0xd0, 0x19, 0x6f, 0x9a, 0xf9, 0x02,
0xa7, 0x37, 0x61, 0xf5, 0x51, 0x1a, 0x32, 0x2b, 0x69, 0xba, 0x70, 0x37, 0xe8, 0x9f, 0x79, 0xb0,
0xac, 0x89, 0xc9, 0x36, 0xb4, 0xd1, 0xbe, 0x56, 0x5c, 0xbf, 0xa9, 0x3e, 0x21, 0x9d, 0x2f, 0x28,
0xf0, 0x50, 0x89, 0x70, 0xa2, 0x74, 0x7e, 0x3a, 0x68, 0x2f, 0x1d, 0x0b, 0x46, 0x53, 0x62, 0xce,
0x15, 0x0b, 0x5c, 0x41, 0xe9, 0x2f, 0x3c, 0xe8, 0x3b, 0x63, 0x60, 0x7c, 0x15, 0x07, 0x05, 0x57,
0xb9, 0xbe, 0x12, 0xa2, 0x0d, 0xd9, 0x09, 0x76, 0xcb, 0x4d, 0xb0, 0x4d, 0x82, 0xb7, 0x60, 0x27,
0x78, 0xb7, 0xa0, 0xa3, 0xb2, 0x69, 0xa6, 0xe5, 0xa6, 0xef, 0x27, 0x70, 0x44, 0x5d, 0x57, 0x2b,
0x89, 0xe8, 0x1d, 0xe8, 0x5a, 0x3d, 0x38, 0x60, 0xc2, 0xf8, 0xb3, 0x34, 0x7f, 0xaa, 0x33, 0x7a,
0xd5, 0x34, 0xe5, 0xdd, 0x56, 0x59, 0xde, 0xa5, 0x7f, 0xef, 0x41, 0x1f, 0x75, 0x22, 0x4a, 0x26,
0x47, 0x69, 0x1c, 0x8d, 0xe7, 0x42, 0x37, 0xf4, 0xf6, 0x8f, 0x42, 0x16, 0xf3, 0xc0, 0xe8, 0x86,
0x0b, 0xa3, 0xcb, 0x9a, 0x46, 0x89, 0x28, 0x59, 0x28, 0xcd, 0x30, 0x6d, 0xd4, 0xe5, 0x53, 0x86,
0x3e, 0xa7, 0x60, 0xa3, 0x29, 0xc6, 0x7d, 0xca, 0x4e, 0x39, 0x20, 0x5a, 0x1f, 0x04, 0xf2, 0x80,
0xb3, 0xd1, 0x34, 0x8a, 0xe3, 0x48, 0xd2, 0x4a, 0x9d, 0x6d, 0xea, 0xa2, 0xff, 0xd4, 0x82, 0xae,
0x3a, 0xf7, 0xf7, 0xc3, 0x09, 0x43, 0xfd, 0xd4, 0x7e, 0xd4, 0x1c, 0x28, 0x0b, 0xd1, 0xfd, 0x8e,
0xe7, 0xb5, 0x90, 0xea, 0x06, 0x2e, 0xd4, 0x37, 0x10, 0x03, 0xd4, 0x34, 0x64, 0x1f, 0x0a, 0x17,
0x2f, 0xaf, 0xb9, 0x4a, 0x40, 0xf7, 0xee, 0x89, 0xde, 0xc5, 0xb2, 0x57, 0x00, 0x8e, 0x53, 0x5f,
0xaa, 0x38, 0xf5, 0xdb, 0xd0, 0x53, 0x6c, 0x84, 0xdc, 0x45, 0x4d, 0xa3, 0x54, 0x65, 0x67, 0x4f,
0x7c, 0x87, 0x52, 0x7f, 0xb9, 0xa7, 0xbf, 0x5c, 0x7e, 0xdd, 0x97, 0x9a, 0x92, 0x5e, 0x86, 0x0d,
0x25, 0xbc, 0x87, 0x79, 0x90, 0x9d, 0x69, 0x5b, 0x1a, 0x9a, 0xab, 0x19, 0x01, 0x93, 0x9b, 0xb0,
0x88, 0x9f, 0x69, 0x73, 0xd6, 0x7c, 0xbc, 0x24, 0x09, 0xd9, 0x86, 0x45, 0x16, 0x4e, 0x98, 0x8e,
0x2a, 0x89, 0x1b, 0x0b, 0xe3, 0x1e, 0xf9, 0x92, 0x00, 0x0f, 0x3b, 0xa2, 0x95, 0xc3, 0xee, 0xda,
0x42, 0x4c, 0xe1, 0x93, 0xcf, 0x42, 0xba, 0x09, 0xe4, 0x91, 0xd4, 0x5a, 0xbb, 0xa0, 0xf2, 0xe7,
0x0b, 0xd0, 0xb5, 0x60, 0x3c, 0xb7, 0x13, 0x9c, 0xf0, 0x28, 0x8c, 0x82, 0x29, 0xe3, 0x2c, 0x57,
0x9a, 0x5a, 0x41, 0x85, 0xc9, 0x3c, 0x9f, 0x8c, 0xd2, 0x19, 0x1f, 0x85, 0x6c, 0x92, 0x33, 0x59,
0x13, 0xf7, 0xfc, 0x0a, 0x8a, 0x74, 0xd3, 0xe0, 0xb9, 0x4d, 0x27, 0xf5, 0xa1, 0x82, 0xea, 0x9c,
0x45, 0xca, 0xa8, 0x5d, 0xe6, 0x2c, 0x52, 0x22, 0x55, 0x8b, 0xb3, 0xd8, 0x60, 0x71, 0x3e, 0x82,
0x2d, 0x69, 0x5b, 0xd4, 0xd9, 0x1c, 0x55, 0xd4, 0xe4, 0x82, 0x5e, 0x0c, 0x95, 0x70, 0xce, 0x5a,
0xc1, 0x8b, 0xe8, 0xa7, 0xb2, 0x62, 0xea, 0xf9, 0x35, 0x1c, 0x69, 0xf1, 0x38, 0x3a, 0xb4, 0xb2,
0x64, 0x5a, 0xc3, 0x05, 0x6d, 0xf0, 0xdc, 0xa5, 0xed, 0x28, 0xda, 0x0a, 0x4e, 0xfb, 0xd0, 0x3d,
0xe6, 0x69, 0xa6, 0x37, 0x65, 0x05, 0x7a, 0xb2, 0xa9, 0x2a, 0xeb, 0xd7, 0xe0, 0xaa, 0xd0, 0xa2,
0xc7, 0x69, 0x96, 0xc6, 0xe9, 0x64, 0x7e, 0x3c, 0x3b, 0x29, 0xc6, 0x79, 0x94, 0x61, 0xc4, 0x47,
0xff, 0xc5, 0x83, 0x0d, 0xa7, 0x57, 0xa5, 0x74, 0xbf, 0x25, 0x55, 0xda, 0x94, 0x51, 0xa5, 0xe2,
0xad, 0x5b, 0x86, 0x4f, 0x12, 0xca, 0xdc, 0xf5, 0x4b, 0x55, 0x59, 0xdd, 0x87, 0x55, 0x3d, 0x33,
0xfd, 0xa1, 0xd4, 0xc2, 0x41, 0x5d, 0x0b, 0xd5, 0xf7, 0x2b, 0xea, 0x03, 0xcd, 0xe2, 0xf7, 0x64,
0xcc, 0xc5, 0x42, 0xb1, 0x46, 0x9d, 0xb0, 0x0c, 0xf5, 0xf7, 0x76, 0x9c, 0xa7, 0x67, 0x30, 0x36,
0x60, 0x41, 0xff, 0xd2, 0x03, 0x28, 0x67, 0x87, 0x8a, 0x51, 0x1a, 0x6f, 0x4f, 0x14, 0xa5, 0x4a,
0x00, 0x23, 0x24, 0x53, 0xe4, 0x2b, 0xfd, 0x41, 0x57, 0x63, 0x18, 0x72, 0x7c, 0x00, 0xab, 0x93,
0x38, 0x3d, 0x11, 0xde, 0x55, 0x5c, 0xd6, 0x14, 0xea, 0x7e, 0x61, 0x45, 0xc2, 0x0f, 0x14, 0x5a,
0x3a, 0x8f, 0xb6, 0xe5, 0x3c, 0xe8, 0x5f, 0xb5, 0x4c, 0xf9, 0xa9, 0x5c, 0xf3, 0x85, 0xa7, 0x8c,
0xec, 0xd5, 0x8c, 0xe3, 0x05, 0xd5, 0x1e, 0x91, 0xc5, 0x1e, 0xbd, 0x36, 0x4f, 0xb9, 0x03, 0x2b,
0xb9, 0xb4, 0x3e, 0xda, 0x34, 0xb5, 0x5f, 0x61, 0x9a, 0xfa, 0xb9, 0xe3, 0x77, 0x7e, 0x03, 0xd6,
0x82, 0xf0, 0x9c, 0xe5, 0x3c, 0x12, 0xd1, 0xae, 0x70, 0xef, 0xd2, 0xa0, 0xae, 0x5a, 0xb8, 0xf0,
0xba, 0x1f, 0xc0, 0xaa, 0xba, 0xd3, 0x31, 0x94, 0xea, 0x92, 0xbb, 0x84, 0x91, 0x90, 0xfe, 0x9d,
0xae, 0x74, 0xb9, 0x7b, 0x78, 0xb1, 0x44, 0xec, 0xd5, 0xb5, 0x2a, 0xab, 0xfb, 0xb6, 0xaa, 0x4c,
0x85, 0x3a, 0xa4, 0x56, 0xf5, 0x3f, 0x09, 0xaa, 0x2a, 0xa1, 0x2b, 0xd2, 0xf6, 0x9b, 0x88, 0x94,
0xee, 0xc0, 0xea, 0x31, 0xe3, 0xfb, 0xb8, 0x83, 0xda, 0x30, 0x5e, 0x83, 0x4e, 0xc2, 0x9e, 0x8d,
0xe4, 0x16, 0x4b, 0x37, 0xbe, 0x9c, 0xb0, 0x67, 0x82, 0x86, 0x12, 0x58, 0x2b, 0xe9, 0xd5, 0xa9,
0xfb, 0xeb, 0x16, 0x5c, 0xfa, 0x2c, 0x39, 0x4f, 0xa3, 0xb1, 0xa8, 0x35, 0x4d, 0xd9, 0x34, 0xd5,
0xb7, 0xb0, 0xf8, 0x1b, 0xa3, 0x02, 0x71, 0x65, 0x91, 0x71, 0x55, 0x04, 0xd2, 0x4d, 0xf4, 0x90,
0x79, 0x79, 0xe5, 0x2f, 0xb5, 0xcd, 0x42, 0xc8, 0x16, 0x2c, 0xe5, 0xf6, 0xf3, 0x04, 0xd5, 0x2a,
0xaf, 0xa0, 0x17, 0xad, 0x2b, 0x68, 0x51, 0x75, 0x94, 0xb7, 0x31, 0x62, 0x4b, 0x96, 0x7d, 0xdd,
0x14, 0xd1, 0x6d, 0xce, 0xd4, 0x75, 0x16, 0xfa, 0xda, 0x4b, 0x2a, 0xba, 0xb5, 0x41, 0xf4, 0xc7,
0xf2, 0x03, 0x49, 0x23, 0xed, 0x95, 0x0d, 0x61, 0x7c, 0x52, 0x7d, 0xe1, 0xd0, 0x91, 0x6a, 0x52,
0x81, 0xe9, 0x57, 0x40, 0xf6, 0xc3, 0x50, 0x49, 0xc5, 0x04, 0xeb, 0xe5, 0x7a, 0x3c, 0x67, 0x3d,
0x0d, 0x7c, 0x5b, 0xcd, 0x7c, 0xef, 0x43, 0xf7, 0xc8, 0x7a, 0xa2, 0x21, 0x04, 0xa8, 0x1f, 0x67,
0x28, 0xa1, 0x5b, 0x88, 0x35, 0x60, 0xcb, 0x1e, 0x90, 0xfe, 0x0e, 0x90, 0xc3, 0xa8, 0xe0, 0x66,
0x7e, 0x26, 0x8d, 0x32, 0x65, 0x16, 0x2b, 0x8d, 0x52, 0x98, 0x48, 0xa3, 0xf6, 0xe5, 0xed, 0x50,
0x75, 0x61, 0x37, 0x61, 0x39, 0x92, 0x90, 0xb6, 0x9f, 0x2b, 0x4a, 0xf1, 0x34, 0xa5, 0xe9, 0xc7,
0x40, 0x40, 0x81, 0x8e, 0x79, 0xfe, 0xb9, 0x07, 0x97, 0xd4, 0xd2, 0xd0, 0x8d, 0x39, 0x8f, 0x53,
0xe4, 0xc2, 0x1c, 0xac, 0xf9, 0x19, 0x42, 0x7d, 0xa7, 0x17, 0x9a, 0x76, 0x9a, 0x40, 0x3b, 0x0b,
0xf8, 0x99, 0x88, 0x71, 0x3b, 0xbe, 0xf8, 0xad, 0x73, 0x96, 0xc5, 0x32, 0x67, 0x51, 0x37, 0x61,
0x6a, 0x52, 0xe6, 0x92, 0xe6, 0x53, 0x79, 0x13, 0x56, 0xc2, 0xa5, 0x0c, 0xd4, 0x04, 0xab, 0x32,
0x50, 0xa4, 0xbe, 0xe9, 0xa7, 0x43, 0x18, 0xdc, 0x63, 0x31, 0xe3, 0x6c, 0x3f, 0x8e, 0xab, 0xfc,
0xaf, 0xc1, 0xd5, 0x86, 0x3e, 0x75, 0xd6, 0x1e, 0xc0, 0xfa, 0x3d, 0x76, 0x32, 0x9b, 0x1c, 0xb2,
0xf3, 0xb2, 0x22, 0x4b, 0xa0, 0x5d, 0x9c, 0xa5, 0xcf, 0xd4, 0x7e, 0x89, 0xdf, 0xe4, 0x6d, 0x80,
0x18, 0x69, 0x46, 0x45, 0xc6, 0xc6, 0xfa, 0x1e, 0x5e, 0x20, 0xc7, 0x19, 0x1b, 0xd3, 0x8f, 0x80,
0xd8, 0x7c, 0xd4, 0x12, 0xf0, 0x04, 0xcc, 0x4e, 0x46, 0xc5, 0xbc, 0xe0, 0x6c, 0xaa, 0x0f, 0xbf,
0x0d, 0xd1, 0x0f, 0xa0, 0x77, 0x14, 0xcc, 0x7d, 0xf6, 0xb5, 0x7a, 0xf3, 0x83, 0x29, 0x53, 0x30,
0x47, 0xf5, 0x34, 0x29, 0x93, 0xe8, 0xa6, 0x39, 0x2c, 0x49, 0x42, 0x64, 0x1a, 0xb2, 0x82, 0x47,
0x89, 0xac, 0x7a, 0x2a, 0xa6, 0x16, 0x54, 0xdb, 0xee, 0x56, 0xc3, 0x76, 0xab, 0xc8, 0x46, 0x5f,
0x82, 0xaa, 0x7d, 0x75, 0xb0, 0xbd, 0xbf, 0x18, 0x42, 0xc7, 0x04, 0x8a, 0xe4, 0x27, 0xd0, 0x77,
0x32, 0x7e, 0x72, 0x4d, 0x6d, 0x47, 0x53, 0x09, 0x61, 0x78, 0xbd, 0xb9, 0x53, 0x89, 0xfd, 0x9d,
0x6f, 0x7e, 0xf5, 0xef, 0xbf, 0x68, 0x0d, 0xc8, 0xd6, 0xee, 0xf9, 0x87, 0xbb, 0x2a, 0xa5, 0xdf,
0x15, 0x15, 0x0a, 0x79, 0x51, 0xf4, 0x14, 0x56, 0xdc, 0x8a, 0x00, 0xb9, 0xee, 0x1a, 0xde, 0xca,
0x68, 0x6f, 0x5f, 0xd0, 0xab, 0x86, 0xbb, 0x2e, 0x86, 0xdb, 0x22, 0x9b, 0xf6, 0x70, 0x26, 0x80,
0x63, 0xe2, 0x6a, 0xcf, 0x7e, 0x79, 0x46, 0x34, 0xbf, 0xe6, 0x17, 0x69, 0xc3, 0xab, 0xf5, 0x57,
0x66, 0xea, 0x59, 0x1a, 0x1d, 0x88, 0xa1, 0x08, 0x59, 0xc3, 0xa1, 0xec, 0x87, 0x67, 0xe4, 0xc7,
0xd0, 0x31, 0xaf, 0x6c, 0xc8, 0x15, 0xeb, 0x4d, 0x91, 0xfd, 0x6e, 0x67, 0x38, 0xa8, 0x77, 0xe8,
0x60, 0x4c, 0x70, 0xbe, 0x4c, 0x6b, 0x9c, 0x3f, 0xf6, 0x6e, 0x92, 0x43, 0xb8, 0xac, 0x4e, 0xff,
0x09, 0xfb, 0xdf, 0xac, 0xa4, 0xe1, 0xbd, 0xdc, 0x2d, 0x8f, 0xdc, 0x81, 0x65, 0xfd, 0xf0, 0x88,
0x6c, 0x35, 0xbf, 0x7e, 0x1a, 0x5e, 0xa9, 0xe1, 0x4a, 0xe9, 0xf7, 0x01, 0xca, 0x77, 0x36, 0x64,
0x70, 0xd1, 0x73, 0x20, 0x23, 0xc4, 0x86, 0x47, 0x39, 0x13, 0xf1, 0xcc, 0xc8, 0x7d, 0xc6, 0x43,
0xbe, 0x55, 0xd2, 0x37, 0x3e, 0xf0, 0x79, 0x05, 0x43, 0xba, 0x25, 0x64, 0xb7, 0x46, 0x56, 0x50,
0x76, 0x09, 0x7b, 0xa6, 0x2f, 0xb9, 0xef, 0x41, 0xd7, 0x7a, 0xbb, 0x43, 0x34, 0x87, 0xfa, 0xbb,
0x9f, 0xe1, 0xb0, 0xa9, 0x4b, 0x4d, 0xf7, 0x0f, 0xa0, 0xef, 0x3c, 0xc2, 0x31, 0x27, 0xa3, 0xe9,
0x89, 0x8f, 0x39, 0x19, 0xcd, 0xef, 0x76, 0x7e, 0x04, 0x5d, 0xeb, 0x29, 0x0d, 0xb1, 0x6e, 0x33,
0x2a, 0x4f, 0x65, 0xcc, 0x8c, 0x1a, 0x5e, 0xde, 0xd0, 0x4d, 0xb1, 0xde, 0x15, 0xda, 0xc1, 0xf5,
0x8a, 0x9b, 0x5e, 0x54, 0x92, 0x9f, 0xc0, 0x8a, 0xfb, 0x84, 0xc6, 0x9c, 0xaa, 0xc6, 0xc7, 0x38,
0xe6, 0x54, 0x5d, 0xf0, 0xee, 0x46, 0x29, 0xe4, 0xcd, 0x0d, 0x33, 0xc8, 0xee, 0x0b, 0x55, 0x10,
0x79, 0x49, 0x7e, 0x88, 0xa6, 0x43, 0x5d, 0xbd, 0x93, 0xf2, 0x49, 0x91, 0x7b, 0x41, 0x6f, 0xb4,
0xbd, 0x76, 0x4b, 0x4f, 0xd7, 0x05, 0xf3, 0x2e, 0x29, 0x57, 0x40, 0x3e, 0x87, 0x4b, 0xea, 0x0a,
0x9e, 0x5c, 0x2e, 0xb5, 0xda, 0x4a, 0x2a, 0x87, 0x5b, 0x55, 0x58, 0x31, 0xdb, 0x10, 0xcc, 0xfa,
0xa4, 0x8b, 0xcc, 0x26, 0x8c, 0x47, 0xc8, 0x23, 0x86, 0x55, 0xb7, 0x7a, 0x5b, 0x18, 0x71, 0x34,
0xde, 0xe8, 0x18, 0x71, 0x34, 0x97, 0x82, 0x5d, 0x23, 0xa3, 0x8d, 0xcb, 0xae, 0xbe, 0xac, 0xfa,
0x63, 0xe8, 0xd9, 0xef, 0x3d, 0xc8, 0xd0, 0x5a, 0x79, 0xe5, 0x6d, 0xc8, 0xf0, 0x5a, 0x63, 0x9f,
0xbb, 0xb5, 0xa4, 0x67, 0x0f, 0x43, 0x7e, 0x04, 0xab, 0xd6, 0x05, 0xc0, 0xf1, 0x3c, 0x19, 0x1b,
0xd5, 0xa9, 0x5f, 0x39, 0x0e, 0x9b, 0xa2, 0x58, 0x7a, 0x45, 0x30, 0x5e, 0xa7, 0x0e, 0x63, 0x54,
0x9b, 0xbb, 0xd0, 0xb5, 0x2f, 0x17, 0x5e, 0xc1, 0xf7, 0x8a, 0xd5, 0x65, 0x5f, 0xf3, 0xdd, 0xf2,
0xc8, 0x2f, 0x3d, 0xe8, 0xd9, 0x17, 0xd5, 0xc4, 0xc9, 0xcb, 0x2a, 0x7c, 0x06, 0x76, 0x9f, 0xcd,
0x88, 0x7e, 0x25, 0x26, 0x79, 0x74, 0xf3, 0x91, 0x23, 0xe4, 0x17, 0xce, 0xfd, 0xcb, 0x8e, 0xfd,
0x9e, 0xf4, 0x65, 0xb5, 0xd3, 0xbe, 0x92, 0x7d, 0xb9, 0xfb, 0x42, 0xdc, 0x12, 0xbd, 0xbc, 0xe5,
0x91, 0x8f, 0xe5, 0xb3, 0x60, 0x1d, 0x32, 0x11, 0xcb, 0xbc, 0x55, 0xc5, 0x66, 0x3f, 0xb6, 0xdd,
0xf6, 0x6e, 0x79, 0xe4, 0x4f, 0xe4, 0x53, 0x52, 0xf5, 0xad, 0x90, 0xfe, 0x9b, 0x7e, 0x4f, 0xdf,
0x13, 0x2b, 0x7a, 0x87, 0x5e, 0x75, 0x56, 0x54, 0xb5, 0xef, 0x47, 0x00, 0x65, 0xfc, 0x4b, 0x2a,
0xc1, 0xa0, 0xb1, 0x7c, 0xf5, 0x10, 0xd9, 0xdd, 0x55, 0x1d, 0x33, 0x4a, 0x63, 0xd0, 0xb3, 0x22,
0xcf, 0xc2, 0x6c, 0x6b, 0x3d, 0x8e, 0x1d, 0x0e, 0x9b, 0xba, 0x14, 0xff, 0x6f, 0x0b, 0xfe, 0x6f,
0x93, 0x6b, 0x36, 0xff, 0xdd, 0x17, 0x76, 0xdc, 0xfb, 0x92, 0x7c, 0x05, 0xfd, 0xc3, 0x34, 0x7d,
0x3a, 0xcb, 0x4c, 0x5a, 0xe3, 0x46, 0x72, 0x18, 0x7b, 0x0f, 0x2b, 0x8b, 0xa2, 0xef, 0x0a, 0xce,
0xd7, 0xc8, 0x55, 0x97, 0x73, 0x19, 0x8d, 0xbf, 0x24, 0x01, 0xac, 0x1b, 0xaf, 0x67, 0x16, 0x32,
0x74, 0xf9, 0xd8, 0x41, 0x71, 0x6d, 0x0c, 0x27, 0x0e, 0x31, 0x63, 0x14, 0x9a, 0xe7, 0x2d, 0x8f,
0x1c, 0x41, 0xef, 0x1e, 0x1b, 0xa7, 0x21, 0x53, 0xd1, 0xd7, 0x46, 0x39, 0x73, 0x13, 0xb5, 0x0d,
0xfb, 0x0e, 0xe8, 0x5a, 0x82, 0x2c, 0x98, 0xe7, 0xec, 0xeb, 0xdd, 0x17, 0x2a, 0xac, 0x7b, 0xa9,
0x2d, 0x81, 0x0e, 0x45, 0x1d, 0x4b, 0x50, 0x89, 0x5d, 0x1d, 0x4b, 0x50, 0x8b, 0x5d, 0x1d, 0x4b,
0xa0, 0x43, 0x61, 0x12, 0x63, 0x44, 0x5b, 0x09, 0x77, 0x8d, 0xef, 0xbc, 0x28, 0x48, 0x1e, 0xde,
0xb8, 0x98, 0xc0, 0x1d, 0xed, 0xa6, 0x3b, 0xda, 0x31, 0xf4, 0xef, 0x31, 0x29, 0x2c, 0x59, 0x6f,
0x1c, 0xba, 0xa6, 0xc5, 0xae, 0x4d, 0x56, 0xcd, 0x8e, 0xe8, 0x73, 0x0d, 0xbd, 0x28, 0xf6, 0x91,
0x1f, 0x43, 0xf7, 0x21, 0xe3, 0xba, 0xc0, 0x68, 0x22, 0x90, 0x4a, 0xc5, 0x71, 0xd8, 0x50, 0x9f,
0xa4, 0x37, 0x04, 0xb7, 0x21, 0x19, 0x18, 0x6e, 0xbb, 0x2c, 0x9c, 0x30, 0x69, 0x04, 0x46, 0x51,
0xf8, 0x92, 0xfc, 0xa1, 0x60, 0x6e, 0x6e, 0x1f, 0xb6, 0xac, 0xba, 0x94, 0xcd, 0x7c, 0xb5, 0x82,
0x37, 0x71, 0x4e, 0xd2, 0x90, 0x59, 0x2e, 0x2f, 0x81, 0xae, 0x75, 0xa3, 0x64, 0x0e, 0x54, 0xfd,
0x9a, 0xca, 0x1c, 0xa8, 0x86, 0x0b, 0x28, 0xba, 0x2d, 0xc6, 0xa1, 0xe4, 0x46, 0x39, 0x8e, 0xbc,
0x74, 0x2a, 0x47, 0xda, 0x7d, 0x11, 0x4c, 0xf9, 0x4b, 0xf2, 0x44, 0xbc, 0x52, 0xb3, 0x8b, 0xa8,
0x65, 0x04, 0x54, 0xad, 0xb7, 0x1a, 0x61, 0x59, 0x5d, 0x6e, 0x54, 0x24, 0x87, 0x12, 0x9e, 0xf1,
0xb7, 0x01, 0x8e, 0x79, 0x9a, 0xdd, 0x0b, 0xd8, 0x34, 0x4d, 0x4a, 0x4b, 0x56, 0x16, 0x0a, 0x4b,
0x4b, 0x66, 0x55, 0x0b, 0xc9, 0x13, 0x2b, 0x06, 0x75, 0x6a, 0xd0, 0x5a, 0xb9, 0x2e, 0xac, 0x25,
0x1a, 0x81, 0x34, 0xd4, 0x13, 0x75, 0x38, 0x2a, 0x8b, 0x24, 0x56, 0x38, 0xea, 0x54, 0x59, 0xac,
0x70, 0xd4, 0xad, 0xa6, 0x60, 0x38, 0x5a, 0x66, 0x66, 0x26, 0x1c, 0xad, 0x25, 0x7d, 0xc6, 0x86,
0xd6, 0xd3, 0xb8, 0x93, 0x25, 0xf1, 0x5f, 0x39, 0xdf, 0xfb, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff,
0x15, 0xb0, 0xd3, 0xa4, 0xc7, 0x33, 0x00, 0x00,
// 4283 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x5b, 0xcd, 0x6f, 0x1c, 0xc9,
0x75, 0xdf, 0x1e, 0x0e, 0x29, 0xce, 0x9b, 0x19, 0x7e, 0x14, 0x29, 0x6a, 0x34, 0xd2, 0xae, 0xb5,
0xe5, 0xc5, 0x8a, 0x91, 0x0d, 0x52, 0x4b, 0x27, 0x1b, 0x79, 0x95, 0xc4, 0xe0, 0xea, 0x8b, 0x1b,
0x73, 0xb5, 0x74, 0x53, 0xbb, 0x4a, 0x6c, 0x04, 0x93, 0xe6, 0x74, 0x71, 0xd8, 0x56, 0x4f, 0x77,
0x6f, 0x77, 0x0d, 0xa5, 0xb1, 0x20, 0x24, 0xd8, 0x38, 0xb7, 0x04, 0x46, 0xe0, 0xbb, 0x91, 0x20,
0xe7, 0x5c, 0x72, 0x4c, 0xfe, 0x83, 0x00, 0x01, 0x02, 0xf8, 0x94, 0x7b, 0x90, 0x7b, 0x0e, 0xb9,
0xe5, 0x10, 0xbc, 0xfa, 0xea, 0xaa, 0xee, 0xa6, 0xa4, 0x20, 0x41, 0x4e, 0x9c, 0xfa, 0xd5, 0xeb,
0x57, 0x55, 0xaf, 0x5e, 0xbd, 0xaf, 0x2a, 0x42, 0x27, 0xcf, 0xc6, 0x3b, 0x59, 0x9e, 0xf2, 0x94,
0x2c, 0xc6, 0x49, 0x9e, 0x8d, 0x87, 0xd7, 0x27, 0x69, 0x3a, 0x89, 0xd9, 0x6e, 0x90, 0x45, 0xbb,
0x41, 0x92, 0xa4, 0x3c, 0xe0, 0x51, 0x9a, 0x14, 0x92, 0x88, 0xfe, 0x87, 0x07, 0xdd, 0x27, 0x79,
0x90, 0x14, 0xc1, 0x18, 0x61, 0x32, 0x80, 0x4b, 0xfc, 0xc5, 0xe8, 0x2c, 0x28, 0xce, 0x06, 0xde,
0x0d, 0x6f, 0xbb, 0xe3, 0xeb, 0x26, 0xd9, 0x82, 0xa5, 0x60, 0x9a, 0xce, 0x12, 0x3e, 0x68, 0xdd,
0xf0, 0xb6, 0x17, 0x7c, 0xd5, 0x22, 0xdf, 0x85, 0xf5, 0x64, 0x36, 0x1d, 0x8d, 0xd3, 0xe4, 0x34,
0xca, 0xa7, 0x92, 0xf9, 0x60, 0xe1, 0x86, 0xb7, 0xbd, 0xe8, 0xd7, 0x3b, 0xc8, 0x7b, 0x00, 0x27,
0x71, 0x3a, 0x7e, 0x26, 0x87, 0x68, 0x8b, 0x21, 0x2c, 0x84, 0x50, 0xe8, 0xa9, 0x16, 0x8b, 0x26,
0x67, 0x7c, 0xb0, 0x28, 0x18, 0x39, 0x18, 0xf2, 0xe0, 0xd1, 0x94, 0x8d, 0x0a, 0x1e, 0x4c, 0xb3,
0xc1, 0x92, 0x98, 0x8d, 0x85, 0x88, 0xfe, 0x94, 0x07, 0xf1, 0xe8, 0x94, 0xb1, 0x62, 0x70, 0x49,
0xf5, 0x1b, 0x84, 0x0e, 0x60, 0xeb, 0x11, 0xe3, 0xd6, 0xaa, 0x0b, 0x9f, 0x7d, 0x3d, 0x63, 0x05,
0xa7, 0x87, 0x40, 0x2c, 0xf8, 0x3e, 0xe3, 0x41, 0x14, 0x17, 0xe4, 0x63, 0xe8, 0x71, 0x8b, 0x78,
0xe0, 0xdd, 0x58, 0xd8, 0xee, 0xee, 0x91, 0x1d, 0x21, 0xdf, 0x1d, 0xeb, 0x03, 0xdf, 0xa1, 0xa3,
0xff, 0xe2, 0x41, 0xf7, 0x98, 0x25, 0xa1, 0xe2, 0x4e, 0x08, 0xb4, 0x43, 0x56, 0x70, 0x21, 0xd8,
0x9e, 0x2f, 0x7e, 0x93, 0x6f, 0x41, 0x17, 0xff, 0x8e, 0x0a, 0x9e, 0x47, 0xc9, 0x44, 0x88, 0xb6,
0xe3, 0x03, 0x42, 0xc7, 0x02, 0x21, 0x6b, 0xb0, 0x10, 0x4c, 0xb9, 0x10, 0xe8, 0x82, 0x8f, 0x3f,
0xc9, 0xfb, 0xd0, 0xcb, 0x82, 0xf9, 0x94, 0x25, 0xbc, 0x14, 0x62, 0xcf, 0xef, 0x2a, 0xec, 0x00,
0xa5, 0xb8, 0x03, 0x1b, 0x36, 0x89, 0xe6, 0xbe, 0x28, 0xb8, 0xaf, 0x5b, 0x94, 0x6a, 0x90, 0x9b,
0xb0, 0xaa, 0xe9, 0x73, 0x39, 0x59, 0x21, 0xd6, 0x8e, 0xbf, 0xa2, 0x60, 0x2d, 0xa0, 0x04, 0x7a,
0x72, 0x45, 0x45, 0x96, 0x26, 0x05, 0x23, 0xb7, 0x60, 0x4d, 0x7f, 0x98, 0xe5, 0x2c, 0x9a, 0x06,
0x13, 0xa6, 0x96, 0x57, 0xc3, 0xc9, 0x1e, 0xf4, 0xcd, 0x20, 0xe9, 0x8c, 0x33, 0xb1, 0xd8, 0xee,
0x5e, 0x4f, 0xc9, 0xd1, 0x47, 0xcc, 0x77, 0x49, 0xe8, 0x37, 0x1e, 0xf4, 0xee, 0x9d, 0x05, 0x49,
0xc2, 0xe2, 0xa3, 0x34, 0x4a, 0x38, 0xea, 0xc7, 0xe9, 0x2c, 0x09, 0xa3, 0x64, 0x32, 0xe2, 0x2f,
0xa2, 0x50, 0x0d, 0xe6, 0x60, 0x38, 0x29, 0xbb, 0x8d, 0xab, 0x57, 0x82, 0xad, 0xe1, 0xc8, 0x2f,
0x9d, 0xf1, 0x6c, 0xc6, 0x47, 0x51, 0x12, 0xb2, 0x17, 0x42, 0xce, 0x7d, 0xdf, 0xc1, 0xe8, 0xef,
0xc1, 0xda, 0x21, 0x2a, 0x5e, 0x12, 0x25, 0x93, 0xfd, 0x30, 0xcc, 0x59, 0x51, 0xe0, 0x69, 0xc8,
0x66, 0x27, 0xcf, 0xd8, 0x5c, 0x1d, 0x13, 0xd5, 0xc2, 0x3d, 0x3e, 0x4b, 0x0b, 0xae, 0xc6, 0x13,
0xbf, 0xe9, 0x5f, 0x7b, 0xb0, 0x8a, 0x52, 0xfb, 0x3c, 0x48, 0xe6, 0x5a, 0x17, 0x0e, 0xa1, 0x87,
0xac, 0x9e, 0xa4, 0xfb, 0xf2, 0x4c, 0x49, 0x9d, 0xda, 0x56, 0xb2, 0xa8, 0x50, 0xef, 0xd8, 0xa4,
0x0f, 0x12, 0x9e, 0xcf, 0x7d, 0xe7, 0xeb, 0xe1, 0x0f, 0x60, 0xbd, 0x46, 0x82, 0x9a, 0x53, 0xce,
0x0f, 0x7f, 0x92, 0x4d, 0x58, 0x3c, 0x0f, 0xe2, 0x19, 0x53, 0x27, 0x58, 0x36, 0x3e, 0x69, 0xdd,
0xf1, 0xe8, 0x87, 0xb0, 0x56, 0x8e, 0xa9, 0xf6, 0x96, 0x40, 0xdb, 0x88, 0xb8, 0xe3, 0x8b, 0xdf,
0x28, 0x0a, 0xa4, 0xbb, 0x97, 0x46, 0xe6, 0xd0, 0x20, 0x5d, 0x10, 0x86, 0xb9, 0xa6, 0xc3, 0xdf,
0x17, 0x19, 0x0b, 0x7a, 0x13, 0xd6, 0xad, 0xef, 0x5f, 0x33, 0xd0, 0xaf, 0x3c, 0x58, 0x7f, 0xcc,
0x9e, 0x2b, 0x71, 0xeb, 0xa1, 0xee, 0x40, 0x9b, 0xcf, 0x33, 0xa9, 0x62, 0x2b, 0x7b, 0x1f, 0x28,
0x69, 0xd5, 0xe8, 0x76, 0x54, 0xf3, 0xc9, 0x3c, 0x63, 0xbe, 0xf8, 0x82, 0x7e, 0x01, 0x5d, 0x0b,
0x24, 0x57, 0x60, 0xe3, 0xe9, 0x67, 0x4f, 0x1e, 0x3f, 0x38, 0x3e, 0x1e, 0x1d, 0x7d, 0xf9, 0xe9,
0x0f, 0x1f, 0xfc, 0xe1, 0xe8, 0x60, 0xff, 0xf8, 0x60, 0xed, 0x1d, 0xb2, 0x05, 0xe4, 0xf1, 0x83,
0xe3, 0x27, 0x0f, 0xee, 0x3b, 0xb8, 0x47, 0x56, 0xa1, 0x6b, 0x03, 0x2d, 0x3a, 0x84, 0xc1, 0x63,
0xf6, 0xfc, 0x69, 0xc4, 0x13, 0x56, 0x14, 0xee, 0xf0, 0x74, 0x07, 0x88, 0x3d, 0x27, 0xb5, 0xcc,
0x01, 0x5c, 0x0a, 0x24, 0xa4, 0x4d, 0xab, 0x6a, 0xd2, 0x0f, 0x81, 0x1c, 0x47, 0x93, 0xe4, 0x73,
0x56, 0x14, 0xc1, 0x84, 0xe9, 0xc5, 0xae, 0xc1, 0xc2, 0xb4, 0x98, 0x28, 0x0d, 0xc7, 0x9f, 0xf4,
0x7b, 0xb0, 0xe1, 0xd0, 0x29, 0xc6, 0xd7, 0xa1, 0x53, 0x44, 0x93, 0x24, 0xe0, 0xb3, 0x9c, 0x29,
0xd6, 0x25, 0x40, 0x1f, 0xc2, 0xe6, 0x57, 0x2c, 0x8f, 0x4e, 0xe7, 0x6f, 0x62, 0xef, 0xf2, 0x69,
0x55, 0xf9, 0x3c, 0x80, 0xcb, 0x15, 0x3e, 0x6a, 0x78, 0xa9, 0x55, 0x6a, 0xff, 0x96, 0x7d, 0xd9,
0xb0, 0x0e, 0x48, 0xcb, 0x3e, 0x20, 0xf4, 0x4b, 0x20, 0xf7, 0xd2, 0x24, 0x61, 0x63, 0x7e, 0xc4,
0x58, 0xae, 0x27, 0xf3, 0x1d, 0x4b, 0x87, 0xba, 0x7b, 0x57, 0xd4, 0xc6, 0x56, 0x4f, 0x9d, 0x52,
0x2e, 0x02, 0xed, 0x8c, 0xe5, 0x53, 0xc1, 0x78, 0xd9, 0x17, 0xbf, 0xe9, 0x2e, 0x6c, 0x38, 0x6c,
0x4b, 0x99, 0x67, 0x8c, 0xe5, 0x23, 0x35, 0xbb, 0x45, 0x5f, 0x37, 0xe9, 0x47, 0x70, 0xf9, 0x7e,
0x54, 0x8c, 0xeb, 0x53, 0xc1, 0x4f, 0x66, 0x27, 0xa3, 0xf2, 0xe8, 0xe8, 0x26, 0xfa, 0x8d, 0xea,
0x27, 0x72, 0x18, 0xfa, 0xf7, 0x1e, 0xb4, 0x0f, 0x9e, 0x1c, 0xde, 0x23, 0x43, 0x58, 0x8e, 0x92,
0x71, 0x3a, 0x45, 0x6b, 0x2b, 0xc5, 0x61, 0xda, 0x17, 0x3a, 0xd0, 0xeb, 0xd0, 0x11, 0x46, 0x1a,
0x5d, 0x9c, 0xb0, 0x3f, 0x3d, 0xbf, 0x04, 0xd0, 0xbd, 0xb2, 0x17, 0x59, 0x94, 0x0b, 0xff, 0xa9,
0xbd, 0x62, 0x5b, 0x58, 0xa9, 0x7a, 0x07, 0x9a, 0xbe, 0x9c, 0x9d, 0xa7, 0x63, 0x09, 0x86, 0x2c,
0x0e, 0xe6, 0xc2, 0xea, 0xf7, 0xfd, 0x1a, 0x4e, 0xff, 0x7d, 0x01, 0xfa, 0xfb, 0x63, 0x1e, 0x9d,
0x33, 0x65, 0x61, 0xc5, 0x0c, 0x05, 0xa0, 0xe6, 0xae, 0x5a, 0xe4, 0x03, 0xe8, 0xe7, 0x6c, 0x9a,
0x72, 0x36, 0x72, 0xb6, 0xd4, 0x05, 0x91, 0x6a, 0x2c, 0x19, 0x8d, 0x32, 0xb4, 0xd5, 0x62, 0x2d,
0x1d, 0xdf, 0x05, 0x51, 0xbc, 0x08, 0xe0, 0x8e, 0xe0, 0x2a, 0xda, 0xbe, 0x6e, 0xa2, 0xec, 0xc6,
0x41, 0x16, 0x8c, 0x23, 0x2e, 0xe7, 0xbc, 0xe0, 0x9b, 0x36, 0xf2, 0x8e, 0xd3, 0x71, 0x10, 0x8f,
0x4e, 0x82, 0x38, 0x48, 0xc6, 0x4c, 0x79, 0x7d, 0x17, 0x24, 0x1f, 0xc2, 0x8a, 0x9a, 0x92, 0x26,
0x93, 0xce, 0xbf, 0x82, 0xa2, 0x4c, 0x67, 0x49, 0xc1, 0x38, 0x8f, 0x59, 0x68, 0x48, 0x97, 0x05,
0x69, 0xbd, 0x83, 0xdc, 0x86, 0x0d, 0x19, 0x3c, 0x14, 0x01, 0x4f, 0x8b, 0xb3, 0xa8, 0x18, 0x15,
0x2c, 0xe1, 0x83, 0x8e, 0xa0, 0x6f, 0xea, 0x22, 0x77, 0xe0, 0x4a, 0x05, 0xce, 0xd9, 0x98, 0x45,
0xe7, 0x2c, 0x1c, 0x80, 0xf8, 0xea, 0xa2, 0x6e, 0x72, 0x03, 0xba, 0x18, 0x33, 0xcd, 0xb2, 0x30,
0xe0, 0xac, 0x18, 0x74, 0x85, 0x84, 0x6c, 0x88, 0x7c, 0x04, 0xfd, 0x8c, 0x49, 0x27, 0x76, 0xc6,
0xe3, 0x71, 0x31, 0xe8, 0x09, 0xcf, 0xd1, 0x55, 0x47, 0x06, 0xb5, 0xd0, 0x77, 0x29, 0xe8, 0x65,
0xd8, 0x38, 0x8c, 0x0a, 0xae, 0x76, 0xd9, 0x58, 0xa9, 0x03, 0xd8, 0x74, 0x61, 0x75, 0x66, 0x6e,
0xc3, 0xb2, 0xda, 0x32, 0x9c, 0x00, 0x32, 0xdf, 0x54, 0xcc, 0x1d, 0x6d, 0xf1, 0x0d, 0x15, 0xfd,
0x79, 0x0b, 0xda, 0x78, 0x1e, 0x2e, 0x3e, 0x3b, 0xf6, 0x41, 0x6c, 0x39, 0x07, 0xd1, 0x36, 0x8b,
0x0b, 0x8e, 0x59, 0x14, 0xb1, 0xe2, 0x9c, 0x33, 0x25, 0x6f, 0xa9, 0x2d, 0x16, 0x52, 0xf6, 0xe7,
0x6c, 0x7c, 0x2e, 0x54, 0xc6, 0xf4, 0x23, 0x82, 0x0a, 0x55, 0x04, 0x5c, 0x7e, 0x2d, 0xf5, 0xc5,
0xb4, 0x75, 0x9f, 0xf8, 0xf2, 0x52, 0xd9, 0x27, 0xbe, 0x1b, 0xc0, 0xa5, 0x28, 0x39, 0x49, 0x67,
0x49, 0x28, 0x94, 0x62, 0xd9, 0xd7, 0x4d, 0x3c, 0xaa, 0x99, 0x08, 0x1f, 0xa2, 0x29, 0x53, 0x0a,
0x50, 0x02, 0x94, 0x60, 0x9c, 0x50, 0x08, 0xcb, 0x60, 0x84, 0xfc, 0x31, 0xac, 0x5b, 0x98, 0x92,
0xf0, 0xfb, 0xb0, 0x88, 0xab, 0xd7, 0x91, 0xa4, 0xde, 0x3b, 0x61, 0x52, 0x64, 0x0f, 0x5d, 0x83,
0x95, 0x47, 0x8c, 0x7f, 0x96, 0x9c, 0xa6, 0x9a, 0xd3, 0x7f, 0xb6, 0x60, 0xd5, 0x40, 0x8a, 0xd1,
0x36, 0xac, 0x46, 0x21, 0x4b, 0x78, 0xc4, 0xe7, 0x23, 0x27, 0x1c, 0xa9, 0xc2, 0x68, 0xa4, 0x83,
0x38, 0x0a, 0x0a, 0x75, 0x74, 0x65, 0x83, 0xec, 0xc1, 0x26, 0xea, 0x96, 0x56, 0x17, 0xb3, 0xed,
0x32, 0x0a, 0x6a, 0xec, 0xc3, 0xe3, 0x80, 0xb8, 0x34, 0x0d, 0xe5, 0x27, 0xd2, 0x24, 0x35, 0x75,
0xa1, 0xd4, 0x24, 0x27, 0x5c, 0xb2, 0xb4, 0x46, 0x25, 0x50, 0x8b, 0xf8, 0x97, 0x64, 0x04, 0x56,
0x8d, 0xf8, 0xad, 0xac, 0x61, 0xb9, 0x96, 0x35, 0x6c, 0xc3, 0x6a, 0x31, 0x4f, 0xc6, 0x2c, 0x1c,
0xf1, 0x14, 0xc7, 0x8d, 0x12, 0xb1, 0x3b, 0xcb, 0x7e, 0x15, 0x16, 0xf9, 0x0d, 0x2b, 0x78, 0xc2,
0xb8, 0x38, 0x8a, 0xcb, 0xbe, 0x6e, 0xa2, 0xf1, 0x13, 0x24, 0x52, 0xe9, 0x3b, 0xbe, 0x6a, 0xd1,
0x9f, 0x09, 0x87, 0x65, 0x52, 0x98, 0x2f, 0xc5, 0x39, 0x24, 0xd7, 0xa0, 0x23, 0xc7, 0x2f, 0xce,
0x02, 0xe5, 0x43, 0x97, 0x05, 0x70, 0x7c, 0x16, 0x60, 0x84, 0xee, 0x2c, 0x49, 0x6a, 0x7c, 0x57,
0x60, 0x07, 0x72, 0x45, 0x1f, 0xc0, 0x8a, 0x4e, 0x8e, 0x8a, 0x51, 0xcc, 0x4e, 0xb9, 0x8e, 0x3c,
0x93, 0xd9, 0x14, 0x87, 0x2b, 0x0e, 0xd9, 0x29, 0xa7, 0x8f, 0x61, 0x5d, 0x9d, 0xb6, 0x2f, 0x32,
0xa6, 0x87, 0xfe, 0x7e, 0xd5, 0xce, 0x4a, 0xa7, 0xb9, 0xa1, 0xb4, 0xc8, 0x0e, 0x97, 0x2b, 0xc6,
0x97, 0xfa, 0x40, 0x54, 0xf7, 0xbd, 0x38, 0x2d, 0x98, 0x62, 0x48, 0xa1, 0x37, 0x8e, 0xd3, 0xa2,
0x1a, 0x53, 0xdb, 0x18, 0xca, 0xad, 0x98, 0x8d, 0xc7, 0x78, 0x4a, 0xa5, 0xdb, 0xd5, 0x4d, 0xfa,
0x73, 0x0f, 0x36, 0x04, 0x37, 0x6d, 0x17, 0x4c, 0xac, 0xf6, 0xf6, 0xd3, 0xec, 0x8d, 0xed, 0x18,
0xff, 0x5d, 0x95, 0xdf, 0xc5, 0xd1, 0x34, 0xd2, 0xce, 0xb2, 0x83, 0xc8, 0x21, 0x02, 0xa8, 0xca,
0xa7, 0x69, 0x3e, 0x66, 0x42, 0x62, 0xcb, 0xbe, 0x6c, 0xd0, 0x7f, 0xf5, 0x60, 0x5d, 0x4c, 0xe3,
0x98, 0x07, 0x7c, 0x56, 0xa8, 0xa5, 0xfd, 0x0e, 0xf4, 0x71, 0x19, 0x4c, 0xab, 0xb1, 0x9a, 0xc4,
0xa6, 0x39, 0x71, 0x02, 0x95, 0xc4, 0x07, 0xef, 0xf8, 0x2e, 0x31, 0xf9, 0x01, 0xf4, 0xec, 0xec,
0x55, 0x25, 0x2c, 0x57, 0xf5, 0x0a, 0x6a, 0x5a, 0x71, 0xf0, 0x8e, 0xef, 0x7c, 0x40, 0xee, 0x02,
0x08, 0xef, 0x26, 0xd8, 0x8a, 0xf9, 0x5a, 0x9f, 0xd7, 0x36, 0xe2, 0xe0, 0x1d, 0xdf, 0x22, 0xff,
0x74, 0x19, 0x96, 0xa4, 0xd1, 0xa7, 0x8f, 0xa0, 0xef, 0xcc, 0xd4, 0x89, 0x98, 0x7b, 0x32, 0x62,
0xae, 0x65, 0x32, 0xad, 0x86, 0x4c, 0xe6, 0xbf, 0x3c, 0x20, 0xa8, 0x49, 0x95, 0xad, 0xfa, 0x10,
0x56, 0x78, 0x90, 0x4f, 0x18, 0x1f, 0xb9, 0xc1, 0x52, 0x05, 0x15, 0xde, 0x29, 0x0d, 0x9d, 0x28,
0xa0, 0xe7, 0xdb, 0x10, 0xd9, 0x01, 0x62, 0x35, 0x75, 0xde, 0x29, 0xed, 0x7a, 0x43, 0x0f, 0x1a,
0x20, 0xe9, 0xc2, 0x75, 0x62, 0xa6, 0x22, 0xa4, 0xb6, 0xd8, 0xf4, 0xc6, 0x3e, 0x34, 0xdd, 0xd9,
0x0c, 0x93, 0xda, 0x80, 0xeb, 0x38, 0x41, 0xb7, 0xb5, 0xa9, 0x11, 0xc7, 0x4a, 0x59, 0x92, 0x12,
0xa0, 0xbf, 0xf6, 0x60, 0x0d, 0x97, 0xef, 0xa8, 0xc8, 0x27, 0x20, 0xb4, 0xef, 0x2d, 0x35, 0xc4,
0xa1, 0xfd, 0xdf, 0x2b, 0xc8, 0x1d, 0xe8, 0x08, 0x86, 0x69, 0xc6, 0x12, 0xa5, 0x1f, 0x03, 0x57,
0x3f, 0xca, 0x83, 0x7f, 0xf0, 0x8e, 0x5f, 0x12, 0x5b, 0xda, 0x71, 0x05, 0x2e, 0xab, 0x59, 0xba,
0xdb, 0x4a, 0xff, 0xa6, 0x03, 0x5b, 0xd5, 0x1e, 0xe3, 0xe3, 0x55, 0xe0, 0x12, 0x47, 0xd3, 0x93,
0xd4, 0xc4, 0x40, 0x9e, 0x1d, 0xd3, 0x38, 0x5d, 0xe4, 0x14, 0x2e, 0x6b, 0x57, 0x80, 0xe3, 0x97,
0x86, 0xbf, 0x25, 0x7c, 0xd8, 0x6d, 0x57, 0x5e, 0x95, 0xf1, 0x34, 0x6c, 0xeb, 0x5e, 0x33, 0x3b,
0x32, 0x81, 0x81, 0x71, 0x39, 0xca, 0x00, 0x59, 0x6e, 0x09, 0x87, 0xfa, 0xce, 0xeb, 0x87, 0x12,
0x07, 0x2a, 0xd4, 0xe8, 0x85, 0xcc, 0xc8, 0x0b, 0x78, 0x4f, 0xf7, 0x09, 0x0b, 0x52, 0x1f, 0xae,
0xfd, 0x36, 0x2b, 0x7b, 0x88, 0xdf, 0xba, 0x63, 0xbe, 0x81, 0xef, 0xf0, 0x9f, 0x3c, 0x58, 0x71,
0xb9, 0xa1, 0x03, 0x53, 0x31, 0xaa, 0x3e, 0x24, 0xda, 0x91, 0x57, 0xe0, 0x7a, 0x94, 0xdd, 0x6a,
0x8a, 0xb2, 0xed, 0x58, 0x7a, 0xe1, 0x4d, 0xb1, 0x74, 0xfb, 0xed, 0x62, 0xe9, 0xc5, 0xa6, 0x58,
0x7a, 0xf8, 0x0f, 0x1e, 0x90, 0xfa, 0xee, 0x92, 0x87, 0x32, 0xcc, 0x4f, 0x58, 0xac, 0x0e, 0xd4,
0x77, 0xdf, 0x4a, 0x41, 0x34, 0xac, 0x3f, 0x46, 0x45, 0xb5, 0x0f, 0x8c, 0xed, 0x51, 0xfb, 0x7e,
0x53, 0x17, 0xa6, 0x40, 0xc2, 0xd1, 0x16, 0x23, 0x1e, 0xc5, 0x71, 0x79, 0xb2, 0xfa, 0x7e, 0x0d,
0x1f, 0xbe, 0x84, 0xbe, 0xb3, 0x75, 0xff, 0x67, 0xd3, 0xae, 0xba, 0x54, 0xb9, 0x49, 0x0e, 0x36,
0xfc, 0xa6, 0x05, 0xa4, 0xae, 0x3d, 0xff, 0x9f, 0x53, 0x10, 0xaa, 0xe0, 0x18, 0x80, 0x05, 0xa5,
0x0a, 0xce, 0xd1, 0xdf, 0x86, 0xd5, 0x69, 0xc0, 0x67, 0x39, 0x86, 0x93, 0x4e, 0x02, 0x5a, 0x85,
0x71, 0xb7, 0x4a, 0x19, 0x8f, 0x74, 0xaf, 0x8a, 0xf9, 0x9a, 0xba, 0xe8, 0xf7, 0x61, 0xf3, 0x69,
0x10, 0xc7, 0x8c, 0x7f, 0x2a, 0x07, 0xd3, 0x2e, 0xe9, 0x7d, 0xe8, 0x3d, 0x97, 0xb5, 0x95, 0x51,
0x9a, 0xc4, 0x73, 0x95, 0x90, 0x76, 0x15, 0xf6, 0x45, 0x12, 0xcf, 0x31, 0x83, 0xaf, 0x7c, 0x5a,
0x26, 0xfd, 0xb6, 0x41, 0xf3, 0x7c, 0xdd, 0x44, 0x53, 0xa9, 0xe4, 0xe4, 0x0e, 0x47, 0xf7, 0x60,
0xab, 0xda, 0xd1, 0xcc, 0x6c, 0xa1, 0x64, 0xf6, 0x03, 0x20, 0x3f, 0x9a, 0xb1, 0x7c, 0x2e, 0x0a,
0x97, 0xa6, 0x44, 0x75, 0xa5, 0x9a, 0x02, 0x2d, 0x65, 0xb3, 0x93, 0x1f, 0xb2, 0xb9, 0x2e, 0xe4,
0xb6, 0x4c, 0x21, 0x97, 0xde, 0x85, 0x0d, 0x87, 0x81, 0x1a, 0xf1, 0x03, 0x58, 0x12, 0xc5, 0x4f,
0x9d, 0x1e, 0xb8, 0x05, 0x52, 0xd5, 0x47, 0xff, 0x04, 0x16, 0x0e, 0xd2, 0xcc, 0x4e, 0xa7, 0x3d,
0x37, 0x9d, 0x56, 0x86, 0x62, 0x64, 0xec, 0x80, 0x1c, 0xd9, 0x05, 0xf1, 0x98, 0x07, 0x53, 0x8e,
0xf1, 0xf1, 0x69, 0x9a, 0x3f, 0x0f, 0xf2, 0x50, 0xa9, 0x40, 0x05, 0xc5, 0xd9, 0x9f, 0x32, 0x6d,
0x2a, 0xf0, 0x27, 0xfd, 0x85, 0x07, 0x8b, 0x62, 0x4a, 0xa8, 0x1f, 0xd2, 0x63, 0xc8, 0xa8, 0x2d,
0x1d, 0x3f, 0x13, 0x73, 0xe9, 0xfb, 0x55, 0xb8, 0x52, 0x99, 0x6f, 0x55, 0x2b, 0xf3, 0xe8, 0xbe,
0x65, 0xab, 0x2c, 0x79, 0x97, 0x00, 0x79, 0x0f, 0xda, 0x67, 0x69, 0xa6, 0xed, 0x32, 0xe8, 0x8c,
0x37, 0xcd, 0x7c, 0x81, 0xd3, 0x5b, 0xb0, 0xfa, 0x38, 0x0d, 0x99, 0x95, 0x34, 0x5d, 0xb8, 0x1b,
0xf4, 0x4f, 0x3d, 0x58, 0xd6, 0xc4, 0x64, 0x1b, 0xda, 0x68, 0x5f, 0x2b, 0xae, 0xdf, 0x54, 0x9f,
0x90, 0xce, 0x17, 0x14, 0x78, 0xa8, 0x44, 0x38, 0x51, 0x3a, 0x3f, 0x1d, 0xb4, 0x97, 0x8e, 0x05,
0xa3, 0x29, 0x31, 0xe7, 0x8a, 0x05, 0xae, 0xa0, 0xf4, 0x97, 0x1e, 0xf4, 0x9d, 0x31, 0x30, 0xbe,
0x8a, 0x83, 0x82, 0xab, 0x5c, 0x5f, 0x09, 0xd1, 0x86, 0xec, 0x04, 0xbb, 0xe5, 0x26, 0xd8, 0x26,
0xc1, 0x5b, 0xb0, 0x13, 0xbc, 0xdb, 0xd0, 0x51, 0xd9, 0x34, 0xd3, 0x72, 0xd3, 0xf7, 0x16, 0x38,
0xa2, 0xae, 0xab, 0x95, 0x44, 0xf4, 0x2e, 0x74, 0xad, 0x1e, 0x1c, 0x30, 0x61, 0xfc, 0x79, 0x9a,
0x3f, 0xd3, 0x19, 0xbd, 0x6a, 0x9a, 0xb2, 0x6f, 0xab, 0x2c, 0xfb, 0xd2, 0xbf, 0xf3, 0xa0, 0x8f,
0x3a, 0x11, 0x25, 0x93, 0xa3, 0x34, 0x8e, 0xc6, 0x73, 0xa1, 0x1b, 0x7a, 0xfb, 0x47, 0x21, 0x8b,
0x79, 0x60, 0x74, 0xc3, 0x85, 0xd1, 0x65, 0x4d, 0xa3, 0x44, 0x94, 0x2c, 0x94, 0x66, 0x98, 0x36,
0xea, 0xf2, 0x29, 0x43, 0x9f, 0x53, 0xb0, 0xd1, 0x14, 0xe3, 0x3e, 0x65, 0xa7, 0x1c, 0x10, 0xad,
0x0f, 0x02, 0x79, 0xc0, 0xd9, 0x68, 0x1a, 0xc5, 0x71, 0x24, 0x69, 0xa5, 0xce, 0x36, 0x75, 0xd1,
0x7f, 0x6c, 0x41, 0x57, 0x9d, 0xfb, 0x07, 0xe1, 0x84, 0xa1, 0x7e, 0x6a, 0x3f, 0x6a, 0x0e, 0x94,
0x85, 0xe8, 0x7e, 0xc7, 0xf3, 0x5a, 0x48, 0x75, 0x03, 0x17, 0xea, 0x1b, 0x88, 0x01, 0x6a, 0x1a,
0xb2, 0x8f, 0x84, 0x8b, 0x97, 0xd7, 0x5f, 0x25, 0xa0, 0x7b, 0xf7, 0x44, 0xef, 0x62, 0xd9, 0x2b,
0x00, 0xc7, 0xa9, 0x2f, 0x55, 0x9c, 0xfa, 0x1d, 0xe8, 0x29, 0x36, 0x42, 0xee, 0xa2, 0xa6, 0x51,
0xaa, 0xb2, 0xb3, 0x27, 0xbe, 0x43, 0xa9, 0xbf, 0xdc, 0xd3, 0x5f, 0x2e, 0xbf, 0xe9, 0x4b, 0x4d,
0x49, 0x2f, 0xc3, 0x86, 0x12, 0xde, 0xa3, 0x3c, 0xc8, 0xce, 0xb4, 0x2d, 0x0d, 0xcd, 0x95, 0x8d,
0x80, 0xc9, 0x2d, 0x58, 0xc4, 0xcf, 0xb4, 0x39, 0x6b, 0x3e, 0x5e, 0x92, 0x84, 0x6c, 0xc3, 0x22,
0x0b, 0x27, 0x4c, 0x47, 0x95, 0xc4, 0x8d, 0x85, 0x71, 0x8f, 0x7c, 0x49, 0x80, 0x87, 0x1d, 0xd1,
0xca, 0x61, 0x77, 0x6d, 0x21, 0xa6, 0xf0, 0xc9, 0x67, 0x21, 0xdd, 0x04, 0xf2, 0x58, 0x6a, 0xad,
0x5d, 0x50, 0xf9, 0xb3, 0x05, 0xe8, 0x5a, 0x30, 0x9e, 0xdb, 0x09, 0x4e, 0x78, 0x14, 0x46, 0xc1,
0x94, 0x71, 0x96, 0x2b, 0x4d, 0xad, 0xa0, 0xc2, 0x64, 0x9e, 0x4f, 0x46, 0xe9, 0x8c, 0x8f, 0x42,
0x36, 0xc9, 0x99, 0xac, 0x95, 0x7b, 0x7e, 0x05, 0x45, 0xba, 0x69, 0xf0, 0xc2, 0xa6, 0x93, 0xfa,
0x50, 0x41, 0x75, 0xce, 0x22, 0x65, 0xd4, 0x2e, 0x73, 0x16, 0x29, 0x91, 0xaa, 0xc5, 0x59, 0x6c,
0xb0, 0x38, 0x1f, 0xc3, 0x96, 0xb4, 0x2d, 0xea, 0x6c, 0x8e, 0x2a, 0x6a, 0x72, 0x41, 0x2f, 0x86,
0x4a, 0x38, 0x67, 0xad, 0xe0, 0x45, 0xf4, 0x33, 0x59, 0x31, 0xf5, 0xfc, 0x1a, 0x8e, 0xb4, 0x78,
0x1c, 0x1d, 0x5a, 0x59, 0x32, 0xad, 0xe1, 0x82, 0x36, 0x78, 0xe1, 0xd2, 0x76, 0x14, 0x6d, 0x05,
0xa7, 0x7d, 0xe8, 0x1e, 0xf3, 0x34, 0xd3, 0x9b, 0xb2, 0x02, 0x3d, 0xd9, 0x54, 0x95, 0xf5, 0x6b,
0x70, 0x55, 0x68, 0xd1, 0x93, 0x34, 0x4b, 0xe3, 0x74, 0x32, 0x3f, 0x9e, 0x9d, 0x14, 0xe3, 0x3c,
0xca, 0x30, 0xe2, 0xa3, 0xff, 0xec, 0xc1, 0x86, 0xd3, 0xab, 0x52, 0xba, 0xdf, 0x94, 0x2a, 0x6d,
0xca, 0xa8, 0x52, 0xf1, 0xd6, 0x2d, 0xc3, 0x27, 0x09, 0x65, 0xee, 0xfa, 0xa5, 0xaa, 0xac, 0xee,
0xc3, 0xaa, 0x9e, 0x99, 0xfe, 0x50, 0x6a, 0xe1, 0xa0, 0xae, 0x85, 0xea, 0xfb, 0x15, 0xf5, 0x81,
0x66, 0xf1, 0xbb, 0x32, 0xe6, 0x62, 0xa1, 0x58, 0xa3, 0x4e, 0x58, 0x86, 0xfa, 0x7b, 0x3b, 0xce,
0xd3, 0x33, 0x18, 0x1b, 0xb0, 0xa0, 0x7f, 0xe1, 0x01, 0x94, 0xb3, 0x43, 0xc5, 0x28, 0x8d, 0xb7,
0x27, 0x8a, 0x52, 0x25, 0x80, 0x11, 0x92, 0x29, 0xf2, 0x95, 0xfe, 0xa0, 0xab, 0x31, 0x0c, 0x39,
0x6e, 0xc2, 0xea, 0x24, 0x4e, 0x4f, 0x84, 0x77, 0x15, 0x97, 0x38, 0x85, 0xba, 0x5f, 0x58, 0x91,
0xf0, 0x43, 0x85, 0x96, 0xce, 0xa3, 0x6d, 0x39, 0x0f, 0xfa, 0x97, 0x2d, 0x53, 0x7e, 0x2a, 0xd7,
0x7c, 0xe1, 0x29, 0x23, 0x7b, 0x35, 0xe3, 0x78, 0x41, 0xb5, 0x47, 0x64, 0xb1, 0x47, 0x6f, 0xcc,
0x53, 0xee, 0xc2, 0x4a, 0x2e, 0xad, 0x8f, 0x36, 0x4d, 0xed, 0xd7, 0x98, 0xa6, 0x7e, 0xee, 0xf8,
0x9d, 0xdf, 0x80, 0xb5, 0x20, 0x3c, 0x67, 0x39, 0x8f, 0x44, 0xb4, 0x2b, 0xdc, 0xbb, 0x34, 0xa8,
0xab, 0x16, 0x2e, 0xbc, 0xee, 0x4d, 0x58, 0x55, 0x77, 0x3a, 0x86, 0x52, 0x5d, 0x7e, 0x97, 0x30,
0x12, 0xd2, 0xbf, 0xd5, 0x95, 0x2e, 0x77, 0x0f, 0x2f, 0x96, 0x88, 0xbd, 0xba, 0x56, 0x65, 0x75,
0xdf, 0x56, 0x95, 0xa9, 0x50, 0x87, 0xd4, 0xaa, 0xfe, 0x27, 0x41, 0x55, 0x25, 0x74, 0x45, 0xda,
0x7e, 0x1b, 0x91, 0xd2, 0x1d, 0x58, 0x3d, 0x66, 0x7c, 0x1f, 0x77, 0x50, 0x1b, 0xc6, 0x6b, 0xd0,
0x49, 0xd8, 0xf3, 0x91, 0xdc, 0x62, 0xe9, 0xc6, 0x97, 0x13, 0xf6, 0x5c, 0xd0, 0x50, 0x02, 0x6b,
0x25, 0xbd, 0x3a, 0x75, 0x7f, 0xd5, 0x82, 0x4b, 0x9f, 0x25, 0xe7, 0x69, 0x34, 0x16, 0xb5, 0xa6,
0x29, 0x9b, 0xa6, 0xfa, 0x76, 0x16, 0x7f, 0x63, 0x54, 0x20, 0xae, 0x2c, 0x32, 0xae, 0x8a, 0x40,
0xba, 0x89, 0x1e, 0x32, 0x2f, 0x9f, 0x02, 0x48, 0x6d, 0xb3, 0x10, 0xb2, 0x05, 0x4b, 0xb9, 0xfd,
0x6c, 0x41, 0xb5, 0xca, 0xab, 0xe9, 0x45, 0xeb, 0x6a, 0x5a, 0x54, 0x1d, 0xe5, 0x6d, 0x8c, 0xd8,
0x92, 0x65, 0x5f, 0x37, 0x45, 0x74, 0x9b, 0x33, 0x75, 0x9d, 0x85, 0xbe, 0xf6, 0x92, 0x8a, 0x6e,
0x6d, 0x10, 0xfd, 0xb1, 0xfc, 0x40, 0xd2, 0x48, 0x7b, 0x65, 0x43, 0x18, 0x9f, 0x54, 0x5f, 0x3e,
0x74, 0xa4, 0x9a, 0x54, 0x60, 0xfa, 0x15, 0x90, 0xfd, 0x30, 0x54, 0x52, 0x31, 0xc1, 0x7a, 0xb9,
0x1e, 0xcf, 0x59, 0x4f, 0x03, 0xdf, 0x56, 0x33, 0xdf, 0x07, 0xd0, 0x3d, 0xb2, 0x9e, 0x6e, 0x08,
0x01, 0xea, 0x47, 0x1b, 0x4a, 0xe8, 0x16, 0x62, 0x0d, 0xd8, 0xb2, 0x07, 0xa4, 0xbf, 0x0d, 0xe4,
0x30, 0x2a, 0xb8, 0x99, 0x9f, 0x49, 0xa3, 0x4c, 0x99, 0xc5, 0x4a, 0xa3, 0x14, 0x26, 0xd2, 0xa8,
0x7d, 0x79, 0x3b, 0x54, 0x5d, 0xd8, 0x2d, 0x58, 0x8e, 0x24, 0xa4, 0xed, 0xe7, 0x8a, 0x52, 0x3c,
0x4d, 0x69, 0xfa, 0x31, 0x10, 0x50, 0xa0, 0x63, 0x9e, 0x7f, 0xe1, 0xc1, 0x25, 0xb5, 0x34, 0x74,
0x63, 0xce, 0xa3, 0x15, 0xb9, 0x30, 0x07, 0x6b, 0x7e, 0x9e, 0x50, 0xdf, 0xe9, 0x85, 0xa6, 0x9d,
0x26, 0xd0, 0xce, 0x02, 0x7e, 0x26, 0x62, 0xdc, 0x8e, 0x2f, 0x7e, 0xeb, 0x9c, 0x65, 0xb1, 0xcc,
0x59, 0xd4, 0x4d, 0x98, 0x9a, 0x94, 0xb9, 0xa4, 0xf9, 0x54, 0xde, 0x84, 0x95, 0x70, 0x29, 0x03,
0x35, 0xc1, 0xaa, 0x0c, 0x14, 0xa9, 0x6f, 0xfa, 0xe9, 0x10, 0x06, 0xf7, 0x59, 0xcc, 0x38, 0xdb,
0x8f, 0xe3, 0x2a, 0xff, 0x6b, 0x70, 0xb5, 0xa1, 0x4f, 0x9d, 0xb5, 0x87, 0xb0, 0x7e, 0x9f, 0x9d,
0xcc, 0x26, 0x87, 0xec, 0xbc, 0xac, 0xc8, 0x12, 0x68, 0x17, 0x67, 0xe9, 0x73, 0xb5, 0x5f, 0xe2,
0x37, 0x79, 0x17, 0x20, 0x46, 0x9a, 0x51, 0x91, 0xb1, 0xb1, 0xbe, 0x9f, 0x17, 0xc8, 0x71, 0xc6,
0xc6, 0xf4, 0x63, 0x20, 0x36, 0x1f, 0xb5, 0x04, 0x3c, 0x01, 0xb3, 0x93, 0x51, 0x31, 0x2f, 0x38,
0x9b, 0xea, 0xc3, 0x6f, 0x43, 0xf4, 0x26, 0xf4, 0x8e, 0x82, 0xb9, 0xcf, 0xbe, 0x56, 0x6f, 0x81,
0x30, 0x65, 0x0a, 0xe6, 0xa8, 0x9e, 0x26, 0x65, 0x12, 0xdd, 0x34, 0x87, 0x25, 0x49, 0x88, 0x4c,
0x43, 0x56, 0xf0, 0x28, 0x91, 0x55, 0x4f, 0xc5, 0xd4, 0x82, 0x6a, 0xdb, 0xdd, 0x6a, 0xd8, 0x6e,
0x15, 0xd9, 0xe8, 0x4b, 0x50, 0xb5, 0xaf, 0x0e, 0xb6, 0xf7, 0xe7, 0x43, 0xe8, 0x98, 0x40, 0x91,
0xfc, 0x14, 0xfa, 0x4e, 0xc6, 0x4f, 0xae, 0xa9, 0xed, 0x68, 0x2a, 0x21, 0x0c, 0xaf, 0x37, 0x77,
0x2a, 0xb1, 0xbf, 0xf7, 0xcd, 0xaf, 0xff, 0xed, 0x97, 0xad, 0x01, 0xd9, 0xda, 0x3d, 0xff, 0x68,
0x57, 0xa5, 0xf4, 0xbb, 0xa2, 0x42, 0x21, 0x2f, 0x8a, 0x9e, 0xc1, 0x8a, 0x5b, 0x11, 0x20, 0xd7,
0x5d, 0xc3, 0x5b, 0x19, 0xed, 0xdd, 0x0b, 0x7a, 0xd5, 0x70, 0xd7, 0xc5, 0x70, 0x5b, 0x64, 0xd3,
0x1e, 0xce, 0x04, 0x70, 0x4c, 0x5c, 0xed, 0xd9, 0x2f, 0xd2, 0x88, 0xe6, 0xd7, 0xfc, 0x52, 0x6d,
0x78, 0xb5, 0xfe, 0xfa, 0x4c, 0x3d, 0x57, 0xa3, 0x03, 0x31, 0x14, 0x21, 0x6b, 0x38, 0x94, 0xfd,
0x20, 0x8d, 0xfc, 0x04, 0x3a, 0xe6, 0xf5, 0x0d, 0xb9, 0x62, 0xbd, 0x35, 0xb2, 0xdf, 0xf3, 0x0c,
0x07, 0xf5, 0x0e, 0x1d, 0x8c, 0x09, 0xce, 0x97, 0x69, 0x8d, 0xf3, 0x27, 0xde, 0x2d, 0x72, 0x08,
0x97, 0xd5, 0xe9, 0x3f, 0x61, 0xff, 0x93, 0x95, 0x34, 0xbc, 0xa3, 0xbb, 0xed, 0x91, 0xbb, 0xb0,
0xac, 0x1f, 0x24, 0x91, 0xad, 0xe6, 0x57, 0x51, 0xc3, 0x2b, 0x35, 0x5c, 0x29, 0xfd, 0x3e, 0x40,
0xf9, 0xfe, 0x86, 0x0c, 0x2e, 0x7a, 0x26, 0x64, 0x84, 0xd8, 0xf0, 0x58, 0x67, 0x22, 0x9e, 0x1f,
0xb9, 0xcf, 0x7b, 0xc8, 0xb7, 0x4a, 0xfa, 0xc6, 0x87, 0x3f, 0xaf, 0x61, 0x48, 0xb7, 0x84, 0xec,
0xd6, 0xc8, 0x0a, 0xca, 0x2e, 0x61, 0xcf, 0xf5, 0x25, 0xf7, 0x7d, 0xe8, 0x5a, 0x6f, 0x7a, 0x88,
0xe6, 0x50, 0x7f, 0x0f, 0x34, 0x1c, 0x36, 0x75, 0xa9, 0xe9, 0xfe, 0x3e, 0xf4, 0x9d, 0xc7, 0x39,
0xe6, 0x64, 0x34, 0x3d, 0xfd, 0x31, 0x27, 0xa3, 0xf9, 0x3d, 0xcf, 0x8f, 0xa1, 0x6b, 0x3d, 0xa5,
0x21, 0xd6, 0x6d, 0x46, 0xe5, 0xa9, 0x8c, 0x99, 0x51, 0xc3, 0xcb, 0x1b, 0xba, 0x29, 0xd6, 0xbb,
0x42, 0x3b, 0xb8, 0x5e, 0x71, 0xd3, 0x8b, 0x4a, 0xf2, 0x53, 0x58, 0x71, 0x9f, 0xd0, 0x98, 0x53,
0xd5, 0xf8, 0x18, 0xc7, 0x9c, 0xaa, 0x0b, 0xde, 0xdd, 0x28, 0x85, 0xbc, 0xb5, 0x61, 0x06, 0xd9,
0x7d, 0xa9, 0x0a, 0x22, 0xaf, 0xc8, 0x8f, 0xd0, 0x74, 0xa8, 0xab, 0x77, 0x52, 0x3e, 0x29, 0x72,
0x2f, 0xe8, 0x8d, 0xb6, 0xd7, 0x6e, 0xe9, 0xe9, 0xba, 0x60, 0xde, 0x25, 0xe5, 0x0a, 0xc8, 0xe7,
0x70, 0x49, 0x5d, 0xc1, 0x93, 0xcb, 0xa5, 0x56, 0x5b, 0x49, 0xe5, 0x70, 0xab, 0x0a, 0x2b, 0x66,
0x1b, 0x82, 0x59, 0x9f, 0x74, 0x91, 0xd9, 0x84, 0xf1, 0x08, 0x79, 0xc4, 0xb0, 0xea, 0x56, 0x6f,
0x0b, 0x23, 0x8e, 0xc6, 0x1b, 0x1d, 0x23, 0x8e, 0xe6, 0x52, 0xb0, 0x6b, 0x64, 0xb4, 0x71, 0xd9,
0xd5, 0x97, 0x55, 0x7f, 0x04, 0x3d, 0xfb, 0xbd, 0x07, 0x19, 0x5a, 0x2b, 0xaf, 0xbc, 0x0d, 0x19,
0x5e, 0x6b, 0xec, 0x73, 0xb7, 0x96, 0xf4, 0xec, 0x61, 0xc8, 0x8f, 0x61, 0xd5, 0xba, 0x00, 0x38,
0x9e, 0x27, 0x63, 0xa3, 0x3a, 0xf5, 0x2b, 0xc7, 0x61, 0x53, 0x14, 0x4b, 0xaf, 0x08, 0xc6, 0xeb,
0xd4, 0x61, 0x8c, 0x6a, 0x73, 0x0f, 0xba, 0xf6, 0xe5, 0xc2, 0x6b, 0xf8, 0x5e, 0xb1, 0xba, 0xec,
0x6b, 0xbe, 0xdb, 0x1e, 0xf9, 0x95, 0x07, 0x3d, 0xfb, 0xa2, 0x9a, 0x38, 0x79, 0x59, 0x85, 0xcf,
0xc0, 0xee, 0xb3, 0x19, 0xd1, 0xaf, 0xc4, 0x24, 0x8f, 0x6e, 0x3d, 0x76, 0x84, 0xfc, 0xd2, 0xb9,
0x7f, 0xd9, 0xb1, 0xdf, 0x99, 0xbe, 0xaa, 0x76, 0xda, 0x57, 0xb2, 0xaf, 0x76, 0x5f, 0x8a, 0x5b,
0xa2, 0x57, 0xb7, 0x3d, 0xf2, 0x89, 0x7c, 0x2e, 0xac, 0x43, 0x26, 0x62, 0x99, 0xb7, 0xaa, 0xd8,
0xec, 0x47, 0xb8, 0xdb, 0xde, 0x6d, 0x8f, 0xfc, 0xb1, 0x7c, 0x62, 0xaa, 0xbe, 0x15, 0xd2, 0x7f,
0xdb, 0xef, 0xe9, 0x07, 0x62, 0x45, 0xef, 0xd1, 0xab, 0xce, 0x8a, 0xaa, 0xf6, 0xfd, 0x08, 0xa0,
0x8c, 0x7f, 0x49, 0x25, 0x18, 0x34, 0x96, 0xaf, 0x1e, 0x22, 0xbb, 0xbb, 0xaa, 0x63, 0x46, 0x69,
0x0c, 0x7a, 0x56, 0xe4, 0x59, 0x98, 0x6d, 0xad, 0xc7, 0xb1, 0xc3, 0x61, 0x53, 0x97, 0xe2, 0xff,
0x6d, 0xc1, 0xff, 0x5d, 0x72, 0xcd, 0xe6, 0xbf, 0xfb, 0xd2, 0x8e, 0x7b, 0x5f, 0x91, 0xaf, 0xa0,
0x7f, 0x98, 0xa6, 0xcf, 0x66, 0x99, 0x49, 0x6b, 0xdc, 0x48, 0x0e, 0x63, 0xef, 0x61, 0x65, 0x51,
0xf4, 0x7d, 0xc1, 0xf9, 0x1a, 0xb9, 0xea, 0x72, 0x2e, 0xa3, 0xf1, 0x57, 0x24, 0x80, 0x75, 0xe3,
0xf5, 0xcc, 0x42, 0x86, 0x2e, 0x1f, 0x3b, 0x28, 0xae, 0x8d, 0xe1, 0xc4, 0x21, 0x66, 0x8c, 0x42,
0xf3, 0xbc, 0xed, 0x91, 0x23, 0xe8, 0xdd, 0x67, 0xe3, 0x34, 0x64, 0x2a, 0xfa, 0xda, 0x28, 0x67,
0x6e, 0xa2, 0xb6, 0x61, 0xdf, 0x01, 0x5d, 0x4b, 0x90, 0x05, 0xf3, 0x9c, 0x7d, 0xbd, 0xfb, 0x52,
0x85, 0x75, 0xaf, 0xb4, 0x25, 0xd0, 0xa1, 0xa8, 0x63, 0x09, 0x2a, 0xb1, 0xab, 0x63, 0x09, 0x6a,
0xb1, 0xab, 0x63, 0x09, 0x74, 0x28, 0x4c, 0x62, 0x8c, 0x68, 0x2b, 0xe1, 0xae, 0xf1, 0x9d, 0x17,
0x05, 0xc9, 0xc3, 0x1b, 0x17, 0x13, 0xb8, 0xa3, 0xdd, 0x72, 0x47, 0x3b, 0x86, 0xfe, 0x7d, 0x26,
0x85, 0x25, 0xeb, 0x8d, 0x43, 0xd7, 0xb4, 0xd8, 0xb5, 0xc9, 0xaa, 0xd9, 0x11, 0x7d, 0xae, 0xa1,
0x17, 0xc5, 0x3e, 0xf2, 0x13, 0xe8, 0x3e, 0x62, 0x5c, 0x17, 0x18, 0x4d, 0x04, 0x52, 0xa9, 0x38,
0x0e, 0x1b, 0xea, 0x93, 0xf4, 0x86, 0xe0, 0x36, 0x24, 0x03, 0xc3, 0x6d, 0x97, 0x85, 0x13, 0x26,
0x8d, 0xc0, 0x28, 0x0a, 0x5f, 0x91, 0x3f, 0x10, 0xcc, 0xcd, 0xed, 0xc3, 0x96, 0x55, 0x97, 0xb2,
0x99, 0xaf, 0x56, 0xf0, 0x26, 0xce, 0x49, 0x1a, 0x32, 0xcb, 0xe5, 0x25, 0xd0, 0xb5, 0x6e, 0x94,
0xcc, 0x81, 0xaa, 0x5f, 0x53, 0x99, 0x03, 0xd5, 0x70, 0x01, 0x45, 0xb7, 0xc5, 0x38, 0x94, 0xdc,
0x28, 0xc7, 0x91, 0x97, 0x4e, 0xe5, 0x48, 0xbb, 0x2f, 0x83, 0x29, 0x7f, 0x45, 0x9e, 0x8a, 0x57,
0x6a, 0x76, 0x11, 0xb5, 0x8c, 0x80, 0xaa, 0xf5, 0x56, 0x23, 0x2c, 0xab, 0xcb, 0x8d, 0x8a, 0xe4,
0x50, 0xc2, 0x33, 0xfe, 0x16, 0xc0, 0x31, 0x4f, 0xb3, 0xfb, 0x01, 0x9b, 0xa6, 0x49, 0x69, 0xc9,
0xca, 0x42, 0x61, 0x69, 0xc9, 0xac, 0x6a, 0x21, 0x79, 0x6a, 0xc5, 0xa0, 0x4e, 0x0d, 0x5a, 0x2b,
0xd7, 0x85, 0xb5, 0x44, 0x23, 0x90, 0x86, 0x7a, 0xa2, 0x0e, 0x47, 0x65, 0x91, 0xc4, 0x0a, 0x47,
0x9d, 0x2a, 0x8b, 0x15, 0x8e, 0xba, 0xd5, 0x14, 0x0c, 0x47, 0xcb, 0xcc, 0xcc, 0x84, 0xa3, 0xb5,
0xa4, 0xcf, 0xd8, 0xd0, 0x7a, 0x1a, 0x77, 0xb2, 0x24, 0xfe, 0x5b, 0xe7, 0x7b, 0xff, 0x1d, 0x00,
0x00, 0xff, 0xff, 0x77, 0x0b, 0xdd, 0x6a, 0xdf, 0x33, 0x00, 0x00,
}

View File

@ -263,6 +263,7 @@ message VerifyMessageRequest {
}
message VerifyMessageResponse {
bool valid = 1 [ json_name = "valid" ];
string pubkey = 2 [ json_name = "pubkey" ];
}
message ConnectPeerRequest {

View File

@ -1789,6 +1789,9 @@
"valid": {
"type": "boolean",
"format": "boolean"
},
"pubkey": {
"type": "string"
}
}
},

View File

@ -44,31 +44,25 @@ func (n *nodeSigner) SignMessage(pubKey *btcec.PublicKey,
return sign, nil
}
// SignCompact signs a double-sha256 digest of the passed msg under the
// resident node's private key. If the target public key is _not_ the node's
// private key, then an error will be returned. The returned signature is a
// pubkey-recoverable signature.
func (n *nodeSigner) SignCompact(pubKey *btcec.PublicKey,
msg []byte) ([]byte, error) {
// If this isn't our identity public key, then we'll exit early with an
// error as we can't sign with this key.
if !pubKey.IsEqual(n.privKey.PubKey()) {
return nil, fmt.Errorf("unknown public key")
}
// SignCompact signs a double-sha256 digest of the msg parameter under the
// resident node's private key. The returned signature is a pubkey-recoverable
// signature.
func (n *nodeSigner) SignCompact(msg []byte) ([]byte, error) {
// Otherwise, we'll sign the dsha256 of the target message.
digest := chainhash.DoubleHashB(msg)
// Should the signature reference a compressed public key or not.
compressedPubKey := false
isCompressedKey := false
// btcec.SignCompact returns a pubkey-recoverable signature
sign, err := btcec.SignCompact(
btcec.S256(), n.privKey, digest, compressedPubKey)
sig, err := btcec.SignCompact(btcec.S256(), n.privKey, digest,
isCompressedKey)
if err != nil {
return nil, fmt.Errorf("can't sign the message: %v", err)
}
return sign, nil
return sig, nil
}
// A compile time check to ensure that nodeSigner implements the MessageSigner

View File

@ -200,8 +200,7 @@ func (r *rpcServer) SignMessage(ctx context.Context,
return nil, fmt.Errorf("need a message to sign")
}
pubkey := r.server.identityPriv.PubKey()
sigBytes, err := r.server.nodeSigner.SignCompact(pubkey, in.Msg)
sigBytes, err := r.server.nodeSigner.SignCompact(in.Msg)
if err != nil {
return nil, err
}
@ -212,7 +211,8 @@ func (r *rpcServer) SignMessage(ctx context.Context,
// VerifyMessage verifies a signature over a msg. The signature must be
// zbase32 encoded and signed by an active node in the resident node's
// channel database.
// channel database. In addition to returning the validity of the signature,
// VerifyMessage also returns the recovered pubkey from the signature.
func (r *rpcServer) VerifyMessage(ctx context.Context,
in *lnrpc.VerifyMessageRequest) (*lnrpc.VerifyMessageResponse, error) {
@ -226,6 +226,7 @@ func (r *rpcServer) VerifyMessage(ctx context.Context,
return nil, fmt.Errorf("failed to decode signature: %v", err)
}
// The signature is over the double-sha256 hash of the message.
digest := chainhash.DoubleHashB(in.Msg)
// RecoverCompact both recovers the pubkey and validates the signature.
@ -233,15 +234,18 @@ func (r *rpcServer) VerifyMessage(ctx context.Context,
if err != nil {
return &lnrpc.VerifyMessageResponse{Valid: false}, nil
}
pubKeyHex := hex.EncodeToString(pubKey.SerializeCompressed())
graph := r.server.chanDB.ChannelGraph()
// Query the channel graph to ensure a node in the network with active
// channels signed the message.
// TODO(phlip9): Require valid nodes to have capital in active channels.
graph := r.server.chanDB.ChannelGraph()
_, active, err := graph.HasLightningNode(pubKey)
if err != nil {
return nil, fmt.Errorf("failed to query graph: %v", err)
}
return &lnrpc.VerifyMessageResponse{Valid: active}, nil
return &lnrpc.VerifyMessageResponse{Valid: active, Pubkey: pubKeyHex}, nil
}
// ConnectPeer attempts to establish a connection to a remote peer.