From c66c4052ecccede038430ead8082a61a25655306 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Wed, 23 Oct 2019 13:28:04 +0200 Subject: [PATCH 1/3] lnrpc: document missing ForwardingHistory command --- lnrpc/README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lnrpc/README.md b/lnrpc/README.md index b3a77a68..46320462 100644 --- a/lnrpc/README.md +++ b/lnrpc/README.md @@ -120,7 +120,10 @@ description): enforced by the node globally for each channel. * UpdateChannelPolicy * Allows the caller to update the fee schedule and channel policies for all channels - globally, or a particular channel + globally, or a particular channel. + * ForwardingHistory + * ForwardingHistory allows the caller to query the htlcswitch for a + record of all HTLCs forwarded. ## Service: WalletUnlocker From 6a463de7a23c65999037dd102e80fe4afa3cc1a8 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Wed, 23 Oct 2019 13:28:17 +0200 Subject: [PATCH 2/3] lnrpc: add command for baking new macaroons --- lnrpc/README.md | 3 + lnrpc/rpc.pb.go | 1246 +++++++++++++++++++++++----------------- lnrpc/rpc.pb.gw.go | 46 ++ lnrpc/rpc.proto | 28 + lnrpc/rpc.swagger.json | 61 ++ rpcserver.go | 94 +++ 6 files changed, 944 insertions(+), 534 deletions(-) diff --git a/lnrpc/README.md b/lnrpc/README.md index 46320462..3fb7c7d6 100644 --- a/lnrpc/README.md +++ b/lnrpc/README.md @@ -124,6 +124,9 @@ description): * ForwardingHistory * ForwardingHistory allows the caller to query the htlcswitch for a record of all HTLCs forwarded. + * BakeMacaroon + * Bakes a new macaroon with the provided list of permissions and + restrictions ## Service: WalletUnlocker diff --git a/lnrpc/rpc.pb.go b/lnrpc/rpc.pb.go index 28cd3ea7..ba846260 100644 --- a/lnrpc/rpc.pb.go +++ b/lnrpc/rpc.pb.go @@ -9023,6 +9023,135 @@ func (m *VerifyChanBackupResponse) XXX_DiscardUnknown() { var xxx_messageInfo_VerifyChanBackupResponse proto.InternalMessageInfo +type MacaroonPermission struct { + /// The entity a permission grants access to. + Entity string `protobuf:"bytes,1,opt,name=entity,proto3" json:"entity,omitempty"` + /// The action that is granted. + Action string `protobuf:"bytes,2,opt,name=action,proto3" json:"action,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *MacaroonPermission) Reset() { *m = MacaroonPermission{} } +func (m *MacaroonPermission) String() string { return proto.CompactTextString(m) } +func (*MacaroonPermission) ProtoMessage() {} +func (*MacaroonPermission) Descriptor() ([]byte, []int) { + return fileDescriptor_77a6da22d6a3feb1, []int{131} +} + +func (m *MacaroonPermission) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MacaroonPermission.Unmarshal(m, b) +} +func (m *MacaroonPermission) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MacaroonPermission.Marshal(b, m, deterministic) +} +func (m *MacaroonPermission) XXX_Merge(src proto.Message) { + xxx_messageInfo_MacaroonPermission.Merge(m, src) +} +func (m *MacaroonPermission) XXX_Size() int { + return xxx_messageInfo_MacaroonPermission.Size(m) +} +func (m *MacaroonPermission) XXX_DiscardUnknown() { + xxx_messageInfo_MacaroonPermission.DiscardUnknown(m) +} + +var xxx_messageInfo_MacaroonPermission proto.InternalMessageInfo + +func (m *MacaroonPermission) GetEntity() string { + if m != nil { + return m.Entity + } + return "" +} + +func (m *MacaroonPermission) GetAction() string { + if m != nil { + return m.Action + } + return "" +} + +type BakeMacaroonRequest struct { + /// The list of permissions the new macaroon should grant. + Permissions []*MacaroonPermission `protobuf:"bytes,1,rep,name=permissions,proto3" json:"permissions,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BakeMacaroonRequest) Reset() { *m = BakeMacaroonRequest{} } +func (m *BakeMacaroonRequest) String() string { return proto.CompactTextString(m) } +func (*BakeMacaroonRequest) ProtoMessage() {} +func (*BakeMacaroonRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_77a6da22d6a3feb1, []int{132} +} + +func (m *BakeMacaroonRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BakeMacaroonRequest.Unmarshal(m, b) +} +func (m *BakeMacaroonRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BakeMacaroonRequest.Marshal(b, m, deterministic) +} +func (m *BakeMacaroonRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_BakeMacaroonRequest.Merge(m, src) +} +func (m *BakeMacaroonRequest) XXX_Size() int { + return xxx_messageInfo_BakeMacaroonRequest.Size(m) +} +func (m *BakeMacaroonRequest) XXX_DiscardUnknown() { + xxx_messageInfo_BakeMacaroonRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_BakeMacaroonRequest proto.InternalMessageInfo + +func (m *BakeMacaroonRequest) GetPermissions() []*MacaroonPermission { + if m != nil { + return m.Permissions + } + return nil +} + +type BakeMacaroonResponse struct { + /// The hex encoded macaroon, serialized in binary format. + Macaroon string `protobuf:"bytes,1,opt,name=macaroon,proto3" json:"macaroon,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BakeMacaroonResponse) Reset() { *m = BakeMacaroonResponse{} } +func (m *BakeMacaroonResponse) String() string { return proto.CompactTextString(m) } +func (*BakeMacaroonResponse) ProtoMessage() {} +func (*BakeMacaroonResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_77a6da22d6a3feb1, []int{133} +} + +func (m *BakeMacaroonResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BakeMacaroonResponse.Unmarshal(m, b) +} +func (m *BakeMacaroonResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BakeMacaroonResponse.Marshal(b, m, deterministic) +} +func (m *BakeMacaroonResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_BakeMacaroonResponse.Merge(m, src) +} +func (m *BakeMacaroonResponse) XXX_Size() int { + return xxx_messageInfo_BakeMacaroonResponse.Size(m) +} +func (m *BakeMacaroonResponse) XXX_DiscardUnknown() { + xxx_messageInfo_BakeMacaroonResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_BakeMacaroonResponse proto.InternalMessageInfo + +func (m *BakeMacaroonResponse) GetMacaroon() string { + if m != nil { + return m.Macaroon + } + return "" +} + func init() { proto.RegisterEnum("lnrpc.AddressType", AddressType_name, AddressType_value) proto.RegisterEnum("lnrpc.InvoiceHTLCState", InvoiceHTLCState_name, InvoiceHTLCState_value) @@ -9170,545 +9299,553 @@ func init() { proto.RegisterType((*RestoreBackupResponse)(nil), "lnrpc.RestoreBackupResponse") proto.RegisterType((*ChannelBackupSubscription)(nil), "lnrpc.ChannelBackupSubscription") proto.RegisterType((*VerifyChanBackupResponse)(nil), "lnrpc.VerifyChanBackupResponse") + proto.RegisterType((*MacaroonPermission)(nil), "lnrpc.MacaroonPermission") + proto.RegisterType((*BakeMacaroonRequest)(nil), "lnrpc.BakeMacaroonRequest") + proto.RegisterType((*BakeMacaroonResponse)(nil), "lnrpc.BakeMacaroonResponse") } func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) } var fileDescriptor_77a6da22d6a3feb1 = []byte{ - // 8516 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7d, 0x5d, 0x6c, 0x24, 0x59, - 0x96, 0x56, 0x45, 0xfe, 0xd8, 0x99, 0x27, 0xd3, 0x76, 0xfa, 0xda, 0x65, 0x67, 0x65, 0x57, 0x57, - 0x57, 0xc7, 0xd4, 0x76, 0xd7, 0xd4, 0xf4, 0xb8, 0xaa, 0x6b, 0x66, 0x9a, 0xde, 0x2e, 0x96, 0xc5, - 0x65, 0xbb, 0xca, 0x35, 0xed, 0x76, 0x79, 0xc2, 0x55, 0x53, 0xcc, 0xcc, 0xae, 0x72, 0xc2, 0x99, - 0xd7, 0x76, 0x4c, 0x65, 0x46, 0xe4, 0x44, 0x44, 0xda, 0xe5, 0x69, 0x1a, 0x09, 0x84, 0x10, 0xe2, - 0x05, 0x35, 0xbc, 0x00, 0x02, 0xad, 0x34, 0x8b, 0xc4, 0x2e, 0x08, 0x01, 0x0f, 0x48, 0x80, 0x56, - 0xe2, 0x81, 0x07, 0x9e, 0x10, 0x0f, 0x3c, 0x20, 0xf1, 0xc0, 0x0a, 0x81, 0x04, 0x23, 0x04, 0x0f, - 0x48, 0xbc, 0xa3, 0x73, 0xee, 0x4f, 0xdc, 0x1b, 0x11, 0x59, 0xae, 0x9e, 0x19, 0xf6, 0xc9, 0x79, - 0xbf, 0x7b, 0xe3, 0xfe, 0x9e, 0x73, 0xee, 0x39, 0xe7, 0x9e, 0x7b, 0x0d, 0xcd, 0x78, 0x32, 0xd8, - 0x98, 0xc4, 0x51, 0x1a, 0xb1, 0xfa, 0x28, 0x8c, 0x27, 0x83, 0xde, 0xf5, 0x93, 0x28, 0x3a, 0x19, - 0xf1, 0xbb, 0xfe, 0x24, 0xb8, 0xeb, 0x87, 0x61, 0x94, 0xfa, 0x69, 0x10, 0x85, 0x89, 0x28, 0xe4, - 0xfe, 0x18, 0x16, 0x1f, 0xf3, 0xf0, 0x90, 0xf3, 0xa1, 0xc7, 0x7f, 0x3a, 0xe5, 0x49, 0xca, 0xbe, - 0x01, 0xcb, 0x3e, 0xff, 0x19, 0xe7, 0xc3, 0xfe, 0xc4, 0x4f, 0x92, 0xc9, 0x69, 0xec, 0x27, 0xbc, - 0xeb, 0xdc, 0x74, 0x6e, 0xb7, 0xbd, 0x8e, 0xc8, 0x38, 0xd0, 0x38, 0x7b, 0x17, 0xda, 0x09, 0x16, - 0xe5, 0x61, 0x1a, 0x47, 0x93, 0x8b, 0x6e, 0x85, 0xca, 0xb5, 0x10, 0xdb, 0x11, 0x90, 0x3b, 0x82, - 0x25, 0xdd, 0x42, 0x32, 0x89, 0xc2, 0x84, 0xb3, 0x7b, 0xb0, 0x3a, 0x08, 0x26, 0xa7, 0x3c, 0xee, - 0xd3, 0xc7, 0xe3, 0x90, 0x8f, 0xa3, 0x30, 0x18, 0x74, 0x9d, 0x9b, 0xd5, 0xdb, 0x4d, 0x8f, 0x89, - 0x3c, 0xfc, 0xe2, 0x33, 0x99, 0xc3, 0xde, 0x87, 0x25, 0x1e, 0x0a, 0x9c, 0x0f, 0xe9, 0x2b, 0xd9, - 0xd4, 0x62, 0x06, 0xe3, 0x07, 0xee, 0x5f, 0xad, 0xc0, 0xf2, 0x93, 0x30, 0x48, 0x5f, 0xf8, 0xa3, - 0x11, 0x4f, 0xd5, 0x98, 0xde, 0x87, 0xa5, 0x73, 0x02, 0x68, 0x4c, 0xe7, 0x51, 0x3c, 0x94, 0x23, - 0x5a, 0x14, 0xf0, 0x81, 0x44, 0x67, 0xf6, 0xac, 0x32, 0xb3, 0x67, 0xa5, 0xd3, 0x55, 0x9d, 0x31, - 0x5d, 0xef, 0xc3, 0x52, 0xcc, 0x07, 0xd1, 0x19, 0x8f, 0x2f, 0xfa, 0xe7, 0x41, 0x38, 0x8c, 0xce, - 0xbb, 0xb5, 0x9b, 0xce, 0xed, 0xba, 0xb7, 0xa8, 0xe0, 0x17, 0x84, 0xb2, 0x87, 0xb0, 0x34, 0x38, - 0xf5, 0xc3, 0x90, 0x8f, 0xfa, 0x47, 0xfe, 0xe0, 0xe5, 0x74, 0x92, 0x74, 0xeb, 0x37, 0x9d, 0xdb, - 0xad, 0xfb, 0xd7, 0x36, 0x68, 0x55, 0x37, 0xb6, 0x4e, 0xfd, 0xf0, 0x21, 0xe5, 0x1c, 0x86, 0xfe, - 0x24, 0x39, 0x8d, 0x52, 0x6f, 0x51, 0x7e, 0x21, 0xe0, 0xc4, 0x5d, 0x05, 0x66, 0xce, 0x84, 0x98, - 0x7b, 0xf7, 0x1f, 0x39, 0xb0, 0xf2, 0x3c, 0x1c, 0x45, 0x83, 0x97, 0xbf, 0xe4, 0x14, 0x95, 0x8c, - 0xa1, 0xf2, 0xa6, 0x63, 0xa8, 0x7e, 0xd5, 0x31, 0xac, 0xc1, 0xaa, 0xdd, 0x59, 0x39, 0x0a, 0x0e, - 0x57, 0xf1, 0xeb, 0x13, 0xae, 0xba, 0xa5, 0x86, 0xf1, 0x75, 0xe8, 0x0c, 0xa6, 0x71, 0xcc, 0xc3, - 0xc2, 0x38, 0x96, 0x24, 0xae, 0x07, 0xf2, 0x2e, 0xb4, 0x43, 0x7e, 0x9e, 0x15, 0x93, 0xb4, 0x1b, - 0xf2, 0x73, 0x55, 0xc4, 0xed, 0xc2, 0x5a, 0xbe, 0x19, 0xd9, 0x81, 0xff, 0xe2, 0x40, 0xed, 0x79, - 0xfa, 0x2a, 0x62, 0x1b, 0x50, 0x4b, 0x2f, 0x26, 0x82, 0x43, 0x16, 0xef, 0x33, 0x39, 0xb4, 0xcd, - 0xe1, 0x30, 0xe6, 0x49, 0xf2, 0xec, 0x62, 0xc2, 0xbd, 0xb6, 0x2f, 0x12, 0x7d, 0x2c, 0xc7, 0xba, - 0x30, 0x2f, 0xd3, 0xd4, 0x60, 0xd3, 0x53, 0x49, 0x76, 0x03, 0xc0, 0x1f, 0x47, 0xd3, 0x30, 0xed, - 0x27, 0x7e, 0x4a, 0x53, 0x55, 0xf5, 0x0c, 0x84, 0x5d, 0x87, 0xe6, 0xe4, 0x65, 0x3f, 0x19, 0xc4, - 0xc1, 0x24, 0x25, 0xb2, 0x69, 0x7a, 0x19, 0xc0, 0xbe, 0x01, 0x8d, 0x68, 0x9a, 0x4e, 0xa2, 0x20, - 0x4c, 0x25, 0xa9, 0x2c, 0xc9, 0xbe, 0x3c, 0x9d, 0xa6, 0x07, 0x08, 0x7b, 0xba, 0x00, 0xbb, 0x05, - 0x0b, 0x83, 0x28, 0x3c, 0x0e, 0xe2, 0xb1, 0x10, 0x06, 0xdd, 0x39, 0x6a, 0xcd, 0x06, 0xdd, 0x7f, - 0x59, 0x81, 0xd6, 0xb3, 0xd8, 0x0f, 0x13, 0x7f, 0x80, 0x00, 0x76, 0x3d, 0x7d, 0xd5, 0x3f, 0xf5, - 0x93, 0x53, 0x1a, 0x6d, 0xd3, 0x53, 0x49, 0xb6, 0x06, 0x73, 0xa2, 0xa3, 0x34, 0xa6, 0xaa, 0x27, - 0x53, 0xec, 0x03, 0x58, 0x0e, 0xa7, 0xe3, 0xbe, 0xdd, 0x56, 0x95, 0xa8, 0xa5, 0x98, 0x81, 0x13, - 0x70, 0x84, 0x6b, 0x2d, 0x9a, 0x10, 0x23, 0x34, 0x10, 0xe6, 0x42, 0x5b, 0xa6, 0x78, 0x70, 0x72, - 0x2a, 0x86, 0x59, 0xf7, 0x2c, 0x0c, 0xeb, 0x48, 0x83, 0x31, 0xef, 0x27, 0xa9, 0x3f, 0x9e, 0xc8, - 0x61, 0x19, 0x08, 0xe5, 0x47, 0xa9, 0x3f, 0xea, 0x1f, 0x73, 0x9e, 0x74, 0xe7, 0x65, 0xbe, 0x46, - 0xd8, 0x7b, 0xb0, 0x38, 0xe4, 0x49, 0xda, 0x97, 0x8b, 0xc2, 0x93, 0x6e, 0x83, 0x58, 0x3f, 0x87, - 0x62, 0x3d, 0xb1, 0x7f, 0xde, 0xc7, 0x09, 0xe0, 0xaf, 0xba, 0x4d, 0xd1, 0xd7, 0x0c, 0x41, 0xca, - 0x79, 0xcc, 0x53, 0x63, 0xf6, 0x12, 0x49, 0xa1, 0xee, 0x1e, 0x30, 0x03, 0xde, 0xe6, 0xa9, 0x1f, - 0x8c, 0x12, 0xf6, 0x11, 0xb4, 0x53, 0xa3, 0x30, 0x89, 0xc2, 0x96, 0x26, 0x27, 0xe3, 0x03, 0xcf, - 0x2a, 0xe7, 0x3e, 0x86, 0xc6, 0x23, 0xce, 0xf7, 0x82, 0x71, 0x90, 0xb2, 0x35, 0xa8, 0x1f, 0x07, - 0xaf, 0xb8, 0x20, 0xf8, 0xea, 0xee, 0x15, 0x4f, 0x24, 0x59, 0x0f, 0xe6, 0x27, 0x3c, 0x1e, 0x70, - 0xb5, 0x3c, 0xbb, 0x57, 0x3c, 0x05, 0x3c, 0x9c, 0x87, 0xfa, 0x08, 0x3f, 0x76, 0xff, 0x57, 0x15, - 0x5a, 0x87, 0x3c, 0xd4, 0x8c, 0xc4, 0xa0, 0x86, 0x43, 0x96, 0xcc, 0x43, 0xbf, 0xd9, 0x3b, 0xd0, - 0xa2, 0x69, 0x48, 0xd2, 0x38, 0x08, 0x4f, 0x24, 0xfd, 0x02, 0x42, 0x87, 0x84, 0xb0, 0x0e, 0x54, - 0xfd, 0xb1, 0xa2, 0x5d, 0xfc, 0x89, 0x4c, 0x36, 0xf1, 0x2f, 0xc6, 0xc8, 0x8f, 0x7a, 0x55, 0xdb, - 0x5e, 0x4b, 0x62, 0xbb, 0xb8, 0xac, 0x1b, 0xb0, 0x62, 0x16, 0x51, 0xb5, 0xd7, 0xa9, 0xf6, 0x65, - 0xa3, 0xa4, 0x6c, 0xe4, 0x7d, 0x58, 0x52, 0xe5, 0x63, 0xd1, 0x59, 0x5a, 0xe7, 0xa6, 0xb7, 0x28, - 0x61, 0x35, 0x84, 0xdb, 0xd0, 0x39, 0x0e, 0x42, 0x7f, 0xd4, 0x1f, 0x8c, 0xd2, 0xb3, 0xfe, 0x90, - 0x8f, 0x52, 0x9f, 0x56, 0xbc, 0xee, 0x2d, 0x12, 0xbe, 0x35, 0x4a, 0xcf, 0xb6, 0x11, 0x65, 0x1f, - 0x40, 0xf3, 0x98, 0xf3, 0x3e, 0xcd, 0x44, 0xb7, 0x61, 0x71, 0x8f, 0x9a, 0x5d, 0xaf, 0x71, 0xac, - 0xe6, 0xf9, 0x03, 0xe8, 0x44, 0xd3, 0xf4, 0x24, 0x0a, 0xc2, 0x93, 0x3e, 0xca, 0xab, 0x7e, 0x30, - 0x24, 0x0a, 0xa8, 0x3d, 0xac, 0xdc, 0x73, 0xbc, 0x45, 0x95, 0x87, 0x92, 0xe3, 0xc9, 0x90, 0xbd, - 0x0d, 0x40, 0xed, 0x8b, 0xca, 0xe1, 0xa6, 0x73, 0x7b, 0xc1, 0x6b, 0x22, 0x22, 0x2a, 0xfb, 0x04, - 0x1a, 0x34, 0xa7, 0xe9, 0xe8, 0xac, 0xdb, 0xa2, 0x45, 0x7f, 0x47, 0xb6, 0x6c, 0xac, 0xc6, 0xc6, - 0x36, 0x4f, 0xd2, 0x67, 0xa3, 0x33, 0xdc, 0x53, 0x2f, 0xbc, 0xf9, 0xa1, 0x48, 0xf5, 0x3e, 0x81, - 0xb6, 0x99, 0x81, 0xd3, 0xff, 0x92, 0x5f, 0xd0, 0x92, 0xd5, 0x3c, 0xfc, 0xc9, 0x56, 0xa1, 0x7e, - 0xe6, 0x8f, 0xa6, 0x5c, 0x0a, 0x37, 0x91, 0xf8, 0xa4, 0xf2, 0xb1, 0xe3, 0xfe, 0x0b, 0x07, 0xda, - 0xa2, 0x05, 0xb9, 0x29, 0xdf, 0x82, 0x05, 0x35, 0xad, 0x3c, 0x8e, 0xa3, 0x58, 0xf2, 0xb8, 0x0d, - 0xb2, 0x3b, 0xd0, 0x51, 0xc0, 0x24, 0xe6, 0xc1, 0xd8, 0x3f, 0x51, 0x75, 0x17, 0x70, 0x76, 0x3f, - 0xab, 0x31, 0x8e, 0xa6, 0x29, 0x97, 0xe2, 0xbf, 0x2d, 0xc7, 0xe7, 0x21, 0xe6, 0xd9, 0x45, 0x90, - 0xc7, 0x4b, 0xe8, 0xc5, 0xc2, 0xdc, 0x2f, 0x1d, 0x60, 0xd8, 0xf5, 0x67, 0x91, 0xa8, 0x42, 0x2e, - 0x77, 0x9e, 0xd4, 0x9c, 0x37, 0x26, 0xb5, 0xca, 0x2c, 0x52, 0x73, 0xa1, 0x2e, 0x7a, 0x5e, 0x2b, - 0xe9, 0xb9, 0xc8, 0xfa, 0x6e, 0xad, 0x51, 0xed, 0xd4, 0xdc, 0xff, 0x54, 0x85, 0xd5, 0x2d, 0xb1, - 0x77, 0x6d, 0x0e, 0x06, 0x7c, 0xa2, 0x89, 0xf0, 0x1d, 0x68, 0x85, 0xd1, 0x90, 0xf7, 0x27, 0xd3, - 0x23, 0xb5, 0x36, 0x6d, 0x0f, 0x10, 0x3a, 0x20, 0x84, 0xe8, 0xe3, 0xd4, 0x0f, 0x42, 0xd1, 0x69, - 0x31, 0x97, 0x4d, 0x42, 0xa8, 0xcb, 0xef, 0xc1, 0xd2, 0x84, 0x87, 0x43, 0x93, 0xd6, 0x84, 0x76, - 0xb1, 0x20, 0x61, 0x49, 0x66, 0xef, 0x40, 0xeb, 0x78, 0x2a, 0xca, 0x21, 0x0b, 0xd6, 0x88, 0x06, - 0x40, 0x42, 0x9b, 0xe3, 0x94, 0x5d, 0x83, 0xc6, 0x64, 0x9a, 0x9c, 0x52, 0x6e, 0x9d, 0x72, 0xe7, - 0x31, 0x8d, 0x59, 0x6f, 0x03, 0x0c, 0xa7, 0x49, 0x2a, 0x49, 0x74, 0x8e, 0x32, 0x9b, 0x88, 0x08, - 0x12, 0xfd, 0x26, 0xac, 0x8c, 0xfd, 0x57, 0x7d, 0xa2, 0x9d, 0x7e, 0x10, 0xf6, 0x8f, 0x47, 0x24, - 0x7e, 0xe7, 0xa9, 0x5c, 0x67, 0xec, 0xbf, 0xfa, 0x3e, 0xe6, 0x3c, 0x09, 0x1f, 0x11, 0x8e, 0xfc, - 0xa9, 0xf6, 0xfd, 0x98, 0x27, 0x3c, 0x3e, 0xe3, 0xc4, 0x52, 0x35, 0xbd, 0xb9, 0x7b, 0x02, 0xc5, - 0x1e, 0x8d, 0x71, 0xdc, 0xe9, 0x68, 0x20, 0xf8, 0xc7, 0x9b, 0x1f, 0x07, 0xe1, 0x6e, 0x3a, 0x1a, - 0xb0, 0xeb, 0x00, 0xc8, 0x90, 0x13, 0x1e, 0xf7, 0x5f, 0x9e, 0x13, 0xd3, 0xd4, 0x88, 0x01, 0x0f, - 0x78, 0xfc, 0xe9, 0x39, 0x7b, 0x0b, 0x9a, 0x83, 0x84, 0x38, 0xda, 0xbf, 0xe8, 0xb6, 0x88, 0xa3, - 0x1a, 0x83, 0x04, 0x79, 0xd9, 0xbf, 0x60, 0x1f, 0x00, 0xc3, 0xde, 0xfa, 0xb4, 0x0a, 0x7c, 0x48, - 0xd5, 0x27, 0xdd, 0x36, 0x95, 0xc2, 0xce, 0x6e, 0xca, 0x0c, 0x6c, 0x27, 0x61, 0x5f, 0x83, 0x05, - 0xd5, 0xd9, 0xe3, 0x91, 0x7f, 0x92, 0x74, 0x17, 0xa8, 0x60, 0x5b, 0x82, 0x8f, 0x10, 0x73, 0x5f, - 0x08, 0x6d, 0xc3, 0x58, 0x5b, 0xc9, 0x33, 0xb8, 0xef, 0x11, 0x42, 0xeb, 0xda, 0xf0, 0x64, 0xaa, - 0x6c, 0xd1, 0x2a, 0x25, 0x8b, 0xe6, 0xfe, 0xdc, 0x81, 0xb6, 0xac, 0x99, 0xb6, 0x68, 0x76, 0x0f, - 0x98, 0x5a, 0xc5, 0xf4, 0x55, 0x30, 0xec, 0x1f, 0x5d, 0xa4, 0x3c, 0x11, 0x44, 0xb3, 0x7b, 0xc5, - 0x2b, 0xc9, 0x43, 0x61, 0x64, 0xa1, 0x49, 0x1a, 0x0b, 0x7a, 0xde, 0xbd, 0xe2, 0x15, 0x72, 0x90, - 0xbd, 0x50, 0x09, 0x98, 0xa6, 0xfd, 0x20, 0x1c, 0xf2, 0x57, 0x44, 0x4a, 0x0b, 0x9e, 0x85, 0x3d, - 0x5c, 0x84, 0xb6, 0xf9, 0x9d, 0xfb, 0x13, 0x68, 0x28, 0x15, 0x82, 0xb6, 0xcf, 0x5c, 0xbf, 0x3c, - 0x03, 0x61, 0x3d, 0x68, 0xd8, 0xbd, 0xf0, 0x1a, 0x5f, 0xa5, 0x6d, 0xf7, 0xcf, 0x40, 0x67, 0x0f, - 0x89, 0x28, 0x44, 0xa2, 0x95, 0x7a, 0xd1, 0x1a, 0xcc, 0x19, 0xcc, 0xd3, 0xf4, 0x64, 0x0a, 0x77, - 0xa8, 0xd3, 0x28, 0x49, 0x65, 0x3b, 0xf4, 0xdb, 0xfd, 0xb7, 0x0e, 0xb0, 0x9d, 0x24, 0x0d, 0xc6, - 0x7e, 0xca, 0x1f, 0x71, 0x2d, 0x1a, 0x9e, 0x42, 0x1b, 0x6b, 0x7b, 0x16, 0x6d, 0x0a, 0x2d, 0x45, - 0xec, 0xae, 0xdf, 0x90, 0xec, 0x5c, 0xfc, 0x60, 0xc3, 0x2c, 0x2d, 0x84, 0xae, 0x55, 0x01, 0x72, - 0x5b, 0xea, 0xc7, 0x27, 0x3c, 0x25, 0x15, 0x46, 0x2a, 0xc0, 0x20, 0xa0, 0xad, 0x28, 0x3c, 0xee, - 0xfd, 0x36, 0x2c, 0x17, 0xea, 0x30, 0xe5, 0x73, 0xb3, 0x44, 0x3e, 0x57, 0x4d, 0xf9, 0x3c, 0x80, - 0x15, 0xab, 0x5f, 0x92, 0xe2, 0xba, 0x30, 0x8f, 0x8c, 0x81, 0x1a, 0x22, 0xed, 0xf2, 0x9e, 0x4a, - 0xb2, 0xfb, 0xb0, 0x7a, 0xcc, 0x79, 0xec, 0xa7, 0x94, 0x24, 0xd6, 0xc1, 0x35, 0x91, 0x35, 0x97, - 0xe6, 0xb9, 0xff, 0xd5, 0x81, 0x25, 0x94, 0xa4, 0x9f, 0xf9, 0xe1, 0x85, 0x9a, 0xab, 0xbd, 0xd2, - 0xb9, 0xba, 0x6d, 0x6c, 0x4a, 0x46, 0xe9, 0xaf, 0x3a, 0x51, 0xd5, 0xfc, 0x44, 0xb1, 0x9b, 0xd0, - 0xb6, 0xba, 0x5b, 0x17, 0x2a, 0x59, 0xe2, 0xa7, 0x07, 0x3c, 0x7e, 0x78, 0x91, 0xf2, 0x5f, 0x7d, - 0x2a, 0xdf, 0x83, 0x4e, 0xd6, 0x6d, 0x39, 0x8f, 0x0c, 0x6a, 0x48, 0x98, 0xb2, 0x02, 0xfa, 0xed, - 0xfe, 0x5d, 0x47, 0x14, 0xdc, 0x8a, 0x02, 0xad, 0xae, 0x61, 0x41, 0xd4, 0xfa, 0x54, 0x41, 0xfc, - 0x3d, 0x53, 0xdd, 0xfd, 0xd5, 0x07, 0x8b, 0x32, 0x31, 0xe1, 0xe1, 0xb0, 0xef, 0x8f, 0x46, 0x24, - 0x88, 0x1b, 0xde, 0x3c, 0xa6, 0x37, 0x47, 0x23, 0xf7, 0x7d, 0x58, 0x36, 0x7a, 0xf7, 0x9a, 0x71, - 0xec, 0x03, 0xdb, 0x0b, 0x92, 0xf4, 0x79, 0x98, 0x4c, 0x0c, 0x6d, 0xe8, 0x2d, 0x68, 0xa2, 0xb4, - 0xc5, 0x9e, 0x09, 0xce, 0xad, 0x7b, 0x28, 0x7e, 0xb1, 0x5f, 0x09, 0x65, 0xfa, 0xaf, 0x64, 0x66, - 0x45, 0x66, 0xfa, 0xaf, 0x28, 0xd3, 0xfd, 0x18, 0x56, 0xac, 0xfa, 0x64, 0xd3, 0xef, 0x42, 0x7d, - 0x9a, 0xbe, 0x8a, 0x94, 0xae, 0xda, 0x92, 0x14, 0x82, 0x56, 0x91, 0x27, 0x72, 0xdc, 0x07, 0xb0, - 0xbc, 0xcf, 0xcf, 0x25, 0x23, 0xab, 0x8e, 0xbc, 0x77, 0xa9, 0xc5, 0x44, 0xf9, 0xee, 0x06, 0x30, - 0xf3, 0xe3, 0x8c, 0x01, 0x94, 0xfd, 0xe4, 0x58, 0xf6, 0x93, 0xfb, 0x1e, 0xb0, 0xc3, 0xe0, 0x24, - 0xfc, 0x8c, 0x27, 0x89, 0x7f, 0xa2, 0x59, 0xbf, 0x03, 0xd5, 0x71, 0x72, 0x22, 0x45, 0x15, 0xfe, - 0x74, 0xbf, 0x05, 0x2b, 0x56, 0x39, 0x59, 0xf1, 0x75, 0x68, 0x26, 0xc1, 0x49, 0xe8, 0xa7, 0xd3, - 0x98, 0xcb, 0xaa, 0x33, 0xc0, 0x7d, 0x04, 0xab, 0xdf, 0xe7, 0x71, 0x70, 0x7c, 0x71, 0x59, 0xf5, - 0x76, 0x3d, 0x95, 0x7c, 0x3d, 0x3b, 0x70, 0x35, 0x57, 0x8f, 0x6c, 0x5e, 0x90, 0xaf, 0x5c, 0xc9, - 0x86, 0x27, 0x12, 0x86, 0xec, 0xab, 0x98, 0xb2, 0xcf, 0x7d, 0x0e, 0x6c, 0x2b, 0x0a, 0x43, 0x3e, - 0x48, 0x0f, 0x38, 0x8f, 0x33, 0xd7, 0x4d, 0x46, 0xab, 0xad, 0xfb, 0xeb, 0x72, 0x66, 0xf3, 0x02, - 0x55, 0x12, 0x31, 0x83, 0xda, 0x84, 0xc7, 0x63, 0xaa, 0xb8, 0xe1, 0xd1, 0x6f, 0xf7, 0x2a, 0xac, - 0x58, 0xd5, 0x4a, 0x63, 0xf7, 0x43, 0xb8, 0xba, 0x1d, 0x24, 0x83, 0x62, 0x83, 0x5d, 0x98, 0x9f, - 0x4c, 0x8f, 0xfa, 0x19, 0x27, 0xaa, 0x24, 0xda, 0x3f, 0xf9, 0x4f, 0x64, 0x65, 0x7f, 0xc5, 0x81, - 0xda, 0xee, 0xb3, 0xbd, 0x2d, 0xdc, 0x2b, 0x82, 0x70, 0x10, 0x8d, 0x51, 0x03, 0x13, 0x83, 0xd6, - 0xe9, 0x99, 0x1c, 0x76, 0x1d, 0x9a, 0xa4, 0xb8, 0xa1, 0xc9, 0x27, 0xf5, 0xa0, 0x0c, 0x40, 0x73, - 0x93, 0xbf, 0x9a, 0x04, 0x31, 0xd9, 0x93, 0xca, 0x4a, 0xac, 0xd1, 0x36, 0x53, 0xcc, 0x70, 0xff, - 0xf7, 0x1c, 0xcc, 0xcb, 0xcd, 0x57, 0x6c, 0xe4, 0x69, 0x70, 0xc6, 0xb3, 0x8d, 0x1c, 0x53, 0xa8, - 0x14, 0xc7, 0x7c, 0x1c, 0xa5, 0x5a, 0x7f, 0x13, 0xcb, 0x60, 0x83, 0x64, 0x4e, 0x4b, 0x25, 0x42, - 0x18, 0xe0, 0x55, 0x51, 0xca, 0x02, 0xd9, 0x75, 0x98, 0x57, 0xca, 0x40, 0x4d, 0x5b, 0x0b, 0x0a, - 0xc2, 0xd9, 0x18, 0xf8, 0x13, 0x7f, 0x10, 0xa4, 0x17, 0x52, 0x2c, 0xe8, 0x34, 0xd6, 0x3f, 0x8a, - 0x06, 0xfe, 0xa8, 0x7f, 0xe4, 0x8f, 0xfc, 0x70, 0xc0, 0x95, 0xb9, 0x6e, 0x81, 0x68, 0xba, 0xca, - 0x6e, 0xa9, 0x62, 0xc2, 0xbc, 0xcd, 0xa1, 0xb8, 0x87, 0x0f, 0xa2, 0xf1, 0x38, 0x48, 0xd1, 0xe2, - 0x25, 0xd5, 0xac, 0xea, 0x19, 0x88, 0x70, 0x0e, 0x50, 0xea, 0x5c, 0xcc, 0x60, 0x53, 0x39, 0x07, - 0x0c, 0x10, 0x6b, 0xc9, 0x69, 0x68, 0x55, 0xcf, 0x40, 0x70, 0x2d, 0xa6, 0x61, 0xc2, 0xd3, 0x74, - 0xc4, 0x87, 0xba, 0x43, 0x2d, 0x2a, 0x56, 0xcc, 0x60, 0xf7, 0x60, 0x45, 0x18, 0xe1, 0x89, 0x9f, - 0x46, 0xc9, 0x69, 0x90, 0xf4, 0x13, 0x34, 0x57, 0xdb, 0x54, 0xbe, 0x2c, 0x8b, 0x7d, 0x0c, 0xeb, - 0x39, 0x38, 0xe6, 0x03, 0x1e, 0x9c, 0xf1, 0x21, 0xa9, 0x70, 0x55, 0x6f, 0x56, 0x36, 0xbb, 0x09, - 0xad, 0x70, 0x3a, 0xee, 0x4f, 0x27, 0x43, 0x1f, 0x95, 0x98, 0x45, 0x52, 0x2e, 0x4d, 0x88, 0x7d, - 0x08, 0x4a, 0x4f, 0x93, 0xda, 0xe3, 0x92, 0x25, 0xe1, 0x90, 0x7a, 0x3d, 0xbb, 0x04, 0x12, 0x66, - 0xa6, 0x92, 0x76, 0xa4, 0x91, 0xa7, 0x00, 0xe2, 0x93, 0x38, 0x38, 0xf3, 0x53, 0xde, 0x5d, 0x16, - 0x42, 0x5d, 0x26, 0xf1, 0xbb, 0x20, 0x0c, 0xd2, 0xc0, 0x4f, 0xa3, 0xb8, 0xcb, 0x28, 0x2f, 0x03, - 0x70, 0x12, 0x89, 0x3e, 0x92, 0xd4, 0x4f, 0xa7, 0x89, 0xd4, 0x50, 0x57, 0x84, 0xb5, 0x52, 0xc8, - 0x60, 0x1f, 0xc1, 0x9a, 0xa0, 0x08, 0xca, 0x92, 0xba, 0x37, 0xa9, 0x0a, 0xab, 0x34, 0x23, 0x33, - 0x72, 0x71, 0x2a, 0x25, 0x89, 0x14, 0x3e, 0xbc, 0x2a, 0xa6, 0x72, 0x46, 0x36, 0xf6, 0x0f, 0x7b, - 0x10, 0x0c, 0xfa, 0xb2, 0x04, 0xb2, 0xc8, 0x1a, 0x8d, 0xa2, 0x98, 0xe1, 0xfe, 0x9e, 0x23, 0x36, - 0x12, 0xc9, 0x74, 0x89, 0x61, 0x22, 0x09, 0x76, 0xeb, 0x47, 0xe1, 0xe8, 0x42, 0x72, 0x20, 0x08, - 0xe8, 0x69, 0x38, 0xba, 0x40, 0x25, 0x3d, 0x08, 0xcd, 0x22, 0x42, 0x66, 0xb5, 0x15, 0x48, 0x85, - 0xde, 0x81, 0xd6, 0x64, 0x7a, 0x34, 0x0a, 0x06, 0xa2, 0x48, 0x55, 0xd4, 0x22, 0x20, 0x2a, 0x80, - 0xf6, 0xa1, 0x98, 0x75, 0x51, 0xa2, 0x46, 0x25, 0x5a, 0x12, 0xc3, 0x22, 0xee, 0x43, 0x58, 0xb5, - 0x3b, 0x28, 0x85, 0xf3, 0x1d, 0x68, 0x48, 0x5e, 0x4e, 0xa4, 0x91, 0xbe, 0x68, 0xf8, 0x30, 0xd1, - 0xa4, 0xd1, 0xf9, 0xee, 0xbf, 0xaa, 0xc1, 0x8a, 0x44, 0xb7, 0x46, 0x51, 0xc2, 0x0f, 0xa7, 0xe3, - 0xb1, 0x1f, 0x97, 0x08, 0x09, 0xe7, 0x12, 0x21, 0x51, 0x29, 0x0a, 0x89, 0x1b, 0x96, 0xad, 0x28, - 0xa4, 0x8c, 0x81, 0xb0, 0xdb, 0xb0, 0x34, 0x18, 0x45, 0x89, 0x50, 0xdd, 0x4d, 0x37, 0x5a, 0x1e, - 0x2e, 0x0a, 0xb6, 0x7a, 0x99, 0x60, 0x33, 0x85, 0xd2, 0x5c, 0x4e, 0x28, 0xb9, 0xd0, 0xc6, 0x4a, - 0xb9, 0x92, 0xb3, 0xf3, 0xd2, 0x70, 0x32, 0x30, 0xec, 0x4f, 0x5e, 0x04, 0x08, 0x79, 0xb3, 0x54, - 0x26, 0x00, 0x82, 0x31, 0x27, 0x39, 0x6e, 0x94, 0x6e, 0x4a, 0x01, 0x50, 0xcc, 0x62, 0x8f, 0x00, - 0x44, 0x5b, 0xa4, 0x4c, 0x00, 0x29, 0x13, 0xef, 0xd9, 0xab, 0x62, 0xce, 0xff, 0x06, 0x26, 0xa6, - 0x31, 0x27, 0x05, 0xc3, 0xf8, 0xd2, 0xfd, 0x6b, 0x0e, 0xb4, 0x8c, 0x3c, 0x76, 0x15, 0x96, 0xb7, - 0x9e, 0x3e, 0x3d, 0xd8, 0xf1, 0x36, 0x9f, 0x3d, 0xf9, 0xfe, 0x4e, 0x7f, 0x6b, 0xef, 0xe9, 0xe1, - 0x4e, 0xe7, 0x0a, 0xc2, 0x7b, 0x4f, 0xb7, 0x36, 0xf7, 0xfa, 0x8f, 0x9e, 0x7a, 0x5b, 0x0a, 0x76, - 0xd8, 0x1a, 0x30, 0x6f, 0xe7, 0xb3, 0xa7, 0xcf, 0x76, 0x2c, 0xbc, 0xc2, 0x3a, 0xd0, 0x7e, 0xe8, - 0xed, 0x6c, 0x6e, 0xed, 0x4a, 0xa4, 0xca, 0x56, 0xa1, 0xf3, 0xe8, 0xf9, 0xfe, 0xf6, 0x93, 0xfd, - 0xc7, 0xfd, 0xad, 0xcd, 0xfd, 0xad, 0x9d, 0xbd, 0x9d, 0xed, 0x4e, 0x8d, 0x2d, 0x40, 0x73, 0xf3, - 0xe1, 0xe6, 0xfe, 0xf6, 0xd3, 0xfd, 0x9d, 0xed, 0x4e, 0xdd, 0xfd, 0xcf, 0x0e, 0x5c, 0xa5, 0x5e, - 0x0f, 0xf3, 0x4c, 0x72, 0x13, 0x5a, 0x83, 0x28, 0x9a, 0xa0, 0x12, 0x9f, 0x6d, 0x53, 0x26, 0x84, - 0x0c, 0x20, 0x18, 0xfc, 0x38, 0x8a, 0x07, 0x5c, 0xf2, 0x08, 0x10, 0xf4, 0x08, 0x11, 0x64, 0x00, - 0xb9, 0xbc, 0xa2, 0x84, 0x60, 0x91, 0x96, 0xc0, 0x44, 0x91, 0x35, 0x98, 0x3b, 0x8a, 0xb9, 0x3f, - 0x38, 0x95, 0xdc, 0x21, 0x53, 0xec, 0xeb, 0x99, 0x95, 0x39, 0xc0, 0xd9, 0x1f, 0xf1, 0x21, 0x51, - 0x4c, 0xc3, 0x5b, 0x92, 0xf8, 0x96, 0x84, 0x51, 0xa2, 0xf9, 0x47, 0x7e, 0x38, 0x8c, 0x42, 0x3e, - 0x94, 0x2a, 0x6c, 0x06, 0xb8, 0x07, 0xb0, 0x96, 0x1f, 0x9f, 0xe4, 0xb1, 0x8f, 0x0c, 0x1e, 0x13, - 0x1a, 0x65, 0x6f, 0xf6, 0x6a, 0x1a, 0xfc, 0xf6, 0xc7, 0x15, 0xa8, 0xa1, 0x82, 0x31, 0x5b, 0x19, - 0x31, 0x75, 0xc6, 0x6a, 0xc1, 0xe7, 0x4e, 0x86, 0xab, 0xd8, 0x6e, 0xa4, 0xd3, 0x24, 0x43, 0xb2, - 0xfc, 0x98, 0x0f, 0xce, 0xa4, 0xdb, 0xc4, 0x40, 0x90, 0x41, 0x50, 0xa1, 0xa7, 0xaf, 0x25, 0x83, - 0xa8, 0xb4, 0xca, 0xa3, 0x2f, 0xe7, 0xb3, 0x3c, 0xfa, 0xae, 0x0b, 0xf3, 0x41, 0x78, 0x14, 0x4d, - 0xc3, 0x21, 0x31, 0x44, 0xc3, 0x53, 0x49, 0xf2, 0xf2, 0x13, 0xa3, 0x06, 0x63, 0x45, 0xfe, 0x19, - 0xc0, 0xee, 0x43, 0x33, 0xb9, 0x08, 0x07, 0x26, 0xcd, 0xaf, 0xca, 0x59, 0xc2, 0x39, 0xd8, 0x38, - 0xbc, 0x08, 0x07, 0x44, 0xe1, 0x59, 0x31, 0xf7, 0xb7, 0xa1, 0xa1, 0x60, 0x24, 0xcb, 0xe7, 0xfb, - 0x9f, 0xee, 0x3f, 0x7d, 0xb1, 0xdf, 0x3f, 0xfc, 0xc1, 0xfe, 0x56, 0xe7, 0x0a, 0x5b, 0x82, 0xd6, - 0xe6, 0x16, 0x51, 0x3a, 0x01, 0x0e, 0x16, 0x39, 0xd8, 0x3c, 0x3c, 0xd4, 0x48, 0xc5, 0x65, 0x68, - 0x94, 0x27, 0xa4, 0xc5, 0x69, 0x2f, 0xf6, 0x47, 0xb0, 0x6c, 0x60, 0x99, 0x45, 0x30, 0x41, 0x20, - 0x67, 0x11, 0x90, 0xfa, 0x27, 0x72, 0xdc, 0x0e, 0x2c, 0x3e, 0xe6, 0xe9, 0x93, 0xf0, 0x38, 0x52, - 0x35, 0xfd, 0xf7, 0x1a, 0x2c, 0x69, 0x48, 0x56, 0x74, 0x1b, 0x96, 0x82, 0x21, 0x0f, 0xd3, 0x20, - 0xbd, 0xe8, 0x5b, 0xb6, 0x7f, 0x1e, 0x46, 0xb5, 0xd9, 0x1f, 0x05, 0xbe, 0x3a, 0x4c, 0x11, 0x09, - 0xb4, 0x85, 0x71, 0x3f, 0x37, 0x7d, 0x30, 0x44, 0x57, 0xc2, 0xe5, 0x50, 0x9a, 0x87, 0x12, 0x08, - 0x71, 0xb9, 0xcd, 0xe8, 0x4f, 0x84, 0xfa, 0x58, 0x96, 0x85, 0x4b, 0x25, 0x6a, 0xc2, 0x21, 0xd7, - 0xc5, 0x9e, 0xaf, 0x81, 0xc2, 0x69, 0xc5, 0x9c, 0x90, 0x8f, 0xf9, 0xd3, 0x0a, 0xe3, 0xc4, 0xa3, - 0x51, 0x38, 0xf1, 0x40, 0xf9, 0x79, 0x11, 0x0e, 0xf8, 0xb0, 0x9f, 0x46, 0x7d, 0x92, 0xf3, 0x44, - 0x12, 0x0d, 0x2f, 0x0f, 0xe3, 0xbe, 0x91, 0xf2, 0x24, 0x0d, 0xb9, 0x70, 0x31, 0x37, 0x1e, 0x56, - 0xba, 0x8e, 0xa7, 0x20, 0xd4, 0xf5, 0xa7, 0x71, 0x90, 0x74, 0xdb, 0x74, 0x96, 0x41, 0xbf, 0xd9, - 0xb7, 0xe1, 0xea, 0x11, 0x4f, 0xd2, 0xfe, 0x29, 0xf7, 0x87, 0x3c, 0x26, 0xf2, 0x12, 0x87, 0x26, - 0x42, 0x7d, 0x2a, 0xcf, 0x44, 0xc2, 0x3d, 0xe3, 0x71, 0x12, 0x44, 0x21, 0x29, 0x4e, 0x4d, 0x4f, - 0x25, 0xb1, 0x3e, 0x1c, 0xbc, 0xde, 0xa8, 0xf5, 0x0c, 0x2e, 0xd1, 0xc0, 0xcb, 0x33, 0xd9, 0x2d, - 0x98, 0xa3, 0x01, 0x24, 0xdd, 0x0e, 0xd1, 0x4c, 0x3b, 0xe3, 0xf9, 0x20, 0xf4, 0x64, 0x1e, 0xae, - 0xf2, 0x20, 0x1a, 0x45, 0x31, 0x69, 0x4f, 0x4d, 0x4f, 0x24, 0xec, 0xd9, 0x39, 0x89, 0xfd, 0xc9, - 0xa9, 0xd4, 0xa0, 0xf2, 0xf0, 0x77, 0x6b, 0x8d, 0x56, 0xa7, 0xed, 0xfe, 0x29, 0xa8, 0x53, 0xb5, - 0x54, 0x1d, 0x4d, 0xa6, 0x23, 0xab, 0x23, 0xb4, 0x0b, 0xf3, 0x21, 0x4f, 0xcf, 0xa3, 0xf8, 0xa5, - 0x3a, 0x99, 0x93, 0x49, 0xf7, 0x67, 0x64, 0x6d, 0xe9, 0x93, 0xaa, 0xe7, 0xa4, 0x26, 0xa2, 0xcd, - 0x2c, 0x96, 0x2a, 0x39, 0xf5, 0xa5, 0x01, 0xd8, 0x20, 0xe0, 0xf0, 0xd4, 0x47, 0x59, 0x6b, 0xad, - 0xbe, 0xb0, 0xa9, 0x5b, 0x84, 0xed, 0x8a, 0xc5, 0xbf, 0x05, 0x8b, 0xea, 0x0c, 0x2c, 0xe9, 0x8f, - 0xf8, 0x71, 0xaa, 0x3c, 0x62, 0xe1, 0x74, 0x4c, 0x86, 0xf7, 0x1e, 0x3f, 0x4e, 0xdd, 0x7d, 0x58, - 0x96, 0xf2, 0xef, 0xe9, 0x84, 0xab, 0xa6, 0x7f, 0xb3, 0x4c, 0x97, 0x68, 0xdd, 0x5f, 0xb1, 0x05, - 0xa6, 0x38, 0xf5, 0xb3, 0x4b, 0xba, 0x1e, 0x30, 0x53, 0x9e, 0xca, 0x0a, 0xe5, 0x66, 0xae, 0x7c, - 0x7e, 0x72, 0x38, 0x16, 0x86, 0xf3, 0x93, 0x4c, 0x07, 0x03, 0x75, 0x72, 0xd9, 0xf0, 0x54, 0xd2, - 0xfd, 0x03, 0x07, 0x56, 0xa8, 0x36, 0xa5, 0x0d, 0xc9, 0x3d, 0xeb, 0xe3, 0xaf, 0xd0, 0x4d, 0xe5, - 0x71, 0x15, 0x7e, 0xc6, 0x55, 0xa8, 0x9b, 0xbb, 0x98, 0x48, 0x7c, 0x75, 0xff, 0x4a, 0x2d, 0xef, - 0x5f, 0x71, 0xff, 0x96, 0x03, 0xcb, 0x62, 0x23, 0x21, 0xcd, 0x59, 0x0e, 0xff, 0x4f, 0xc3, 0x82, - 0xd0, 0x08, 0xa4, 0x54, 0x90, 0x1d, 0xcd, 0x44, 0x2b, 0xa1, 0xa2, 0xf0, 0xee, 0x15, 0xcf, 0x2e, - 0xcc, 0x1e, 0x90, 0x56, 0x16, 0xf6, 0x09, 0x2d, 0x39, 0xe3, 0xb6, 0xe7, 0x7a, 0xf7, 0x8a, 0x67, - 0x14, 0x7f, 0xd8, 0x80, 0x39, 0x61, 0x76, 0xb8, 0x8f, 0x61, 0xc1, 0x6a, 0xc8, 0xf2, 0xed, 0xb4, - 0x85, 0x6f, 0xa7, 0xe0, 0x44, 0xad, 0x94, 0x38, 0x51, 0xff, 0x59, 0x15, 0x18, 0x12, 0x4b, 0x6e, - 0x35, 0x6e, 0xda, 0x27, 0x11, 0xea, 0xb8, 0x3b, 0x83, 0xd8, 0x06, 0x30, 0x23, 0xa9, 0x4e, 0x47, - 0xc4, 0x96, 0x59, 0x92, 0x83, 0x62, 0x56, 0x6a, 0x1c, 0xfa, 0xe4, 0x81, 0x6c, 0x76, 0x31, 0xed, - 0xa5, 0x79, 0xb8, 0x2b, 0xd2, 0x31, 0x04, 0x5a, 0x17, 0xd2, 0xce, 0x55, 0xe9, 0xfc, 0xfa, 0xce, - 0x5d, 0xba, 0xbe, 0xf3, 0x05, 0xff, 0x99, 0x61, 0x69, 0x35, 0x6c, 0x4b, 0xeb, 0x16, 0x2c, 0xa8, - 0xd3, 0x86, 0xfe, 0x18, 0x5b, 0x97, 0x66, 0xad, 0x05, 0xb2, 0x3b, 0xd0, 0x51, 0xc6, 0x8e, 0x36, - 0xe7, 0xc4, 0x99, 0x5d, 0x01, 0x47, 0xf9, 0x9f, 0x79, 0xd4, 0x5a, 0xd4, 0xd9, 0x0c, 0x20, 0xdb, - 0x08, 0x29, 0xa4, 0x3f, 0x0d, 0xe5, 0x31, 0x37, 0x1f, 0x92, 0x41, 0x8b, 0xb6, 0x51, 0x3e, 0xc3, - 0xfd, 0x1b, 0x0e, 0x74, 0x70, 0xcd, 0x2c, 0xb2, 0xfc, 0x04, 0x88, 0x2b, 0xde, 0x90, 0x2a, 0xad, - 0xb2, 0xec, 0x63, 0x68, 0x52, 0x3a, 0x9a, 0xf0, 0x50, 0xd2, 0x64, 0xd7, 0xa6, 0xc9, 0x4c, 0x9e, - 0xec, 0x5e, 0xf1, 0xb2, 0xc2, 0x06, 0x45, 0xfe, 0x7b, 0x07, 0x5a, 0xb2, 0x95, 0x5f, 0xda, 0x63, - 0xd3, 0x33, 0xe2, 0x12, 0x04, 0x25, 0x65, 0x61, 0x08, 0xb7, 0x61, 0x69, 0xec, 0xa7, 0xd3, 0x18, - 0xf7, 0x73, 0xcb, 0x5b, 0x93, 0x87, 0x71, 0x73, 0x26, 0xd1, 0x99, 0xf4, 0xd3, 0x60, 0xd4, 0x57, - 0xb9, 0x32, 0x02, 0xa0, 0x2c, 0x0b, 0x25, 0x48, 0x92, 0xfa, 0x27, 0x5c, 0xee, 0xbb, 0x22, 0xe1, - 0x76, 0x61, 0xed, 0x20, 0x3b, 0x81, 0x31, 0xf4, 0x6b, 0xf7, 0x9f, 0x2c, 0xc0, 0x7a, 0x21, 0x4b, - 0xc7, 0x2b, 0x49, 0x17, 0xc4, 0x28, 0x18, 0x1f, 0x45, 0xda, 0x38, 0x71, 0x4c, 0xef, 0x84, 0x95, - 0xc5, 0x4e, 0xe0, 0xaa, 0x52, 0x30, 0x70, 0x4e, 0xb3, 0xcd, 0xb0, 0x42, 0xbb, 0xdc, 0x87, 0xf6, - 0x12, 0xe6, 0x1b, 0x54, 0xb8, 0xc9, 0xc4, 0xe5, 0xf5, 0xb1, 0x53, 0xe8, 0x6a, 0x4d, 0x46, 0x0a, - 0x6b, 0x43, 0xdb, 0xc1, 0xb6, 0x3e, 0xb8, 0xa4, 0x2d, 0x4b, 0x1d, 0xf7, 0x66, 0xd6, 0xc6, 0x2e, - 0xe0, 0x86, 0xca, 0x23, 0x69, 0x5c, 0x6c, 0xaf, 0xf6, 0x46, 0x63, 0x23, 0x43, 0xc3, 0x6e, 0xf4, - 0x92, 0x8a, 0xd9, 0x4f, 0x60, 0xed, 0xdc, 0x0f, 0x52, 0xd5, 0x2d, 0x43, 0xb7, 0xa8, 0x53, 0x93, - 0xf7, 0x2f, 0x69, 0xf2, 0x85, 0xf8, 0xd8, 0xda, 0xa2, 0x66, 0xd4, 0xd8, 0xfb, 0xa3, 0x0a, 0x2c, - 0xda, 0xf5, 0x20, 0x99, 0x4a, 0xde, 0x57, 0x32, 0x50, 0x69, 0xa3, 0x39, 0xb8, 0x68, 0xe3, 0x57, - 0xca, 0x6c, 0x7c, 0xd3, 0xaa, 0xae, 0x5e, 0xe6, 0xea, 0xab, 0xbd, 0x99, 0xab, 0xaf, 0x5e, 0xea, - 0xea, 0x9b, 0xed, 0x11, 0x9a, 0xfb, 0x65, 0x3d, 0x42, 0xf3, 0xaf, 0xf5, 0x08, 0xf5, 0xfe, 0xaf, - 0x03, 0xac, 0x48, 0xbd, 0xec, 0xb1, 0x70, 0x6b, 0x84, 0x7c, 0x24, 0x85, 0xd8, 0x37, 0xdf, 0x8c, - 0x03, 0xd4, 0x6a, 0xa9, 0xaf, 0x91, 0x15, 0xcd, 0xa0, 0x21, 0x53, 0xbd, 0x5a, 0xf0, 0xca, 0xb2, - 0x72, 0xee, 0xce, 0xda, 0xe5, 0xee, 0xce, 0xfa, 0xe5, 0xee, 0xce, 0xb9, 0xbc, 0xbb, 0xb3, 0xf7, - 0x97, 0x1d, 0x58, 0x29, 0x21, 0xb3, 0x5f, 0xdf, 0xc0, 0x91, 0x30, 0x2c, 0xe9, 0x53, 0x91, 0x84, - 0x61, 0x82, 0xbd, 0x3f, 0x0f, 0x0b, 0x16, 0x6b, 0xfd, 0xfa, 0xda, 0xcf, 0x6b, 0x88, 0x82, 0xb2, - 0x2d, 0xac, 0xf7, 0x3f, 0x2b, 0xc0, 0x8a, 0xec, 0xfd, 0x27, 0xda, 0x87, 0xe2, 0x3c, 0x55, 0x4b, - 0xe6, 0xe9, 0xff, 0xeb, 0xce, 0xf3, 0x01, 0x2c, 0xcb, 0x48, 0x48, 0xc3, 0x91, 0x25, 0x28, 0xa6, - 0x98, 0x81, 0x3a, 0xb2, 0xed, 0x6b, 0x6e, 0x58, 0x91, 0x5f, 0xc6, 0xf6, 0x9b, 0x73, 0x39, 0xbb, - 0x3d, 0xe8, 0xca, 0x19, 0xda, 0x39, 0xe3, 0x61, 0x7a, 0x38, 0x3d, 0x12, 0xa1, 0x80, 0x41, 0x14, - 0xba, 0xff, 0xbc, 0xaa, 0xd5, 0x7c, 0xca, 0x94, 0x0a, 0xc5, 0xb7, 0xa1, 0x6d, 0x6e, 0x1f, 0x72, - 0x39, 0x72, 0xbe, 0x4c, 0x54, 0x25, 0xcc, 0x52, 0x6c, 0x1b, 0x16, 0x49, 0x48, 0x0e, 0xf5, 0x77, - 0x15, 0xfa, 0xee, 0x35, 0xfe, 0x99, 0xdd, 0x2b, 0x5e, 0xee, 0x1b, 0xf6, 0x5b, 0xb0, 0x68, 0x1b, - 0x7f, 0x52, 0x2b, 0x29, 0xb3, 0x06, 0xf0, 0x73, 0xbb, 0x30, 0xdb, 0x84, 0x4e, 0xde, 0x7a, 0x94, - 0x51, 0x39, 0x33, 0x2a, 0x28, 0x14, 0x67, 0x1f, 0xcb, 0x83, 0xc7, 0x3a, 0xf9, 0x4d, 0x6e, 0xd9, - 0x9f, 0x19, 0xd3, 0xb4, 0x21, 0xfe, 0x18, 0x47, 0x91, 0xbf, 0x03, 0x90, 0x61, 0xac, 0x03, 0xed, - 0xa7, 0x07, 0x3b, 0xfb, 0xfd, 0xad, 0xdd, 0xcd, 0xfd, 0xfd, 0x9d, 0xbd, 0xce, 0x15, 0xc6, 0x60, - 0x91, 0xdc, 0x7c, 0xdb, 0x1a, 0x73, 0x10, 0x93, 0x8e, 0x15, 0x85, 0x55, 0xd8, 0x2a, 0x74, 0x9e, - 0xec, 0xe7, 0xd0, 0xea, 0xc3, 0xa6, 0xe6, 0x0f, 0x77, 0x0d, 0x56, 0x45, 0xa4, 0xeb, 0x43, 0x41, - 0x1e, 0x4a, 0x3b, 0xf9, 0x7b, 0x0e, 0x5c, 0xcd, 0x65, 0x64, 0x61, 0x5b, 0x42, 0x01, 0xb1, 0xb5, - 0x12, 0x1b, 0xa4, 0x83, 0x04, 0xa5, 0x6b, 0xe6, 0x24, 0x48, 0x31, 0x03, 0x69, 0xde, 0xd0, 0x4d, - 0x73, 0x9c, 0x54, 0x96, 0xe5, 0xae, 0xeb, 0x08, 0x99, 0x5c, 0xc7, 0x8f, 0x45, 0x04, 0xad, 0x99, - 0x91, 0x1d, 0xe4, 0xda, 0x5d, 0x56, 0x49, 0x34, 0x2b, 0x2c, 0x65, 0xc7, 0xee, 0x6f, 0x69, 0x9e, - 0xfb, 0x0f, 0xab, 0xc0, 0xbe, 0x37, 0xe5, 0xf1, 0x05, 0xc5, 0x66, 0x69, 0xaf, 0xe9, 0x7a, 0xde, - 0x27, 0x38, 0x37, 0x99, 0x1e, 0x7d, 0xca, 0x2f, 0x54, 0xa4, 0x62, 0x25, 0x8b, 0x54, 0x2c, 0x8b, - 0x16, 0xac, 0x5d, 0x1e, 0x2d, 0x58, 0xbf, 0x2c, 0x5a, 0xf0, 0x6b, 0xb0, 0x10, 0x9c, 0x84, 0x11, - 0xf2, 0x3c, 0xea, 0x09, 0x49, 0x77, 0xee, 0x66, 0x15, 0x6d, 0x6b, 0x09, 0xee, 0x23, 0xc6, 0x1e, - 0x64, 0x85, 0xf8, 0xf0, 0x84, 0x22, 0x53, 0x4d, 0x29, 0xb0, 0x33, 0x3c, 0xe1, 0x7b, 0xd1, 0xc0, - 0x4f, 0xa3, 0x98, 0x1c, 0x3b, 0xea, 0x63, 0xc4, 0x13, 0x76, 0x0b, 0x16, 0x93, 0x68, 0x8a, 0x9a, - 0x93, 0x1a, 0xab, 0xf0, 0x24, 0xb5, 0x05, 0x7a, 0x20, 0x46, 0xbc, 0x01, 0x2b, 0xd3, 0x84, 0xf7, - 0xc7, 0x41, 0x92, 0xe0, 0xee, 0x38, 0x88, 0xc2, 0x34, 0x8e, 0x46, 0xd2, 0x9f, 0xb4, 0x3c, 0x4d, - 0xf8, 0x67, 0x22, 0x67, 0x4b, 0x64, 0xb0, 0x6f, 0x67, 0x5d, 0x9a, 0xf8, 0x41, 0x9c, 0x74, 0x81, - 0xba, 0xa4, 0x46, 0x8a, 0xfd, 0x3e, 0xf0, 0x83, 0x58, 0xf7, 0x05, 0x13, 0x49, 0x2e, 0xda, 0xb1, - 0x95, 0x8b, 0x76, 0x94, 0xc1, 0x72, 0x1b, 0xd0, 0x50, 0x9f, 0xa3, 0x91, 0x7b, 0x1c, 0x47, 0x63, - 0x65, 0xe4, 0xe2, 0x6f, 0xb6, 0x08, 0x95, 0x34, 0x92, 0x06, 0x6a, 0x25, 0x8d, 0xdc, 0xdf, 0x85, - 0x96, 0x31, 0x03, 0xec, 0x5d, 0x61, 0x6f, 0xa3, 0x42, 0x25, 0xad, 0x63, 0x71, 0x4c, 0xd2, 0x94, - 0xe8, 0x93, 0x21, 0xfb, 0x06, 0x2c, 0x0f, 0x83, 0x98, 0x53, 0x90, 0x6c, 0x3f, 0xe6, 0x67, 0x3c, - 0x4e, 0x94, 0x2f, 0xa1, 0xa3, 0x33, 0x3c, 0x81, 0xbb, 0x7d, 0x58, 0xb1, 0x48, 0x47, 0x73, 0xd6, - 0x1c, 0x45, 0xf8, 0x29, 0x77, 0xa6, 0x1d, 0xfd, 0x27, 0xf3, 0x70, 0x4f, 0x92, 0x6e, 0x90, 0xfe, - 0x24, 0x8e, 0x8e, 0xa8, 0x11, 0xc7, 0xb3, 0x30, 0xf7, 0x1f, 0x57, 0xa0, 0xba, 0x1b, 0x4d, 0xcc, - 0xc3, 0x1d, 0xa7, 0x78, 0xb8, 0x23, 0x95, 0xc7, 0xbe, 0xd6, 0x0d, 0xe5, 0x0e, 0x6f, 0x81, 0xec, - 0x0e, 0x2c, 0xfa, 0xe3, 0xb4, 0x9f, 0x46, 0xa8, 0x2c, 0x9f, 0xfb, 0xb1, 0x08, 0x07, 0xac, 0x12, - 0x59, 0xe4, 0x72, 0xd8, 0x2a, 0x54, 0xb5, 0xce, 0x43, 0x05, 0x30, 0x89, 0x96, 0x1a, 0x1d, 0x86, - 0x5f, 0x48, 0x9f, 0xa5, 0x4c, 0x21, 0xd7, 0xdb, 0xdf, 0x0b, 0x33, 0x59, 0xec, 0x5c, 0x65, 0x59, - 0xa8, 0xc8, 0x22, 0x23, 0x8c, 0x33, 0xbd, 0x50, 0xa7, 0x4d, 0x6f, 0x7c, 0xc3, 0xf6, 0xc6, 0xdf, - 0x84, 0x56, 0x3a, 0x3a, 0xeb, 0x4f, 0xfc, 0x8b, 0x51, 0xe4, 0x0f, 0x25, 0x01, 0x9a, 0x90, 0xfb, - 0x0b, 0x07, 0xea, 0x34, 0xcb, 0xb8, 0x4f, 0x0b, 0x41, 0xa6, 0x4f, 0x80, 0x68, 0xe6, 0x16, 0xbc, - 0x3c, 0xcc, 0x5c, 0x2b, 0xb0, 0xbb, 0xa2, 0x87, 0x6c, 0x06, 0x77, 0xdf, 0x84, 0xa6, 0x48, 0xe9, - 0x20, 0x65, 0x2a, 0x92, 0x81, 0xec, 0x06, 0xd4, 0x4e, 0xa3, 0x89, 0x32, 0x65, 0x40, 0x1d, 0xf8, - 0x46, 0x13, 0x8f, 0xf0, 0xac, 0x3f, 0x58, 0x9f, 0x18, 0xb8, 0x50, 0x17, 0xf3, 0x30, 0xaa, 0xe8, - 0xba, 0x5a, 0x73, 0x22, 0x73, 0xa8, 0xfb, 0x1c, 0x96, 0x90, 0x17, 0x0c, 0x8f, 0xf8, 0x6c, 0xa1, - 0xf5, 0x75, 0xdc, 0x03, 0x07, 0xa3, 0xe9, 0x90, 0x9b, 0x06, 0x25, 0x79, 0x3c, 0x25, 0xae, 0x54, - 0x29, 0xf7, 0x9f, 0x3a, 0x82, 0xc7, 0xb0, 0x5e, 0x76, 0x1b, 0x6a, 0x28, 0x7a, 0x72, 0xfe, 0x03, - 0x1d, 0x17, 0x82, 0xe5, 0x3c, 0x2a, 0x81, 0xd4, 0x4c, 0x3e, 0x49, 0xb3, 0x76, 0xe1, 0x91, 0xcc, - 0xac, 0x31, 0x3d, 0xb2, 0x9c, 0x11, 0x93, 0x43, 0xd9, 0x86, 0x71, 0xa0, 0x53, 0xb3, 0xc4, 0x99, - 0xda, 0x72, 0x87, 0x27, 0xdc, 0x38, 0xc8, 0xf9, 0x43, 0x07, 0x16, 0xac, 0x3e, 0x21, 0xa5, 0x8c, - 0xfc, 0x24, 0x95, 0xe7, 0xf2, 0x72, 0xe5, 0x4d, 0xc8, 0xa4, 0xb2, 0x8a, 0x4d, 0x65, 0xfa, 0x60, - 0xa0, 0x6a, 0x1e, 0x0c, 0xdc, 0x83, 0x66, 0x16, 0xd9, 0x6f, 0x77, 0x0a, 0x5b, 0x54, 0x11, 0x32, - 0x59, 0xa1, 0xcc, 0xf5, 0x5c, 0x37, 0x5c, 0xcf, 0xee, 0x03, 0x68, 0x19, 0xe5, 0x4d, 0xd7, 0xb1, - 0x63, 0xb9, 0x8e, 0x75, 0xf8, 0x58, 0x25, 0x0b, 0x1f, 0x73, 0xbf, 0xac, 0xc0, 0x02, 0x92, 0x77, - 0x10, 0x9e, 0x1c, 0x44, 0xa3, 0x60, 0x70, 0x41, 0x64, 0xa5, 0x28, 0x59, 0x6e, 0x3d, 0x8a, 0xcc, - 0x6d, 0x18, 0x59, 0x4e, 0xc7, 0xcc, 0x0a, 0xf9, 0xa0, 0xd3, 0x28, 0x40, 0x90, 0xfd, 0x8e, 0xfc, - 0x44, 0xf2, 0xa4, 0x54, 0x7d, 0x2d, 0x10, 0xd9, 0x1c, 0x01, 0x0a, 0x06, 0x1c, 0x07, 0xa3, 0x51, - 0x20, 0xca, 0x0a, 0xc3, 0xa8, 0x2c, 0x0b, 0xdb, 0x1c, 0x06, 0x89, 0x7f, 0x94, 0x1d, 0xfa, 0xe9, - 0x34, 0x79, 0xd5, 0xfc, 0x57, 0x86, 0x57, 0x4d, 0x44, 0x0f, 0xdb, 0x60, 0x7e, 0x21, 0xe7, 0x0b, - 0x0b, 0xe9, 0xfe, 0x9b, 0x0a, 0xb4, 0x0c, 0xb2, 0x40, 0x76, 0x2e, 0x95, 0xf1, 0x06, 0x2a, 0x4f, - 0xc3, 0x43, 0xcb, 0xd4, 0x36, 0x10, 0x76, 0xcb, 0x6e, 0x95, 0xbc, 0xeb, 0xc4, 0xf0, 0x16, 0x09, - 0x5d, 0x87, 0x26, 0x92, 0xfe, 0x87, 0x64, 0xd7, 0xcb, 0x6b, 0x35, 0x1a, 0x50, 0xb9, 0xf7, 0x29, - 0xb7, 0x9e, 0xe5, 0x12, 0xf0, 0xda, 0xf3, 0xf1, 0x8f, 0xa1, 0x2d, 0xab, 0xa1, 0x35, 0xa6, 0x41, - 0x67, 0xcc, 0x67, 0xad, 0xbf, 0x67, 0x95, 0x54, 0x5f, 0xde, 0x57, 0x5f, 0x36, 0x2e, 0xfb, 0x52, - 0x95, 0x74, 0x1f, 0xeb, 0xd0, 0x83, 0xc7, 0xb1, 0x3f, 0x39, 0x55, 0x02, 0xe5, 0x1e, 0xac, 0x28, - 0xb9, 0x31, 0x0d, 0xfd, 0x30, 0x8c, 0xa6, 0xe1, 0x80, 0xab, 0x48, 0xb3, 0xb2, 0x2c, 0x77, 0xa8, - 0xe3, 0x92, 0xa9, 0x22, 0x76, 0x07, 0xea, 0x42, 0x79, 0x11, 0x5b, 0x61, 0xb9, 0x08, 0x11, 0x45, - 0xd8, 0x6d, 0xa8, 0x0b, 0x1d, 0xa6, 0x32, 0x93, 0xe9, 0x45, 0x01, 0x77, 0x03, 0x96, 0x28, 0x10, - 0xda, 0x90, 0x7d, 0x6f, 0x95, 0x6d, 0x91, 0x73, 0x03, 0x11, 0x2e, 0xbd, 0x0a, 0x6c, 0x5f, 0xf0, - 0x95, 0x79, 0x80, 0xf8, 0x8b, 0x2a, 0xb4, 0x0c, 0x18, 0xe5, 0x13, 0x9d, 0xfa, 0xf4, 0x87, 0x81, - 0x3f, 0xe6, 0x29, 0x8f, 0x25, 0x2f, 0xe5, 0x50, 0x2c, 0xe7, 0x9f, 0x9d, 0xf4, 0xa3, 0x69, 0xda, - 0x1f, 0xf2, 0x93, 0x98, 0x73, 0xb9, 0x77, 0xe7, 0x50, 0x2c, 0x87, 0xd4, 0x6c, 0x94, 0x13, 0xe7, - 0x34, 0x39, 0x54, 0x1d, 0x07, 0x8a, 0x79, 0xaa, 0x65, 0xc7, 0x81, 0x62, 0x56, 0xf2, 0x92, 0xb5, - 0x5e, 0x22, 0x59, 0x3f, 0x82, 0x35, 0x21, 0x43, 0xa5, 0xf4, 0xe8, 0xe7, 0x88, 0x6b, 0x46, 0x2e, - 0xbb, 0x03, 0x1d, 0xec, 0xb3, 0x62, 0x8d, 0x24, 0xf8, 0x99, 0xe0, 0x31, 0xc7, 0x2b, 0xe0, 0x58, - 0x96, 0x7c, 0xd4, 0x66, 0x59, 0x11, 0x93, 0x51, 0xc0, 0xa9, 0xac, 0xff, 0xca, 0x2e, 0xdb, 0x94, - 0x65, 0x73, 0x38, 0xfb, 0x18, 0xd6, 0xc7, 0x7c, 0x18, 0xf8, 0x76, 0x15, 0xe4, 0x32, 0x12, 0xc1, - 0x61, 0xb3, 0xb2, 0xb1, 0x15, 0x9c, 0x85, 0x9f, 0x45, 0xe3, 0xa3, 0x40, 0x6c, 0x6c, 0xc2, 0x9b, - 0x5e, 0xf3, 0x0a, 0xb8, 0xbb, 0x00, 0xad, 0xc3, 0x34, 0x9a, 0xa8, 0xa5, 0x5f, 0x84, 0xb6, 0x48, - 0xca, 0xd8, 0xc2, 0xb7, 0xe0, 0x1a, 0xd1, 0xeb, 0xb3, 0x68, 0x12, 0x8d, 0xa2, 0x93, 0x0b, 0xcb, - 0x26, 0xfe, 0x77, 0x0e, 0xac, 0x58, 0xb9, 0x99, 0x51, 0x4c, 0x0e, 0x3c, 0x15, 0x10, 0x26, 0x48, - 0x7c, 0xd9, 0xd8, 0x16, 0x44, 0x41, 0x71, 0x56, 0xf2, 0x5c, 0xc6, 0x88, 0x6d, 0x66, 0xb7, 0x1c, - 0xd4, 0x87, 0x82, 0xde, 0xbb, 0x45, 0x7a, 0x97, 0xdf, 0xab, 0xfb, 0x0f, 0xaa, 0x8a, 0xdf, 0x92, - 0x11, 0x34, 0x43, 0x39, 0xe8, 0xaa, 0x1d, 0xf5, 0x60, 0xfa, 0x50, 0x54, 0x0f, 0x06, 0x1a, 0x4c, - 0xdc, 0x9f, 0x3b, 0x00, 0x59, 0xef, 0x28, 0xee, 0x42, 0x6f, 0x6d, 0xe2, 0x26, 0xad, 0xb1, 0x8d, - 0xbd, 0x0b, 0x6d, 0x7d, 0x74, 0x9e, 0xed, 0x96, 0x2d, 0x85, 0xa1, 0x76, 0xf1, 0x3e, 0x2c, 0x9d, - 0x8c, 0xa2, 0x23, 0xd2, 0x62, 0x28, 0x58, 0x35, 0x91, 0x11, 0x96, 0x8b, 0x02, 0x7e, 0x24, 0xd1, - 0x6c, 0x6b, 0xad, 0x99, 0x5b, 0x6b, 0xf9, 0x46, 0xf9, 0x65, 0x45, 0x9f, 0x5f, 0x66, 0x33, 0xf1, - 0x5a, 0x2e, 0x67, 0xf7, 0x0b, 0x62, 0x7d, 0xc6, 0x91, 0x21, 0xe9, 0xfb, 0x07, 0x97, 0xba, 0x54, - 0x1f, 0xc0, 0x62, 0x2c, 0x64, 0xa6, 0x12, 0xa8, 0xb5, 0xd7, 0x08, 0xd4, 0x85, 0xd8, 0xda, 0x99, - 0xbf, 0x0e, 0x1d, 0x7f, 0x78, 0xc6, 0xe3, 0x34, 0x20, 0x17, 0x13, 0xa9, 0x51, 0x62, 0x80, 0x4b, - 0x06, 0x4e, 0xda, 0xca, 0xfb, 0xb0, 0x24, 0xe3, 0x5d, 0x75, 0x49, 0x79, 0x2f, 0x2d, 0x83, 0xb1, - 0xa0, 0xfb, 0x0f, 0xd4, 0x71, 0xa9, 0xbd, 0xba, 0xaf, 0x9f, 0x15, 0x73, 0x84, 0x95, 0xdc, 0x08, - 0xbf, 0x26, 0x8f, 0x2f, 0x87, 0xca, 0x97, 0x55, 0x35, 0x62, 0xb1, 0x86, 0xf2, 0xb8, 0xd9, 0x9e, - 0xd6, 0xda, 0x9b, 0x4c, 0xab, 0xfb, 0x1f, 0x1d, 0x98, 0xdf, 0x8d, 0x26, 0xbb, 0x38, 0xc5, 0xa8, - 0xe3, 0x20, 0x9b, 0xe8, 0x60, 0x73, 0x95, 0xbc, 0x24, 0x66, 0xad, 0x54, 0x2b, 0x59, 0xc8, 0x6b, - 0x25, 0x7f, 0x16, 0xde, 0x22, 0x6f, 0x6a, 0x1c, 0x4d, 0xa2, 0x18, 0xd9, 0xd5, 0x1f, 0x09, 0x15, - 0x24, 0x0a, 0xd3, 0x53, 0x25, 0x4e, 0x5f, 0x57, 0x84, 0x5c, 0x1c, 0x68, 0x79, 0x0a, 0x6b, 0x46, - 0x6a, 0x51, 0x42, 0xca, 0x16, 0x33, 0xdc, 0xdf, 0x84, 0x26, 0x59, 0x18, 0x34, 0xb4, 0x0f, 0xa0, - 0x79, 0x1a, 0x4d, 0xfa, 0xa7, 0x41, 0x98, 0x2a, 0xf6, 0x5f, 0xcc, 0x54, 0xff, 0x5d, 0x9a, 0x14, - 0x5d, 0xc0, 0xfd, 0xd7, 0x73, 0x30, 0xff, 0x24, 0x3c, 0x8b, 0x82, 0x01, 0x1d, 0xd1, 0x8e, 0xf9, - 0x38, 0x52, 0xe1, 0xf7, 0xf8, 0x1b, 0xa7, 0x83, 0x62, 0x4d, 0x27, 0x82, 0x78, 0xdb, 0x22, 0x14, - 0x43, 0x42, 0x74, 0x71, 0x34, 0xbb, 0x3a, 0x27, 0x18, 0xcc, 0x40, 0xd0, 0x3a, 0x8b, 0xcd, 0xab, - 0x6f, 0x32, 0x95, 0x5d, 0x6f, 0xa8, 0x1b, 0xd7, 0x1b, 0xb0, 0x2d, 0x19, 0x49, 0x27, 0x42, 0xad, - 0x44, 0x5b, 0x12, 0x22, 0x8b, 0x32, 0xe6, 0xc2, 0x1b, 0xae, 0x15, 0x2f, 0xb4, 0x28, 0x4d, 0x10, - 0x95, 0x33, 0xf1, 0x81, 0x28, 0x23, 0x36, 0x03, 0x13, 0x42, 0xf5, 0x34, 0x7f, 0xe3, 0x52, 0xdc, - 0x78, 0xcd, 0xc3, 0x28, 0xcb, 0x87, 0x5c, 0x8b, 0x5c, 0x31, 0x0e, 0x10, 0xd7, 0x03, 0xf3, 0xb8, - 0x61, 0x87, 0x8a, 0xb0, 0x60, 0x65, 0x87, 0x22, 0xc1, 0xf8, 0xa3, 0xd1, 0x91, 0x3f, 0x78, 0x49, - 0x17, 0x6e, 0xe9, 0xd0, 0xb4, 0xe9, 0xd9, 0x20, 0xc5, 0xc3, 0x65, 0xab, 0x4a, 0x41, 0x2b, 0x35, - 0xcf, 0x84, 0xd8, 0x7d, 0x68, 0x91, 0x8d, 0x2e, 0xd7, 0x75, 0x91, 0xd6, 0xb5, 0x63, 0x1a, 0xf1, - 0xb4, 0xb2, 0x66, 0x21, 0xf3, 0xf8, 0x78, 0xa9, 0x10, 0xa8, 0xeb, 0x0f, 0x87, 0xf2, 0xd4, 0xbd, - 0x23, 0xae, 0xc8, 0x69, 0x80, 0xbc, 0x00, 0x62, 0xc2, 0x44, 0x81, 0x65, 0x2a, 0x60, 0x61, 0xec, - 0x06, 0x34, 0xd0, 0xea, 0x9b, 0xf8, 0xc1, 0x90, 0xe2, 0x54, 0x84, 0xf1, 0xa9, 0x31, 0xac, 0x43, - 0xfd, 0xa6, 0x6d, 0x73, 0x85, 0x66, 0xc5, 0xc2, 0x70, 0x6e, 0x74, 0x7a, 0x9c, 0x45, 0xf6, 0xda, - 0x20, 0xfb, 0x90, 0xce, 0x3e, 0x53, 0x4e, 0xe1, 0xbb, 0x8b, 0xf7, 0xdf, 0x92, 0x63, 0x96, 0x44, - 0xab, 0xfe, 0x1e, 0x62, 0x11, 0x4f, 0x94, 0x44, 0xa5, 0x4d, 0xb8, 0x9f, 0xd7, 0x2c, 0xa5, 0x4d, - 0x16, 0x25, 0xf7, 0xb3, 0x28, 0xe0, 0x6e, 0x42, 0xdb, 0xac, 0x80, 0x35, 0xa0, 0xf6, 0xf4, 0x60, - 0x67, 0xbf, 0x73, 0x85, 0xb5, 0x60, 0xfe, 0x70, 0xe7, 0xd9, 0xb3, 0xbd, 0x9d, 0xed, 0x8e, 0xc3, - 0xda, 0xd0, 0xd0, 0x61, 0x8e, 0x15, 0x4c, 0x6d, 0x6e, 0x6d, 0xed, 0x1c, 0x3c, 0xdb, 0xd9, 0xee, - 0x54, 0xdd, 0x3f, 0xa8, 0x40, 0xcb, 0xa8, 0xf9, 0x12, 0xbf, 0xc8, 0x0d, 0x00, 0xb2, 0x24, 0xb2, - 0x80, 0x87, 0x9a, 0x67, 0x20, 0x28, 0x19, 0xb5, 0x8d, 0x5d, 0x15, 0x37, 0x05, 0x55, 0x9a, 0xe6, - 0x8b, 0xae, 0xe4, 0x99, 0x5e, 0xfe, 0xba, 0x67, 0x83, 0x48, 0x4b, 0x12, 0xa0, 0xa8, 0x3b, 0xc1, - 0x61, 0x26, 0x84, 0x6b, 0x13, 0xf3, 0x24, 0x1a, 0x9d, 0x71, 0x51, 0x44, 0xe8, 0x63, 0x16, 0x86, - 0x6d, 0x49, 0x11, 0x63, 0x44, 0xc4, 0xd6, 0x3d, 0x1b, 0x64, 0xdf, 0x54, 0x6b, 0xd3, 0xa0, 0xb5, - 0x59, 0x2f, 0x4e, 0xb4, 0xb9, 0x2e, 0x6e, 0x0a, 0x6c, 0x73, 0x38, 0x94, 0xb9, 0xe6, 0xbd, 0xc3, - 0xd8, 0xbc, 0xe4, 0xaa, 0x84, 0x44, 0x09, 0xa3, 0x56, 0xca, 0x19, 0xf5, 0xb5, 0xe4, 0xec, 0xee, - 0x40, 0xeb, 0xc0, 0xb8, 0x36, 0x4b, 0x32, 0x4b, 0x5d, 0x98, 0x95, 0xb2, 0xce, 0x40, 0x8c, 0xee, - 0x54, 0xcc, 0xee, 0xb8, 0x7f, 0xdf, 0x11, 0x37, 0x91, 0x74, 0xf7, 0x45, 0xdb, 0x2e, 0xb4, 0xb5, - 0x0f, 0x37, 0x0b, 0xf8, 0xb6, 0x30, 0x2c, 0x43, 0x5d, 0xe9, 0x47, 0xc7, 0xc7, 0x09, 0x57, 0xa1, - 0x99, 0x16, 0xa6, 0x14, 0x47, 0x54, 0x45, 0x03, 0xd1, 0x42, 0x22, 0x43, 0x34, 0x0b, 0x38, 0x12, - 0x89, 0x74, 0x03, 0xaa, 0xa0, 0x54, 0x9d, 0xd6, 0x71, 0xe9, 0xf9, 0x59, 0xbe, 0x03, 0x0d, 0x5d, - 0xaf, 0xbd, 0x2b, 0xa8, 0x92, 0x3a, 0x1f, 0x77, 0x1f, 0x32, 0x2a, 0xad, 0x4e, 0x0b, 0x5a, 0x2d, - 0x66, 0xb0, 0x0d, 0x60, 0xc7, 0x41, 0x9c, 0x2f, 0x2e, 0x88, 0xb7, 0x24, 0xc7, 0x7d, 0x01, 0x2b, - 0x8a, 0xe7, 0x0c, 0x8d, 0xd6, 0x5e, 0x44, 0xe7, 0x32, 0x99, 0x54, 0x29, 0xca, 0x24, 0xf7, 0x8f, - 0xab, 0x30, 0x2f, 0x57, 0xba, 0x70, 0xf5, 0x5a, 0xac, 0xb3, 0x85, 0xb1, 0xae, 0x75, 0xc9, 0x8e, - 0x04, 0x98, 0xdc, 0x89, 0x0a, 0x7b, 0x4d, 0xb5, 0x6c, 0xaf, 0x61, 0x50, 0x9b, 0xf8, 0xe9, 0x29, - 0xb9, 0x5e, 0x9a, 0x1e, 0xfd, 0x56, 0x5e, 0xca, 0xba, 0xed, 0xa5, 0x2c, 0xbb, 0x68, 0x2e, 0xd4, - 0xa9, 0xe2, 0x45, 0xf3, 0xeb, 0xd0, 0x14, 0x97, 0x93, 0x33, 0x47, 0x64, 0x06, 0x20, 0xf5, 0x8a, - 0x04, 0x49, 0x08, 0x79, 0xdf, 0x25, 0x43, 0xbe, 0xc2, 0xee, 0xf6, 0x6d, 0x98, 0x13, 0x17, 0x2e, - 0x64, 0xe8, 0xed, 0x75, 0x75, 0x48, 0x27, 0xca, 0xa9, 0xbf, 0x22, 0x86, 0xc7, 0x93, 0x65, 0xcd, - 0x2b, 0x9b, 0x2d, 0xfb, 0xca, 0xa6, 0xe9, 0x3f, 0x6d, 0xdb, 0xfe, 0x53, 0xf7, 0x11, 0x2c, 0x58, - 0xd5, 0xa1, 0x74, 0x95, 0xa1, 0xbb, 0x9d, 0x2b, 0x6c, 0x01, 0x9a, 0x4f, 0xf6, 0xfb, 0x8f, 0xf6, - 0x9e, 0x3c, 0xde, 0x7d, 0xd6, 0x71, 0x30, 0x79, 0xf8, 0x7c, 0x6b, 0x6b, 0x67, 0x67, 0x9b, 0xa4, - 0x2d, 0xc0, 0xdc, 0xa3, 0xcd, 0x27, 0x7b, 0x24, 0x6b, 0xb7, 0x05, 0x6d, 0xcb, 0xba, 0xf4, 0xc1, - 0xc8, 0x37, 0x81, 0x29, 0xbb, 0x9f, 0x42, 0x78, 0x26, 0x23, 0x9e, 0xaa, 0xa8, 0xf2, 0x65, 0x99, - 0xf3, 0x44, 0x67, 0xa8, 0x8b, 0x11, 0x59, 0x2d, 0x19, 0x8b, 0xc8, 0x49, 0xca, 0xb3, 0x88, 0x2c, - 0xea, 0xe9, 0x7c, 0xb7, 0x07, 0xdd, 0x6d, 0x8e, 0xb5, 0x6d, 0x8e, 0x46, 0xb9, 0xee, 0xa0, 0xe1, - 0x56, 0x92, 0x27, 0xad, 0xba, 0xef, 0xc1, 0xd5, 0x4d, 0x11, 0x40, 0xfe, 0xeb, 0x8a, 0x2f, 0x74, - 0xbb, 0xb0, 0x96, 0xaf, 0x52, 0x36, 0xf6, 0x08, 0x96, 0xb7, 0xf9, 0xd1, 0xf4, 0x64, 0x8f, 0x9f, - 0x65, 0x0d, 0x31, 0xa8, 0x25, 0xa7, 0xd1, 0xb9, 0x9c, 0x1f, 0xfa, 0xcd, 0xde, 0x06, 0x18, 0x61, - 0x99, 0x7e, 0x32, 0xe1, 0x03, 0x75, 0xd1, 0x8f, 0x90, 0xc3, 0x09, 0x1f, 0xb8, 0x1f, 0x01, 0x33, - 0xeb, 0x91, 0xf3, 0x85, 0xba, 0xd6, 0xf4, 0xa8, 0x9f, 0x5c, 0x24, 0x29, 0x1f, 0xab, 0x1b, 0x8c, - 0x26, 0xe4, 0xbe, 0x0f, 0xed, 0x03, 0xff, 0xc2, 0xe3, 0x3f, 0x95, 0x4f, 0x10, 0xac, 0xc3, 0xfc, - 0xc4, 0xbf, 0x40, 0x12, 0xd4, 0xce, 0x60, 0xca, 0x76, 0xff, 0x4f, 0x05, 0xe6, 0x44, 0x49, 0xac, - 0x75, 0xc8, 0x93, 0x34, 0x08, 0x89, 0xd3, 0x54, 0xad, 0x06, 0x54, 0xe0, 0xed, 0x4a, 0x09, 0x6f, - 0x4b, 0x0f, 0x85, 0xba, 0x30, 0x25, 0x19, 0xd8, 0xc2, 0x90, 0xd3, 0xb2, 0x40, 0x61, 0xe1, 0x32, - 0xcc, 0x80, 0xdc, 0xc9, 0x42, 0xa6, 0xd1, 0x89, 0xfe, 0x29, 0xb1, 0x25, 0xd9, 0xd8, 0x84, 0x4a, - 0xf5, 0xc6, 0x79, 0xc1, 0xed, 0x05, 0xbd, 0xb1, 0xa0, 0x1f, 0x36, 0xde, 0x40, 0x3f, 0x14, 0x6e, - 0x8b, 0xd7, 0xe9, 0x87, 0xf0, 0x06, 0xfa, 0xa1, 0xcb, 0xa0, 0x43, 0xb7, 0xb1, 0xd1, 0x02, 0x51, - 0xb4, 0xfb, 0xb7, 0x1d, 0xe8, 0x48, 0x2a, 0xd2, 0x79, 0xea, 0x8c, 0xea, 0x75, 0x57, 0x7d, 0x6e, - 0xc1, 0x02, 0xd9, 0x3f, 0x5a, 0x04, 0xc8, 0xf3, 0x1e, 0x0b, 0xc4, 0x71, 0xa8, 0x30, 0x93, 0x71, - 0x30, 0x92, 0x8b, 0x62, 0x42, 0x4a, 0x8a, 0xc4, 0xbe, 0x0c, 0x78, 0x75, 0x3c, 0x9d, 0x76, 0xff, - 0xc8, 0x81, 0x65, 0xa3, 0xc3, 0x92, 0x0a, 0x1f, 0x40, 0x5b, 0x3f, 0x7a, 0xc0, 0xf5, 0xe6, 0xb6, - 0x6e, 0xb3, 0x4d, 0xf6, 0x99, 0x55, 0x98, 0x16, 0xd3, 0xbf, 0xa0, 0x0e, 0x26, 0xd3, 0xb1, 0xdc, - 0x55, 0x4c, 0x08, 0x09, 0xe9, 0x9c, 0xf3, 0x97, 0xba, 0x88, 0xd8, 0xd7, 0x2c, 0x8c, 0xfc, 0xc6, - 0x68, 0xb7, 0xe9, 0x42, 0x35, 0xe9, 0x37, 0x36, 0x41, 0xf7, 0x2f, 0x56, 0x60, 0x45, 0x18, 0xe2, - 0xd2, 0x01, 0xa2, 0xef, 0x9d, 0xce, 0x09, 0x9f, 0x84, 0xe0, 0xc8, 0xdd, 0x2b, 0x9e, 0x4c, 0xb3, - 0xef, 0xbc, 0xa1, 0xf3, 0x40, 0x47, 0xe1, 0xce, 0x58, 0x8b, 0x6a, 0xd9, 0x5a, 0xbc, 0x66, 0xa6, - 0xcb, 0x5c, 0xf8, 0xf5, 0x72, 0x17, 0xfe, 0x1b, 0xb9, 0xcc, 0x1f, 0xce, 0x43, 0x3d, 0x19, 0x44, - 0x13, 0xee, 0xae, 0xc1, 0xaa, 0x3d, 0x05, 0x52, 0x50, 0xfd, 0xdc, 0x81, 0xee, 0x23, 0x71, 0x1a, - 0x17, 0x84, 0x27, 0xbb, 0x41, 0x92, 0x46, 0xb1, 0xbe, 0xc4, 0x7f, 0x03, 0x20, 0x49, 0xfd, 0x58, - 0x2a, 0xb4, 0x42, 0x35, 0x30, 0x10, 0x1c, 0x09, 0x0f, 0x87, 0x22, 0x57, 0xac, 0xa0, 0x4e, 0x17, - 0x54, 0x2f, 0xe9, 0x4c, 0xb0, 0x14, 0x98, 0xf7, 0x44, 0xec, 0x3a, 0x76, 0x99, 0x9f, 0x91, 0xf4, - 0x17, 0x16, 0x7a, 0x0e, 0x75, 0x7f, 0xaf, 0x02, 0x4b, 0x59, 0x27, 0x29, 0xc6, 0xc2, 0x96, 0x21, - 0x52, 0x6b, 0xc9, 0x64, 0x88, 0x74, 0xfc, 0xf7, 0x03, 0x54, 0x63, 0x0c, 0x7f, 0x82, 0x81, 0xb2, - 0x5b, 0xd0, 0x52, 0xa9, 0x68, 0x9a, 0x1a, 0xb7, 0x69, 0x4d, 0x58, 0x44, 0xa4, 0xa2, 0x22, 0x25, - 0x95, 0x42, 0x99, 0xa2, 0xdb, 0x40, 0xe3, 0x94, 0xbe, 0x14, 0x33, 0xaf, 0x92, 0xac, 0x23, 0x34, - 0x11, 0xf1, 0xb0, 0x09, 0x69, 0x21, 0xe6, 0x0e, 0xdd, 0xd0, 0xaf, 0x90, 0x68, 0xce, 0x14, 0x35, - 0x66, 0xe1, 0xc4, 0x35, 0xcf, 0x84, 0x94, 0x45, 0x17, 0x4d, 0xa5, 0x75, 0x22, 0xde, 0x31, 0xb1, - 0x30, 0xf7, 0xaf, 0x3b, 0x70, 0xad, 0x64, 0x19, 0x25, 0xa7, 0x6e, 0xc3, 0xf2, 0xb1, 0xce, 0x54, - 0x53, 0x2d, 0xd8, 0x75, 0x4d, 0x85, 0x1c, 0xd8, 0xd3, 0xeb, 0x15, 0x3f, 0xd0, 0xca, 0xa9, 0x58, - 0x3c, 0x2b, 0x72, 0xbc, 0x98, 0xe1, 0x1e, 0x40, 0x6f, 0xe7, 0x15, 0x32, 0xfe, 0x96, 0xf9, 0x16, - 0x9b, 0xa2, 0xac, 0xfb, 0x05, 0xc1, 0x76, 0xb9, 0x1b, 0xe9, 0x18, 0x16, 0xac, 0xba, 0xd8, 0xb7, - 0xde, 0xb4, 0x12, 0x93, 0x47, 0x6f, 0xca, 0x55, 0x17, 0x8f, 0xc9, 0xa9, 0xf8, 0x75, 0x03, 0x72, - 0xcf, 0x60, 0xe9, 0xb3, 0xe9, 0x28, 0x0d, 0xb2, 0x87, 0xe5, 0xd8, 0x77, 0xe4, 0x47, 0x54, 0x85, - 0x9a, 0xba, 0xd2, 0xa6, 0xcc, 0x72, 0x38, 0x63, 0x63, 0xac, 0xa9, 0x5f, 0x6c, 0xb1, 0x98, 0xe1, - 0x5e, 0x83, 0xf5, 0xac, 0x49, 0x31, 0x77, 0x6a, 0x73, 0xf8, 0x7d, 0x47, 0x04, 0x62, 0xd9, 0xef, - 0xdc, 0xb1, 0xc7, 0xb0, 0x92, 0x04, 0xe1, 0xc9, 0x88, 0x9b, 0xf5, 0x24, 0x72, 0x26, 0xae, 0xda, - 0xdd, 0x93, 0x6f, 0xe1, 0x79, 0x65, 0x5f, 0x20, 0x81, 0x94, 0x77, 0x34, 0x23, 0x90, 0xdc, 0x94, - 0x94, 0x0d, 0xe0, 0xbb, 0xb0, 0x68, 0x37, 0xc6, 0x3e, 0x96, 0xa1, 0xe7, 0x59, 0xcf, 0xcc, 0x73, - 0x1f, 0x9b, 0x32, 0xac, 0x92, 0xee, 0x97, 0x0e, 0x74, 0x3d, 0x8e, 0x64, 0xcc, 0x8d, 0x46, 0x25, - 0xf5, 0x3c, 0x28, 0x54, 0x3b, 0x7b, 0xc0, 0x3a, 0xa4, 0x5d, 0x8d, 0x75, 0x63, 0xe6, 0xa2, 0xec, - 0x5e, 0x29, 0x19, 0xd5, 0xc3, 0x06, 0xcc, 0xc9, 0xf1, 0xad, 0xc3, 0x55, 0xd9, 0x25, 0xd5, 0x9d, - 0xec, 0xc0, 0xc0, 0x6a, 0xd4, 0x3a, 0x30, 0xe8, 0x41, 0x57, 0xbc, 0xd5, 0x60, 0x8e, 0x43, 0x7c, - 0x78, 0xe7, 0x0b, 0x68, 0x19, 0x2f, 0x56, 0xb0, 0x75, 0x58, 0x79, 0xf1, 0xe4, 0xd9, 0xfe, 0xce, - 0xe1, 0x61, 0xff, 0xe0, 0xf9, 0xc3, 0x4f, 0x77, 0x7e, 0xd0, 0xdf, 0xdd, 0x3c, 0xdc, 0xed, 0x5c, - 0x61, 0x6b, 0xc0, 0xf6, 0x77, 0x0e, 0x9f, 0xed, 0x6c, 0x5b, 0xb8, 0xc3, 0x6e, 0x40, 0xef, 0xf9, - 0xfe, 0xf3, 0xc3, 0x9d, 0xed, 0x7e, 0xd9, 0x77, 0x15, 0xf6, 0x36, 0x5c, 0x93, 0xf9, 0x25, 0x9f, - 0x57, 0xef, 0x3c, 0x80, 0x4e, 0xde, 0x63, 0x60, 0xf9, 0x58, 0x5e, 0xe7, 0x8c, 0xb9, 0xff, 0x65, - 0x15, 0x16, 0x45, 0x30, 0x99, 0x78, 0x5b, 0x91, 0xc7, 0xec, 0x33, 0x98, 0x97, 0x8f, 0x74, 0x32, - 0xb5, 0x18, 0xf6, 0xb3, 0xa0, 0xbd, 0xb5, 0x3c, 0x2c, 0x67, 0x70, 0xe5, 0x2f, 0xfd, 0x87, 0xff, - 0xf6, 0x37, 0x2b, 0x0b, 0xac, 0x75, 0xf7, 0xec, 0xc3, 0xbb, 0x27, 0x3c, 0x4c, 0xb0, 0x8e, 0xdf, - 0x01, 0xc8, 0x9e, 0x9e, 0x64, 0x5d, 0x6d, 0x35, 0xe7, 0xde, 0xe5, 0xec, 0x5d, 0x2b, 0xc9, 0x91, - 0xf5, 0x5e, 0xa3, 0x7a, 0x57, 0xdc, 0x45, 0xac, 0x37, 0x08, 0x83, 0x54, 0x3c, 0x43, 0xf9, 0x89, - 0x73, 0x87, 0x0d, 0xa1, 0x6d, 0x3e, 0x0a, 0xc9, 0xd4, 0x89, 0x49, 0xc9, 0xb3, 0x96, 0xbd, 0xb7, - 0x4a, 0xf3, 0xd4, 0xea, 0x53, 0x1b, 0x57, 0xdd, 0x0e, 0xb6, 0x31, 0xa5, 0x12, 0x59, 0x2b, 0x23, - 0xc1, 0x13, 0xd9, 0xdb, 0x8f, 0xec, 0xba, 0x41, 0xa6, 0x85, 0x97, 0x27, 0x7b, 0x6f, 0xcf, 0xc8, - 0x95, 0x6d, 0xbd, 0x4d, 0x6d, 0xad, 0xbb, 0x0c, 0xdb, 0x1a, 0x50, 0x19, 0xf5, 0xf2, 0xe4, 0x27, - 0xce, 0x9d, 0xfb, 0xff, 0xe3, 0x3d, 0x68, 0xea, 0xd3, 0x54, 0xf6, 0x13, 0x58, 0xb0, 0xa2, 0xfd, - 0x98, 0x1a, 0x46, 0x59, 0x70, 0x60, 0xef, 0x7a, 0x79, 0xa6, 0x6c, 0xf8, 0x06, 0x35, 0xdc, 0x65, - 0x6b, 0xd8, 0xb0, 0x0c, 0x97, 0xbb, 0x4b, 0x71, 0xab, 0xe2, 0xda, 0xdb, 0x4b, 0x83, 0xf7, 0x45, - 0x63, 0xd7, 0xf3, 0xec, 0x68, 0xb5, 0xf6, 0xf6, 0x8c, 0x5c, 0xd9, 0xdc, 0x75, 0x6a, 0x6e, 0x8d, - 0xad, 0x9a, 0xcd, 0xe9, 0x13, 0x4e, 0x4e, 0x77, 0x3d, 0xcd, 0x67, 0x11, 0xd9, 0xdb, 0x9a, 0xb0, - 0xca, 0x9e, 0x4b, 0xd4, 0x24, 0x52, 0x7c, 0x33, 0xd1, 0xed, 0x52, 0x53, 0x8c, 0xd1, 0xf2, 0x99, - 0xaf, 0x22, 0xb2, 0x23, 0x68, 0x19, 0x8f, 0x27, 0xb1, 0x6b, 0x33, 0x1f, 0x7a, 0xea, 0xf5, 0xca, - 0xb2, 0xca, 0x86, 0x62, 0xd6, 0x7f, 0x17, 0x55, 0x83, 0x1f, 0x41, 0x53, 0x3f, 0xc7, 0xc3, 0xd6, - 0x8d, 0xe7, 0x91, 0xcc, 0xe7, 0x83, 0x7a, 0xdd, 0x62, 0x46, 0x19, 0xf1, 0x99, 0xb5, 0x23, 0xf1, - 0xbd, 0x80, 0x96, 0xf1, 0xe4, 0x8e, 0x1e, 0x40, 0xf1, 0x59, 0x1f, 0x3d, 0x80, 0x92, 0x17, 0x7a, - 0xdc, 0x65, 0x6a, 0xa2, 0xc5, 0x9a, 0x44, 0xdf, 0xe9, 0xab, 0x28, 0x61, 0x7b, 0x70, 0x55, 0xca, - 0xb8, 0x23, 0xfe, 0x55, 0x96, 0xa1, 0xe4, 0x25, 0xca, 0x7b, 0x0e, 0x7b, 0x00, 0x0d, 0xf5, 0xb2, - 0x12, 0x5b, 0x2b, 0x7f, 0x21, 0xaa, 0xb7, 0x5e, 0xc0, 0xa5, 0x6e, 0xf3, 0x03, 0x80, 0xec, 0x7d, - 0x1f, 0x2d, 0x24, 0x0a, 0xef, 0x05, 0x69, 0x0a, 0x28, 0x3e, 0x06, 0xe4, 0xae, 0xd1, 0x00, 0x3b, - 0x8c, 0x84, 0x44, 0xc8, 0xcf, 0xd5, 0xb5, 0xee, 0x1f, 0x43, 0xcb, 0x78, 0xe2, 0x47, 0x4f, 0x5f, - 0xf1, 0x79, 0x20, 0x3d, 0x7d, 0x25, 0x2f, 0x02, 0xb9, 0x3d, 0xaa, 0x7d, 0xd5, 0x5d, 0xc2, 0xda, - 0x93, 0xe0, 0x24, 0x1c, 0x8b, 0x02, 0xb8, 0x40, 0xa7, 0xb0, 0x60, 0xbd, 0xe3, 0xa3, 0x39, 0xb4, - 0xec, 0x95, 0x20, 0xcd, 0xa1, 0xa5, 0x4f, 0xff, 0x28, 0x3a, 0x73, 0x97, 0xb1, 0x9d, 0x33, 0x2a, - 0x62, 0xb4, 0xf4, 0x43, 0x68, 0x19, 0x6f, 0xf2, 0xe8, 0xb1, 0x14, 0x9f, 0xff, 0xd1, 0x63, 0x29, - 0x7b, 0xc2, 0x67, 0x95, 0xda, 0x58, 0x74, 0x89, 0x14, 0xe8, 0x82, 0x32, 0xd6, 0xfd, 0x13, 0x58, - 0xb4, 0x5f, 0xe9, 0xd1, 0xbc, 0x5f, 0xfa, 0xde, 0x8f, 0xe6, 0xfd, 0x19, 0x4f, 0xfb, 0x48, 0x92, - 0xbe, 0xb3, 0xa2, 0x1b, 0xb9, 0xfb, 0xb9, 0x8c, 0xc7, 0xfa, 0x82, 0x7d, 0x0f, 0x05, 0x9c, 0xbc, - 0x31, 0xce, 0xd6, 0x0d, 0xaa, 0x35, 0xef, 0x95, 0x6b, 0x7e, 0x29, 0x5c, 0x2e, 0xb7, 0x89, 0x59, - 0x5c, 0xb1, 0xa6, 0x5d, 0x8b, 0x6e, 0x8e, 0x1b, 0xbb, 0x96, 0x79, 0xb9, 0xdc, 0xd8, 0xb5, 0xac, - 0x0b, 0xe6, 0xf9, 0x5d, 0x2b, 0x0d, 0xb0, 0x8e, 0x10, 0x96, 0x72, 0x37, 0x12, 0x34, 0x57, 0x94, - 0x5f, 0x1a, 0xeb, 0xdd, 0x78, 0xfd, 0x45, 0x06, 0x5b, 0x82, 0x28, 0x21, 0x78, 0x57, 0x5d, 0xd1, - 0xfb, 0x5d, 0x68, 0x9b, 0xaf, 0x8d, 0x30, 0x93, 0x95, 0xf3, 0x2d, 0xbd, 0x55, 0x9a, 0x67, 0x2f, - 0x2e, 0x6b, 0x9b, 0xcd, 0xb0, 0xef, 0xc3, 0x9a, 0x66, 0x75, 0x33, 0xc8, 0x3d, 0x61, 0xef, 0x94, - 0x84, 0xbe, 0x9b, 0x9a, 0x4f, 0xef, 0xda, 0xcc, 0xd8, 0xf8, 0x7b, 0x0e, 0x12, 0x8d, 0xfd, 0x84, - 0x43, 0xb6, 0x61, 0x94, 0xbd, 0x5c, 0x91, 0x6d, 0x18, 0xa5, 0xef, 0x3e, 0x28, 0xa2, 0x61, 0x2b, - 0xd6, 0x1c, 0x89, 0xa3, 0x6b, 0xf6, 0x43, 0x58, 0x32, 0xae, 0x11, 0x1d, 0x5e, 0x84, 0x03, 0xcd, - 0x00, 0xc5, 0x1b, 0xae, 0xbd, 0x32, 0xbd, 0xde, 0x5d, 0xa7, 0xfa, 0x97, 0x5d, 0x6b, 0x72, 0x90, - 0xf8, 0xb7, 0xa0, 0x65, 0x5e, 0x51, 0x7a, 0x4d, 0xbd, 0xeb, 0x46, 0x96, 0x79, 0x41, 0xf3, 0x9e, - 0xc3, 0x0e, 0x44, 0x08, 0x93, 0x7e, 0x1a, 0x32, 0x8a, 0xf3, 0xdb, 0xa7, 0xfd, 0x64, 0xa4, 0x5e, - 0xc8, 0xb2, 0xc7, 0x42, 0x6f, 0x3b, 0xf7, 0x1c, 0xf6, 0x77, 0x1c, 0x68, 0x5b, 0x57, 0x88, 0xac, - 0x80, 0x90, 0x5c, 0xcf, 0xba, 0x66, 0x9e, 0xd9, 0x35, 0xd7, 0xa3, 0x61, 0xef, 0xdd, 0xf9, 0xae, - 0x35, 0xad, 0x9f, 0x5b, 0x2e, 0xa8, 0x8d, 0xfc, 0xfb, 0x90, 0x5f, 0xe4, 0x0b, 0x98, 0xf7, 0x8a, - 0xbf, 0xb8, 0xe7, 0xb0, 0x3f, 0x74, 0x60, 0xd1, 0x76, 0x9c, 0xea, 0xe1, 0x96, 0xba, 0x68, 0xf5, - 0xe2, 0xcf, 0xf0, 0xb6, 0xfe, 0x90, 0x7a, 0xf9, 0xec, 0x8e, 0x67, 0xf5, 0x52, 0x3e, 0x17, 0xf2, - 0xab, 0xf5, 0x96, 0x7d, 0x22, 0x1e, 0x34, 0x56, 0xc7, 0x1b, 0xac, 0xf8, 0xac, 0xae, 0x26, 0x18, - 0xf3, 0x21, 0x5c, 0x5a, 0x84, 0x1f, 0x8b, 0x77, 0x11, 0x95, 0x07, 0x1e, 0xe9, 0xee, 0x4d, 0xbf, - 0x77, 0x6f, 0xd1, 0x98, 0x6e, 0xb8, 0xd7, 0xac, 0x31, 0xe5, 0x77, 0xf8, 0x4d, 0xd1, 0x3b, 0xf9, - 0x86, 0x6d, 0xb6, 0x45, 0x15, 0xde, 0xb5, 0x9d, 0xdd, 0xc9, 0xb1, 0xe8, 0xa4, 0x2c, 0x6e, 0x31, - 0xc7, 0x1b, 0x56, 0xe3, 0xde, 0xa1, 0xbe, 0xde, 0x72, 0xdf, 0x99, 0xd9, 0xd7, 0xbb, 0xe4, 0xfe, - 0xc4, 0x1e, 0x1f, 0x00, 0x64, 0x47, 0x91, 0x2c, 0x77, 0x14, 0xa6, 0x45, 0x46, 0xf1, 0xb4, 0xd2, - 0xe6, 0x40, 0x75, 0x62, 0x86, 0x35, 0xfe, 0x48, 0x08, 0xc0, 0x27, 0xea, 0x10, 0xcd, 0x54, 0x73, - 0xec, 0x33, 0x43, 0x4b, 0xcd, 0xc9, 0xd7, 0x6f, 0x89, 0x3f, 0x7d, 0x22, 0xf7, 0x1c, 0x16, 0xf6, - 0xa2, 0xe8, 0xe5, 0x74, 0xa2, 0x63, 0x35, 0xec, 0x93, 0x89, 0x5d, 0x3f, 0x39, 0xed, 0xe5, 0x46, - 0xe1, 0xde, 0xa4, 0xaa, 0x7a, 0xac, 0x6b, 0x54, 0x75, 0xf7, 0xf3, 0xec, 0xa8, 0xf3, 0x0b, 0xe6, - 0xc3, 0xb2, 0x96, 0xaa, 0xba, 0xe3, 0x3d, 0xbb, 0x1a, 0x4b, 0x96, 0xe6, 0x9b, 0xb0, 0xf4, 0x71, - 0xd5, 0xdb, 0xbb, 0x89, 0xaa, 0x93, 0x64, 0x4a, 0x7b, 0x9b, 0x0f, 0xe8, 0x82, 0x04, 0xb9, 0xf7, - 0x57, 0xb2, 0x8e, 0xeb, 0x73, 0x81, 0xde, 0x82, 0x05, 0xda, 0x3b, 0xcd, 0xc4, 0xbf, 0x88, 0xf9, - 0x4f, 0xef, 0x7e, 0x2e, 0x0f, 0x0e, 0xbe, 0x50, 0x3b, 0x8d, 0x3a, 0x59, 0xb1, 0x76, 0x9a, 0xdc, - 0x51, 0x8c, 0xb5, 0xd3, 0x14, 0x8e, 0x62, 0xac, 0xa9, 0x56, 0x27, 0x3b, 0x6c, 0x04, 0xcb, 0x85, - 0xd3, 0x1b, 0xbd, 0xc9, 0xcc, 0x3a, 0xf3, 0xe9, 0xdd, 0x9c, 0x5d, 0xc0, 0x6e, 0xed, 0x8e, 0xdd, - 0xda, 0x21, 0x2c, 0x6c, 0x73, 0x31, 0x59, 0x22, 0x38, 0x35, 0x77, 0x0f, 0xcd, 0x0c, 0x7d, 0xcd, - 0x6f, 0x09, 0x94, 0x67, 0xab, 0x12, 0x14, 0x15, 0xca, 0x7e, 0x04, 0xad, 0xc7, 0x3c, 0x55, 0xd1, - 0xa8, 0x5a, 0x99, 0xcd, 0x85, 0xa7, 0xf6, 0x4a, 0x82, 0x59, 0x6d, 0x9a, 0xa1, 0xda, 0xee, 0xf2, - 0xe1, 0x09, 0x17, 0xc2, 0xa9, 0x1f, 0x0c, 0xbf, 0x60, 0x7f, 0x8e, 0x2a, 0xd7, 0xe1, 0xf8, 0x6b, - 0x46, 0x68, 0xa1, 0x59, 0xf9, 0x52, 0x0e, 0x2f, 0xab, 0x39, 0x8c, 0x86, 0xdc, 0x50, 0xaa, 0x42, - 0x68, 0x19, 0x57, 0x57, 0x34, 0x03, 0x15, 0x6f, 0x42, 0x69, 0x06, 0x2a, 0xb9, 0xe9, 0xe2, 0xde, - 0xa6, 0x76, 0x5c, 0x76, 0x33, 0x6b, 0x47, 0xdc, 0x6e, 0xc9, 0x5a, 0xba, 0xfb, 0xb9, 0x3f, 0x4e, - 0xbf, 0x60, 0x2f, 0xe8, 0xf9, 0x1e, 0x33, 0xda, 0x36, 0xd3, 0xce, 0xf3, 0x81, 0xb9, 0x7a, 0xb2, - 0x8c, 0x2c, 0x5b, 0x63, 0x17, 0x4d, 0x91, 0xee, 0xf5, 0x1d, 0x80, 0xc3, 0x34, 0x9a, 0x6c, 0xfb, - 0x7c, 0x1c, 0x85, 0x99, 0xac, 0xcd, 0x62, 0x3d, 0x33, 0xf9, 0x65, 0x04, 0x7c, 0xb2, 0x17, 0x86, - 0x39, 0x63, 0x05, 0x2c, 0x2b, 0xe2, 0x9a, 0x19, 0x0e, 0xaa, 0x27, 0xa4, 0x24, 0x24, 0xf4, 0x9e, - 0xc3, 0x36, 0x01, 0xb2, 0xe3, 0x3b, 0x6d, 0x9c, 0x14, 0x4e, 0x06, 0xb5, 0xd8, 0x2b, 0x39, 0xeb, - 0x3b, 0x80, 0x66, 0x76, 0x1e, 0xb4, 0x9e, 0x5d, 0x10, 0xb3, 0x4e, 0x8f, 0xf4, 0x0e, 0x5e, 0x38, - 0xa5, 0x71, 0x3b, 0x34, 0x55, 0xc0, 0x1a, 0x38, 0x55, 0x74, 0xf4, 0x12, 0xc0, 0x8a, 0xe8, 0xa0, - 0x56, 0x70, 0x28, 0x46, 0x51, 0x8d, 0xa4, 0xe4, 0xa4, 0x44, 0x73, 0x73, 0xe9, 0x11, 0x82, 0xe5, - 0x63, 0x41, 0x6a, 0x15, 0xf1, 0x91, 0x28, 0x9a, 0xc7, 0xb0, 0x5c, 0xf0, 0x4a, 0x6b, 0x96, 0x9e, - 0x75, 0xec, 0xa0, 0x59, 0x7a, 0xa6, 0x43, 0xdb, 0xbd, 0x4a, 0x4d, 0x2e, 0xb9, 0x40, 0x36, 0xd5, - 0x79, 0x90, 0x0e, 0x4e, 0xb1, 0xb9, 0xdf, 0x77, 0x60, 0xa5, 0xc4, 0xe9, 0xcc, 0xde, 0x55, 0xe6, - 0xf9, 0x4c, 0x87, 0x74, 0xaf, 0xd4, 0x27, 0xe9, 0x1e, 0x52, 0x3b, 0x9f, 0xb1, 0x4f, 0xad, 0x8d, - 0x4d, 0xb8, 0x03, 0x25, 0x67, 0xbe, 0x56, 0xa9, 0x28, 0xd5, 0x28, 0x7e, 0x0a, 0xeb, 0xa2, 0x23, - 0x9b, 0xa3, 0x51, 0xce, 0x5f, 0x7a, 0xa3, 0xf0, 0x3f, 0x4d, 0x2c, 0x3f, 0x70, 0x6f, 0xf6, 0xff, - 0x3c, 0x99, 0xa1, 0x00, 0x8b, 0xae, 0xb2, 0x29, 0x74, 0xf2, 0x3e, 0x48, 0x36, 0xbb, 0xae, 0xde, - 0x3b, 0x96, 0xa1, 0x59, 0xf4, 0x5b, 0xba, 0xbf, 0x41, 0x8d, 0xbd, 0xe3, 0xf6, 0xca, 0xe6, 0x45, - 0xd8, 0x9e, 0xb8, 0x1e, 0x7f, 0x41, 0x3b, 0x4c, 0x73, 0xe3, 0x54, 0x0d, 0xcc, 0xf2, 0xf0, 0x6a, - 0x53, 0xb7, 0xdc, 0xdf, 0xfa, 0x1e, 0x35, 0x7f, 0xd3, 0x7d, 0xab, 0xac, 0xf9, 0x58, 0x7c, 0x22, - 0x8c, 0xde, 0xf5, 0x3c, 0x5f, 0xab, 0x1e, 0xdc, 0x2c, 0x5b, 0xef, 0x99, 0xd6, 0x4b, 0x6e, 0xae, - 0xaf, 0xdc, 0x73, 0x1e, 0xbe, 0xff, 0xc3, 0xdf, 0x38, 0x09, 0xd2, 0xd3, 0xe9, 0xd1, 0xc6, 0x20, - 0x1a, 0xdf, 0x1d, 0x29, 0xa7, 0x9b, 0x8c, 0xaa, 0xbf, 0x3b, 0x0a, 0x87, 0x77, 0xe9, 0xfb, 0xa3, - 0x39, 0xfa, 0x17, 0x49, 0xdf, 0xfa, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf2, 0x82, 0x61, 0x14, - 0x54, 0x69, 0x00, 0x00, + // 8608 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7d, 0x5d, 0x6c, 0x1c, 0x5b, + 0xb6, 0x56, 0xfa, 0xcf, 0xee, 0x5e, 0xdd, 0xb6, 0xdb, 0xdb, 0x8e, 0xdd, 0xe9, 0x93, 0x93, 0xf8, + 0xd4, 0xe4, 0x9e, 0x64, 0x32, 0x67, 0x9c, 0x9c, 0xcc, 0xcc, 0x21, 0xf7, 0x84, 0xcb, 0xc5, 0x7f, + 0x89, 0x33, 0xc7, 0x71, 0x3c, 0xe5, 0x64, 0xc2, 0xcc, 0xdc, 0xab, 0x9e, 0x72, 0xf7, 0xb6, 0x5d, + 0x93, 0xee, 0xaa, 0x9e, 0xaa, 0x6a, 0x3b, 0x9e, 0xc3, 0x41, 0x02, 0x21, 0x84, 0x78, 0x41, 0x07, + 0x5e, 0x00, 0x81, 0xae, 0x34, 0x17, 0x89, 0x7b, 0x41, 0x08, 0x78, 0x40, 0x02, 0x74, 0x25, 0x1e, + 0x78, 0x40, 0x42, 0x42, 0x3c, 0xf0, 0x80, 0xc4, 0x03, 0x57, 0x08, 0x24, 0x34, 0x42, 0xf0, 0x80, + 0xc4, 0x3b, 0x5a, 0x6b, 0xff, 0xd4, 0xde, 0x55, 0xd5, 0x71, 0xce, 0xcc, 0x70, 0x9f, 0xdc, 0xfb, + 0xdb, 0xbb, 0xf6, 0xef, 0x5a, 0x6b, 0xaf, 0xb5, 0xf6, 0xda, 0xdb, 0xd0, 0x88, 0xc6, 0xfd, 0xf5, + 0x71, 0x14, 0x26, 0x21, 0xab, 0x0d, 0x83, 0x68, 0xdc, 0xef, 0x5e, 0x3f, 0x09, 0xc3, 0x93, 0x21, + 0xbf, 0xe7, 0x8d, 0xfd, 0x7b, 0x5e, 0x10, 0x84, 0x89, 0x97, 0xf8, 0x61, 0x10, 0x8b, 0x42, 0xce, + 0x8f, 0x61, 0xfe, 0x09, 0x0f, 0x0e, 0x39, 0x1f, 0xb8, 0xfc, 0xa7, 0x13, 0x1e, 0x27, 0xec, 0x1b, + 0xb0, 0xe8, 0xf1, 0x9f, 0x71, 0x3e, 0xe8, 0x8d, 0xbd, 0x38, 0x1e, 0x9f, 0x46, 0x5e, 0xcc, 0x3b, + 0xa5, 0xb5, 0xd2, 0x9d, 0x96, 0xdb, 0x16, 0x19, 0x07, 0x1a, 0x67, 0x1f, 0x40, 0x2b, 0xc6, 0xa2, + 0x3c, 0x48, 0xa2, 0x70, 0x7c, 0xd1, 0x29, 0x53, 0xb9, 0x26, 0x62, 0x3b, 0x02, 0x72, 0x86, 0xb0, + 0xa0, 0x5b, 0x88, 0xc7, 0x61, 0x10, 0x73, 0x76, 0x1f, 0x96, 0xfb, 0xfe, 0xf8, 0x94, 0x47, 0x3d, + 0xfa, 0x78, 0x14, 0xf0, 0x51, 0x18, 0xf8, 0xfd, 0x4e, 0x69, 0xad, 0x72, 0xa7, 0xe1, 0x32, 0x91, + 0x87, 0x5f, 0x3c, 0x93, 0x39, 0xec, 0x36, 0x2c, 0xf0, 0x40, 0xe0, 0x7c, 0x40, 0x5f, 0xc9, 0xa6, + 0xe6, 0x53, 0x18, 0x3f, 0x70, 0xfe, 0x6a, 0x19, 0x16, 0x9f, 0x06, 0x7e, 0xf2, 0xca, 0x1b, 0x0e, + 0x79, 0xa2, 0xc6, 0x74, 0x1b, 0x16, 0xce, 0x09, 0xa0, 0x31, 0x9d, 0x87, 0xd1, 0x40, 0x8e, 0x68, + 0x5e, 0xc0, 0x07, 0x12, 0x9d, 0xda, 0xb3, 0xf2, 0xd4, 0x9e, 0x15, 0x4e, 0x57, 0x65, 0xca, 0x74, + 0xdd, 0x86, 0x85, 0x88, 0xf7, 0xc3, 0x33, 0x1e, 0x5d, 0xf4, 0xce, 0xfd, 0x60, 0x10, 0x9e, 0x77, + 0xaa, 0x6b, 0xa5, 0x3b, 0x35, 0x77, 0x5e, 0xc1, 0xaf, 0x08, 0x65, 0x9b, 0xb0, 0xd0, 0x3f, 0xf5, + 0x82, 0x80, 0x0f, 0x7b, 0x47, 0x5e, 0xff, 0xf5, 0x64, 0x1c, 0x77, 0x6a, 0x6b, 0xa5, 0x3b, 0xcd, + 0x07, 0xd7, 0xd6, 0x69, 0x55, 0xd7, 0xb7, 0x4e, 0xbd, 0x60, 0x93, 0x72, 0x0e, 0x03, 0x6f, 0x1c, + 0x9f, 0x86, 0x89, 0x3b, 0x2f, 0xbf, 0x10, 0x70, 0xec, 0x2c, 0x03, 0x33, 0x67, 0x42, 0xcc, 0xbd, + 0xf3, 0x8f, 0x4a, 0xb0, 0xf4, 0x32, 0x18, 0x86, 0xfd, 0xd7, 0xbf, 0xe4, 0x14, 0x15, 0x8c, 0xa1, + 0xfc, 0xae, 0x63, 0xa8, 0x7c, 0xd5, 0x31, 0xac, 0xc0, 0xb2, 0xdd, 0x59, 0x39, 0x0a, 0x0e, 0x57, + 0xf1, 0xeb, 0x13, 0xae, 0xba, 0xa5, 0x86, 0xf1, 0x75, 0x68, 0xf7, 0x27, 0x51, 0xc4, 0x83, 0xdc, + 0x38, 0x16, 0x24, 0xae, 0x07, 0xf2, 0x01, 0xb4, 0x02, 0x7e, 0x9e, 0x16, 0x93, 0xb4, 0x1b, 0xf0, + 0x73, 0x55, 0xc4, 0xe9, 0xc0, 0x4a, 0xb6, 0x19, 0xd9, 0x81, 0xff, 0x5a, 0x82, 0xea, 0xcb, 0xe4, + 0x4d, 0xc8, 0xd6, 0xa1, 0x9a, 0x5c, 0x8c, 0x05, 0x87, 0xcc, 0x3f, 0x60, 0x72, 0x68, 0x1b, 0x83, + 0x41, 0xc4, 0xe3, 0xf8, 0xc5, 0xc5, 0x98, 0xbb, 0x2d, 0x4f, 0x24, 0x7a, 0x58, 0x8e, 0x75, 0x60, + 0x56, 0xa6, 0xa9, 0xc1, 0x86, 0xab, 0x92, 0xec, 0x06, 0x80, 0x37, 0x0a, 0x27, 0x41, 0xd2, 0x8b, + 0xbd, 0x84, 0xa6, 0xaa, 0xe2, 0x1a, 0x08, 0xbb, 0x0e, 0x8d, 0xf1, 0xeb, 0x5e, 0xdc, 0x8f, 0xfc, + 0x71, 0x42, 0x64, 0xd3, 0x70, 0x53, 0x80, 0x7d, 0x03, 0xea, 0xe1, 0x24, 0x19, 0x87, 0x7e, 0x90, + 0x48, 0x52, 0x59, 0x90, 0x7d, 0x79, 0x3e, 0x49, 0x0e, 0x10, 0x76, 0x75, 0x01, 0x76, 0x0b, 0xe6, + 0xfa, 0x61, 0x70, 0xec, 0x47, 0x23, 0x21, 0x0c, 0x3a, 0x33, 0xd4, 0x9a, 0x0d, 0x3a, 0xff, 0xb2, + 0x0c, 0xcd, 0x17, 0x91, 0x17, 0xc4, 0x5e, 0x1f, 0x01, 0xec, 0x7a, 0xf2, 0xa6, 0x77, 0xea, 0xc5, + 0xa7, 0x34, 0xda, 0x86, 0xab, 0x92, 0x6c, 0x05, 0x66, 0x44, 0x47, 0x69, 0x4c, 0x15, 0x57, 0xa6, + 0xd8, 0x47, 0xb0, 0x18, 0x4c, 0x46, 0x3d, 0xbb, 0xad, 0x0a, 0x51, 0x4b, 0x3e, 0x03, 0x27, 0xe0, + 0x08, 0xd7, 0x5a, 0x34, 0x21, 0x46, 0x68, 0x20, 0xcc, 0x81, 0x96, 0x4c, 0x71, 0xff, 0xe4, 0x54, + 0x0c, 0xb3, 0xe6, 0x5a, 0x18, 0xd6, 0x91, 0xf8, 0x23, 0xde, 0x8b, 0x13, 0x6f, 0x34, 0x96, 0xc3, + 0x32, 0x10, 0xca, 0x0f, 0x13, 0x6f, 0xd8, 0x3b, 0xe6, 0x3c, 0xee, 0xcc, 0xca, 0x7c, 0x8d, 0xb0, + 0x0f, 0x61, 0x7e, 0xc0, 0xe3, 0xa4, 0x27, 0x17, 0x85, 0xc7, 0x9d, 0x3a, 0xb1, 0x7e, 0x06, 0xc5, + 0x7a, 0x22, 0xef, 0xbc, 0x87, 0x13, 0xc0, 0xdf, 0x74, 0x1a, 0xa2, 0xaf, 0x29, 0x82, 0x94, 0xf3, + 0x84, 0x27, 0xc6, 0xec, 0xc5, 0x92, 0x42, 0x9d, 0x3d, 0x60, 0x06, 0xbc, 0xcd, 0x13, 0xcf, 0x1f, + 0xc6, 0xec, 0x13, 0x68, 0x25, 0x46, 0x61, 0x12, 0x85, 0x4d, 0x4d, 0x4e, 0xc6, 0x07, 0xae, 0x55, + 0xce, 0x79, 0x02, 0xf5, 0xc7, 0x9c, 0xef, 0xf9, 0x23, 0x3f, 0x61, 0x2b, 0x50, 0x3b, 0xf6, 0xdf, + 0x70, 0x41, 0xf0, 0x95, 0xdd, 0x2b, 0xae, 0x48, 0xb2, 0x2e, 0xcc, 0x8e, 0x79, 0xd4, 0xe7, 0x6a, + 0x79, 0x76, 0xaf, 0xb8, 0x0a, 0xd8, 0x9c, 0x85, 0xda, 0x10, 0x3f, 0x76, 0xfe, 0x57, 0x05, 0x9a, + 0x87, 0x3c, 0xd0, 0x8c, 0xc4, 0xa0, 0x8a, 0x43, 0x96, 0xcc, 0x43, 0xbf, 0xd9, 0x4d, 0x68, 0xd2, + 0x34, 0xc4, 0x49, 0xe4, 0x07, 0x27, 0x92, 0x7e, 0x01, 0xa1, 0x43, 0x42, 0x58, 0x1b, 0x2a, 0xde, + 0x48, 0xd1, 0x2e, 0xfe, 0x44, 0x26, 0x1b, 0x7b, 0x17, 0x23, 0xe4, 0x47, 0xbd, 0xaa, 0x2d, 0xb7, + 0x29, 0xb1, 0x5d, 0x5c, 0xd6, 0x75, 0x58, 0x32, 0x8b, 0xa8, 0xda, 0x6b, 0x54, 0xfb, 0xa2, 0x51, + 0x52, 0x36, 0x72, 0x1b, 0x16, 0x54, 0xf9, 0x48, 0x74, 0x96, 0xd6, 0xb9, 0xe1, 0xce, 0x4b, 0x58, + 0x0d, 0xe1, 0x0e, 0xb4, 0x8f, 0xfd, 0xc0, 0x1b, 0xf6, 0xfa, 0xc3, 0xe4, 0xac, 0x37, 0xe0, 0xc3, + 0xc4, 0xa3, 0x15, 0xaf, 0xb9, 0xf3, 0x84, 0x6f, 0x0d, 0x93, 0xb3, 0x6d, 0x44, 0xd9, 0x47, 0xd0, + 0x38, 0xe6, 0xbc, 0x47, 0x33, 0xd1, 0xa9, 0x5b, 0xdc, 0xa3, 0x66, 0xd7, 0xad, 0x1f, 0xab, 0x79, + 0xfe, 0x08, 0xda, 0xe1, 0x24, 0x39, 0x09, 0xfd, 0xe0, 0xa4, 0x87, 0xf2, 0xaa, 0xe7, 0x0f, 0x88, + 0x02, 0xaa, 0x9b, 0xe5, 0xfb, 0x25, 0x77, 0x5e, 0xe5, 0xa1, 0xe4, 0x78, 0x3a, 0x60, 0xef, 0x03, + 0x50, 0xfb, 0xa2, 0x72, 0x58, 0x2b, 0xdd, 0x99, 0x73, 0x1b, 0x88, 0x88, 0xca, 0x3e, 0x85, 0x3a, + 0xcd, 0x69, 0x32, 0x3c, 0xeb, 0x34, 0x69, 0xd1, 0x6f, 0xca, 0x96, 0x8d, 0xd5, 0x58, 0xdf, 0xe6, + 0x71, 0xf2, 0x62, 0x78, 0x86, 0x7b, 0xea, 0x85, 0x3b, 0x3b, 0x10, 0xa9, 0xee, 0xa7, 0xd0, 0x32, + 0x33, 0x70, 0xfa, 0x5f, 0xf3, 0x0b, 0x5a, 0xb2, 0xaa, 0x8b, 0x3f, 0xd9, 0x32, 0xd4, 0xce, 0xbc, + 0xe1, 0x84, 0x4b, 0xe1, 0x26, 0x12, 0x9f, 0x96, 0x1f, 0x96, 0x9c, 0x7f, 0x51, 0x82, 0x96, 0x68, + 0x41, 0x6e, 0xca, 0xb7, 0x60, 0x4e, 0x4d, 0x2b, 0x8f, 0xa2, 0x30, 0x92, 0x3c, 0x6e, 0x83, 0xec, + 0x2e, 0xb4, 0x15, 0x30, 0x8e, 0xb8, 0x3f, 0xf2, 0x4e, 0x54, 0xdd, 0x39, 0x9c, 0x3d, 0x48, 0x6b, + 0x8c, 0xc2, 0x49, 0xc2, 0xa5, 0xf8, 0x6f, 0xc9, 0xf1, 0xb9, 0x88, 0xb9, 0x76, 0x11, 0xe4, 0xf1, + 0x02, 0x7a, 0xb1, 0x30, 0xe7, 0xcb, 0x12, 0x30, 0xec, 0xfa, 0x8b, 0x50, 0x54, 0x21, 0x97, 0x3b, + 0x4b, 0x6a, 0xa5, 0x77, 0x26, 0xb5, 0xf2, 0x34, 0x52, 0x73, 0xa0, 0x26, 0x7a, 0x5e, 0x2d, 0xe8, + 0xb9, 0xc8, 0xfa, 0x6e, 0xb5, 0x5e, 0x69, 0x57, 0x9d, 0xff, 0x5c, 0x81, 0xe5, 0x2d, 0xb1, 0x77, + 0x6d, 0xf4, 0xfb, 0x7c, 0xac, 0x89, 0xf0, 0x26, 0x34, 0x83, 0x70, 0xc0, 0x7b, 0xe3, 0xc9, 0x91, + 0x5a, 0x9b, 0x96, 0x0b, 0x08, 0x1d, 0x10, 0x42, 0xf4, 0x71, 0xea, 0xf9, 0x81, 0xe8, 0xb4, 0x98, + 0xcb, 0x06, 0x21, 0xd4, 0xe5, 0x0f, 0x61, 0x61, 0xcc, 0x83, 0x81, 0x49, 0x6b, 0x42, 0xbb, 0x98, + 0x93, 0xb0, 0x24, 0xb3, 0x9b, 0xd0, 0x3c, 0x9e, 0x88, 0x72, 0xc8, 0x82, 0x55, 0xa2, 0x01, 0x90, + 0xd0, 0xc6, 0x28, 0x61, 0xd7, 0xa0, 0x3e, 0x9e, 0xc4, 0xa7, 0x94, 0x5b, 0xa3, 0xdc, 0x59, 0x4c, + 0x63, 0xd6, 0xfb, 0x00, 0x83, 0x49, 0x9c, 0x48, 0x12, 0x9d, 0xa1, 0xcc, 0x06, 0x22, 0x82, 0x44, + 0xbf, 0x09, 0x4b, 0x23, 0xef, 0x4d, 0x8f, 0x68, 0xa7, 0xe7, 0x07, 0xbd, 0xe3, 0x21, 0x89, 0xdf, + 0x59, 0x2a, 0xd7, 0x1e, 0x79, 0x6f, 0xbe, 0x8f, 0x39, 0x4f, 0x83, 0xc7, 0x84, 0x23, 0x7f, 0xaa, + 0x7d, 0x3f, 0xe2, 0x31, 0x8f, 0xce, 0x38, 0xb1, 0x54, 0x55, 0x6f, 0xee, 0xae, 0x40, 0xb1, 0x47, + 0x23, 0x1c, 0x77, 0x32, 0xec, 0x0b, 0xfe, 0x71, 0x67, 0x47, 0x7e, 0xb0, 0x9b, 0x0c, 0xfb, 0xec, + 0x3a, 0x00, 0x32, 0xe4, 0x98, 0x47, 0xbd, 0xd7, 0xe7, 0xc4, 0x34, 0x55, 0x62, 0xc0, 0x03, 0x1e, + 0x7d, 0x76, 0xce, 0xde, 0x83, 0x46, 0x3f, 0x26, 0x8e, 0xf6, 0x2e, 0x3a, 0x4d, 0xe2, 0xa8, 0x7a, + 0x3f, 0x46, 0x5e, 0xf6, 0x2e, 0xd8, 0x47, 0xc0, 0xb0, 0xb7, 0x1e, 0xad, 0x02, 0x1f, 0x50, 0xf5, + 0x71, 0xa7, 0x45, 0xa5, 0xb0, 0xb3, 0x1b, 0x32, 0x03, 0xdb, 0x89, 0xd9, 0xd7, 0x60, 0x4e, 0x75, + 0xf6, 0x78, 0xe8, 0x9d, 0xc4, 0x9d, 0x39, 0x2a, 0xd8, 0x92, 0xe0, 0x63, 0xc4, 0x9c, 0x57, 0x42, + 0xdb, 0x30, 0xd6, 0x56, 0xf2, 0x0c, 0xee, 0x7b, 0x84, 0xd0, 0xba, 0xd6, 0x5d, 0x99, 0x2a, 0x5a, + 0xb4, 0x72, 0xc1, 0xa2, 0x39, 0x3f, 0x2f, 0x41, 0x4b, 0xd6, 0x4c, 0x5b, 0x34, 0xbb, 0x0f, 0x4c, + 0xad, 0x62, 0xf2, 0xc6, 0x1f, 0xf4, 0x8e, 0x2e, 0x12, 0x1e, 0x0b, 0xa2, 0xd9, 0xbd, 0xe2, 0x16, + 0xe4, 0xa1, 0x30, 0xb2, 0xd0, 0x38, 0x89, 0x04, 0x3d, 0xef, 0x5e, 0x71, 0x73, 0x39, 0xc8, 0x5e, + 0xa8, 0x04, 0x4c, 0x92, 0x9e, 0x1f, 0x0c, 0xf8, 0x1b, 0x22, 0xa5, 0x39, 0xd7, 0xc2, 0x36, 0xe7, + 0xa1, 0x65, 0x7e, 0xe7, 0xfc, 0x04, 0xea, 0x4a, 0x85, 0xa0, 0xed, 0x33, 0xd3, 0x2f, 0xd7, 0x40, + 0x58, 0x17, 0xea, 0x76, 0x2f, 0xdc, 0xfa, 0x57, 0x69, 0xdb, 0xf9, 0x33, 0xd0, 0xde, 0x43, 0x22, + 0x0a, 0x90, 0x68, 0xa5, 0x5e, 0xb4, 0x02, 0x33, 0x06, 0xf3, 0x34, 0x5c, 0x99, 0xc2, 0x1d, 0xea, + 0x34, 0x8c, 0x13, 0xd9, 0x0e, 0xfd, 0x76, 0xfe, 0x6d, 0x09, 0xd8, 0x4e, 0x9c, 0xf8, 0x23, 0x2f, + 0xe1, 0x8f, 0xb9, 0x16, 0x0d, 0xcf, 0xa1, 0x85, 0xb5, 0xbd, 0x08, 0x37, 0x84, 0x96, 0x22, 0x76, + 0xd7, 0x6f, 0x48, 0x76, 0xce, 0x7f, 0xb0, 0x6e, 0x96, 0x16, 0x42, 0xd7, 0xaa, 0x00, 0xb9, 0x2d, + 0xf1, 0xa2, 0x13, 0x9e, 0x90, 0x0a, 0x23, 0x15, 0x60, 0x10, 0xd0, 0x56, 0x18, 0x1c, 0x77, 0x7f, + 0x1b, 0x16, 0x73, 0x75, 0x98, 0xf2, 0xb9, 0x51, 0x20, 0x9f, 0x2b, 0xa6, 0x7c, 0xee, 0xc3, 0x92, + 0xd5, 0x2f, 0x49, 0x71, 0x1d, 0x98, 0x45, 0xc6, 0x40, 0x0d, 0x91, 0x76, 0x79, 0x57, 0x25, 0xd9, + 0x03, 0x58, 0x3e, 0xe6, 0x3c, 0xf2, 0x12, 0x4a, 0x12, 0xeb, 0xe0, 0x9a, 0xc8, 0x9a, 0x0b, 0xf3, + 0x9c, 0xff, 0x56, 0x82, 0x05, 0x94, 0xa4, 0xcf, 0xbc, 0xe0, 0x42, 0xcd, 0xd5, 0x5e, 0xe1, 0x5c, + 0xdd, 0x31, 0x36, 0x25, 0xa3, 0xf4, 0x57, 0x9d, 0xa8, 0x4a, 0x76, 0xa2, 0xd8, 0x1a, 0xb4, 0xac, + 0xee, 0xd6, 0x84, 0x4a, 0x16, 0x7b, 0xc9, 0x01, 0x8f, 0x36, 0x2f, 0x12, 0xfe, 0xab, 0x4f, 0xe5, + 0x87, 0xd0, 0x4e, 0xbb, 0x2d, 0xe7, 0x91, 0x41, 0x15, 0x09, 0x53, 0x56, 0x40, 0xbf, 0x9d, 0xbf, + 0x5b, 0x12, 0x05, 0xb7, 0x42, 0x5f, 0xab, 0x6b, 0x58, 0x10, 0xb5, 0x3e, 0x55, 0x10, 0x7f, 0x4f, + 0x55, 0x77, 0x7f, 0xf5, 0xc1, 0xa2, 0x4c, 0x8c, 0x79, 0x30, 0xe8, 0x79, 0xc3, 0x21, 0x09, 0xe2, + 0xba, 0x3b, 0x8b, 0xe9, 0x8d, 0xe1, 0xd0, 0xb9, 0x0d, 0x8b, 0x46, 0xef, 0xde, 0x32, 0x8e, 0x7d, + 0x60, 0x7b, 0x7e, 0x9c, 0xbc, 0x0c, 0xe2, 0xb1, 0xa1, 0x0d, 0xbd, 0x07, 0x0d, 0x94, 0xb6, 0xd8, + 0x33, 0xc1, 0xb9, 0x35, 0x17, 0xc5, 0x2f, 0xf6, 0x2b, 0xa6, 0x4c, 0xef, 0x8d, 0xcc, 0x2c, 0xcb, + 0x4c, 0xef, 0x0d, 0x65, 0x3a, 0x0f, 0x61, 0xc9, 0xaa, 0x4f, 0x36, 0xfd, 0x01, 0xd4, 0x26, 0xc9, + 0x9b, 0x50, 0xe9, 0xaa, 0x4d, 0x49, 0x21, 0x68, 0x15, 0xb9, 0x22, 0xc7, 0x79, 0x04, 0x8b, 0xfb, + 0xfc, 0x5c, 0x32, 0xb2, 0xea, 0xc8, 0x87, 0x97, 0x5a, 0x4c, 0x94, 0xef, 0xac, 0x03, 0x33, 0x3f, + 0x4e, 0x19, 0x40, 0xd9, 0x4f, 0x25, 0xcb, 0x7e, 0x72, 0x3e, 0x04, 0x76, 0xe8, 0x9f, 0x04, 0xcf, + 0x78, 0x1c, 0x7b, 0x27, 0x9a, 0xf5, 0xdb, 0x50, 0x19, 0xc5, 0x27, 0x52, 0x54, 0xe1, 0x4f, 0xe7, + 0x5b, 0xb0, 0x64, 0x95, 0x93, 0x15, 0x5f, 0x87, 0x46, 0xec, 0x9f, 0x04, 0x5e, 0x32, 0x89, 0xb8, + 0xac, 0x3a, 0x05, 0x9c, 0xc7, 0xb0, 0xfc, 0x7d, 0x1e, 0xf9, 0xc7, 0x17, 0x97, 0x55, 0x6f, 0xd7, + 0x53, 0xce, 0xd6, 0xb3, 0x03, 0x57, 0x33, 0xf5, 0xc8, 0xe6, 0x05, 0xf9, 0xca, 0x95, 0xac, 0xbb, + 0x22, 0x61, 0xc8, 0xbe, 0xb2, 0x29, 0xfb, 0x9c, 0x97, 0xc0, 0xb6, 0xc2, 0x20, 0xe0, 0xfd, 0xe4, + 0x80, 0xf3, 0x28, 0x75, 0xdd, 0xa4, 0xb4, 0xda, 0x7c, 0xb0, 0x2a, 0x67, 0x36, 0x2b, 0x50, 0x25, + 0x11, 0x33, 0xa8, 0x8e, 0x79, 0x34, 0xa2, 0x8a, 0xeb, 0x2e, 0xfd, 0x76, 0xae, 0xc2, 0x92, 0x55, + 0xad, 0x34, 0x76, 0x3f, 0x86, 0xab, 0xdb, 0x7e, 0xdc, 0xcf, 0x37, 0xd8, 0x81, 0xd9, 0xf1, 0xe4, + 0xa8, 0x97, 0x72, 0xa2, 0x4a, 0xa2, 0xfd, 0x93, 0xfd, 0x44, 0x56, 0xf6, 0x57, 0x4a, 0x50, 0xdd, + 0x7d, 0xb1, 0xb7, 0x85, 0x7b, 0x85, 0x1f, 0xf4, 0xc3, 0x11, 0x6a, 0x60, 0x62, 0xd0, 0x3a, 0x3d, + 0x95, 0xc3, 0xae, 0x43, 0x83, 0x14, 0x37, 0x34, 0xf9, 0xa4, 0x1e, 0x94, 0x02, 0x68, 0x6e, 0xf2, + 0x37, 0x63, 0x3f, 0x22, 0x7b, 0x52, 0x59, 0x89, 0x55, 0xda, 0x66, 0xf2, 0x19, 0xce, 0xff, 0x9e, + 0x81, 0x59, 0xb9, 0xf9, 0x8a, 0x8d, 0x3c, 0xf1, 0xcf, 0x78, 0xba, 0x91, 0x63, 0x0a, 0x95, 0xe2, + 0x88, 0x8f, 0xc2, 0x44, 0xeb, 0x6f, 0x62, 0x19, 0x6c, 0x90, 0xcc, 0x69, 0xa9, 0x44, 0x08, 0x03, + 0xbc, 0x22, 0x4a, 0x59, 0x20, 0xbb, 0x0e, 0xb3, 0x4a, 0x19, 0xa8, 0x6a, 0x6b, 0x41, 0x41, 0x38, + 0x1b, 0x7d, 0x6f, 0xec, 0xf5, 0xfd, 0xe4, 0x42, 0x8a, 0x05, 0x9d, 0xc6, 0xfa, 0x87, 0x61, 0xdf, + 0x1b, 0xf6, 0x8e, 0xbc, 0xa1, 0x17, 0xf4, 0xb9, 0x32, 0xd7, 0x2d, 0x10, 0x4d, 0x57, 0xd9, 0x2d, + 0x55, 0x4c, 0x98, 0xb7, 0x19, 0x14, 0xf7, 0xf0, 0x7e, 0x38, 0x1a, 0xf9, 0x09, 0x5a, 0xbc, 0xa4, + 0x9a, 0x55, 0x5c, 0x03, 0x11, 0xce, 0x01, 0x4a, 0x9d, 0x8b, 0x19, 0x6c, 0x28, 0xe7, 0x80, 0x01, + 0x62, 0x2d, 0x19, 0x0d, 0xad, 0xe2, 0x1a, 0x08, 0xae, 0xc5, 0x24, 0x88, 0x79, 0x92, 0x0c, 0xf9, + 0x40, 0x77, 0xa8, 0x49, 0xc5, 0xf2, 0x19, 0xec, 0x3e, 0x2c, 0x09, 0x23, 0x3c, 0xf6, 0x92, 0x30, + 0x3e, 0xf5, 0xe3, 0x5e, 0x8c, 0xe6, 0x6a, 0x8b, 0xca, 0x17, 0x65, 0xb1, 0x87, 0xb0, 0x9a, 0x81, + 0x23, 0xde, 0xe7, 0xfe, 0x19, 0x1f, 0x90, 0x0a, 0x57, 0x71, 0xa7, 0x65, 0xb3, 0x35, 0x68, 0x06, + 0x93, 0x51, 0x6f, 0x32, 0x1e, 0x78, 0xa8, 0xc4, 0xcc, 0x93, 0x72, 0x69, 0x42, 0xec, 0x63, 0x50, + 0x7a, 0x9a, 0xd4, 0x1e, 0x17, 0x2c, 0x09, 0x87, 0xd4, 0xeb, 0xda, 0x25, 0x90, 0x30, 0x53, 0x95, + 0xb4, 0x2d, 0x8d, 0x3c, 0x05, 0x10, 0x9f, 0x44, 0xfe, 0x99, 0x97, 0xf0, 0xce, 0xa2, 0x10, 0xea, + 0x32, 0x89, 0xdf, 0xf9, 0x81, 0x9f, 0xf8, 0x5e, 0x12, 0x46, 0x1d, 0x46, 0x79, 0x29, 0x80, 0x93, + 0x48, 0xf4, 0x11, 0x27, 0x5e, 0x32, 0x89, 0xa5, 0x86, 0xba, 0x24, 0xac, 0x95, 0x5c, 0x06, 0xfb, + 0x04, 0x56, 0x04, 0x45, 0x50, 0x96, 0xd4, 0xbd, 0x49, 0x55, 0x58, 0xa6, 0x19, 0x99, 0x92, 0x8b, + 0x53, 0x29, 0x49, 0x24, 0xf7, 0xe1, 0x55, 0x31, 0x95, 0x53, 0xb2, 0xb1, 0x7f, 0xd8, 0x03, 0xbf, + 0xdf, 0x93, 0x25, 0x90, 0x45, 0x56, 0x68, 0x14, 0xf9, 0x0c, 0xe7, 0xf7, 0x4a, 0x62, 0x23, 0x91, + 0x4c, 0x17, 0x1b, 0x26, 0x92, 0x60, 0xb7, 0x5e, 0x18, 0x0c, 0x2f, 0x24, 0x07, 0x82, 0x80, 0x9e, + 0x07, 0xc3, 0x0b, 0x54, 0xd2, 0xfd, 0xc0, 0x2c, 0x22, 0x64, 0x56, 0x4b, 0x81, 0x54, 0xe8, 0x26, + 0x34, 0xc7, 0x93, 0xa3, 0xa1, 0xdf, 0x17, 0x45, 0x2a, 0xa2, 0x16, 0x01, 0x51, 0x01, 0xb4, 0x0f, + 0xc5, 0xac, 0x8b, 0x12, 0x55, 0x2a, 0xd1, 0x94, 0x18, 0x16, 0x71, 0x36, 0x61, 0xd9, 0xee, 0xa0, + 0x14, 0xce, 0x77, 0xa1, 0x2e, 0x79, 0x39, 0x96, 0x46, 0xfa, 0xbc, 0xe1, 0xc3, 0x44, 0x93, 0x46, + 0xe7, 0x3b, 0xff, 0xaa, 0x0a, 0x4b, 0x12, 0xdd, 0x1a, 0x86, 0x31, 0x3f, 0x9c, 0x8c, 0x46, 0x5e, + 0x54, 0x20, 0x24, 0x4a, 0x97, 0x08, 0x89, 0x72, 0x5e, 0x48, 0xdc, 0xb0, 0x6c, 0x45, 0x21, 0x65, + 0x0c, 0x84, 0xdd, 0x81, 0x85, 0xfe, 0x30, 0x8c, 0x85, 0xea, 0x6e, 0xba, 0xd1, 0xb2, 0x70, 0x5e, + 0xb0, 0xd5, 0x8a, 0x04, 0x9b, 0x29, 0x94, 0x66, 0x32, 0x42, 0xc9, 0x81, 0x16, 0x56, 0xca, 0x95, + 0x9c, 0x9d, 0x95, 0x86, 0x93, 0x81, 0x61, 0x7f, 0xb2, 0x22, 0x40, 0xc8, 0x9b, 0x85, 0x22, 0x01, + 0xe0, 0x8f, 0x38, 0xc9, 0x71, 0xa3, 0x74, 0x43, 0x0a, 0x80, 0x7c, 0x16, 0x7b, 0x0c, 0x20, 0xda, + 0x22, 0x65, 0x02, 0x48, 0x99, 0xf8, 0xd0, 0x5e, 0x15, 0x73, 0xfe, 0xd7, 0x31, 0x31, 0x89, 0x38, + 0x29, 0x18, 0xc6, 0x97, 0xce, 0x5f, 0x2b, 0x41, 0xd3, 0xc8, 0x63, 0x57, 0x61, 0x71, 0xeb, 0xf9, + 0xf3, 0x83, 0x1d, 0x77, 0xe3, 0xc5, 0xd3, 0xef, 0xef, 0xf4, 0xb6, 0xf6, 0x9e, 0x1f, 0xee, 0xb4, + 0xaf, 0x20, 0xbc, 0xf7, 0x7c, 0x6b, 0x63, 0xaf, 0xf7, 0xf8, 0xb9, 0xbb, 0xa5, 0xe0, 0x12, 0x5b, + 0x01, 0xe6, 0xee, 0x3c, 0x7b, 0xfe, 0x62, 0xc7, 0xc2, 0xcb, 0xac, 0x0d, 0xad, 0x4d, 0x77, 0x67, + 0x63, 0x6b, 0x57, 0x22, 0x15, 0xb6, 0x0c, 0xed, 0xc7, 0x2f, 0xf7, 0xb7, 0x9f, 0xee, 0x3f, 0xe9, + 0x6d, 0x6d, 0xec, 0x6f, 0xed, 0xec, 0xed, 0x6c, 0xb7, 0xab, 0x6c, 0x0e, 0x1a, 0x1b, 0x9b, 0x1b, + 0xfb, 0xdb, 0xcf, 0xf7, 0x77, 0xb6, 0xdb, 0x35, 0xe7, 0xbf, 0x94, 0xe0, 0x2a, 0xf5, 0x7a, 0x90, + 0x65, 0x92, 0x35, 0x68, 0xf6, 0xc3, 0x70, 0x8c, 0x4a, 0x7c, 0xba, 0x4d, 0x99, 0x10, 0x32, 0x80, + 0x60, 0xf0, 0xe3, 0x30, 0xea, 0x73, 0xc9, 0x23, 0x40, 0xd0, 0x63, 0x44, 0x90, 0x01, 0xe4, 0xf2, + 0x8a, 0x12, 0x82, 0x45, 0x9a, 0x02, 0x13, 0x45, 0x56, 0x60, 0xe6, 0x28, 0xe2, 0x5e, 0xff, 0x54, + 0x72, 0x87, 0x4c, 0xb1, 0xaf, 0xa7, 0x56, 0x66, 0x1f, 0x67, 0x7f, 0xc8, 0x07, 0x44, 0x31, 0x75, + 0x77, 0x41, 0xe2, 0x5b, 0x12, 0x46, 0x89, 0xe6, 0x1d, 0x79, 0xc1, 0x20, 0x0c, 0xf8, 0x40, 0xaa, + 0xb0, 0x29, 0xe0, 0x1c, 0xc0, 0x4a, 0x76, 0x7c, 0x92, 0xc7, 0x3e, 0x31, 0x78, 0x4c, 0x68, 0x94, + 0xdd, 0xe9, 0xab, 0x69, 0xf0, 0xdb, 0x1f, 0x97, 0xa1, 0x8a, 0x0a, 0xc6, 0x74, 0x65, 0xc4, 0xd4, + 0x19, 0x2b, 0x39, 0x9f, 0x3b, 0x19, 0xae, 0x62, 0xbb, 0x91, 0x4e, 0x93, 0x14, 0x49, 0xf3, 0x23, + 0xde, 0x3f, 0x93, 0x6e, 0x13, 0x03, 0x41, 0x06, 0x41, 0x85, 0x9e, 0xbe, 0x96, 0x0c, 0xa2, 0xd2, + 0x2a, 0x8f, 0xbe, 0x9c, 0x4d, 0xf3, 0xe8, 0xbb, 0x0e, 0xcc, 0xfa, 0xc1, 0x51, 0x38, 0x09, 0x06, + 0xc4, 0x10, 0x75, 0x57, 0x25, 0xc9, 0xcb, 0x4f, 0x8c, 0xea, 0x8f, 0x14, 0xf9, 0xa7, 0x00, 0x7b, + 0x00, 0x8d, 0xf8, 0x22, 0xe8, 0x9b, 0x34, 0xbf, 0x2c, 0x67, 0x09, 0xe7, 0x60, 0xfd, 0xf0, 0x22, + 0xe8, 0x13, 0x85, 0xa7, 0xc5, 0x9c, 0xdf, 0x86, 0xba, 0x82, 0x91, 0x2c, 0x5f, 0xee, 0x7f, 0xb6, + 0xff, 0xfc, 0xd5, 0x7e, 0xef, 0xf0, 0x07, 0xfb, 0x5b, 0xed, 0x2b, 0x6c, 0x01, 0x9a, 0x1b, 0x5b, + 0x44, 0xe9, 0x04, 0x94, 0xb0, 0xc8, 0xc1, 0xc6, 0xe1, 0xa1, 0x46, 0xca, 0x0e, 0x43, 0xa3, 0x3c, + 0x26, 0x2d, 0x4e, 0x7b, 0xb1, 0x3f, 0x81, 0x45, 0x03, 0x4b, 0x2d, 0x82, 0x31, 0x02, 0x19, 0x8b, + 0x80, 0xd4, 0x3f, 0x91, 0xe3, 0xb4, 0x61, 0xfe, 0x09, 0x4f, 0x9e, 0x06, 0xc7, 0xa1, 0xaa, 0xe9, + 0x7f, 0x54, 0x61, 0x41, 0x43, 0xb2, 0xa2, 0x3b, 0xb0, 0xe0, 0x0f, 0x78, 0x90, 0xf8, 0xc9, 0x45, + 0xcf, 0xb2, 0xfd, 0xb3, 0x30, 0xaa, 0xcd, 0xde, 0xd0, 0xf7, 0xd4, 0x61, 0x8a, 0x48, 0xa0, 0x2d, + 0x8c, 0xfb, 0xb9, 0xe9, 0x83, 0x21, 0xba, 0x12, 0x2e, 0x87, 0xc2, 0x3c, 0x94, 0x40, 0x88, 0xcb, + 0x6d, 0x46, 0x7f, 0x22, 0xd4, 0xc7, 0xa2, 0x2c, 0x5c, 0x2a, 0x51, 0x13, 0x0e, 0xb9, 0x26, 0xf6, + 0x7c, 0x0d, 0xe4, 0x4e, 0x2b, 0x66, 0x84, 0x7c, 0xcc, 0x9e, 0x56, 0x18, 0x27, 0x1e, 0xf5, 0xdc, + 0x89, 0x07, 0xca, 0xcf, 0x8b, 0xa0, 0xcf, 0x07, 0xbd, 0x24, 0xec, 0x91, 0x9c, 0x27, 0x92, 0xa8, + 0xbb, 0x59, 0x18, 0xf7, 0x8d, 0x84, 0xc7, 0x49, 0xc0, 0x85, 0x8b, 0xb9, 0xbe, 0x59, 0xee, 0x94, + 0x5c, 0x05, 0xa1, 0xae, 0x3f, 0x89, 0xfc, 0xb8, 0xd3, 0xa2, 0xb3, 0x0c, 0xfa, 0xcd, 0xbe, 0x0d, + 0x57, 0x8f, 0x78, 0x9c, 0xf4, 0x4e, 0xb9, 0x37, 0xe0, 0x11, 0x91, 0x97, 0x38, 0x34, 0x11, 0xea, + 0x53, 0x71, 0x26, 0x12, 0xee, 0x19, 0x8f, 0x62, 0x3f, 0x0c, 0x48, 0x71, 0x6a, 0xb8, 0x2a, 0x89, + 0xf5, 0xe1, 0xe0, 0xf5, 0x46, 0xad, 0x67, 0x70, 0x81, 0x06, 0x5e, 0x9c, 0xc9, 0x6e, 0xc1, 0x0c, + 0x0d, 0x20, 0xee, 0xb4, 0x89, 0x66, 0x5a, 0x29, 0xcf, 0xfb, 0x81, 0x2b, 0xf3, 0x70, 0x95, 0xfb, + 0xe1, 0x30, 0x8c, 0x48, 0x7b, 0x6a, 0xb8, 0x22, 0x61, 0xcf, 0xce, 0x49, 0xe4, 0x8d, 0x4f, 0xa5, + 0x06, 0x95, 0x85, 0xbf, 0x5b, 0xad, 0x37, 0xdb, 0x2d, 0xe7, 0x4f, 0x41, 0x8d, 0xaa, 0xa5, 0xea, + 0x68, 0x32, 0x4b, 0xb2, 0x3a, 0x42, 0x3b, 0x30, 0x1b, 0xf0, 0xe4, 0x3c, 0x8c, 0x5e, 0xab, 0x93, + 0x39, 0x99, 0x74, 0x7e, 0x46, 0xd6, 0x96, 0x3e, 0xa9, 0x7a, 0x49, 0x6a, 0x22, 0xda, 0xcc, 0x62, + 0xa9, 0xe2, 0x53, 0x4f, 0x1a, 0x80, 0x75, 0x02, 0x0e, 0x4f, 0x3d, 0x94, 0xb5, 0xd6, 0xea, 0x0b, + 0x9b, 0xba, 0x49, 0xd8, 0xae, 0x58, 0xfc, 0x5b, 0x30, 0xaf, 0xce, 0xc0, 0xe2, 0xde, 0x90, 0x1f, + 0x27, 0xca, 0x23, 0x16, 0x4c, 0x46, 0x64, 0x78, 0xef, 0xf1, 0xe3, 0xc4, 0xd9, 0x87, 0x45, 0x29, + 0xff, 0x9e, 0x8f, 0xb9, 0x6a, 0xfa, 0x37, 0x8b, 0x74, 0x89, 0xe6, 0x83, 0x25, 0x5b, 0x60, 0x8a, + 0x53, 0x3f, 0xbb, 0xa4, 0xe3, 0x02, 0x33, 0xe5, 0xa9, 0xac, 0x50, 0x6e, 0xe6, 0xca, 0xe7, 0x27, + 0x87, 0x63, 0x61, 0x38, 0x3f, 0xf1, 0xa4, 0xdf, 0x57, 0x27, 0x97, 0x75, 0x57, 0x25, 0x9d, 0x3f, + 0x28, 0xc1, 0x12, 0xd5, 0xa6, 0xb4, 0x21, 0xb9, 0x67, 0x3d, 0xfc, 0x0a, 0xdd, 0x54, 0x1e, 0x57, + 0xe1, 0x67, 0x5c, 0x86, 0x9a, 0xb9, 0x8b, 0x89, 0xc4, 0x57, 0xf7, 0xaf, 0x54, 0xb3, 0xfe, 0x15, + 0xe7, 0x6f, 0x95, 0x60, 0x51, 0x6c, 0x24, 0xa4, 0x39, 0xcb, 0xe1, 0xff, 0x69, 0x98, 0x13, 0x1a, + 0x81, 0x94, 0x0a, 0xb2, 0xa3, 0xa9, 0x68, 0x25, 0x54, 0x14, 0xde, 0xbd, 0xe2, 0xda, 0x85, 0xd9, + 0x23, 0xd2, 0xca, 0x82, 0x1e, 0xa1, 0x05, 0x67, 0xdc, 0xf6, 0x5c, 0xef, 0x5e, 0x71, 0x8d, 0xe2, + 0x9b, 0x75, 0x98, 0x11, 0x66, 0x87, 0xf3, 0x04, 0xe6, 0xac, 0x86, 0x2c, 0xdf, 0x4e, 0x4b, 0xf8, + 0x76, 0x72, 0x4e, 0xd4, 0x72, 0x81, 0x13, 0xf5, 0x9f, 0x55, 0x80, 0x21, 0xb1, 0x64, 0x56, 0x63, + 0xcd, 0x3e, 0x89, 0x50, 0xc7, 0xdd, 0x29, 0xc4, 0xd6, 0x81, 0x19, 0x49, 0x75, 0x3a, 0x22, 0xb6, + 0xcc, 0x82, 0x1c, 0x14, 0xb3, 0x52, 0xe3, 0xd0, 0x27, 0x0f, 0x64, 0xb3, 0x8b, 0x69, 0x2f, 0xcc, + 0xc3, 0x5d, 0x91, 0x8e, 0x21, 0xd0, 0xba, 0x90, 0x76, 0xae, 0x4a, 0x67, 0xd7, 0x77, 0xe6, 0xd2, + 0xf5, 0x9d, 0xcd, 0xf9, 0xcf, 0x0c, 0x4b, 0xab, 0x6e, 0x5b, 0x5a, 0xb7, 0x60, 0x4e, 0x9d, 0x36, + 0xf4, 0x46, 0xd8, 0xba, 0x34, 0x6b, 0x2d, 0x90, 0xdd, 0x85, 0xb6, 0x32, 0x76, 0xb4, 0x39, 0x27, + 0xce, 0xec, 0x72, 0x38, 0xca, 0xff, 0xd4, 0xa3, 0xd6, 0xa4, 0xce, 0xa6, 0x00, 0xd9, 0x46, 0x48, + 0x21, 0xbd, 0x49, 0x20, 0x8f, 0xb9, 0xf9, 0x80, 0x0c, 0x5a, 0xb4, 0x8d, 0xb2, 0x19, 0xce, 0xdf, + 0x28, 0x41, 0x1b, 0xd7, 0xcc, 0x22, 0xcb, 0x4f, 0x81, 0xb8, 0xe2, 0x1d, 0xa9, 0xd2, 0x2a, 0xcb, + 0x1e, 0x42, 0x83, 0xd2, 0xe1, 0x98, 0x07, 0x92, 0x26, 0x3b, 0x36, 0x4d, 0xa6, 0xf2, 0x64, 0xf7, + 0x8a, 0x9b, 0x16, 0x36, 0x28, 0xf2, 0x3f, 0x94, 0xa0, 0x29, 0x5b, 0xf9, 0xa5, 0x3d, 0x36, 0x5d, + 0x23, 0x2e, 0x41, 0x50, 0x52, 0x1a, 0x86, 0x70, 0x07, 0x16, 0x46, 0x5e, 0x32, 0x89, 0x70, 0x3f, + 0xb7, 0xbc, 0x35, 0x59, 0x18, 0x37, 0x67, 0x12, 0x9d, 0x71, 0x2f, 0xf1, 0x87, 0x3d, 0x95, 0x2b, + 0x23, 0x00, 0x8a, 0xb2, 0x50, 0x82, 0xc4, 0x89, 0x77, 0xc2, 0xe5, 0xbe, 0x2b, 0x12, 0x4e, 0x07, + 0x56, 0x0e, 0xd2, 0x13, 0x18, 0x43, 0xbf, 0x76, 0xfe, 0xc9, 0x1c, 0xac, 0xe6, 0xb2, 0x74, 0xbc, + 0x92, 0x74, 0x41, 0x0c, 0xfd, 0xd1, 0x51, 0xa8, 0x8d, 0x93, 0x92, 0xe9, 0x9d, 0xb0, 0xb2, 0xd8, + 0x09, 0x5c, 0x55, 0x0a, 0x06, 0xce, 0x69, 0xba, 0x19, 0x96, 0x69, 0x97, 0xfb, 0xd8, 0x5e, 0xc2, + 0x6c, 0x83, 0x0a, 0x37, 0x99, 0xb8, 0xb8, 0x3e, 0x76, 0x0a, 0x1d, 0xad, 0xc9, 0x48, 0x61, 0x6d, + 0x68, 0x3b, 0xd8, 0xd6, 0x47, 0x97, 0xb4, 0x65, 0xa9, 0xe3, 0xee, 0xd4, 0xda, 0xd8, 0x05, 0xdc, + 0x50, 0x79, 0x24, 0x8d, 0xf3, 0xed, 0x55, 0xdf, 0x69, 0x6c, 0x64, 0x68, 0xd8, 0x8d, 0x5e, 0x52, + 0x31, 0xfb, 0x09, 0xac, 0x9c, 0x7b, 0x7e, 0xa2, 0xba, 0x65, 0xe8, 0x16, 0x35, 0x6a, 0xf2, 0xc1, + 0x25, 0x4d, 0xbe, 0x12, 0x1f, 0x5b, 0x5b, 0xd4, 0x94, 0x1a, 0xbb, 0x7f, 0x54, 0x86, 0x79, 0xbb, + 0x1e, 0x24, 0x53, 0xc9, 0xfb, 0x4a, 0x06, 0x2a, 0x6d, 0x34, 0x03, 0xe7, 0x6d, 0xfc, 0x72, 0x91, + 0x8d, 0x6f, 0x5a, 0xd5, 0x95, 0xcb, 0x5c, 0x7d, 0xd5, 0x77, 0x73, 0xf5, 0xd5, 0x0a, 0x5d, 0x7d, + 0xd3, 0x3d, 0x42, 0x33, 0xbf, 0xac, 0x47, 0x68, 0xf6, 0xad, 0x1e, 0xa1, 0xee, 0xff, 0x2d, 0x01, + 0xcb, 0x53, 0x2f, 0x7b, 0x22, 0xdc, 0x1a, 0x01, 0x1f, 0x4a, 0x21, 0xf6, 0xcd, 0x77, 0xe3, 0x00, + 0xb5, 0x5a, 0xea, 0x6b, 0x64, 0x45, 0x33, 0x68, 0xc8, 0x54, 0xaf, 0xe6, 0xdc, 0xa2, 0xac, 0x8c, + 0xbb, 0xb3, 0x7a, 0xb9, 0xbb, 0xb3, 0x76, 0xb9, 0xbb, 0x73, 0x26, 0xeb, 0xee, 0xec, 0xfe, 0xe5, + 0x12, 0x2c, 0x15, 0x90, 0xd9, 0xaf, 0x6f, 0xe0, 0x48, 0x18, 0x96, 0xf4, 0x29, 0x4b, 0xc2, 0x30, + 0xc1, 0xee, 0x9f, 0x87, 0x39, 0x8b, 0xb5, 0x7e, 0x7d, 0xed, 0x67, 0x35, 0x44, 0x41, 0xd9, 0x16, + 0xd6, 0xfd, 0x9f, 0x65, 0x60, 0x79, 0xf6, 0xfe, 0x13, 0xed, 0x43, 0x7e, 0x9e, 0x2a, 0x05, 0xf3, + 0xf4, 0xff, 0x75, 0xe7, 0xf9, 0x08, 0x16, 0x65, 0x24, 0xa4, 0xe1, 0xc8, 0x12, 0x14, 0x93, 0xcf, + 0x40, 0x1d, 0xd9, 0xf6, 0x35, 0xd7, 0xad, 0xc8, 0x2f, 0x63, 0xfb, 0xcd, 0xb8, 0x9c, 0x9d, 0x2e, + 0x74, 0xe4, 0x0c, 0xed, 0x9c, 0xf1, 0x20, 0x39, 0x9c, 0x1c, 0x89, 0x50, 0x40, 0x3f, 0x0c, 0x9c, + 0x7f, 0x5e, 0xd1, 0x6a, 0x3e, 0x65, 0x4a, 0x85, 0xe2, 0xdb, 0xd0, 0x32, 0xb7, 0x0f, 0xb9, 0x1c, + 0x19, 0x5f, 0x26, 0xaa, 0x12, 0x66, 0x29, 0xb6, 0x0d, 0xf3, 0x24, 0x24, 0x07, 0xfa, 0xbb, 0x32, + 0x7d, 0xf7, 0x16, 0xff, 0xcc, 0xee, 0x15, 0x37, 0xf3, 0x0d, 0xfb, 0x2d, 0x98, 0xb7, 0x8d, 0x3f, + 0xa9, 0x95, 0x14, 0x59, 0x03, 0xf8, 0xb9, 0x5d, 0x98, 0x6d, 0x40, 0x3b, 0x6b, 0x3d, 0xca, 0xa8, + 0x9c, 0x29, 0x15, 0xe4, 0x8a, 0xb3, 0x87, 0xf2, 0xe0, 0xb1, 0x46, 0x7e, 0x93, 0x5b, 0xf6, 0x67, + 0xc6, 0x34, 0xad, 0x8b, 0x3f, 0xc6, 0x51, 0xe4, 0xef, 0x00, 0xa4, 0x18, 0x6b, 0x43, 0xeb, 0xf9, + 0xc1, 0xce, 0x7e, 0x6f, 0x6b, 0x77, 0x63, 0x7f, 0x7f, 0x67, 0xaf, 0x7d, 0x85, 0x31, 0x98, 0x27, + 0x37, 0xdf, 0xb6, 0xc6, 0x4a, 0x88, 0x49, 0xc7, 0x8a, 0xc2, 0xca, 0x6c, 0x19, 0xda, 0x4f, 0xf7, + 0x33, 0x68, 0x65, 0xb3, 0xa1, 0xf9, 0xc3, 0x59, 0x81, 0x65, 0x11, 0xe9, 0xba, 0x29, 0xc8, 0x43, + 0x69, 0x27, 0x7f, 0xaf, 0x04, 0x57, 0x33, 0x19, 0x69, 0xd8, 0x96, 0x50, 0x40, 0x6c, 0xad, 0xc4, + 0x06, 0xe9, 0x20, 0x41, 0xe9, 0x9a, 0x19, 0x09, 0x92, 0xcf, 0x40, 0x9a, 0x37, 0x74, 0xd3, 0x0c, + 0x27, 0x15, 0x65, 0x39, 0xab, 0x3a, 0x42, 0x26, 0xd3, 0xf1, 0x63, 0x11, 0x41, 0x6b, 0x66, 0xa4, + 0x07, 0xb9, 0x76, 0x97, 0x55, 0x12, 0xcd, 0x0a, 0x4b, 0xd9, 0xb1, 0xfb, 0x5b, 0x98, 0xe7, 0xfc, + 0xc3, 0x0a, 0xb0, 0xef, 0x4d, 0x78, 0x74, 0x41, 0xb1, 0x59, 0xda, 0x6b, 0xba, 0x9a, 0xf5, 0x09, + 0xce, 0x8c, 0x27, 0x47, 0x9f, 0xf1, 0x0b, 0x15, 0xa9, 0x58, 0x4e, 0x23, 0x15, 0x8b, 0xa2, 0x05, + 0xab, 0x97, 0x47, 0x0b, 0xd6, 0x2e, 0x8b, 0x16, 0xfc, 0x1a, 0xcc, 0xf9, 0x27, 0x41, 0x88, 0x3c, + 0x8f, 0x7a, 0x42, 0xdc, 0x99, 0x59, 0xab, 0xa0, 0x6d, 0x2d, 0xc1, 0x7d, 0xc4, 0xd8, 0xa3, 0xb4, + 0x10, 0x1f, 0x9c, 0x50, 0x64, 0xaa, 0x29, 0x05, 0x76, 0x06, 0x27, 0x7c, 0x2f, 0xec, 0x7b, 0x49, + 0x18, 0x91, 0x63, 0x47, 0x7d, 0x8c, 0x78, 0xcc, 0x6e, 0xc1, 0x7c, 0x1c, 0x4e, 0x50, 0x73, 0x52, + 0x63, 0x15, 0x9e, 0xa4, 0x96, 0x40, 0x0f, 0xc4, 0x88, 0xd7, 0x61, 0x69, 0x12, 0xf3, 0xde, 0xc8, + 0x8f, 0x63, 0xdc, 0x1d, 0xfb, 0x61, 0x90, 0x44, 0xe1, 0x50, 0xfa, 0x93, 0x16, 0x27, 0x31, 0x7f, + 0x26, 0x72, 0xb6, 0x44, 0x06, 0xfb, 0x76, 0xda, 0xa5, 0xb1, 0xe7, 0x47, 0x71, 0x07, 0xa8, 0x4b, + 0x6a, 0xa4, 0xd8, 0xef, 0x03, 0xcf, 0x8f, 0x74, 0x5f, 0x30, 0x11, 0x67, 0xa2, 0x1d, 0x9b, 0x99, + 0x68, 0x47, 0x19, 0x2c, 0xb7, 0x0e, 0x75, 0xf5, 0x39, 0x1a, 0xb9, 0xc7, 0x51, 0x38, 0x52, 0x46, + 0x2e, 0xfe, 0x66, 0xf3, 0x50, 0x4e, 0x42, 0x69, 0xa0, 0x96, 0x93, 0xd0, 0xf9, 0x5d, 0x68, 0x1a, + 0x33, 0xc0, 0x3e, 0x10, 0xf6, 0x36, 0x2a, 0x54, 0xd2, 0x3a, 0x16, 0xc7, 0x24, 0x0d, 0x89, 0x3e, + 0x1d, 0xb0, 0x6f, 0xc0, 0xe2, 0xc0, 0x8f, 0x38, 0x05, 0xc9, 0xf6, 0x22, 0x7e, 0xc6, 0xa3, 0x58, + 0xf9, 0x12, 0xda, 0x3a, 0xc3, 0x15, 0xb8, 0xd3, 0x83, 0x25, 0x8b, 0x74, 0x34, 0x67, 0xcd, 0x50, + 0x84, 0x9f, 0x72, 0x67, 0xda, 0xd1, 0x7f, 0x32, 0x0f, 0xf7, 0x24, 0xe9, 0x06, 0xe9, 0x8d, 0xa3, + 0xf0, 0x88, 0x1a, 0x29, 0xb9, 0x16, 0xe6, 0xfc, 0xe3, 0x32, 0x54, 0x76, 0xc3, 0xb1, 0x79, 0xb8, + 0x53, 0xca, 0x1f, 0xee, 0x48, 0xe5, 0xb1, 0xa7, 0x75, 0x43, 0xb9, 0xc3, 0x5b, 0x20, 0xbb, 0x0b, + 0xf3, 0xde, 0x28, 0xe9, 0x25, 0x21, 0x2a, 0xcb, 0xe7, 0x5e, 0x24, 0xc2, 0x01, 0x2b, 0x44, 0x16, + 0x99, 0x1c, 0xb6, 0x0c, 0x15, 0xad, 0xf3, 0x50, 0x01, 0x4c, 0xa2, 0xa5, 0x46, 0x87, 0xe1, 0x17, + 0xd2, 0x67, 0x29, 0x53, 0xc8, 0xf5, 0xf6, 0xf7, 0xc2, 0x4c, 0x16, 0x3b, 0x57, 0x51, 0x16, 0x2a, + 0xb2, 0xc8, 0x08, 0xa3, 0x54, 0x2f, 0xd4, 0x69, 0xd3, 0x1b, 0x5f, 0xb7, 0xbd, 0xf1, 0x6b, 0xd0, + 0x4c, 0x86, 0x67, 0xbd, 0xb1, 0x77, 0x31, 0x0c, 0xbd, 0x81, 0x24, 0x40, 0x13, 0x72, 0x7e, 0x51, + 0x82, 0x1a, 0xcd, 0x32, 0xee, 0xd3, 0x42, 0x90, 0xe9, 0x13, 0x20, 0x9a, 0xb9, 0x39, 0x37, 0x0b, + 0x33, 0xc7, 0x0a, 0xec, 0x2e, 0xeb, 0x21, 0x9b, 0xc1, 0xdd, 0x6b, 0xd0, 0x10, 0x29, 0x1d, 0xa4, + 0x4c, 0x45, 0x52, 0x90, 0xdd, 0x80, 0xea, 0x69, 0x38, 0x56, 0xa6, 0x0c, 0xa8, 0x03, 0xdf, 0x70, + 0xec, 0x12, 0x9e, 0xf6, 0x07, 0xeb, 0x13, 0x03, 0x17, 0xea, 0x62, 0x16, 0x46, 0x15, 0x5d, 0x57, + 0x6b, 0x4e, 0x64, 0x06, 0x75, 0x5e, 0xc2, 0x02, 0xf2, 0x82, 0xe1, 0x11, 0x9f, 0x2e, 0xb4, 0xbe, + 0x8e, 0x7b, 0x60, 0x7f, 0x38, 0x19, 0x70, 0xd3, 0xa0, 0x24, 0x8f, 0xa7, 0xc4, 0x95, 0x2a, 0xe5, + 0xfc, 0xd3, 0x92, 0xe0, 0x31, 0xac, 0x97, 0xdd, 0x81, 0x2a, 0x8a, 0x9e, 0x8c, 0xff, 0x40, 0xc7, + 0x85, 0x60, 0x39, 0x97, 0x4a, 0x20, 0x35, 0x93, 0x4f, 0xd2, 0xac, 0x5d, 0x78, 0x24, 0x53, 0x6b, + 0x4c, 0x8f, 0x2c, 0x63, 0xc4, 0x64, 0x50, 0xb6, 0x6e, 0x1c, 0xe8, 0x54, 0x2d, 0x71, 0xa6, 0xb6, + 0xdc, 0xc1, 0x09, 0x37, 0x0e, 0x72, 0xfe, 0xb0, 0x04, 0x73, 0x56, 0x9f, 0x90, 0x52, 0x86, 0x5e, + 0x9c, 0xc8, 0x73, 0x79, 0xb9, 0xf2, 0x26, 0x64, 0x52, 0x59, 0xd9, 0xa6, 0x32, 0x7d, 0x30, 0x50, + 0x31, 0x0f, 0x06, 0xee, 0x43, 0x23, 0x8d, 0xec, 0xb7, 0x3b, 0x85, 0x2d, 0xaa, 0x08, 0x99, 0xb4, + 0x50, 0xea, 0x7a, 0xae, 0x19, 0xae, 0x67, 0xe7, 0x11, 0x34, 0x8d, 0xf2, 0xa6, 0xeb, 0xb8, 0x64, + 0xb9, 0x8e, 0x75, 0xf8, 0x58, 0x39, 0x0d, 0x1f, 0x73, 0xbe, 0x2c, 0xc3, 0x1c, 0x92, 0xb7, 0x1f, + 0x9c, 0x1c, 0x84, 0x43, 0xbf, 0x7f, 0x41, 0x64, 0xa5, 0x28, 0x59, 0x6e, 0x3d, 0x8a, 0xcc, 0x6d, + 0x18, 0x59, 0x4e, 0xc7, 0xcc, 0x0a, 0xf9, 0xa0, 0xd3, 0x28, 0x40, 0x90, 0xfd, 0x8e, 0xbc, 0x58, + 0xf2, 0xa4, 0x54, 0x7d, 0x2d, 0x10, 0xd9, 0x1c, 0x01, 0x0a, 0x06, 0x1c, 0xf9, 0xc3, 0xa1, 0x2f, + 0xca, 0x0a, 0xc3, 0xa8, 0x28, 0x0b, 0xdb, 0x1c, 0xf8, 0xb1, 0x77, 0x94, 0x1e, 0xfa, 0xe9, 0x34, + 0x79, 0xd5, 0xbc, 0x37, 0x86, 0x57, 0x4d, 0x44, 0x0f, 0xdb, 0x60, 0x76, 0x21, 0x67, 0x73, 0x0b, + 0xe9, 0xfc, 0x9b, 0x32, 0x34, 0x0d, 0xb2, 0x40, 0x76, 0x2e, 0x94, 0xf1, 0x06, 0x2a, 0x4f, 0xc3, + 0x03, 0xcb, 0xd4, 0x36, 0x10, 0x76, 0xcb, 0x6e, 0x95, 0xbc, 0xeb, 0xc4, 0xf0, 0x16, 0x09, 0x5d, + 0x87, 0x06, 0x92, 0xfe, 0xc7, 0x64, 0xd7, 0xcb, 0x6b, 0x35, 0x1a, 0x50, 0xb9, 0x0f, 0x28, 0xb7, + 0x96, 0xe6, 0x12, 0xf0, 0xd6, 0xf3, 0xf1, 0x87, 0xd0, 0x92, 0xd5, 0xd0, 0x1a, 0xd3, 0xa0, 0x53, + 0xe6, 0xb3, 0xd6, 0xdf, 0xb5, 0x4a, 0xaa, 0x2f, 0x1f, 0xa8, 0x2f, 0xeb, 0x97, 0x7d, 0xa9, 0x4a, + 0x3a, 0x4f, 0x74, 0xe8, 0xc1, 0x93, 0xc8, 0x1b, 0x9f, 0x2a, 0x81, 0x72, 0x1f, 0x96, 0x94, 0xdc, + 0x98, 0x04, 0x5e, 0x10, 0x84, 0x93, 0xa0, 0xcf, 0x55, 0xa4, 0x59, 0x51, 0x96, 0x33, 0xd0, 0x71, + 0xc9, 0x54, 0x11, 0xbb, 0x0b, 0x35, 0xa1, 0xbc, 0x88, 0xad, 0xb0, 0x58, 0x84, 0x88, 0x22, 0xec, + 0x0e, 0xd4, 0x84, 0x0e, 0x53, 0x9e, 0xca, 0xf4, 0xa2, 0x80, 0xb3, 0x0e, 0x0b, 0x14, 0x08, 0x6d, + 0xc8, 0xbe, 0xf7, 0x8a, 0xb6, 0xc8, 0x99, 0xbe, 0x08, 0x97, 0x5e, 0x06, 0xb6, 0x2f, 0xf8, 0xca, + 0x3c, 0x40, 0xfc, 0x45, 0x05, 0x9a, 0x06, 0x8c, 0xf2, 0x89, 0x4e, 0x7d, 0x7a, 0x03, 0xdf, 0x1b, + 0xf1, 0x84, 0x47, 0x92, 0x97, 0x32, 0x28, 0x96, 0xf3, 0xce, 0x4e, 0x7a, 0xe1, 0x24, 0xe9, 0x0d, + 0xf8, 0x49, 0xc4, 0xb9, 0xdc, 0xbb, 0x33, 0x28, 0x96, 0x43, 0x6a, 0x36, 0xca, 0x89, 0x73, 0x9a, + 0x0c, 0xaa, 0x8e, 0x03, 0xc5, 0x3c, 0x55, 0xd3, 0xe3, 0x40, 0x31, 0x2b, 0x59, 0xc9, 0x5a, 0x2b, + 0x90, 0xac, 0x9f, 0xc0, 0x8a, 0x90, 0xa1, 0x52, 0x7a, 0xf4, 0x32, 0xc4, 0x35, 0x25, 0x97, 0xdd, + 0x85, 0x36, 0xf6, 0x59, 0xb1, 0x46, 0xec, 0xff, 0x4c, 0xf0, 0x58, 0xc9, 0xcd, 0xe1, 0x58, 0x96, + 0x7c, 0xd4, 0x66, 0x59, 0x11, 0x93, 0x91, 0xc3, 0xa9, 0xac, 0xf7, 0xc6, 0x2e, 0xdb, 0x90, 0x65, + 0x33, 0x38, 0x7b, 0x08, 0xab, 0x23, 0x3e, 0xf0, 0x3d, 0xbb, 0x0a, 0x72, 0x19, 0x89, 0xe0, 0xb0, + 0x69, 0xd9, 0xd8, 0x0a, 0xce, 0xc2, 0xcf, 0xc2, 0xd1, 0x91, 0x2f, 0x36, 0x36, 0xe1, 0x4d, 0xaf, + 0xba, 0x39, 0xdc, 0x99, 0x83, 0xe6, 0x61, 0x12, 0x8e, 0xd5, 0xd2, 0xcf, 0x43, 0x4b, 0x24, 0x65, + 0x6c, 0xe1, 0x7b, 0x70, 0x8d, 0xe8, 0xf5, 0x45, 0x38, 0x0e, 0x87, 0xe1, 0xc9, 0x85, 0x65, 0x13, + 0xff, 0xfb, 0x12, 0x2c, 0x59, 0xb9, 0xa9, 0x51, 0x4c, 0x0e, 0x3c, 0x15, 0x10, 0x26, 0x48, 0x7c, + 0xd1, 0xd8, 0x16, 0x44, 0x41, 0x71, 0x56, 0xf2, 0x52, 0xc6, 0x88, 0x6d, 0xa4, 0xb7, 0x1c, 0xd4, + 0x87, 0x82, 0xde, 0x3b, 0x79, 0x7a, 0x97, 0xdf, 0xab, 0xfb, 0x0f, 0xaa, 0x8a, 0xdf, 0x92, 0x11, + 0x34, 0x03, 0x39, 0xe8, 0x8a, 0x1d, 0xf5, 0x60, 0xfa, 0x50, 0x54, 0x0f, 0xfa, 0x1a, 0x8c, 0x9d, + 0x9f, 0x97, 0x00, 0xd2, 0xde, 0x51, 0xdc, 0x85, 0xde, 0xda, 0xc4, 0x4d, 0x5a, 0x63, 0x1b, 0xfb, + 0x00, 0x5a, 0xfa, 0xe8, 0x3c, 0xdd, 0x2d, 0x9b, 0x0a, 0x43, 0xed, 0xe2, 0x36, 0x2c, 0x9c, 0x0c, + 0xc3, 0x23, 0xd2, 0x62, 0x28, 0x58, 0x35, 0x96, 0x11, 0x96, 0xf3, 0x02, 0x7e, 0x2c, 0xd1, 0x74, + 0x6b, 0xad, 0x9a, 0x5b, 0x6b, 0xf1, 0x46, 0xf9, 0x65, 0x59, 0x9f, 0x5f, 0xa6, 0x33, 0xf1, 0x56, + 0x2e, 0x67, 0x0f, 0x72, 0x62, 0x7d, 0xca, 0x91, 0x21, 0xe9, 0xfb, 0x07, 0x97, 0xba, 0x54, 0x1f, + 0xc1, 0x7c, 0x24, 0x64, 0xa6, 0x12, 0xa8, 0xd5, 0xb7, 0x08, 0xd4, 0xb9, 0xc8, 0xda, 0x99, 0xbf, + 0x0e, 0x6d, 0x6f, 0x70, 0xc6, 0xa3, 0xc4, 0x27, 0x17, 0x13, 0xa9, 0x51, 0x62, 0x80, 0x0b, 0x06, + 0x4e, 0xda, 0xca, 0x6d, 0x58, 0x90, 0xf1, 0xae, 0xba, 0xa4, 0xbc, 0x97, 0x96, 0xc2, 0x58, 0xd0, + 0xf9, 0x07, 0xea, 0xb8, 0xd4, 0x5e, 0xdd, 0xb7, 0xcf, 0x8a, 0x39, 0xc2, 0x72, 0x66, 0x84, 0x5f, + 0x93, 0xc7, 0x97, 0x03, 0xe5, 0xcb, 0xaa, 0x18, 0xb1, 0x58, 0x03, 0x79, 0xdc, 0x6c, 0x4f, 0x6b, + 0xf5, 0x5d, 0xa6, 0xd5, 0xf9, 0x4f, 0x25, 0x98, 0xdd, 0x0d, 0xc7, 0xbb, 0x38, 0xc5, 0xa8, 0xe3, + 0x20, 0x9b, 0xe8, 0x60, 0x73, 0x95, 0xbc, 0x24, 0x66, 0xad, 0x50, 0x2b, 0x99, 0xcb, 0x6a, 0x25, + 0x7f, 0x16, 0xde, 0x23, 0x6f, 0x6a, 0x14, 0x8e, 0xc3, 0x08, 0xd9, 0xd5, 0x1b, 0x0a, 0x15, 0x24, + 0x0c, 0x92, 0x53, 0x25, 0x4e, 0xdf, 0x56, 0x84, 0x5c, 0x1c, 0x68, 0x79, 0x0a, 0x6b, 0x46, 0x6a, + 0x51, 0x42, 0xca, 0xe6, 0x33, 0x9c, 0xdf, 0x84, 0x06, 0x59, 0x18, 0x34, 0xb4, 0x8f, 0xa0, 0x71, + 0x1a, 0x8e, 0x7b, 0xa7, 0x7e, 0x90, 0x28, 0xf6, 0x9f, 0x4f, 0x55, 0xff, 0x5d, 0x9a, 0x14, 0x5d, + 0xc0, 0xf9, 0xd7, 0x33, 0x30, 0xfb, 0x34, 0x38, 0x0b, 0xfd, 0x3e, 0x1d, 0xd1, 0x8e, 0xf8, 0x28, + 0x54, 0xe1, 0xf7, 0xf8, 0x1b, 0xa7, 0x83, 0x62, 0x4d, 0xc7, 0x82, 0x78, 0x5b, 0x22, 0x14, 0x43, + 0x42, 0x74, 0x71, 0x34, 0xbd, 0x3a, 0x27, 0x18, 0xcc, 0x40, 0xd0, 0x3a, 0x8b, 0xcc, 0xab, 0x6f, + 0x32, 0x95, 0x5e, 0x6f, 0xa8, 0x19, 0xd7, 0x1b, 0xb0, 0x2d, 0x19, 0x49, 0x27, 0x42, 0xad, 0x44, + 0x5b, 0x12, 0x22, 0x8b, 0x32, 0xe2, 0xc2, 0x1b, 0xae, 0x15, 0x2f, 0xb4, 0x28, 0x4d, 0x10, 0x95, + 0x33, 0xf1, 0x81, 0x28, 0x23, 0x36, 0x03, 0x13, 0x42, 0xf5, 0x34, 0x7b, 0xe3, 0x52, 0xdc, 0x78, + 0xcd, 0xc2, 0x28, 0xcb, 0x07, 0x5c, 0x8b, 0x5c, 0x31, 0x0e, 0x10, 0xd7, 0x03, 0xb3, 0xb8, 0x61, + 0x87, 0x8a, 0xb0, 0x60, 0x65, 0x87, 0x22, 0xc1, 0x78, 0xc3, 0xe1, 0x91, 0xd7, 0x7f, 0x4d, 0x17, + 0x6e, 0xe9, 0xd0, 0xb4, 0xe1, 0xda, 0x20, 0xc5, 0xc3, 0xa5, 0xab, 0x4a, 0x41, 0x2b, 0x55, 0xd7, + 0x84, 0xd8, 0x03, 0x68, 0x92, 0x8d, 0x2e, 0xd7, 0x75, 0x9e, 0xd6, 0xb5, 0x6d, 0x1a, 0xf1, 0xb4, + 0xb2, 0x66, 0x21, 0xf3, 0xf8, 0x78, 0x21, 0x17, 0xa8, 0xeb, 0x0d, 0x06, 0xf2, 0xd4, 0xbd, 0x2d, + 0xae, 0xc8, 0x69, 0x80, 0xbc, 0x00, 0x62, 0xc2, 0x44, 0x81, 0x45, 0x2a, 0x60, 0x61, 0xec, 0x06, + 0xd4, 0xd1, 0xea, 0x1b, 0x7b, 0xfe, 0x80, 0xe2, 0x54, 0x84, 0xf1, 0xa9, 0x31, 0xac, 0x43, 0xfd, + 0xa6, 0x6d, 0x73, 0x89, 0x66, 0xc5, 0xc2, 0x70, 0x6e, 0x74, 0x7a, 0x94, 0x46, 0xf6, 0xda, 0x20, + 0xfb, 0x98, 0xce, 0x3e, 0x13, 0x4e, 0xe1, 0xbb, 0xf3, 0x0f, 0xde, 0x93, 0x63, 0x96, 0x44, 0xab, + 0xfe, 0x1e, 0x62, 0x11, 0x57, 0x94, 0x44, 0xa5, 0x4d, 0xb8, 0x9f, 0x57, 0x2c, 0xa5, 0x4d, 0x16, + 0x25, 0xf7, 0xb3, 0x28, 0xe0, 0x6c, 0x40, 0xcb, 0xac, 0x80, 0xd5, 0xa1, 0xfa, 0xfc, 0x60, 0x67, + 0xbf, 0x7d, 0x85, 0x35, 0x61, 0xf6, 0x70, 0xe7, 0xc5, 0x8b, 0xbd, 0x9d, 0xed, 0x76, 0x89, 0xb5, + 0xa0, 0xae, 0xc3, 0x1c, 0xcb, 0x98, 0xda, 0xd8, 0xda, 0xda, 0x39, 0x78, 0xb1, 0xb3, 0xdd, 0xae, + 0x38, 0x7f, 0x50, 0x86, 0xa6, 0x51, 0xf3, 0x25, 0x7e, 0x91, 0x1b, 0x00, 0x64, 0x49, 0xa4, 0x01, + 0x0f, 0x55, 0xd7, 0x40, 0x50, 0x32, 0x6a, 0x1b, 0xbb, 0x22, 0x6e, 0x0a, 0xaa, 0x34, 0xcd, 0x17, + 0x5d, 0xc9, 0x33, 0xbd, 0xfc, 0x35, 0xd7, 0x06, 0x91, 0x96, 0x24, 0x40, 0x51, 0x77, 0x82, 0xc3, + 0x4c, 0x08, 0xd7, 0x26, 0xe2, 0x71, 0x38, 0x3c, 0xe3, 0xa2, 0x88, 0xd0, 0xc7, 0x2c, 0x0c, 0xdb, + 0x92, 0x22, 0xc6, 0x88, 0x88, 0xad, 0xb9, 0x36, 0xc8, 0xbe, 0xa9, 0xd6, 0xa6, 0x4e, 0x6b, 0xb3, + 0x9a, 0x9f, 0x68, 0x73, 0x5d, 0x9c, 0x04, 0xd8, 0xc6, 0x60, 0x20, 0x73, 0xcd, 0x7b, 0x87, 0x91, + 0x79, 0xc9, 0x55, 0x09, 0x89, 0x02, 0x46, 0x2d, 0x17, 0x33, 0xea, 0x5b, 0xc9, 0xd9, 0xd9, 0x81, + 0xe6, 0x81, 0x71, 0x6d, 0x96, 0x64, 0x96, 0xba, 0x30, 0x2b, 0x65, 0x9d, 0x81, 0x18, 0xdd, 0x29, + 0x9b, 0xdd, 0x71, 0xfe, 0x7e, 0x49, 0xdc, 0x44, 0xd2, 0xdd, 0x17, 0x6d, 0x3b, 0xd0, 0xd2, 0x3e, + 0xdc, 0x34, 0xe0, 0xdb, 0xc2, 0xb0, 0x0c, 0x75, 0xa5, 0x17, 0x1e, 0x1f, 0xc7, 0x5c, 0x85, 0x66, + 0x5a, 0x98, 0x52, 0x1c, 0x51, 0x15, 0xf5, 0x45, 0x0b, 0xb1, 0x0c, 0xd1, 0xcc, 0xe1, 0x48, 0x24, + 0xd2, 0x0d, 0xa8, 0x82, 0x52, 0x75, 0x5a, 0xc7, 0xa5, 0x67, 0x67, 0xf9, 0x2e, 0xd4, 0x75, 0xbd, + 0xf6, 0xae, 0xa0, 0x4a, 0xea, 0x7c, 0xdc, 0x7d, 0xc8, 0xa8, 0xb4, 0x3a, 0x2d, 0x68, 0x35, 0x9f, + 0xc1, 0xd6, 0x81, 0x1d, 0xfb, 0x51, 0xb6, 0xb8, 0x20, 0xde, 0x82, 0x1c, 0xe7, 0x15, 0x2c, 0x29, + 0x9e, 0x33, 0x34, 0x5a, 0x7b, 0x11, 0x4b, 0x97, 0xc9, 0xa4, 0x72, 0x5e, 0x26, 0x39, 0x7f, 0x5c, + 0x81, 0x59, 0xb9, 0xd2, 0xb9, 0xab, 0xd7, 0x62, 0x9d, 0x2d, 0x8c, 0x75, 0xac, 0x4b, 0x76, 0x24, + 0xc0, 0xe4, 0x4e, 0x94, 0xdb, 0x6b, 0x2a, 0x45, 0x7b, 0x0d, 0x83, 0xea, 0xd8, 0x4b, 0x4e, 0xc9, + 0xf5, 0xd2, 0x70, 0xe9, 0xb7, 0xf2, 0x52, 0xd6, 0x6c, 0x2f, 0x65, 0xd1, 0x45, 0x73, 0xa1, 0x4e, + 0xe5, 0x2f, 0x9a, 0x5f, 0x87, 0x86, 0xb8, 0x9c, 0x9c, 0x3a, 0x22, 0x53, 0x00, 0xa9, 0x57, 0x24, + 0x48, 0x42, 0xc8, 0xfb, 0x2e, 0x29, 0xf2, 0x15, 0x76, 0xb7, 0x6f, 0xc3, 0x8c, 0xb8, 0x70, 0x21, + 0x43, 0x6f, 0xaf, 0xab, 0x43, 0x3a, 0x51, 0x4e, 0xfd, 0x15, 0x31, 0x3c, 0xae, 0x2c, 0x6b, 0x5e, + 0xd9, 0x6c, 0xda, 0x57, 0x36, 0x4d, 0xff, 0x69, 0xcb, 0xf6, 0x9f, 0x3a, 0x8f, 0x61, 0xce, 0xaa, + 0x0e, 0xa5, 0xab, 0x0c, 0xdd, 0x6d, 0x5f, 0x61, 0x73, 0xd0, 0x78, 0xba, 0xdf, 0x7b, 0xbc, 0xf7, + 0xf4, 0xc9, 0xee, 0x8b, 0x76, 0x09, 0x93, 0x87, 0x2f, 0xb7, 0xb6, 0x76, 0x76, 0xb6, 0x49, 0xda, + 0x02, 0xcc, 0x3c, 0xde, 0x78, 0xba, 0x47, 0xb2, 0x76, 0x5b, 0xd0, 0xb6, 0xac, 0x4b, 0x1f, 0x8c, + 0x7c, 0x13, 0x98, 0xb2, 0xfb, 0x29, 0x84, 0x67, 0x3c, 0xe4, 0x89, 0x8a, 0x2a, 0x5f, 0x94, 0x39, + 0x4f, 0x75, 0x86, 0xba, 0x18, 0x91, 0xd6, 0x92, 0xb2, 0x88, 0x9c, 0xa4, 0x2c, 0x8b, 0xc8, 0xa2, + 0xae, 0xce, 0x77, 0xba, 0xd0, 0xd9, 0xe6, 0x58, 0xdb, 0xc6, 0x70, 0x98, 0xe9, 0x0e, 0x1a, 0x6e, + 0x05, 0x79, 0xd2, 0xaa, 0xfb, 0x1e, 0x5c, 0xdd, 0x10, 0x01, 0xe4, 0xbf, 0xae, 0xf8, 0x42, 0xa7, + 0x03, 0x2b, 0xd9, 0x2a, 0x65, 0x63, 0x8f, 0x61, 0x71, 0x9b, 0x1f, 0x4d, 0x4e, 0xf6, 0xf8, 0x59, + 0xda, 0x10, 0x83, 0x6a, 0x7c, 0x1a, 0x9e, 0xcb, 0xf9, 0xa1, 0xdf, 0xec, 0x7d, 0x80, 0x21, 0x96, + 0xe9, 0xc5, 0x63, 0xde, 0x57, 0x17, 0xfd, 0x08, 0x39, 0x1c, 0xf3, 0xbe, 0xf3, 0x09, 0x30, 0xb3, + 0x1e, 0x39, 0x5f, 0xa8, 0x6b, 0x4d, 0x8e, 0x7a, 0xf1, 0x45, 0x9c, 0xf0, 0x91, 0xba, 0xc1, 0x68, + 0x42, 0xce, 0x6d, 0x68, 0x1d, 0x78, 0x17, 0x2e, 0xff, 0xa9, 0x7c, 0x82, 0x60, 0x15, 0x66, 0xc7, + 0xde, 0x05, 0x92, 0xa0, 0x76, 0x06, 0x53, 0xb6, 0xf3, 0x7f, 0xca, 0x30, 0x23, 0x4a, 0x62, 0xad, + 0x03, 0x1e, 0x27, 0x7e, 0x40, 0x9c, 0xa6, 0x6a, 0x35, 0xa0, 0x1c, 0x6f, 0x97, 0x0b, 0x78, 0x5b, + 0x7a, 0x28, 0xd4, 0x85, 0x29, 0xc9, 0xc0, 0x16, 0x86, 0x9c, 0x96, 0x06, 0x0a, 0x0b, 0x97, 0x61, + 0x0a, 0x64, 0x4e, 0x16, 0x52, 0x8d, 0x4e, 0xf4, 0x4f, 0x89, 0x2d, 0xc9, 0xc6, 0x26, 0x54, 0xa8, + 0x37, 0xce, 0x0a, 0x6e, 0xcf, 0xe9, 0x8d, 0x39, 0xfd, 0xb0, 0xfe, 0x0e, 0xfa, 0xa1, 0x70, 0x5b, + 0xbc, 0x4d, 0x3f, 0x84, 0x77, 0xd0, 0x0f, 0x1d, 0x06, 0x6d, 0xba, 0x8d, 0x8d, 0x16, 0x88, 0xa2, + 0xdd, 0xbf, 0x5d, 0x82, 0xb6, 0xa4, 0x22, 0x9d, 0xa7, 0xce, 0xa8, 0xde, 0x76, 0xd5, 0xe7, 0x16, + 0xcc, 0x91, 0xfd, 0xa3, 0x45, 0x80, 0x3c, 0xef, 0xb1, 0x40, 0x1c, 0x87, 0x0a, 0x33, 0x19, 0xf9, + 0x43, 0xb9, 0x28, 0x26, 0xa4, 0xa4, 0x48, 0xe4, 0xc9, 0x80, 0xd7, 0x92, 0xab, 0xd3, 0xce, 0x1f, + 0x95, 0x60, 0xd1, 0xe8, 0xb0, 0xa4, 0xc2, 0x47, 0xd0, 0xd2, 0x8f, 0x1e, 0x70, 0xbd, 0xb9, 0xad, + 0xda, 0x6c, 0x93, 0x7e, 0x66, 0x15, 0xa6, 0xc5, 0xf4, 0x2e, 0xa8, 0x83, 0xf1, 0x64, 0x24, 0x77, + 0x15, 0x13, 0x42, 0x42, 0x3a, 0xe7, 0xfc, 0xb5, 0x2e, 0x22, 0xf6, 0x35, 0x0b, 0x23, 0xbf, 0x31, + 0xda, 0x6d, 0xba, 0x50, 0x55, 0xfa, 0x8d, 0x4d, 0xd0, 0xf9, 0x8b, 0x65, 0x58, 0x12, 0x86, 0xb8, + 0x74, 0x80, 0xe8, 0x7b, 0xa7, 0x33, 0xc2, 0x27, 0x21, 0x38, 0x72, 0xf7, 0x8a, 0x2b, 0xd3, 0xec, + 0x3b, 0xef, 0xe8, 0x3c, 0xd0, 0x51, 0xb8, 0x53, 0xd6, 0xa2, 0x52, 0xb4, 0x16, 0x6f, 0x99, 0xe9, + 0x22, 0x17, 0x7e, 0xad, 0xd8, 0x85, 0xff, 0x4e, 0x2e, 0xf3, 0xcd, 0x59, 0xa8, 0xc5, 0xfd, 0x70, + 0xcc, 0x9d, 0x15, 0x58, 0xb6, 0xa7, 0x40, 0x0a, 0xaa, 0x9f, 0x97, 0xa0, 0xf3, 0x58, 0x9c, 0xc6, + 0xf9, 0xc1, 0xc9, 0xae, 0x1f, 0x27, 0x61, 0xa4, 0x2f, 0xf1, 0xdf, 0x00, 0x88, 0x13, 0x2f, 0x92, + 0x0a, 0xad, 0x50, 0x0d, 0x0c, 0x04, 0x47, 0xc2, 0x83, 0x81, 0xc8, 0x15, 0x2b, 0xa8, 0xd3, 0x39, + 0xd5, 0x4b, 0x3a, 0x13, 0x2c, 0x05, 0xe6, 0x43, 0x11, 0xbb, 0x8e, 0x5d, 0xe6, 0x67, 0x24, 0xfd, + 0x85, 0x85, 0x9e, 0x41, 0x9d, 0xdf, 0x2b, 0xc3, 0x42, 0xda, 0x49, 0x8a, 0xb1, 0xb0, 0x65, 0x88, + 0xd4, 0x5a, 0x52, 0x19, 0x22, 0x1d, 0xff, 0x3d, 0x1f, 0xd5, 0x18, 0xc3, 0x9f, 0x60, 0xa0, 0xec, + 0x16, 0x34, 0x55, 0x2a, 0x9c, 0x24, 0xc6, 0x6d, 0x5a, 0x13, 0x16, 0x11, 0xa9, 0xa8, 0x48, 0x49, + 0xa5, 0x50, 0xa6, 0xe8, 0x36, 0xd0, 0x28, 0xa1, 0x2f, 0xc5, 0xcc, 0xab, 0x24, 0x6b, 0x0b, 0x4d, + 0x44, 0x3c, 0x6c, 0x42, 0x5a, 0x88, 0xb9, 0x43, 0xd7, 0xf5, 0x2b, 0x24, 0x9a, 0x33, 0x45, 0x8d, + 0x69, 0x38, 0x71, 0xd5, 0x35, 0x21, 0x65, 0xd1, 0x85, 0x13, 0x69, 0x9d, 0x88, 0x77, 0x4c, 0x2c, + 0xcc, 0xf9, 0xeb, 0x25, 0xb8, 0x56, 0xb0, 0x8c, 0x92, 0x53, 0xb7, 0x61, 0xf1, 0x58, 0x67, 0xaa, + 0xa9, 0x16, 0xec, 0xba, 0xa2, 0x42, 0x0e, 0xec, 0xe9, 0x75, 0xf3, 0x1f, 0x68, 0xe5, 0x54, 0x2c, + 0x9e, 0x15, 0x39, 0x9e, 0xcf, 0x70, 0x0e, 0xa0, 0xbb, 0xf3, 0x06, 0x19, 0x7f, 0xcb, 0x7c, 0x8b, + 0x4d, 0x51, 0xd6, 0x83, 0x9c, 0x60, 0xbb, 0xdc, 0x8d, 0x74, 0x0c, 0x73, 0x56, 0x5d, 0xec, 0x5b, + 0xef, 0x5a, 0x89, 0xc9, 0xa3, 0x6b, 0x72, 0xd5, 0xc5, 0x63, 0x72, 0x2a, 0x7e, 0xdd, 0x80, 0x9c, + 0x33, 0x58, 0x78, 0x36, 0x19, 0x26, 0x7e, 0xfa, 0xb0, 0x1c, 0xfb, 0x8e, 0xfc, 0x88, 0xaa, 0x50, + 0x53, 0x57, 0xd8, 0x94, 0x59, 0x0e, 0x67, 0x6c, 0x84, 0x35, 0xf5, 0xf2, 0x2d, 0xe6, 0x33, 0x9c, + 0x6b, 0xb0, 0x9a, 0x36, 0x29, 0xe6, 0x4e, 0x6d, 0x0e, 0xbf, 0x5f, 0x12, 0x81, 0x58, 0xf6, 0x3b, + 0x77, 0xec, 0x09, 0x2c, 0xc5, 0x7e, 0x70, 0x32, 0xe4, 0x66, 0x3d, 0xb1, 0x9c, 0x89, 0xab, 0x76, + 0xf7, 0xe4, 0x5b, 0x78, 0x6e, 0xd1, 0x17, 0x48, 0x20, 0xc5, 0x1d, 0x4d, 0x09, 0x24, 0x33, 0x25, + 0x45, 0x03, 0xf8, 0x2e, 0xcc, 0xdb, 0x8d, 0xb1, 0x87, 0x32, 0xf4, 0x3c, 0xed, 0x99, 0x79, 0xee, + 0x63, 0x53, 0x86, 0x55, 0xd2, 0xf9, 0xb2, 0x04, 0x1d, 0x97, 0x23, 0x19, 0x73, 0xa3, 0x51, 0x49, + 0x3d, 0x8f, 0x72, 0xd5, 0x4e, 0x1f, 0xb0, 0x0e, 0x69, 0x57, 0x63, 0x5d, 0x9f, 0xba, 0x28, 0xbb, + 0x57, 0x0a, 0x46, 0xb5, 0x59, 0x87, 0x19, 0x39, 0xbe, 0x55, 0xb8, 0x2a, 0xbb, 0xa4, 0xba, 0x93, + 0x1e, 0x18, 0x58, 0x8d, 0x5a, 0x07, 0x06, 0x5d, 0xe8, 0x88, 0xb7, 0x1a, 0xcc, 0x71, 0xc8, 0x0f, + 0xb7, 0x81, 0x3d, 0xf3, 0xfa, 0x5e, 0x14, 0x86, 0xc1, 0x01, 0x8f, 0x64, 0x50, 0x0d, 0x29, 0x40, + 0xe4, 0x4f, 0x57, 0xba, 0x9a, 0x48, 0xa9, 0xe7, 0x05, 0xc2, 0x40, 0x3d, 0xe3, 0x20, 0x52, 0x8e, + 0x0b, 0x4b, 0x9b, 0xde, 0x6b, 0xae, 0x6a, 0x4a, 0x67, 0xa9, 0x39, 0xd6, 0x95, 0xaa, 0xb9, 0x57, + 0x37, 0x4a, 0xf2, 0xcd, 0xba, 0x66, 0x69, 0xe7, 0x01, 0x2c, 0xdb, 0x75, 0x4a, 0x51, 0xd2, 0x85, + 0xfa, 0x48, 0x62, 0xb2, 0x77, 0x3a, 0x7d, 0xf7, 0x0b, 0x68, 0x1a, 0xef, 0x6f, 0xb0, 0x55, 0x58, + 0x7a, 0xf5, 0xf4, 0xc5, 0xfe, 0xce, 0xe1, 0x61, 0xef, 0xe0, 0xe5, 0xe6, 0x67, 0x3b, 0x3f, 0xe8, + 0xed, 0x6e, 0x1c, 0xee, 0xb6, 0xaf, 0xb0, 0x15, 0x60, 0xfb, 0x3b, 0x87, 0x2f, 0x76, 0xb6, 0x2d, + 0xbc, 0xc4, 0x6e, 0x40, 0xf7, 0xe5, 0xfe, 0xcb, 0xc3, 0x9d, 0xed, 0x5e, 0xd1, 0x77, 0x65, 0xf6, + 0x3e, 0x5c, 0x93, 0xf9, 0x05, 0x9f, 0x57, 0xee, 0x3e, 0x82, 0x76, 0xd6, 0xff, 0x61, 0x79, 0x8c, + 0xde, 0xe6, 0x5a, 0x7a, 0xf0, 0x65, 0x05, 0xe6, 0x45, 0x68, 0x9c, 0x78, 0x29, 0x92, 0x47, 0xec, + 0x19, 0xcc, 0xca, 0x27, 0x47, 0x99, 0x22, 0x2d, 0xfb, 0x91, 0xd3, 0xee, 0x4a, 0x16, 0x96, 0xcb, + 0xba, 0xf4, 0x97, 0xfe, 0xe3, 0x7f, 0xff, 0x9b, 0xe5, 0x39, 0xd6, 0xbc, 0x77, 0xf6, 0xf1, 0xbd, + 0x13, 0x1e, 0xc4, 0x58, 0xc7, 0xef, 0x00, 0xa4, 0x0f, 0x69, 0xb2, 0x8e, 0xf6, 0x01, 0x64, 0x5e, + 0x19, 0xed, 0x5e, 0x2b, 0xc8, 0x91, 0xf5, 0x5e, 0xa3, 0x7a, 0x97, 0x9c, 0x79, 0xac, 0xd7, 0x0f, + 0xfc, 0x44, 0x3c, 0xaa, 0xf9, 0x69, 0xe9, 0x2e, 0x1b, 0x40, 0xcb, 0x7c, 0xe2, 0x92, 0xa9, 0xf3, + 0x9f, 0x82, 0x47, 0x3a, 0xbb, 0xef, 0x15, 0xe6, 0x29, 0x5a, 0xa6, 0x36, 0xae, 0x3a, 0x6d, 0x6c, + 0x63, 0x42, 0x25, 0xd2, 0x56, 0x86, 0x82, 0xc3, 0xd3, 0x97, 0x2c, 0xd9, 0x75, 0x83, 0xe9, 0x72, + 0xef, 0x68, 0x76, 0xdf, 0x9f, 0x92, 0x2b, 0xdb, 0x7a, 0x9f, 0xda, 0x5a, 0x75, 0x18, 0xb6, 0xd5, + 0xa7, 0x32, 0xea, 0x1d, 0xcd, 0x4f, 0x4b, 0x77, 0x1f, 0xfc, 0xbb, 0xdb, 0xd0, 0xd0, 0x67, 0xc3, + 0xec, 0x27, 0x30, 0x67, 0xc5, 0x2e, 0x32, 0x35, 0x8c, 0xa2, 0x50, 0xc7, 0xee, 0xf5, 0xe2, 0x4c, + 0xd9, 0xf0, 0x0d, 0x6a, 0xb8, 0xc3, 0x56, 0xb0, 0x61, 0x19, 0xfc, 0x77, 0x8f, 0xa2, 0x70, 0xc5, + 0x25, 0xbe, 0xd7, 0x86, 0x24, 0x13, 0x8d, 0x5d, 0xcf, 0x0a, 0x17, 0xab, 0xb5, 0xf7, 0xa7, 0xe4, + 0xca, 0xe6, 0xae, 0x53, 0x73, 0x2b, 0x6c, 0xd9, 0x6c, 0x4e, 0x9f, 0xd7, 0x72, 0xba, 0xb9, 0x6a, + 0x3e, 0xf2, 0xc8, 0xde, 0xd7, 0x84, 0x55, 0xf4, 0xf8, 0xa3, 0x26, 0x91, 0xfc, 0x0b, 0x90, 0x4e, + 0x87, 0x9a, 0x62, 0x8c, 0x96, 0xcf, 0x7c, 0xe3, 0x91, 0x1d, 0x41, 0xd3, 0x78, 0x0a, 0x8a, 0x5d, + 0x9b, 0xfa, 0x6c, 0x55, 0xb7, 0x5b, 0x94, 0x55, 0x34, 0x14, 0xb3, 0xfe, 0x7b, 0xa8, 0xe8, 0xfc, + 0x08, 0x1a, 0xfa, 0x71, 0x21, 0xb6, 0x6a, 0x3c, 0xf6, 0x64, 0x3e, 0x86, 0xd4, 0xed, 0xe4, 0x33, + 0x8a, 0x88, 0xcf, 0xac, 0x1d, 0x89, 0xef, 0x15, 0x34, 0x8d, 0x07, 0x84, 0xf4, 0x00, 0xf2, 0x8f, + 0x14, 0xe9, 0x01, 0x14, 0xbc, 0x37, 0xe4, 0x2c, 0x52, 0x13, 0x4d, 0xd6, 0x20, 0xfa, 0x4e, 0xde, + 0x84, 0x31, 0xdb, 0x83, 0xab, 0x52, 0x62, 0x1f, 0xf1, 0xaf, 0xb2, 0x0c, 0x05, 0xef, 0x6a, 0xde, + 0x2f, 0xb1, 0x47, 0x50, 0x57, 0xef, 0x44, 0xb1, 0x95, 0xe2, 0xf7, 0xae, 0xba, 0xab, 0x39, 0x5c, + 0x8a, 0xd7, 0x1f, 0x00, 0xa4, 0xaf, 0x15, 0x69, 0x21, 0x91, 0x7b, 0xfd, 0x48, 0x53, 0x40, 0xfe, + 0x69, 0x23, 0x67, 0x85, 0x06, 0xd8, 0x66, 0x24, 0x24, 0x02, 0x7e, 0xae, 0x2e, 0xa9, 0xff, 0x18, + 0x9a, 0xc6, 0x83, 0x45, 0x7a, 0xfa, 0xf2, 0x8f, 0x1d, 0xe9, 0xe9, 0x2b, 0x78, 0xdf, 0xc8, 0xe9, + 0x52, 0xed, 0xcb, 0xce, 0x02, 0xd6, 0x1e, 0xfb, 0x27, 0xc1, 0x48, 0x14, 0xc0, 0x05, 0x3a, 0x85, + 0x39, 0xeb, 0x55, 0x22, 0xcd, 0xa1, 0x45, 0x6f, 0x1e, 0x69, 0x0e, 0x2d, 0x7c, 0xc8, 0x48, 0xd1, + 0x99, 0xb3, 0x88, 0xed, 0x9c, 0x51, 0x11, 0xa3, 0xa5, 0x1f, 0x42, 0xd3, 0x78, 0x61, 0x48, 0x8f, + 0x25, 0xff, 0x98, 0x91, 0x1e, 0x4b, 0xd1, 0x83, 0x44, 0xcb, 0xd4, 0xc6, 0xbc, 0x43, 0xa4, 0x40, + 0xd7, 0xad, 0xb1, 0xee, 0x9f, 0xc0, 0xbc, 0xfd, 0xe6, 0x90, 0xe6, 0xfd, 0xc2, 0xd7, 0x8b, 0x34, + 0xef, 0x4f, 0x79, 0xa8, 0x48, 0x92, 0xf4, 0xdd, 0x25, 0xdd, 0xc8, 0xbd, 0xcf, 0x65, 0x74, 0xd9, + 0x17, 0xec, 0x7b, 0x28, 0xe0, 0xe4, 0xfd, 0x77, 0xb6, 0x6a, 0x50, 0xad, 0x79, 0x4b, 0x5e, 0xf3, + 0x4b, 0xee, 0xaa, 0xbc, 0x4d, 0xcc, 0xe2, 0xc2, 0x38, 0xed, 0x5a, 0x74, 0x0f, 0xde, 0xd8, 0xb5, + 0xcc, 0xab, 0xf2, 0xc6, 0xae, 0x65, 0x5d, 0x97, 0xcf, 0xee, 0x5a, 0x89, 0x8f, 0x75, 0x04, 0xb0, + 0x90, 0xb9, 0x5f, 0xa1, 0xb9, 0xa2, 0xf8, 0x0a, 0x5c, 0xf7, 0xc6, 0xdb, 0xaf, 0x65, 0xd8, 0x12, + 0x44, 0x09, 0xc1, 0x7b, 0xea, 0xc2, 0xe1, 0xef, 0x42, 0xcb, 0x7c, 0x3b, 0x85, 0x99, 0xac, 0x9c, + 0x6d, 0xe9, 0xbd, 0xc2, 0x3c, 0x7b, 0x71, 0x59, 0xcb, 0x6c, 0x86, 0x7d, 0x1f, 0x56, 0x34, 0xab, + 0x9b, 0x21, 0xfb, 0x31, 0xbb, 0x59, 0x10, 0xc8, 0x6f, 0xea, 0x71, 0xdd, 0x6b, 0x53, 0x23, 0xfd, + 0xef, 0x97, 0x90, 0x68, 0xec, 0x07, 0x29, 0xd2, 0x0d, 0xa3, 0xe8, 0x1d, 0x8e, 0x74, 0xc3, 0x28, + 0x7c, 0xc5, 0x42, 0x11, 0x0d, 0x5b, 0xb2, 0xe6, 0x48, 0x1c, 0xc4, 0xb3, 0x1f, 0xc2, 0x82, 0x71, + 0x29, 0xea, 0xf0, 0x22, 0xe8, 0x6b, 0x06, 0xc8, 0xdf, 0xd7, 0xed, 0x16, 0x59, 0x29, 0xce, 0x2a, + 0xd5, 0xbf, 0xe8, 0x58, 0x93, 0x83, 0xc4, 0xbf, 0x05, 0x4d, 0xf3, 0xc2, 0xd5, 0x5b, 0xea, 0x5d, + 0x35, 0xb2, 0xcc, 0xeb, 0xa6, 0xf7, 0x4b, 0xec, 0x40, 0x04, 0x64, 0xe9, 0x87, 0x2e, 0xc3, 0x28, + 0xbb, 0x7d, 0xda, 0x0f, 0x60, 0xea, 0x85, 0x2c, 0x7a, 0xfa, 0xf4, 0x4e, 0xe9, 0x7e, 0x89, 0xfd, + 0x9d, 0x12, 0xb4, 0xac, 0x0b, 0x51, 0x56, 0x78, 0x4b, 0xa6, 0x67, 0x1d, 0x33, 0xcf, 0xec, 0x9a, + 0xe3, 0xd2, 0xb0, 0xf7, 0xee, 0x7e, 0xd7, 0x9a, 0xd6, 0xcf, 0x2d, 0x87, 0xda, 0x7a, 0xf6, 0xb5, + 0xcb, 0x2f, 0xb2, 0x05, 0xcc, 0x5b, 0xd2, 0x5f, 0xdc, 0x2f, 0xb1, 0x3f, 0x2c, 0xc1, 0xbc, 0xed, + 0x06, 0xd6, 0xc3, 0x2d, 0x74, 0x38, 0xeb, 0xc5, 0x9f, 0xe2, 0x3b, 0xfe, 0x21, 0xf5, 0xf2, 0xc5, + 0x5d, 0xd7, 0xea, 0xa5, 0x7c, 0xfc, 0xe4, 0x57, 0xeb, 0x2d, 0xfb, 0x54, 0x3c, 0xcf, 0xac, 0x0e, + 0x6b, 0x58, 0xfe, 0x91, 0x60, 0x4d, 0x30, 0xe6, 0xb3, 0xbe, 0xb4, 0x08, 0x3f, 0x16, 0xaf, 0x3c, + 0xaa, 0xf3, 0x04, 0xa4, 0xbb, 0x77, 0xfd, 0xde, 0xb9, 0x45, 0x63, 0xba, 0xe1, 0x5c, 0xb3, 0xc6, + 0x94, 0xdd, 0xe1, 0x37, 0x44, 0xef, 0xe4, 0x8b, 0xbc, 0xe9, 0x16, 0x95, 0x7b, 0xa5, 0x77, 0x7a, + 0x27, 0x47, 0xa2, 0x93, 0xb2, 0xb8, 0xc5, 0x1c, 0xef, 0x58, 0x8d, 0x73, 0x97, 0xfa, 0x7a, 0xcb, + 0xb9, 0x39, 0xb5, 0xaf, 0xf7, 0xc8, 0x99, 0x8b, 0x3d, 0x3e, 0x00, 0x48, 0x0f, 0x56, 0x59, 0xe6, + 0x60, 0x4f, 0x8b, 0x8c, 0xfc, 0xd9, 0xab, 0xcd, 0x81, 0xea, 0xfc, 0x0f, 0x6b, 0xfc, 0x91, 0x10, + 0x80, 0x4f, 0xd5, 0x91, 0xa0, 0xa9, 0xe6, 0xd8, 0x27, 0xa0, 0x96, 0x9a, 0x93, 0xad, 0xdf, 0x12, + 0x7f, 0xfa, 0x7c, 0xf1, 0x25, 0xcc, 0xed, 0x85, 0xe1, 0xeb, 0xc9, 0x58, 0x47, 0x9e, 0xd8, 0xe7, + 0x2c, 0xbb, 0x5e, 0x7c, 0xda, 0xcd, 0x8c, 0xc2, 0x59, 0xa3, 0xaa, 0xba, 0xac, 0x63, 0x54, 0x75, + 0xef, 0xf3, 0xf4, 0xe0, 0xf6, 0x0b, 0xe6, 0xc1, 0xa2, 0x96, 0xaa, 0xba, 0xe3, 0x5d, 0xbb, 0x1a, + 0x4b, 0x96, 0x66, 0x9b, 0xb0, 0xf4, 0x71, 0xd5, 0xdb, 0x7b, 0xb1, 0xaa, 0x93, 0x64, 0x4a, 0x6b, + 0x9b, 0xf7, 0xe9, 0xba, 0x07, 0x1d, 0x56, 0x2c, 0xa5, 0x1d, 0xd7, 0xa7, 0x1c, 0xdd, 0x39, 0x0b, + 0xb4, 0x77, 0x9a, 0xb1, 0x77, 0x11, 0xf1, 0x9f, 0xde, 0xfb, 0x5c, 0x1e, 0x83, 0x7c, 0xa1, 0x76, + 0x1a, 0x75, 0x4e, 0x64, 0xed, 0x34, 0x99, 0x83, 0x25, 0x6b, 0xa7, 0xc9, 0x1d, 0x2c, 0x59, 0x53, + 0xad, 0xce, 0xa9, 0xd8, 0x10, 0x16, 0x73, 0x67, 0x51, 0x7a, 0x93, 0x99, 0x76, 0x82, 0xd5, 0x5d, + 0x9b, 0x5e, 0xc0, 0x6e, 0xed, 0xae, 0xdd, 0xda, 0x21, 0xcc, 0x6d, 0x73, 0x31, 0x59, 0x22, 0xd4, + 0x36, 0x73, 0xab, 0xce, 0x0c, 0xe4, 0xcd, 0x6e, 0x09, 0x94, 0x67, 0xab, 0x12, 0x14, 0xe3, 0xca, + 0x7e, 0x04, 0xcd, 0x27, 0x3c, 0x51, 0xb1, 0xb5, 0x5a, 0x99, 0xcd, 0x04, 0xdb, 0x76, 0x0b, 0x42, + 0x73, 0x6d, 0x9a, 0xa1, 0xda, 0xee, 0xf1, 0xc1, 0x09, 0x17, 0xc2, 0xa9, 0xe7, 0x0f, 0xbe, 0x60, + 0x7f, 0x8e, 0x2a, 0xd7, 0x97, 0x0b, 0x56, 0x8c, 0x40, 0x49, 0xb3, 0xf2, 0x85, 0x0c, 0x5e, 0x54, + 0x73, 0x10, 0x0e, 0xb8, 0xa1, 0x54, 0x05, 0xd0, 0x34, 0x2e, 0xe2, 0x68, 0x06, 0xca, 0xdf, 0xeb, + 0xd2, 0x0c, 0x54, 0x70, 0x6f, 0xc7, 0xb9, 0x43, 0xed, 0x38, 0x6c, 0x2d, 0x6d, 0x47, 0xdc, 0xd5, + 0x49, 0x5b, 0xba, 0xf7, 0xb9, 0x37, 0x4a, 0xbe, 0x60, 0xaf, 0xe8, 0x31, 0x22, 0x33, 0x76, 0x38, + 0xd5, 0xce, 0xb3, 0x61, 0xc6, 0x7a, 0xb2, 0x8c, 0x2c, 0x5b, 0x63, 0x17, 0x4d, 0x91, 0xee, 0xf5, + 0x1d, 0x80, 0xc3, 0x24, 0x1c, 0x6f, 0x7b, 0x7c, 0x14, 0x06, 0xa9, 0xac, 0x4d, 0x23, 0x57, 0x53, + 0xf9, 0x65, 0x84, 0xaf, 0xb2, 0x57, 0x86, 0x39, 0x63, 0x85, 0x5f, 0x2b, 0xe2, 0x9a, 0x1a, 0xdc, + 0xaa, 0x27, 0xa4, 0x20, 0xc0, 0xf5, 0x7e, 0x89, 0x6d, 0x00, 0xa4, 0x87, 0x91, 0xda, 0x38, 0xc9, + 0x9d, 0x73, 0x6a, 0xb1, 0x57, 0x70, 0x72, 0x79, 0x00, 0x8d, 0xf4, 0x74, 0x6b, 0x35, 0xbd, 0xee, + 0x66, 0x9d, 0x85, 0xe9, 0x1d, 0x3c, 0x77, 0xe6, 0xe4, 0xb4, 0x69, 0xaa, 0x80, 0xd5, 0x71, 0xaa, + 0xe8, 0x20, 0xc9, 0x87, 0x25, 0xd1, 0x41, 0xad, 0xe0, 0x50, 0xc4, 0xa5, 0x1a, 0x49, 0xc1, 0xb9, + 0x8f, 0xe6, 0xe6, 0xc2, 0x03, 0x11, 0xcb, 0xc7, 0x82, 0xd4, 0x2a, 0xa2, 0x3d, 0x51, 0x34, 0x8f, + 0x60, 0x31, 0xe7, 0x63, 0xd7, 0x2c, 0x3d, 0xed, 0x10, 0x45, 0xb3, 0xf4, 0x54, 0xf7, 0xbc, 0x73, + 0x95, 0x9a, 0x5c, 0x70, 0x80, 0x6c, 0xaa, 0x73, 0x3f, 0xe9, 0x9f, 0x62, 0x73, 0xbf, 0x5f, 0x82, + 0xa5, 0x02, 0x17, 0x3a, 0xfb, 0x40, 0x99, 0xe7, 0x53, 0xdd, 0xeb, 0xdd, 0x42, 0x0f, 0xab, 0x73, + 0x48, 0xed, 0x3c, 0x63, 0x9f, 0x59, 0x1b, 0x9b, 0x70, 0x6e, 0x4a, 0xce, 0x7c, 0xab, 0x52, 0x51, + 0xa8, 0x51, 0xfc, 0x14, 0x56, 0x45, 0x47, 0x36, 0x86, 0xc3, 0x8c, 0xf7, 0xf7, 0x46, 0xee, 0x3f, + 0xb4, 0x58, 0x5e, 0xed, 0xee, 0xf4, 0xff, 0xe0, 0x32, 0x45, 0x01, 0x16, 0x5d, 0x65, 0x13, 0x68, + 0x67, 0x3d, 0xaa, 0x6c, 0x7a, 0x5d, 0xdd, 0x9b, 0x96, 0xa1, 0x59, 0xe0, 0x85, 0xfd, 0x0d, 0x6a, + 0xec, 0xa6, 0xd3, 0x2d, 0x9a, 0x17, 0x61, 0x7b, 0xe2, 0x7a, 0xfc, 0x05, 0xed, 0xfe, 0xcd, 0x8c, + 0x53, 0x35, 0x30, 0xcd, 0x5f, 0xad, 0x4d, 0xdd, 0x62, 0xef, 0xf1, 0x87, 0xd4, 0xfc, 0x9a, 0xf3, + 0x5e, 0x51, 0xf3, 0x91, 0xf8, 0x44, 0x18, 0xbd, 0xab, 0x59, 0xbe, 0x56, 0x3d, 0x58, 0x2b, 0x5a, + 0xef, 0xa9, 0xd6, 0x4b, 0x66, 0xae, 0xaf, 0x90, 0x6e, 0xd7, 0x32, 0xdd, 0xbd, 0x9a, 0x7d, 0x0a, + 0xfc, 0xca, 0x9a, 0x7d, 0x8a, 0xfc, 0xc3, 0xb6, 0x5e, 0xa3, 0x3c, 0xc3, 0x9f, 0x96, 0xee, 0x6e, + 0xde, 0xfe, 0xe1, 0x6f, 0x9c, 0xf8, 0xc9, 0xe9, 0xe4, 0x68, 0xbd, 0x1f, 0x8e, 0xee, 0x0d, 0x95, + 0x5b, 0x4f, 0xde, 0x42, 0xb8, 0x37, 0x0c, 0x06, 0xf7, 0xa8, 0xda, 0xa3, 0x19, 0xfa, 0x97, 0x52, + 0xdf, 0xfa, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb6, 0x0e, 0x06, 0x7d, 0x84, 0x6a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -10233,6 +10370,11 @@ type LightningClient interface { //ups, but the updated set of encrypted multi-chan backups with the closed //channel(s) removed. SubscribeChannelBackups(ctx context.Context, in *ChannelBackupSubscription, opts ...grpc.CallOption) (Lightning_SubscribeChannelBackupsClient, error) + //* lncli: `bakemacaroon` + //BakeMacaroon allows the creation of a new macaroon with custom read and + //write permissions. No first-party caveats are added since this can be done + //offline. + BakeMacaroon(ctx context.Context, in *BakeMacaroonRequest, opts ...grpc.CallOption) (*BakeMacaroonResponse, error) } type lightningClient struct { @@ -10929,6 +11071,15 @@ func (x *lightningSubscribeChannelBackupsClient) Recv() (*ChanBackupSnapshot, er return m, nil } +func (c *lightningClient) BakeMacaroon(ctx context.Context, in *BakeMacaroonRequest, opts ...grpc.CallOption) (*BakeMacaroonResponse, error) { + out := new(BakeMacaroonResponse) + err := c.cc.Invoke(ctx, "/lnrpc.Lightning/BakeMacaroon", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // LightningServer is the server API for Lightning service. type LightningServer interface { //* lncli: `walletbalance` @@ -11222,6 +11373,11 @@ type LightningServer interface { //ups, but the updated set of encrypted multi-chan backups with the closed //channel(s) removed. SubscribeChannelBackups(*ChannelBackupSubscription, Lightning_SubscribeChannelBackupsServer) error + //* lncli: `bakemacaroon` + //BakeMacaroon allows the creation of a new macaroon with custom read and + //write permissions. No first-party caveats are added since this can be done + //offline. + BakeMacaroon(context.Context, *BakeMacaroonRequest) (*BakeMacaroonResponse, error) } func RegisterLightningServer(s *grpc.Server, srv LightningServer) { @@ -12191,6 +12347,24 @@ func (x *lightningSubscribeChannelBackupsServer) Send(m *ChanBackupSnapshot) err return x.ServerStream.SendMsg(m) } +func _Lightning_BakeMacaroon_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(BakeMacaroonRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(LightningServer).BakeMacaroon(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/lnrpc.Lightning/BakeMacaroon", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(LightningServer).BakeMacaroon(ctx, req.(*BakeMacaroonRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Lightning_serviceDesc = grpc.ServiceDesc{ ServiceName: "lnrpc.Lightning", HandlerType: (*LightningServer)(nil), @@ -12359,6 +12533,10 @@ var _Lightning_serviceDesc = grpc.ServiceDesc{ MethodName: "RestoreChannelBackups", Handler: _Lightning_RestoreChannelBackups_Handler, }, + { + MethodName: "BakeMacaroon", + Handler: _Lightning_BakeMacaroon_Handler, + }, }, Streams: []grpc.StreamDesc{ { diff --git a/lnrpc/rpc.pb.gw.go b/lnrpc/rpc.pb.gw.go index 270ba306..e4b925c1 100644 --- a/lnrpc/rpc.pb.gw.go +++ b/lnrpc/rpc.pb.gw.go @@ -834,6 +834,19 @@ func request_Lightning_RestoreChannelBackups_0(ctx context.Context, marshaler ru } +func request_Lightning_BakeMacaroon_0(ctx context.Context, marshaler runtime.Marshaler, client LightningClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq BakeMacaroonRequest + var metadata runtime.ServerMetadata + + if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err) + } + + msg, err := client.BakeMacaroon(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + // RegisterWalletUnlockerHandlerFromEndpoint is same as RegisterWalletUnlockerHandler but // automatically dials to "endpoint" and closes the connection when "ctx" gets done. func RegisterWalletUnlockerHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) { @@ -2193,6 +2206,35 @@ func RegisterLightningHandler(ctx context.Context, mux *runtime.ServeMux, conn * }) + mux.Handle("POST", pattern_Lightning_BakeMacaroon_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(ctx) + defer cancel() + if cn, ok := w.(http.CloseNotifier); ok { + go func(done <-chan struct{}, closed <-chan bool) { + select { + case <-done: + case <-closed: + cancel() + } + }(ctx.Done(), cn.CloseNotify()) + } + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Lightning_BakeMacaroon_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Lightning_BakeMacaroon_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -2276,6 +2318,8 @@ var ( pattern_Lightning_VerifyChanBackup_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"v1", "channels", "backup", "verify"}, "")) pattern_Lightning_RestoreChannelBackups_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"v1", "channels", "backup", "restore"}, "")) + + pattern_Lightning_BakeMacaroon_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"v1", "macaroon"}, "")) ) var ( @@ -2358,4 +2402,6 @@ var ( forward_Lightning_VerifyChanBackup_0 = runtime.ForwardResponseMessage forward_Lightning_RestoreChannelBackups_0 = runtime.ForwardResponseMessage + + forward_Lightning_BakeMacaroon_0 = runtime.ForwardResponseMessage ) diff --git a/lnrpc/rpc.proto b/lnrpc/rpc.proto index 627d609f..a2b065d8 100644 --- a/lnrpc/rpc.proto +++ b/lnrpc/rpc.proto @@ -777,6 +777,18 @@ service Lightning { */ rpc SubscribeChannelBackups(ChannelBackupSubscription) returns (stream ChanBackupSnapshot) { }; + + /** lncli: `bakemacaroon` + BakeMacaroon allows the creation of a new macaroon with custom read and + write permissions. No first-party caveats are added since this can be done + offline. + */ + rpc BakeMacaroon(BakeMacaroonRequest) returns (BakeMacaroonResponse) { + option (google.api.http) = { + post: "/v1/macaroon" + body: "*" + }; + }; } message Utxo { @@ -2585,3 +2597,19 @@ message ChannelBackupSubscription {} message VerifyChanBackupResponse { } + +message MacaroonPermission { + /// The entity a permission grants access to. + string entity = 1 [json_name = "entity"]; + + /// The action that is granted. + string action = 2 [json_name = "action"]; +} +message BakeMacaroonRequest { + /// The list of permissions the new macaroon should grant. + repeated MacaroonPermission permissions = 1 [json_name = "permissions"]; +} +message BakeMacaroonResponse { + /// The hex encoded macaroon, serialized in binary format. + string macaroon = 1 [json_name = "macaroon"]; +} diff --git a/lnrpc/rpc.swagger.json b/lnrpc/rpc.swagger.json index d045ba8c..9263dd1c 100644 --- a/lnrpc/rpc.swagger.json +++ b/lnrpc/rpc.swagger.json @@ -917,6 +917,33 @@ ] } }, + "/v1/macaroon": { + "post": { + "summary": "* lncli: `bakemacaroon`\nBakeMacaroon allows the creation of a new macaroon with custom read and\nwrite permissions. No first-party caveats are added since this can be done\noffline.", + "operationId": "BakeMacaroon", + "responses": { + "200": { + "description": "", + "schema": { + "$ref": "#/definitions/lnrpcBakeMacaroonResponse" + } + } + }, + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/lnrpcBakeMacaroonRequest" + } + } + ], + "tags": [ + "Lightning" + ] + } + }, "/v1/newaddress": { "get": { "summary": "* lncli: `newaddress`\nNewAddress creates a new address under control of the local wallet.", @@ -1512,6 +1539,27 @@ "description": "- `p2wkh`: Pay to witness key hash (`WITNESS_PUBKEY_HASH` = 0)\n- `np2wkh`: Pay to nested witness key hash (`NESTED_PUBKEY_HASH` = 1)", "title": "* \n`AddressType` has to be one of:" }, + "lnrpcBakeMacaroonRequest": { + "type": "object", + "properties": { + "permissions": { + "type": "array", + "items": { + "$ref": "#/definitions/lnrpcMacaroonPermission" + }, + "description": "/ The list of permissions the new macaroon should grant." + } + } + }, + "lnrpcBakeMacaroonResponse": { + "type": "object", + "properties": { + "macaroon": { + "type": "string", + "description": "/ The hex encoded macaroon, serialized in binary format." + } + } + }, "lnrpcChain": { "type": "object", "properties": { @@ -2746,6 +2794,19 @@ } } }, + "lnrpcMacaroonPermission": { + "type": "object", + "properties": { + "entity": { + "type": "string", + "description": "/ The entity a permission grants access to." + }, + "action": { + "type": "string", + "description": "/ The action that is granted." + } + } + }, "lnrpcMultiChanBackup": { "type": "object", "properties": { diff --git a/rpcserver.go b/rpcserver.go index 2b390ec6..f730092f 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -151,6 +151,10 @@ var ( Entity: "signer", Action: "generate", }, + { + Entity: "macaroon", + Action: "generate", + }, } // invoicePermissions is a slice of all the entities that allows a user @@ -174,8 +178,28 @@ var ( Action: "write", }, } + + // TODO(guggero): Refactor into constants that are used for all + // permissions in this file. Also expose the list of possible + // permissions in an RPC when per RPC permissions are + // implemented. + validActions = []string{"read", "write", "generate"} + validEntities = []string{ + "onchain", "offchain", "address", "message", + "peers", "info", "invoices", "signer", "macaroon", + } ) +// stringInSlice returns true if a string is contained in the given slice. +func stringInSlice(a string, slice []string) bool { + for _, b := range slice { + if b == a { + return true + } + } + return false +} + // mainRPCServerPermissions returns a mapping of the main RPC server calls to // the permissions they require. func mainRPCServerPermissions() map[string][]bakery.Op { @@ -396,6 +420,10 @@ func mainRPCServerPermissions() map[string][]bakery.Op { Entity: "offchain", Action: "write", }}, + "/lnrpc.Lightning/BakeMacaroon": {{ + Entity: "macaroon", + Action: "generate", + }}, } } @@ -449,6 +477,10 @@ type rpcServer struct { chanPredicate *chanacceptor.ChainedAcceptor quit chan struct{} + + // macService is the macaroon service that we need to mint new + // macaroons. + macService *macaroons.Service } // A compile time check to ensure that rpcServer fully implements the @@ -623,6 +655,7 @@ func newRPCServer(s *server, macService *macaroons.Service, routerBackend: routerBackend, chanPredicate: chanPredicate, quit: make(chan struct{}, 1), + macService: macService, } lnrpc.RegisterLightningServer(grpcServer, rootRPCServer) @@ -5243,3 +5276,64 @@ func (r *rpcServer) ChannelAcceptor(stream lnrpc.Lightning_ChannelAcceptorServer } } } + +// BakeMacaroon allows the creation of a new macaroon with custom read and write +// permissions. No first-party caveats are added since this can be done offline. +func (r *rpcServer) BakeMacaroon(ctx context.Context, + req *lnrpc.BakeMacaroonRequest) (*lnrpc.BakeMacaroonResponse, error) { + + rpcsLog.Debugf("[bakemacaroon]") + + // If the --no-macaroons flag is used to start lnd, the macaroon service + // is not initialized. Therefore we can't bake new macaroons. + if r.macService == nil { + return nil, fmt.Errorf("macaroon authentication disabled, " + + "remove --no-macaroons flag to enable") + } + + helpMsg := fmt.Sprintf("supported actions are %v, supported entities "+ + "are %v", validActions, validEntities) + + // Don't allow empty permission list as it doesn't make sense to have + // a macaroon that is not allowed to access any RPC. + if len(req.Permissions) == 0 { + return nil, fmt.Errorf("permission list cannot be empty. "+ + "specify at least one action/entity pair. %s", helpMsg) + } + + // Validate and map permission struct used by gRPC to the one used by + // the bakery. + requestedPermissions := make([]bakery.Op, len(req.Permissions)) + for idx, op := range req.Permissions { + if !stringInSlice(op.Action, validActions) { + return nil, fmt.Errorf("invalid permission action. %s", + helpMsg) + } + if !stringInSlice(op.Entity, validEntities) { + return nil, fmt.Errorf("invalid permission entity. %s", + helpMsg) + } + + requestedPermissions[idx] = bakery.Op{ + Entity: op.Entity, + Action: op.Action, + } + } + + // Bake new macaroon with the given permissions and send it binary + // serialized and hex encoded to the client. + newMac, err := r.macService.Oven.NewMacaroon( + ctx, bakery.LatestVersion, nil, requestedPermissions..., + ) + if err != nil { + return nil, err + } + newMacBytes, err := newMac.M().MarshalBinary() + if err != nil { + return nil, err + } + resp := &lnrpc.BakeMacaroonResponse{} + resp.Macaroon = hex.EncodeToString(newMacBytes) + + return resp, nil +} From 1270a8ebaee61a18caa5dfb9181126b4ee9da1a1 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Sat, 26 May 2018 10:00:49 +0200 Subject: [PATCH 3/3] lncli: add command for baking new macaroons --- cmd/lncli/cmd_bake_macaroon.go | 182 +++++++++++++++++++++++++++++++++ cmd/lncli/main.go | 1 + 2 files changed, 183 insertions(+) create mode 100644 cmd/lncli/cmd_bake_macaroon.go diff --git a/cmd/lncli/cmd_bake_macaroon.go b/cmd/lncli/cmd_bake_macaroon.go new file mode 100644 index 00000000..5929a536 --- /dev/null +++ b/cmd/lncli/cmd_bake_macaroon.go @@ -0,0 +1,182 @@ +package main + +import ( + "context" + "encoding/hex" + "fmt" + "io/ioutil" + "net" + "strings" + + "github.com/lightningnetwork/lnd/lnrpc" + "github.com/lightningnetwork/lnd/macaroons" + "github.com/urfave/cli" + "gopkg.in/macaroon.v2" +) + +var bakeMacaroonCommand = cli.Command{ + Name: "bakemacaroon", + Category: "Macaroons", + Usage: "Bakes a new macaroon with the provided list of permissions " + + "and restrictions", + ArgsUsage: "[--save_to=] [--timeout=] [--ip_address=] permissions...", + Description: ` + Bake a new macaroon that grants the provided permissions and + optionally adds restrictions (timeout, IP address) to it. + + The new macaroon can either be shown on command line in hex serialized + format or it can be saved directly to a file using the --save_to + argument. + + A permission is a tuple of an entity and an action, separated by a + colon. Multiple operations can be added as arguments, for example: + + lncli bakemacaroon info:read invoices:write foo:bar + `, + Flags: []cli.Flag{ + cli.StringFlag{ + Name: "save_to", + Usage: "save the created macaroon to this file " + + "using the default binary format", + }, + cli.Uint64Flag{ + Name: "timeout", + Usage: "the number of seconds the macaroon will be " + + "valid before it times out", + }, + cli.StringFlag{ + Name: "ip_address", + Usage: "the IP address the macaroon will be bound to", + }, + }, + Action: actionDecorator(bakeMacaroon), +} + +func bakeMacaroon(ctx *cli.Context) error { + client, cleanUp := getClient(ctx) + defer cleanUp() + + // Show command help if no arguments. + if ctx.NArg() == 0 { + return cli.ShowCommandHelp(ctx, "bakemacaroon") + } + args := ctx.Args() + + var ( + savePath string + timeout int64 + ipAddress net.IP + parsedPermissions []*lnrpc.MacaroonPermission + err error + ) + + if ctx.String("save_to") != "" { + savePath = cleanAndExpandPath(ctx.String("save_to")) + } + + if ctx.IsSet("timeout") { + timeout = ctx.Int64("timeout") + if timeout <= 0 { + return fmt.Errorf("timeout must be greater than 0") + } + } + + if ctx.IsSet("ip_address") { + ipAddress = net.ParseIP(ctx.String("ip_address")) + if ipAddress == nil { + return fmt.Errorf("unable to parse ip_address: %s", + ctx.String("ip_address")) + } + } + + // A command line argument can't be an empty string. So we'll check each + // entry if it's a valid entity:action tuple. The content itself is + // validated server side. We just make sure we can parse it correctly. + for _, permission := range args { + tuple := strings.Split(permission, ":") + if len(tuple) != 2 { + return fmt.Errorf("unable to parse "+ + "permission tuple: %s", permission) + } + entity, action := tuple[0], tuple[1] + if entity == "" { + return fmt.Errorf("invalid permission [%s]. entity "+ + "cannot be empty", permission) + } + if action == "" { + return fmt.Errorf("invalid permission [%s]. action "+ + "cannot be empty", permission) + } + + // No we can assume that we have a formally valid entity:action + // tuple. The rest of the validation happens server side. + parsedPermissions = append( + parsedPermissions, &lnrpc.MacaroonPermission{ + Entity: entity, + Action: action, + }, + ) + } + + // Now we have gathered all the input we need and can do the actual + // RPC call. + req := &lnrpc.BakeMacaroonRequest{ + Permissions: parsedPermissions, + } + resp, err := client.BakeMacaroon(context.Background(), req) + if err != nil { + return err + } + + // Now we should have gotten a valid macaroon. Unmarshal it so we can + // add first-party caveats (if necessary) to it. + macBytes, err := hex.DecodeString(resp.Macaroon) + if err != nil { + return err + } + unmarshalMac := &macaroon.Macaroon{} + if err = unmarshalMac.UnmarshalBinary(macBytes); err != nil { + return err + } + + // Now apply the desired constraints to the macaroon. This will always + // create a new macaroon object, even if no constraints are added. + macConstraints := make([]macaroons.Constraint, 0) + if timeout > 0 { + macConstraints = append( + macConstraints, macaroons.TimeoutConstraint(timeout), + ) + } + if ipAddress != nil { + macConstraints = append( + macConstraints, + macaroons.IPLockConstraint(ipAddress.String()), + ) + } + constrainedMac, err := macaroons.AddConstraints( + unmarshalMac, macConstraints..., + ) + if err != nil { + return err + } + macBytes, err = constrainedMac.MarshalBinary() + if err != nil { + return err + } + + // Now we can output the result. We either write it binary serialized to + // a file or write to the standard output using hex encoding. + switch { + case savePath != "": + err = ioutil.WriteFile(savePath, macBytes, 0644) + if err != nil { + return err + } + fmt.Printf("Macaroon saved to %s\n", savePath) + + default: + fmt.Printf("%s\n", hex.EncodeToString(macBytes)) + } + + return nil +} diff --git a/cmd/lncli/main.go b/cmd/lncli/main.go index 384e3d7d..eb1f8507 100644 --- a/cmd/lncli/main.go +++ b/cmd/lncli/main.go @@ -298,6 +298,7 @@ func main() { exportChanBackupCommand, verifyChanBackupCommand, restoreChanBackupCommand, + bakeMacaroonCommand, } // Add any extra commands determined by build flags.