From 8dd71aab1928c590b4bb5864daa9139f179939e5 Mon Sep 17 00:00:00 2001 From: Lisa Kim Date: Fri, 29 Oct 2021 20:14:56 -0700 Subject: [PATCH 1/2] Return created date with new recovery codes (#8777) --- api/client/client.go | 4 +- api/client/proto/authservice.pb.go | 1341 +++++++++++++++------------- api/client/proto/authservice.proto | 30 +- lib/auth/accountrecovery.go | 21 +- lib/auth/accountrecovery_test.go | 24 +- lib/auth/auth_with_roles.go | 4 +- lib/auth/clt.go | 4 +- lib/auth/grpcserver.go | 4 +- lib/auth/password.go | 8 +- lib/web/apiserver.go | 9 +- lib/web/apiserver_test.go | 19 +- lib/web/ui/accountrecovery.go | 27 + 12 files changed, 801 insertions(+), 694 deletions(-) create mode 100644 lib/web/ui/accountrecovery.go diff --git a/api/client/client.go b/api/client/client.go index 0a346e86e0ce5..668d749d3d652 100644 --- a/api/client/client.go +++ b/api/client/client.go @@ -2153,7 +2153,7 @@ func (c *Client) CompleteAccountRecovery(ctx context.Context, req *proto.Complet } // CreateAccountRecoveryCodes creates new set of recovery codes for a user, replacing and invalidating any previously owned codes. -func (c *Client) CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.CreateAccountRecoveryCodesResponse, error) { +func (c *Client) CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) { res, err := c.grpc.CreateAccountRecoveryCodes(ctx, req, c.callOpts...) return res, trail.FromGRPC(err) } @@ -2166,7 +2166,7 @@ func (c *Client) GetAccountRecoveryToken(ctx context.Context, req *proto.GetAcco } // GetAccountRecoveryCodes returns the user in context their recovery codes resource without any secrets. -func (c *Client) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*types.RecoveryCodesV1, error) { +func (c *Client) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) { res, err := c.grpc.GetAccountRecoveryCodes(ctx, req, c.callOpts...) return res, trail.FromGRPC(err) } diff --git a/api/client/proto/authservice.pb.go b/api/client/proto/authservice.pb.go index f02c244d2abaf..0aa5d0cb3dbd6 100644 --- a/api/client/proto/authservice.pb.go +++ b/api/client/proto/authservice.pb.go @@ -8065,15 +8065,15 @@ func (m *ChangeUserAuthenticationRequest) GetNewMFARegisterResponse() *MFARegist type ChangeUserAuthenticationResponse struct { // WebSession is a user's web sesssion created from successful changing of password. WebSession *types.WebSessionV2 `protobuf:"bytes,1,opt,name=WebSession,proto3" json:"web_session"` - // RecoveryCodes are user's new recovery codes. Previous recovery codes become invalid. + // Recovery holds user's new recovery related fields. Previous recovery codes become invalid. // This field can be empty if a user does not meet the following // requirements to receive recovery codes: // - cloud feature is enabled // - username is in valid email format - RecoveryCodes []string `protobuf:"bytes,2,rep,name=RecoveryCodes,proto3" json:"recovery_codes,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Recovery *RecoveryCodes `protobuf:"bytes,2,opt,name=Recovery,proto3" json:"recovery,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ChangeUserAuthenticationResponse) Reset() { *m = ChangeUserAuthenticationResponse{} } @@ -8116,9 +8116,9 @@ func (m *ChangeUserAuthenticationResponse) GetWebSession() *types.WebSessionV2 { return nil } -func (m *ChangeUserAuthenticationResponse) GetRecoveryCodes() []string { +func (m *ChangeUserAuthenticationResponse) GetRecovery() *RecoveryCodes { if m != nil { - return m.RecoveryCodes + return m.Recovery } return nil } @@ -8425,34 +8425,31 @@ func (*CompleteAccountRecoveryRequest) XXX_OneofWrappers() []interface{} { } } -// CreateAccountRecoveryCodesRequest is a request to create new set of recovery codes for a user, -// replacing and invalidating any previously existing codes. Recovery codes can only be given to -// users who meet the following requirements: -// - cloud feature is enabled -// - username is in valid email format -type CreateAccountRecoveryCodesRequest struct { - // TokenID is the ID of a user token that will be used to verify this request. - // Token types accepted are: - // - Recovery approved token that is obtained with RPC VerifyAccountRecovery - // - Privilege token that is obtained with RPC CreatePrivilegeToken - TokenID string `protobuf:"bytes,1,opt,name=TokenID,proto3" json:"token_id"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` +// RecoveryCodes describes account recovery fields. Used as a RPC +// response or as part of a RPC response that requires any of these fields. +type RecoveryCodes struct { + // Codes holds the list of recovery phrase words. + // Field is only used when new recovery codes are generated and returned to user. + Codes []string `protobuf:"bytes,1,rep,name=Codes,proto3" json:"codes,omitempty"` + // Created is the date the recovery codes were created. + Created time.Time `protobuf:"bytes,2,opt,name=Created,proto3,stdtime" json:"created"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *CreateAccountRecoveryCodesRequest) Reset() { *m = CreateAccountRecoveryCodesRequest{} } -func (m *CreateAccountRecoveryCodesRequest) String() string { return proto.CompactTextString(m) } -func (*CreateAccountRecoveryCodesRequest) ProtoMessage() {} -func (*CreateAccountRecoveryCodesRequest) Descriptor() ([]byte, []int) { +func (m *RecoveryCodes) Reset() { *m = RecoveryCodes{} } +func (m *RecoveryCodes) String() string { return proto.CompactTextString(m) } +func (*RecoveryCodes) ProtoMessage() {} +func (*RecoveryCodes) Descriptor() ([]byte, []int) { return fileDescriptor_ce8bd90b12161215, []int{123} } -func (m *CreateAccountRecoveryCodesRequest) XXX_Unmarshal(b []byte) error { +func (m *RecoveryCodes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *CreateAccountRecoveryCodesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *RecoveryCodes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_CreateAccountRecoveryCodesRequest.Marshal(b, m, deterministic) + return xxx_messageInfo_RecoveryCodes.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -8462,47 +8459,60 @@ func (m *CreateAccountRecoveryCodesRequest) XXX_Marshal(b []byte, deterministic return b[:n], nil } } -func (m *CreateAccountRecoveryCodesRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_CreateAccountRecoveryCodesRequest.Merge(m, src) +func (m *RecoveryCodes) XXX_Merge(src proto.Message) { + xxx_messageInfo_RecoveryCodes.Merge(m, src) } -func (m *CreateAccountRecoveryCodesRequest) XXX_Size() int { +func (m *RecoveryCodes) XXX_Size() int { return m.Size() } -func (m *CreateAccountRecoveryCodesRequest) XXX_DiscardUnknown() { - xxx_messageInfo_CreateAccountRecoveryCodesRequest.DiscardUnknown(m) +func (m *RecoveryCodes) XXX_DiscardUnknown() { + xxx_messageInfo_RecoveryCodes.DiscardUnknown(m) } -var xxx_messageInfo_CreateAccountRecoveryCodesRequest proto.InternalMessageInfo +var xxx_messageInfo_RecoveryCodes proto.InternalMessageInfo -func (m *CreateAccountRecoveryCodesRequest) GetTokenID() string { +func (m *RecoveryCodes) GetCodes() []string { if m != nil { - return m.TokenID + return m.Codes } - return "" + return nil } -// CreateAccountRecoveryCodesResponse is the response to CreateAccountRecoveryCodesRequest. -type CreateAccountRecoveryCodesResponse struct { - // RecoveryCodes are user's new account recovery codes. Any previous codes are invalidated by - // the replacement of new codes. - RecoveryCodes []string `protobuf:"bytes,1,rep,name=RecoveryCodes,proto3" json:"recovery_codes"` +func (m *RecoveryCodes) GetCreated() time.Time { + if m != nil { + return m.Created + } + return time.Time{} +} + +// CreateAccountRecoveryCodesRequest is a request to create new set of recovery codes for a user, +// replacing and invalidating any previously existing codes. Recovery codes can only be given to +// users who meet the following requirements: +// - cloud feature is enabled +// - username is in valid email format +type CreateAccountRecoveryCodesRequest struct { + // TokenID is the ID of a user token that will be used to verify this request. + // Token types accepted are: + // - Recovery approved token that is obtained with RPC VerifyAccountRecovery + // - Privilege token that is obtained with RPC CreatePrivilegeToken + TokenID string `protobuf:"bytes,1,opt,name=TokenID,proto3" json:"token_id"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } -func (m *CreateAccountRecoveryCodesResponse) Reset() { *m = CreateAccountRecoveryCodesResponse{} } -func (m *CreateAccountRecoveryCodesResponse) String() string { return proto.CompactTextString(m) } -func (*CreateAccountRecoveryCodesResponse) ProtoMessage() {} -func (*CreateAccountRecoveryCodesResponse) Descriptor() ([]byte, []int) { +func (m *CreateAccountRecoveryCodesRequest) Reset() { *m = CreateAccountRecoveryCodesRequest{} } +func (m *CreateAccountRecoveryCodesRequest) String() string { return proto.CompactTextString(m) } +func (*CreateAccountRecoveryCodesRequest) ProtoMessage() {} +func (*CreateAccountRecoveryCodesRequest) Descriptor() ([]byte, []int) { return fileDescriptor_ce8bd90b12161215, []int{124} } -func (m *CreateAccountRecoveryCodesResponse) XXX_Unmarshal(b []byte) error { +func (m *CreateAccountRecoveryCodesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *CreateAccountRecoveryCodesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *CreateAccountRecoveryCodesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_CreateAccountRecoveryCodesResponse.Marshal(b, m, deterministic) + return xxx_messageInfo_CreateAccountRecoveryCodesRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -8512,23 +8522,23 @@ func (m *CreateAccountRecoveryCodesResponse) XXX_Marshal(b []byte, deterministic return b[:n], nil } } -func (m *CreateAccountRecoveryCodesResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_CreateAccountRecoveryCodesResponse.Merge(m, src) +func (m *CreateAccountRecoveryCodesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateAccountRecoveryCodesRequest.Merge(m, src) } -func (m *CreateAccountRecoveryCodesResponse) XXX_Size() int { +func (m *CreateAccountRecoveryCodesRequest) XXX_Size() int { return m.Size() } -func (m *CreateAccountRecoveryCodesResponse) XXX_DiscardUnknown() { - xxx_messageInfo_CreateAccountRecoveryCodesResponse.DiscardUnknown(m) +func (m *CreateAccountRecoveryCodesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateAccountRecoveryCodesRequest.DiscardUnknown(m) } -var xxx_messageInfo_CreateAccountRecoveryCodesResponse proto.InternalMessageInfo +var xxx_messageInfo_CreateAccountRecoveryCodesRequest proto.InternalMessageInfo -func (m *CreateAccountRecoveryCodesResponse) GetRecoveryCodes() []string { +func (m *CreateAccountRecoveryCodesRequest) GetTokenID() string { if m != nil { - return m.RecoveryCodes + return m.TokenID } - return nil + return "" } // GetAccountRecoveryTokenRequest is a request to return a user token resource after verifying that @@ -9020,8 +9030,8 @@ func init() { proto.RegisterType((*StartAccountRecoveryRequest)(nil), "proto.StartAccountRecoveryRequest") proto.RegisterType((*VerifyAccountRecoveryRequest)(nil), "proto.VerifyAccountRecoveryRequest") proto.RegisterType((*CompleteAccountRecoveryRequest)(nil), "proto.CompleteAccountRecoveryRequest") + proto.RegisterType((*RecoveryCodes)(nil), "proto.RecoveryCodes") proto.RegisterType((*CreateAccountRecoveryCodesRequest)(nil), "proto.CreateAccountRecoveryCodesRequest") - proto.RegisterType((*CreateAccountRecoveryCodesResponse)(nil), "proto.CreateAccountRecoveryCodesResponse") proto.RegisterType((*GetAccountRecoveryTokenRequest)(nil), "proto.GetAccountRecoveryTokenRequest") proto.RegisterType((*GetAccountRecoveryCodesRequest)(nil), "proto.GetAccountRecoveryCodesRequest") proto.RegisterType((*UserCredentials)(nil), "proto.UserCredentials") @@ -9033,519 +9043,520 @@ func init() { func init() { proto.RegisterFile("authservice.proto", fileDescriptor_ce8bd90b12161215) } var fileDescriptor_ce8bd90b12161215 = []byte{ - // 8181 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x7d, 0x4b, 0x70, 0x1b, 0xc9, - 0x92, 0x98, 0x1a, 0xfc, 0x81, 0xc9, 0x8f, 0xa0, 0x22, 0x29, 0x42, 0x10, 0x45, 0x48, 0xad, 0x99, - 0x79, 0x9a, 0xd9, 0x59, 0x6a, 0x86, 0x9c, 0x79, 0x33, 0x6f, 0xf4, 0x66, 0x66, 0x01, 0x90, 0x22, - 0x39, 0xa2, 0x28, 0x4e, 0x83, 0x82, 0x66, 0xdf, 0xbe, 0x35, 0x5e, 0x13, 0x28, 0x91, 0x1d, 0x04, - 0xd1, 0x98, 0xee, 0x86, 0x34, 0xb2, 0xc3, 0x11, 0xfe, 0xdb, 0xe1, 0x4f, 0xc4, 0x1e, 0xec, 0x83, - 0x4f, 0x76, 0x84, 0x6f, 0xb6, 0xc3, 0x27, 0x1f, 0x7c, 0xb1, 0x0f, 0x3e, 0xcd, 0x3a, 0xc2, 0xb1, - 0xbe, 0x38, 0x1c, 0xb1, 0x07, 0x78, 0xfd, 0x8e, 0x3c, 0x39, 0xc2, 0x9f, 0x08, 0x3f, 0x5f, 0x1c, - 0xf5, 0xed, 0xaa, 0xee, 0x2e, 0x80, 0x94, 0xe4, 0xb7, 0x17, 0x89, 0xc8, 0xaa, 0xcc, 0xca, 0xcc, - 0xca, 0xca, 0xca, 0xca, 0xaa, 0x04, 0xe0, 0x9a, 0xdb, 0x8f, 0x4e, 0x42, 0x1c, 0xbc, 0xf0, 0x5a, - 0x78, 0xad, 0x17, 0xf8, 0x91, 0x8f, 0x26, 0xe8, 0x7f, 0xa5, 0xc5, 0x63, 0xff, 0xd8, 0xa7, 0x7f, - 0xde, 0x27, 0x7f, 0xb1, 0xc6, 0xd2, 0xcd, 0x63, 0xdf, 0x3f, 0xee, 0xe0, 0xfb, 0xf4, 0xd3, 0x51, - 0xff, 0xf9, 0x7d, 0x7c, 0xd6, 0x8b, 0x5e, 0xf1, 0xc6, 0x72, 0xb2, 0x31, 0xf2, 0xce, 0x70, 0x18, - 0xb9, 0x67, 0x3d, 0xde, 0xe1, 0xb3, 0x63, 0x2f, 0x3a, 0xe9, 0x1f, 0xad, 0xb5, 0xfc, 0xb3, 0xfb, - 0xc7, 0x81, 0xfb, 0xc2, 0x8b, 0xdc, 0xc8, 0xf3, 0xbb, 0x6e, 0xe7, 0x7e, 0x84, 0x3b, 0xb8, 0xe7, - 0x07, 0xd1, 0x7d, 0xb7, 0xe7, 0xdd, 0x8f, 0x5e, 0xf5, 0x70, 0xc8, 0xfe, 0xe5, 0x88, 0xb5, 0xcb, - 0x20, 0xbe, 0xc4, 0x47, 0x44, 0xaa, 0xae, 0xfc, 0xe3, 0xb5, 0x88, 0x04, 0x6e, 0xaf, 0x87, 0x83, - 0xf8, 0x0f, 0x4e, 0xe4, 0xeb, 0xcb, 0x10, 0xc1, 0x2f, 0x70, 0x37, 0x12, 0xff, 0x31, 0x02, 0xf6, - 0xbf, 0x58, 0x84, 0x89, 0x2d, 0x02, 0x40, 0x9f, 0xc3, 0xf8, 0xe1, 0xab, 0x1e, 0x2e, 0x5a, 0xb7, - 0xad, 0x7b, 0xf3, 0xeb, 0x05, 0xd6, 0xbe, 0xf6, 0xa4, 0x87, 0x03, 0x4a, 0xb2, 0x8a, 0xce, 0x07, - 0xe5, 0x79, 0x42, 0xe8, 0x43, 0xff, 0xcc, 0x8b, 0xa8, 0xa2, 0x1d, 0x8a, 0x81, 0x9e, 0xc1, 0xbc, - 0x83, 0x43, 0xbf, 0x1f, 0xb4, 0xf0, 0x0e, 0x76, 0xdb, 0x38, 0x28, 0xe6, 0x6e, 0x5b, 0xf7, 0x66, - 0xd6, 0x97, 0xd6, 0x98, 0xd2, 0xf4, 0xc6, 0xea, 0xf5, 0xf3, 0x41, 0x19, 0x05, 0x1c, 0x16, 0x13, - 0xdb, 0xb9, 0xe2, 0x24, 0xc8, 0xa0, 0x5f, 0xc2, 0x5c, 0x0d, 0x07, 0x51, 0xa5, 0x1f, 0x9d, 0xf8, - 0x81, 0x17, 0xbd, 0x2a, 0x8e, 0x51, 0xba, 0xd7, 0x39, 0x5d, 0xad, 0xad, 0xb1, 0x5e, 0x5d, 0x39, - 0x1f, 0x94, 0x8b, 0x2d, 0x1c, 0x44, 0x4d, 0x57, 0x40, 0x35, 0xf2, 0x3a, 0x31, 0xf4, 0x1d, 0xcc, - 0xd6, 0x89, 0xba, 0x5a, 0x87, 0xfe, 0x29, 0xee, 0x86, 0xc5, 0x71, 0x8d, 0x69, 0xb5, 0xa9, 0xb1, - 0x5e, 0xbd, 0x79, 0x3e, 0x28, 0x2f, 0x87, 0x14, 0xd6, 0x8c, 0x28, 0x50, 0x23, 0xad, 0x51, 0x42, - 0xbf, 0x82, 0xf9, 0x83, 0xc0, 0x7f, 0xe1, 0x85, 0x9e, 0xdf, 0xa5, 0xa0, 0xe2, 0x04, 0xa5, 0xbd, - 0xcc, 0x69, 0xeb, 0x8d, 0x8d, 0xf5, 0xea, 0xad, 0xf3, 0x41, 0xf9, 0x46, 0x4f, 0x40, 0xd9, 0x00, - 0xba, 0x66, 0x74, 0x14, 0x74, 0x08, 0x33, 0xb5, 0x4e, 0x3f, 0x8c, 0x70, 0xb0, 0xef, 0x9e, 0xe1, - 0xe2, 0x24, 0x25, 0xbf, 0x28, 0xf4, 0x12, 0xb7, 0x34, 0xd6, 0xab, 0xa5, 0xf3, 0x41, 0xf9, 0x7a, - 0x8b, 0x81, 0x9a, 0x5d, 0xf7, 0x4c, 0x57, 0xb9, 0x4a, 0x06, 0x7d, 0x06, 0xe3, 0x4f, 0x43, 0x1c, - 0x14, 0xf3, 0x94, 0xdc, 0x1c, 0x27, 0x47, 0x40, 0x8d, 0x75, 0x36, 0xff, 0xfd, 0x10, 0x07, 0x1a, - 0x3e, 0x45, 0x20, 0x88, 0x8e, 0xdf, 0xc1, 0xc5, 0x69, 0x0d, 0x91, 0x80, 0x1a, 0x9f, 0x30, 0xc4, - 0xc0, 0xef, 0xe8, 0x03, 0x53, 0x04, 0xb4, 0x0b, 0xd3, 0x64, 0xe4, 0xb0, 0xe7, 0xb6, 0x70, 0x11, - 0x28, 0x76, 0x81, 0x63, 0x4b, 0x78, 0x75, 0xf9, 0x7c, 0x50, 0x5e, 0xe8, 0x8a, 0x8f, 0x1a, 0x95, - 0x18, 0x1b, 0x7d, 0x0d, 0x93, 0x75, 0x1c, 0xbc, 0xc0, 0x41, 0x71, 0x86, 0xd2, 0xb9, 0x2a, 0x26, - 0x92, 0x02, 0x1b, 0xeb, 0xd5, 0xc5, 0xf3, 0x41, 0xb9, 0x10, 0xd2, 0x4f, 0x1a, 0x0d, 0x8e, 0x46, - 0xac, 0xcd, 0xc1, 0x2f, 0x70, 0x10, 0xe2, 0xc3, 0x7e, 0xb7, 0x8b, 0x3b, 0xc5, 0x59, 0xcd, 0xda, - 0xb4, 0x36, 0x61, 0x6d, 0x01, 0x03, 0x36, 0x23, 0x0a, 0xd5, 0xad, 0x4d, 0x43, 0x40, 0x27, 0x50, - 0x60, 0x7f, 0xd5, 0xfc, 0x6e, 0x17, 0xb7, 0xc8, 0x92, 0x2a, 0xce, 0xd1, 0x01, 0x6e, 0xf0, 0x01, - 0x92, 0xcd, 0x8d, 0xf5, 0x6a, 0xf9, 0x7c, 0x50, 0xbe, 0xc9, 0x68, 0x37, 0x5b, 0xb2, 0x41, 0x1b, - 0x26, 0x45, 0x95, 0xc8, 0x51, 0x69, 0xb5, 0x70, 0x18, 0x3a, 0xf8, 0xfb, 0x3e, 0x0e, 0xa3, 0xe2, - 0xbc, 0x26, 0x87, 0xd6, 0xd6, 0xd8, 0x60, 0x72, 0xb8, 0x14, 0xd8, 0x0c, 0x18, 0x54, 0x97, 0x43, - 0x43, 0x40, 0x07, 0x00, 0x95, 0x5e, 0xaf, 0x8e, 0x43, 0x62, 0x8c, 0xc5, 0xab, 0x94, 0xf4, 0x02, - 0x27, 0xfd, 0x0c, 0x1f, 0xf1, 0x86, 0xc6, 0x7a, 0xf5, 0xc6, 0xf9, 0xa0, 0xbc, 0xe4, 0xf6, 0x7a, - 0xcd, 0x90, 0x81, 0x34, 0xa2, 0x0a, 0x0d, 0xa6, 0xf7, 0x33, 0x3f, 0xc2, 0xdc, 0x14, 0x8b, 0x85, - 0x84, 0xde, 0x95, 0x36, 0xc1, 0x6f, 0x40, 0x81, 0x4d, 0x6e, 0xd6, 0x49, 0xbd, 0x2b, 0x08, 0x64, - 0x2d, 0x6e, 0xba, 0x91, 0x7b, 0xe4, 0x86, 0x98, 0x9b, 0xc7, 0x35, 0x6d, 0x2d, 0xea, 0x8d, 0x8d, - 0x0d, 0xb6, 0x16, 0xdb, 0x1c, 0xda, 0xcc, 0xb0, 0x97, 0x04, 0x3d, 0xa2, 0x91, 0x58, 0xf0, 0x22, - 0x1a, 0xa1, 0x91, 0x97, 0xf8, 0x28, 0x5b, 0x23, 0x71, 0x57, 0xb4, 0x03, 0xf9, 0x67, 0xf8, 0x88, - 0x79, 0x8e, 0x05, 0x4a, 0xef, 0x5a, 0x4c, 0x8f, 0xf9, 0x8c, 0x0d, 0xb6, 0x2a, 0x08, 0xb5, 0xb4, - 0xb7, 0x90, 0xd8, 0xe8, 0x6f, 0x5a, 0xb0, 0x2c, 0x56, 0x38, 0x8e, 0x5e, 0xfa, 0xc1, 0xa9, 0xd7, - 0x3d, 0xae, 0xf9, 0xdd, 0xe7, 0xde, 0x71, 0x71, 0x91, 0x52, 0xbe, 0x9d, 0x70, 0x1a, 0x89, 0x5e, - 0x8d, 0xf5, 0xea, 0x4f, 0xce, 0x07, 0xe5, 0xbb, 0xd2, 0x81, 0xc8, 0x76, 0x62, 0x90, 0xcf, 0xbd, - 0x63, 0x6d, 0x60, 0xd3, 0x58, 0xe8, 0xaf, 0x5a, 0x70, 0x9d, 0x4b, 0xe7, 0xe0, 0x96, 0x1f, 0xb4, - 0x63, 0x36, 0x96, 0x28, 0x1b, 0x65, 0xb9, 0x5a, 0xb3, 0x3a, 0x35, 0xd6, 0xab, 0xef, 0x9d, 0x0f, - 0xca, 0x36, 0x57, 0x5c, 0x33, 0x10, 0xcd, 0x59, 0x4c, 0x18, 0x06, 0x22, 0x96, 0x40, 0x9c, 0xff, - 0x41, 0x80, 0x9f, 0xe3, 0x00, 0x77, 0x5b, 0xb8, 0x78, 0x5d, 0xb3, 0x04, 0xbd, 0x51, 0x78, 0x65, - 0xb2, 0x95, 0x34, 0x7b, 0x12, 0xac, 0x5b, 0x82, 0x8e, 0x82, 0xbe, 0x07, 0xc4, 0x15, 0x50, 0xe9, - 0xb7, 0xbd, 0x88, 0x0b, 0xb8, 0x4c, 0x47, 0xb9, 0xa9, 0xeb, 0x59, 0xe9, 0xd0, 0x58, 0xaf, 0xda, - 0xe7, 0x83, 0xf2, 0xaa, 0x50, 0xb1, 0x4b, 0x9a, 0xb2, 0x04, 0xcb, 0x20, 0x4e, 0x3c, 0xef, 0x9e, - 0xdf, 0x3a, 0x2d, 0x16, 0x35, 0xcf, 0x4b, 0x40, 0xc2, 0x65, 0x77, 0xfc, 0xd6, 0xa9, 0xee, 0x79, - 0x49, 0x2b, 0x8a, 0x60, 0x81, 0xcf, 0x92, 0x83, 0xc3, 0x28, 0xf0, 0xa8, 0xef, 0x08, 0x8b, 0x37, - 0x28, 0x9d, 0x15, 0xe1, 0x83, 0xd3, 0x3d, 0x1a, 0x9f, 0x30, 0x6e, 0xb9, 0x21, 0x34, 0x03, 0xa5, - 0x4d, 0x1b, 0x26, 0x8b, 0x3c, 0xfa, 0xcb, 0xb0, 0xf4, 0xcc, 0xeb, 0xb6, 0xfd, 0x97, 0xe1, 0x26, - 0x0e, 0x4f, 0x23, 0xbf, 0x57, 0x67, 0xc1, 0x5e, 0xb1, 0x44, 0xc7, 0x5d, 0x15, 0x66, 0x9e, 0xd5, - 0xa7, 0xb1, 0x51, 0x7d, 0xf7, 0x7c, 0x50, 0xbe, 0xf3, 0x92, 0x35, 0x36, 0xdb, 0xac, 0xb5, 0xc9, - 0xe3, 0x45, 0x6d, 0xf0, 0xec, 0x51, 0x88, 0x09, 0xe8, 0x0d, 0xc5, 0x9b, 0x9a, 0x09, 0xe8, 0x8d, - 0xc2, 0x19, 0x24, 0x06, 0xd4, 0x4d, 0x40, 0x47, 0x41, 0xdb, 0x90, 0x17, 0xee, 0xa1, 0xb8, 0xa2, - 0x2d, 0x5d, 0x01, 0x6e, 0x6c, 0xb0, 0x08, 0x48, 0xb8, 0x18, 0x7d, 0xe5, 0x8a, 0x5e, 0x68, 0x0f, - 0xa6, 0xa9, 0x8f, 0xa4, 0x2e, 0xeb, 0x16, 0xa5, 0x84, 0x84, 0xa1, 0x0a, 0x78, 0x63, 0xa3, 0x5a, - 0x3c, 0x1f, 0x94, 0x17, 0x99, 0x97, 0x4d, 0x39, 0xaa, 0x98, 0x00, 0xda, 0x80, 0xb1, 0x4a, 0xaf, - 0x57, 0x5c, 0xa5, 0x74, 0x66, 0x63, 0x3a, 0x8d, 0x8d, 0xea, 0xb5, 0xf3, 0x41, 0x79, 0xce, 0xed, - 0xe9, 0x62, 0x91, 0xde, 0x55, 0x80, 0xbc, 0x08, 0xc8, 0xbe, 0x19, 0xcf, 0x4f, 0x15, 0xf2, 0xf6, - 0x0e, 0x4c, 0x3c, 0x73, 0xa3, 0xd6, 0x09, 0xfa, 0x1a, 0x26, 0x1e, 0x79, 0xdd, 0x76, 0x58, 0xb4, - 0x6e, 0x8f, 0xd1, 0x3d, 0x9b, 0x45, 0x8b, 0xb4, 0x91, 0x34, 0x54, 0x97, 0x7f, 0x1c, 0x94, 0xaf, - 0x9c, 0x0f, 0xca, 0x57, 0x4f, 0x49, 0x37, 0x25, 0x64, 0x64, 0x78, 0xf6, 0xbf, 0xce, 0xc1, 0xb4, - 0xec, 0x8d, 0x56, 0x60, 0x9c, 0xfc, 0x4f, 0x63, 0xcf, 0xe9, 0x6a, 0xfe, 0x7c, 0x50, 0x1e, 0x27, - 0x78, 0x0e, 0x85, 0xa2, 0x75, 0x98, 0xd9, 0xf3, 0xdd, 0x76, 0x1d, 0xb7, 0x02, 0x1c, 0x85, 0x34, - 0xb8, 0xcc, 0x57, 0x0b, 0xe7, 0x83, 0xf2, 0x6c, 0xc7, 0x77, 0xdb, 0xcd, 0x90, 0xc1, 0x1d, 0xb5, - 0x13, 0xa1, 0x48, 0x23, 0xa3, 0xb1, 0x98, 0x22, 0x89, 0x20, 0x1c, 0x0a, 0x45, 0xdf, 0xc0, 0xe4, - 0x43, 0xaf, 0x43, 0xf6, 0x9a, 0x71, 0xca, 0xff, 0x4a, 0x92, 0xff, 0x35, 0xd6, 0xbc, 0xd5, 0x8d, - 0x82, 0x57, 0x2c, 0x70, 0x78, 0x4e, 0x01, 0x8a, 0x20, 0x9c, 0x02, 0xfa, 0x08, 0xa6, 0xea, 0xfd, - 0x23, 0xca, 0xfe, 0x04, 0x1d, 0x8c, 0xce, 0x6e, 0xd8, 0x3f, 0x6a, 0x12, 0x11, 0x14, 0x04, 0xd1, - 0xad, 0xf4, 0x33, 0x98, 0x51, 0xc8, 0xa3, 0x02, 0x8c, 0x9d, 0xe2, 0x57, 0x4c, 0x76, 0x87, 0xfc, - 0x89, 0x16, 0x61, 0xe2, 0x85, 0xdb, 0xe9, 0x63, 0x2a, 0xea, 0xb4, 0xc3, 0x3e, 0x7c, 0x91, 0xfb, - 0xdc, 0xb2, 0xff, 0xd8, 0x82, 0x09, 0x12, 0xc5, 0x86, 0xe8, 0x2e, 0x8c, 0xd5, 0xeb, 0x3b, 0x14, - 0x6b, 0x96, 0xcd, 0x61, 0x18, 0x9e, 0x28, 0xa3, 0x91, 0x56, 0xd2, 0xe9, 0x70, 0xaf, 0x4e, 0xc9, - 0xf0, 0x4e, 0x51, 0x47, 0x9d, 0x0c, 0xd2, 0x8a, 0xbe, 0x00, 0x38, 0xdc, 0xab, 0xd7, 0x2a, 0x94, - 0x6e, 0x71, 0xec, 0xf6, 0xd8, 0xbd, 0x59, 0x16, 0x34, 0x46, 0x9d, 0xb0, 0xd9, 0x72, 0x9b, 0x24, - 0xa2, 0x56, 0x91, 0x94, 0xde, 0x04, 0xb7, 0x5e, 0xdf, 0x11, 0xb8, 0xe3, 0x31, 0x6e, 0x18, 0x9e, - 0x64, 0xe2, 0xc6, 0xbd, 0xed, 0x3f, 0x19, 0x87, 0xc2, 0x8e, 0x1f, 0x46, 0xf4, 0x93, 0x08, 0x2f, - 0xee, 0xc2, 0x24, 0x81, 0xed, 0x6e, 0x72, 0x5b, 0x98, 0x39, 0x1f, 0x94, 0xa7, 0x4e, 0xfc, 0x30, - 0x6a, 0x7a, 0x6d, 0x87, 0x37, 0xa1, 0xf7, 0x21, 0xbf, 0xef, 0xb7, 0x31, 0x9d, 0x60, 0xaa, 0xa2, - 0xea, 0xdc, 0xf9, 0xa0, 0x3c, 0xdd, 0xf5, 0xdb, 0x98, 0x46, 0xb8, 0x8e, 0x6c, 0x46, 0x0d, 0x1e, - 0x99, 0x32, 0x3b, 0xa8, 0x12, 0x3b, 0x20, 0xa1, 0xe8, 0x6f, 0x06, 0xe5, 0x9f, 0x5e, 0xe2, 0xe8, - 0xb4, 0x56, 0x7f, 0x15, 0x46, 0xf8, 0x8c, 0x50, 0xe2, 0x81, 0xeb, 0x33, 0x58, 0xac, 0xb4, 0xdb, - 0x1e, 0xc3, 0x38, 0x08, 0xbc, 0x6e, 0xcb, 0xeb, 0xb9, 0x1d, 0xa6, 0x82, 0xe9, 0xea, 0xdd, 0xf3, - 0x41, 0xb9, 0xec, 0xca, 0xf6, 0x66, 0x4f, 0x76, 0x50, 0x74, 0x91, 0x49, 0x00, 0x6d, 0x40, 0x7e, - 0x73, 0xbf, 0x4e, 0xc3, 0xda, 0xe2, 0x04, 0x25, 0x46, 0x37, 0xfa, 0x76, 0x37, 0xa4, 0xa2, 0xa9, - 0x04, 0x64, 0x47, 0xf4, 0x53, 0x98, 0x3d, 0xe8, 0x1f, 0x75, 0xbc, 0xd6, 0xe1, 0x5e, 0xfd, 0x11, - 0x7e, 0x45, 0xcf, 0x03, 0xb3, 0xcc, 0xfd, 0xf7, 0x28, 0xbc, 0x49, 0xe6, 0xf2, 0x14, 0xbf, 0x72, - 0xb4, 0x7e, 0x31, 0x5e, 0xbd, 0xbe, 0x43, 0xf0, 0xa6, 0x52, 0x78, 0x64, 0x1e, 0x15, 0x3c, 0xd6, - 0x0f, 0xdd, 0x07, 0x60, 0x51, 0x56, 0xa5, 0xdd, 0x66, 0xc7, 0x85, 0xe9, 0xea, 0xd5, 0xf3, 0x41, - 0x79, 0x86, 0xc7, 0x65, 0x6e, 0xbb, 0x1d, 0x38, 0x4a, 0x17, 0x54, 0x83, 0xbc, 0xe3, 0x33, 0x05, - 0xf3, 0x43, 0xc2, 0x55, 0x79, 0x48, 0x60, 0x60, 0x7e, 0x2c, 0xe4, 0x9f, 0x54, 0x29, 0x45, 0x0f, - 0x54, 0x86, 0xa9, 0x7d, 0xbf, 0xe6, 0xb6, 0x4e, 0xd8, 0x51, 0x21, 0x5f, 0x9d, 0x38, 0x1f, 0x94, - 0xad, 0xdf, 0x75, 0x04, 0xd4, 0xfe, 0x93, 0x49, 0x28, 0x90, 0xf3, 0x88, 0x66, 0x51, 0x1f, 0xc2, - 0x34, 0xe3, 0xfd, 0x11, 0x5f, 0x64, 0xb3, 0xd5, 0xf9, 0xf3, 0x41, 0x19, 0xb8, 0x80, 0x44, 0xb8, - 0xb8, 0x03, 0xba, 0x07, 0x79, 0x42, 0xa1, 0x1b, 0x9b, 0xd6, 0xec, 0xf9, 0xa0, 0x9c, 0xef, 0x73, - 0x98, 0x23, 0x5b, 0x51, 0x1d, 0xa6, 0xb6, 0x7e, 0xe8, 0x79, 0x01, 0x0e, 0xf9, 0xb1, 0xb4, 0xb4, - 0xc6, 0x12, 0x0e, 0x6b, 0x22, 0xe1, 0xb0, 0x76, 0x28, 0x12, 0x0e, 0xd5, 0x5b, 0xdc, 0x1d, 0x5e, - 0xc3, 0x0c, 0x25, 0x96, 0xef, 0x8f, 0xfe, 0x6b, 0xd9, 0x72, 0x04, 0x25, 0xf4, 0x21, 0x4c, 0x3e, - 0xf4, 0x83, 0x33, 0x37, 0xa2, 0xa7, 0xd1, 0x69, 0xee, 0x7a, 0x28, 0x44, 0x73, 0x3d, 0x14, 0x82, - 0x1e, 0xc2, 0xbc, 0xe3, 0xf7, 0x23, 0x7c, 0xe8, 0x8b, 0xd0, 0x99, 0x79, 0xa0, 0xd5, 0xf3, 0x41, - 0xb9, 0x14, 0x90, 0x96, 0x66, 0xe4, 0xa7, 0x83, 0x64, 0x27, 0x81, 0x85, 0xb6, 0x60, 0x5e, 0x0b, - 0xf2, 0xc3, 0xe2, 0x24, 0xb5, 0x3c, 0x16, 0x00, 0x69, 0x47, 0x03, 0xd5, 0xfe, 0x12, 0x48, 0x68, - 0x1f, 0xae, 0x3d, 0xea, 0x1f, 0xe1, 0xa0, 0x8b, 0x23, 0x1c, 0x0a, 0x8e, 0xa6, 0x28, 0x47, 0xb7, - 0xcf, 0x07, 0xe5, 0x95, 0x53, 0xd9, 0x98, 0xc1, 0x53, 0x1a, 0x15, 0x61, 0xb8, 0xca, 0x19, 0x95, - 0x5b, 0x6a, 0x9e, 0x1f, 0x0d, 0x98, 0xbb, 0x4e, 0xb4, 0x56, 0xef, 0x72, 0x2d, 0xdf, 0x94, 0xb2, - 0xa7, 0x37, 0x59, 0x27, 0x49, 0x93, 0xac, 0x38, 0xe9, 0x4d, 0xa6, 0x29, 0xb7, 0xec, 0xc0, 0x29, - 0xbc, 0x89, 0x6a, 0x8b, 0xd2, 0xaf, 0xec, 0xc1, 0xc4, 0xd3, 0xd0, 0x3d, 0x66, 0x96, 0x38, 0xbf, - 0x7e, 0x87, 0x73, 0x94, 0xb4, 0x3e, 0x9a, 0xa3, 0xa0, 0x1d, 0xab, 0x0b, 0x64, 0x37, 0xec, 0x93, - 0x3f, 0xd5, 0xdd, 0x90, 0xb6, 0xa1, 0x6f, 0x01, 0x38, 0x57, 0x64, 0x97, 0x9e, 0xe1, 0x71, 0x83, - 0x26, 0x24, 0xd9, 0x90, 0x57, 0xb9, 0x7c, 0xd7, 0xa5, 0x7c, 0xda, 0xbe, 0xed, 0x28, 0x44, 0xec, - 0x4d, 0x98, 0x96, 0x63, 0xa3, 0x29, 0x18, 0xab, 0x74, 0x3a, 0x85, 0x2b, 0xe4, 0x8f, 0x7a, 0x7d, - 0xa7, 0x60, 0xa1, 0x79, 0x80, 0x58, 0xe1, 0x85, 0x1c, 0x9a, 0x8d, 0xe3, 0x96, 0xc2, 0x18, 0xed, - 0xdf, 0xeb, 0x15, 0xc6, 0xed, 0xff, 0x62, 0xa5, 0xe6, 0x80, 0x6c, 0xc7, 0x3c, 0x9e, 0xa2, 0x2a, - 0x63, 0x7e, 0x9a, 0x6e, 0xc7, 0x3c, 0x12, 0x63, 0x3e, 0x58, 0xed, 0x44, 0x96, 0xd5, 0x01, 0x91, - 0xa6, 0xe5, 0x77, 0xd4, 0x65, 0xd5, 0xe3, 0x30, 0x47, 0xb6, 0xa2, 0x75, 0x65, 0x01, 0x8e, 0xc5, - 0xfb, 0xa9, 0x58, 0x80, 0xea, 0x64, 0xc8, 0xa5, 0xb8, 0xae, 0x04, 0x5d, 0xe3, 0x31, 0x4e, 0xc6, - 0xe4, 0xcb, 0x7e, 0xf6, 0xff, 0xb1, 0x54, 0x9d, 0xcb, 0x78, 0xc1, 0xca, 0x8c, 0x17, 0x3e, 0x84, - 0x69, 0x7e, 0xa8, 0xd8, 0xdd, 0xe4, 0xfc, 0x53, 0x1f, 0x22, 0xce, 0x23, 0x5e, 0xdb, 0x89, 0x3b, - 0x10, 0xef, 0xc8, 0x1c, 0x0a, 0xf5, 0x8e, 0x63, 0xb1, 0x77, 0xe4, 0x2e, 0x87, 0x79, 0xc7, 0xb8, - 0x0b, 0xd1, 0xa8, 0x9a, 0xcd, 0x19, 0x8f, 0x35, 0xaa, 0xe6, 0x6d, 0xf4, 0x5c, 0xcd, 0x17, 0x00, - 0x95, 0x67, 0x75, 0xb2, 0x17, 0x55, 0x9c, 0x7d, 0xbe, 0xee, 0xe9, 0xce, 0xeb, 0xbe, 0x0c, 0x9b, - 0x64, 0x8b, 0x6b, 0xba, 0x81, 0xea, 0x46, 0x95, 0xde, 0x76, 0x07, 0xe6, 0xb7, 0x71, 0x44, 0xd4, - 0x27, 0x9c, 0xe4, 0x70, 0xf1, 0x7f, 0x0e, 0x33, 0xcf, 0xbc, 0xe8, 0x44, 0x0f, 0xc0, 0xe8, 0x60, - 0x2f, 0xbd, 0xe8, 0x44, 0x04, 0x60, 0xca, 0x60, 0x6a, 0x77, 0x7b, 0x0b, 0xae, 0xf2, 0xd1, 0xa4, - 0x4f, 0x5e, 0xd7, 0x09, 0x5a, 0x71, 0x44, 0xa7, 0x12, 0xd4, 0xc9, 0xe0, 0xa4, 0x93, 0x42, 0xf5, - 0x94, 0xdb, 0x62, 0xd1, 0xa8, 0x29, 0xd3, 0x41, 0x57, 0x60, 0xc2, 0x9d, 0x25, 0x9d, 0x98, 0xfd, - 0x14, 0xe6, 0x0e, 0x3a, 0xfd, 0x63, 0xaf, 0x4b, 0x2c, 0xa5, 0x8e, 0xbf, 0x47, 0x9b, 0x00, 0x31, - 0x80, 0x8f, 0x20, 0x8e, 0xf7, 0x71, 0x43, 0x63, 0x83, 0x4f, 0x31, 0x85, 0x50, 0xbf, 0xe3, 0x28, - 0x78, 0xf6, 0xdf, 0x1d, 0x03, 0xc4, 0xc7, 0xa8, 0x47, 0x6e, 0x84, 0xeb, 0x38, 0x22, 0x2e, 0xee, - 0x3a, 0xe4, 0x64, 0xa8, 0x33, 0x79, 0x3e, 0x28, 0xe7, 0xbc, 0xb6, 0x93, 0xdb, 0xdd, 0x44, 0x9f, - 0xc0, 0x04, 0xed, 0x46, 0x75, 0x3d, 0x2f, 0xc7, 0x53, 0x29, 0x54, 0xa7, 0xcf, 0x07, 0xe5, 0x89, - 0x90, 0xfc, 0xe9, 0xb0, 0xce, 0xe8, 0x53, 0x98, 0xde, 0xc4, 0x1d, 0x7c, 0xec, 0x46, 0xbe, 0xb0, - 0x3b, 0x16, 0x3c, 0x08, 0xa0, 0x32, 0x45, 0x71, 0x4f, 0xb2, 0xe9, 0x38, 0xd8, 0x0d, 0xfd, 0xae, - 0xba, 0xe9, 0x04, 0x14, 0xa2, 0x6e, 0x3a, 0xac, 0x0f, 0xfa, 0x47, 0x16, 0xcc, 0x54, 0xba, 0x5d, - 0xbe, 0x29, 0x87, 0x3c, 0xb5, 0xb9, 0xb4, 0x26, 0x33, 0xd3, 0x7b, 0xee, 0x11, 0xee, 0x34, 0x48, - 0xc8, 0x1a, 0x56, 0x7f, 0x49, 0x3c, 0xd6, 0x9f, 0x0e, 0xca, 0x0f, 0x5e, 0x27, 0xd9, 0xbd, 0x76, - 0x18, 0xb8, 0x5e, 0x14, 0xd2, 0x3c, 0x52, 0x3c, 0xa0, 0x6a, 0x66, 0x0a, 0x1f, 0xe8, 0x7d, 0x98, - 0x20, 0xf6, 0x2d, 0xf6, 0x2e, 0x3a, 0xd9, 0x64, 0x1d, 0x68, 0x87, 0x0f, 0xda, 0xc3, 0xbe, 0x0b, - 0xd3, 0x5c, 0x93, 0xbb, 0x9b, 0xa6, 0x29, 0xb0, 0x37, 0xe1, 0x16, 0x8d, 0x3c, 0x30, 0xb1, 0x5c, - 0x9a, 0x4d, 0xe1, 0x96, 0x18, 0x87, 0xaa, 0x53, 0x14, 0x2c, 0xb1, 0xe9, 0x84, 0xd0, 0x6c, 0x8c, - 0x23, 0x5a, 0xec, 0x1a, 0xac, 0x6c, 0xe3, 0xc8, 0xc1, 0x21, 0x8e, 0x0e, 0xdc, 0x30, 0x7c, 0xe9, - 0x07, 0x6d, 0xda, 0x74, 0x29, 0x22, 0x7f, 0xc3, 0x82, 0x72, 0x2d, 0xc0, 0x64, 0xa6, 0x8d, 0x84, - 0x86, 0xaf, 0xe0, 0x15, 0x9e, 0xdc, 0xcf, 0xc5, 0xad, 0x44, 0xd7, 0x3c, 0x81, 0xff, 0x2e, 0x8c, - 0x1d, 0x1e, 0xee, 0x51, 0x8b, 0x19, 0xa3, 0x8a, 0x1b, 0x8b, 0xa2, 0xce, 0x6f, 0x06, 0xe5, 0xfc, - 0x66, 0x9f, 0x25, 0xff, 0x1d, 0xd2, 0x6e, 0xcf, 0xc1, 0xcc, 0x81, 0xd7, 0x3d, 0xe6, 0x23, 0xda, - 0x7f, 0x2f, 0x07, 0xb3, 0xec, 0x73, 0xd8, 0xf3, 0xbb, 0x6c, 0x63, 0x50, 0xdd, 0x98, 0x75, 0x11, - 0x37, 0xf6, 0x39, 0xcc, 0xf1, 0xb3, 0x2c, 0x0e, 0x68, 0xfe, 0x8c, 0x71, 0x48, 0x43, 0x50, 0x76, - 0xa4, 0x6d, 0xbe, 0x60, 0x2d, 0x8e, 0xde, 0x11, 0xed, 0xc1, 0x3c, 0x03, 0x3c, 0xc4, 0x6e, 0xd4, - 0x8f, 0xc3, 0xb0, 0xab, 0x7c, 0xdf, 0x14, 0x60, 0x66, 0x09, 0x9c, 0xd6, 0x73, 0x0e, 0x74, 0x12, - 0xb8, 0xe8, 0x6b, 0xb8, 0x7a, 0x10, 0xf8, 0x3f, 0xbc, 0x52, 0x1c, 0x37, 0x5b, 0x0c, 0x4b, 0x24, - 0x6a, 0xeb, 0x91, 0xa6, 0xa6, 0xea, 0xbe, 0x93, 0xbd, 0xed, 0xff, 0x9b, 0x83, 0xbc, 0xa4, 0xb6, - 0xa6, 0xee, 0xae, 0xdc, 0xbd, 0xd1, 0x0d, 0x23, 0x0e, 0x81, 0x1c, 0xa5, 0x07, 0xba, 0xc1, 0x8e, - 0xe7, 0xcc, 0xb1, 0x4e, 0x91, 0x09, 0x70, 0x7b, 0x3d, 0x7a, 0x08, 0x27, 0xe6, 0xb9, 0x59, 0xa5, - 0xa2, 0xe5, 0x99, 0x79, 0xb6, 0x8f, 0x9c, 0xdc, 0x66, 0x95, 0xcc, 0xe8, 0x93, 0xdd, 0xcd, 0x1a, - 0xe5, 0x32, 0xcf, 0x66, 0xd4, 0xf7, 0xda, 0x2d, 0x87, 0x42, 0x49, 0x6b, 0xbd, 0xf2, 0x78, 0x8f, - 0x2e, 0x4e, 0xde, 0x1a, 0xba, 0x67, 0x1d, 0x87, 0x42, 0xd1, 0x03, 0xe1, 0x38, 0x6b, 0x7e, 0x37, - 0x0a, 0xfc, 0x4e, 0x48, 0x0f, 0x0c, 0x79, 0xcd, 0x41, 0xb6, 0x78, 0x93, 0x93, 0xe8, 0x8a, 0x9e, - 0xc1, 0x72, 0xa5, 0xfd, 0xc2, 0xed, 0xb6, 0x70, 0x9b, 0xb5, 0x3c, 0xf3, 0x83, 0xd3, 0xe7, 0x1d, - 0xff, 0x65, 0x48, 0x63, 0xbd, 0x3c, 0x8f, 0x1a, 0x79, 0x97, 0x26, 0x27, 0xf7, 0x52, 0x74, 0x72, - 0x4c, 0xd8, 0xa8, 0x0c, 0x13, 0xb5, 0x8e, 0xdf, 0x6f, 0xd3, 0x20, 0x2f, 0xcf, 0x16, 0x42, 0x8b, - 0x00, 0x1c, 0x06, 0x27, 0x5a, 0xda, 0xa9, 0x3f, 0xa6, 0x31, 0x1a, 0xd7, 0xd2, 0x49, 0x78, 0xe6, - 0x10, 0x98, 0xfd, 0x31, 0x5c, 0x23, 0xfe, 0x8c, 0x2d, 0xd6, 0x0b, 0x2d, 0x09, 0xfb, 0x00, 0xa0, - 0x8e, 0xcf, 0xdc, 0xde, 0x89, 0x4f, 0x66, 0xac, 0xaa, 0x7e, 0xe2, 0x5e, 0x1e, 0xc9, 0x9c, 0x24, - 0x6f, 0x68, 0x6c, 0x88, 0x6d, 0x5f, 0xf4, 0x74, 0x14, 0x2c, 0xfb, 0x3f, 0xe6, 0x00, 0xd1, 0xdc, - 0x5c, 0x3d, 0x0a, 0xb0, 0x7b, 0x26, 0xd8, 0xf8, 0x19, 0xcc, 0xb2, 0xc5, 0xcb, 0xc0, 0x94, 0x1d, - 0xb2, 0x85, 0x30, 0x33, 0x55, 0x9b, 0x76, 0xae, 0x38, 0x5a, 0x57, 0x82, 0xea, 0xe0, 0xb0, 0x7f, - 0x26, 0x50, 0x73, 0x1a, 0xaa, 0xda, 0x44, 0x50, 0xd5, 0xcf, 0xe8, 0x6b, 0x98, 0xaf, 0xf9, 0x67, - 0x3d, 0xa2, 0x13, 0x8e, 0x3c, 0xc6, 0x1d, 0x35, 0x1f, 0x57, 0x6b, 0xdc, 0xb9, 0xe2, 0x24, 0xba, - 0xa3, 0x7d, 0x58, 0x78, 0xd8, 0xe9, 0x87, 0x27, 0x95, 0x6e, 0xbb, 0xd6, 0xf1, 0x43, 0x41, 0x65, - 0x9c, 0x9f, 0x75, 0xf8, 0x22, 0x4b, 0xf7, 0xd8, 0xb9, 0xe2, 0x64, 0x21, 0xa2, 0x77, 0xf9, 0x45, - 0x23, 0xdf, 0x30, 0xe6, 0xd6, 0xf8, 0x3d, 0xe4, 0x93, 0x2e, 0x7e, 0xf2, 0x7c, 0xe7, 0x8a, 0xc3, - 0x5a, 0xab, 0xd3, 0x30, 0x25, 0x1c, 0xcc, 0x7d, 0xb8, 0xa6, 0xa8, 0x93, 0x6c, 0x71, 0xfd, 0x10, - 0x95, 0x20, 0xff, 0xb4, 0xd7, 0xf1, 0xdd, 0xb6, 0xf0, 0x98, 0x8e, 0xfc, 0x6c, 0x7f, 0xa8, 0x6b, - 0x1a, 0xad, 0xa8, 0x61, 0x1b, 0xeb, 0x1c, 0x03, 0xec, 0x1d, 0x5d, 0xb9, 0xc3, 0x7b, 0x6b, 0xe3, - 0xe6, 0x12, 0xe3, 0x16, 0x92, 0xba, 0xb6, 0x97, 0x32, 0x95, 0x67, 0x3f, 0xa2, 0xbb, 0x41, 0xa5, - 0xd7, 0xeb, 0x78, 0x2d, 0xea, 0x58, 0x99, 0x17, 0x92, 0x5b, 0xca, 0xef, 0xa8, 0xd7, 0x61, 0x96, - 0x92, 0xd9, 0x10, 0x40, 0xe5, 0xc2, 0xcb, 0xfe, 0x05, 0xdc, 0x32, 0x10, 0xe3, 0xfe, 0xf8, 0x67, - 0x30, 0xc5, 0x41, 0x09, 0x83, 0x56, 0x13, 0x88, 0x34, 0xc1, 0x12, 0x72, 0x4c, 0xd1, 0xdf, 0xfe, - 0x0e, 0x56, 0x9f, 0xf6, 0x42, 0x1c, 0xa4, 0xc9, 0x0b, 0x56, 0x7f, 0x2a, 0xaf, 0xdb, 0x2c, 0x63, - 0x72, 0x12, 0xce, 0x07, 0xe5, 0x49, 0x46, 0x5b, 0xdc, 0xb2, 0xd9, 0x7f, 0x64, 0xc1, 0x2a, 0x5b, - 0xaa, 0x46, 0xd2, 0x97, 0xd1, 0x82, 0x92, 0x30, 0xca, 0x99, 0x13, 0x46, 0x43, 0xb3, 0x81, 0xf6, - 0xb7, 0x60, 0x73, 0x8e, 0x3a, 0x9d, 0xb7, 0x34, 0x37, 0x7f, 0xcd, 0x82, 0x45, 0x36, 0x39, 0x6f, - 0x40, 0x05, 0x7d, 0x09, 0xf3, 0xf5, 0x53, 0xaf, 0xd7, 0x70, 0x3b, 0x5e, 0x9b, 0xe5, 0x4e, 0xd8, - 0x0e, 0xb1, 0x44, 0x77, 0xb4, 0x53, 0xaf, 0xd7, 0x7c, 0x11, 0x37, 0x59, 0x4e, 0xa2, 0xb3, 0xfd, - 0x04, 0x96, 0x12, 0x3c, 0x70, 0xc3, 0xf8, 0x69, 0xd2, 0x30, 0x52, 0x77, 0xa5, 0xd9, 0x56, 0xf1, - 0x18, 0xae, 0x4b, 0xab, 0xd0, 0xa7, 0x6c, 0x23, 0x61, 0x0d, 0x29, 0x82, 0x59, 0xa6, 0xd0, 0x82, - 0xeb, 0xd2, 0x12, 0xde, 0xc0, 0x02, 0xc4, 0xe4, 0xe6, 0x32, 0x27, 0x77, 0x17, 0x4a, 0xea, 0xe4, - 0xbe, 0xc9, 0xa4, 0xfe, 0x07, 0x0b, 0x96, 0xb7, 0x71, 0x17, 0x07, 0x2e, 0x65, 0x59, 0x0b, 0xbf, - 0xd4, 0xbc, 0x91, 0x35, 0x34, 0x6f, 0x54, 0x16, 0x71, 0x6a, 0x8e, 0xc6, 0xa9, 0x74, 0x9b, 0xa3, - 0x71, 0x2a, 0x8f, 0x4e, 0xc9, 0x36, 0xf7, 0xd4, 0xd9, 0xe5, 0xb6, 0x4a, 0xb7, 0xb9, 0x7e, 0xe0, - 0x39, 0x04, 0x86, 0x76, 0xe3, 0x9c, 0xd3, 0xf8, 0xc8, 0x9c, 0xd3, 0x02, 0xcf, 0x16, 0x4c, 0xf1, - 0x9c, 0x93, 0x96, 0x69, 0xb2, 0x1f, 0x40, 0x31, 0x2d, 0x0b, 0xb7, 0x8f, 0x32, 0x4c, 0xb0, 0xcb, - 0xc7, 0x54, 0x48, 0xca, 0xe0, 0xf6, 0x66, 0x6c, 0xdd, 0xfc, 0xaa, 0x4d, 0xe6, 0xda, 0x12, 0x2e, - 0x74, 0xc8, 0x39, 0xd9, 0xae, 0xc7, 0xf6, 0xc9, 0xa9, 0xf0, 0xf1, 0xbf, 0x20, 0xf6, 0xc9, 0xae, - 0x53, 0x2d, 0xf3, 0x75, 0x2a, 0xb7, 0x51, 0x86, 0x2a, 0x10, 0xec, 0x67, 0x70, 0x5d, 0x23, 0x1a, - 0x5b, 0xfd, 0x97, 0x90, 0x17, 0xb0, 0xc4, 0x31, 0x4e, 0x23, 0x4b, 0xe7, 0x2d, 0x14, 0xc8, 0x12, - 0xc5, 0xfe, 0x33, 0x0b, 0x96, 0xd9, 0xee, 0x92, 0x96, 0xfb, 0xe2, 0xb3, 0xff, 0x5b, 0xc9, 0x0d, - 0x7c, 0x94, 0x91, 0x1b, 0xa0, 0x28, 0x6a, 0x6e, 0x40, 0xcd, 0x08, 0x7c, 0x33, 0x9e, 0xcf, 0x15, - 0xc6, 0xec, 0x06, 0x14, 0xd3, 0x12, 0xbe, 0x85, 0x39, 0xd9, 0x86, 0x65, 0x65, 0xa1, 0xbf, 0xb1, - 0xc5, 0xc4, 0x23, 0xbe, 0x45, 0x8b, 0x89, 0x3b, 0xbe, 0x35, 0x8b, 0xd9, 0x85, 0x05, 0x46, 0x58, - 0x5f, 0x5d, 0xeb, 0xea, 0xea, 0xca, 0xbc, 0xda, 0x4f, 0x2f, 0xb8, 0xc7, 0x74, 0xc1, 0x89, 0x2e, - 0x31, 0x87, 0x9f, 0xc2, 0x24, 0x7f, 0xbd, 0xc4, 0xf8, 0xcb, 0x20, 0x46, 0x3d, 0x2f, 0x7b, 0xb2, - 0xe4, 0xf0, 0xce, 0x76, 0x91, 0x8a, 0x4c, 0x0e, 0x20, 0x3c, 0x49, 0x27, 0x1c, 0xa2, 0xfd, 0x2d, - 0x71, 0x71, 0x89, 0x96, 0x37, 0xdc, 0x35, 0x9e, 0x40, 0x91, 0xed, 0x1a, 0x0a, 0xd5, 0x37, 0xda, - 0x37, 0x3e, 0x87, 0x22, 0x33, 0xa7, 0x0c, 0x82, 0xc3, 0x37, 0x83, 0x55, 0x58, 0x91, 0x9b, 0x41, - 0x96, 0xf4, 0x7f, 0xdb, 0x82, 0x1b, 0xdb, 0x38, 0xd2, 0x1f, 0x78, 0xfc, 0xb9, 0xec, 0xdd, 0xbf, - 0x84, 0x52, 0x16, 0x23, 0x7c, 0x2a, 0xbe, 0x4a, 0x4e, 0x85, 0xf1, 0x35, 0x4b, 0xf6, 0x94, 0xfc, - 0x02, 0x6e, 0xb2, 0x29, 0xd1, 0xfb, 0x0b, 0x41, 0x1f, 0x24, 0x66, 0xc5, 0x48, 0x3d, 0x6b, 0x76, - 0xfe, 0x81, 0x05, 0x37, 0x99, 0x92, 0xb3, 0x89, 0xff, 0xb6, 0xa3, 0xbb, 0x7d, 0x28, 0xcb, 0x39, - 0x7f, 0x0b, 0x13, 0x6b, 0xb7, 0x00, 0x09, 0x32, 0xb5, 0xba, 0x23, 0x48, 0xdc, 0x80, 0xb1, 0x5a, - 0xdd, 0xe1, 0xf7, 0x4b, 0x74, 0xd3, 0x6e, 0x85, 0x81, 0x43, 0x60, 0x49, 0x0f, 0x9e, 0xbb, 0x80, - 0x07, 0xb7, 0xff, 0x00, 0x16, 0xb4, 0x41, 0xf8, 0xbc, 0xaf, 0xc0, 0x78, 0x0d, 0x07, 0x11, 0x1f, - 0x86, 0x4a, 0xda, 0xc2, 0x41, 0xe4, 0x50, 0x28, 0x7a, 0x0f, 0xa6, 0xc4, 0x4d, 0x6c, 0x8e, 0xde, - 0xc4, 0x52, 0xc7, 0x24, 0x6e, 0x61, 0x1d, 0xd1, 0x68, 0xff, 0x3b, 0x4b, 0xa1, 0x4e, 0xd0, 0x47, - 0xcb, 0xf0, 0x31, 0x39, 0x1e, 0x13, 0x9d, 0x29, 0x22, 0x5c, 0x23, 0xdb, 0x16, 0xcf, 0xab, 0xb0, - 0x9d, 0xcf, 0x51, 0x3a, 0x5d, 0x30, 0xa9, 0x24, 0x6e, 0x13, 0x18, 0x92, 0xb8, 0x3f, 0x95, 0xb7, - 0x09, 0x9c, 0x74, 0xe8, 0xa8, 0x9d, 0xec, 0x5f, 0xc2, 0xa2, 0xce, 0xff, 0x5b, 0x55, 0xcf, 0x3b, - 0x34, 0x3b, 0x4e, 0xef, 0x7a, 0xb9, 0x62, 0x90, 0x9a, 0x48, 0xe0, 0x66, 0xf5, 0x19, 0x14, 0x78, - 0xaf, 0x78, 0x59, 0xde, 0x15, 0xa1, 0x1d, 0x5b, 0x94, 0xfa, 0x3b, 0x48, 0x91, 0x7c, 0xfc, 0x89, - 0x48, 0x55, 0x8c, 0x1a, 0xe1, 0xdf, 0x58, 0x50, 0x7c, 0xfc, 0xb0, 0x52, 0xe9, 0x47, 0x27, 0xb8, - 0x1b, 0x91, 0x43, 0x09, 0xae, 0x9d, 0xb8, 0x9d, 0x0e, 0xee, 0x1e, 0x53, 0xed, 0x3e, 0x5d, 0x7f, - 0x28, 0x77, 0x25, 0x7e, 0xfb, 0xb4, 0xfe, 0x50, 0xf6, 0x70, 0x48, 0x3b, 0xba, 0x07, 0xe3, 0x87, - 0x4f, 0x0e, 0x0f, 0x78, 0xe2, 0x60, 0x91, 0xf7, 0x23, 0xa0, 0xb8, 0x23, 0xed, 0x81, 0x1e, 0xc1, - 0xb5, 0x67, 0xfc, 0x81, 0xb2, 0x6c, 0xe2, 0x29, 0x83, 0x5b, 0x6b, 0xf2, 0xe9, 0x72, 0x2d, 0xc0, - 0x6d, 0xc2, 0x8c, 0xdb, 0xa9, 0x84, 0xc4, 0x7f, 0x90, 0x69, 0x4c, 0xe3, 0xd9, 0xff, 0xd6, 0x82, - 0xe5, 0x04, 0xeb, 0x52, 0x49, 0xef, 0x09, 0xce, 0xd9, 0xa9, 0x51, 0x72, 0x2e, 0x3a, 0xec, 0x5c, - 0x61, 0xac, 0xbf, 0xaf, 0xb1, 0xbe, 0xa0, 0xb0, 0xae, 0xf4, 0x64, 0xbc, 0xd7, 0xe8, 0x7b, 0x39, - 0xca, 0x03, 0x67, 0xf9, 0xdd, 0xe1, 0x2c, 0xc7, 0x04, 0x24, 0x22, 0x7f, 0xed, 0x42, 0xe1, 0xf6, - 0x5f, 0x84, 0x59, 0x55, 0x97, 0x68, 0x05, 0xa6, 0x1f, 0xe1, 0x57, 0x3b, 0x6e, 0xb7, 0xdd, 0x11, - 0x73, 0x14, 0x03, 0x48, 0x6b, 0xac, 0x32, 0x96, 0x1b, 0x88, 0x01, 0x68, 0x11, 0x26, 0x2a, 0xbd, - 0xde, 0xee, 0x26, 0x73, 0x4f, 0x0e, 0xfb, 0x80, 0x8a, 0x30, 0x25, 0x32, 0x9e, 0x34, 0xa4, 0x73, - 0xc4, 0x47, 0xdb, 0x83, 0x19, 0x45, 0x1b, 0x23, 0x86, 0x5e, 0x05, 0xa8, 0x75, 0x3c, 0xdc, 0xa5, - 0x8e, 0x9c, 0x8f, 0xad, 0x40, 0x68, 0x4e, 0xc3, 0x3b, 0xee, 0xd2, 0xb4, 0x24, 0x67, 0x20, 0x06, - 0xd8, 0x57, 0x61, 0x4e, 0x33, 0x05, 0xdb, 0x86, 0x59, 0x55, 0xc1, 0xc4, 0x2c, 0x6b, 0x7e, 0x5b, - 0x9a, 0x25, 0xf9, 0xdb, 0xfe, 0xf7, 0x16, 0x2c, 0x3e, 0x7e, 0x58, 0x71, 0xf0, 0xb1, 0x47, 0xdc, - 0x55, 0x2c, 0xe8, 0x7d, 0x75, 0x62, 0x6f, 0xaa, 0x13, 0x9b, 0xe8, 0x29, 0x66, 0x78, 0x5d, 0x9b, - 0xe1, 0x15, 0x6d, 0x86, 0xd3, 0x28, 0x6c, 0xaa, 0xbf, 0x48, 0x4d, 0xf5, 0x4a, 0xd6, 0x54, 0xd3, - 0x30, 0xd6, 0xf3, 0xbb, 0xda, 0x0c, 0x2b, 0xa9, 0xa5, 0x1f, 0x2d, 0x58, 0x50, 0x84, 0x90, 0x02, - 0xaf, 0xa9, 0x32, 0x94, 0xd2, 0x32, 0x24, 0x8d, 0xf4, 0x63, 0x4d, 0x84, 0x9b, 0x19, 0x22, 0xa4, - 0x8c, 0xb5, 0x9a, 0x92, 0xe0, 0x9d, 0x61, 0x12, 0x8c, 0xb4, 0xd5, 0x36, 0x2c, 0x66, 0x29, 0x59, - 0xb7, 0x4a, 0xcb, 0x68, 0x95, 0x39, 0x83, 0x55, 0x8e, 0xe9, 0x56, 0xe9, 0xc2, 0x42, 0x86, 0x1a, - 0xd0, 0x07, 0x50, 0x60, 0x30, 0xe6, 0xd2, 0xf9, 0x15, 0x19, 0xc1, 0x4c, 0xc1, 0x47, 0xd9, 0xaa, - 0xfd, 0x9f, 0x2d, 0x58, 0xca, 0x9c, 0x7c, 0x74, 0x9d, 0xc4, 0x23, 0xad, 0x00, 0x47, 0x9c, 0x36, - 0xff, 0x44, 0xe0, 0xbb, 0x61, 0xd8, 0xe7, 0x05, 0x07, 0xd3, 0x0e, 0xff, 0x84, 0xde, 0x81, 0xb9, - 0x03, 0x1c, 0x78, 0x7e, 0xbb, 0x8e, 0x5b, 0x7e, 0xb7, 0xcd, 0x6e, 0x06, 0xe6, 0x1c, 0x1d, 0x48, - 0x14, 0x54, 0xe9, 0x1c, 0xfb, 0x81, 0x17, 0x9d, 0x9c, 0xf1, 0x45, 0x18, 0x03, 0x08, 0xed, 0x4d, - 0xef, 0xd8, 0x8b, 0xd8, 0x05, 0xd7, 0x9c, 0xc3, 0x3f, 0x11, 0x15, 0x55, 0x5a, 0x2d, 0xbf, 0xdf, - 0x8d, 0x68, 0xd2, 0x7c, 0xda, 0x11, 0x1f, 0x09, 0xc6, 0xb7, 0x0e, 0x5d, 0x2e, 0xf4, 0x19, 0x8d, - 0xc3, 0x3f, 0xd9, 0x1f, 0xc0, 0x62, 0x96, 0x41, 0x64, 0x2e, 0xae, 0xbf, 0x92, 0x83, 0x85, 0x4a, - 0xbb, 0xfd, 0xf8, 0x61, 0x65, 0x13, 0xab, 0x61, 0xed, 0x27, 0x30, 0xbe, 0xdb, 0xf5, 0x22, 0x6e, - 0x98, 0xab, 0xdc, 0xce, 0x32, 0x7a, 0x92, 0x5e, 0xc4, 0xd4, 0xc8, 0xff, 0xc8, 0x81, 0x85, 0xad, - 0x1f, 0xbc, 0x30, 0xf2, 0xba, 0xc7, 0xd4, 0xd8, 0xd9, 0xc0, 0xdc, 0x58, 0x05, 0x11, 0x83, 0x9f, - 0xde, 0xb9, 0xe2, 0x64, 0x21, 0xa3, 0x43, 0xb8, 0xbe, 0x8f, 0x5f, 0x66, 0xac, 0x1d, 0xf9, 0x0a, - 0x46, 0x92, 0xcd, 0x58, 0x02, 0x06, 0x5c, 0x75, 0x69, 0xfe, 0xad, 0x1c, 0x7d, 0x5a, 0xa5, 0x08, - 0xc6, 0x47, 0x7e, 0x0a, 0x8b, 0x0a, 0x43, 0xba, 0x6d, 0xcf, 0xac, 0x97, 0xb3, 0xc5, 0x51, 0x3d, - 0x48, 0x26, 0x3a, 0x7a, 0x06, 0xcb, 0x3a, 0x53, 0xba, 0x2f, 0x8f, 0x57, 0x75, 0x56, 0x97, 0x9d, - 0x2b, 0x8e, 0x09, 0x1b, 0xad, 0xc3, 0x58, 0xa5, 0x75, 0xca, 0xd5, 0x92, 0x3d, 0x65, 0x4c, 0xb2, - 0x4a, 0xeb, 0x94, 0x3e, 0xb9, 0x6c, 0x9d, 0x6a, 0x0b, 0xfb, 0x7f, 0x5b, 0xb0, 0x6c, 0x98, 0x61, - 0x54, 0x07, 0xd8, 0xc3, 0xc7, 0x6e, 0xeb, 0x95, 0xbc, 0xd5, 0x9b, 0x5f, 0xbf, 0x3f, 0xdc, 0x2a, - 0xd6, 0x18, 0x02, 0x83, 0x13, 0xb4, 0x6a, 0x8e, 0x44, 0x6c, 0x31, 0x19, 0xb2, 0x40, 0x59, 0xab, - 0x12, 0x8a, 0x28, 0x10, 0x12, 0x04, 0xc6, 0xd8, 0x54, 0xae, 0x79, 0xf9, 0x4a, 0x25, 0x6e, 0x70, - 0x94, 0x4e, 0xf6, 0x06, 0x14, 0x92, 0xc3, 0xa2, 0x3c, 0xf3, 0x99, 0xec, 0x35, 0xca, 0xd3, 0xf5, - 0x87, 0x05, 0x0b, 0xcd, 0xc6, 0x3e, 0xb1, 0x90, 0xb3, 0x6b, 0x49, 0xb9, 0xa5, 0x9a, 0xd0, 0x3d, - 0x98, 0x64, 0x40, 0x3e, 0xeb, 0xa2, 0x58, 0x24, 0xee, 0xcc, 0xdb, 0xed, 0x7f, 0x6a, 0x89, 0xec, - 0x62, 0x6a, 0x31, 0x7d, 0xa6, 0x2d, 0xa6, 0x3b, 0x52, 0x82, 0xac, 0xce, 0xda, 0x7a, 0xaa, 0xc2, - 0xcc, 0xeb, 0xac, 0x23, 0x15, 0x49, 0xb5, 0xf4, 0x7f, 0x66, 0x89, 0xbc, 0x48, 0xda, 0xd8, 0xb7, - 0x60, 0xf6, 0xf5, 0x8c, 0x5c, 0x43, 0x43, 0x9f, 0x32, 0x1b, 0xcc, 0x0d, 0x97, 0x74, 0xa8, 0x19, - 0xfe, 0x5c, 0x24, 0x50, 0x33, 0x0d, 0x71, 0x84, 0xcd, 0xd8, 0x2b, 0x19, 0xd8, 0x72, 0x38, 0xbb, - 0x9f, 0x6a, 0xad, 0xbf, 0xea, 0xb6, 0xc4, 0x3c, 0xbd, 0x97, 0xbc, 0x1b, 0xa7, 0x01, 0x3b, 0x4d, - 0x65, 0x90, 0xe3, 0x9f, 0x68, 0x44, 0xf7, 0x35, 0x1e, 0x72, 0x71, 0x4e, 0xad, 0x8d, 0xe3, 0xe7, - 0x48, 0x2a, 0x53, 0xe7, 0x89, 0x95, 0xf5, 0x3a, 0x83, 0xd6, 0x60, 0x6e, 0x1f, 0xbf, 0x4c, 0x8d, - 0x4b, 0x2f, 0x3f, 0xbb, 0xf8, 0x65, 0x53, 0x19, 0x5b, 0x79, 0x80, 0xa0, 0xe3, 0xa0, 0x23, 0x98, - 0x17, 0xde, 0xe3, 0xa2, 0x4e, 0x94, 0x3d, 0xee, 0x23, 0x23, 0x9c, 0x3d, 0x77, 0x9b, 0x01, 0x87, - 0xaa, 0xaf, 0xf2, 0x74, 0x8a, 0xf6, 0x01, 0x14, 0xd3, 0xb2, 0x72, 0x2b, 0xfb, 0x64, 0xd4, 0x72, - 0x62, 0x27, 0xfc, 0xb6, 0xbe, 0xb4, 0x76, 0x68, 0x32, 0x4a, 0xf6, 0x91, 0xc7, 0xe8, 0x8f, 0x92, - 0xaa, 0xa3, 0xaf, 0xb0, 0x84, 0xea, 0xd4, 0x97, 0xd0, 0xf1, 0xeb, 0x88, 0xa5, 0x04, 0x25, 0x19, - 0x57, 0x4c, 0x71, 0x90, 0x7c, 0x61, 0x9e, 0x5c, 0xe8, 0xa2, 0x83, 0xfd, 0x8f, 0x2d, 0xb8, 0xf1, - 0x34, 0xc4, 0x41, 0xdd, 0xeb, 0x1e, 0x77, 0xf0, 0x53, 0x76, 0x26, 0x94, 0x4c, 0xfd, 0xae, 0xb6, - 0xd8, 0x97, 0x0d, 0xef, 0xf4, 0xfe, 0x7f, 0x2d, 0xf1, 0x7f, 0x62, 0x41, 0x29, 0x8b, 0xb7, 0xb7, - 0xbb, 0xca, 0xd7, 0xf8, 0xb9, 0x97, 0x71, 0x5b, 0xe4, 0xe8, 0x72, 0x4c, 0x21, 0x2c, 0x11, 0x92, - 0xfc, 0xaf, 0x2d, 0xef, 0x7f, 0x65, 0xc1, 0xe2, 0x6e, 0x48, 0xd9, 0xff, 0xbe, 0xef, 0x05, 0xb8, - 0x2d, 0x14, 0xb7, 0x96, 0xf5, 0x9a, 0x93, 0xce, 0xeb, 0xce, 0x95, 0xac, 0xd7, 0x9a, 0x9f, 0x28, - 0x8f, 0xf0, 0x72, 0xc3, 0x9e, 0x69, 0x6a, 0x65, 0x0e, 0xef, 0xc1, 0xf8, 0x3e, 0x09, 0x82, 0xc6, - 0xb8, 0xfd, 0x31, 0x0c, 0x02, 0xda, 0xf3, 0x8f, 0x3d, 0x12, 0xbf, 0xd3, 0xf6, 0x6a, 0x1e, 0x26, - 0x0f, 0xdd, 0xe0, 0x18, 0x47, 0xf6, 0x2f, 0xa0, 0xc4, 0x2f, 0x84, 0x59, 0x9e, 0x95, 0x5e, 0x1b, - 0x87, 0x71, 0xfe, 0x6f, 0xd8, 0x25, 0xee, 0x2a, 0x40, 0x3d, 0x72, 0x83, 0x68, 0xb7, 0xdb, 0xc6, - 0x3f, 0x50, 0x2e, 0x27, 0x1c, 0x05, 0x62, 0x7f, 0x0a, 0xd3, 0x72, 0x68, 0x7a, 0x26, 0x57, 0xe2, - 0x33, 0xf2, 0x37, 0x09, 0x9b, 0x69, 0xa3, 0x08, 0x9b, 0xe9, 0x07, 0x7b, 0x03, 0x96, 0x12, 0x2a, - 0xe4, 0xf3, 0x5b, 0x22, 0x8a, 0x66, 0x30, 0xf6, 0x0a, 0xc4, 0x91, 0x9f, 0xed, 0x1a, 0x5c, 0x4b, - 0xcd, 0x10, 0x42, 0xca, 0xab, 0x7e, 0xe2, 0x8c, 0xeb, 0xf5, 0x1d, 0x02, 0x93, 0x8f, 0xf8, 0x09, - 0xec, 0x70, 0xaf, 0x5e, 0x9d, 0x64, 0x33, 0x6e, 0xff, 0xf3, 0x1c, 0x4d, 0x43, 0xa4, 0x74, 0x90, - 0x48, 0x67, 0xa9, 0x29, 0xb5, 0x2a, 0x4c, 0x53, 0x89, 0x37, 0xc5, 0xf3, 0xb2, 0xe1, 0xb7, 0x48, - 0xf9, 0x1f, 0x07, 0xe5, 0x2b, 0xf4, 0xea, 0x28, 0x46, 0x43, 0x5f, 0xc1, 0xd4, 0x56, 0xb7, 0x4d, - 0x29, 0x8c, 0x5d, 0x82, 0x82, 0x40, 0x22, 0xf3, 0x40, 0x59, 0x26, 0xf1, 0x00, 0xcf, 0xf9, 0x38, - 0x0a, 0x84, 0xaa, 0xd9, 0x3b, 0xf3, 0xd8, 0x5b, 0x81, 0x09, 0x87, 0x7d, 0x20, 0xda, 0xa4, 0x2c, - 0x88, 0x17, 0xee, 0xd3, 0x8e, 0xfc, 0x8c, 0x6c, 0x98, 0x78, 0x12, 0xb4, 0xf9, 0x7b, 0xe3, 0xf9, - 0xf5, 0x59, 0x51, 0xbe, 0x4c, 0x60, 0x0e, 0x6b, 0xb2, 0xff, 0x07, 0xbd, 0xbf, 0x8b, 0x32, 0xed, - 0x46, 0xd3, 0x8a, 0xf5, 0xc6, 0x5a, 0xc9, 0xbd, 0x8e, 0x56, 0xa4, 0xd4, 0x63, 0x26, 0xa9, 0xc7, - 0x4d, 0x52, 0x4f, 0x98, 0xa5, 0xde, 0x86, 0x49, 0x26, 0x2a, 0xba, 0x0b, 0x13, 0xbb, 0x11, 0x3e, - 0x8b, 0xd3, 0x53, 0xea, 0x0b, 0x0c, 0x87, 0xb5, 0x91, 0xf3, 0xcd, 0x9e, 0x1b, 0xd2, 0xd1, 0x98, - 0x8d, 0x8b, 0x8f, 0xf6, 0x9f, 0x5a, 0x50, 0xd8, 0xf3, 0xc2, 0x88, 0x2c, 0x84, 0x0b, 0xda, 0x9a, - 0x94, 0x28, 0x67, 0x92, 0x68, 0x2c, 0x21, 0xd1, 0x03, 0x98, 0xa4, 0xef, 0x07, 0x43, 0x5e, 0x99, - 0x73, 0x97, 0x8b, 0x94, 0x1c, 0x98, 0xbd, 0x32, 0x0c, 0x69, 0x05, 0x8d, 0xc3, 0x51, 0x4a, 0x3f, - 0x83, 0x19, 0x05, 0x7c, 0xa9, 0xc2, 0x9a, 0xef, 0xe0, 0x9a, 0x32, 0x04, 0x5f, 0xbe, 0xef, 0x8f, - 0xba, 0xf1, 0x90, 0x19, 0x75, 0xa2, 0xb6, 0x7d, 0xfc, 0x83, 0xaa, 0x36, 0xfe, 0xd1, 0xfe, 0x15, - 0x7d, 0xfe, 0xba, 0xe7, 0xb7, 0x4e, 0x95, 0x7c, 0xf3, 0x14, 0x73, 0x66, 0xc9, 0x6b, 0x1b, 0xd2, - 0x8b, 0xb5, 0x38, 0xa2, 0x07, 0xba, 0x0d, 0x33, 0xbb, 0xdd, 0x87, 0x7e, 0xd0, 0xc2, 0x4f, 0xba, - 0x1d, 0x46, 0x3d, 0xef, 0xa8, 0x20, 0x9e, 0x8a, 0xe4, 0x23, 0xc4, 0xa9, 0x48, 0x0a, 0x48, 0xa4, - 0x22, 0x59, 0x61, 0xa0, 0xc3, 0xda, 0x78, 0xa6, 0x93, 0xfc, 0x3d, 0x2c, 0x0f, 0x29, 0x13, 0x96, - 0xa3, 0x3a, 0x1e, 0xc1, 0x0d, 0x07, 0xf7, 0x3a, 0x2e, 0x89, 0xf1, 0xce, 0x7c, 0xd6, 0x5f, 0xca, - 0x7c, 0x3b, 0xe3, 0x71, 0xa0, 0x7e, 0x6b, 0x29, 0x59, 0xce, 0x0d, 0x61, 0xf9, 0x0c, 0xee, 0x6c, - 0xe3, 0x28, 0xb3, 0xba, 0x2f, 0x16, 0x7e, 0x07, 0xf2, 0xfc, 0x29, 0xba, 0x90, 0x7f, 0x54, 0x61, - 0x21, 0xbf, 0xc2, 0xe3, 0x74, 0xe4, 0x5f, 0x76, 0x55, 0x3c, 0x0d, 0xc9, 0x44, 0xbc, 0xd8, 0x43, - 0xb3, 0x26, 0xbd, 0xca, 0xd1, 0x09, 0xc4, 0xbc, 0x56, 0x20, 0x2f, 0x60, 0x89, 0xbb, 0x9c, 0x54, - 0x31, 0x22, 0x65, 0xb2, 0x2d, 0x08, 0x48, 0x34, 0xfb, 0x73, 0x28, 0xa6, 0x06, 0xb8, 0x18, 0x6b, - 0x0f, 0xc4, 0x55, 0xcd, 0xeb, 0x20, 0xfb, 0x70, 0x43, 0x47, 0x53, 0xef, 0x12, 0x0a, 0xca, 0x5d, - 0x02, 0xbb, 0x42, 0x20, 0x06, 0xe0, 0xec, 0x6d, 0x75, 0xdb, 0x3d, 0xdf, 0xeb, 0x46, 0x7c, 0x95, - 0xa8, 0x20, 0xb4, 0xaa, 0xde, 0x18, 0xcc, 0xa6, 0xdf, 0x9f, 0x7e, 0x04, 0xa5, 0xac, 0x01, 0x95, - 0x74, 0x8a, 0x4c, 0xfe, 0xb3, 0x40, 0xc7, 0x3e, 0x81, 0x45, 0xed, 0x3b, 0x1f, 0xe2, 0x22, 0xf6, - 0xf8, 0xbb, 0x2e, 0xa6, 0xab, 0x3f, 0xff, 0xcd, 0xa0, 0xfc, 0xf9, 0x65, 0xaa, 0xc1, 0x04, 0xcd, - 0x43, 0xf9, 0x84, 0xd6, 0x5e, 0x86, 0xb1, 0x9a, 0xb3, 0x47, 0xc5, 0x76, 0xf6, 0xa4, 0xd8, 0xce, - 0x9e, 0xfd, 0x1b, 0x0b, 0xca, 0xb5, 0x13, 0xb7, 0x7b, 0x4c, 0x37, 0x79, 0x25, 0x9e, 0x53, 0x2e, - 0xc1, 0x2f, 0x7a, 0xe6, 0x58, 0x87, 0x99, 0x7d, 0xfc, 0x52, 0x3c, 0xff, 0xe5, 0x65, 0x7d, 0xf4, - 0xae, 0x84, 0x9c, 0x07, 0x7a, 0x1c, 0xee, 0xa8, 0x9d, 0xd0, 0x5f, 0x7a, 0xfd, 0x7c, 0x0d, 0xab, - 0xfc, 0x8e, 0x8f, 0x1a, 0xac, 0x35, 0xeb, 0xcc, 0x61, 0x18, 0xc2, 0xfe, 0x97, 0x16, 0xdc, 0x36, - 0x0b, 0xcf, 0x27, 0x6e, 0x53, 0xab, 0x9f, 0x1f, 0x72, 0x7d, 0x4f, 0xcf, 0x74, 0x4a, 0xfd, 0xbc, - 0x56, 0x33, 0x5f, 0x85, 0x39, 0x07, 0xb7, 0xfc, 0x17, 0x38, 0x78, 0x55, 0x23, 0x4e, 0x9c, 0x3f, - 0xaf, 0xe1, 0xdf, 0x16, 0xc0, 0x1a, 0x9a, 0x2d, 0xd2, 0xa2, 0x1e, 0xc7, 0x34, 0x14, 0xfb, 0x8f, - 0x2d, 0xb8, 0x49, 0x77, 0x22, 0x9e, 0xd2, 0x13, 0xad, 0x97, 0x7f, 0xe6, 0xf1, 0x29, 0xcc, 0xaa, - 0xa4, 0xd5, 0x0a, 0x4c, 0x8d, 0x19, 0x47, 0xeb, 0x86, 0x76, 0x61, 0x86, 0x7f, 0x56, 0x52, 0x2c, - 0x4b, 0xca, 0xf7, 0x70, 0x50, 0x4b, 0x60, 0xf5, 0x44, 0x74, 0xde, 0x39, 0xb1, 0x26, 0x7d, 0xcc, - 0xad, 0xe2, 0xda, 0xbf, 0xce, 0xc1, 0x4a, 0x03, 0x07, 0xde, 0xf3, 0x57, 0x06, 0x61, 0x9e, 0xc0, - 0xa2, 0x00, 0x51, 0x99, 0x75, 0x0b, 0xa4, 0xdf, 0x77, 0x22, 0x59, 0x0d, 0x49, 0x87, 0xa6, 0x34, - 0xc8, 0x4c, 0xc4, 0x4b, 0x94, 0xce, 0x7d, 0x02, 0x79, 0x69, 0xc4, 0x63, 0x54, 0x33, 0xf4, 0xa4, - 0x28, 0x0c, 0x58, 0xaf, 0x88, 0x96, 0x96, 0xfc, 0xd7, 0xcd, 0x97, 0x4a, 0xfc, 0x35, 0xd4, 0x88, - 0x73, 0x1a, 0xb3, 0x67, 0x62, 0xcb, 0xae, 0xd2, 0x9a, 0x61, 0xcf, 0x3b, 0x57, 0x1c, 0xd3, 0x48, - 0xd5, 0x19, 0x98, 0xae, 0xd0, 0xcb, 0x2e, 0x12, 0xc3, 0xff, 0xaf, 0x1c, 0xac, 0x8a, 0x97, 0x9f, - 0x06, 0x35, 0x7f, 0x07, 0xcb, 0x02, 0x54, 0xe9, 0xf5, 0x02, 0xff, 0x05, 0x6e, 0xeb, 0x9a, 0x66, - 0xc5, 0x7a, 0x42, 0xd3, 0x2e, 0xef, 0x13, 0x2b, 0xdb, 0x84, 0xfe, 0x76, 0x32, 0x10, 0x5f, 0xe9, - 0x2e, 0x85, 0xcd, 0x06, 0x2d, 0xed, 0x51, 0x5d, 0x8a, 0xfe, 0x95, 0x31, 0xaa, 0x7b, 0x69, 0xa7, - 0x32, 0x18, 0xe3, 0x6f, 0x9a, 0xc1, 0xd8, 0xb9, 0x92, 0xcc, 0x61, 0x54, 0xe7, 0x61, 0x76, 0x1f, - 0xbf, 0x8c, 0xf5, 0xfe, 0x08, 0xee, 0xf0, 0x87, 0x4a, 0xba, 0xd2, 0x6b, 0x6a, 0x68, 0x7a, 0x41, - 0xaf, 0x6a, 0xff, 0x05, 0xb0, 0x87, 0x11, 0xe3, 0x5e, 0xea, 0xf3, 0xa4, 0x7f, 0xb1, 0xa8, 0x7f, - 0x61, 0x5f, 0x6e, 0xa3, 0xf9, 0x97, 0xa4, 0x57, 0x71, 0x61, 0x75, 0x1b, 0x27, 0x5d, 0x8a, 0xf6, - 0x78, 0xf0, 0x6b, 0xb8, 0xaa, 0xc1, 0x25, 0xc7, 0xb4, 0xf8, 0x40, 0x52, 0x97, 0xac, 0x27, 0x7b, - 0xdb, 0xb7, 0xb3, 0x86, 0x50, 0x95, 0x61, 0x63, 0xb8, 0x4a, 0x0f, 0x99, 0xf2, 0x7e, 0x29, 0xbc, - 0x84, 0x37, 0xbb, 0xa7, 0xac, 0x57, 0xe6, 0xc9, 0x58, 0xf5, 0x9e, 0xd8, 0x70, 0x64, 0xab, 0xfd, - 0xdf, 0x2d, 0xa9, 0xcc, 0xac, 0xcc, 0x85, 0x10, 0xf8, 0x28, 0xc5, 0x0d, 0xf7, 0xfb, 0xd7, 0xd5, - 0xfc, 0x4c, 0xdc, 0xca, 0x4c, 0x86, 0x70, 0xd6, 0x6c, 0xc5, 0x50, 0xcd, 0x64, 0x52, 0xe2, 0xfd, - 0x81, 0xc1, 0xbf, 0xb1, 0x55, 0x42, 0xbf, 0x49, 0xc2, 0xe0, 0xdf, 0x34, 0xba, 0x99, 0x44, 0xd4, - 0x14, 0xcf, 0x3f, 0xb4, 0xe0, 0x26, 0x13, 0xf9, 0x20, 0xf0, 0x5e, 0x78, 0x1d, 0x7c, 0x8c, 0xb5, - 0xc9, 0xed, 0x67, 0x5f, 0xc2, 0x58, 0x17, 0xf2, 0x58, 0xb4, 0x90, 0x1c, 0x73, 0x74, 0x53, 0xc6, - 0x2f, 0x8b, 0xbe, 0xfd, 0xf7, 0x2d, 0x58, 0x15, 0x35, 0x43, 0x89, 0x9b, 0x89, 0xcb, 0x86, 0x1d, - 0x55, 0x2d, 0xef, 0x9f, 0x33, 0xe4, 0xfd, 0xb5, 0x94, 0x6b, 0x94, 0xb8, 0x08, 0xf8, 0xe0, 0x03, - 0x98, 0x96, 0x5f, 0x25, 0x86, 0xf2, 0x30, 0xbe, 0xbb, 0xbf, 0x7b, 0xc8, 0x6e, 0x00, 0x0e, 0x9e, - 0x1e, 0x16, 0x2c, 0x04, 0x30, 0xb9, 0xb9, 0xb5, 0xb7, 0x75, 0xb8, 0x55, 0xc8, 0x7d, 0xd0, 0x55, - 0xc7, 0x43, 0x37, 0x61, 0x79, 0x73, 0xab, 0xb1, 0x5b, 0xdb, 0x6a, 0x1e, 0xfe, 0xfe, 0xc1, 0x56, - 0xf3, 0xe9, 0x7e, 0xfd, 0x60, 0xab, 0xb6, 0xfb, 0x70, 0x77, 0x6b, 0xb3, 0x70, 0x05, 0x2d, 0x42, - 0x41, 0x6d, 0xa4, 0xf7, 0x0a, 0x16, 0x5a, 0x80, 0xab, 0x1a, 0xca, 0xfa, 0xc3, 0x42, 0x0e, 0x15, - 0x61, 0x51, 0x05, 0x3e, 0xdb, 0xaa, 0x56, 0x9e, 0x1e, 0xee, 0xec, 0x17, 0xc6, 0x3e, 0x78, 0x8f, - 0x9f, 0xa2, 0xd1, 0x3c, 0xc0, 0xe6, 0x56, 0xbd, 0xb6, 0xb5, 0xbf, 0xb9, 0xbb, 0xbf, 0x5d, 0xb8, - 0x82, 0xe6, 0x60, 0xba, 0x22, 0x3f, 0x5a, 0xeb, 0xff, 0xf3, 0x3b, 0x98, 0x21, 0xb3, 0x24, 0xbe, - 0x4d, 0xe4, 0xe7, 0x30, 0x5f, 0xc7, 0xdd, 0xf6, 0x23, 0x8c, 0x7b, 0x95, 0x8e, 0xf7, 0x02, 0x87, - 0x48, 0x64, 0x29, 0x25, 0xa8, 0x74, 0x3d, 0x95, 0x02, 0xd8, 0x22, 0x73, 0x76, 0xcf, 0x42, 0xbf, - 0x03, 0x33, 0xf4, 0xeb, 0x26, 0xf8, 0xe1, 0x7c, 0x56, 0xfd, 0x0a, 0x8a, 0x92, 0xf8, 0x44, 0x1b, - 0x3f, 0xb2, 0xd0, 0x97, 0x30, 0xb5, 0x8d, 0xe9, 0xe9, 0x14, 0xdd, 0x49, 0x7c, 0xab, 0xda, 0x6e, - 0x57, 0x9e, 0xb7, 0xf9, 0xc4, 0x96, 0x92, 0xc7, 0x54, 0x54, 0x83, 0x3c, 0x47, 0x0f, 0x91, 0x9d, - 0xc0, 0x0f, 0x33, 0x08, 0x2c, 0x24, 0x08, 0x90, 0xa3, 0x31, 0xfa, 0x0a, 0xa6, 0xe5, 0x11, 0x19, - 0x2d, 0x1b, 0xce, 0xe5, 0xa5, 0x62, 0xba, 0x81, 0x7b, 0xd0, 0xfb, 0x00, 0xec, 0xd1, 0x19, 0x15, - 0x23, 0xc9, 0x63, 0x29, 0xa5, 0x3b, 0xb4, 0x4d, 0xec, 0x80, 0x6c, 0xad, 0x17, 0x95, 0xdb, 0xa0, - 0x6c, 0xb4, 0x07, 0xf3, 0xf2, 0x09, 0xd8, 0xc5, 0x95, 0x60, 0xa2, 0xf6, 0x05, 0x5c, 0x13, 0x2f, - 0xa7, 0x65, 0x1a, 0x19, 0x99, 0x12, 0xcb, 0x72, 0x26, 0xc5, 0xf7, 0x65, 0x48, 0x5c, 0xf9, 0xd5, - 0x17, 0x12, 0x37, 0xf9, 0x65, 0x18, 0x09, 0x5c, 0x4c, 0xce, 0x91, 0xf1, 0xb8, 0x7a, 0x4a, 0x19, - 0xdd, 0x56, 0x18, 0xc8, 0xcc, 0x84, 0x97, 0xee, 0x0c, 0xe9, 0xc1, 0xa6, 0xe8, 0x9e, 0xf5, 0x91, - 0x85, 0xbe, 0x81, 0x39, 0x2d, 0x99, 0x89, 0xc4, 0xfd, 0x67, 0x56, 0x96, 0xb8, 0xb4, 0x92, 0xdd, - 0xc8, 0xa7, 0xfc, 0x21, 0x11, 0x37, 0x4a, 0x94, 0xed, 0x96, 0xb2, 0xca, 0x73, 0xd9, 0x17, 0xa2, - 0x94, 0x44, 0x75, 0x52, 0x02, 0x65, 0x0b, 0x16, 0xe4, 0x16, 0xad, 0x7c, 0x17, 0x99, 0xa1, 0xd0, - 0xd7, 0x38, 0x73, 0x5f, 0xc3, 0x02, 0xb7, 0x03, 0x8d, 0x4c, 0x41, 0xd6, 0x53, 0xf1, 0x9a, 0x50, - 0x23, 0x81, 0x6f, 0x60, 0xa9, 0x9e, 0x90, 0x87, 0x55, 0xde, 0xde, 0xd0, 0x49, 0x28, 0x25, 0xbe, - 0x46, 0x5a, 0x8f, 0x00, 0xd5, 0xfb, 0x47, 0x67, 0x9e, 0x24, 0xf7, 0xc2, 0xc3, 0x2f, 0xd1, 0xad, - 0x84, 0x48, 0x04, 0x48, 0xbb, 0xd1, 0x53, 0x4e, 0xc9, 0x20, 0x31, 0x3a, 0x64, 0x4f, 0xe9, 0x59, - 0xa5, 0x9e, 0xdb, 0x73, 0x8f, 0xbc, 0x8e, 0x17, 0x79, 0x98, 0x98, 0x85, 0x8a, 0xa0, 0x36, 0x89, - 0x19, 0xbc, 0x61, 0xec, 0x81, 0xbe, 0x82, 0xb9, 0x6d, 0x1c, 0xc5, 0x55, 0xcc, 0x68, 0x39, 0x55, - 0xf7, 0xcc, 0xe7, 0x4d, 0xbc, 0x2c, 0xd3, 0x4b, 0xa7, 0x77, 0xa1, 0xf0, 0xb4, 0xd7, 0x26, 0x3b, - 0x63, 0x4c, 0xe2, 0x56, 0x8a, 0x04, 0xef, 0xe2, 0x06, 0xee, 0x59, 0x68, 0xd4, 0xd6, 0x7d, 0x18, - 0x3f, 0xf0, 0xba, 0xc7, 0x48, 0x3c, 0x18, 0x53, 0x0a, 0x51, 0x4b, 0x0b, 0x1a, 0x8c, 0x9b, 0xde, - 0x11, 0x94, 0x59, 0xf9, 0x6e, 0xba, 0x64, 0x56, 0x7c, 0x47, 0xd0, 0x3b, 0xf2, 0x7e, 0x62, 0x48, - 0x99, 0xaf, 0xd4, 0x4f, 0xb2, 0xbd, 0xb1, 0x81, 0x0e, 0xa8, 0xd6, 0xd3, 0x03, 0x20, 0x91, 0xb5, - 0x1c, 0x56, 0xfa, 0x5b, 0x42, 0x49, 0xc2, 0x8d, 0x0d, 0x24, 0x5f, 0xe0, 0x67, 0x10, 0x7d, 0x4f, - 0xab, 0x18, 0xbc, 0x1c, 0xdd, 0xfb, 0x74, 0xff, 0xa0, 0xdf, 0xd5, 0xb8, 0x14, 0xf3, 0xa6, 0x14, - 0x4b, 0x96, 0xf4, 0x6f, 0x7b, 0x44, 0x1b, 0x74, 0xc7, 0xa0, 0x45, 0xfb, 0xe8, 0xba, 0x8e, 0x11, - 0x66, 0xa3, 0x7c, 0x64, 0xa1, 0x0d, 0x00, 0xc6, 0x1c, 0x1d, 0x48, 0x6f, 0x36, 0xce, 0xec, 0x06, - 0xd9, 0x16, 0xda, 0x97, 0x44, 0xfa, 0x4a, 0x6c, 0x0d, 0x14, 0xa9, 0xa8, 0x5d, 0x6c, 0xab, 0x52, - 0x99, 0xf0, 0x77, 0xa1, 0x50, 0x69, 0x51, 0x67, 0x25, 0xeb, 0x37, 0xd1, 0xaa, 0x5c, 0x08, 0x7a, - 0x83, 0xa0, 0xb5, 0x94, 0x2c, 0x07, 0xdd, 0xc3, 0x2e, 0x4d, 0x36, 0x2e, 0xcb, 0x2d, 0x2b, 0xd1, - 0x94, 0x8d, 0x61, 0x64, 0x6a, 0x0b, 0x16, 0x6b, 0x6e, 0xb7, 0x85, 0x3b, 0x6f, 0x46, 0xe6, 0x0b, - 0xba, 0x6a, 0x95, 0xda, 0xd6, 0xeb, 0x49, 0x7c, 0xbe, 0x68, 0x45, 0x0c, 0xa7, 0x74, 0xad, 0xc0, - 0x55, 0xa6, 0xc4, 0x58, 0x2d, 0x26, 0x6c, 0xd3, 0xf0, 0x9f, 0xc1, 0xfc, 0x16, 0xf1, 0x6a, 0xfd, - 0xb6, 0xc7, 0xee, 0xa5, 0x90, 0x7e, 0xd1, 0x60, 0x44, 0xdc, 0x81, 0x6b, 0xe2, 0xe8, 0x20, 0x8b, - 0x3e, 0xa5, 0x63, 0x4d, 0xd7, 0xd5, 0x96, 0x16, 0x05, 0x59, 0xb5, 0x3e, 0x94, 0x6e, 0x61, 0x47, - 0xa2, 0xb0, 0x28, 0x51, 0xca, 0xa7, 0xae, 0x4b, 0x63, 0xa1, 0x5f, 0xe9, 0x9d, 0xe1, 0x9d, 0xb8, - 0x7f, 0x71, 0x60, 0xd9, 0x50, 0x21, 0x89, 0xde, 0x15, 0x1b, 0xed, 0xd0, 0x0a, 0xca, 0x8c, 0x80, - 0xe7, 0x3b, 0xa5, 0x4e, 0xc6, 0x40, 0x73, 0x78, 0xe9, 0xa4, 0x51, 0xb7, 0xbf, 0x12, 0x89, 0xde, - 0xcc, 0x12, 0x47, 0xf4, 0xbe, 0x4e, 0x7d, 0x48, 0x19, 0xa4, 0x71, 0x84, 0x27, 0xd4, 0xea, 0xe2, - 0x0a, 0x3b, 0x19, 0x36, 0x64, 0x95, 0x41, 0xca, 0xb0, 0x21, 0xb3, 0x3e, 0xd1, 0x1e, 0xfb, 0x3b, - 0x39, 0x0b, 0x6d, 0xc3, 0xd5, 0x44, 0xb1, 0x21, 0xba, 0x95, 0x54, 0xec, 0x08, 0x85, 0x32, 0x42, - 0x8f, 0x85, 0x4d, 0xa7, 0x09, 0x65, 0x97, 0x1f, 0x9a, 0x64, 0x64, 0xe4, 0x9e, 0xca, 0x20, 0x42, - 0x2d, 0x28, 0x44, 0x77, 0x32, 0x54, 0x78, 0x31, 0xd5, 0x31, 0xb2, 0x75, 0x28, 0x24, 0xeb, 0xf1, - 0xd0, 0xaa, 0xd4, 0x52, 0x66, 0xd1, 0x61, 0xa9, 0x6c, 0x6c, 0xe7, 0x46, 0xfa, 0x4d, 0x3c, 0x29, - 0x2c, 0x4b, 0x9a, 0x9c, 0x14, 0xb5, 0x16, 0x2b, 0x35, 0x29, 0x7a, 0x89, 0xd5, 0x36, 0xbd, 0x2c, - 0x52, 0x0a, 0xeb, 0x90, 0x41, 0x9e, 0xd2, 0xad, 0x2c, 0x3a, 0xf1, 0xca, 0xa9, 0x43, 0x21, 0x59, - 0x65, 0x26, 0x25, 0x35, 0x14, 0xd8, 0x49, 0x49, 0x8d, 0xe5, 0x69, 0xdf, 0x40, 0x21, 0x59, 0x62, - 0x26, 0x89, 0x1a, 0x6a, 0xcf, 0x8c, 0xa6, 0xfc, 0x10, 0x16, 0xf5, 0x59, 0x1c, 0x21, 0xaf, 0x39, - 0x5a, 0x9c, 0xd3, 0x0a, 0xcb, 0x90, 0xf8, 0x0e, 0xd0, 0x44, 0x0d, 0x5b, 0x4a, 0xfb, 0x19, 0x05, - 0x6e, 0x4c, 0xfb, 0x4a, 0x91, 0xda, 0x45, 0xb4, 0x9f, 0x55, 0xd3, 0x26, 0x15, 0xa5, 0xf0, 0x25, - 0x76, 0xbe, 0x64, 0xc3, 0x65, 0x14, 0x75, 0x11, 0xd6, 0x4c, 0x74, 0x36, 0x61, 0x46, 0xa9, 0x6e, - 0x43, 0x37, 0x34, 0x35, 0x69, 0x16, 0x5f, 0xd2, 0x84, 0xd3, 0x8d, 0xbd, 0x06, 0xb3, 0x6a, 0x8d, - 0x9c, 0x91, 0x8b, 0x9b, 0x69, 0x1a, 0xa1, 0x72, 0x62, 0x99, 0x97, 0x5a, 0x60, 0xdc, 0xac, 0x24, - 0x95, 0xa3, 0x31, 0x64, 0x16, 0x09, 0xa9, 0xaa, 0x19, 0xc1, 0x92, 0x39, 0x22, 0x58, 0x60, 0xb1, - 0x91, 0xfe, 0x9d, 0xc6, 0x86, 0xaf, 0x46, 0x36, 0x92, 0x39, 0xa0, 0x57, 0xd0, 0x6a, 0xc1, 0x1b, - 0x52, 0xac, 0x24, 0xa3, 0x10, 0xae, 0xb4, 0x6a, 0x6a, 0xe6, 0x6a, 0xda, 0x83, 0x6b, 0xa9, 0x9a, - 0x3e, 0x54, 0xd6, 0xdc, 0x73, 0xba, 0x38, 0x6f, 0xc8, 0xf9, 0xfc, 0x5a, 0xaa, 0xa0, 0x4f, 0x52, - 0x33, 0x95, 0xfa, 0x19, 0xa9, 0x1d, 0xc2, 0x52, 0x66, 0x91, 0x9f, 0xdc, 0xfd, 0x87, 0x95, 0x00, - 0x1a, 0xa9, 0xfe, 0x3e, 0xa0, 0x74, 0x41, 0x9e, 0x3c, 0x75, 0x1b, 0x8b, 0x06, 0xe5, 0xa9, 0x7b, - 0x48, 0x35, 0xdf, 0x1e, 0x2c, 0x66, 0x55, 0xe3, 0x21, 0x5b, 0xd3, 0x67, 0x66, 0x35, 0x5d, 0x46, - 0x10, 0xe1, 0x88, 0x45, 0x69, 0xa0, 0x36, 0xa4, 0x36, 0xcf, 0x28, 0xfc, 0x2f, 0x44, 0xc5, 0x65, - 0xba, 0x86, 0x4e, 0x1e, 0x4b, 0x46, 0x14, 0xd9, 0x0d, 0x09, 0xfb, 0xae, 0xd6, 0xbd, 0xe3, 0xae, - 0x52, 0xee, 0x26, 0x83, 0xbe, 0x74, 0x9d, 0x9d, 0x74, 0x00, 0x59, 0xd5, 0x71, 0x4f, 0x60, 0x51, - 0xec, 0x84, 0x6a, 0x79, 0x18, 0x4a, 0xe1, 0xc4, 0xf7, 0xd4, 0xd2, 0x19, 0x64, 0xd6, 0x93, 0xb1, - 0x53, 0x13, 0xfd, 0xbe, 0x4f, 0xe5, 0xd4, 0xa4, 0xd4, 0x6d, 0x95, 0xf4, 0x12, 0x2f, 0xf4, 0x80, - 0x9e, 0x9a, 0x58, 0x19, 0xbf, 0x69, 0xad, 0x2f, 0xeb, 0x94, 0x62, 0x33, 0xd8, 0x10, 0xf9, 0x31, - 0x3a, 0xa0, 0x4e, 0x79, 0xf4, 0x41, 0x88, 0x22, 0xe9, 0x07, 0x21, 0x95, 0x51, 0x73, 0x16, 0x62, - 0x56, 0x7d, 0x1d, 0x2a, 0x75, 0x95, 0xf1, 0x88, 0x5c, 0xea, 0x2a, 0xeb, 0x71, 0x36, 0x8d, 0xbb, - 0x0f, 0x45, 0xa4, 0x15, 0xd3, 0xbb, 0x35, 0xf4, 0x75, 0x75, 0x69, 0x75, 0xf8, 0x93, 0x64, 0x4a, - 0xb5, 0x0e, 0x85, 0xe4, 0x03, 0x56, 0x94, 0xf5, 0x9c, 0x5e, 0x79, 0xc5, 0x2b, 0xe3, 0x05, 0xe3, - 0xcb, 0xd7, 0x03, 0x11, 0xc5, 0xe9, 0x74, 0x0d, 0x4f, 0xa4, 0x55, 0xd2, 0xc3, 0x77, 0xfb, 0xf8, - 0x2d, 0xab, 0x1a, 0x6b, 0xa5, 0xde, 0xca, 0xaa, 0xbb, 0x7d, 0xc6, 0xf3, 0x57, 0x4f, 0x5c, 0x29, - 0x64, 0x17, 0xff, 0xbd, 0xaf, 0x47, 0x43, 0x43, 0x6e, 0x5a, 0x4a, 0xa3, 0xde, 0x92, 0xa2, 0x3f, - 0x14, 0xdf, 0x6a, 0x90, 0x2e, 0x60, 0x78, 0x37, 0x91, 0x70, 0xc8, 0xbe, 0x46, 0x28, 0x0d, 0xab, - 0x8f, 0x40, 0x8f, 0xe9, 0xdb, 0xa4, 0x27, 0xbb, 0x9b, 0x35, 0xfe, 0x0b, 0x05, 0x7e, 0x90, 0xca, - 0xe4, 0x2a, 0xdf, 0xf2, 0x17, 0x2b, 0x99, 0x75, 0xd1, 0x10, 0x1b, 0xeb, 0xa8, 0x4e, 0x13, 0x8a, - 0x1a, 0x34, 0x23, 0x99, 0x9b, 0x41, 0xb0, 0x94, 0x4d, 0x90, 0x26, 0xb6, 0xe9, 0x2e, 0x4b, 0x16, - 0x9e, 0xce, 0xa6, 0x81, 0x87, 0x61, 0x9b, 0x35, 0x33, 0x9b, 0x6c, 0x32, 0x82, 0xbb, 0x51, 0x76, - 0xc4, 0x34, 0x56, 0xaf, 0x3c, 0xde, 0x7b, 0x2d, 0x8d, 0x69, 0x88, 0x52, 0x63, 0x1a, 0xf4, 0x72, - 0x1a, 0x4b, 0x10, 0xd4, 0x35, 0xa6, 0xb3, 0x69, 0xe0, 0x61, 0xb4, 0xc6, 0xb2, 0xc9, 0x5c, 0x54, - 0x63, 0xdf, 0xd2, 0xad, 0x79, 0x9b, 0x3e, 0xe0, 0xb9, 0x94, 0xce, 0x8a, 0x22, 0xd0, 0xd4, 0x51, - 0x1b, 0x1b, 0xe8, 0x19, 0xfd, 0xea, 0x86, 0x04, 0xfc, 0x62, 0x7a, 0x5b, 0x31, 0x11, 0xa5, 0x9a, - 0xdb, 0x85, 0x25, 0xa6, 0xb9, 0x24, 0xbb, 0x46, 0x5e, 0x8c, 0x62, 0x6f, 0x8b, 0x38, 0x27, 0x49, - 0xea, 0xb2, 0xfa, 0xdb, 0xa4, 0x26, 0x72, 0x18, 0x90, 0x30, 0xb2, 0x9d, 0x8e, 0x31, 0x75, 0x22, - 0x22, 0x05, 0xac, 0x77, 0x6f, 0xac, 0xa3, 0x5d, 0x3a, 0x0b, 0x3a, 0x78, 0x58, 0x10, 0x9e, 0x4d, - 0x86, 0x2a, 0x69, 0x47, 0x04, 0x44, 0x09, 0x9e, 0x4c, 0x63, 0x9b, 0x99, 0x92, 0x27, 0x94, 0x0b, - 0x4a, 0x67, 0x52, 0x11, 0xdb, 0xd8, 0xd9, 0x81, 0x60, 0x94, 0x66, 0x92, 0xbf, 0xee, 0x83, 0x7e, - 0x0f, 0xa6, 0x05, 0xf2, 0x68, 0x85, 0x24, 0xb1, 0xf9, 0xd5, 0xdb, 0x0c, 0x57, 0x08, 0xe5, 0xc0, - 0x34, 0x92, 0x91, 0xfd, 0x2f, 0x61, 0x86, 0xab, 0x61, 0xa8, 0x04, 0xe6, 0xf8, 0x7c, 0x69, 0x1b, - 0x47, 0x19, 0xbf, 0x3e, 0x31, 0x4a, 0x98, 0xac, 0x1f, 0xbb, 0x40, 0x0d, 0xfa, 0x1e, 0xd2, 0xf4, - 0x4b, 0x21, 0x26, 0x92, 0x23, 0x7f, 0xa7, 0x84, 0xd0, 0xad, 0x9b, 0xe9, 0x8e, 0xc4, 0x37, 0x4a, - 0xbf, 0x0f, 0x2b, 0x34, 0xd9, 0x7e, 0x59, 0x8e, 0xcd, 0xe7, 0x93, 0x1b, 0xf1, 0x2b, 0xf4, 0xe4, - 0x8f, 0x94, 0x98, 0x88, 0x8d, 0xfa, 0x7d, 0x14, 0x42, 0xb5, 0x6e, 0xa4, 0x3a, 0x0a, 0x7b, 0xc8, - 0x66, 0x74, 0x93, 0xca, 0x7e, 0x49, 0x6e, 0x87, 0x7b, 0x9a, 0xc4, 0xaf, 0xa6, 0x98, 0x03, 0xe5, - 0xec, 0xdf, 0x65, 0x21, 0x54, 0xea, 0x29, 0x2a, 0xa6, 0xde, 0xc3, 0x36, 0x1f, 0x2a, 0xda, 0x05, - 0xb9, 0x31, 0x5f, 0x5f, 0x4c, 0xcb, 0x02, 0x0c, 0xa4, 0xc4, 0xf6, 0x5a, 0x79, 0x41, 0x69, 0x4e, - 0xbd, 0xcf, 0x0f, 0x51, 0x85, 0xed, 0xf1, 0x6a, 0x21, 0x82, 0x92, 0xec, 0xcb, 0xac, 0x50, 0x48, - 0x92, 0x60, 0x67, 0x13, 0xfa, 0x53, 0x2e, 0xca, 0xd9, 0x44, 0x79, 0xa2, 0x5d, 0xd2, 0x1f, 0x50, - 0x73, 0x17, 0x46, 0x5f, 0x51, 0xab, 0x37, 0x3a, 0xea, 0x23, 0x6d, 0xf5, 0x6c, 0xa2, 0x3f, 0x27, - 0x97, 0x67, 0x13, 0x3a, 0xa0, 0x4e, 0x79, 0xf4, 0xd9, 0x84, 0x22, 0xe9, 0x67, 0x13, 0x95, 0x51, - 0xf3, 0xc2, 0x43, 0xe9, 0xf7, 0xe4, 0xf2, 0xc8, 0x6d, 0x7c, 0x6a, 0x3e, 0xe4, 0xd2, 0x67, 0x21, - 0xa3, 0x72, 0x48, 0xc6, 0xfc, 0xe6, 0xaa, 0xa2, 0x92, 0x7e, 0x83, 0xf1, 0x91, 0x85, 0xf6, 0xe9, - 0x17, 0x28, 0x65, 0xfd, 0xc2, 0x8d, 0xc9, 0x7e, 0x86, 0xfe, 0xa4, 0x0e, 0xa1, 0x57, 0xcf, 0xa6, - 0x37, 0x14, 0x6f, 0xc8, 0xb1, 0xee, 0x06, 0x7f, 0x3a, 0x71, 0x09, 0x16, 0xcd, 0x26, 0x3e, 0xc5, - 0x52, 0xb9, 0x66, 0xd4, 0x82, 0xfa, 0x93, 0x32, 0x74, 0xcb, 0x5a, 0x83, 0x49, 0x86, 0x64, 0xdc, - 0x6d, 0xb4, 0x9f, 0xa1, 0x41, 0x1f, 0xc3, 0xb4, 0x4c, 0xee, 0x22, 0xad, 0xc9, 0xc8, 0xd7, 0xc7, - 0x30, 0xcd, 0xb2, 0x63, 0x17, 0x47, 0x79, 0xc0, 0xbe, 0x21, 0x9b, 0xa1, 0x5c, 0x76, 0x1b, 0xfc, - 0x1a, 0xe6, 0xd4, 0xbc, 0xf0, 0xe5, 0x15, 0xf9, 0x25, 0xcd, 0x50, 0x8a, 0x54, 0x83, 0x19, 0x7f, - 0x29, 0xf5, 0x93, 0x41, 0x54, 0xa5, 0x9f, 0xd3, 0x34, 0xa9, 0x2c, 0x9d, 0x33, 0xb1, 0x9f, 0xfe, - 0xc1, 0x21, 0xf4, 0x00, 0xe6, 0x99, 0x72, 0x25, 0x72, 0xba, 0xd3, 0x10, 0x9d, 0xcd, 0x33, 0x35, - 0xbf, 0x0e, 0xf2, 0xef, 0x89, 0x7c, 0xea, 0x48, 0xb6, 0x2f, 0x92, 0x49, 0x1d, 0xad, 0x3a, 0x13, - 0x95, 0x3f, 0xa4, 0x9b, 0x6e, 0x76, 0xdd, 0x88, 0x91, 0xd8, 0x3d, 0x25, 0x53, 0x3c, 0xbc, 0xe2, - 0xe4, 0x89, 0xf8, 0x42, 0xad, 0xec, 0xdf, 0x9d, 0x1a, 0x51, 0x7e, 0x92, 0x91, 0xc5, 0xfb, 0x55, - 0x76, 0x65, 0x86, 0x20, 0xa8, 0x5f, 0xd8, 0x0d, 0x2b, 0x4e, 0x19, 0x72, 0x6a, 0x8a, 0xbf, 0x17, - 0xeb, 0x92, 0x7a, 0x31, 0xdf, 0x01, 0xa2, 0x74, 0xa5, 0x8b, 0x91, 0xca, 0x1d, 0x93, 0x76, 0x63, - 0xb5, 0x3e, 0xa6, 0xf1, 0x42, 0xe2, 0x27, 0xb6, 0xca, 0x26, 0xbc, 0x64, 0x20, 0x9e, 0x2c, 0xa0, - 0x41, 0xdb, 0xb0, 0xc8, 0x96, 0x41, 0x82, 0xa2, 0x09, 0x61, 0xc8, 0xd1, 0x6b, 0x91, 0x2d, 0x89, - 0x37, 0x25, 0x24, 0x93, 0xb5, 0x09, 0x42, 0xf6, 0x90, 0xf9, 0x1d, 0x9d, 0x88, 0x2a, 0x1a, 0x26, - 0xf6, 0xf2, 0x33, 0xea, 0xc6, 0x6f, 0xce, 0xd2, 0xa5, 0x37, 0x72, 0x2b, 0x36, 0x96, 0x01, 0xc9, - 0x39, 0x1e, 0x52, 0xb7, 0x53, 0x8b, 0xbf, 0x88, 0x54, 0xab, 0xd5, 0xa9, 0x39, 0x7b, 0x32, 0x85, - 0x96, 0x55, 0xc4, 0x53, 0x02, 0xd1, 0xe8, 0xec, 0xa1, 0x53, 0x28, 0x9a, 0xea, 0x4c, 0xe2, 0x77, - 0x33, 0xc3, 0xab, 0x70, 0x4a, 0x3f, 0x19, 0xd9, 0x8f, 0x73, 0xbc, 0x0f, 0x8b, 0x59, 0x55, 0x22, - 0x72, 0xd2, 0x86, 0x94, 0x90, 0x64, 0x3e, 0xce, 0x39, 0x80, 0xa5, 0xcc, 0x4a, 0x0d, 0x79, 0x61, - 0x31, 0xac, 0x8e, 0x23, 0x93, 0xe2, 0x77, 0xb0, 0x6c, 0x28, 0x4b, 0x88, 0x93, 0x7a, 0x43, 0xcb, - 0x16, 0x8c, 0x06, 0xf1, 0x3d, 0x94, 0xcc, 0x8f, 0xe5, 0xd1, 0x3d, 0x3d, 0x31, 0x69, 0x7e, 0x8f, - 0x5e, 0x7a, 0xff, 0x02, 0x3d, 0xe5, 0x37, 0xce, 0x2c, 0x1b, 0xde, 0xcf, 0x4b, 0x61, 0x86, 0xbf, - 0xaf, 0x37, 0xa9, 0xc8, 0xf0, 0x64, 0x7e, 0x08, 0x55, 0x4d, 0x84, 0x78, 0x23, 0x53, 0x1a, 0x1b, - 0x1f, 0x13, 0xf3, 0xc8, 0x7a, 0x0f, 0x2e, 0xcd, 0x63, 0xc8, 0x63, 0xf1, 0x2c, 0x4e, 0xab, 0x85, - 0x1f, 0xff, 0xdb, 0xaa, 0xf5, 0xe3, 0xaf, 0x57, 0xad, 0xff, 0xf4, 0xeb, 0x55, 0xeb, 0xcf, 0x7e, - 0xbd, 0x6a, 0x1d, 0x4d, 0x52, 0x42, 0x1b, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x65, 0x71, 0x6f, - 0x54, 0x2f, 0x7b, 0x00, 0x00, + // 8201 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x7d, 0x4b, 0x6c, 0x1c, 0xc9, + 0x92, 0x98, 0xaa, 0xf9, 0x6b, 0x06, 0x3f, 0x6a, 0x25, 0x49, 0xb1, 0xd5, 0xa2, 0xd8, 0x52, 0x69, + 0x66, 0x9e, 0x66, 0x76, 0x96, 0x9a, 0x21, 0x67, 0xde, 0xcc, 0x1b, 0xbd, 0x99, 0xd9, 0xee, 0x26, + 0x45, 0x72, 0x44, 0x51, 0x9c, 0x6a, 0xaa, 0x35, 0xfb, 0x76, 0x16, 0xfd, 0x8a, 0xdd, 0x29, 0xb2, + 0xc0, 0x66, 0x57, 0xbf, 0xaa, 0x6a, 0x69, 0x64, 0xc3, 0x80, 0x7f, 0x6b, 0x1b, 0xfe, 0x00, 0x7b, + 0xb0, 0x0f, 0x3e, 0xd9, 0x80, 0x6f, 0x36, 0xe0, 0x83, 0xe1, 0x83, 0x2f, 0xf6, 0xc1, 0xa7, 0x59, + 0x03, 0xc6, 0xfa, 0x62, 0x18, 0x58, 0xc0, 0xed, 0xf5, 0x3b, 0xf2, 0x64, 0xc0, 0xb0, 0x01, 0x3f, + 0x5f, 0x8c, 0xfc, 0x56, 0x66, 0x55, 0x65, 0x37, 0x29, 0xc9, 0x6f, 0x2f, 0x12, 0x3b, 0x32, 0x23, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0xa2, 0x1b, 0xae, 0xb9, 0xfd, 0xe8, 0x24, 0xc4, 0xc1, + 0x0b, 0xaf, 0x85, 0xd7, 0x7a, 0x81, 0x1f, 0xf9, 0x68, 0x82, 0xfe, 0x57, 0x5a, 0x3c, 0xf6, 0x8f, + 0x7d, 0xfa, 0xe7, 0x7d, 0xf2, 0x17, 0x6b, 0x2c, 0xdd, 0x3c, 0xf6, 0xfd, 0xe3, 0x0e, 0xbe, 0x4f, + 0x3f, 0x1d, 0xf5, 0x9f, 0xdf, 0xc7, 0x67, 0xbd, 0xe8, 0x15, 0x6f, 0x2c, 0x27, 0x1b, 0x23, 0xef, + 0x0c, 0x87, 0x91, 0x7b, 0xd6, 0xe3, 0x1d, 0x3e, 0x3b, 0xf6, 0xa2, 0x93, 0xfe, 0xd1, 0x5a, 0xcb, + 0x3f, 0xbb, 0x7f, 0x1c, 0xb8, 0x2f, 0xbc, 0xc8, 0x8d, 0x3c, 0xbf, 0xeb, 0x76, 0xee, 0x47, 0xb8, + 0x83, 0x7b, 0x7e, 0x10, 0xdd, 0x77, 0x7b, 0xde, 0xfd, 0xe8, 0x55, 0x0f, 0x87, 0xec, 0x5f, 0x8e, + 0x58, 0xbb, 0x0c, 0xe2, 0x4b, 0x7c, 0x44, 0x66, 0xd5, 0x95, 0x7f, 0xbc, 0x16, 0x91, 0xc0, 0xed, + 0xf5, 0x70, 0x10, 0xff, 0xc1, 0x89, 0x7c, 0x7d, 0x19, 0x22, 0xf8, 0x05, 0xee, 0x46, 0xe2, 0x3f, + 0x46, 0xc0, 0xfe, 0x17, 0x8b, 0x30, 0xb1, 0x45, 0x00, 0xe8, 0x73, 0x18, 0x3f, 0x7c, 0xd5, 0xc3, + 0x45, 0xeb, 0xb6, 0x75, 0x6f, 0x7e, 0xbd, 0xc0, 0xda, 0xd7, 0x9e, 0xf4, 0x70, 0x40, 0x49, 0x56, + 0xd1, 0xf9, 0xa0, 0x3c, 0x4f, 0x08, 0x7d, 0xe8, 0x9f, 0x79, 0x11, 0x15, 0xb4, 0x43, 0x31, 0xd0, + 0x33, 0x98, 0x77, 0x70, 0xe8, 0xf7, 0x83, 0x16, 0xde, 0xc1, 0x6e, 0x1b, 0x07, 0xc5, 0xdc, 0x6d, + 0xeb, 0xde, 0xcc, 0xfa, 0xd2, 0x1a, 0x13, 0x9a, 0xde, 0x58, 0xbd, 0x7e, 0x3e, 0x28, 0xa3, 0x80, + 0xc3, 0x62, 0x62, 0x3b, 0x57, 0x9c, 0x04, 0x19, 0xf4, 0x3d, 0xcc, 0xd5, 0x70, 0x10, 0x55, 0xfa, + 0xd1, 0x89, 0x1f, 0x78, 0xd1, 0xab, 0xe2, 0x18, 0xa5, 0x7b, 0x9d, 0xd3, 0xd5, 0xda, 0x1a, 0xeb, + 0xd5, 0x95, 0xf3, 0x41, 0xb9, 0xd8, 0xc2, 0x41, 0xd4, 0x74, 0x05, 0x54, 0x23, 0xaf, 0x13, 0x43, + 0xdf, 0xc1, 0x6c, 0x9d, 0x88, 0xab, 0x75, 0xe8, 0x9f, 0xe2, 0x6e, 0x58, 0x1c, 0xd7, 0x98, 0x56, + 0x9b, 0x1a, 0xeb, 0xd5, 0x9b, 0xe7, 0x83, 0xf2, 0x72, 0x48, 0x61, 0xcd, 0x88, 0x02, 0x35, 0xd2, + 0x1a, 0x25, 0xf4, 0x4b, 0x98, 0x3f, 0x08, 0xfc, 0x17, 0x5e, 0xe8, 0xf9, 0x5d, 0x0a, 0x2a, 0x4e, + 0x50, 0xda, 0xcb, 0x9c, 0xb6, 0xde, 0xd8, 0x58, 0xaf, 0xde, 0x3a, 0x1f, 0x94, 0x6f, 0xf4, 0x04, + 0x94, 0x0d, 0xa0, 0x4b, 0x46, 0x47, 0x41, 0x87, 0x30, 0x53, 0xeb, 0xf4, 0xc3, 0x08, 0x07, 0xfb, + 0xee, 0x19, 0x2e, 0x4e, 0x52, 0xf2, 0x8b, 0x42, 0x2e, 0x71, 0x4b, 0x63, 0xbd, 0x5a, 0x3a, 0x1f, + 0x94, 0xaf, 0xb7, 0x18, 0xa8, 0xd9, 0x75, 0xcf, 0x74, 0x91, 0xab, 0x64, 0xd0, 0x67, 0x30, 0xfe, + 0x34, 0xc4, 0x41, 0x31, 0x4f, 0xc9, 0xcd, 0x71, 0x72, 0x04, 0xd4, 0x58, 0x67, 0xeb, 0xdf, 0x0f, + 0x71, 0xa0, 0xe1, 0x53, 0x04, 0x82, 0xe8, 0xf8, 0x1d, 0x5c, 0x9c, 0xd6, 0x10, 0x09, 0xa8, 0xf1, + 0x09, 0x43, 0x0c, 0xfc, 0x8e, 0x3e, 0x30, 0x45, 0x40, 0xbb, 0x30, 0x4d, 0x46, 0x0e, 0x7b, 0x6e, + 0x0b, 0x17, 0x81, 0x62, 0x17, 0x38, 0xb6, 0x84, 0x57, 0x97, 0xcf, 0x07, 0xe5, 0x85, 0xae, 0xf8, + 0xa8, 0x51, 0x89, 0xb1, 0xd1, 0xd7, 0x30, 0x59, 0xc7, 0xc1, 0x0b, 0x1c, 0x14, 0x67, 0x28, 0x9d, + 0xab, 0x62, 0x21, 0x29, 0xb0, 0xb1, 0x5e, 0x5d, 0x3c, 0x1f, 0x94, 0x0b, 0x21, 0xfd, 0xa4, 0xd1, + 0xe0, 0x68, 0x44, 0xdb, 0x1c, 0xfc, 0x02, 0x07, 0x21, 0x3e, 0xec, 0x77, 0xbb, 0xb8, 0x53, 0x9c, + 0xd5, 0xb4, 0x4d, 0x6b, 0x13, 0xda, 0x16, 0x30, 0x60, 0x33, 0xa2, 0x50, 0x5d, 0xdb, 0x34, 0x04, + 0x74, 0x02, 0x05, 0xf6, 0x57, 0xcd, 0xef, 0x76, 0x71, 0x8b, 0x6c, 0xa9, 0xe2, 0x1c, 0x1d, 0xe0, + 0x06, 0x1f, 0x20, 0xd9, 0xdc, 0x58, 0xaf, 0x96, 0xcf, 0x07, 0xe5, 0x9b, 0x8c, 0x76, 0xb3, 0x25, + 0x1b, 0xb4, 0x61, 0x52, 0x54, 0xc9, 0x3c, 0x2a, 0xad, 0x16, 0x0e, 0x43, 0x07, 0xff, 0xaa, 0x8f, + 0xc3, 0xa8, 0x38, 0xaf, 0xcd, 0x43, 0x6b, 0x6b, 0x6c, 0xb0, 0x79, 0xb8, 0x14, 0xd8, 0x0c, 0x18, + 0x54, 0x9f, 0x87, 0x86, 0x80, 0x0e, 0x00, 0x2a, 0xbd, 0x5e, 0x1d, 0x87, 0x44, 0x19, 0x8b, 0x57, + 0x29, 0xe9, 0x05, 0x4e, 0xfa, 0x19, 0x3e, 0xe2, 0x0d, 0x8d, 0xf5, 0xea, 0x8d, 0xf3, 0x41, 0x79, + 0xc9, 0xed, 0xf5, 0x9a, 0x21, 0x03, 0x69, 0x44, 0x15, 0x1a, 0x4c, 0xee, 0x67, 0x7e, 0x84, 0xb9, + 0x2a, 0x16, 0x0b, 0x09, 0xb9, 0x2b, 0x6d, 0x82, 0xdf, 0x80, 0x02, 0x9b, 0x5c, 0xad, 0x93, 0x72, + 0x57, 0x10, 0xc8, 0x5e, 0xdc, 0x74, 0x23, 0xf7, 0xc8, 0x0d, 0x31, 0x57, 0x8f, 0x6b, 0xda, 0x5e, + 0xd4, 0x1b, 0x1b, 0x1b, 0x6c, 0x2f, 0xb6, 0x39, 0xb4, 0x99, 0xa1, 0x2f, 0x09, 0x7a, 0x44, 0x22, + 0xf1, 0xc4, 0x8b, 0x68, 0x84, 0x44, 0x5e, 0xe2, 0xa3, 0x6c, 0x89, 0xc4, 0x5d, 0xd1, 0x0e, 0xe4, + 0x9f, 0xe1, 0x23, 0x66, 0x39, 0x16, 0x28, 0xbd, 0x6b, 0x31, 0x3d, 0x66, 0x33, 0x36, 0xd8, 0xae, + 0x20, 0xd4, 0xd2, 0xd6, 0x42, 0x62, 0xa3, 0x3f, 0xb2, 0x60, 0x59, 0xec, 0x70, 0x1c, 0xbd, 0xf4, + 0x83, 0x53, 0xaf, 0x7b, 0x5c, 0xf3, 0xbb, 0xcf, 0xbd, 0xe3, 0xe2, 0x22, 0xa5, 0x7c, 0x3b, 0x61, + 0x34, 0x12, 0xbd, 0x1a, 0xeb, 0xd5, 0x9f, 0x9c, 0x0f, 0xca, 0x77, 0xa5, 0x01, 0x91, 0xed, 0x44, + 0x21, 0x9f, 0x7b, 0xc7, 0xda, 0xc0, 0xa6, 0xb1, 0xd0, 0x5f, 0xb3, 0xe0, 0x3a, 0x9f, 0x9d, 0x83, + 0x5b, 0x7e, 0xd0, 0x8e, 0xd9, 0x58, 0xa2, 0x6c, 0x94, 0xe5, 0x6e, 0xcd, 0xea, 0xd4, 0x58, 0xaf, + 0xbe, 0x77, 0x3e, 0x28, 0xdb, 0x5c, 0x70, 0xcd, 0x40, 0x34, 0x67, 0x31, 0x61, 0x18, 0x88, 0x68, + 0x02, 0x31, 0xfe, 0x07, 0x01, 0x7e, 0x8e, 0x03, 0xdc, 0x6d, 0xe1, 0xe2, 0x75, 0x4d, 0x13, 0xf4, + 0x46, 0x61, 0x95, 0xc9, 0x51, 0xd2, 0xec, 0x49, 0xb0, 0xae, 0x09, 0x3a, 0x0a, 0xfa, 0x15, 0x20, + 0x2e, 0x80, 0x4a, 0xbf, 0xed, 0x45, 0x7c, 0x82, 0xcb, 0x74, 0x94, 0x9b, 0xba, 0x9c, 0x95, 0x0e, + 0x8d, 0xf5, 0xaa, 0x7d, 0x3e, 0x28, 0xaf, 0x0a, 0x11, 0xbb, 0xa4, 0x29, 0x6b, 0x62, 0x19, 0xc4, + 0x89, 0xe5, 0xdd, 0xf3, 0x5b, 0xa7, 0xc5, 0xa2, 0x66, 0x79, 0x09, 0x48, 0x98, 0xec, 0x8e, 0xdf, + 0x3a, 0xd5, 0x2d, 0x2f, 0x69, 0x45, 0x11, 0x2c, 0xf0, 0x55, 0x72, 0x70, 0x18, 0x05, 0x1e, 0xb5, + 0x1d, 0x61, 0xf1, 0x06, 0xa5, 0xb3, 0x22, 0x6c, 0x70, 0xba, 0x47, 0xe3, 0x13, 0xc6, 0x2d, 0x57, + 0x84, 0x66, 0xa0, 0xb4, 0x69, 0xc3, 0x64, 0x91, 0x47, 0x7f, 0x05, 0x96, 0x9e, 0x79, 0xdd, 0xb6, + 0xff, 0x32, 0xdc, 0xc4, 0xe1, 0x69, 0xe4, 0xf7, 0xea, 0xcc, 0xd9, 0x2b, 0x96, 0xe8, 0xb8, 0xab, + 0x42, 0xcd, 0xb3, 0xfa, 0x34, 0x36, 0xaa, 0xef, 0x9e, 0x0f, 0xca, 0x77, 0x5e, 0xb2, 0xc6, 0x66, + 0x9b, 0xb5, 0x36, 0xb9, 0xbf, 0xa8, 0x0d, 0x9e, 0x3d, 0x0a, 0x51, 0x01, 0xbd, 0xa1, 0x78, 0x53, + 0x53, 0x01, 0xbd, 0x51, 0x18, 0x83, 0xc4, 0x80, 0xba, 0x0a, 0xe8, 0x28, 0x68, 0x1b, 0xf2, 0xc2, + 0x3c, 0x14, 0x57, 0xb4, 0xad, 0x2b, 0xc0, 0x8d, 0x0d, 0xe6, 0x01, 0x09, 0x13, 0xa3, 0xef, 0x5c, + 0xd1, 0x0b, 0xed, 0xc1, 0x34, 0xb5, 0x91, 0xd4, 0x64, 0xdd, 0xa2, 0x94, 0x90, 0x50, 0x54, 0x01, + 0x6f, 0x6c, 0x54, 0x8b, 0xe7, 0x83, 0xf2, 0x22, 0xb3, 0xb2, 0x29, 0x43, 0x15, 0x13, 0x40, 0x1b, + 0x30, 0x56, 0xe9, 0xf5, 0x8a, 0xab, 0x94, 0xce, 0x6c, 0x4c, 0xa7, 0xb1, 0x51, 0xbd, 0x76, 0x3e, + 0x28, 0xcf, 0xb9, 0x3d, 0x7d, 0x5a, 0xa4, 0x77, 0x15, 0x20, 0x2f, 0x1c, 0xb2, 0x6f, 0xc6, 0xf3, + 0x53, 0x85, 0xbc, 0xbd, 0x03, 0x13, 0xcf, 0xdc, 0xa8, 0x75, 0x82, 0xbe, 0x86, 0x89, 0x47, 0x5e, + 0xb7, 0x1d, 0x16, 0xad, 0xdb, 0x63, 0xf4, 0xcc, 0x66, 0xde, 0x22, 0x6d, 0x24, 0x0d, 0xd5, 0xe5, + 0x1f, 0x07, 0xe5, 0x2b, 0xe7, 0x83, 0xf2, 0xd5, 0x53, 0xd2, 0x4d, 0x71, 0x19, 0x19, 0x9e, 0xfd, + 0xaf, 0x73, 0x30, 0x2d, 0x7b, 0xa3, 0x15, 0x18, 0x27, 0xff, 0x53, 0xdf, 0x73, 0xba, 0x9a, 0x3f, + 0x1f, 0x94, 0xc7, 0x09, 0x9e, 0x43, 0xa1, 0x68, 0x1d, 0x66, 0xf6, 0x7c, 0xb7, 0x5d, 0xc7, 0xad, + 0x00, 0x47, 0x21, 0x75, 0x2e, 0xf3, 0xd5, 0xc2, 0xf9, 0xa0, 0x3c, 0xdb, 0xf1, 0xdd, 0x76, 0x33, + 0x64, 0x70, 0x47, 0xed, 0x44, 0x28, 0x52, 0xcf, 0x68, 0x2c, 0xa6, 0x48, 0x3c, 0x08, 0x87, 0x42, + 0xd1, 0x37, 0x30, 0xf9, 0xd0, 0xeb, 0x90, 0xb3, 0x66, 0x9c, 0xf2, 0xbf, 0x92, 0xe4, 0x7f, 0x8d, + 0x35, 0x6f, 0x75, 0xa3, 0xe0, 0x15, 0x73, 0x1c, 0x9e, 0x53, 0x80, 0x32, 0x11, 0x4e, 0x01, 0x7d, + 0x04, 0x53, 0xf5, 0xfe, 0x11, 0x65, 0x7f, 0x82, 0x0e, 0x46, 0x57, 0x37, 0xec, 0x1f, 0x35, 0xc9, + 0x14, 0x14, 0x04, 0xd1, 0xad, 0xf4, 0x33, 0x98, 0x51, 0xc8, 0xa3, 0x02, 0x8c, 0x9d, 0xe2, 0x57, + 0x6c, 0xee, 0x0e, 0xf9, 0x13, 0x2d, 0xc2, 0xc4, 0x0b, 0xb7, 0xd3, 0xc7, 0x74, 0xaa, 0xd3, 0x0e, + 0xfb, 0xf0, 0x45, 0xee, 0x73, 0xcb, 0xfe, 0x13, 0x0b, 0x26, 0x88, 0x17, 0x1b, 0xa2, 0xbb, 0x30, + 0x56, 0xaf, 0xef, 0x50, 0xac, 0x59, 0xb6, 0x86, 0x61, 0x78, 0xa2, 0x8c, 0x46, 0x5a, 0x49, 0xa7, + 0xc3, 0xbd, 0x3a, 0x25, 0xc3, 0x3b, 0x45, 0x1d, 0x75, 0x31, 0x48, 0x2b, 0xfa, 0x02, 0xe0, 0x70, + 0xaf, 0x5e, 0xab, 0x50, 0xba, 0xc5, 0xb1, 0xdb, 0x63, 0xf7, 0x66, 0x99, 0xd3, 0x18, 0x75, 0xc2, + 0x66, 0xcb, 0x6d, 0x12, 0x8f, 0x5a, 0x45, 0x52, 0x7a, 0x13, 0xdc, 0x7a, 0x7d, 0x47, 0xe0, 0x8e, + 0xc7, 0xb8, 0x61, 0x78, 0x92, 0x89, 0x1b, 0xf7, 0xb6, 0xff, 0x74, 0x1c, 0x0a, 0x3b, 0x7e, 0x18, + 0xd1, 0x4f, 0xc2, 0xbd, 0xb8, 0x0b, 0x93, 0x04, 0xb6, 0xbb, 0xc9, 0x75, 0x61, 0xe6, 0x7c, 0x50, + 0x9e, 0x3a, 0xf1, 0xc3, 0xa8, 0xe9, 0xb5, 0x1d, 0xde, 0x84, 0xde, 0x87, 0xfc, 0xbe, 0xdf, 0xc6, + 0x74, 0x81, 0xa9, 0x88, 0xaa, 0x73, 0xe7, 0x83, 0xf2, 0x74, 0xd7, 0x6f, 0x63, 0xea, 0xe1, 0x3a, + 0xb2, 0x19, 0x35, 0xb8, 0x67, 0xca, 0xf4, 0xa0, 0x4a, 0xf4, 0x80, 0xb8, 0xa2, 0xbf, 0x19, 0x94, + 0x7f, 0x7a, 0x89, 0xab, 0xd3, 0x5a, 0xfd, 0x55, 0x18, 0xe1, 0x33, 0x42, 0x89, 0x3b, 0xae, 0xcf, + 0x60, 0xb1, 0xd2, 0x6e, 0x7b, 0x0c, 0xe3, 0x20, 0xf0, 0xba, 0x2d, 0xaf, 0xe7, 0x76, 0x98, 0x08, + 0xa6, 0xab, 0x77, 0xcf, 0x07, 0xe5, 0xb2, 0x2b, 0xdb, 0x9b, 0x3d, 0xd9, 0x41, 0x91, 0x45, 0x26, + 0x01, 0xb4, 0x01, 0xf9, 0xcd, 0xfd, 0x3a, 0x75, 0x6b, 0x8b, 0x13, 0x94, 0x18, 0x3d, 0xe8, 0xdb, + 0xdd, 0x90, 0x4e, 0x4d, 0x25, 0x20, 0x3b, 0xa2, 0x9f, 0xc2, 0xec, 0x41, 0xff, 0xa8, 0xe3, 0xb5, + 0x0e, 0xf7, 0xea, 0x8f, 0xf0, 0x2b, 0x7a, 0x1f, 0x98, 0x65, 0xe6, 0xbf, 0x47, 0xe1, 0x4d, 0xb2, + 0x96, 0xa7, 0xf8, 0x95, 0xa3, 0xf5, 0x8b, 0xf1, 0xea, 0xf5, 0x1d, 0x82, 0x37, 0x95, 0xc2, 0x23, + 0xeb, 0xa8, 0xe0, 0xb1, 0x7e, 0xe8, 0x3e, 0x00, 0xf3, 0xb2, 0x2a, 0xed, 0x36, 0xbb, 0x2e, 0x4c, + 0x57, 0xaf, 0x9e, 0x0f, 0xca, 0x33, 0xdc, 0x2f, 0x73, 0xdb, 0xed, 0xc0, 0x51, 0xba, 0xa0, 0x1a, + 0xe4, 0x1d, 0x9f, 0x09, 0x98, 0x5f, 0x12, 0xae, 0xca, 0x4b, 0x02, 0x03, 0xf3, 0x6b, 0x21, 0xff, + 0xa4, 0xce, 0x52, 0xf4, 0x40, 0x65, 0x98, 0xda, 0xf7, 0x6b, 0x6e, 0xeb, 0x84, 0x5d, 0x15, 0xf2, + 0xd5, 0x89, 0xf3, 0x41, 0xd9, 0xfa, 0x5d, 0x47, 0x40, 0xed, 0x3f, 0x9d, 0x84, 0x02, 0xb9, 0x8f, + 0x68, 0x1a, 0xf5, 0x21, 0x4c, 0x33, 0xde, 0x1f, 0xf1, 0x4d, 0x36, 0x5b, 0x9d, 0x3f, 0x1f, 0x94, + 0x81, 0x4f, 0x90, 0x4c, 0x2e, 0xee, 0x80, 0xee, 0x41, 0x9e, 0x50, 0xe8, 0xc6, 0xaa, 0x35, 0x7b, + 0x3e, 0x28, 0xe7, 0xfb, 0x1c, 0xe6, 0xc8, 0x56, 0x54, 0x87, 0xa9, 0xad, 0x1f, 0x7a, 0x5e, 0x80, + 0x43, 0x7e, 0x2d, 0x2d, 0xad, 0xb1, 0x80, 0xc3, 0x9a, 0x08, 0x38, 0xac, 0x1d, 0x8a, 0x80, 0x43, + 0xf5, 0x16, 0x37, 0x87, 0xd7, 0x30, 0x43, 0x89, 0xe7, 0xf7, 0xc7, 0xff, 0xad, 0x6c, 0x39, 0x82, + 0x12, 0xfa, 0x10, 0x26, 0x1f, 0xfa, 0xc1, 0x99, 0x1b, 0xd1, 0xdb, 0xe8, 0x34, 0x37, 0x3d, 0x14, + 0xa2, 0x99, 0x1e, 0x0a, 0x41, 0x0f, 0x61, 0xde, 0xf1, 0xfb, 0x11, 0x3e, 0xf4, 0x85, 0xeb, 0xcc, + 0x2c, 0xd0, 0xea, 0xf9, 0xa0, 0x5c, 0x0a, 0x48, 0x4b, 0x33, 0xf2, 0xd3, 0x4e, 0xb2, 0x93, 0xc0, + 0x42, 0x5b, 0x30, 0xaf, 0x39, 0xf9, 0x61, 0x71, 0x92, 0x6a, 0x1e, 0x73, 0x80, 0xb4, 0xab, 0x81, + 0xaa, 0x7f, 0x09, 0x24, 0xb4, 0x0f, 0xd7, 0x1e, 0xf5, 0x8f, 0x70, 0xd0, 0xc5, 0x11, 0x0e, 0x05, + 0x47, 0x53, 0x94, 0xa3, 0xdb, 0xe7, 0x83, 0xf2, 0xca, 0xa9, 0x6c, 0xcc, 0xe0, 0x29, 0x8d, 0x8a, + 0x30, 0x5c, 0xe5, 0x8c, 0xca, 0x23, 0x35, 0xcf, 0xaf, 0x06, 0xcc, 0x5c, 0x27, 0x5a, 0xab, 0x77, + 0xb9, 0x94, 0x6f, 0xca, 0xb9, 0xa7, 0x0f, 0x59, 0x27, 0x49, 0x93, 0xec, 0x38, 0x69, 0x4d, 0xa6, + 0x29, 0xb7, 0xec, 0xc2, 0x29, 0xac, 0x89, 0xaa, 0x8b, 0xd2, 0xae, 0xec, 0xc1, 0xc4, 0xd3, 0xd0, + 0x3d, 0x66, 0x9a, 0x38, 0xbf, 0x7e, 0x87, 0x73, 0x94, 0xd4, 0x3e, 0x1a, 0xa3, 0xa0, 0x1d, 0xab, + 0x0b, 0xe4, 0x34, 0xec, 0x93, 0x3f, 0xd5, 0xd3, 0x90, 0xb6, 0xa1, 0x6f, 0x01, 0x38, 0x57, 0xe4, + 0x94, 0x9e, 0xe1, 0x7e, 0x83, 0x36, 0x49, 0x72, 0x20, 0xaf, 0xf2, 0xf9, 0x5d, 0x97, 0xf3, 0xd3, + 0xce, 0x6d, 0x47, 0x21, 0x62, 0x6f, 0xc2, 0xb4, 0x1c, 0x1b, 0x4d, 0xc1, 0x58, 0xa5, 0xd3, 0x29, + 0x5c, 0x21, 0x7f, 0xd4, 0xeb, 0x3b, 0x05, 0x0b, 0xcd, 0x03, 0xc4, 0x02, 0x2f, 0xe4, 0xd0, 0x6c, + 0xec, 0xb7, 0x14, 0xc6, 0x68, 0xff, 0x5e, 0xaf, 0x30, 0x6e, 0xff, 0x17, 0x2b, 0xb5, 0x06, 0xe4, + 0x38, 0xe6, 0xfe, 0x14, 0x15, 0x19, 0xb3, 0xd3, 0xf4, 0x38, 0xe6, 0x9e, 0x18, 0xb3, 0xc1, 0x6a, + 0x27, 0xb2, 0xad, 0x0e, 0xc8, 0x6c, 0x5a, 0x7e, 0x47, 0xdd, 0x56, 0x3d, 0x0e, 0x73, 0x64, 0x2b, + 0x5a, 0x57, 0x36, 0xe0, 0x58, 0x7c, 0x9e, 0x8a, 0x0d, 0xa8, 0x2e, 0x86, 0xdc, 0x8a, 0xeb, 0x8a, + 0xd3, 0x35, 0x1e, 0xe3, 0x64, 0x2c, 0xbe, 0xec, 0x67, 0xff, 0x1f, 0x4b, 0x95, 0xb9, 0xf4, 0x17, + 0xac, 0x4c, 0x7f, 0xe1, 0x43, 0x98, 0xe6, 0x97, 0x8a, 0xdd, 0x4d, 0xce, 0x3f, 0xb5, 0x21, 0xe2, + 0x3e, 0xe2, 0xb5, 0x9d, 0xb8, 0x03, 0xb1, 0x8e, 0xcc, 0xa0, 0x50, 0xeb, 0x38, 0x16, 0x5b, 0x47, + 0x6e, 0x72, 0x98, 0x75, 0x8c, 0xbb, 0x10, 0x89, 0xaa, 0xd1, 0x9c, 0xf1, 0x58, 0xa2, 0x6a, 0xdc, + 0x46, 0x8f, 0xd5, 0x7c, 0x01, 0x50, 0x79, 0x56, 0x27, 0x67, 0x51, 0xc5, 0xd9, 0xe7, 0xfb, 0x9e, + 0x9e, 0xbc, 0xee, 0xcb, 0xb0, 0x49, 0x8e, 0xb8, 0xa6, 0x1b, 0xa8, 0x66, 0x54, 0xe9, 0x6d, 0x77, + 0x60, 0x7e, 0x1b, 0x47, 0x44, 0x7c, 0xc2, 0x48, 0x0e, 0x9f, 0xfe, 0xcf, 0x61, 0xe6, 0x99, 0x17, + 0x9d, 0xe8, 0x0e, 0x18, 0x1d, 0xec, 0xa5, 0x17, 0x9d, 0x08, 0x07, 0x4c, 0x19, 0x4c, 0xed, 0x6e, + 0x6f, 0xc1, 0x55, 0x3e, 0x9a, 0xb4, 0xc9, 0xeb, 0x3a, 0x41, 0x2b, 0xf6, 0xe8, 0x54, 0x82, 0x3a, + 0x19, 0x9c, 0x34, 0x52, 0xa8, 0x9e, 0x32, 0x5b, 0xcc, 0x1b, 0x35, 0x45, 0x3a, 0xe8, 0x0e, 0x4c, + 0x98, 0xb3, 0xa4, 0x11, 0xb3, 0x9f, 0xc2, 0xdc, 0x41, 0xa7, 0x7f, 0xec, 0x75, 0x89, 0xa6, 0xd4, + 0xf1, 0xaf, 0xd0, 0x26, 0x40, 0x0c, 0xe0, 0x23, 0x88, 0xeb, 0x7d, 0xdc, 0xd0, 0xd8, 0xe0, 0x4b, + 0x4c, 0x21, 0xd4, 0xee, 0x38, 0x0a, 0x9e, 0xfd, 0x77, 0xc7, 0x00, 0xf1, 0x31, 0xea, 0x91, 0x1b, + 0xe1, 0x3a, 0x8e, 0x88, 0x89, 0xbb, 0x0e, 0x39, 0xe9, 0xea, 0x4c, 0x9e, 0x0f, 0xca, 0x39, 0xaf, + 0xed, 0xe4, 0x76, 0x37, 0xd1, 0x27, 0x30, 0x41, 0xbb, 0x51, 0x59, 0xcf, 0xcb, 0xf1, 0x54, 0x0a, + 0xd5, 0xe9, 0xf3, 0x41, 0x79, 0x22, 0x24, 0x7f, 0x3a, 0xac, 0x33, 0xfa, 0x14, 0xa6, 0x37, 0x71, + 0x07, 0x1f, 0xbb, 0x91, 0x2f, 0xf4, 0x8e, 0x39, 0x0f, 0x02, 0xa8, 0x2c, 0x51, 0xdc, 0x93, 0x1c, + 0x3a, 0x0e, 0x76, 0x43, 0xbf, 0xab, 0x1e, 0x3a, 0x01, 0x85, 0xa8, 0x87, 0x0e, 0xeb, 0x83, 0xfe, + 0x91, 0x05, 0x33, 0x95, 0x6e, 0x97, 0x1f, 0xca, 0x21, 0x0f, 0x6d, 0x2e, 0xad, 0xc9, 0xc8, 0xf4, + 0x9e, 0x7b, 0x84, 0x3b, 0x0d, 0xe2, 0xb2, 0x86, 0xd5, 0xef, 0x89, 0xc5, 0xfa, 0xb3, 0x41, 0xf9, + 0xc1, 0xeb, 0x04, 0xbb, 0xd7, 0x0e, 0x03, 0xd7, 0x8b, 0x42, 0x1a, 0x47, 0x8a, 0x07, 0x54, 0xd5, + 0x4c, 0xe1, 0x03, 0xbd, 0x0f, 0x13, 0x44, 0xbf, 0xc5, 0xd9, 0x45, 0x17, 0x9b, 0xec, 0x03, 0xed, + 0xf2, 0x41, 0x7b, 0xd8, 0x77, 0x61, 0x9a, 0x4b, 0x72, 0x77, 0xd3, 0xb4, 0x04, 0xf6, 0x26, 0xdc, + 0xa2, 0x9e, 0x07, 0x26, 0x9a, 0x4b, 0xa3, 0x29, 0x5c, 0x13, 0x63, 0x57, 0x75, 0x8a, 0x82, 0x25, + 0x36, 0x5d, 0x10, 0x1a, 0x8d, 0x71, 0x44, 0x8b, 0x5d, 0x83, 0x95, 0x6d, 0x1c, 0x39, 0x38, 0xc4, + 0xd1, 0x81, 0x1b, 0x86, 0x2f, 0xfd, 0xa0, 0x4d, 0x9b, 0x2e, 0x45, 0xe4, 0x6f, 0x5a, 0x50, 0xae, + 0x05, 0x98, 0xac, 0xb4, 0x91, 0xd0, 0xf0, 0x1d, 0xbc, 0xc2, 0x83, 0xfb, 0xb9, 0xb8, 0x95, 0xc8, + 0x9a, 0x07, 0xf0, 0xdf, 0x85, 0xb1, 0xc3, 0xc3, 0x3d, 0xaa, 0x31, 0x63, 0x54, 0x70, 0x63, 0x51, + 0xd4, 0xf9, 0xcd, 0xa0, 0x9c, 0xdf, 0xec, 0xb3, 0xe0, 0xbf, 0x43, 0xda, 0xed, 0x39, 0x98, 0x39, + 0xf0, 0xba, 0xc7, 0x7c, 0x44, 0xfb, 0xef, 0xe5, 0x60, 0x96, 0x7d, 0x0e, 0x7b, 0x7e, 0x97, 0x1d, + 0x0c, 0xaa, 0x19, 0xb3, 0x2e, 0x62, 0xc6, 0x3e, 0x87, 0x39, 0x7e, 0x97, 0xc5, 0x01, 0x8d, 0x9f, + 0x31, 0x0e, 0xa9, 0x0b, 0xca, 0xae, 0xb4, 0xcd, 0x17, 0xac, 0xc5, 0xd1, 0x3b, 0xa2, 0x3d, 0x98, + 0x67, 0x80, 0x87, 0xd8, 0x8d, 0xfa, 0xb1, 0x1b, 0x76, 0x95, 0x9f, 0x9b, 0x02, 0xcc, 0x34, 0x81, + 0xd3, 0x7a, 0xce, 0x81, 0x4e, 0x02, 0x17, 0x7d, 0x0d, 0x57, 0x0f, 0x02, 0xff, 0x87, 0x57, 0x8a, + 0xe1, 0x66, 0x9b, 0x61, 0x89, 0x78, 0x6d, 0x3d, 0xd2, 0xd4, 0x54, 0xcd, 0x77, 0xb2, 0xb7, 0xfd, + 0x7f, 0x73, 0x90, 0x97, 0xd4, 0xd6, 0xd4, 0xd3, 0x95, 0x9b, 0x37, 0x7a, 0x60, 0xc4, 0x2e, 0x90, + 0xa3, 0xf4, 0x40, 0x37, 0xd8, 0xf5, 0x9c, 0x19, 0xd6, 0x29, 0xb2, 0x00, 0x6e, 0xaf, 0x47, 0x2f, + 0xe1, 0x44, 0x3d, 0x37, 0xab, 0x74, 0x6a, 0x79, 0xa6, 0x9e, 0xed, 0x23, 0x27, 0xb7, 0x59, 0x25, + 0x2b, 0xfa, 0x64, 0x77, 0xb3, 0x46, 0xb9, 0xcc, 0xb3, 0x15, 0xf5, 0xbd, 0x76, 0xcb, 0xa1, 0x50, + 0xd2, 0x5a, 0xaf, 0x3c, 0xde, 0xa3, 0x9b, 0x93, 0xb7, 0x86, 0xee, 0x59, 0xc7, 0xa1, 0x50, 0xf4, + 0x40, 0x18, 0xce, 0x9a, 0xdf, 0x8d, 0x02, 0xbf, 0x13, 0xd2, 0x0b, 0x43, 0x5e, 0x33, 0x90, 0x2d, + 0xde, 0xe4, 0x24, 0xba, 0xa2, 0x67, 0xb0, 0x5c, 0x69, 0xbf, 0x70, 0xbb, 0x2d, 0xdc, 0x66, 0x2d, + 0xcf, 0xfc, 0xe0, 0xf4, 0x79, 0xc7, 0x7f, 0x19, 0x52, 0x5f, 0x2f, 0xcf, 0xbd, 0x46, 0xde, 0xa5, + 0xc9, 0xc9, 0xbd, 0x14, 0x9d, 0x1c, 0x13, 0x36, 0x2a, 0xc3, 0x44, 0xad, 0xe3, 0xf7, 0xdb, 0xd4, + 0xc9, 0xcb, 0xb3, 0x8d, 0xd0, 0x22, 0x00, 0x87, 0xc1, 0x89, 0x94, 0x76, 0xea, 0x8f, 0xa9, 0x8f, + 0xc6, 0xa5, 0x74, 0x12, 0x9e, 0x39, 0x04, 0x66, 0x7f, 0x0c, 0xd7, 0x88, 0x3d, 0x63, 0x9b, 0xf5, + 0x42, 0x5b, 0xc2, 0x3e, 0x00, 0xa8, 0xe3, 0x33, 0xb7, 0x77, 0xe2, 0x93, 0x15, 0xab, 0xaa, 0x9f, + 0xb8, 0x95, 0x47, 0x32, 0x26, 0xc9, 0x1b, 0x1a, 0x1b, 0xe2, 0xd8, 0x17, 0x3d, 0x1d, 0x05, 0xcb, + 0xfe, 0x8f, 0x39, 0x40, 0x34, 0x36, 0x57, 0x8f, 0x02, 0xec, 0x9e, 0x09, 0x36, 0x7e, 0x06, 0xb3, + 0x6c, 0xf3, 0x32, 0x30, 0x65, 0x87, 0x1c, 0x21, 0x4c, 0x4d, 0xd5, 0xa6, 0x9d, 0x2b, 0x8e, 0xd6, + 0x95, 0xa0, 0x3a, 0x38, 0xec, 0x9f, 0x09, 0xd4, 0x9c, 0x86, 0xaa, 0x36, 0x11, 0x54, 0xf5, 0x33, + 0xfa, 0x1a, 0xe6, 0x6b, 0xfe, 0x59, 0x8f, 0xc8, 0x84, 0x23, 0x8f, 0x71, 0x43, 0xcd, 0xc7, 0xd5, + 0x1a, 0x77, 0xae, 0x38, 0x89, 0xee, 0x68, 0x1f, 0x16, 0x1e, 0x76, 0xfa, 0xe1, 0x49, 0xa5, 0xdb, + 0xae, 0x75, 0xfc, 0x50, 0x50, 0x19, 0xe7, 0x77, 0x1d, 0xbe, 0xc9, 0xd2, 0x3d, 0x76, 0xae, 0x38, + 0x59, 0x88, 0xe8, 0x5d, 0xfe, 0xd0, 0xc8, 0x0f, 0x8c, 0xb9, 0x35, 0xfe, 0x0e, 0xf9, 0xa4, 0x8b, + 0x9f, 0x3c, 0xdf, 0xb9, 0xe2, 0xb0, 0xd6, 0xea, 0x34, 0x4c, 0x09, 0x03, 0x73, 0x1f, 0xae, 0x29, + 0xe2, 0x24, 0x47, 0x5c, 0x3f, 0x44, 0x25, 0xc8, 0x3f, 0xed, 0x75, 0x7c, 0xb7, 0x2d, 0x2c, 0xa6, + 0x23, 0x3f, 0xdb, 0x1f, 0xea, 0x92, 0x46, 0x2b, 0xaa, 0xdb, 0xc6, 0x3a, 0xc7, 0x00, 0x7b, 0x47, + 0x17, 0xee, 0xf0, 0xde, 0xda, 0xb8, 0xb9, 0xc4, 0xb8, 0x85, 0xa4, 0xac, 0xed, 0xa5, 0x4c, 0xe1, + 0xd9, 0x8f, 0xe8, 0x69, 0x50, 0xe9, 0xf5, 0x3a, 0x5e, 0x8b, 0x1a, 0x56, 0x66, 0x85, 0xe4, 0x91, + 0xf2, 0x3b, 0xea, 0x73, 0x98, 0xa5, 0x44, 0x36, 0x04, 0x50, 0x79, 0xf0, 0xb2, 0x7f, 0x01, 0xb7, + 0x0c, 0xc4, 0xb8, 0x3d, 0xfe, 0x19, 0x4c, 0x71, 0x50, 0x42, 0xa1, 0xd5, 0x00, 0x22, 0x0d, 0xb0, + 0x84, 0x1c, 0x53, 0xf4, 0xb7, 0xbf, 0x83, 0xd5, 0xa7, 0xbd, 0x10, 0x07, 0x69, 0xf2, 0x82, 0xd5, + 0x9f, 0xca, 0xe7, 0x36, 0xcb, 0x18, 0x9c, 0x84, 0xf3, 0x41, 0x79, 0x92, 0xd1, 0x16, 0xaf, 0x6c, + 0xf6, 0x1f, 0x5b, 0xb0, 0xca, 0xb6, 0xaa, 0x91, 0xf4, 0x65, 0xa4, 0xa0, 0x04, 0x8c, 0x72, 0xe6, + 0x80, 0xd1, 0xd0, 0x68, 0xa0, 0xfd, 0x2d, 0xd8, 0x9c, 0xa3, 0x4e, 0xe7, 0x2d, 0xad, 0xcd, 0x5f, + 0xb7, 0x60, 0x91, 0x2d, 0xce, 0x1b, 0x50, 0x41, 0x5f, 0xc2, 0x7c, 0xfd, 0xd4, 0xeb, 0x35, 0xdc, + 0x8e, 0xd7, 0x66, 0xb1, 0x13, 0x76, 0x42, 0x2c, 0xd1, 0x13, 0xed, 0xd4, 0xeb, 0x35, 0x5f, 0xc4, + 0x4d, 0x96, 0x93, 0xe8, 0x6c, 0x3f, 0x81, 0xa5, 0x04, 0x0f, 0x5c, 0x31, 0x7e, 0x9a, 0x54, 0x8c, + 0xd4, 0x5b, 0x69, 0xb6, 0x56, 0x3c, 0x86, 0xeb, 0x52, 0x2b, 0xf4, 0x25, 0xdb, 0x48, 0x68, 0x43, + 0x8a, 0x60, 0x96, 0x2a, 0xb4, 0xe0, 0xba, 0xd4, 0x84, 0x37, 0xd0, 0x00, 0xb1, 0xb8, 0xb9, 0xcc, + 0xc5, 0xdd, 0x85, 0x92, 0xba, 0xb8, 0x6f, 0xb2, 0xa8, 0xff, 0xc1, 0x82, 0xe5, 0x6d, 0xdc, 0xc5, + 0x81, 0x4b, 0x59, 0xd6, 0xdc, 0x2f, 0x35, 0x6e, 0x64, 0x0d, 0x8d, 0x1b, 0x95, 0x85, 0x9f, 0x9a, + 0xa3, 0x7e, 0x2a, 0x3d, 0xe6, 0xa8, 0x9f, 0xca, 0xbd, 0x53, 0x72, 0xcc, 0x3d, 0x75, 0x76, 0xb9, + 0xae, 0xd2, 0x63, 0xae, 0x1f, 0x78, 0x0e, 0x81, 0xa1, 0xdd, 0x38, 0xe6, 0x34, 0x3e, 0x32, 0xe6, + 0xb4, 0xc0, 0xa3, 0x05, 0x53, 0x3c, 0xe6, 0xa4, 0x45, 0x9a, 0xec, 0x07, 0x50, 0x4c, 0xcf, 0x85, + 0xeb, 0x47, 0x19, 0x26, 0xd8, 0xe3, 0x63, 0xca, 0x25, 0x65, 0x70, 0x7b, 0x33, 0xd6, 0x6e, 0xfe, + 0xd4, 0x26, 0x63, 0x6d, 0x09, 0x13, 0x3a, 0xe4, 0x9e, 0x6c, 0xd7, 0x63, 0xfd, 0xe4, 0x54, 0xf8, + 0xf8, 0x5f, 0x10, 0xfd, 0x64, 0xcf, 0xa9, 0x96, 0xf9, 0x39, 0x95, 0xeb, 0x28, 0x43, 0x15, 0x08, + 0xf6, 0x33, 0xb8, 0xae, 0x11, 0x8d, 0xb5, 0xfe, 0x4b, 0xc8, 0x0b, 0x58, 0xe2, 0x1a, 0xa7, 0x91, + 0xa5, 0xeb, 0x16, 0x0a, 0x64, 0x89, 0x62, 0xff, 0xb9, 0x05, 0xcb, 0xec, 0x74, 0x49, 0xcf, 0xfb, + 0xe2, 0xab, 0xff, 0x5b, 0x89, 0x0d, 0x7c, 0x94, 0x11, 0x1b, 0xa0, 0x28, 0x6a, 0x6c, 0x40, 0x8d, + 0x08, 0x7c, 0x33, 0x9e, 0xcf, 0x15, 0xc6, 0xec, 0x06, 0x14, 0xd3, 0x33, 0x7c, 0x0b, 0x6b, 0xb2, + 0x0d, 0xcb, 0xca, 0x46, 0x7f, 0x63, 0x8d, 0x89, 0x47, 0x7c, 0x8b, 0x1a, 0x13, 0x77, 0x7c, 0x6b, + 0x1a, 0xb3, 0x0b, 0x0b, 0x8c, 0xb0, 0xbe, 0xbb, 0xd6, 0xd5, 0xdd, 0x95, 0xf9, 0xb4, 0x9f, 0xde, + 0x70, 0x8f, 0xe9, 0x86, 0x13, 0x5d, 0x62, 0x0e, 0x3f, 0x85, 0x49, 0x9e, 0xbd, 0xc4, 0xf8, 0xcb, + 0x20, 0x46, 0x2d, 0x2f, 0x4b, 0x59, 0x72, 0x78, 0x67, 0xbb, 0x48, 0xa7, 0x4c, 0x2e, 0x20, 0x3c, + 0x48, 0x27, 0x0c, 0xa2, 0xfd, 0x2d, 0x31, 0x71, 0x89, 0x96, 0x37, 0x3c, 0x35, 0x9e, 0x40, 0x91, + 0x9d, 0x1a, 0x0a, 0xd5, 0x37, 0x3a, 0x37, 0x3e, 0x87, 0x22, 0x53, 0xa7, 0x0c, 0x82, 0xc3, 0x0f, + 0x83, 0x55, 0x58, 0x91, 0x87, 0x41, 0xd6, 0xec, 0xff, 0xb6, 0x05, 0x37, 0xb6, 0x71, 0xa4, 0x27, + 0x78, 0xfc, 0x85, 0x9c, 0xdd, 0xdf, 0x43, 0x29, 0x8b, 0x11, 0xbe, 0x14, 0x5f, 0x25, 0x97, 0xc2, + 0x98, 0xcd, 0x92, 0xbd, 0x24, 0xbf, 0x80, 0x9b, 0x6c, 0x49, 0xf4, 0xfe, 0x62, 0xa2, 0x0f, 0x12, + 0xab, 0x62, 0xa4, 0x9e, 0xb5, 0x3a, 0xff, 0xc0, 0x82, 0x9b, 0x4c, 0xc8, 0xd9, 0xc4, 0x7f, 0xdb, + 0xde, 0xdd, 0x3e, 0x94, 0xe5, 0x9a, 0xbf, 0x85, 0x85, 0xb5, 0x5b, 0x80, 0x04, 0x99, 0x5a, 0xdd, + 0x11, 0x24, 0x6e, 0xc0, 0x58, 0xad, 0xee, 0xf0, 0xf7, 0x25, 0x7a, 0x68, 0xb7, 0xc2, 0xc0, 0x21, + 0xb0, 0xa4, 0x05, 0xcf, 0x5d, 0xc0, 0x82, 0xdb, 0x7f, 0x00, 0x0b, 0xda, 0x20, 0x7c, 0xdd, 0x57, + 0x60, 0xbc, 0x86, 0x83, 0x88, 0x0f, 0x43, 0x67, 0xda, 0xc2, 0x41, 0xe4, 0x50, 0x28, 0x7a, 0x0f, + 0xa6, 0xc4, 0x4b, 0x6c, 0x8e, 0xbe, 0xc4, 0x52, 0xc3, 0x24, 0x5e, 0x61, 0x1d, 0xd1, 0x68, 0xff, + 0x3b, 0x4b, 0xa1, 0x4e, 0xd0, 0x47, 0xcf, 0xe1, 0x63, 0x72, 0x3d, 0x26, 0x32, 0x53, 0xa6, 0x70, + 0x8d, 0x1c, 0x5b, 0x3c, 0xae, 0xc2, 0x4e, 0x3e, 0x47, 0xe9, 0x74, 0xc1, 0xa0, 0x92, 0x78, 0x4d, + 0x60, 0x48, 0xe2, 0xfd, 0x54, 0xbe, 0x26, 0x70, 0xd2, 0xa1, 0xa3, 0x76, 0xb2, 0xbf, 0x87, 0x45, + 0x9d, 0xff, 0xb7, 0x2a, 0x9e, 0x77, 0x68, 0x74, 0x9c, 0xbe, 0xf5, 0x72, 0xc1, 0x20, 0x35, 0x90, + 0xc0, 0xd5, 0xea, 0x33, 0x28, 0xf0, 0x5e, 0xf1, 0xb6, 0xbc, 0x2b, 0x5c, 0x3b, 0xb6, 0x29, 0xf5, + 0x3c, 0x48, 0x11, 0x7c, 0xfc, 0x89, 0x08, 0x55, 0x8c, 0x1a, 0xe1, 0xdf, 0x58, 0x50, 0x7c, 0xfc, + 0xb0, 0x52, 0xe9, 0x47, 0x27, 0xb8, 0x1b, 0x91, 0x4b, 0x09, 0xae, 0x9d, 0xb8, 0x9d, 0x0e, 0xee, + 0x1e, 0x53, 0xe9, 0x3e, 0x5d, 0x7f, 0x28, 0x4f, 0x25, 0xfe, 0xfa, 0xb4, 0xfe, 0x50, 0xf6, 0x70, + 0x48, 0x3b, 0xba, 0x07, 0xe3, 0x87, 0x4f, 0x0e, 0x0f, 0x78, 0xe0, 0x60, 0x91, 0xf7, 0x23, 0xa0, + 0xb8, 0x23, 0xed, 0x81, 0x1e, 0xc1, 0xb5, 0x67, 0x3c, 0x41, 0x59, 0x36, 0xf1, 0x90, 0xc1, 0xad, + 0x35, 0x99, 0xba, 0x5c, 0x0b, 0x70, 0x9b, 0x30, 0xe3, 0x76, 0x2a, 0x21, 0xb1, 0x1f, 0x64, 0x19, + 0xd3, 0x78, 0xf6, 0xbf, 0xb5, 0x60, 0x39, 0xc1, 0xba, 0x14, 0xd2, 0x7b, 0x82, 0x73, 0x76, 0x6b, + 0x94, 0x9c, 0x8b, 0x0e, 0x3b, 0x57, 0x18, 0xeb, 0xef, 0x6b, 0xac, 0x2f, 0x28, 0xac, 0x2b, 0x3d, + 0x19, 0xef, 0x35, 0x9a, 0x2f, 0x47, 0x79, 0xe0, 0x2c, 0xbf, 0x3b, 0x9c, 0xe5, 0x98, 0x80, 0x44, + 0xe4, 0xd9, 0x2e, 0x14, 0x6e, 0xff, 0x25, 0x98, 0x55, 0x65, 0x89, 0x56, 0x60, 0xfa, 0x11, 0x7e, + 0xb5, 0xe3, 0x76, 0xdb, 0x1d, 0xb1, 0x46, 0x31, 0x80, 0xb4, 0xc6, 0x22, 0x63, 0xb1, 0x81, 0x18, + 0x80, 0x16, 0x61, 0xa2, 0xd2, 0xeb, 0xed, 0x6e, 0x32, 0xf3, 0xe4, 0xb0, 0x0f, 0xa8, 0x08, 0x53, + 0x22, 0xe2, 0x49, 0x5d, 0x3a, 0x47, 0x7c, 0xb4, 0x3d, 0x98, 0x51, 0xa4, 0x31, 0x62, 0xe8, 0x55, + 0x80, 0x5a, 0xc7, 0xc3, 0x5d, 0x6a, 0xc8, 0xf9, 0xd8, 0x0a, 0x84, 0xc6, 0x34, 0xbc, 0xe3, 0x2e, + 0x0d, 0x4b, 0x72, 0x06, 0x62, 0x80, 0x7d, 0x15, 0xe6, 0x34, 0x55, 0xb0, 0x6d, 0x98, 0x55, 0x05, + 0x4c, 0xd4, 0xb2, 0xe6, 0xb7, 0xa5, 0x5a, 0x92, 0xbf, 0xed, 0x7f, 0x6f, 0xc1, 0xe2, 0xe3, 0x87, + 0x15, 0x07, 0x1f, 0x7b, 0xc4, 0x5c, 0xc5, 0x13, 0xbd, 0xaf, 0x2e, 0xec, 0x4d, 0x75, 0x61, 0x13, + 0x3d, 0xc5, 0x0a, 0xaf, 0x6b, 0x2b, 0xbc, 0xa2, 0xad, 0x70, 0x1a, 0x85, 0x2d, 0xf5, 0x17, 0xa9, + 0xa5, 0x5e, 0xc9, 0x5a, 0x6a, 0xea, 0xc6, 0x7a, 0x7e, 0x57, 0x5b, 0x61, 0x25, 0xb4, 0xf4, 0xa3, + 0x05, 0x0b, 0xca, 0x24, 0xe4, 0x84, 0xd7, 0xd4, 0x39, 0x94, 0xd2, 0x73, 0x48, 0x2a, 0xe9, 0xc7, + 0xda, 0x14, 0x6e, 0x66, 0x4c, 0x21, 0xa5, 0xac, 0xd5, 0xd4, 0x0c, 0xde, 0x19, 0x36, 0x83, 0x91, + 0xba, 0xda, 0x86, 0xc5, 0x2c, 0x21, 0xeb, 0x5a, 0x69, 0x19, 0xb5, 0x32, 0x67, 0xd0, 0xca, 0x31, + 0x5d, 0x2b, 0x5d, 0x58, 0xc8, 0x10, 0x03, 0xfa, 0x00, 0x0a, 0x0c, 0xc6, 0x4c, 0x3a, 0x7f, 0x22, + 0x23, 0x98, 0x29, 0xf8, 0x28, 0x5d, 0xb5, 0xff, 0xb3, 0x05, 0x4b, 0x99, 0x8b, 0x8f, 0xae, 0x13, + 0x7f, 0xa4, 0x15, 0xe0, 0x88, 0xd3, 0xe6, 0x9f, 0x08, 0x7c, 0x37, 0x0c, 0xfb, 0xbc, 0xe0, 0x60, + 0xda, 0xe1, 0x9f, 0xd0, 0x3b, 0x30, 0x77, 0x80, 0x03, 0xcf, 0x6f, 0xd7, 0x71, 0xcb, 0xef, 0xb6, + 0xd9, 0xcb, 0xc0, 0x9c, 0xa3, 0x03, 0x89, 0x80, 0x2a, 0x9d, 0x63, 0x3f, 0xf0, 0xa2, 0x93, 0x33, + 0xbe, 0x09, 0x63, 0x00, 0xa1, 0xbd, 0xe9, 0x1d, 0x7b, 0x11, 0x7b, 0xe0, 0x9a, 0x73, 0xf8, 0x27, + 0x22, 0xa2, 0x4a, 0xab, 0xe5, 0xf7, 0xbb, 0x11, 0x0d, 0x9a, 0x4f, 0x3b, 0xe2, 0x23, 0xc1, 0xf8, + 0xd6, 0xa1, 0xdb, 0x85, 0xa6, 0xd1, 0x38, 0xfc, 0x93, 0xfd, 0x01, 0x2c, 0x66, 0x29, 0x44, 0xe6, + 0xe6, 0xfa, 0xab, 0x39, 0x58, 0xa8, 0xb4, 0xdb, 0x8f, 0x1f, 0x56, 0x36, 0xb1, 0xea, 0xd6, 0x7e, + 0x02, 0xe3, 0xbb, 0x5d, 0x2f, 0xe2, 0x8a, 0xb9, 0xca, 0xf5, 0x2c, 0xa3, 0x27, 0xe9, 0x45, 0x54, + 0x8d, 0xfc, 0x8f, 0x1c, 0x58, 0xd8, 0xfa, 0xc1, 0x0b, 0x23, 0xaf, 0x7b, 0x4c, 0x95, 0x9d, 0x0d, + 0xcc, 0x95, 0x55, 0x10, 0x31, 0xd8, 0xe9, 0x9d, 0x2b, 0x4e, 0x16, 0x32, 0x3a, 0x84, 0xeb, 0xfb, + 0xf8, 0x65, 0xc6, 0xde, 0x91, 0x59, 0x30, 0x92, 0x6c, 0xc6, 0x16, 0x30, 0xe0, 0xaa, 0x5b, 0xf3, + 0x6f, 0xe5, 0x68, 0x6a, 0x95, 0x32, 0x31, 0x3e, 0xf2, 0x53, 0x58, 0x54, 0x18, 0xd2, 0x75, 0x7b, + 0x66, 0xbd, 0x9c, 0x3d, 0x1d, 0xd5, 0x82, 0x64, 0xa2, 0xa3, 0x67, 0xb0, 0xac, 0x33, 0xa5, 0xdb, + 0xf2, 0x78, 0x57, 0x67, 0x75, 0xd9, 0xb9, 0xe2, 0x98, 0xb0, 0xd1, 0x3a, 0x8c, 0x55, 0x5a, 0xa7, + 0x5c, 0x2c, 0xd9, 0x4b, 0xc6, 0x66, 0x56, 0x69, 0x9d, 0xd2, 0x94, 0xcb, 0xd6, 0xa9, 0xb6, 0xb1, + 0xff, 0xb7, 0x05, 0xcb, 0x86, 0x15, 0x46, 0x75, 0x80, 0x3d, 0x7c, 0xec, 0xb6, 0x5e, 0xc9, 0x57, + 0xbd, 0xf9, 0xf5, 0xfb, 0xc3, 0xb5, 0x62, 0x8d, 0x21, 0x30, 0x38, 0x41, 0xab, 0xe6, 0x88, 0xc7, + 0x16, 0x93, 0x21, 0x1b, 0x94, 0xb5, 0x2a, 0xae, 0x88, 0x02, 0x21, 0x4e, 0x60, 0x8c, 0x4d, 0xe7, + 0x35, 0x2f, 0xb3, 0x54, 0xe2, 0x06, 0x47, 0xe9, 0x64, 0x6f, 0x40, 0x21, 0x39, 0x2c, 0xca, 0x33, + 0x9b, 0xc9, 0xb2, 0x51, 0x9e, 0xae, 0x3f, 0x2c, 0x58, 0x68, 0x36, 0xb6, 0x89, 0x85, 0x9c, 0x5d, + 0x4b, 0xce, 0x5b, 0x8a, 0x09, 0xdd, 0x83, 0x49, 0x06, 0xe4, 0xab, 0x2e, 0x8a, 0x45, 0xe2, 0xce, + 0xbc, 0xdd, 0xfe, 0xa7, 0x96, 0x88, 0x2e, 0xa6, 0x36, 0xd3, 0x67, 0xda, 0x66, 0xba, 0x23, 0x67, + 0x90, 0xd5, 0x59, 0xdb, 0x4f, 0x55, 0x98, 0x79, 0x9d, 0x7d, 0xa4, 0x22, 0xa9, 0x9a, 0xfe, 0xcf, + 0x2c, 0x11, 0x17, 0x49, 0x2b, 0xfb, 0x16, 0xcc, 0xbe, 0x9e, 0x92, 0x6b, 0x68, 0xe8, 0x53, 0xa6, + 0x83, 0xb9, 0xe1, 0x33, 0x1d, 0xaa, 0x86, 0x3f, 0x17, 0x01, 0xd4, 0x4c, 0x45, 0x1c, 0xa1, 0x33, + 0xf6, 0x4a, 0x06, 0xb6, 0x1c, 0xce, 0xee, 0xa7, 0x5a, 0xeb, 0xaf, 0xba, 0x2d, 0xb1, 0x4e, 0xef, + 0x25, 0xdf, 0xc6, 0xa9, 0xc3, 0x4e, 0x43, 0x19, 0xe4, 0xfa, 0x27, 0x1a, 0xd1, 0x7d, 0x8d, 0x87, + 0x5c, 0x1c, 0x53, 0x6b, 0xe3, 0x38, 0x1d, 0x49, 0x65, 0xea, 0x3c, 0xb1, 0xb3, 0x5e, 0x67, 0xd0, + 0x1a, 0xcc, 0xed, 0xe3, 0x97, 0xa9, 0x71, 0xe9, 0xe3, 0x67, 0x17, 0xbf, 0x6c, 0x2a, 0x63, 0x2b, + 0x09, 0x08, 0x3a, 0x0e, 0x3a, 0x82, 0x79, 0x61, 0x3d, 0x2e, 0x6a, 0x44, 0x59, 0x72, 0x1f, 0x19, + 0xe1, 0xec, 0xb9, 0xdb, 0x0c, 0x38, 0x54, 0xcd, 0xca, 0xd3, 0x29, 0xda, 0x07, 0x50, 0x4c, 0xcf, + 0x95, 0x6b, 0xd9, 0x27, 0xa3, 0xb6, 0x13, 0xbb, 0xe1, 0xb7, 0xf5, 0xad, 0xb5, 0x43, 0x83, 0x51, + 0xb2, 0x8f, 0xbc, 0x46, 0x7f, 0x94, 0x14, 0x1d, 0xcd, 0xc2, 0x12, 0xa2, 0x53, 0x33, 0xa1, 0xe3, + 0xec, 0x88, 0xa5, 0x04, 0x25, 0xe9, 0x57, 0x4c, 0x71, 0x90, 0xcc, 0x30, 0x4f, 0x6e, 0x74, 0xd1, + 0xc1, 0xfe, 0xc7, 0x16, 0xdc, 0x78, 0x1a, 0xe2, 0xa0, 0xee, 0x75, 0x8f, 0x3b, 0xf8, 0x29, 0xbb, + 0x13, 0x4a, 0xa6, 0x7e, 0x57, 0xdb, 0xec, 0xcb, 0x86, 0x3c, 0xbd, 0xff, 0x5f, 0x5b, 0xfc, 0x9f, + 0x58, 0x50, 0xca, 0xe2, 0xed, 0xed, 0xee, 0xf2, 0x35, 0x7e, 0xef, 0x65, 0xdc, 0x16, 0x39, 0xba, + 0x1c, 0x53, 0x4c, 0x96, 0x4c, 0x92, 0xfc, 0xaf, 0x6d, 0xef, 0x7f, 0x69, 0xc1, 0xe2, 0x6e, 0x48, + 0xd9, 0xff, 0x55, 0xdf, 0x0b, 0x70, 0x5b, 0x08, 0x6e, 0x2d, 0x2b, 0x9b, 0x93, 0xae, 0xeb, 0xce, + 0x95, 0xac, 0x6c, 0xcd, 0x4f, 0x94, 0x24, 0xbc, 0xdc, 0xb0, 0x34, 0x4d, 0xad, 0xcc, 0xe1, 0x3d, + 0x18, 0xdf, 0x27, 0x4e, 0xd0, 0x18, 0xd7, 0x3f, 0x86, 0x41, 0x40, 0x7b, 0xfe, 0xb1, 0x47, 0xfc, + 0x77, 0xda, 0x5e, 0xcd, 0xc3, 0xe4, 0xa1, 0x1b, 0x1c, 0xe3, 0xc8, 0xfe, 0x05, 0x94, 0xf8, 0x83, + 0x30, 0x8b, 0xb3, 0xd2, 0x67, 0xe3, 0x30, 0x8e, 0xff, 0x0d, 0x7b, 0xc4, 0x5d, 0x05, 0xa8, 0x47, + 0x6e, 0x10, 0xed, 0x76, 0xdb, 0xf8, 0x07, 0xca, 0xe5, 0x84, 0xa3, 0x40, 0xec, 0x4f, 0x61, 0x5a, + 0x0e, 0x4d, 0xef, 0xe4, 0x8a, 0x7f, 0x46, 0xfe, 0x26, 0x6e, 0x33, 0x6d, 0x14, 0x6e, 0x33, 0xfd, + 0x60, 0x6f, 0xc0, 0x52, 0x42, 0x84, 0x7c, 0x7d, 0x4b, 0x44, 0xd0, 0x0c, 0xc6, 0xb2, 0x40, 0x1c, + 0xf9, 0xd9, 0xae, 0xc1, 0xb5, 0xd4, 0x0a, 0x21, 0xa4, 0x64, 0xf5, 0x13, 0x63, 0x5c, 0xaf, 0xef, + 0x10, 0x98, 0x4c, 0xe2, 0x27, 0xb0, 0xc3, 0xbd, 0x7a, 0x75, 0x92, 0xad, 0xb8, 0xfd, 0xcf, 0x73, + 0x34, 0x0c, 0x91, 0x92, 0x41, 0x22, 0x9c, 0xa5, 0x86, 0xd4, 0xaa, 0x30, 0x4d, 0x67, 0xbc, 0x29, + 0xd2, 0xcb, 0x86, 0xbf, 0x22, 0xe5, 0x7f, 0x1c, 0x94, 0xaf, 0xd0, 0xa7, 0xa3, 0x18, 0x0d, 0x7d, + 0x05, 0x53, 0x5b, 0xdd, 0x36, 0xa5, 0x30, 0x76, 0x09, 0x0a, 0x02, 0x89, 0xac, 0x03, 0x65, 0x99, + 0xf8, 0x03, 0x3c, 0xe6, 0xe3, 0x28, 0x10, 0x2a, 0x66, 0xef, 0xcc, 0x63, 0xb9, 0x02, 0x13, 0x0e, + 0xfb, 0x40, 0xa4, 0x49, 0x59, 0x10, 0x19, 0xee, 0xd3, 0x8e, 0xfc, 0x8c, 0x6c, 0x98, 0x78, 0x12, + 0xb4, 0x79, 0xbe, 0xf1, 0xfc, 0xfa, 0xac, 0x28, 0x5f, 0x26, 0x30, 0x87, 0x35, 0xd9, 0xff, 0x93, + 0xbe, 0xdf, 0x45, 0x99, 0x7a, 0xa3, 0x49, 0xc5, 0x7a, 0x63, 0xa9, 0xe4, 0x5e, 0x47, 0x2a, 0x72, + 0xd6, 0x63, 0xa6, 0x59, 0x8f, 0x9b, 0x66, 0x3d, 0x61, 0x9e, 0xf5, 0x36, 0x4c, 0xb2, 0xa9, 0xa2, + 0xbb, 0x30, 0xb1, 0x1b, 0xe1, 0xb3, 0x38, 0x3c, 0xa5, 0x66, 0x60, 0x38, 0xac, 0x8d, 0xdc, 0x6f, + 0xf6, 0xdc, 0x90, 0x8e, 0xc6, 0x74, 0x5c, 0x7c, 0xb4, 0xff, 0xcc, 0x82, 0xc2, 0x9e, 0x17, 0x46, + 0x64, 0x23, 0x5c, 0x50, 0xd7, 0xe4, 0x8c, 0x72, 0xa6, 0x19, 0x8d, 0x25, 0x66, 0xf4, 0x00, 0x26, + 0x69, 0xfe, 0x60, 0xc8, 0x2b, 0x73, 0xee, 0xf2, 0x29, 0x25, 0x07, 0x66, 0x59, 0x86, 0x21, 0xad, + 0xa0, 0x71, 0x38, 0x4a, 0xe9, 0x67, 0x30, 0xa3, 0x80, 0x2f, 0x55, 0x58, 0xf3, 0x1d, 0x5c, 0x53, + 0x86, 0xe0, 0xdb, 0xf7, 0xfd, 0x51, 0x2f, 0x1e, 0x32, 0xa2, 0x4e, 0xc4, 0xb6, 0x8f, 0x7f, 0x50, + 0xc5, 0xc6, 0x3f, 0xda, 0xbf, 0xa4, 0xe9, 0xaf, 0x7b, 0x7e, 0xeb, 0x54, 0x89, 0x37, 0x4f, 0x31, + 0x63, 0x96, 0x7c, 0xb6, 0x21, 0xbd, 0x58, 0x8b, 0x23, 0x7a, 0xa0, 0xdb, 0x30, 0xb3, 0xdb, 0x7d, + 0xe8, 0x07, 0x2d, 0xfc, 0xa4, 0xdb, 0x61, 0xd4, 0xf3, 0x8e, 0x0a, 0xe2, 0xa1, 0x48, 0x3e, 0x42, + 0x1c, 0x8a, 0xa4, 0x80, 0x44, 0x28, 0x92, 0x15, 0x06, 0x3a, 0xac, 0x8d, 0x47, 0x3a, 0xc9, 0xdf, + 0xc3, 0xe2, 0x90, 0x32, 0x60, 0x39, 0xaa, 0xe3, 0x11, 0xdc, 0x70, 0x70, 0xaf, 0xe3, 0x12, 0x1f, + 0xef, 0xcc, 0x67, 0xfd, 0xe5, 0x9c, 0x6f, 0x67, 0x24, 0x07, 0xea, 0xaf, 0x96, 0x92, 0xe5, 0xdc, + 0x10, 0x96, 0xcf, 0xe0, 0xce, 0x36, 0x8e, 0x32, 0xab, 0xfb, 0xe2, 0xc9, 0xef, 0x40, 0x9e, 0xa7, + 0xa2, 0x8b, 0xf9, 0x8f, 0x2a, 0x2c, 0xe4, 0x4f, 0x78, 0x9c, 0x8e, 0xfc, 0xcb, 0xae, 0x8a, 0xd4, + 0x90, 0x4c, 0xc4, 0x8b, 0x25, 0x9a, 0x35, 0xe9, 0x53, 0x8e, 0x4e, 0x20, 0xe6, 0xb5, 0x02, 0x79, + 0x01, 0x4b, 0xbc, 0xe5, 0xa4, 0x8a, 0x11, 0x29, 0x93, 0x6d, 0x41, 0x40, 0xa2, 0xd9, 0x9f, 0x43, + 0x31, 0x35, 0xc0, 0xc5, 0x58, 0x7b, 0x20, 0x9e, 0x6a, 0x5e, 0x07, 0xd9, 0x87, 0x1b, 0x3a, 0x9a, + 0xfa, 0x96, 0x50, 0x50, 0xde, 0x12, 0xd8, 0x13, 0x02, 0x51, 0x00, 0x67, 0x6f, 0xab, 0xdb, 0xee, + 0xf9, 0x5e, 0x37, 0xe2, 0xbb, 0x44, 0x05, 0xa1, 0x55, 0xf5, 0xc5, 0x60, 0x36, 0x9d, 0x7f, 0xfa, + 0x11, 0x94, 0xb2, 0x06, 0x54, 0xc2, 0x29, 0x32, 0xf8, 0xcf, 0x1c, 0x1d, 0xfb, 0x04, 0x16, 0xb5, + 0xef, 0x7c, 0x88, 0x8b, 0xd8, 0xe3, 0xef, 0xba, 0x98, 0xae, 0xfe, 0xfc, 0x37, 0x83, 0xf2, 0xe7, + 0x97, 0xa9, 0x06, 0x13, 0x34, 0x0f, 0x65, 0x0a, 0xad, 0xbd, 0x0c, 0x63, 0x35, 0x67, 0x8f, 0x4e, + 0xdb, 0xd9, 0x93, 0xd3, 0x76, 0xf6, 0xec, 0xdf, 0x58, 0x50, 0xae, 0x9d, 0xb8, 0xdd, 0x63, 0x7a, + 0xc8, 0x2b, 0xfe, 0x9c, 0xf2, 0x08, 0x7e, 0xd1, 0x3b, 0xc7, 0x3a, 0xcc, 0xec, 0xe3, 0x97, 0x22, + 0xfd, 0x97, 0x97, 0xf5, 0xd1, 0xb7, 0x12, 0x72, 0x1f, 0xe8, 0x71, 0xb8, 0xa3, 0x76, 0x42, 0x7f, + 0xf9, 0xf5, 0xe3, 0x35, 0xac, 0xf2, 0x3b, 0xbe, 0x6a, 0xb0, 0xd6, 0xac, 0x3b, 0x87, 0x61, 0x08, + 0xfb, 0x5f, 0x59, 0x70, 0xdb, 0x3c, 0x79, 0xbe, 0x70, 0x9b, 0x5a, 0xfd, 0xfc, 0x90, 0xe7, 0x7b, + 0x7a, 0xa7, 0x53, 0xea, 0xe7, 0x93, 0x35, 0xf3, 0x0e, 0x6e, 0xf9, 0x2f, 0x70, 0xf0, 0x2a, 0xf1, + 0xda, 0x21, 0xc0, 0x35, 0x62, 0xdb, 0xc5, 0xb7, 0x8f, 0x30, 0x90, 0x56, 0x66, 0xc6, 0x61, 0xf6, + 0x9f, 0x58, 0x70, 0x93, 0x9e, 0x47, 0x3c, 0xb0, 0x27, 0x1a, 0x2e, 0x9f, 0xec, 0xf1, 0x29, 0xcc, + 0xaa, 0x83, 0xab, 0x75, 0x98, 0x82, 0x83, 0x66, 0xcb, 0x6f, 0x63, 0x47, 0xeb, 0x86, 0x76, 0x61, + 0x86, 0x7f, 0x56, 0x02, 0x2d, 0x4b, 0xca, 0xb7, 0x71, 0x50, 0x7d, 0x60, 0x55, 0x45, 0x74, 0xf5, + 0x39, 0xb1, 0x26, 0x4d, 0xe9, 0x56, 0x71, 0xed, 0x5f, 0xe7, 0x60, 0xa5, 0x81, 0x03, 0xef, 0xf9, + 0x2b, 0xc3, 0x64, 0x9e, 0xc0, 0xa2, 0x00, 0xd1, 0x39, 0xeb, 0x7a, 0x48, 0xbf, 0xf5, 0x44, 0xb2, + 0x1a, 0x92, 0x0e, 0x4d, 0xa9, 0x96, 0x99, 0x88, 0x97, 0x28, 0xa0, 0xfb, 0x04, 0xf2, 0x52, 0x95, + 0xc7, 0xa8, 0x64, 0xe8, 0xda, 0x08, 0x35, 0xd6, 0xeb, 0xa2, 0xa5, 0x3e, 0xff, 0x0d, 0xf3, 0xd3, + 0x12, 0xcf, 0x89, 0x1a, 0x71, 0x5b, 0x63, 0x5a, 0x4d, 0x34, 0xda, 0x55, 0x5a, 0x33, 0xb4, 0x7a, + 0xe7, 0x8a, 0x63, 0x1a, 0xa9, 0x3a, 0x03, 0xd3, 0x15, 0xfa, 0xe4, 0x45, 0x3c, 0xf9, 0xff, 0x95, + 0x83, 0x55, 0x91, 0xff, 0x69, 0x10, 0xf3, 0x77, 0xb0, 0x2c, 0x40, 0x95, 0x5e, 0x2f, 0xf0, 0x5f, + 0xe0, 0xb6, 0x2e, 0x69, 0x56, 0xb2, 0x27, 0x24, 0xed, 0xf2, 0x3e, 0xb1, 0xb0, 0x4d, 0xe8, 0x6f, + 0x27, 0x0e, 0xf1, 0x95, 0x6e, 0x58, 0xd8, 0x6a, 0xd0, 0x02, 0x1f, 0xd5, 0xb0, 0xe8, 0x5f, 0x1c, + 0xa3, 0x1a, 0x99, 0x76, 0x2a, 0x8e, 0x31, 0xfe, 0xa6, 0x71, 0x8c, 0x9d, 0x2b, 0xc9, 0x48, 0x46, + 0x75, 0x1e, 0x66, 0xf7, 0xf1, 0xcb, 0x58, 0xee, 0x7f, 0x64, 0xc1, 0x9c, 0xb6, 0xb9, 0xd1, 0xfb, + 0x30, 0x41, 0xff, 0xa0, 0x27, 0x29, 0xaf, 0x01, 0x21, 0x1b, 0x4c, 0xab, 0x01, 0x61, 0x5d, 0x77, + 0x61, 0x8a, 0xe5, 0x3a, 0xb5, 0x2f, 0xe0, 0xac, 0xcb, 0x54, 0xba, 0x16, 0x43, 0x61, 0x7e, 0x3b, + 0xc7, 0xb7, 0x1f, 0xc1, 0x1d, 0x9e, 0x36, 0xa5, 0x2f, 0x7e, 0x4d, 0x75, 0x94, 0x2f, 0x68, 0xe3, + 0x6d, 0x17, 0x56, 0xb7, 0x71, 0xd2, 0xf4, 0x68, 0xa9, 0x86, 0x5f, 0xc3, 0x55, 0x0d, 0x2e, 0x29, + 0xd2, 0x52, 0x05, 0xa9, 0x43, 0x92, 0x74, 0xb2, 0xb7, 0x7d, 0x3b, 0x6b, 0x08, 0x95, 0x59, 0x1b, + 0xc3, 0x55, 0x7a, 0x25, 0x95, 0xaf, 0x51, 0xe1, 0x25, 0xac, 0xde, 0x3d, 0x65, 0x5f, 0x33, 0x8b, + 0xc7, 0x6a, 0xfd, 0xc4, 0xf1, 0x24, 0x5b, 0xed, 0xff, 0x61, 0x81, 0xcd, 0x25, 0x97, 0x15, 0xe7, + 0x10, 0x13, 0x3e, 0x4a, 0x71, 0xc3, 0x4f, 0x89, 0xeb, 0x6a, 0x34, 0x27, 0x6e, 0x65, 0xaa, 0x45, + 0x38, 0x6b, 0xb6, 0x62, 0xa8, 0xa6, 0x5a, 0xa9, 0xe9, 0xfd, 0x81, 0xc1, 0x0e, 0xb2, 0xdd, 0x44, + 0xbf, 0x77, 0xc2, 0x60, 0x07, 0x35, 0xba, 0x99, 0x44, 0xd4, 0x80, 0xd0, 0x3f, 0xb4, 0xe0, 0x26, + 0x9b, 0xf2, 0x41, 0xe0, 0xbd, 0xf0, 0x3a, 0xf8, 0x18, 0x6b, 0x8b, 0xdb, 0xcf, 0x7e, 0xb2, 0xb1, + 0x2e, 0x64, 0xd9, 0x68, 0xd9, 0x39, 0xe6, 0xe8, 0xa6, 0xf8, 0x60, 0x16, 0x7d, 0xfb, 0xef, 0x5b, + 0xb0, 0x2a, 0x2a, 0x8c, 0x12, 0xef, 0x18, 0x97, 0x75, 0x52, 0xaa, 0xda, 0x2b, 0x41, 0xce, 0xf0, + 0x4a, 0xa0, 0x05, 0x68, 0xa3, 0xc4, 0xb3, 0xc1, 0x07, 0x1f, 0xc0, 0xb4, 0xfc, 0xe2, 0x31, 0x94, + 0x87, 0xf1, 0xdd, 0xfd, 0xdd, 0x43, 0xf6, 0x5e, 0x70, 0xf0, 0xf4, 0xb0, 0x60, 0x21, 0x80, 0xc9, + 0xcd, 0xad, 0xbd, 0xad, 0xc3, 0xad, 0x42, 0xee, 0x83, 0xae, 0x3a, 0x1e, 0xba, 0x09, 0xcb, 0x9b, + 0x5b, 0x8d, 0xdd, 0xda, 0x56, 0xf3, 0xf0, 0xf7, 0x0f, 0xb6, 0x9a, 0x4f, 0xf7, 0xeb, 0x07, 0x5b, + 0xb5, 0xdd, 0x87, 0xbb, 0x5b, 0x9b, 0x85, 0x2b, 0x68, 0x11, 0x0a, 0x6a, 0x23, 0x7d, 0x85, 0xb0, + 0xd0, 0x02, 0x5c, 0xd5, 0x50, 0xd6, 0x1f, 0x16, 0x72, 0xa8, 0x08, 0x8b, 0x2a, 0xf0, 0xd9, 0x56, + 0xb5, 0xf2, 0xf4, 0x70, 0x67, 0xbf, 0x30, 0xf6, 0xc1, 0x7b, 0xfc, 0xce, 0x8d, 0xe6, 0x01, 0x36, + 0xb7, 0xea, 0xb5, 0xad, 0xfd, 0xcd, 0xdd, 0xfd, 0xed, 0xc2, 0x15, 0x34, 0x07, 0xd3, 0x15, 0xf9, + 0xd1, 0x5a, 0xff, 0xaf, 0xdf, 0xc1, 0x0c, 0x59, 0x25, 0xf1, 0xdd, 0x23, 0x3f, 0x87, 0xf9, 0x3a, + 0xee, 0xb6, 0x1f, 0x61, 0xdc, 0xab, 0x74, 0xbc, 0x17, 0x38, 0x44, 0x22, 0xa6, 0x29, 0x41, 0xa5, + 0xeb, 0x29, 0x1b, 0xb4, 0x45, 0xd6, 0xec, 0x9e, 0x85, 0x7e, 0x07, 0x66, 0xe8, 0x97, 0x53, 0xf0, + 0xab, 0xfc, 0xac, 0xfa, 0x85, 0x15, 0x25, 0xf1, 0x89, 0x36, 0x7e, 0x64, 0xa1, 0x2f, 0x61, 0x6a, + 0x1b, 0xd3, 0xbb, 0x2c, 0xba, 0x93, 0xf8, 0x0e, 0xb6, 0xdd, 0xae, 0xbc, 0x9d, 0xf3, 0x85, 0x2d, + 0x25, 0x2f, 0xb5, 0xa8, 0x06, 0x79, 0x8e, 0x1e, 0x22, 0x3b, 0x81, 0x1f, 0x66, 0x10, 0x58, 0x48, + 0x10, 0x20, 0x17, 0x69, 0xf4, 0x15, 0x4c, 0xcb, 0x0b, 0x35, 0x5a, 0x36, 0xdc, 0xe2, 0x4b, 0xc5, + 0x74, 0x03, 0xf7, 0x0a, 0xef, 0x03, 0xb0, 0x14, 0x35, 0x3a, 0x8d, 0x24, 0x8f, 0xa5, 0x94, 0xec, + 0xd0, 0x36, 0xd1, 0x03, 0x72, 0x04, 0x5f, 0x74, 0xde, 0x06, 0x61, 0xa3, 0x3d, 0x98, 0x97, 0x09, + 0x63, 0x17, 0x17, 0x82, 0x89, 0xda, 0x17, 0x70, 0x4d, 0xe4, 0x59, 0xcb, 0xa0, 0x33, 0x32, 0x85, + 0xa1, 0xe5, 0x4a, 0x8a, 0x6f, 0xd7, 0x90, 0xb8, 0xf2, 0x8b, 0x32, 0x24, 0x6e, 0xf2, 0xab, 0x33, + 0x12, 0xb8, 0x98, 0xdc, 0x3a, 0xe3, 0x71, 0xf5, 0x00, 0x34, 0xba, 0xad, 0x30, 0x90, 0x19, 0x37, + 0x2f, 0xdd, 0x19, 0xd2, 0x83, 0x2d, 0xd1, 0x3d, 0xeb, 0x23, 0x0b, 0x7d, 0x03, 0x73, 0x5a, 0xe8, + 0x13, 0x89, 0xd7, 0xd2, 0xac, 0x98, 0x72, 0x69, 0x25, 0xbb, 0x91, 0x2f, 0xf9, 0x43, 0x32, 0xdd, + 0x28, 0x51, 0xe4, 0x5b, 0xca, 0x2a, 0xe6, 0x65, 0x5f, 0x9f, 0x52, 0x12, 0xb5, 0x4c, 0x09, 0x94, + 0x2d, 0x58, 0x90, 0xe7, 0xb1, 0xf2, 0xcd, 0x65, 0x86, 0xb2, 0x60, 0xe3, 0xca, 0x7d, 0x0d, 0x0b, + 0x5c, 0x0f, 0x34, 0x32, 0x05, 0x79, 0xad, 0xe0, 0x15, 0xa4, 0x46, 0x02, 0xdf, 0xc0, 0x52, 0x3d, + 0x31, 0x1f, 0x56, 0xa7, 0x7b, 0x43, 0x27, 0xa1, 0x14, 0x04, 0x1b, 0x69, 0x3d, 0x02, 0x54, 0xef, + 0x1f, 0x9d, 0x79, 0x92, 0xdc, 0x0b, 0x0f, 0xbf, 0x44, 0xb7, 0x12, 0x53, 0x22, 0x40, 0xda, 0x8d, + 0xde, 0x89, 0x4a, 0x86, 0x19, 0xa3, 0x43, 0x96, 0x78, 0xcf, 0xea, 0xfa, 0xdc, 0x9e, 0x7b, 0xe4, + 0x75, 0xbc, 0xc8, 0xc3, 0x44, 0x2d, 0x54, 0x04, 0xb5, 0x49, 0xac, 0xe0, 0x0d, 0x63, 0x0f, 0xf4, + 0x15, 0xcc, 0x6d, 0xe3, 0x28, 0xae, 0x79, 0x46, 0xcb, 0xa9, 0x2a, 0x69, 0xbe, 0x6e, 0xe2, 0x66, + 0xa6, 0x17, 0x5a, 0xef, 0x42, 0xe1, 0x69, 0xaf, 0x4d, 0x4e, 0xc6, 0x98, 0xc4, 0xad, 0x14, 0x09, + 0xde, 0xc5, 0x0d, 0xdc, 0xb3, 0xd0, 0x28, 0xad, 0xfb, 0x30, 0x7e, 0xe0, 0x75, 0x8f, 0x91, 0x48, + 0x2f, 0x53, 0xca, 0x56, 0x4b, 0x0b, 0x1a, 0x8c, 0xab, 0xde, 0x11, 0x94, 0x59, 0xb1, 0x6f, 0xba, + 0xc0, 0x56, 0x7c, 0xa3, 0xd0, 0x3b, 0xf2, 0x35, 0x63, 0x48, 0x51, 0xb0, 0x94, 0x4f, 0xb2, 0xbd, + 0xb1, 0x81, 0x0e, 0xa8, 0xd4, 0xd3, 0x03, 0x20, 0x11, 0xe3, 0x1c, 0x56, 0x28, 0x5c, 0x42, 0x49, + 0xc2, 0x8d, 0x0d, 0x24, 0xf3, 0xf5, 0x33, 0x88, 0xbe, 0xa7, 0xd5, 0x17, 0x5e, 0x8e, 0xee, 0x7d, + 0x7a, 0x7e, 0xd0, 0x6f, 0x76, 0x5c, 0x8a, 0x79, 0x53, 0x4a, 0x2b, 0x4b, 0xfa, 0x77, 0x43, 0xa2, + 0x0d, 0x7a, 0x62, 0xd0, 0x12, 0x7f, 0x74, 0x5d, 0xc7, 0x08, 0xb3, 0x51, 0x3e, 0xb2, 0xd0, 0x06, + 0x00, 0x63, 0x8e, 0x0e, 0xa4, 0x37, 0x1b, 0x57, 0x76, 0x83, 0x1c, 0x0b, 0xed, 0x4b, 0x22, 0x7d, + 0x25, 0x8e, 0x06, 0x8a, 0x54, 0xd4, 0x9e, 0xc1, 0xd5, 0x59, 0x99, 0xf0, 0x77, 0xa1, 0x50, 0x69, + 0x51, 0x63, 0x25, 0xab, 0x3d, 0xd1, 0xaa, 0xdc, 0x08, 0x7a, 0x83, 0xa0, 0xb5, 0x94, 0x2c, 0x1e, + 0xdd, 0xc3, 0x2e, 0x0d, 0x4d, 0x2e, 0xcb, 0x23, 0x2b, 0xd1, 0x94, 0x8d, 0x61, 0x64, 0x6a, 0x0b, + 0x16, 0x6b, 0x6e, 0xb7, 0x85, 0x3b, 0x6f, 0x46, 0xe6, 0x0b, 0xba, 0x6b, 0x95, 0x4a, 0xd8, 0xeb, + 0x49, 0x7c, 0xbe, 0x69, 0x85, 0x0f, 0xa7, 0x74, 0xad, 0xc0, 0x55, 0x26, 0xc4, 0x58, 0x2c, 0x26, + 0x6c, 0xd3, 0xf0, 0x9f, 0xc1, 0xfc, 0x16, 0xb1, 0x6a, 0xfd, 0xb6, 0xc7, 0x5e, 0xb1, 0x90, 0xfe, + 0x2c, 0x61, 0x44, 0xdc, 0x81, 0x6b, 0xe2, 0xea, 0x20, 0x4b, 0x44, 0xa5, 0x61, 0x4d, 0x57, 0xe1, + 0x96, 0x16, 0x05, 0x59, 0xb5, 0x9a, 0x94, 0x1e, 0x61, 0x47, 0xa2, 0x0c, 0x29, 0x51, 0xf8, 0xa7, + 0xee, 0x4b, 0x63, 0x59, 0x60, 0xe9, 0x9d, 0xe1, 0x9d, 0xb8, 0x7d, 0x71, 0x60, 0xd9, 0x50, 0x4f, + 0x89, 0xde, 0x15, 0x07, 0xed, 0xd0, 0x7a, 0xcb, 0x0c, 0x87, 0xe7, 0x3b, 0xa5, 0xaa, 0xc6, 0x40, + 0x73, 0x78, 0xa1, 0xa5, 0x51, 0xb6, 0xbf, 0x14, 0x61, 0xe1, 0xcc, 0x82, 0x48, 0xf4, 0xbe, 0x4e, + 0x7d, 0x48, 0xd1, 0xa4, 0x71, 0x84, 0x27, 0x54, 0xeb, 0xe2, 0x7a, 0x3c, 0xe9, 0x36, 0x64, 0x15, + 0x4d, 0x4a, 0xb7, 0x21, 0xb3, 0x9a, 0xd1, 0x1e, 0xfb, 0x3b, 0x39, 0x0b, 0x6d, 0xc3, 0xd5, 0x44, + 0x69, 0x22, 0xba, 0x95, 0x14, 0xec, 0x08, 0x81, 0x32, 0x42, 0x8f, 0x85, 0x4e, 0xa7, 0x09, 0x65, + 0x17, 0x2b, 0x9a, 0xe6, 0xc8, 0xc8, 0x3d, 0x95, 0x4e, 0x84, 0x5a, 0x7e, 0x88, 0xee, 0x64, 0x88, + 0xf0, 0x62, 0xa2, 0x63, 0x64, 0xeb, 0x50, 0x48, 0x56, 0xef, 0xa1, 0x55, 0x29, 0xa5, 0xcc, 0x12, + 0xc5, 0x52, 0xd9, 0xd8, 0xce, 0x95, 0xf4, 0x9b, 0x78, 0x51, 0x58, 0x4c, 0x35, 0xb9, 0x28, 0x6a, + 0xe5, 0x56, 0x6a, 0x51, 0xf4, 0x82, 0xac, 0x6d, 0xfa, 0xb4, 0xa4, 0x94, 0xe1, 0x21, 0xc3, 0x7c, + 0x4a, 0xb7, 0xb2, 0xe8, 0xc4, 0x3b, 0xa7, 0x0e, 0x85, 0x64, 0x4d, 0x9a, 0x9c, 0xa9, 0xa1, 0x1c, + 0x4f, 0xce, 0xd4, 0x58, 0xcc, 0xf6, 0x0d, 0x14, 0x92, 0x05, 0x69, 0x92, 0xa8, 0xa1, 0x52, 0xcd, + 0xa8, 0xca, 0x0f, 0x61, 0x51, 0x5f, 0xc5, 0x11, 0xf3, 0x35, 0x7b, 0x8b, 0x73, 0x5a, 0x19, 0x1a, + 0x12, 0xdf, 0x18, 0x9a, 0xa8, 0x78, 0x4b, 0x49, 0x3f, 0xa3, 0x1c, 0x8e, 0x49, 0x5f, 0x29, 0x69, + 0xbb, 0x88, 0xf4, 0xb3, 0x2a, 0xe0, 0xa4, 0xa0, 0x14, 0xbe, 0xc4, 0xc9, 0x97, 0x6c, 0xb8, 0x8c, + 0xa0, 0x2e, 0xc2, 0x9a, 0x89, 0xce, 0x26, 0xcc, 0x28, 0xb5, 0x70, 0xe8, 0x86, 0x26, 0x26, 0x4d, + 0xe3, 0x4b, 0xda, 0xe4, 0x74, 0x65, 0xaf, 0xc1, 0xac, 0x5a, 0x51, 0x67, 0xe4, 0xe2, 0x66, 0x9a, + 0x46, 0xa8, 0xdc, 0x58, 0xe6, 0xa5, 0x14, 0x18, 0x37, 0x2b, 0x49, 0xe1, 0x68, 0x0c, 0x99, 0xa7, + 0x84, 0x54, 0xd1, 0x8c, 0x60, 0xc9, 0xec, 0x11, 0x2c, 0x30, 0xdf, 0x48, 0xff, 0x06, 0x64, 0xc3, + 0x17, 0x29, 0x1b, 0xc9, 0x1c, 0xd0, 0x07, 0x6b, 0xb5, 0x3c, 0x0e, 0x29, 0x5a, 0x92, 0x51, 0x36, + 0x57, 0x5a, 0x35, 0x35, 0x73, 0x31, 0xed, 0xc1, 0xb5, 0x54, 0x05, 0x20, 0x2a, 0x6b, 0xe6, 0x39, + 0x5d, 0xca, 0x37, 0xe4, 0x7e, 0x7e, 0x2d, 0x55, 0xfe, 0x27, 0xa9, 0x99, 0x0a, 0x03, 0x8d, 0xd4, + 0x0e, 0x61, 0x29, 0xb3, 0x24, 0x50, 0x9e, 0xfe, 0xc3, 0x0a, 0x06, 0x8d, 0x54, 0x7f, 0x1f, 0x50, + 0xba, 0x7c, 0x4f, 0xde, 0xba, 0x8d, 0x25, 0x86, 0xf2, 0xd6, 0x3d, 0xa4, 0xf6, 0x6f, 0x0f, 0x16, + 0xb3, 0x6a, 0xf7, 0x90, 0xad, 0xc9, 0x33, 0xb3, 0xf6, 0x2e, 0xc3, 0x89, 0x70, 0xc4, 0xa6, 0x34, + 0x50, 0x1b, 0x52, 0xc9, 0x67, 0x9c, 0xfc, 0x2f, 0x44, 0x7d, 0x66, 0xba, 0xe2, 0x4e, 0x5e, 0x4b, + 0x46, 0x94, 0xe4, 0x0d, 0x71, 0xfb, 0xae, 0xd6, 0xbd, 0xe3, 0xae, 0x52, 0x1c, 0x27, 0x9d, 0xbe, + 0x74, 0x55, 0x9e, 0x34, 0x00, 0x59, 0xb5, 0x74, 0x4f, 0x60, 0x51, 0x9c, 0x84, 0x6a, 0x31, 0x19, + 0x4a, 0xe1, 0xc4, 0xaf, 0xda, 0xd2, 0x18, 0x64, 0x56, 0x9f, 0xb1, 0x5b, 0x13, 0xfd, 0x76, 0x50, + 0xe5, 0xd6, 0xa4, 0x54, 0x79, 0x95, 0xf4, 0x82, 0x30, 0xf4, 0x80, 0xde, 0x9a, 0x58, 0xd1, 0xbf, + 0x69, 0xaf, 0x2f, 0xeb, 0x94, 0x62, 0x35, 0xd8, 0x10, 0xf1, 0x31, 0x3a, 0xa0, 0x4e, 0x79, 0xf4, + 0x45, 0x88, 0x22, 0xe9, 0x17, 0x21, 0x95, 0x51, 0x73, 0x14, 0x62, 0x56, 0xcd, 0x25, 0x95, 0xb2, + 0xca, 0x48, 0x39, 0x97, 0xb2, 0xca, 0x4a, 0xe5, 0xa6, 0x7e, 0xf7, 0xa1, 0xf0, 0xb4, 0x62, 0x7a, + 0xb7, 0x86, 0xe6, 0x62, 0x97, 0x56, 0x87, 0x27, 0x30, 0x53, 0xaa, 0x75, 0x28, 0x24, 0xd3, 0x5d, + 0x51, 0x56, 0xf2, 0xbd, 0x92, 0xf3, 0x2b, 0xfd, 0x05, 0x63, 0x9e, 0xec, 0x81, 0xf0, 0xe2, 0x74, + 0xba, 0x86, 0x84, 0x6a, 0x95, 0xf4, 0xf0, 0xd3, 0x3e, 0xce, 0x7c, 0x55, 0x7d, 0xad, 0x54, 0x66, + 0xad, 0x7a, 0xda, 0x67, 0x24, 0xcb, 0x7a, 0xe2, 0x49, 0x21, 0xbb, 0x54, 0xf0, 0x7d, 0xdd, 0x1b, + 0x1a, 0xf2, 0xd2, 0x52, 0x1a, 0x95, 0x79, 0x8a, 0xfe, 0x50, 0x7c, 0x07, 0x42, 0xba, 0xdc, 0xe1, + 0xdd, 0x44, 0xc0, 0x21, 0xfb, 0x19, 0xa1, 0x34, 0xac, 0x9a, 0x02, 0x3d, 0xa6, 0x99, 0x4c, 0x4f, + 0x76, 0x37, 0x6b, 0xfc, 0xf7, 0x0c, 0xfc, 0x20, 0x15, 0xc9, 0x55, 0xbe, 0x13, 0x30, 0x16, 0x32, + 0xeb, 0xa2, 0x21, 0x36, 0xd6, 0x51, 0x9d, 0x06, 0x14, 0x35, 0x68, 0x46, 0x30, 0x37, 0x83, 0x60, + 0x29, 0x9b, 0x20, 0x0d, 0x6c, 0xd3, 0x53, 0x96, 0x6c, 0x3c, 0x9d, 0x4d, 0x03, 0x0f, 0xc3, 0x0e, + 0x6b, 0xa6, 0x36, 0xd9, 0x64, 0x04, 0x77, 0xa3, 0xf4, 0x88, 0x49, 0xac, 0x5e, 0x79, 0xbc, 0xf7, + 0x5a, 0x12, 0xd3, 0x10, 0xa5, 0xc4, 0x34, 0xe8, 0xe5, 0x24, 0x96, 0x20, 0xa8, 0x4b, 0x4c, 0x67, + 0xd3, 0xc0, 0xc3, 0x68, 0x89, 0x65, 0x93, 0xb9, 0xa8, 0xc4, 0xbe, 0xa5, 0x47, 0xf3, 0x36, 0x4d, + 0xf7, 0xb9, 0x94, 0xcc, 0x8a, 0xc2, 0xd1, 0xd4, 0x51, 0x1b, 0x1b, 0xe8, 0x19, 0xfd, 0xa2, 0x87, + 0x04, 0xfc, 0x62, 0x72, 0x5b, 0x31, 0x11, 0xa5, 0x92, 0xdb, 0x85, 0x25, 0x26, 0xb9, 0x24, 0xbb, + 0x46, 0x5e, 0x8c, 0xd3, 0xde, 0x16, 0x7e, 0x4e, 0x92, 0xd4, 0x65, 0xe5, 0xb7, 0x49, 0x55, 0xe4, + 0x30, 0x20, 0x6e, 0x64, 0x3b, 0xed, 0x63, 0xea, 0x44, 0x44, 0x08, 0x58, 0xef, 0xde, 0x58, 0x47, + 0xbb, 0x74, 0x15, 0x74, 0xf0, 0x30, 0x27, 0x3c, 0x9b, 0x0c, 0x15, 0xd2, 0x8e, 0x70, 0x88, 0x12, + 0x3c, 0x99, 0xc6, 0x36, 0x33, 0x25, 0x6f, 0x28, 0x17, 0x9c, 0x9d, 0x49, 0x44, 0xec, 0x60, 0x67, + 0x17, 0x82, 0x51, 0x92, 0x49, 0xfe, 0x16, 0x10, 0xfa, 0x3d, 0x98, 0x16, 0xc8, 0xa3, 0x05, 0x92, + 0xc4, 0xe6, 0x4f, 0x6f, 0x33, 0x5c, 0x20, 0x94, 0x03, 0xd3, 0x48, 0x46, 0xf6, 0xbf, 0x84, 0x19, + 0x2e, 0x86, 0xa1, 0x33, 0x30, 0xfb, 0xe7, 0x4b, 0xdb, 0x38, 0xca, 0xf8, 0xad, 0x8a, 0x51, 0x93, + 0xc9, 0xfa, 0x69, 0x0c, 0xd4, 0xa0, 0xd9, 0x93, 0xa6, 0xdf, 0x15, 0x31, 0x91, 0x1c, 0xf9, 0xab, + 0x26, 0x84, 0x6e, 0xdd, 0x4c, 0x77, 0x24, 0xbe, 0x71, 0xf6, 0xfb, 0xb0, 0x42, 0x83, 0xed, 0x97, + 0xe5, 0xd8, 0x7c, 0x3f, 0xb9, 0x11, 0xe7, 0xac, 0x27, 0x7f, 0xd2, 0xc4, 0x44, 0x6c, 0xd4, 0xaf, + 0xa9, 0x10, 0xaa, 0x75, 0x23, 0xd5, 0x51, 0xd8, 0x43, 0x0e, 0xa3, 0x9b, 0x74, 0xee, 0x97, 0xe4, + 0x76, 0xb8, 0xa5, 0x49, 0xfc, 0xc6, 0x8a, 0xd9, 0x51, 0xce, 0xfe, 0x15, 0x17, 0x42, 0xa5, 0x9e, + 0xa2, 0x62, 0xea, 0x3d, 0xec, 0xf0, 0xa1, 0x53, 0xbb, 0x20, 0x37, 0xe6, 0xe7, 0x8b, 0x69, 0x59, + 0xae, 0x81, 0x14, 0xdf, 0x5e, 0x2b, 0x46, 0x28, 0xcd, 0xa9, 0xef, 0xf9, 0x21, 0xaa, 0xb0, 0x33, + 0x5e, 0x2d, 0x5b, 0x50, 0x82, 0x7d, 0x99, 0xf5, 0x0c, 0x49, 0x12, 0xec, 0x6e, 0x42, 0x7f, 0xf8, + 0x45, 0xb9, 0x9b, 0x28, 0x09, 0xdd, 0x25, 0x3d, 0xdd, 0x9a, 0x9b, 0x30, 0x9a, 0x73, 0xad, 0xbe, + 0xe8, 0xa8, 0x29, 0xdd, 0xea, 0xdd, 0x44, 0x4f, 0x3e, 0x97, 0x77, 0x13, 0x3a, 0xa0, 0x4e, 0x79, + 0xf4, 0xdd, 0x84, 0x22, 0xe9, 0x77, 0x13, 0x95, 0x51, 0xf3, 0xc6, 0x43, 0xe9, 0xec, 0x73, 0x79, + 0xe5, 0x36, 0x26, 0xa6, 0x0f, 0x79, 0xf4, 0x59, 0xc8, 0xa8, 0x33, 0x92, 0x3e, 0xbf, 0xb9, 0x06, + 0xa9, 0xa4, 0xbf, 0x60, 0x7c, 0x64, 0xa1, 0x7d, 0xfa, 0x75, 0x4b, 0x59, 0xbf, 0x87, 0x63, 0xd2, + 0x9f, 0xa1, 0x3f, 0xc0, 0x43, 0xe8, 0xd5, 0xb3, 0xe9, 0x0d, 0xc5, 0x1b, 0x72, 0xad, 0xbb, 0xc1, + 0x53, 0x27, 0x2e, 0xc1, 0xa2, 0x59, 0xc5, 0xa7, 0x58, 0x28, 0xd7, 0x8c, 0x5a, 0x50, 0x7f, 0x80, + 0x86, 0x1e, 0x59, 0x6b, 0x30, 0xc9, 0x90, 0x8c, 0xa7, 0x8d, 0xf6, 0xa3, 0x35, 0xe8, 0x63, 0x98, + 0x96, 0xc1, 0x5d, 0xa4, 0x35, 0x19, 0xf9, 0xfa, 0x18, 0xa6, 0x59, 0x74, 0xec, 0xe2, 0x28, 0x0f, + 0xd8, 0xf7, 0x69, 0x33, 0x94, 0xcb, 0x1e, 0x83, 0x5f, 0xc3, 0x9c, 0x1a, 0x17, 0xbe, 0xbc, 0x20, + 0xbf, 0xa4, 0x11, 0x4a, 0x11, 0x6a, 0x30, 0xe3, 0x2f, 0xa5, 0x7e, 0x60, 0x88, 0x8a, 0xf4, 0x73, + 0x1a, 0x26, 0x95, 0x85, 0x76, 0x26, 0xf6, 0xd3, 0x3f, 0x4f, 0x84, 0x1e, 0xc0, 0x3c, 0x13, 0xae, + 0x44, 0x4e, 0x77, 0x1a, 0x22, 0xb3, 0x79, 0x26, 0xe6, 0xd7, 0x41, 0xfe, 0x3d, 0x11, 0x4f, 0x1d, + 0xc9, 0xf6, 0x45, 0x22, 0xa9, 0xa3, 0x45, 0x67, 0xa2, 0xf2, 0x87, 0xf4, 0xd0, 0xcd, 0xae, 0x32, + 0x31, 0x12, 0xbb, 0xa7, 0x44, 0x8a, 0x87, 0xd7, 0xa7, 0x3c, 0x11, 0x5f, 0xbf, 0x95, 0xfd, 0x2b, + 0x55, 0x23, 0x8a, 0x55, 0x32, 0xa2, 0x78, 0xbf, 0xcc, 0xae, 0xe3, 0x10, 0x04, 0xf5, 0x07, 0xbb, + 0x61, 0xa5, 0x2c, 0x43, 0x6e, 0x4d, 0xf1, 0xb7, 0x68, 0x5d, 0x52, 0x2e, 0xe6, 0x37, 0x40, 0x94, + 0xae, 0x8b, 0x31, 0x52, 0xb9, 0x63, 0x92, 0x6e, 0x2c, 0xd6, 0xc7, 0xd4, 0x5f, 0x48, 0xfc, 0x20, + 0x57, 0xd9, 0x84, 0x97, 0x74, 0xc4, 0x93, 0xe5, 0x36, 0x68, 0x1b, 0x16, 0xd9, 0x36, 0x48, 0x50, + 0x34, 0x21, 0x0c, 0xb9, 0x7a, 0x2d, 0xb2, 0x2d, 0xf1, 0xa6, 0x84, 0x64, 0xb0, 0x36, 0x41, 0xc8, + 0x1e, 0xb2, 0xbe, 0xa3, 0x03, 0x51, 0x45, 0xc3, 0xc2, 0x5e, 0x7e, 0x45, 0xdd, 0x38, 0xe7, 0x2c, + 0x5d, 0xa8, 0x23, 0x8f, 0x62, 0x63, 0xd1, 0x90, 0x5c, 0xe3, 0x21, 0x55, 0x3e, 0xb5, 0xf8, 0x6b, + 0x4b, 0xb5, 0xca, 0x9e, 0x9a, 0xb3, 0x27, 0x43, 0x68, 0x59, 0x25, 0x3f, 0x25, 0x10, 0x8d, 0xce, + 0x1e, 0x3a, 0x85, 0xa2, 0xa9, 0x2a, 0x25, 0xce, 0x9b, 0x19, 0x5e, 0xb3, 0x53, 0xfa, 0xc9, 0xc8, + 0x7e, 0x9c, 0xe3, 0x7d, 0x58, 0xcc, 0xaa, 0x26, 0x91, 0x8b, 0x36, 0xa4, 0xd4, 0x24, 0x33, 0x39, + 0xe7, 0x00, 0x96, 0x32, 0x2b, 0x3a, 0xe4, 0x83, 0xc5, 0xb0, 0x7a, 0x8f, 0x4c, 0x8a, 0xdf, 0xc1, + 0xb2, 0xa1, 0x7c, 0x21, 0x0e, 0xea, 0x0d, 0x2d, 0x6f, 0x30, 0x2a, 0xc4, 0xf7, 0x50, 0x32, 0x67, + 0xc6, 0xa3, 0x7b, 0x7a, 0x60, 0xd2, 0x9c, 0x8f, 0x5e, 0xca, 0x2c, 0xe5, 0x41, 0x87, 0xb4, 0x9c, + 0x37, 0x2b, 0x55, 0x5e, 0xf2, 0x3d, 0x3c, 0x95, 0xde, 0x90, 0x54, 0xb5, 0x6c, 0xc8, 0x8e, 0x1f, + 0x42, 0xf5, 0x02, 0xdc, 0xee, 0x0b, 0x73, 0xa2, 0x27, 0x7e, 0x4b, 0x3d, 0x18, 0x92, 0x15, 0x9e, + 0xc5, 0x67, 0xb5, 0xf0, 0xe3, 0x7f, 0x5f, 0xb5, 0x7e, 0xfc, 0xf5, 0xaa, 0xf5, 0x9f, 0x7e, 0xbd, + 0x6a, 0xfd, 0xf9, 0xaf, 0x57, 0xad, 0xa3, 0x49, 0x4a, 0x68, 0xe3, 0xff, 0x05, 0x00, 0x00, 0xff, + 0xff, 0x91, 0x20, 0xd8, 0x77, 0x46, 0x7b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -9934,7 +9945,7 @@ type AuthServiceClient interface { // CreateAccountRecoveryCodes (exclusive to cloud users) creates new set of recovery codes for a // user, replacing and invalidating any previously owned codes. Users can only get recovery // codes if their username is in a valid email format. - CreateAccountRecoveryCodes(ctx context.Context, in *CreateAccountRecoveryCodesRequest, opts ...grpc.CallOption) (*CreateAccountRecoveryCodesResponse, error) + CreateAccountRecoveryCodes(ctx context.Context, in *CreateAccountRecoveryCodesRequest, opts ...grpc.CallOption) (*RecoveryCodes, error) // GetAccountRecoveryToken (exclusive to cloud users) returns a user token resource after // verifying that the token requested has not expired and is of the correct recovery kind. // Besides checking for validity of a token ID, it is also used to get basic information from @@ -9944,7 +9955,7 @@ type AuthServiceClient interface { // GetAccountRecoveryCodes (exclusive to cloud users) is a request to return the user in context // their recovery codes. This request will not return any secrets (the values of recovery // codes), but instead returns non-sensitive data eg. when the recovery codes were created. - GetAccountRecoveryCodes(ctx context.Context, in *GetAccountRecoveryCodesRequest, opts ...grpc.CallOption) (*types.RecoveryCodesV1, error) + GetAccountRecoveryCodes(ctx context.Context, in *GetAccountRecoveryCodesRequest, opts ...grpc.CallOption) (*RecoveryCodes, error) // CreatePrivilegeToken returns a new privilege token after a logged in user successfully // re-authenticates with their second factor device. Privilege token lasts PrivilegeTokenTTL and // is used to gain access to privileged actions eg: deleting/adding a MFA device. @@ -11486,8 +11497,8 @@ func (c *authServiceClient) CompleteAccountRecovery(ctx context.Context, in *Com return out, nil } -func (c *authServiceClient) CreateAccountRecoveryCodes(ctx context.Context, in *CreateAccountRecoveryCodesRequest, opts ...grpc.CallOption) (*CreateAccountRecoveryCodesResponse, error) { - out := new(CreateAccountRecoveryCodesResponse) +func (c *authServiceClient) CreateAccountRecoveryCodes(ctx context.Context, in *CreateAccountRecoveryCodesRequest, opts ...grpc.CallOption) (*RecoveryCodes, error) { + out := new(RecoveryCodes) err := c.cc.Invoke(ctx, "/proto.AuthService/CreateAccountRecoveryCodes", in, out, opts...) if err != nil { return nil, err @@ -11504,8 +11515,8 @@ func (c *authServiceClient) GetAccountRecoveryToken(ctx context.Context, in *Get return out, nil } -func (c *authServiceClient) GetAccountRecoveryCodes(ctx context.Context, in *GetAccountRecoveryCodesRequest, opts ...grpc.CallOption) (*types.RecoveryCodesV1, error) { - out := new(types.RecoveryCodesV1) +func (c *authServiceClient) GetAccountRecoveryCodes(ctx context.Context, in *GetAccountRecoveryCodesRequest, opts ...grpc.CallOption) (*RecoveryCodes, error) { + out := new(RecoveryCodes) err := c.cc.Invoke(ctx, "/proto.AuthService/GetAccountRecoveryCodes", in, out, opts...) if err != nil { return nil, err @@ -11898,7 +11909,7 @@ type AuthServiceServer interface { // CreateAccountRecoveryCodes (exclusive to cloud users) creates new set of recovery codes for a // user, replacing and invalidating any previously owned codes. Users can only get recovery // codes if their username is in a valid email format. - CreateAccountRecoveryCodes(context.Context, *CreateAccountRecoveryCodesRequest) (*CreateAccountRecoveryCodesResponse, error) + CreateAccountRecoveryCodes(context.Context, *CreateAccountRecoveryCodesRequest) (*RecoveryCodes, error) // GetAccountRecoveryToken (exclusive to cloud users) returns a user token resource after // verifying that the token requested has not expired and is of the correct recovery kind. // Besides checking for validity of a token ID, it is also used to get basic information from @@ -11908,7 +11919,7 @@ type AuthServiceServer interface { // GetAccountRecoveryCodes (exclusive to cloud users) is a request to return the user in context // their recovery codes. This request will not return any secrets (the values of recovery // codes), but instead returns non-sensitive data eg. when the recovery codes were created. - GetAccountRecoveryCodes(context.Context, *GetAccountRecoveryCodesRequest) (*types.RecoveryCodesV1, error) + GetAccountRecoveryCodes(context.Context, *GetAccountRecoveryCodesRequest) (*RecoveryCodes, error) // CreatePrivilegeToken returns a new privilege token after a logged in user successfully // re-authenticates with their second factor device. Privilege token lasts PrivilegeTokenTTL and // is used to gain access to privileged actions eg: deleting/adding a MFA device. @@ -12366,13 +12377,13 @@ func (*UnimplementedAuthServiceServer) VerifyAccountRecovery(ctx context.Context func (*UnimplementedAuthServiceServer) CompleteAccountRecovery(ctx context.Context, req *CompleteAccountRecoveryRequest) (*empty.Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method CompleteAccountRecovery not implemented") } -func (*UnimplementedAuthServiceServer) CreateAccountRecoveryCodes(ctx context.Context, req *CreateAccountRecoveryCodesRequest) (*CreateAccountRecoveryCodesResponse, error) { +func (*UnimplementedAuthServiceServer) CreateAccountRecoveryCodes(ctx context.Context, req *CreateAccountRecoveryCodesRequest) (*RecoveryCodes, error) { return nil, status.Errorf(codes.Unimplemented, "method CreateAccountRecoveryCodes not implemented") } func (*UnimplementedAuthServiceServer) GetAccountRecoveryToken(ctx context.Context, req *GetAccountRecoveryTokenRequest) (*types.UserTokenV3, error) { return nil, status.Errorf(codes.Unimplemented, "method GetAccountRecoveryToken not implemented") } -func (*UnimplementedAuthServiceServer) GetAccountRecoveryCodes(ctx context.Context, req *GetAccountRecoveryCodesRequest) (*types.RecoveryCodesV1, error) { +func (*UnimplementedAuthServiceServer) GetAccountRecoveryCodes(ctx context.Context, req *GetAccountRecoveryCodesRequest) (*RecoveryCodes, error) { return nil, status.Errorf(codes.Unimplemented, "method GetAccountRecoveryCodes not implemented") } func (*UnimplementedAuthServiceServer) CreatePrivilegeToken(ctx context.Context, req *CreatePrivilegeTokenRequest) (*types.UserTokenV3, error) { @@ -22287,14 +22298,17 @@ func (m *ChangeUserAuthenticationResponse) MarshalToSizedBuffer(dAtA []byte) (in i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.RecoveryCodes) > 0 { - for iNdEx := len(m.RecoveryCodes) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.RecoveryCodes[iNdEx]) - copy(dAtA[i:], m.RecoveryCodes[iNdEx]) - i = encodeVarintAuthservice(dAtA, i, uint64(len(m.RecoveryCodes[iNdEx]))) - i-- - dAtA[i] = 0x12 + if m.Recovery != nil { + { + size, err := m.Recovery.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAuthservice(dAtA, i, uint64(size)) } + i-- + dAtA[i] = 0x12 } if m.WebSession != nil { { @@ -22531,7 +22545,7 @@ func (m *CompleteAccountRecoveryRequest_NewMFAResponse) MarshalToSizedBuffer(dAt } return len(dAtA) - i, nil } -func (m *CreateAccountRecoveryCodesRequest) Marshal() (dAtA []byte, err error) { +func (m *RecoveryCodes) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -22541,12 +22555,12 @@ func (m *CreateAccountRecoveryCodesRequest) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *CreateAccountRecoveryCodesRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *RecoveryCodes) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *CreateAccountRecoveryCodesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *RecoveryCodes) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -22555,17 +22569,27 @@ func (m *CreateAccountRecoveryCodesRequest) MarshalToSizedBuffer(dAtA []byte) (i i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.TokenID) > 0 { - i -= len(m.TokenID) - copy(dAtA[i:], m.TokenID) - i = encodeVarintAuthservice(dAtA, i, uint64(len(m.TokenID))) - i-- - dAtA[i] = 0xa + n88, err88 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Created, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Created):]) + if err88 != nil { + return 0, err88 + } + i -= n88 + i = encodeVarintAuthservice(dAtA, i, uint64(n88)) + i-- + dAtA[i] = 0x12 + if len(m.Codes) > 0 { + for iNdEx := len(m.Codes) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Codes[iNdEx]) + copy(dAtA[i:], m.Codes[iNdEx]) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.Codes[iNdEx]))) + i-- + dAtA[i] = 0xa + } } return len(dAtA) - i, nil } -func (m *CreateAccountRecoveryCodesResponse) Marshal() (dAtA []byte, err error) { +func (m *CreateAccountRecoveryCodesRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -22575,12 +22599,12 @@ func (m *CreateAccountRecoveryCodesResponse) Marshal() (dAtA []byte, err error) return dAtA[:n], nil } -func (m *CreateAccountRecoveryCodesResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *CreateAccountRecoveryCodesRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *CreateAccountRecoveryCodesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *CreateAccountRecoveryCodesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -22589,14 +22613,12 @@ func (m *CreateAccountRecoveryCodesResponse) MarshalToSizedBuffer(dAtA []byte) ( i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - if len(m.RecoveryCodes) > 0 { - for iNdEx := len(m.RecoveryCodes) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.RecoveryCodes[iNdEx]) - copy(dAtA[i:], m.RecoveryCodes[iNdEx]) - i = encodeVarintAuthservice(dAtA, i, uint64(len(m.RecoveryCodes[iNdEx]))) - i-- - dAtA[i] = 0xa - } + if len(m.TokenID) > 0 { + i -= len(m.TokenID) + copy(dAtA[i:], m.TokenID) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.TokenID))) + i-- + dAtA[i] = 0xa } return len(dAtA) - i, nil } @@ -25955,11 +25977,9 @@ func (m *ChangeUserAuthenticationResponse) Size() (n int) { l = m.WebSession.Size() n += 1 + l + sovAuthservice(uint64(l)) } - if len(m.RecoveryCodes) > 0 { - for _, s := range m.RecoveryCodes { - l = len(s) - n += 1 + l + sovAuthservice(uint64(l)) - } + if m.Recovery != nil { + l = m.Recovery.Size() + n += 1 + l + sovAuthservice(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -26084,33 +26104,35 @@ func (m *CompleteAccountRecoveryRequest_NewMFAResponse) Size() (n int) { } return n } -func (m *CreateAccountRecoveryCodesRequest) Size() (n int) { +func (m *RecoveryCodes) Size() (n int) { if m == nil { return 0 } var l int _ = l - l = len(m.TokenID) - if l > 0 { - n += 1 + l + sovAuthservice(uint64(l)) + if len(m.Codes) > 0 { + for _, s := range m.Codes { + l = len(s) + n += 1 + l + sovAuthservice(uint64(l)) + } } + l = github_com_gogo_protobuf_types.SizeOfStdTime(m.Created) + n += 1 + l + sovAuthservice(uint64(l)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } return n } -func (m *CreateAccountRecoveryCodesResponse) Size() (n int) { +func (m *CreateAccountRecoveryCodesRequest) Size() (n int) { if m == nil { return 0 } var l int _ = l - if len(m.RecoveryCodes) > 0 { - for _, s := range m.RecoveryCodes { - l = len(s) - n += 1 + l + sovAuthservice(uint64(l)) - } + l = len(m.TokenID) + if l > 0 { + n += 1 + l + sovAuthservice(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -41341,9 +41363,9 @@ func (m *ChangeUserAuthenticationResponse) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RecoveryCodes", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Recovery", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowAuthservice @@ -41353,23 +41375,27 @@ func (m *ChangeUserAuthenticationResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthAuthservice } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthAuthservice } if postIndex > l { return io.ErrUnexpectedEOF } - m.RecoveryCodes = append(m.RecoveryCodes, string(dAtA[iNdEx:postIndex])) + if m.Recovery == nil { + m.Recovery = &RecoveryCodes{} + } + if err := m.Recovery.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex default: iNdEx = preIndex @@ -41895,7 +41921,7 @@ func (m *CompleteAccountRecoveryRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *CreateAccountRecoveryCodesRequest) Unmarshal(dAtA []byte) error { +func (m *RecoveryCodes) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -41918,15 +41944,15 @@ func (m *CreateAccountRecoveryCodesRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CreateAccountRecoveryCodesRequest: wiretype end group for non-group") + return fmt.Errorf("proto: RecoveryCodes: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CreateAccountRecoveryCodesRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RecoveryCodes: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TokenID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Codes", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -41954,7 +41980,40 @@ func (m *CreateAccountRecoveryCodesRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.TokenID = string(dAtA[iNdEx:postIndex]) + m.Codes = append(m.Codes, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Created", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAuthservice + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.Created, dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex default: iNdEx = preIndex @@ -41978,7 +42037,7 @@ func (m *CreateAccountRecoveryCodesRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *CreateAccountRecoveryCodesResponse) Unmarshal(dAtA []byte) error { +func (m *CreateAccountRecoveryCodesRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -42001,15 +42060,15 @@ func (m *CreateAccountRecoveryCodesResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CreateAccountRecoveryCodesResponse: wiretype end group for non-group") + return fmt.Errorf("proto: CreateAccountRecoveryCodesRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CreateAccountRecoveryCodesResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CreateAccountRecoveryCodesRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RecoveryCodes", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TokenID", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -42037,7 +42096,7 @@ func (m *CreateAccountRecoveryCodesResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.RecoveryCodes = append(m.RecoveryCodes, string(dAtA[iNdEx:postIndex])) + m.TokenID = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex diff --git a/api/client/proto/authservice.proto b/api/client/proto/authservice.proto index 3ec2a72bc373a..85597f3447b4b 100644 --- a/api/client/proto/authservice.proto +++ b/api/client/proto/authservice.proto @@ -1209,12 +1209,12 @@ message ChangeUserAuthenticationRequest { message ChangeUserAuthenticationResponse { // WebSession is a user's web sesssion created from successful changing of password. types.WebSessionV2 WebSession = 1 [ (gogoproto.jsontag) = "web_session" ]; - // RecoveryCodes are user's new recovery codes. Previous recovery codes become invalid. + // Recovery holds user's new recovery related fields. Previous recovery codes become invalid. // This field can be empty if a user does not meet the following // requirements to receive recovery codes: // - cloud feature is enabled // - username is in valid email format - repeated string RecoveryCodes = 2 [ (gogoproto.jsontag) = "recovery_codes,omitempty" ]; + RecoveryCodes Recovery = 2 [ (gogoproto.jsontag) = "recovery,omitempty" ]; } // StartAccountRecoveryRequest defines a request to create a recovery start token for a user who is @@ -1274,6 +1274,20 @@ message CompleteAccountRecoveryRequest { } } +// RecoveryCodes describes account recovery fields. Used as a RPC +// response or as part of a RPC response that requires any of these fields. +message RecoveryCodes { + // Codes holds the list of recovery phrase words. + // Field is only used when new recovery codes are generated and returned to user. + repeated string Codes = 1 [ (gogoproto.jsontag) = "codes,omitempty" ]; + // Created is the date the recovery codes were created. + google.protobuf.Timestamp Created = 2 [ + (gogoproto.stdtime) = true, + (gogoproto.nullable) = false, + (gogoproto.jsontag) = "created" + ]; +} + // CreateAccountRecoveryCodesRequest is a request to create new set of recovery codes for a user, // replacing and invalidating any previously existing codes. Recovery codes can only be given to // users who meet the following requirements: @@ -1287,13 +1301,6 @@ message CreateAccountRecoveryCodesRequest { string TokenID = 1 [ (gogoproto.jsontag) = "token_id" ]; } -// CreateAccountRecoveryCodesResponse is the response to CreateAccountRecoveryCodesRequest. -message CreateAccountRecoveryCodesResponse { - // RecoveryCodes are user's new account recovery codes. Any previous codes are invalidated by - // the replacement of new codes. - repeated string RecoveryCodes = 1 [ (gogoproto.jsontag) = "recovery_codes" ]; -} - // GetAccountRecoveryTokenRequest is a request to return a user token resource after verifying that // the token in the request is not expired and is of the recovery kind. message GetAccountRecoveryTokenRequest { @@ -1784,8 +1791,7 @@ service AuthService { // CreateAccountRecoveryCodes (exclusive to cloud users) creates new set of recovery codes for a // user, replacing and invalidating any previously owned codes. Users can only get recovery // codes if their username is in a valid email format. - rpc CreateAccountRecoveryCodes(CreateAccountRecoveryCodesRequest) - returns (CreateAccountRecoveryCodesResponse); + rpc CreateAccountRecoveryCodes(CreateAccountRecoveryCodesRequest) returns (RecoveryCodes); // GetAccountRecoveryToken (exclusive to cloud users) returns a user token resource after // verifying that the token requested has not expired and is of the correct recovery kind. // Besides checking for validity of a token ID, it is also used to get basic information from @@ -1795,7 +1801,7 @@ service AuthService { // GetAccountRecoveryCodes (exclusive to cloud users) is a request to return the user in context // their recovery codes. This request will not return any secrets (the values of recovery // codes), but instead returns non-sensitive data eg. when the recovery codes were created. - rpc GetAccountRecoveryCodes(GetAccountRecoveryCodesRequest) returns (types.RecoveryCodesV1); + rpc GetAccountRecoveryCodes(GetAccountRecoveryCodesRequest) returns (RecoveryCodes); // CreatePrivilegeToken returns a new privilege token after a logged in user successfully // re-authenticates with their second factor device. Privilege token lasts PrivilegeTokenTTL and diff --git a/lib/auth/accountrecovery.go b/lib/auth/accountrecovery.go index c4c39ce835e10..515a7b1788a7f 100644 --- a/lib/auth/accountrecovery.go +++ b/lib/auth/accountrecovery.go @@ -452,7 +452,7 @@ func (s *Server) CompleteAccountRecovery(ctx context.Context, req *proto.Complet } // CreateAccountRecoveryCodes implements AuthService.CreateAccountRecoveryCodes. -func (s *Server) CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.CreateAccountRecoveryCodesResponse, error) { +func (s *Server) CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) { const unableToCreateCodesMsg = "unable to create new recovery codes, please contact your system administrator" if err := s.isAccountRecoveryAllowed(ctx); err != nil { @@ -474,7 +474,7 @@ func (s *Server) CreateAccountRecoveryCodes(ctx context.Context, req *proto.Crea return nil, trace.Wrap(err) } - codes, err := s.generateAndUpsertRecoveryCodes(ctx, token.GetUser()) + newRecovery, err := s.generateAndUpsertRecoveryCodes(ctx, token.GetUser()) if err != nil { log.Error(trace.DebugReport(err)) return nil, trace.AccessDenied(unableToCreateCodesMsg) @@ -487,9 +487,7 @@ func (s *Server) CreateAccountRecoveryCodes(ctx context.Context, req *proto.Crea } } - return &proto.CreateAccountRecoveryCodesResponse{ - RecoveryCodes: codes, - }, nil + return newRecovery, nil } // GetAccountRecoveryToken implements AuthService.GetAccountRecoveryToken. @@ -508,7 +506,7 @@ func (s *Server) GetAccountRecoveryToken(ctx context.Context, req *proto.GetAcco } // GetAccountRecoveryCodes implements AuthService.GetAccountRecoveryCodes. -func (s *Server) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*types.RecoveryCodesV1, error) { +func (s *Server) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) { username, err := GetClientUsername(ctx) if err != nil { return nil, trace.Wrap(err) @@ -519,10 +517,12 @@ func (s *Server) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAcco return nil, trace.Wrap(err) } - return rc, nil + return &proto.RecoveryCodes{ + Created: rc.Spec.Created, + }, nil } -func (s *Server) generateAndUpsertRecoveryCodes(ctx context.Context, username string) ([]string, error) { +func (s *Server) generateAndUpsertRecoveryCodes(ctx context.Context, username string) (*proto.RecoveryCodes, error) { codes, err := generateRecoveryCodes() if err != nil { return nil, trace.Wrap(err) @@ -559,7 +559,10 @@ func (s *Server) generateAndUpsertRecoveryCodes(ctx context.Context, username st log.WithError(err).WithFields(logrus.Fields{"user": username}).Warn("Failed to emit recovery tokens generate event.") } - return codes, nil + return &proto.RecoveryCodes{ + Codes: codes, + Created: rc.Spec.Created, + }, nil } // isAccountRecoveryAllowed gets cluster auth configuration and check if cloud, local auth diff --git a/lib/auth/accountrecovery_test.go b/lib/auth/accountrecovery_test.go index 0e113a2109f34..4e738c973cde5 100644 --- a/lib/auth/accountrecovery_test.go +++ b/lib/auth/accountrecovery_test.go @@ -64,7 +64,8 @@ func TestGenerateAndUpsertRecoveryCodes(t *testing.T) { user := "fake@fake.com" rc, err := srv.Auth().generateAndUpsertRecoveryCodes(ctx, user) require.NoError(t, err) - require.Len(t, rc, numOfRecoveryCodes) + require.Len(t, rc.Codes, numOfRecoveryCodes) + require.NotEmpty(t, rc.Created) // Test codes are not marked used. recovery, err := srv.Auth().GetRecoveryCodes(ctx, user, true /* withSecrets */) @@ -74,7 +75,7 @@ func TestGenerateAndUpsertRecoveryCodes(t *testing.T) { } // Test each codes are of correct format and used. - for _, code := range rc { + for _, code := range rc.Codes { s := strings.Split(code, "-") // 9 b/c 1 for prefix, 8 for words. @@ -94,7 +95,7 @@ func TestGenerateAndUpsertRecoveryCodes(t *testing.T) { } // Test with a used code returns error. - err = srv.Auth().verifyRecoveryCode(ctx, user, []byte(rc[0])) + err = srv.Auth().verifyRecoveryCode(ctx, user, []byte(rc.Codes[0])) require.True(t, trace.IsAccessDenied(err)) // Test with invalid recovery code returns error. @@ -102,7 +103,7 @@ func TestGenerateAndUpsertRecoveryCodes(t *testing.T) { require.True(t, trace.IsAccessDenied(err)) // Test with non-existing user returns error. - err = srv.Auth().verifyRecoveryCode(ctx, "doesnotexist", []byte(rc[0])) + err = srv.Auth().verifyRecoveryCode(ctx, "doesnotexist", []byte(rc.Codes[0])) require.True(t, trace.IsAccessDenied(err)) } @@ -116,21 +117,21 @@ func TestRecoveryCodeEventsEmitted(t *testing.T) { user := "fake@fake.com" // Test generated recovery codes event. - tc, err := srv.Auth().generateAndUpsertRecoveryCodes(ctx, user) + rc, err := srv.Auth().generateAndUpsertRecoveryCodes(ctx, user) require.NoError(t, err) event := mockEmitter.LastEvent() require.Equal(t, events.RecoveryCodeGeneratedEvent, event.GetType()) require.Equal(t, events.RecoveryCodesGenerateCode, event.GetCode()) // Test used recovery code event. - err = srv.Auth().verifyRecoveryCode(ctx, user, []byte(tc[0])) + err = srv.Auth().verifyRecoveryCode(ctx, user, []byte(rc.Codes[0])) require.NoError(t, err) event = mockEmitter.LastEvent() require.Equal(t, events.RecoveryCodeUsedEvent, event.GetType()) require.Equal(t, events.RecoveryCodeUseSuccessCode, event.GetCode()) // Re-using the same token emits failed event. - err = srv.Auth().verifyRecoveryCode(ctx, user, []byte(tc[0])) + err = srv.Auth().verifyRecoveryCode(ctx, user, []byte(rc.Codes[0])) require.Error(t, err) event = mockEmitter.LastEvent() require.Equal(t, events.RecoveryCodeUsedEvent, event.GetType()) @@ -1275,7 +1276,8 @@ func TestCreateAccountRecoveryCodes(t *testing.T) { default: require.NoError(t, err) - require.Len(t, res.GetRecoveryCodes(), numOfRecoveryCodes) + require.Len(t, res.GetCodes(), numOfRecoveryCodes) + require.NotEmpty(t, res.GetCreated()) // Check token is deleted after success. _, err = srv.Auth().Identity.GetUserToken(ctx, req.TokenID) @@ -1318,8 +1320,8 @@ func TestGetAccountRecoveryCodes(t *testing.T) { rc, err := clt.GetAccountRecoveryCodes(ctx, &proto.GetAccountRecoveryCodesRequest{}) require.NoError(t, err) - require.Empty(t, rc.Spec.Codes) - require.NotEmpty(t, rc.Spec.Created) + require.Empty(t, rc.Codes) + require.NotEmpty(t, rc.Created) } func triggerLoginLock(t *testing.T, srv *Server, username string) { @@ -1416,7 +1418,7 @@ func createUserWithSecondFactors(srv *TestTLSServer) (*userAuthCreds, error) { return &userAuthCreds{ username: username, password: password, - recoveryCodes: res.GetRecoveryCodes(), + recoveryCodes: res.GetRecovery().GetCodes(), totpDev: totpDev, webDev: webDev, }, nil diff --git a/lib/auth/auth_with_roles.go b/lib/auth/auth_with_roles.go index ba644f2aeac8d..b3d564ea26577 100644 --- a/lib/auth/auth_with_roles.go +++ b/lib/auth/auth_with_roles.go @@ -3605,7 +3605,7 @@ func (a *ServerWithRoles) CompleteAccountRecovery(ctx context.Context, req *prot } // CreateAccountRecoveryCodes is implemented by AuthService.CreateAccountRecoveryCodes. -func (a *ServerWithRoles) CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.CreateAccountRecoveryCodesResponse, error) { +func (a *ServerWithRoles) CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) { return a.authServer.CreateAccountRecoveryCodes(ctx, req) } @@ -3635,7 +3635,7 @@ func (a *ServerWithRoles) CreateRegisterChallenge(ctx context.Context, req *prot } // GetAccountRecoveryCodes is implemented by AuthService.GetAccountRecoveryCodes. -func (a *ServerWithRoles) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*types.RecoveryCodesV1, error) { +func (a *ServerWithRoles) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) { // User in context can retrieve their own recovery codes. return a.authServer.GetAccountRecoveryCodes(ctx, req) } diff --git a/lib/auth/clt.go b/lib/auth/clt.go index 76505078d8b07..d3d3add29b939 100644 --- a/lib/auth/clt.go +++ b/lib/auth/clt.go @@ -1802,12 +1802,12 @@ type IdentityService interface { CompleteAccountRecovery(ctx context.Context, req *proto.CompleteAccountRecoveryRequest) error // CreateAccountRecoveryCodes creates new set of recovery codes for a user, replacing and invalidating any previously owned codes. - CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.CreateAccountRecoveryCodesResponse, error) + CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) // GetAccountRecoveryToken returns a user token resource after verifying the token in // request is not expired and is of the correct recovery type. GetAccountRecoveryToken(ctx context.Context, req *proto.GetAccountRecoveryTokenRequest) (types.UserToken, error) // GetAccountRecoveryCodes returns the user in context their recovery codes resource without any secrets. - GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*types.RecoveryCodesV1, error) + GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) // CreatePrivilegeToken creates a privilege token for the logged in user who has successfully re-authenticated with their second factor. // A privilege token allows users to perform privileged action eg: add/delete their MFA device. diff --git a/lib/auth/grpcserver.go b/lib/auth/grpcserver.go index 36ceb4a531738..937eb18be57c8 100644 --- a/lib/auth/grpcserver.go +++ b/lib/auth/grpcserver.go @@ -3353,7 +3353,7 @@ func (g *GRPCServer) CompleteAccountRecovery(ctx context.Context, req *proto.Com } // CreateAccountRecoveryCodes is implemented by AuthService.CreateAccountRecoveryCodes. -func (g *GRPCServer) CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.CreateAccountRecoveryCodesResponse, error) { +func (g *GRPCServer) CreateAccountRecoveryCodes(ctx context.Context, req *proto.CreateAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) { auth, err := g.authenticate(ctx) if err != nil { return nil, trace.Wrap(err) @@ -3384,7 +3384,7 @@ func (g *GRPCServer) GetAccountRecoveryToken(ctx context.Context, req *proto.Get } // GetAccountRecoveryCodes is implemented by AuthService.GetAccountRecoveryCodes. -func (g *GRPCServer) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*types.RecoveryCodesV1, error) { +func (g *GRPCServer) GetAccountRecoveryCodes(ctx context.Context, req *proto.GetAccountRecoveryCodesRequest) (*proto.RecoveryCodes, error) { auth, err := g.authenticate(ctx) if err != nil { return nil, trace.Wrap(err) diff --git a/lib/auth/password.go b/lib/auth/password.go index 447fc5276a7cc..664c9bd0adcca 100644 --- a/lib/auth/password.go +++ b/lib/auth/password.go @@ -66,9 +66,9 @@ func (s *Server) ChangeUserAuthentication(ctx context.Context, req *proto.Change recoveryAllowed := s.isAccountRecoveryAllowed(ctx) == nil createRecoveryCodes := hasEmail && hasMFA && recoveryAllowed - var recoveryCodes []string + var newRecovery *proto.RecoveryCodes if createRecoveryCodes { - recoveryCodes, err = s.generateAndUpsertRecoveryCodes(ctx, user.GetName()) + newRecovery, err = s.generateAndUpsertRecoveryCodes(ctx, user.GetName()) if err != nil { return nil, trace.Wrap(err) } @@ -85,8 +85,8 @@ func (s *Server) ChangeUserAuthentication(ctx context.Context, req *proto.Change } return &proto.ChangeUserAuthenticationResponse{ - WebSession: sess, - RecoveryCodes: recoveryCodes, + WebSession: sess, + Recovery: newRecovery, }, nil } diff --git a/lib/web/apiserver.go b/lib/web/apiserver.go index 74dfe11c5a78e..f6aaf5911c8a7 100644 --- a/lib/web/apiserver.go +++ b/lib/web/apiserver.go @@ -1540,7 +1540,14 @@ func (h *Handler) changeUserAuthentication(w http.ResponseWriter, r *http.Reques return nil, trace.Wrap(err) } - return res.RecoveryCodes, nil + if res.GetRecovery() == nil { + return &ui.RecoveryCodes{}, nil + } + + return &ui.RecoveryCodes{ + Codes: res.Recovery.Codes, + Created: &res.Recovery.Created, + }, nil } // createResetPasswordToken allows a UI user to reset a user's password. diff --git a/lib/web/apiserver_test.go b/lib/web/apiserver_test.go index 8af35f7412a08..d5bdf8febee76 100644 --- a/lib/web/apiserver_test.go +++ b/lib/web/apiserver_test.go @@ -1535,9 +1535,10 @@ func (s *WebSuite) TestChangePasswordAndAddTOTPDeviceWithToken(c *C) { c.Assert(err, IsNil) // Test that no recovery codes are returned b/c cloud feature isn't enabled. - var recoveryCodes []string - c.Assert(json.Unmarshal(re.Bytes(), &recoveryCodes), IsNil) - c.Assert(recoveryCodes, HasLen, 0) + var response ui.RecoveryCodes + c.Assert(json.Unmarshal(re.Bytes(), &response), IsNil) + c.Assert(response.Codes, IsNil) + c.Assert(response.Created, IsNil) } func (s *WebSuite) TestChangePasswordAndAddU2FDeviceWithToken(c *C) { @@ -1592,9 +1593,10 @@ func (s *WebSuite) TestChangePasswordAndAddU2FDeviceWithToken(c *C) { c.Assert(err, IsNil) // Test that no recovery codes are returned b/c cloud is not turned on. - var recoveryCodes []string - c.Assert(json.Unmarshal(re.Bytes(), &recoveryCodes), IsNil) - c.Assert(recoveryCodes, HasLen, 0) + var response ui.RecoveryCodes + c.Assert(json.Unmarshal(re.Bytes(), &response), IsNil) + c.Assert(response.Codes, IsNil) + c.Assert(response.Created, IsNil) } // TestEmptyMotD ensures that responses returned by both /webapi/ping and @@ -2802,7 +2804,7 @@ func TestChangeUserAuthentication_recoveryCodesReturnedForCloud(t *testing.T) { }}, }) require.NoError(t, err) - require.Empty(t, re.RecoveryCodes) + require.Nil(t, re.Recovery) // Create a user that is valid for recovery. teleUser, err = types.NewUser("valid-username@example.com") @@ -2831,7 +2833,8 @@ func TestChangeUserAuthentication_recoveryCodesReturnedForCloud(t *testing.T) { }}, }) require.NoError(t, err) - require.Len(t, re.RecoveryCodes, 3) + require.Len(t, re.Recovery.Codes, 3) + require.NotEmpty(t, re.Recovery.Created) } type authProviderMock struct { diff --git a/lib/web/ui/accountrecovery.go b/lib/web/ui/accountrecovery.go new file mode 100644 index 0000000000000..9c3199712f55b --- /dev/null +++ b/lib/web/ui/accountrecovery.go @@ -0,0 +1,27 @@ +/* +Copyright 2020 Gravitational, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package ui + +import "time" + +// RecoveryCodes describes RecoveryCodes UI object. +type RecoveryCodes struct { + // Codes are user's new recovery codes. + Codes []string `json:"codes,omitempty"` + // Created is when the codes were created. + Created *time.Time `json:"created,omitempty"` +} From 81b1cc033e61d8f01ed912b5d5294efe50738d03 Mon Sep 17 00:00:00 2001 From: Lisa Kim Date: Tue, 9 Nov 2021 10:18:25 -0800 Subject: [PATCH 2/2] update e-ref --- e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e b/e index 6f3574ac3cbf9..6b755fa0e0461 160000 --- a/e +++ b/e @@ -1 +1 @@ -Subproject commit 6f3574ac3cbf993e31de8fcef887a0f91631eb0f +Subproject commit 6b755fa0e0461a1ebf76e7e7a78aa09074d10abc