diff --git a/api/client/client.go b/api/client/client.go index b58e0348959a1..508a987e2a189 100644 --- a/api/client/client.go +++ b/api/client/client.go @@ -1364,6 +1364,54 @@ func (c *Client) DeleteAllNodes(ctx context.Context, namespace string) error { return trail.FromGRPC(err) } +// StreamSessionEvents streams audit events from a given session recording. +func (c *Client) StreamSessionEvents(ctx context.Context, sessionID string, startIndex int64) (chan events.AuditEvent, chan error) { + request := &proto.StreamSessionEventsRequest{ + SessionID: sessionID, + StartIndex: int32(startIndex), + } + + ch := make(chan events.AuditEvent) + e := make(chan error, 1) + + stream, err := c.grpc.StreamSessionEvents(ctx, request) + if err != nil { + e <- trace.Wrap(err) + return ch, e + } + + go func() { + outer: + for { + oneOf, err := stream.Recv() + if err != nil { + if err != io.EOF { + e <- trace.Wrap(trail.FromGRPC(err)) + } else { + close(ch) + } + + break outer + } + + event, err := events.FromOneOf(*oneOf) + if err != nil { + e <- trace.Wrap(trail.FromGRPC(err)) + break outer + } + + select { + case ch <- event: + case <-ctx.Done(): + e <- trace.Wrap(ctx.Err()) + break outer + } + } + }() + + return ch, e +} + // SearchEvents allows searching for events with a full pagination support. func (c *Client) SearchEvents(ctx context.Context, fromUTC, toUTC time.Time, namespace string, eventTypes []string, limit int, order types.EventOrder, startKey string) ([]events.AuditEvent, string, error) { request := &proto.GetEventsRequest{ diff --git a/api/client/proto/authservice.pb.go b/api/client/proto/authservice.pb.go index 6808d8e3da523..911aa78bc4c32 100644 --- a/api/client/proto/authservice.pb.go +++ b/api/client/proto/authservice.pb.go @@ -5790,6 +5790,65 @@ func (*IsMFARequiredRequest) XXX_OneofWrappers() []interface{} { } } +// StreamSessionEventsRequest is a request containing needed data to fetch a session recording. +type StreamSessionEventsRequest struct { + // SessionID is the ID for a given session in an UUIDv4 format. + SessionID string `protobuf:"bytes,1,opt,name=SessionID,proto3" json:"SessionID,omitempty"` + // StartIndex is the index of the event to resume the stream after. + // A StartIndex of 0 creates a new stream. + StartIndex int32 `protobuf:"varint,2,opt,name=StartIndex,proto3" json:"StartIndex,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamSessionEventsRequest) Reset() { *m = StreamSessionEventsRequest{} } +func (m *StreamSessionEventsRequest) String() string { return proto.CompactTextString(m) } +func (*StreamSessionEventsRequest) ProtoMessage() {} +func (*StreamSessionEventsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_ce8bd90b12161215, []int{86} +} +func (m *StreamSessionEventsRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *StreamSessionEventsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_StreamSessionEventsRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *StreamSessionEventsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamSessionEventsRequest.Merge(m, src) +} +func (m *StreamSessionEventsRequest) XXX_Size() int { + return m.Size() +} +func (m *StreamSessionEventsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamSessionEventsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_StreamSessionEventsRequest proto.InternalMessageInfo + +func (m *StreamSessionEventsRequest) GetSessionID() string { + if m != nil { + return m.SessionID + } + return "" +} + +func (m *StreamSessionEventsRequest) GetStartIndex() int32 { + if m != nil { + return m.StartIndex + } + return 0 +} + // NodeLogin specifies an SSH node and OS login. type NodeLogin struct { // Node can be node's hostname or UUID. @@ -5805,7 +5864,7 @@ func (m *NodeLogin) Reset() { *m = NodeLogin{} } func (m *NodeLogin) String() string { return proto.CompactTextString(m) } func (*NodeLogin) ProtoMessage() {} func (*NodeLogin) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{86} + return fileDescriptor_ce8bd90b12161215, []int{87} } func (m *NodeLogin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5860,7 +5919,7 @@ func (m *IsMFARequiredResponse) Reset() { *m = IsMFARequiredResponse{} } func (m *IsMFARequiredResponse) String() string { return proto.CompactTextString(m) } func (*IsMFARequiredResponse) ProtoMessage() {} func (*IsMFARequiredResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{87} + return fileDescriptor_ce8bd90b12161215, []int{88} } func (m *IsMFARequiredResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5911,7 +5970,7 @@ func (m *SingleUseUserCert) Reset() { *m = SingleUseUserCert{} } func (m *SingleUseUserCert) String() string { return proto.CompactTextString(m) } func (*SingleUseUserCert) ProtoMessage() {} func (*SingleUseUserCert) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{88} + return fileDescriptor_ce8bd90b12161215, []int{89} } func (m *SingleUseUserCert) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6012,7 +6071,7 @@ func (m *GetEventsRequest) Reset() { *m = GetEventsRequest{} } func (m *GetEventsRequest) String() string { return proto.CompactTextString(m) } func (*GetEventsRequest) ProtoMessage() {} func (*GetEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{89} + return fileDescriptor_ce8bd90b12161215, []int{90} } func (m *GetEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6113,7 +6172,7 @@ func (m *GetSessionEventsRequest) Reset() { *m = GetSessionEventsRequest func (m *GetSessionEventsRequest) String() string { return proto.CompactTextString(m) } func (*GetSessionEventsRequest) ProtoMessage() {} func (*GetSessionEventsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{90} + return fileDescriptor_ce8bd90b12161215, []int{91} } func (m *GetSessionEventsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6193,7 +6252,7 @@ func (m *Events) Reset() { *m = Events{} } func (m *Events) String() string { return proto.CompactTextString(m) } func (*Events) ProtoMessage() {} func (*Events) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{91} + return fileDescriptor_ce8bd90b12161215, []int{92} } func (m *Events) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6253,7 +6312,7 @@ func (m *ListNodesRequest) Reset() { *m = ListNodesRequest{} } func (m *ListNodesRequest) String() string { return proto.CompactTextString(m) } func (*ListNodesRequest) ProtoMessage() {} func (*ListNodesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{92} + return fileDescriptor_ce8bd90b12161215, []int{93} } func (m *ListNodesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6318,7 +6377,7 @@ func (m *ListNodesResponse) Reset() { *m = ListNodesResponse{} } func (m *ListNodesResponse) String() string { return proto.CompactTextString(m) } func (*ListNodesResponse) ProtoMessage() {} func (*ListNodesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{93} + return fileDescriptor_ce8bd90b12161215, []int{94} } func (m *ListNodesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6374,7 +6433,7 @@ func (m *GetLocksRequest) Reset() { *m = GetLocksRequest{} } func (m *GetLocksRequest) String() string { return proto.CompactTextString(m) } func (*GetLocksRequest) ProtoMessage() {} func (*GetLocksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{94} + return fileDescriptor_ce8bd90b12161215, []int{95} } func (m *GetLocksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6422,7 +6481,7 @@ func (m *GetLocksResponse) Reset() { *m = GetLocksResponse{} } func (m *GetLocksResponse) String() string { return proto.CompactTextString(m) } func (*GetLocksResponse) ProtoMessage() {} func (*GetLocksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{95} + return fileDescriptor_ce8bd90b12161215, []int{96} } func (m *GetLocksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6470,7 +6529,7 @@ func (m *GetLockRequest) Reset() { *m = GetLockRequest{} } func (m *GetLockRequest) String() string { return proto.CompactTextString(m) } func (*GetLockRequest) ProtoMessage() {} func (*GetLockRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{96} + return fileDescriptor_ce8bd90b12161215, []int{97} } func (m *GetLockRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6518,7 +6577,7 @@ func (m *DeleteLockRequest) Reset() { *m = DeleteLockRequest{} } func (m *DeleteLockRequest) String() string { return proto.CompactTextString(m) } func (*DeleteLockRequest) ProtoMessage() {} func (*DeleteLockRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ce8bd90b12161215, []int{97} + return fileDescriptor_ce8bd90b12161215, []int{98} } func (m *DeleteLockRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6646,6 +6705,7 @@ func init() { proto.RegisterType((*UserSingleUseCertsRequest)(nil), "proto.UserSingleUseCertsRequest") proto.RegisterType((*UserSingleUseCertsResponse)(nil), "proto.UserSingleUseCertsResponse") proto.RegisterType((*IsMFARequiredRequest)(nil), "proto.IsMFARequiredRequest") + proto.RegisterType((*StreamSessionEventsRequest)(nil), "proto.StreamSessionEventsRequest") proto.RegisterType((*NodeLogin)(nil), "proto.NodeLogin") proto.RegisterType((*IsMFARequiredResponse)(nil), "proto.IsMFARequiredResponse") proto.RegisterType((*SingleUseUserCert)(nil), "proto.SingleUseUserCert") @@ -6663,376 +6723,379 @@ func init() { func init() { proto.RegisterFile("authservice.proto", fileDescriptor_ce8bd90b12161215) } var fileDescriptor_ce8bd90b12161215 = []byte{ - // 5892 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x7c, 0x4b, 0x6c, 0x23, 0x49, - 0x72, 0xa8, 0x8a, 0xfa, 0x32, 0xf4, 0xa3, 0x52, 0x3f, 0x36, 0xa5, 0x16, 0x7b, 0xab, 0x77, 0x7b, - 0x7b, 0x66, 0x67, 0xa5, 0x59, 0x6a, 0xe6, 0xcd, 0xec, 0x7c, 0xba, 0x1f, 0x49, 0xfd, 0x38, 0xad, - 0x56, 0x6b, 0x8a, 0x12, 0x7b, 0x77, 0x3d, 0x80, 0x5c, 0x22, 0xb3, 0xa5, 0x82, 0x28, 0x16, 0xa7, - 0xaa, 0xa8, 0x9e, 0xf6, 0xc9, 0x36, 0xd6, 0x6b, 0xc3, 0x86, 0x01, 0x5f, 0x7c, 0xf0, 0xc9, 0x06, - 0x7c, 0xf3, 0x61, 0x4f, 0xbe, 0xee, 0x7d, 0x60, 0xc0, 0xb0, 0x6f, 0x06, 0x0c, 0x83, 0x5e, 0xcf, - 0x91, 0x57, 0xdf, 0x7c, 0x32, 0xf2, 0x5b, 0x99, 0xc5, 0x2a, 0x4a, 0xea, 0x6e, 0xdb, 0x17, 0x89, - 0x15, 0x99, 0x11, 0x19, 0x11, 0x19, 0x19, 0x11, 0x19, 0x15, 0x24, 0xcc, 0xd9, 0x9d, 0xe0, 0xdc, - 0xc7, 0xde, 0x95, 0x53, 0xc7, 0xeb, 0x6d, 0xcf, 0x0d, 0x5c, 0x34, 0x4a, 0xff, 0xe5, 0x16, 0xce, - 0xdc, 0x33, 0x97, 0x7e, 0xdc, 0x20, 0x9f, 0xd8, 0x60, 0x6e, 0xe5, 0xcc, 0x75, 0xcf, 0x9a, 0x78, - 0x83, 0x3e, 0x9d, 0x76, 0x5e, 0x6c, 0xe0, 0xcb, 0x76, 0xf0, 0x8a, 0x0f, 0xe6, 0xa3, 0x83, 0x81, - 0x73, 0x89, 0xfd, 0xc0, 0xbe, 0x6c, 0xf3, 0x09, 0x1f, 0x9d, 0x39, 0xc1, 0x79, 0xe7, 0x74, 0xbd, - 0xee, 0x5e, 0x6e, 0x9c, 0x79, 0xf6, 0x95, 0x13, 0xd8, 0x81, 0xe3, 0xb6, 0xec, 0xe6, 0x46, 0x80, - 0x9b, 0xb8, 0xed, 0x7a, 0xc1, 0x86, 0xdd, 0x76, 0x36, 0x82, 0x57, 0x6d, 0xec, 0xb3, 0xbf, 0x1c, - 0xb1, 0x7c, 0x1b, 0xc4, 0x97, 0x9e, 0xdd, 0x6e, 0x63, 0x2f, 0xfc, 0xc0, 0x89, 0x3c, 0xbe, 0x0d, - 0x11, 0x7c, 0x85, 0x5b, 0x81, 0xf8, 0xc7, 0x08, 0x98, 0xbf, 0xcd, 0xc0, 0xe8, 0x36, 0x01, 0xa0, - 0x8f, 0x61, 0xe4, 0xe8, 0x55, 0x1b, 0x67, 0x8d, 0x7b, 0xc6, 0xc3, 0x99, 0x42, 0x86, 0x8d, 0xaf, - 0x3f, 0x6b, 0x63, 0x8f, 0x92, 0x2c, 0xa1, 0x5e, 0x37, 0x3f, 0x43, 0x08, 0xbd, 0xe7, 0x5e, 0x3a, - 0x01, 0xd5, 0x91, 0x45, 0x31, 0xd0, 0x73, 0x98, 0xb1, 0xb0, 0xef, 0x76, 0xbc, 0x3a, 0xde, 0xc3, - 0x76, 0x03, 0x7b, 0xd9, 0xd4, 0x3d, 0xe3, 0xe1, 0x64, 0x61, 0x71, 0x9d, 0xc9, 0xab, 0x0f, 0x96, - 0x96, 0x7a, 0xdd, 0x3c, 0xf2, 0x38, 0x2c, 0x24, 0xb6, 0x37, 0x64, 0x45, 0xc8, 0xa0, 0xaf, 0x60, - 0xba, 0x8c, 0xbd, 0xa0, 0xd8, 0x09, 0xce, 0x5d, 0xcf, 0x09, 0x5e, 0x65, 0x87, 0x29, 0xdd, 0x25, - 0x4e, 0x57, 0x1b, 0xab, 0x15, 0x4a, 0xab, 0xbd, 0x6e, 0x3e, 0x5b, 0xc7, 0x5e, 0x70, 0x62, 0x0b, - 0xa8, 0x46, 0x5e, 0x27, 0x86, 0x7e, 0x06, 0x53, 0x55, 0xa2, 0xae, 0xfa, 0x91, 0x7b, 0x81, 0x5b, - 0x7e, 0x76, 0x44, 0x63, 0x5a, 0x1d, 0xaa, 0x15, 0x4a, 0x2b, 0xbd, 0x6e, 0x7e, 0xd9, 0xa7, 0xb0, - 0x93, 0x80, 0x02, 0x35, 0xd2, 0x1a, 0x25, 0xf4, 0xbb, 0x30, 0x73, 0xe8, 0xb9, 0x57, 0x8e, 0xef, - 0xb8, 0x2d, 0x0a, 0xca, 0x8e, 0x52, 0xda, 0xcb, 0x9c, 0xb6, 0x3e, 0x58, 0x2b, 0x94, 0xee, 0xf6, - 0xba, 0xf9, 0x3b, 0x6d, 0x01, 0x65, 0x0b, 0xe8, 0x9a, 0xd1, 0x51, 0xd0, 0x11, 0x4c, 0x96, 0x9b, - 0x1d, 0x3f, 0xc0, 0xde, 0x81, 0x7d, 0x89, 0xb3, 0x63, 0x94, 0xfc, 0x82, 0xd0, 0x4b, 0x38, 0x52, - 0x2b, 0x94, 0x72, 0xbd, 0x6e, 0x7e, 0xa9, 0xce, 0x40, 0x27, 0x2d, 0xfb, 0x52, 0x57, 0xb9, 0x4a, - 0x86, 0xea, 0x9b, 0x3d, 0x96, 0xdd, 0xd6, 0x0b, 0xe7, 0x2c, 0x3b, 0xae, 0xeb, 0x5b, 0x1d, 0xab, - 0x6d, 0x72, 0x7d, 0x73, 0xca, 0x75, 0x0a, 0x8d, 0xe8, 0x5b, 0x45, 0x40, 0x1f, 0xc1, 0xc8, 0xb1, - 0x8f, 0xbd, 0xec, 0x04, 0x25, 0x3a, 0xcd, 0x89, 0x12, 0x50, 0xad, 0xc0, 0xac, 0xab, 0xe3, 0x63, - 0x4f, 0xa3, 0x40, 0x11, 0x08, 0xa2, 0xe5, 0x36, 0x71, 0x36, 0xad, 0x21, 0x12, 0x50, 0xed, 0x03, - 0x86, 0xe8, 0xb9, 0x4d, 0x5d, 0x2c, 0x8a, 0x80, 0x2a, 0x90, 0x26, 0x72, 0xf9, 0x6d, 0xbb, 0x8e, - 0xb3, 0x40, 0xb1, 0x33, 0x1c, 0x5b, 0xc2, 0x4b, 0xcb, 0xbd, 0x6e, 0x7e, 0xbe, 0x25, 0x1e, 0x35, - 0x2a, 0x21, 0x36, 0x7a, 0x0c, 0x63, 0x55, 0xec, 0x5d, 0x61, 0x2f, 0x3b, 0x49, 0xe9, 0xcc, 0x0a, - 0x33, 0xa1, 0xc0, 0x5a, 0xa1, 0xb4, 0xd0, 0xeb, 0xe6, 0x33, 0x3e, 0x7d, 0xd2, 0x68, 0x70, 0x34, - 0xa2, 0x5b, 0x0b, 0x5f, 0x61, 0xcf, 0xc7, 0x47, 0x9d, 0x56, 0x0b, 0x37, 0xb3, 0x53, 0x9a, 0x6e, - 0xb5, 0x31, 0x61, 0xcb, 0x1e, 0x03, 0x9e, 0x04, 0x14, 0xaa, 0xeb, 0x56, 0x43, 0x40, 0xe7, 0x90, - 0x61, 0x9f, 0xca, 0x6e, 0xab, 0x85, 0xeb, 0xe4, 0xc0, 0x66, 0xa7, 0xe9, 0x02, 0x77, 0xf8, 0x02, - 0xd1, 0xe1, 0x5a, 0xa1, 0x94, 0xef, 0x75, 0xf3, 0x2b, 0x8c, 0x36, 0xd9, 0x3e, 0x3e, 0xa0, 0x2d, - 0xd3, 0x47, 0x95, 0xc8, 0x51, 0xac, 0xd7, 0xb1, 0xef, 0x5b, 0xf8, 0xeb, 0x0e, 0xf6, 0x83, 0xec, - 0x8c, 0x26, 0x87, 0x36, 0x26, 0x6c, 0xc4, 0xa6, 0xc0, 0x13, 0x8f, 0x41, 0x75, 0x39, 0x34, 0x04, - 0x74, 0x08, 0x50, 0x6c, 0xb7, 0xab, 0xd8, 0x27, 0xa6, 0x9e, 0x9d, 0xa5, 0xa4, 0xe7, 0x39, 0xe9, - 0xe7, 0xf8, 0x94, 0x0f, 0xd4, 0x0a, 0xa5, 0x3b, 0xbd, 0x6e, 0x7e, 0xd1, 0x6e, 0xb7, 0x4f, 0x7c, - 0x06, 0xd2, 0x88, 0x2a, 0x34, 0x98, 0xde, 0x2f, 0xdd, 0x00, 0x73, 0x63, 0xcc, 0x66, 0x22, 0x7a, - 0x57, 0xc6, 0x04, 0xbf, 0x1e, 0x05, 0x9e, 0x70, 0xd3, 0x8e, 0xea, 0x5d, 0x41, 0x20, 0x27, 0x7d, - 0xcb, 0x0e, 0xec, 0x53, 0xdb, 0xc7, 0xdc, 0x3c, 0xe6, 0xb4, 0x93, 0xae, 0x0f, 0xd6, 0x36, 0xd9, - 0x49, 0x6f, 0x70, 0xe8, 0x49, 0x8c, 0xbd, 0x44, 0xe8, 0x11, 0x8d, 0x84, 0x82, 0x67, 0xd1, 0x35, - 0x1a, 0x79, 0x89, 0x4f, 0xe3, 0x35, 0x12, 0x4e, 0x45, 0x7b, 0x30, 0xf1, 0x1c, 0x9f, 0x32, 0xbf, - 0x34, 0x4f, 0xe9, 0xcd, 0x85, 0xf4, 0x98, 0x47, 0xda, 0x64, 0xa7, 0x82, 0x50, 0xeb, 0xf7, 0x45, - 0x12, 0x1b, 0xfd, 0x91, 0x01, 0xcb, 0xc2, 0x7f, 0xe0, 0xe0, 0xa5, 0xeb, 0x5d, 0x38, 0xad, 0x33, - 0xee, 0x3a, 0x16, 0x28, 0xe5, 0x7b, 0x11, 0x97, 0x14, 0x99, 0x55, 0x2b, 0x94, 0x7e, 0xd8, 0xeb, - 0xe6, 0xef, 0x4b, 0xf7, 0x24, 0xc7, 0xe3, 0xfc, 0x49, 0xd2, 0x5a, 0xe8, 0x0f, 0x0c, 0x58, 0xe2, - 0xd2, 0x59, 0xb8, 0xee, 0x7a, 0x8d, 0x90, 0x8d, 0x45, 0xca, 0x46, 0x5e, 0x9e, 0xd6, 0xb8, 0x49, - 0xb5, 0x42, 0xe9, 0x41, 0xaf, 0x9b, 0x37, 0xb9, 0xe2, 0x4e, 0x3c, 0x31, 0x1c, 0xc7, 0x44, 0xc2, - 0x42, 0xc4, 0x12, 0x48, 0x68, 0x39, 0xf4, 0xf0, 0x0b, 0xec, 0xe1, 0x56, 0x1d, 0x67, 0x97, 0x34, - 0x4b, 0xd0, 0x07, 0x85, 0xcf, 0x27, 0x81, 0xea, 0xa4, 0x2d, 0xc1, 0xba, 0x25, 0xe8, 0x28, 0xe8, - 0x6b, 0x40, 0x5c, 0x01, 0xc5, 0x4e, 0xc3, 0x09, 0xb8, 0x80, 0xcb, 0x74, 0x95, 0x15, 0x5d, 0xcf, - 0xca, 0x84, 0x5a, 0xa1, 0x64, 0xf6, 0xba, 0xf9, 0x35, 0xa1, 0x62, 0x9b, 0x0c, 0xc5, 0x09, 0x16, - 0x43, 0x9c, 0x78, 0xde, 0x7d, 0xb7, 0x7e, 0x91, 0xcd, 0x6a, 0x9e, 0x97, 0x80, 0x84, 0xcb, 0x6e, - 0xba, 0xf5, 0x0b, 0xdd, 0xf3, 0x92, 0xd1, 0x12, 0xc0, 0x84, 0x88, 0xe5, 0xe6, 0x1e, 0x8c, 0x3e, - 0xb7, 0x83, 0xfa, 0x39, 0x7a, 0x0c, 0xa3, 0x4f, 0x9c, 0x56, 0xc3, 0xcf, 0x1a, 0xf7, 0x86, 0xa9, - 0x2b, 0x66, 0x29, 0x06, 0x1d, 0x24, 0x03, 0xa5, 0xe5, 0x6f, 0xbb, 0xf9, 0xa1, 0x5e, 0x37, 0x3f, - 0x7b, 0x41, 0xa6, 0x29, 0x79, 0x06, 0xc3, 0x33, 0xff, 0x3e, 0x05, 0x69, 0x39, 0x1b, 0xad, 0xc2, - 0x08, 0xf9, 0x4f, 0x13, 0x96, 0x74, 0x69, 0xa2, 0xd7, 0xcd, 0x8f, 0x10, 0x3c, 0x8b, 0x42, 0x51, - 0x01, 0x26, 0xf7, 0x5d, 0xbb, 0x51, 0xc5, 0x75, 0x0f, 0x07, 0x3e, 0xcd, 0x48, 0x26, 0x4a, 0x99, - 0x5e, 0x37, 0x3f, 0xd5, 0x74, 0xed, 0xc6, 0x89, 0xcf, 0xe0, 0x96, 0x3a, 0x89, 0x50, 0xa4, 0xe1, - 0x74, 0x38, 0xa4, 0x48, 0x02, 0x83, 0x45, 0xa1, 0xe8, 0x0b, 0x18, 0xdb, 0x71, 0x9a, 0xc4, 0x85, - 0x8c, 0x50, 0xfe, 0x57, 0xa3, 0xfc, 0xaf, 0xb3, 0xe1, 0xed, 0x56, 0xe0, 0xbd, 0x62, 0xf1, 0xe0, - 0x05, 0x05, 0x28, 0x82, 0x70, 0x0a, 0xe8, 0x7d, 0x18, 0xaf, 0x76, 0x4e, 0x29, 0xfb, 0xa3, 0x74, - 0x31, 0x9a, 0x14, 0xf9, 0x9d, 0xd3, 0x13, 0x22, 0x82, 0x82, 0x20, 0xa6, 0xe5, 0x7e, 0x0a, 0x93, - 0x0a, 0x79, 0x94, 0x81, 0xe1, 0x0b, 0xfc, 0x8a, 0xc9, 0x6e, 0x91, 0x8f, 0x68, 0x01, 0x46, 0xaf, - 0xec, 0x66, 0x07, 0x53, 0x51, 0xd3, 0x16, 0x7b, 0xf8, 0x24, 0xf5, 0xb1, 0x61, 0x7e, 0x09, 0xa3, - 0x24, 0xf3, 0xf1, 0xd1, 0x7d, 0x18, 0xae, 0x56, 0xf7, 0x28, 0xd2, 0x54, 0x69, 0xae, 0xd7, 0xcd, - 0x4f, 0xfb, 0xfe, 0xb9, 0xb2, 0x18, 0x19, 0x25, 0x93, 0x8e, 0xf6, 0xab, 0x94, 0x0a, 0x9f, 0x14, - 0x34, 0xd5, 0xbd, 0x20, 0xa3, 0xe6, 0x3f, 0x8d, 0x41, 0x86, 0xc4, 0x66, 0x4a, 0x57, 0x38, 0xef, - 0xf7, 0x20, 0x7d, 0xd8, 0x39, 0x6d, 0x3a, 0xf5, 0x27, 0x9c, 0xb3, 0xa9, 0xd2, 0x4c, 0xaf, 0x9b, - 0x87, 0x36, 0x05, 0x9e, 0x5c, 0xe0, 0x57, 0x56, 0x38, 0x01, 0x3d, 0x84, 0x09, 0x42, 0x81, 0x28, - 0x98, 0xb1, 0x5c, 0x9a, 0xea, 0x75, 0xf3, 0x13, 0x1d, 0x0e, 0xb3, 0xe4, 0x28, 0xaa, 0xc2, 0xf8, - 0xf6, 0x37, 0x6d, 0xc7, 0xc3, 0x3e, 0x4f, 0x00, 0x73, 0xeb, 0x2c, 0x2b, 0x5f, 0x17, 0x59, 0xf9, - 0xfa, 0x91, 0xc8, 0xca, 0x4b, 0x77, 0xb9, 0x0d, 0xcd, 0x61, 0x86, 0x12, 0x72, 0xfe, 0x17, 0xff, - 0x9e, 0x37, 0x2c, 0x41, 0x09, 0xbd, 0x07, 0x63, 0x3b, 0xae, 0x77, 0x69, 0x07, 0x34, 0xef, 0x4b, - 0xf3, 0xfd, 0xa2, 0x10, 0x6d, 0xbf, 0x28, 0x04, 0xed, 0xc0, 0x8c, 0xe5, 0x76, 0x02, 0x7c, 0xe4, - 0x8a, 0x30, 0xc2, 0xb6, 0x6d, 0xad, 0xd7, 0xcd, 0xe7, 0x3c, 0x32, 0x72, 0x12, 0xb8, 0xfd, 0x01, - 0xc3, 0x8a, 0x60, 0xa1, 0x6d, 0x98, 0xd1, 0x02, 0x9e, 0x9f, 0x1d, 0xbb, 0x37, 0xfc, 0x30, 0xcd, - 0x9d, 0x81, 0x16, 0x26, 0x55, 0x9d, 0x47, 0x90, 0xd0, 0x01, 0xcc, 0x3d, 0xe9, 0x9c, 0x62, 0xaf, - 0x85, 0x03, 0xec, 0x0b, 0x8e, 0xc6, 0x29, 0x47, 0xf7, 0x7a, 0xdd, 0xfc, 0xea, 0x85, 0x1c, 0x8c, - 0xe1, 0xa9, 0x1f, 0x15, 0x61, 0x98, 0xe5, 0x8c, 0x8a, 0xe8, 0xc3, 0xb3, 0xb4, 0x25, 0x6e, 0xe3, - 0x91, 0xd1, 0xd2, 0x7d, 0xae, 0xe5, 0x15, 0x29, 0xbb, 0x88, 0x69, 0xca, 0x42, 0x51, 0x9a, 0x68, - 0x13, 0x26, 0x0e, 0xdc, 0x06, 0xa6, 0x67, 0x2c, 0x4d, 0xb9, 0x65, 0xc9, 0x97, 0xdb, 0xc0, 0x91, - 0xcc, 0xd4, 0x92, 0x13, 0xd1, 0x3e, 0x8c, 0x1e, 0xfb, 0xf6, 0x19, 0x4b, 0xe0, 0x66, 0x0a, 0xdf, - 0xe3, 0x1c, 0x45, 0xad, 0x8f, 0xde, 0x06, 0xe8, 0xc4, 0xd2, 0x3c, 0x71, 0x21, 0x1d, 0xf2, 0x51, - 0x75, 0x21, 0x74, 0x0c, 0x7d, 0x09, 0xc0, 0xb9, 0x2a, 0xb6, 0xdb, 0x3c, 0x97, 0x9b, 0xd3, 0x85, - 0x2c, 0xb6, 0xdb, 0xa5, 0x35, 0x2e, 0xdf, 0x92, 0x94, 0xcf, 0x6e, 0xb7, 0x15, 0x6a, 0x0a, 0x11, - 0x73, 0x0b, 0xd2, 0x72, 0x6d, 0x34, 0x0e, 0xc3, 0xc5, 0x66, 0x33, 0x33, 0x44, 0x3e, 0x54, 0xab, - 0x7b, 0x19, 0x03, 0xcd, 0x00, 0x84, 0x0a, 0xcf, 0xa4, 0xd0, 0x14, 0x4c, 0x08, 0x85, 0x64, 0x86, - 0xe9, 0xfc, 0x76, 0x3b, 0x33, 0x62, 0xfe, 0x8b, 0xd1, 0xb7, 0x07, 0xc4, 0x87, 0x55, 0xd9, 0x3d, - 0x96, 0xaa, 0x8c, 0x39, 0x3a, 0xea, 0xc3, 0xf8, 0xf5, 0x96, 0x6a, 0xcd, 0x52, 0x27, 0x91, 0x63, - 0x75, 0x48, 0xa4, 0xa9, 0xbb, 0x4d, 0xf5, 0x58, 0xb5, 0x39, 0xcc, 0x92, 0xa3, 0xa8, 0xa0, 0x1c, - 0xc0, 0xe1, 0xd0, 0x09, 0x89, 0x03, 0xa8, 0x6e, 0x86, 0x3c, 0x8a, 0x85, 0x90, 0x79, 0x7e, 0x6e, - 0x28, 0x4e, 0xcc, 0xe6, 0xcb, 0x79, 0xe6, 0x6f, 0x0c, 0x55, 0xe7, 0xd2, 0xc9, 0x1a, 0xb1, 0x4e, - 0xf6, 0x3d, 0x48, 0xf3, 0x00, 0x5b, 0xd9, 0xe2, 0xfc, 0x53, 0x1f, 0x22, 0x62, 0xb3, 0xd3, 0xb0, - 0xc2, 0x09, 0x68, 0x03, 0x80, 0x39, 0x94, 0x62, 0xa3, 0xe1, 0x71, 0x21, 0x66, 0x7b, 0xdd, 0xfc, - 0x24, 0x77, 0x39, 0x76, 0xa3, 0xe1, 0x59, 0xca, 0x14, 0xa2, 0x51, 0xf5, 0xde, 0x34, 0x12, 0x6a, - 0x54, 0xbd, 0x21, 0x69, 0xb7, 0x22, 0xb3, 0x09, 0x33, 0xbb, 0x38, 0x20, 0x2a, 0x10, 0x8e, 0x6e, - 0xb0, 0x08, 0x9f, 0xc1, 0xe4, 0x73, 0x27, 0x38, 0xd7, 0x23, 0x0f, 0xbd, 0x85, 0xbd, 0x74, 0x82, - 0x73, 0x11, 0x79, 0x14, 0x55, 0xa9, 0xd3, 0xcd, 0x6d, 0x98, 0xe5, 0xab, 0x49, 0xbf, 0x5a, 0xd0, - 0x09, 0x1a, 0x61, 0x28, 0x53, 0x09, 0xea, 0x64, 0x70, 0xd4, 0xd1, 0xa0, 0x6a, 0x9f, 0xeb, 0x61, - 0x61, 0x38, 0x29, 0x73, 0xa7, 0xa7, 0x28, 0xe2, 0x92, 0xa2, 0x8e, 0xc8, 0x3c, 0x86, 0xe9, 0xc3, - 0x66, 0xe7, 0xcc, 0x69, 0x91, 0xdd, 0xae, 0xe2, 0xaf, 0xd1, 0x16, 0x40, 0x08, 0xe0, 0x2b, 0x88, - 0x74, 0x35, 0x1c, 0xa8, 0x6d, 0xf2, 0x6d, 0xa2, 0x10, 0xea, 0x3b, 0x2c, 0x05, 0xcf, 0xfc, 0xd3, - 0x61, 0x40, 0x7c, 0x0d, 0x72, 0xb1, 0xc6, 0x55, 0x1c, 0x10, 0x37, 0xb5, 0x04, 0xa9, 0xca, 0x16, - 0xd7, 0xfa, 0x58, 0xaf, 0x9b, 0x4f, 0x39, 0x0d, 0x2b, 0x55, 0xd9, 0x42, 0x1f, 0xc0, 0x28, 0x9d, - 0x46, 0x75, 0x3d, 0x23, 0xd7, 0x53, 0x29, 0x94, 0xd2, 0xbd, 0x6e, 0x7e, 0x94, 0x5c, 0xe0, 0xb1, - 0xc5, 0x26, 0xa3, 0x0f, 0x21, 0xbd, 0x85, 0x9b, 0xf8, 0xcc, 0x0e, 0x5c, 0x61, 0x3b, 0xd4, 0x1d, - 0x35, 0x04, 0x50, 0xd9, 0xa2, 0x70, 0x26, 0x09, 0x1c, 0x16, 0xb6, 0x7d, 0xb7, 0xa5, 0x06, 0x0e, - 0x8f, 0x42, 0xd4, 0xc0, 0xc1, 0xe6, 0xa0, 0xbf, 0x34, 0x60, 0xb2, 0xd8, 0x6a, 0xb9, 0xac, 0x2e, - 0xe3, 0xf3, 0x42, 0xc0, 0xe2, 0xba, 0xac, 0xe3, 0xec, 0xdb, 0xa7, 0xb8, 0x59, 0x23, 0xb1, 0xda, - 0x2f, 0x7d, 0x45, 0xbc, 0xce, 0xbf, 0x76, 0xf3, 0x9f, 0xbe, 0x4e, 0x69, 0x68, 0xfd, 0xc8, 0xb3, - 0x9d, 0xc0, 0xa7, 0xf7, 0xa2, 0x70, 0x41, 0xd5, 0xcc, 0x14, 0x3e, 0xd0, 0x3b, 0x30, 0x4a, 0xae, - 0xc8, 0x22, 0xfe, 0xd0, 0xcd, 0x26, 0xb7, 0x68, 0x2d, 0xeb, 0xa2, 0x33, 0xcc, 0xfb, 0x90, 0xe6, - 0x9a, 0xac, 0x6c, 0x25, 0x6d, 0x81, 0xf9, 0x14, 0x1e, 0x58, 0x2e, 0xd5, 0x2e, 0xf6, 0x71, 0x70, - 0x68, 0xfb, 0xfe, 0x4b, 0xd7, 0x6b, 0xd0, 0x6b, 0x02, 0x37, 0x49, 0x61, 0xcd, 0xf7, 0x61, 0x9c, - 0x82, 0x25, 0x19, 0xba, 0x33, 0xf4, 0x9a, 0x61, 0x89, 0x11, 0xb3, 0x0c, 0xab, 0xbb, 0x38, 0xe8, - 0xa7, 0x75, 0x2b, 0x22, 0xbf, 0x34, 0x20, 0x5f, 0xf6, 0x70, 0x2c, 0x53, 0x37, 0x3b, 0xca, 0xab, - 0xbc, 0x26, 0x96, 0x0a, 0x47, 0x89, 0xd2, 0x79, 0xdd, 0xeb, 0x07, 0x30, 0x7c, 0x74, 0xb4, 0x4f, - 0x4d, 0x67, 0x98, 0x6a, 0x70, 0x38, 0x08, 0x9a, 0xff, 0xd5, 0xcd, 0x4f, 0x6c, 0x75, 0x58, 0xcd, - 0xcc, 0x22, 0xe3, 0xe6, 0x34, 0x4c, 0x1e, 0x3a, 0xad, 0x33, 0xbe, 0xa2, 0xf9, 0x67, 0x29, 0x98, - 0x62, 0xcf, 0x7e, 0xdb, 0x6d, 0x31, 0x2f, 0xaf, 0xfa, 0x24, 0xe3, 0x06, 0x3e, 0x09, 0x7d, 0x0c, - 0xd3, 0xfc, 0x4a, 0x89, 0x3d, 0x7a, 0x31, 0x64, 0x1c, 0xd2, 0x94, 0x9c, 0x5d, 0x2a, 0x4f, 0xae, - 0xd8, 0x88, 0xa5, 0x4f, 0x44, 0xfb, 0x30, 0xc3, 0x00, 0x3b, 0xd8, 0x0e, 0x3a, 0x61, 0x4e, 0x35, - 0xcb, 0x83, 0xa0, 0x00, 0x33, 0x93, 0xe0, 0xb4, 0x5e, 0x70, 0xa0, 0x15, 0xc1, 0x45, 0x8f, 0x61, - 0xf6, 0xd0, 0x73, 0xbf, 0x79, 0xa5, 0x78, 0x61, 0x76, 0x2a, 0x16, 0x49, 0x0a, 0xd6, 0x26, 0x43, - 0x27, 0xaa, 0x2f, 0x8e, 0xce, 0x36, 0x7f, 0x9b, 0x82, 0x09, 0x49, 0x6d, 0x5d, 0x0d, 0x95, 0xdc, - 0xcf, 0x51, 0xef, 0x1f, 0xe6, 0x33, 0x96, 0x32, 0x03, 0xdd, 0xa1, 0xc1, 0x93, 0x7b, 0xd8, 0x71, - 0xb2, 0x01, 0x76, 0xbb, 0x6d, 0x11, 0x18, 0xb1, 0xd3, 0xad, 0x12, 0x15, 0x6d, 0x82, 0xd9, 0x69, - 0xe3, 0xd4, 0x4a, 0x6d, 0x95, 0xc8, 0x8e, 0x3e, 0xab, 0x6c, 0x95, 0x29, 0x97, 0x13, 0x6c, 0x47, - 0x5d, 0xa7, 0x51, 0xb7, 0x28, 0x94, 0x8c, 0x56, 0x8b, 0x4f, 0xf7, 0xe9, 0x29, 0xe5, 0xa3, 0xbe, - 0x7d, 0xd9, 0xb4, 0x28, 0x14, 0x7d, 0x2a, 0x3c, 0x68, 0xd9, 0x6d, 0x05, 0x9e, 0xdb, 0xf4, 0x69, - 0xdd, 0x6d, 0x42, 0xf3, 0x94, 0x75, 0x3e, 0x64, 0x45, 0xa6, 0xa2, 0xe7, 0xb0, 0x5c, 0x6c, 0x5c, - 0xd9, 0xad, 0x3a, 0x6e, 0xb0, 0x91, 0xe7, 0xae, 0x77, 0xf1, 0xa2, 0xe9, 0xbe, 0xf4, 0x69, 0xe2, - 0x36, 0xc1, 0x53, 0x40, 0x3e, 0xe5, 0x84, 0x93, 0x7b, 0x29, 0x26, 0x59, 0x49, 0xd8, 0x28, 0x0f, - 0xa3, 0xe5, 0xa6, 0xdb, 0x69, 0xd0, 0x8c, 0x6d, 0x82, 0x1d, 0x84, 0x3a, 0x01, 0x58, 0x0c, 0x6e, - 0xfe, 0x04, 0xe6, 0x88, 0xf7, 0x0a, 0xf0, 0x8d, 0x43, 0x98, 0x79, 0x08, 0x50, 0xc5, 0x97, 0x76, - 0xfb, 0xdc, 0x25, 0xdb, 0x52, 0x52, 0x9f, 0xb8, 0x4f, 0x47, 0xf2, 0x46, 0xcd, 0x07, 0x6a, 0x9b, - 0x22, 0x50, 0x8b, 0x99, 0x96, 0x82, 0x65, 0xfe, 0x63, 0x0a, 0x10, 0xbd, 0x59, 0x56, 0x03, 0x0f, - 0xdb, 0x97, 0x82, 0x8d, 0x9f, 0xc2, 0x14, 0x3b, 0xa1, 0x0c, 0x4c, 0xd9, 0x21, 0x01, 0x83, 0xd9, - 0xa2, 0x3a, 0xb4, 0x37, 0x64, 0x69, 0x53, 0x09, 0xaa, 0x85, 0xfd, 0xce, 0xa5, 0x40, 0x4d, 0x69, - 0xa8, 0xea, 0x10, 0x41, 0x55, 0x9f, 0xd1, 0x63, 0x98, 0x29, 0xbb, 0x97, 0x6d, 0xa2, 0x13, 0x8e, - 0x3c, 0xcc, 0xdd, 0x32, 0x5f, 0x57, 0x1b, 0x24, 0x57, 0x71, 0x1d, 0x82, 0x0e, 0x60, 0x7e, 0xa7, - 0xd9, 0xf1, 0xcf, 0x8b, 0xad, 0x46, 0xb9, 0xe9, 0xfa, 0x82, 0xca, 0x08, 0xbf, 0x9d, 0xf0, 0x93, - 0xd4, 0x3f, 0x63, 0x6f, 0xc8, 0x8a, 0x43, 0x44, 0x3f, 0xe0, 0x45, 0x78, 0x1e, 0x1e, 0xa6, 0xd7, - 0x79, 0x8d, 0xfe, 0x59, 0x0b, 0x3f, 0x7b, 0xb1, 0x37, 0x64, 0xb1, 0xd1, 0x52, 0x1a, 0xc6, 0x85, - 0x17, 0xd9, 0x80, 0x39, 0x45, 0x9d, 0x24, 0xa0, 0x75, 0x7c, 0x94, 0x83, 0x89, 0xe3, 0x36, 0xb9, - 0xde, 0x0a, 0xb7, 0x68, 0xc9, 0x67, 0xf3, 0x3d, 0x5d, 0xd3, 0x68, 0x55, 0x4d, 0xb4, 0xd8, 0xe4, - 0x10, 0x60, 0xee, 0xe9, 0xca, 0x1d, 0x3c, 0x5b, 0x5b, 0x37, 0x15, 0x59, 0x37, 0x13, 0xd5, 0xb5, - 0xb9, 0x18, 0xab, 0x3c, 0xf3, 0x0f, 0x0d, 0x58, 0xd8, 0xc5, 0x01, 0x2d, 0xdd, 0x11, 0x1f, 0x23, - 0x03, 0xc6, 0x8f, 0xd4, 0x2a, 0x2e, 0xb3, 0xd7, 0xe9, 0x5e, 0x37, 0x9f, 0x96, 0x35, 0x5b, 0xb5, - 0x4e, 0xfb, 0x39, 0xcc, 0x54, 0x2f, 0x9c, 0x76, 0xcd, 0x6e, 0x3a, 0x0d, 0xea, 0x83, 0xb9, 0x77, - 0x58, 0xa4, 0xde, 0xec, 0xc2, 0x69, 0x9f, 0x5c, 0x85, 0x43, 0x86, 0x15, 0x99, 0x6c, 0x3e, 0x83, - 0xc5, 0x08, 0x0f, 0xdc, 0x49, 0xff, 0x3f, 0x18, 0xe7, 0x20, 0x7e, 0x00, 0xfa, 0x0a, 0xc0, 0x93, - 0xbd, 0x6e, 0x7e, 0xdc, 0xe7, 0x68, 0x62, 0xb2, 0xf9, 0x14, 0x96, 0x8e, 0xdb, 0x3e, 0xf6, 0x42, - 0x9a, 0x42, 0xac, 0x4d, 0x59, 0x51, 0x36, 0xe2, 0x2b, 0xca, 0xd0, 0xeb, 0xe6, 0xc7, 0x18, 0x41, - 0x51, 0x45, 0x36, 0xeb, 0xb0, 0xc4, 0xce, 0x72, 0x1f, 0xb9, 0x5b, 0x69, 0x49, 0x9c, 0xfe, 0x54, - 0xec, 0xe9, 0xaf, 0x40, 0x8e, 0x2f, 0xd2, 0x6c, 0xbe, 0xd9, 0x76, 0x98, 0xff, 0x60, 0xc0, 0xf2, - 0x2e, 0x6e, 0x61, 0xcf, 0xa6, 0x2c, 0x6b, 0xa1, 0x57, 0x2d, 0x00, 0x18, 0x03, 0x0b, 0x00, 0x79, - 0x91, 0xac, 0xa4, 0x68, 0xb2, 0x42, 0x5d, 0x1c, 0x4d, 0x56, 0x78, 0x8a, 0x42, 0x02, 0xc1, 0xb1, - 0x55, 0xe1, 0x49, 0x1c, 0x0d, 0x04, 0x1d, 0xcf, 0xb1, 0x08, 0x0c, 0x55, 0xc2, 0xe2, 0xc1, 0xc8, - 0xb5, 0xc5, 0x83, 0x79, 0x7e, 0xed, 0x1b, 0xe7, 0xc5, 0x03, 0xad, 0x64, 0x60, 0x7e, 0x0a, 0xd9, - 0x7e, 0x59, 0xb8, 0x7d, 0xe4, 0x61, 0x94, 0x55, 0x54, 0xfb, 0xd2, 0x11, 0x06, 0x37, 0xb7, 0x42, - 0xeb, 0xe6, 0xf5, 0x43, 0x59, 0x34, 0x89, 0x9c, 0xac, 0x01, 0x17, 0x1e, 0xb3, 0x1a, 0xda, 0x27, - 0xa7, 0xc2, 0xd7, 0xff, 0x84, 0xd8, 0x27, 0xab, 0x11, 0x1b, 0xc9, 0x35, 0x62, 0x6e, 0xa3, 0x0c, - 0x55, 0x20, 0x98, 0xcf, 0x61, 0x49, 0x23, 0x1a, 0x5a, 0xfd, 0xe7, 0x30, 0x21, 0x60, 0x91, 0x5c, - 0x5e, 0x23, 0x4b, 0xf7, 0xcd, 0x17, 0xc8, 0x12, 0xc5, 0xfc, 0xb5, 0x01, 0xcb, 0xcc, 0xe9, 0xf4, - 0xcb, 0x7d, 0xf3, 0xdd, 0xff, 0xdf, 0xb8, 0xe4, 0x7d, 0x31, 0x32, 0x91, 0xca, 0x0c, 0x9b, 0x35, - 0xc8, 0xf6, 0xf3, 0xfb, 0x16, 0x34, 0xbc, 0x0b, 0xcb, 0xca, 0xb1, 0x7d, 0xe3, 0xfd, 0x0f, 0x57, - 0x7c, 0x8b, 0xfb, 0x1f, 0x4e, 0x7c, 0x6b, 0xfb, 0x5f, 0x81, 0x79, 0x46, 0x58, 0x3f, 0x2b, 0x05, - 0xf5, 0xac, 0xc4, 0xbe, 0x7d, 0xe8, 0x3f, 0x3e, 0x4f, 0xe9, 0xf1, 0x11, 0x53, 0x42, 0x0e, 0x3f, - 0x84, 0x31, 0xfe, 0xfa, 0x96, 0xf1, 0x17, 0x43, 0x8c, 0xfa, 0x51, 0xf6, 0xce, 0xd6, 0xe2, 0x93, - 0xcd, 0x2c, 0x15, 0x99, 0xa4, 0x92, 0xbc, 0x76, 0x22, 0xdc, 0x9b, 0xf9, 0x25, 0x71, 0x58, 0x91, - 0x91, 0x37, 0x8c, 0x01, 0xcf, 0x20, 0xcb, 0x62, 0x80, 0x42, 0xf5, 0x8d, 0xa2, 0xc0, 0xc7, 0x90, - 0x65, 0xe6, 0x14, 0x43, 0x70, 0xb0, 0x6b, 0x5f, 0x83, 0x55, 0xe9, 0xda, 0xe3, 0xa4, 0xff, 0x63, - 0x03, 0xee, 0xec, 0xe2, 0x40, 0x7f, 0x07, 0xf5, 0x7f, 0x12, 0x89, 0xbf, 0x82, 0x5c, 0x1c, 0x23, - 0x7c, 0x2b, 0x1e, 0x45, 0xb7, 0x22, 0xf1, 0x85, 0x5b, 0xfc, 0x96, 0xfc, 0x02, 0x56, 0xd8, 0x96, - 0xe8, 0xf3, 0x85, 0xa0, 0x9f, 0x46, 0x76, 0x25, 0x91, 0x7a, 0xdc, 0xee, 0xfc, 0xb9, 0x01, 0x2b, - 0x4c, 0xc9, 0xf1, 0xc4, 0x6f, 0xa5, 0xc5, 0xfb, 0x30, 0xb6, 0xe7, 0x92, 0x9b, 0x37, 0xdf, 0x50, - 0x2a, 0xce, 0xb9, 0xeb, 0x07, 0xc4, 0x31, 0xf0, 0xa1, 0xc1, 0xef, 0x2d, 0xcc, 0x03, 0xc8, 0xcb, - 0x3d, 0x7f, 0x0b, 0x1b, 0x6b, 0xd6, 0x01, 0x09, 0x32, 0xe5, 0xaa, 0x25, 0x48, 0xdc, 0x81, 0xe1, - 0x72, 0xd5, 0xe2, 0x65, 0x7f, 0x1a, 0x82, 0xeb, 0xbe, 0x67, 0x11, 0x58, 0xd4, 0x1f, 0xa7, 0x6e, - 0x52, 0x74, 0xfb, 0x1d, 0x98, 0xd7, 0x16, 0xe1, 0xfb, 0xbe, 0x0a, 0x23, 0x65, 0xec, 0x05, 0x7c, - 0x19, 0x2a, 0x69, 0x1d, 0x7b, 0x81, 0x45, 0xa1, 0xe8, 0x01, 0x8c, 0x97, 0x8b, 0xb4, 0x28, 0x4c, - 0x33, 0x85, 0x29, 0xe6, 0x98, 0xea, 0xf6, 0x49, 0x9d, 0x16, 0x8a, 0xc5, 0xa0, 0xf9, 0x27, 0x86, - 0x42, 0x9d, 0xa0, 0x5f, 0x2f, 0xc3, 0x06, 0xb9, 0x03, 0x11, 0x9d, 0x29, 0x22, 0xd0, 0x20, 0xc4, - 0x6f, 0xc8, 0x54, 0x02, 0x65, 0xca, 0x4d, 0x8b, 0x03, 0x5f, 0xc1, 0x82, 0xce, 0xc9, 0x5b, 0x15, - 0xf4, 0xfb, 0xb4, 0x74, 0x49, 0x72, 0x24, 0x21, 0x22, 0x52, 0xef, 0x7d, 0xdc, 0x40, 0x3e, 0x82, - 0x0c, 0x9f, 0x15, 0x1e, 0xb0, 0xfb, 0x22, 0xe5, 0x62, 0xc7, 0x4b, 0x6f, 0xba, 0x10, 0x95, 0xa1, - 0x1f, 0x8a, 0x9b, 0xe5, 0x75, 0x2b, 0x5c, 0x40, 0xf6, 0xe9, 0x4e, 0xb1, 0xd8, 0x09, 0xce, 0x71, - 0x2b, 0x70, 0xea, 0x76, 0x80, 0xcb, 0xe7, 0x76, 0xb3, 0x89, 0x5b, 0x67, 0x54, 0x51, 0xc7, 0x85, - 0x1d, 0x19, 0x5e, 0x78, 0x75, 0xbf, 0xb0, 0x23, 0x67, 0x58, 0x64, 0x1c, 0x3d, 0x84, 0x91, 0xa3, - 0x67, 0x47, 0x87, 0xfc, 0x9a, 0xb7, 0xc0, 0xe7, 0x11, 0x50, 0x38, 0x91, 0xce, 0x30, 0xbf, 0x81, - 0xe5, 0xc8, 0x62, 0x52, 0xaa, 0x07, 0x62, 0x2d, 0x83, 0x5e, 0x61, 0xe5, 0x5a, 0x62, 0xc2, 0xde, - 0x10, 0x5b, 0xec, 0x1d, 0x6d, 0xb1, 0x79, 0x65, 0x31, 0x65, 0x26, 0x9d, 0xc2, 0xdf, 0x74, 0x52, - 0x98, 0xf9, 0x7b, 0x30, 0xa5, 0x32, 0x4e, 0x6e, 0x4d, 0x4f, 0xf0, 0xab, 0x3d, 0xbb, 0xd5, 0x68, - 0x0a, 0x7d, 0x84, 0x00, 0x32, 0x2a, 0xa7, 0xf2, 0x6b, 0x53, 0x08, 0x40, 0x0b, 0x30, 0x5a, 0x6c, - 0xb7, 0x2b, 0x5b, 0xec, 0x50, 0x5b, 0xec, 0x01, 0x65, 0x61, 0x5c, 0x54, 0x7c, 0x68, 0x5a, 0x63, - 0x89, 0x47, 0xd3, 0x81, 0x49, 0x45, 0x90, 0x6b, 0x96, 0x5e, 0x03, 0x28, 0x37, 0x1d, 0xdc, 0xa2, - 0xee, 0x8f, 0xaf, 0xad, 0x40, 0xe8, 0x75, 0xcf, 0x39, 0x6b, 0xd1, 0xb2, 0x0c, 0x67, 0x20, 0x04, - 0x98, 0xb3, 0x30, 0xad, 0xe9, 0xdd, 0x34, 0x61, 0x4a, 0xd5, 0x0d, 0x31, 0x81, 0xb2, 0xdb, 0x90, - 0x26, 0x40, 0x3e, 0x9b, 0xbf, 0x32, 0x60, 0xe1, 0xe9, 0x4e, 0xd1, 0xc2, 0x67, 0x0e, 0xed, 0x09, - 0x92, 0x82, 0x6e, 0xa8, 0x7b, 0xb2, 0xa2, 0xee, 0x49, 0x64, 0xa6, 0xd8, 0x9c, 0x82, 0xb6, 0x39, - 0xab, 0xda, 0xe6, 0xf4, 0xa3, 0xb0, 0x5d, 0x52, 0x6e, 0xce, 0xbf, 0x34, 0x60, 0x5e, 0x61, 0x44, - 0x32, 0xbd, 0xae, 0xf2, 0x91, 0xeb, 0xe7, 0x23, 0x6a, 0x23, 0x3f, 0xd1, 0xd8, 0x58, 0x89, 0x61, - 0x63, 0xa0, 0xad, 0x34, 0x60, 0x21, 0x4e, 0x48, 0xdd, 0x2a, 0x8c, 0x44, 0xab, 0x48, 0x25, 0x58, - 0xc5, 0xb0, 0x6e, 0x15, 0x36, 0xcc, 0xc7, 0x88, 0x80, 0xde, 0x85, 0x0c, 0x83, 0x31, 0x57, 0xc4, - 0x6b, 0xf5, 0x04, 0xb3, 0x0f, 0x7e, 0x9d, 0xad, 0x98, 0xbf, 0x31, 0x60, 0x31, 0x56, 0xf9, 0x68, - 0x89, 0x44, 0xd1, 0xba, 0x87, 0x03, 0x4e, 0x9b, 0x3f, 0x11, 0x78, 0xc5, 0xf7, 0x3b, 0xbc, 0x4f, - 0x30, 0x6d, 0xf1, 0x27, 0xf4, 0x7d, 0x98, 0x3e, 0xc4, 0x9e, 0xe3, 0x36, 0xaa, 0xb8, 0xee, 0xb6, - 0x1a, 0xac, 0x32, 0x39, 0x6d, 0xe9, 0x40, 0xa2, 0xa0, 0x62, 0xf3, 0xcc, 0xf5, 0x9c, 0xe0, 0xfc, - 0x92, 0x1f, 0x82, 0x10, 0x40, 0x68, 0x6f, 0x39, 0x67, 0x4e, 0xc0, 0x2a, 0xed, 0xd3, 0x16, 0x7f, - 0x22, 0x2a, 0x2a, 0xd6, 0xeb, 0x6e, 0xa7, 0x15, 0xd0, 0xa2, 0x5d, 0xda, 0x12, 0x8f, 0xe6, 0xbb, - 0xb0, 0x10, 0xb7, 0x69, 0xb1, 0x46, 0xfc, 0xfb, 0x29, 0x98, 0x2f, 0x36, 0x1a, 0x4f, 0x77, 0x8a, - 0x5b, 0x58, 0x4d, 0xba, 0x3e, 0x80, 0x91, 0x4a, 0xcb, 0x09, 0xb8, 0xf1, 0xac, 0x71, 0x5b, 0x88, - 0x99, 0x49, 0x66, 0x11, 0x73, 0x20, 0xff, 0x91, 0x05, 0xf3, 0xdb, 0xdf, 0x38, 0x7e, 0xe0, 0xb4, - 0xce, 0xa8, 0x41, 0xb2, 0x85, 0xb9, 0x41, 0x09, 0x22, 0x09, 0xae, 0x6c, 0x6f, 0xc8, 0x8a, 0x43, - 0x46, 0x47, 0xb0, 0x74, 0x80, 0x5f, 0xc6, 0xd8, 0xb7, 0x7c, 0x75, 0x2e, 0xc9, 0xc6, 0x98, 0x69, - 0x02, 0xae, 0x7a, 0x7c, 0x7e, 0x95, 0x82, 0x05, 0x5d, 0x30, 0xbe, 0xf2, 0x31, 0x2c, 0x28, 0x0c, - 0xe9, 0x36, 0x3c, 0x59, 0xc8, 0xc7, 0x8b, 0xa3, 0x9e, 0xd4, 0x58, 0x74, 0xf4, 0x1c, 0x96, 0x75, - 0xa6, 0x74, 0x9f, 0x19, 0x9e, 0xbc, 0xb8, 0x29, 0x7b, 0x43, 0x56, 0x12, 0x36, 0x2a, 0xc0, 0x70, - 0xb1, 0x7e, 0xc1, 0xd5, 0x12, 0xbf, 0x65, 0x4c, 0xb2, 0x62, 0xfd, 0x82, 0x9c, 0xf9, 0xa2, 0x6c, - 0x6b, 0x61, 0x07, 0xf8, 0xaf, 0x0c, 0x58, 0x4e, 0xd8, 0x61, 0x72, 0x66, 0x18, 0x50, 0x89, 0x84, - 0x0a, 0x04, 0x7d, 0xae, 0xbc, 0x57, 0x98, 0x29, 0xbc, 0x33, 0xd8, 0x5e, 0xd6, 0x19, 0xe4, 0x48, - 0xbe, 0x78, 0x30, 0xf3, 0x82, 0x3c, 0x7d, 0x0d, 0x31, 0xc1, 0x1c, 0x11, 0x7b, 0xe7, 0x7c, 0x5c, - 0xd8, 0xc9, 0x18, 0x66, 0x39, 0xca, 0x9a, 0x94, 0x04, 0x3d, 0x84, 0x31, 0x06, 0xe4, 0x1b, 0x23, - 0x1a, 0x22, 0xc3, 0xc9, 0x7c, 0xdc, 0xfc, 0x1b, 0x43, 0x14, 0x9b, 0xfa, 0xec, 0xfd, 0x23, 0xcd, - 0xde, 0xc5, 0x2b, 0xf9, 0xf8, 0xc9, 0x9a, 0xc9, 0x97, 0x60, 0xf2, 0x75, 0x4c, 0x5d, 0x45, 0x52, - 0x8d, 0xf1, 0x6f, 0x0d, 0x71, 0xb1, 0xee, 0xb7, 0xc7, 0x6d, 0x98, 0x7a, 0x3d, 0x3b, 0xd4, 0xd0, - 0xd0, 0x87, 0xcc, 0x4c, 0x52, 0x83, 0x25, 0x1d, 0x68, 0x29, 0x9f, 0x89, 0x7a, 0xda, 0xeb, 0xd8, - 0x8a, 0xb9, 0x1a, 0x83, 0x2d, 0x97, 0x33, 0x97, 0xe8, 0xbd, 0x58, 0x0e, 0xc9, 0x8b, 0x5c, 0x99, - 0x16, 0x0a, 0x54, 0xb8, 0x74, 0xfd, 0xe3, 0x1c, 0x24, 0xdb, 0xb0, 0xa2, 0x06, 0x20, 0x26, 0x10, - 0x13, 0xbf, 0x73, 0xec, 0x63, 0xaf, 0xea, 0xb4, 0xce, 0x9a, 0xf8, 0x98, 0xa5, 0xa8, 0xf2, 0xd2, - 0xf0, 0x63, 0xcd, 0x08, 0x96, 0x13, 0xfa, 0x32, 0xfe, 0xa7, 0xb6, 0xfe, 0xaf, 0x0d, 0xc8, 0xc5, - 0xf1, 0xf6, 0x76, 0x77, 0x7f, 0x9d, 0xa7, 0xe1, 0x8c, 0xdb, 0x2c, 0x47, 0x97, 0x6b, 0x0a, 0x61, - 0x89, 0x90, 0xe4, 0xbf, 0xb6, 0xed, 0xbf, 0x36, 0x60, 0xa1, 0xe2, 0x53, 0xf6, 0xbf, 0xee, 0x38, - 0x1e, 0x6e, 0x08, 0xc5, 0xad, 0xc7, 0x75, 0xef, 0xd0, 0x8d, 0xdf, 0x1b, 0x8a, 0xeb, 0xce, 0xf9, - 0x40, 0x69, 0xba, 0x48, 0x0d, 0x6a, 0xcb, 0xd9, 0x1b, 0x0a, 0xdb, 0x2e, 0xd0, 0x03, 0x18, 0x39, - 0x20, 0xf1, 0x6b, 0x98, 0x1f, 0x73, 0x86, 0x41, 0x40, 0xfb, 0xee, 0x99, 0xd3, 0x22, 0x2c, 0x93, - 0x87, 0xd2, 0x04, 0x8c, 0x1d, 0xd9, 0xde, 0x19, 0x0e, 0xcc, 0x0f, 0x21, 0x2d, 0x87, 0x69, 0x1a, - 0xaf, 0x84, 0x3f, 0xf2, 0x99, 0x64, 0x1f, 0x74, 0x50, 0x64, 0x1f, 0xf4, 0xc1, 0xdc, 0x84, 0xc5, - 0x88, 0x98, 0x7c, 0x0f, 0x72, 0x44, 0x19, 0x0c, 0xc6, 0x5e, 0xe6, 0x59, 0xf2, 0xd9, 0x2c, 0xc3, - 0x5c, 0x9f, 0x16, 0x11, 0x52, 0xfa, 0xd3, 0xc8, 0x41, 0xaa, 0x56, 0xf7, 0x08, 0x4c, 0xb6, 0xa3, - 0x11, 0xd8, 0xd1, 0x7e, 0xb5, 0x34, 0xc6, 0x76, 0xc5, 0xfc, 0xbb, 0x14, 0xbd, 0xb9, 0xd0, 0x97, - 0x23, 0x7e, 0x58, 0x00, 0x89, 0xde, 0x65, 0xd5, 0xfb, 0x74, 0x09, 0xd2, 0xd5, 0xc0, 0xa6, 0xf7, - 0x7e, 0xa1, 0xcc, 0x41, 0x05, 0xe1, 0x89, 0x6f, 0xbb, 0xf9, 0x21, 0x5a, 0x05, 0x0e, 0xd1, 0xd0, - 0x23, 0x18, 0xdf, 0x6e, 0x35, 0x28, 0x85, 0xe1, 0x5b, 0x50, 0x10, 0x48, 0xe4, 0xc4, 0x53, 0x96, - 0x89, 0xf7, 0xf6, 0x69, 0x33, 0x61, 0xda, 0x52, 0x20, 0x54, 0xcd, 0xce, 0xa5, 0xc3, 0xde, 0x06, - 0x8d, 0x5a, 0xec, 0x81, 0x68, 0x93, 0xb2, 0xf0, 0x04, 0xbf, 0xe2, 0x29, 0x8c, 0x7c, 0x46, 0x26, - 0x8c, 0x3e, 0xf3, 0x1a, 0xbc, 0x07, 0x6c, 0xa6, 0x30, 0x25, 0xbe, 0xbc, 0x41, 0x60, 0x16, 0x1b, - 0x32, 0xff, 0x93, 0x96, 0xe2, 0x03, 0x5e, 0x9c, 0xd3, 0x75, 0xa6, 0x69, 0xc5, 0x78, 0x63, 0xad, - 0xa4, 0x5e, 0x47, 0x2b, 0x52, 0xea, 0xe1, 0x24, 0xa9, 0x47, 0x92, 0xa4, 0x1e, 0x4d, 0x96, 0x7a, - 0x17, 0xc6, 0x98, 0xa8, 0xe4, 0x46, 0x5b, 0x09, 0xf0, 0x65, 0x78, 0xa3, 0x55, 0xdf, 0xb1, 0x59, - 0x6c, 0x8c, 0xa4, 0x89, 0xfb, 0xb6, 0x4f, 0x57, 0x63, 0x36, 0x2e, 0x1e, 0xcd, 0x53, 0xc8, 0xec, - 0x3b, 0x7e, 0x40, 0xce, 0xc1, 0x0d, 0x4d, 0x4d, 0x0a, 0x94, 0x4a, 0x12, 0x68, 0x58, 0x17, 0xc8, - 0xfc, 0x19, 0xcc, 0x29, 0x6b, 0xf0, 0x53, 0xf4, 0xce, 0x75, 0x55, 0x47, 0x59, 0xd5, 0x22, 0xdc, - 0x1f, 0xe0, 0x6f, 0x54, 0xee, 0xf9, 0xa3, 0xf9, 0x88, 0x76, 0x15, 0xed, 0xbb, 0xf5, 0x0b, 0xa5, - 0xe6, 0x33, 0xce, 0xce, 0x7d, 0xb4, 0x74, 0x4a, 0x66, 0xb1, 0x11, 0x4b, 0xcc, 0xe0, 0x25, 0x02, - 0x8e, 0x1f, 0x96, 0x08, 0x28, 0x20, 0x52, 0x22, 0x60, 0xdd, 0xc1, 0x16, 0x1b, 0xe3, 0x15, 0x08, - 0xf2, 0x79, 0x50, 0x7d, 0x40, 0x16, 0x12, 0xae, 0x99, 0xf8, 0xee, 0xbb, 0x90, 0x96, 0xdf, 0x48, - 0x22, 0x89, 0x4f, 0xe5, 0xa0, 0x72, 0xc4, 0x12, 0x9f, 0xc3, 0xe3, 0xa3, 0x8c, 0x81, 0x00, 0xc6, - 0xb6, 0xb6, 0xf7, 0xb7, 0x8f, 0xb6, 0x33, 0xa9, 0x77, 0x1f, 0x70, 0xf3, 0x40, 0x33, 0x00, 0x5b, - 0xdb, 0xd5, 0xf2, 0xf6, 0xc1, 0x56, 0xe5, 0x60, 0x37, 0x33, 0x84, 0xa6, 0x21, 0x5d, 0x94, 0x8f, - 0x46, 0xe1, 0xdf, 0x3e, 0x83, 0x49, 0x12, 0x0d, 0x78, 0x2d, 0x14, 0x7d, 0x06, 0x33, 0x55, 0xdc, - 0x6a, 0x3c, 0xc1, 0xb8, 0x5d, 0x6c, 0x3a, 0x57, 0xd8, 0x47, 0x22, 0x44, 0x4a, 0x50, 0x6e, 0xa9, - 0xcf, 0xb6, 0xb7, 0x2f, 0xdb, 0xc1, 0xab, 0x87, 0x06, 0xfa, 0x11, 0x4c, 0xd2, 0x86, 0x60, 0x6e, - 0x75, 0x53, 0x6a, 0x93, 0x70, 0x4e, 0x3c, 0xd1, 0xc1, 0xf7, 0x0d, 0xf4, 0x39, 0x8c, 0xef, 0x62, - 0xba, 0xdf, 0xe8, 0x7b, 0x91, 0x2f, 0x4b, 0x55, 0x5a, 0xd2, 0x92, 0xb8, 0x42, 0x72, 0xd1, 0x8d, - 0x47, 0x65, 0x98, 0xe0, 0xe8, 0x3e, 0x32, 0x23, 0xf8, 0x7e, 0x0c, 0x81, 0xf9, 0x08, 0x01, 0x62, - 0x6c, 0xe8, 0x11, 0xa4, 0xa5, 0xd1, 0x21, 0x11, 0xc5, 0xa3, 0xa6, 0x9e, 0xcb, 0xf6, 0x0f, 0x70, - 0x33, 0xd8, 0x00, 0x60, 0xa5, 0x54, 0x2a, 0x46, 0x94, 0xc7, 0x5c, 0x9f, 0xee, 0xd0, 0x2e, 0x49, - 0x78, 0xc8, 0x66, 0xdf, 0x54, 0xee, 0x04, 0x65, 0xa3, 0x7d, 0x98, 0x91, 0x85, 0xcd, 0x9b, 0x2b, - 0x21, 0x89, 0xda, 0x27, 0x30, 0x27, 0xde, 0xee, 0xc9, 0x1c, 0x06, 0x25, 0x65, 0x35, 0x72, 0x27, - 0xd9, 0x34, 0x0c, 0x39, 0x15, 0x57, 0xcf, 0x49, 0xd0, 0x3d, 0x85, 0x48, 0x6c, 0x2a, 0x95, 0xfb, - 0xde, 0x80, 0x19, 0x4c, 0xcd, 0x0f, 0x8d, 0xf7, 0x0d, 0xf4, 0x05, 0x4c, 0x6b, 0x91, 0x16, 0x89, - 0xbb, 0x4f, 0x5c, 0x9a, 0x91, 0x5b, 0x8d, 0x1f, 0xe4, 0xdb, 0xb6, 0x43, 0xc4, 0x0d, 0x22, 0x3d, - 0x82, 0xb9, 0xb8, 0x5e, 0x40, 0xd6, 0x76, 0x9e, 0x13, 0xcd, 0x11, 0x11, 0x94, 0x6d, 0x98, 0xe7, - 0xaf, 0xcc, 0xb4, 0x2f, 0xf2, 0x24, 0x74, 0x15, 0x26, 0x6a, 0xff, 0x31, 0xcc, 0xf3, 0xbd, 0xd4, - 0xc8, 0x64, 0x64, 0x3b, 0x07, 0x6f, 0x40, 0x4b, 0x24, 0xf0, 0x05, 0x2c, 0x56, 0x23, 0xf2, 0xb0, - 0x36, 0xbf, 0x3b, 0x3a, 0x09, 0xa5, 0x9f, 0x30, 0x91, 0xd6, 0x13, 0x40, 0xd5, 0xce, 0xe9, 0xa5, - 0x23, 0xc9, 0x5d, 0x39, 0xf8, 0x25, 0xba, 0x1b, 0x11, 0x89, 0x00, 0xe9, 0x34, 0x1a, 0x50, 0x73, - 0x09, 0x12, 0xa3, 0x23, 0xf6, 0xca, 0x96, 0x75, 0x03, 0xd9, 0x6d, 0xfb, 0xd4, 0x69, 0x3a, 0x81, - 0x83, 0x89, 0x59, 0xa8, 0x08, 0xea, 0x90, 0xd8, 0xc1, 0x3b, 0x89, 0x33, 0xd0, 0x23, 0x98, 0xde, - 0xc5, 0x41, 0xd8, 0x32, 0x89, 0x96, 0xfb, 0x9a, 0x2c, 0xf9, 0xbe, 0x89, 0x52, 0xa9, 0xde, 0xa7, - 0x59, 0x81, 0xcc, 0x71, 0xbb, 0x61, 0x07, 0x58, 0x21, 0x71, 0xb7, 0x8f, 0x04, 0x9f, 0x62, 0x7b, - 0xf6, 0xa5, 0x9f, 0xa8, 0xad, 0x0d, 0x18, 0x39, 0x74, 0x5a, 0x67, 0x48, 0xd4, 0x53, 0x95, 0x66, - 0xb7, 0xdc, 0xbc, 0x06, 0xe3, 0xa6, 0x17, 0x40, 0xfe, 0x9a, 0x5e, 0x41, 0xf4, 0x63, 0x99, 0xe0, - 0xde, 0xa4, 0xa7, 0x30, 0xa7, 0x9c, 0xfb, 0xf8, 0x89, 0xb5, 0x4d, 0xf4, 0x73, 0xba, 0x0f, 0xfd, - 0x33, 0xd0, 0x7d, 0xbe, 0xd6, 0xa0, 0x86, 0xc3, 0xdc, 0x4a, 0xe2, 0x0a, 0xb5, 0x4d, 0x74, 0x22, - 0x5e, 0x1b, 0xc7, 0x50, 0x7f, 0xa0, 0xf5, 0x32, 0xbd, 0xe6, 0x02, 0x1b, 0x34, 0x4e, 0xd0, 0x2f, - 0x43, 0x2e, 0x86, 0xdc, 0x2a, 0xfd, 0x5c, 0x39, 0xfd, 0xeb, 0x94, 0x68, 0x93, 0x46, 0x06, 0xda, - 0x45, 0x8c, 0x96, 0x74, 0x0c, 0x3f, 0x1e, 0xe5, 0x7d, 0x03, 0x6d, 0x02, 0x30, 0x2e, 0xe9, 0x42, - 0xfa, 0x70, 0xe2, 0xee, 0x6f, 0x12, 0xf7, 0xdf, 0xb8, 0x25, 0xd2, 0x23, 0x11, 0x02, 0x28, 0x52, - 0x56, 0xbb, 0x55, 0xab, 0x52, 0x25, 0xe1, 0x57, 0x20, 0x53, 0xac, 0x53, 0x87, 0x26, 0x5b, 0xcc, - 0xd0, 0x9a, 0x3c, 0x2c, 0xfa, 0x80, 0xa0, 0xb5, 0x18, 0xed, 0x58, 0xdb, 0xc7, 0xe4, 0x9a, 0xb4, - 0x07, 0xcb, 0x32, 0x34, 0x45, 0x86, 0xe2, 0x31, 0x12, 0x99, 0xda, 0x86, 0x85, 0xb2, 0xdd, 0xaa, - 0xe3, 0xe6, 0x9b, 0x91, 0xf9, 0x84, 0x9e, 0x6c, 0xa5, 0xfd, 0x6e, 0x29, 0x8a, 0xcf, 0x0f, 0xb6, - 0xf8, 0xda, 0x82, 0x32, 0xb5, 0x08, 0xb3, 0x4c, 0x89, 0xa1, 0x5a, 0x92, 0xb0, 0x93, 0x96, 0xff, - 0x08, 0x66, 0xb6, 0x89, 0xe7, 0xeb, 0x34, 0x1c, 0x76, 0xb1, 0x42, 0x7a, 0xa6, 0x9c, 0x88, 0xb8, - 0x07, 0x73, 0x3c, 0x10, 0x84, 0x7d, 0x69, 0xd2, 0xf9, 0xf6, 0xb7, 0xfe, 0xe5, 0x16, 0x04, 0x59, - 0xb5, 0x85, 0x4d, 0x84, 0x39, 0xad, 0x09, 0x4b, 0x86, 0xb9, 0xb8, 0xf6, 0x30, 0x19, 0xe6, 0xe2, - 0xfb, 0xb6, 0x4a, 0x30, 0x1b, 0xe9, 0xbf, 0x42, 0x77, 0x45, 0xb0, 0x8d, 0xed, 0xcb, 0x8a, 0x49, - 0x58, 0xf6, 0x84, 0x56, 0xfb, 0x69, 0xc4, 0x37, 0x63, 0x25, 0xea, 0xe8, 0x50, 0x46, 0x39, 0xb5, - 0xb3, 0x0a, 0xe9, 0x65, 0xa5, 0xb8, 0xae, 0xab, 0x44, 0x8a, 0x55, 0x92, 0x98, 0xeb, 0x3d, 0x49, - 0x68, 0x4d, 0x6a, 0x24, 0xb6, 0xf1, 0x2a, 0x97, 0x4f, 0x1c, 0xe7, 0x4a, 0x53, 0x36, 0x80, 0x7d, - 0x65, 0x34, 0xba, 0x01, 0x6a, 0x07, 0x4b, 0xdf, 0x06, 0xe8, 0x8d, 0x29, 0xbb, 0xf4, 0x02, 0xa0, - 0x34, 0x17, 0xa1, 0x04, 0x51, 0x72, 0x77, 0xe3, 0xe8, 0x84, 0x3b, 0x59, 0x85, 0x4c, 0xb4, 0x37, - 0x47, 0x4a, 0x9a, 0xd0, 0x64, 0x24, 0x25, 0x4d, 0x6c, 0xea, 0xf9, 0x02, 0x32, 0xd1, 0xc6, 0x1c, - 0x49, 0x34, 0xa1, 0x63, 0x27, 0x71, 0x2b, 0x76, 0x60, 0x41, 0xdf, 0xc0, 0x6b, 0xe4, 0x4d, 0xce, - 0x64, 0xa6, 0xb5, 0x76, 0x1c, 0x24, 0x42, 0x43, 0xa4, 0xf3, 0xa7, 0x4f, 0xfb, 0x31, 0x6d, 0x41, - 0x4c, 0xfb, 0x4a, 0x6b, 0xcf, 0x4d, 0xb4, 0x1f, 0xd7, 0x09, 0x24, 0x15, 0xa5, 0xf0, 0x25, 0x3c, - 0x6e, 0x74, 0xe0, 0x36, 0x8a, 0xba, 0x09, 0x6b, 0x49, 0x74, 0xb6, 0x60, 0x52, 0xe9, 0x09, 0x42, - 0x77, 0x34, 0x35, 0x69, 0x16, 0x9f, 0xd3, 0x84, 0xd3, 0x8d, 0xbd, 0x0c, 0x53, 0x6a, 0x67, 0x51, - 0x22, 0x17, 0x2b, 0xfd, 0x34, 0x7c, 0x25, 0x9b, 0x9e, 0x91, 0x5a, 0x60, 0xdc, 0xac, 0x46, 0x95, - 0xa3, 0x31, 0x94, 0x2c, 0x12, 0x52, 0x55, 0x73, 0x0d, 0x4b, 0xc9, 0x91, 0x68, 0x9e, 0xc5, 0x64, - 0xfd, 0xcb, 0xea, 0x09, 0xdf, 0x79, 0x1f, 0xe0, 0xad, 0x66, 0x23, 0xad, 0x50, 0x48, 0xb1, 0x92, - 0x98, 0xf6, 0xa1, 0xdc, 0x5a, 0xd2, 0x30, 0x57, 0xd3, 0x3e, 0xcc, 0xf5, 0x75, 0x42, 0xa1, 0xbc, - 0xe6, 0x8f, 0xfb, 0x5b, 0x9a, 0x06, 0xdc, 0xff, 0xe6, 0xfa, 0xda, 0xa0, 0x24, 0xb5, 0xa4, 0x06, - 0xa9, 0x44, 0x6a, 0x47, 0xb0, 0x18, 0xdb, 0x1a, 0x25, 0xf3, 0xc3, 0x41, 0x8d, 0x53, 0x89, 0x54, - 0x7f, 0x0e, 0xa8, 0xbf, 0x8d, 0x49, 0xde, 0x08, 0x13, 0x5b, 0xad, 0xe4, 0x8d, 0x70, 0x40, 0x0f, - 0xd4, 0x3e, 0x2c, 0xc4, 0xf5, 0x30, 0x21, 0x53, 0xd3, 0x67, 0x6c, 0x0f, 0x52, 0x4c, 0x90, 0xb3, - 0xc4, 0xa1, 0x4c, 0xa0, 0x36, 0xa0, 0xa3, 0x29, 0x51, 0xf8, 0x5f, 0x88, 0x3e, 0xb5, 0xfe, 0xce, - 0x23, 0x99, 0x17, 0x5f, 0xd3, 0x9a, 0x34, 0x20, 0xdd, 0x98, 0xad, 0x3a, 0x67, 0x2d, 0xa5, 0x49, - 0x48, 0x26, 0x1b, 0xfd, 0xdd, 0x49, 0xd2, 0x01, 0xc4, 0xf5, 0x14, 0x3d, 0x83, 0x05, 0x11, 0x09, - 0xd5, 0x56, 0x1c, 0xd4, 0x87, 0x13, 0x76, 0x0a, 0x49, 0x67, 0x10, 0xdb, 0xbb, 0xc3, 0xb2, 0x75, - 0xfa, 0x0b, 0x24, 0x4a, 0xb6, 0xae, 0xf4, 0xc8, 0xe4, 0xf4, 0x76, 0x1a, 0xf4, 0x29, 0xcd, 0xd6, - 0x59, 0x2b, 0x73, 0xd2, 0x59, 0x5f, 0xd6, 0x29, 0x85, 0x66, 0xb0, 0x29, 0xea, 0x2f, 0x74, 0x41, - 0x9d, 0xf2, 0xf5, 0x09, 0x38, 0x45, 0xd2, 0x13, 0x70, 0x95, 0xd1, 0xe4, 0x1b, 0xf2, 0x94, 0xfa, - 0x82, 0x51, 0xea, 0x2a, 0xe6, 0x15, 0xa6, 0xd4, 0x55, 0xdc, 0x1b, 0x49, 0x9a, 0xef, 0x1d, 0x89, - 0xfc, 0x2a, 0xa4, 0x77, 0x77, 0xe0, 0x2b, 0xc5, 0xdc, 0xda, 0xe0, 0xf7, 0x70, 0x4a, 0x16, 0x19, - 0xbe, 0x01, 0x53, 0x93, 0x98, 0xbe, 0xf7, 0x65, 0x6a, 0x18, 0x8d, 0x79, 0x69, 0xf6, 0x94, 0x96, - 0x3f, 0x9f, 0x55, 0xb6, 0xca, 0xfc, 0x97, 0x50, 0x5c, 0xaf, 0xaf, 0x70, 0xa5, 0x7c, 0xfb, 0x32, - 0xd4, 0x1e, 0x9b, 0xa2, 0x21, 0xd6, 0x0a, 0xa8, 0x4a, 0x6b, 0x2f, 0x1a, 0x34, 0xa6, 0x76, 0x15, - 0x43, 0x30, 0x17, 0x4f, 0x90, 0xd6, 0xf1, 0xa8, 0xd3, 0x27, 0x76, 0xa0, 0xb3, 0x99, 0xc0, 0xc3, - 0xa0, 0xd8, 0xc1, 0xb4, 0x1a, 0x4f, 0x46, 0x70, 0x77, 0x9d, 0x81, 0x30, 0x8d, 0x55, 0x8b, 0x4f, - 0xf7, 0x5f, 0x4b, 0x63, 0x1a, 0xa2, 0xd4, 0x98, 0x06, 0xbd, 0x9d, 0xc6, 0x22, 0x04, 0x75, 0x8d, - 0xe9, 0x6c, 0x26, 0xf0, 0x70, 0xbd, 0xc6, 0xe2, 0xc9, 0xdc, 0x54, 0x63, 0x5f, 0xd2, 0x48, 0xb1, - 0x4b, 0xbf, 0xf9, 0x79, 0x2b, 0x9d, 0x65, 0x45, 0xde, 0xa3, 0xa3, 0xd6, 0x36, 0xd1, 0x73, 0xda, - 0x7f, 0x1d, 0x81, 0xdf, 0x4c, 0x6f, 0xab, 0x49, 0x44, 0xa9, 0xe6, 0x2a, 0xb0, 0xc8, 0x34, 0x17, - 0x65, 0x37, 0x91, 0x97, 0x44, 0xb1, 0x77, 0x45, 0xd8, 0x8d, 0x92, 0xba, 0xad, 0xfe, 0xb6, 0xa8, - 0x89, 0x1c, 0x79, 0x24, 0xab, 0x69, 0xf4, 0xa7, 0x3c, 0x3a, 0x11, 0x51, 0x2d, 0xd3, 0xa7, 0xd7, - 0x0a, 0xa8, 0x42, 0x77, 0x41, 0x07, 0x0f, 0xca, 0x09, 0xe3, 0xc9, 0x50, 0x25, 0xed, 0x89, 0xf8, - 0x1c, 0xe1, 0x29, 0x69, 0xed, 0x64, 0xa6, 0x64, 0xc2, 0x7c, 0x43, 0xe9, 0x92, 0x54, 0xc4, 0xe2, - 0x0c, 0xcb, 0x4f, 0xaf, 0xd3, 0x4c, 0xf4, 0x37, 0xca, 0xd0, 0xff, 0x87, 0xb4, 0x40, 0xbe, 0x5e, - 0x21, 0x51, 0x6c, 0xfe, 0xa6, 0x61, 0x92, 0x2b, 0x84, 0x72, 0x90, 0xb4, 0x52, 0x22, 0xfb, 0x9f, - 0xc3, 0x24, 0x57, 0xc3, 0x40, 0x09, 0x92, 0xd3, 0xc5, 0xc5, 0x5d, 0x1c, 0xc4, 0xfc, 0xca, 0xcd, - 0x75, 0xc2, 0xc4, 0xfd, 0xa8, 0x0e, 0xaa, 0xd1, 0xfe, 0xf4, 0xa4, 0x5f, 0x24, 0x4a, 0x22, 0x79, - 0xed, 0xef, 0x21, 0x11, 0xba, 0xd5, 0x64, 0xba, 0xd7, 0xe2, 0x27, 0x4a, 0x7f, 0x00, 0xab, 0xb4, - 0xb4, 0x78, 0x5b, 0x8e, 0x93, 0xd3, 0xe5, 0x3b, 0xe1, 0xdb, 0xe4, 0xe8, 0x8f, 0x21, 0x25, 0x11, - 0xbb, 0xee, 0x77, 0x98, 0x08, 0xd5, 0x6a, 0x22, 0xd5, 0xeb, 0xb0, 0x07, 0x04, 0xa3, 0x15, 0x2a, - 0xfb, 0x2d, 0xb9, 0x1d, 0xec, 0x69, 0x22, 0xbf, 0xce, 0x94, 0x9c, 0xb7, 0xc5, 0xff, 0xfe, 0x13, - 0xa1, 0x52, 0xed, 0xa3, 0x92, 0x34, 0x7b, 0x50, 0xf0, 0xa1, 0xa2, 0xdd, 0x90, 0x9b, 0xe4, 0x2a, - 0x6e, 0x5a, 0x36, 0x52, 0x20, 0x25, 0xd5, 0xd4, 0xda, 0x04, 0x72, 0xd3, 0xea, 0xeb, 0x4b, 0x1f, - 0x15, 0x59, 0x8c, 0x57, 0x1b, 0x0a, 0x94, 0xda, 0x53, 0x6c, 0xa7, 0x41, 0x94, 0x04, 0x4b, 0x95, - 0xf7, 0xdd, 0xfa, 0x85, 0x9a, 0x2a, 0x2b, 0x6f, 0x81, 0x73, 0xfa, 0x6b, 0x65, 0xee, 0xc2, 0xe8, - 0xbb, 0x65, 0xb5, 0xb0, 0xad, 0xbe, 0xd9, 0x56, 0x53, 0x65, 0xfd, 0x8d, 0xb5, 0x4c, 0x95, 0xe9, - 0x82, 0x3a, 0xe5, 0xeb, 0x53, 0x65, 0x8a, 0xa4, 0xa7, 0xca, 0x2a, 0xa3, 0x09, 0xf8, 0xa5, 0xcc, - 0xb7, 0xff, 0xb1, 0x66, 0x7c, 0xfb, 0xdd, 0x9a, 0xf1, 0xcf, 0xdf, 0xad, 0x19, 0xbf, 0xfd, 0x6e, - 0xcd, 0x38, 0x1d, 0xa3, 0x33, 0x36, 0xff, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x65, 0x7e, 0x19, 0x0b, - 0xa9, 0x54, 0x00, 0x00, + // 5937 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x7c, 0x4d, 0x6c, 0x1b, 0x59, + 0x72, 0xb0, 0x9a, 0xfa, 0x65, 0xe9, 0x8f, 0x7a, 0xfa, 0xa3, 0x29, 0x59, 0xf4, 0xb6, 0x77, 0xbd, + 0x9e, 0xd9, 0x59, 0x69, 0x96, 0x9a, 0xf9, 0x66, 0x76, 0x66, 0xc7, 0xfe, 0x48, 0xea, 0x8f, 0x63, + 0x59, 0xd6, 0x34, 0x25, 0x7a, 0x77, 0x33, 0x80, 0xd2, 0x22, 0x9f, 0xa5, 0x86, 0x28, 0x36, 0xa7, + 0xbb, 0x29, 0xdb, 0x39, 0x25, 0xc1, 0x66, 0x13, 0x24, 0x08, 0x90, 0x4b, 0x0e, 0x39, 0x25, 0x40, + 0x0e, 0x01, 0x72, 0xd8, 0x53, 0xae, 0x7b, 0x1f, 0x04, 0x08, 0x92, 0x5b, 0x80, 0x1c, 0x98, 0xcd, + 0x1e, 0x79, 0xcd, 0x2d, 0xa7, 0xe0, 0xfd, 0xf6, 0x7b, 0xcd, 0x6e, 0x4a, 0xb2, 0x9d, 0xe4, 0x62, + 0xab, 0xeb, 0xbd, 0xaa, 0x57, 0x55, 0xaf, 0x5e, 0x55, 0xbd, 0x7a, 0x25, 0xc1, 0x9c, 0xdd, 0x09, + 0xce, 0x7d, 0xec, 0x5d, 0x39, 0x75, 0xbc, 0xde, 0xf6, 0xdc, 0xc0, 0x45, 0xa3, 0xf4, 0xbf, 0xdc, + 0xc2, 0x99, 0x7b, 0xe6, 0xd2, 0x1f, 0x37, 0xc8, 0x4f, 0x6c, 0x30, 0xb7, 0x72, 0xe6, 0xba, 0x67, + 0x4d, 0xbc, 0x41, 0xbf, 0x4e, 0x3b, 0x2f, 0x36, 0xf0, 0x65, 0x3b, 0x78, 0xcd, 0x07, 0xf3, 0xd1, + 0xc1, 0xc0, 0xb9, 0xc4, 0x7e, 0x60, 0x5f, 0xb6, 0xf9, 0x84, 0x4f, 0xce, 0x9c, 0xe0, 0xbc, 0x73, + 0xba, 0x5e, 0x77, 0x2f, 0x37, 0xce, 0x3c, 0xfb, 0xca, 0x09, 0xec, 0xc0, 0x71, 0x5b, 0x76, 0x73, + 0x23, 0xc0, 0x4d, 0xdc, 0x76, 0xbd, 0x60, 0xc3, 0x6e, 0x3b, 0x1b, 0xc1, 0xeb, 0x36, 0xf6, 0xd9, + 0xbf, 0x1c, 0xb1, 0x7c, 0x1b, 0xc4, 0x97, 0x9e, 0xdd, 0x6e, 0x63, 0x2f, 0xfc, 0x81, 0x13, 0x79, + 0x7c, 0x1b, 0x22, 0xf8, 0x0a, 0xb7, 0x02, 0xf1, 0x1f, 0x23, 0x60, 0xfe, 0x26, 0x03, 0xa3, 0xdb, + 0x04, 0x80, 0x3e, 0x85, 0x91, 0xa3, 0xd7, 0x6d, 0x9c, 0x35, 0xee, 0x19, 0x0f, 0x67, 0x0a, 0x19, + 0x36, 0xbe, 0xfe, 0xac, 0x8d, 0x3d, 0x4a, 0xb2, 0x84, 0x7a, 0xdd, 0xfc, 0x0c, 0x21, 0xf4, 0x81, + 0x7b, 0xe9, 0x04, 0x54, 0x47, 0x16, 0xc5, 0x40, 0xcf, 0x61, 0xc6, 0xc2, 0xbe, 0xdb, 0xf1, 0xea, + 0x78, 0x0f, 0xdb, 0x0d, 0xec, 0x65, 0x53, 0xf7, 0x8c, 0x87, 0x93, 0x85, 0xc5, 0x75, 0x26, 0xaf, + 0x3e, 0x58, 0x5a, 0xea, 0x75, 0xf3, 0xc8, 0xe3, 0xb0, 0x90, 0xd8, 0xde, 0x90, 0x15, 0x21, 0x83, + 0xbe, 0x86, 0xe9, 0x32, 0xf6, 0x82, 0x62, 0x27, 0x38, 0x77, 0x3d, 0x27, 0x78, 0x9d, 0x1d, 0xa6, + 0x74, 0x97, 0x38, 0x5d, 0x6d, 0xac, 0x56, 0x28, 0xad, 0xf6, 0xba, 0xf9, 0x6c, 0x1d, 0x7b, 0xc1, + 0x89, 0x2d, 0xa0, 0x1a, 0x79, 0x9d, 0x18, 0xfa, 0x29, 0x4c, 0x55, 0x89, 0xba, 0xea, 0x47, 0xee, + 0x05, 0x6e, 0xf9, 0xd9, 0x11, 0x8d, 0x69, 0x75, 0xa8, 0x56, 0x28, 0xad, 0xf4, 0xba, 0xf9, 0x65, + 0x9f, 0xc2, 0x4e, 0x02, 0x0a, 0xd4, 0x48, 0x6b, 0x94, 0xd0, 0xef, 0xc2, 0xcc, 0xa1, 0xe7, 0x5e, + 0x39, 0xbe, 0xe3, 0xb6, 0x28, 0x28, 0x3b, 0x4a, 0x69, 0x2f, 0x73, 0xda, 0xfa, 0x60, 0xad, 0x50, + 0xba, 0xdb, 0xeb, 0xe6, 0xef, 0xb4, 0x05, 0x94, 0x2d, 0xa0, 0x6b, 0x46, 0x47, 0x41, 0x47, 0x30, + 0x59, 0x6e, 0x76, 0xfc, 0x00, 0x7b, 0x07, 0xf6, 0x25, 0xce, 0x8e, 0x51, 0xf2, 0x0b, 0x42, 0x2f, + 0xe1, 0x48, 0xad, 0x50, 0xca, 0xf5, 0xba, 0xf9, 0xa5, 0x3a, 0x03, 0x9d, 0xb4, 0xec, 0x4b, 0x5d, + 0xe5, 0x2a, 0x19, 0xaa, 0x6f, 0xf6, 0x59, 0x76, 0x5b, 0x2f, 0x9c, 0xb3, 0xec, 0xb8, 0xae, 0x6f, + 0x75, 0xac, 0xb6, 0xc9, 0xf5, 0xcd, 0x29, 0xd7, 0x29, 0x34, 0xa2, 0x6f, 0x15, 0x01, 0x7d, 0x02, + 0x23, 0xc7, 0x3e, 0xf6, 0xb2, 0x13, 0x94, 0xe8, 0x34, 0x27, 0x4a, 0x40, 0xb5, 0x02, 0xb3, 0xae, + 0x8e, 0x8f, 0x3d, 0x8d, 0x02, 0x45, 0x20, 0x88, 0x96, 0xdb, 0xc4, 0xd9, 0xb4, 0x86, 0x48, 0x40, + 0xb5, 0x8f, 0x18, 0xa2, 0xe7, 0x36, 0x75, 0xb1, 0x28, 0x02, 0xaa, 0x40, 0x9a, 0xc8, 0xe5, 0xb7, + 0xed, 0x3a, 0xce, 0x02, 0xc5, 0xce, 0x70, 0x6c, 0x09, 0x2f, 0x2d, 0xf7, 0xba, 0xf9, 0xf9, 0x96, + 0xf8, 0xd4, 0xa8, 0x84, 0xd8, 0xe8, 0x31, 0x8c, 0x55, 0xb1, 0x77, 0x85, 0xbd, 0xec, 0x24, 0xa5, + 0x33, 0x2b, 0xcc, 0x84, 0x02, 0x6b, 0x85, 0xd2, 0x42, 0xaf, 0x9b, 0xcf, 0xf8, 0xf4, 0x4b, 0xa3, + 0xc1, 0xd1, 0x88, 0x6e, 0x2d, 0x7c, 0x85, 0x3d, 0x1f, 0x1f, 0x75, 0x5a, 0x2d, 0xdc, 0xcc, 0x4e, + 0x69, 0xba, 0xd5, 0xc6, 0x84, 0x2d, 0x7b, 0x0c, 0x78, 0x12, 0x50, 0xa8, 0xae, 0x5b, 0x0d, 0x01, + 0x9d, 0x43, 0x86, 0xfd, 0x54, 0x76, 0x5b, 0x2d, 0x5c, 0x27, 0x07, 0x36, 0x3b, 0x4d, 0x17, 0xb8, + 0xc3, 0x17, 0x88, 0x0e, 0xd7, 0x0a, 0xa5, 0x7c, 0xaf, 0x9b, 0x5f, 0x61, 0xb4, 0xc9, 0xf6, 0xf1, + 0x01, 0x6d, 0x99, 0x3e, 0xaa, 0x44, 0x8e, 0x62, 0xbd, 0x8e, 0x7d, 0xdf, 0xc2, 0xdf, 0x74, 0xb0, + 0x1f, 0x64, 0x67, 0x34, 0x39, 0xb4, 0x31, 0x61, 0x23, 0x36, 0x05, 0x9e, 0x78, 0x0c, 0xaa, 0xcb, + 0xa1, 0x21, 0xa0, 0x43, 0x80, 0x62, 0xbb, 0x5d, 0xc5, 0x3e, 0x31, 0xf5, 0xec, 0x2c, 0x25, 0x3d, + 0xcf, 0x49, 0x3f, 0xc7, 0xa7, 0x7c, 0xa0, 0x56, 0x28, 0xdd, 0xe9, 0x75, 0xf3, 0x8b, 0x76, 0xbb, + 0x7d, 0xe2, 0x33, 0x90, 0x46, 0x54, 0xa1, 0xc1, 0xf4, 0x7e, 0xe9, 0x06, 0x98, 0x1b, 0x63, 0x36, + 0x13, 0xd1, 0xbb, 0x32, 0x26, 0xf8, 0xf5, 0x28, 0xf0, 0x84, 0x9b, 0x76, 0x54, 0xef, 0x0a, 0x02, + 0x39, 0xe9, 0x5b, 0x76, 0x60, 0x9f, 0xda, 0x3e, 0xe6, 0xe6, 0x31, 0xa7, 0x9d, 0x74, 0x7d, 0xb0, + 0xb6, 0xc9, 0x4e, 0x7a, 0x83, 0x43, 0x4f, 0x62, 0xec, 0x25, 0x42, 0x8f, 0x68, 0x24, 0x14, 0x3c, + 0x8b, 0xae, 0xd1, 0xc8, 0x4b, 0x7c, 0x1a, 0xaf, 0x91, 0x70, 0x2a, 0xda, 0x83, 0x89, 0xe7, 0xf8, + 0x94, 0xf9, 0xa5, 0x79, 0x4a, 0x6f, 0x2e, 0xa4, 0xc7, 0x3c, 0xd2, 0x26, 0x3b, 0x15, 0x84, 0x5a, + 0xbf, 0x2f, 0x92, 0xd8, 0xe8, 0x8f, 0x0c, 0x58, 0x16, 0xfe, 0x03, 0x07, 0x2f, 0x5d, 0xef, 0xc2, + 0x69, 0x9d, 0x71, 0xd7, 0xb1, 0x40, 0x29, 0xdf, 0x8b, 0xb8, 0xa4, 0xc8, 0xac, 0x5a, 0xa1, 0xf4, + 0xfd, 0x5e, 0x37, 0x7f, 0x5f, 0xba, 0x27, 0x39, 0x1e, 0xe7, 0x4f, 0x92, 0xd6, 0x42, 0x7f, 0x60, + 0xc0, 0x12, 0x97, 0xce, 0xc2, 0x75, 0xd7, 0x6b, 0x84, 0x6c, 0x2c, 0x52, 0x36, 0xf2, 0xf2, 0xb4, + 0xc6, 0x4d, 0xaa, 0x15, 0x4a, 0x0f, 0x7a, 0xdd, 0xbc, 0xc9, 0x15, 0x77, 0xe2, 0x89, 0xe1, 0x38, + 0x26, 0x12, 0x16, 0x22, 0x96, 0x40, 0x42, 0xcb, 0xa1, 0x87, 0x5f, 0x60, 0x0f, 0xb7, 0xea, 0x38, + 0xbb, 0xa4, 0x59, 0x82, 0x3e, 0x28, 0x7c, 0x3e, 0x09, 0x54, 0x27, 0x6d, 0x09, 0xd6, 0x2d, 0x41, + 0x47, 0x41, 0xdf, 0x00, 0xe2, 0x0a, 0x28, 0x76, 0x1a, 0x4e, 0xc0, 0x05, 0x5c, 0xa6, 0xab, 0xac, + 0xe8, 0x7a, 0x56, 0x26, 0xd4, 0x0a, 0x25, 0xb3, 0xd7, 0xcd, 0xaf, 0x09, 0x15, 0xdb, 0x64, 0x28, + 0x4e, 0xb0, 0x18, 0xe2, 0xc4, 0xf3, 0xee, 0xbb, 0xf5, 0x8b, 0x6c, 0x56, 0xf3, 0xbc, 0x04, 0x24, + 0x5c, 0x76, 0xd3, 0xad, 0x5f, 0xe8, 0x9e, 0x97, 0x8c, 0x96, 0x00, 0x26, 0x44, 0x2c, 0x37, 0xf7, + 0x60, 0xf4, 0xb9, 0x1d, 0xd4, 0xcf, 0xd1, 0x63, 0x18, 0x7d, 0xe2, 0xb4, 0x1a, 0x7e, 0xd6, 0xb8, + 0x37, 0x4c, 0x5d, 0x31, 0x4b, 0x31, 0xe8, 0x20, 0x19, 0x28, 0x2d, 0x7f, 0xdb, 0xcd, 0x0f, 0xf5, + 0xba, 0xf9, 0xd9, 0x0b, 0x32, 0x4d, 0xc9, 0x33, 0x18, 0x9e, 0xf9, 0x0f, 0x29, 0x48, 0xcb, 0xd9, + 0x68, 0x15, 0x46, 0xc8, 0xff, 0x34, 0x61, 0x49, 0x97, 0x26, 0x7a, 0xdd, 0xfc, 0x08, 0xc1, 0xb3, + 0x28, 0x14, 0x15, 0x60, 0x72, 0xdf, 0xb5, 0x1b, 0x55, 0x5c, 0xf7, 0x70, 0xe0, 0xd3, 0x8c, 0x64, + 0xa2, 0x94, 0xe9, 0x75, 0xf3, 0x53, 0x4d, 0xd7, 0x6e, 0x9c, 0xf8, 0x0c, 0x6e, 0xa9, 0x93, 0x08, + 0x45, 0x1a, 0x4e, 0x87, 0x43, 0x8a, 0x24, 0x30, 0x58, 0x14, 0x8a, 0xbe, 0x84, 0xb1, 0x1d, 0xa7, + 0x49, 0x5c, 0xc8, 0x08, 0xe5, 0x7f, 0x35, 0xca, 0xff, 0x3a, 0x1b, 0xde, 0x6e, 0x05, 0xde, 0x6b, + 0x16, 0x0f, 0x5e, 0x50, 0x80, 0x22, 0x08, 0xa7, 0x80, 0x3e, 0x84, 0xf1, 0x6a, 0xe7, 0x94, 0xb2, + 0x3f, 0x4a, 0x17, 0xa3, 0x49, 0x91, 0xdf, 0x39, 0x3d, 0x21, 0x22, 0x28, 0x08, 0x62, 0x5a, 0xee, + 0xc7, 0x30, 0xa9, 0x90, 0x47, 0x19, 0x18, 0xbe, 0xc0, 0xaf, 0x99, 0xec, 0x16, 0xf9, 0x11, 0x2d, + 0xc0, 0xe8, 0x95, 0xdd, 0xec, 0x60, 0x2a, 0x6a, 0xda, 0x62, 0x1f, 0x9f, 0xa5, 0x3e, 0x35, 0xcc, + 0xaf, 0x60, 0x94, 0x64, 0x3e, 0x3e, 0xba, 0x0f, 0xc3, 0xd5, 0xea, 0x1e, 0x45, 0x9a, 0x2a, 0xcd, + 0xf5, 0xba, 0xf9, 0x69, 0xdf, 0x3f, 0x57, 0x16, 0x23, 0xa3, 0x64, 0xd2, 0xd1, 0x7e, 0x95, 0x52, + 0xe1, 0x93, 0x82, 0xa6, 0xba, 0x17, 0x64, 0xd4, 0xfc, 0xe7, 0x31, 0xc8, 0x90, 0xd8, 0x4c, 0xe9, + 0x0a, 0xe7, 0xfd, 0x01, 0xa4, 0x0f, 0x3b, 0xa7, 0x4d, 0xa7, 0xfe, 0x84, 0x73, 0x36, 0x55, 0x9a, + 0xe9, 0x75, 0xf3, 0xd0, 0xa6, 0xc0, 0x93, 0x0b, 0xfc, 0xda, 0x0a, 0x27, 0xa0, 0x87, 0x30, 0x41, + 0x28, 0x10, 0x05, 0x33, 0x96, 0x4b, 0x53, 0xbd, 0x6e, 0x7e, 0xa2, 0xc3, 0x61, 0x96, 0x1c, 0x45, + 0x55, 0x18, 0xdf, 0x7e, 0xd5, 0x76, 0x3c, 0xec, 0xf3, 0x04, 0x30, 0xb7, 0xce, 0xb2, 0xf2, 0x75, + 0x91, 0x95, 0xaf, 0x1f, 0x89, 0xac, 0xbc, 0x74, 0x97, 0xdb, 0xd0, 0x1c, 0x66, 0x28, 0x21, 0xe7, + 0x7f, 0xf1, 0xef, 0x79, 0xc3, 0x12, 0x94, 0xd0, 0x07, 0x30, 0xb6, 0xe3, 0x7a, 0x97, 0x76, 0x40, + 0xf3, 0xbe, 0x34, 0xdf, 0x2f, 0x0a, 0xd1, 0xf6, 0x8b, 0x42, 0xd0, 0x0e, 0xcc, 0x58, 0x6e, 0x27, + 0xc0, 0x47, 0xae, 0x08, 0x23, 0x6c, 0xdb, 0xd6, 0x7a, 0xdd, 0x7c, 0xce, 0x23, 0x23, 0x27, 0x81, + 0xdb, 0x1f, 0x30, 0xac, 0x08, 0x16, 0xda, 0x86, 0x19, 0x2d, 0xe0, 0xf9, 0xd9, 0xb1, 0x7b, 0xc3, + 0x0f, 0xd3, 0xdc, 0x19, 0x68, 0x61, 0x52, 0xd5, 0x79, 0x04, 0x09, 0x1d, 0xc0, 0xdc, 0x93, 0xce, + 0x29, 0xf6, 0x5a, 0x38, 0xc0, 0xbe, 0xe0, 0x68, 0x9c, 0x72, 0x74, 0xaf, 0xd7, 0xcd, 0xaf, 0x5e, + 0xc8, 0xc1, 0x18, 0x9e, 0xfa, 0x51, 0x11, 0x86, 0x59, 0xce, 0xa8, 0x88, 0x3e, 0x3c, 0x4b, 0x5b, + 0xe2, 0x36, 0x1e, 0x19, 0x2d, 0xdd, 0xe7, 0x5a, 0x5e, 0x91, 0xb2, 0x8b, 0x98, 0xa6, 0x2c, 0x14, + 0xa5, 0x89, 0x36, 0x61, 0xe2, 0xc0, 0x6d, 0x60, 0x7a, 0xc6, 0xd2, 0x94, 0x5b, 0x96, 0x7c, 0xb9, + 0x0d, 0x1c, 0xc9, 0x4c, 0x2d, 0x39, 0x11, 0xed, 0xc3, 0xe8, 0xb1, 0x6f, 0x9f, 0xb1, 0x04, 0x6e, + 0xa6, 0xf0, 0x1d, 0xce, 0x51, 0xd4, 0xfa, 0xe8, 0x6d, 0x80, 0x4e, 0x2c, 0xcd, 0x13, 0x17, 0xd2, + 0x21, 0x3f, 0xaa, 0x2e, 0x84, 0x8e, 0xa1, 0xaf, 0x00, 0x38, 0x57, 0xc5, 0x76, 0x9b, 0xe7, 0x72, + 0x73, 0xba, 0x90, 0xc5, 0x76, 0xbb, 0xb4, 0xc6, 0xe5, 0x5b, 0x92, 0xf2, 0xd9, 0xed, 0xb6, 0x42, + 0x4d, 0x21, 0x62, 0x6e, 0x41, 0x5a, 0xae, 0x8d, 0xc6, 0x61, 0xb8, 0xd8, 0x6c, 0x66, 0x86, 0xc8, + 0x0f, 0xd5, 0xea, 0x5e, 0xc6, 0x40, 0x33, 0x00, 0xa1, 0xc2, 0x33, 0x29, 0x34, 0x05, 0x13, 0x42, + 0x21, 0x99, 0x61, 0x3a, 0xbf, 0xdd, 0xce, 0x8c, 0x98, 0xff, 0x6a, 0xf4, 0xed, 0x01, 0xf1, 0x61, + 0x55, 0x76, 0x8f, 0xa5, 0x2a, 0x63, 0x8e, 0x8e, 0xfa, 0x30, 0x7e, 0xbd, 0xa5, 0x5a, 0xb3, 0xd4, + 0x49, 0xe4, 0x58, 0x1d, 0x12, 0x69, 0xea, 0x6e, 0x53, 0x3d, 0x56, 0x6d, 0x0e, 0xb3, 0xe4, 0x28, + 0x2a, 0x28, 0x07, 0x70, 0x38, 0x74, 0x42, 0xe2, 0x00, 0xaa, 0x9b, 0x21, 0x8f, 0x62, 0x21, 0x64, + 0x9e, 0x9f, 0x1b, 0x8a, 0x13, 0xb3, 0xf9, 0x72, 0x9e, 0xf9, 0x6b, 0x43, 0xd5, 0xb9, 0x74, 0xb2, + 0x46, 0xac, 0x93, 0xfd, 0x00, 0xd2, 0x3c, 0xc0, 0x56, 0xb6, 0x38, 0xff, 0xd4, 0x87, 0x88, 0xd8, + 0xec, 0x34, 0xac, 0x70, 0x02, 0xda, 0x00, 0x60, 0x0e, 0xa5, 0xd8, 0x68, 0x78, 0x5c, 0x88, 0xd9, + 0x5e, 0x37, 0x3f, 0xc9, 0x5d, 0x8e, 0xdd, 0x68, 0x78, 0x96, 0x32, 0x85, 0x68, 0x54, 0xbd, 0x37, + 0x8d, 0x84, 0x1a, 0x55, 0x6f, 0x48, 0xda, 0xad, 0xc8, 0x6c, 0xc2, 0xcc, 0x2e, 0x0e, 0x88, 0x0a, + 0x84, 0xa3, 0x1b, 0x2c, 0xc2, 0x4f, 0x60, 0xf2, 0xb9, 0x13, 0x9c, 0xeb, 0x91, 0x87, 0xde, 0xc2, + 0x5e, 0x3a, 0xc1, 0xb9, 0x88, 0x3c, 0x8a, 0xaa, 0xd4, 0xe9, 0xe6, 0x36, 0xcc, 0xf2, 0xd5, 0xa4, + 0x5f, 0x2d, 0xe8, 0x04, 0x8d, 0x30, 0x94, 0xa9, 0x04, 0x75, 0x32, 0x38, 0xea, 0x68, 0x50, 0xb5, + 0xcf, 0xf5, 0xb0, 0x30, 0x9c, 0x94, 0xb9, 0xd3, 0x53, 0x14, 0x71, 0x49, 0x51, 0x47, 0x64, 0x1e, + 0xc3, 0xf4, 0x61, 0xb3, 0x73, 0xe6, 0xb4, 0xc8, 0x6e, 0x57, 0xf1, 0x37, 0x68, 0x0b, 0x20, 0x04, + 0xf0, 0x15, 0x44, 0xba, 0x1a, 0x0e, 0xd4, 0x36, 0xf9, 0x36, 0x51, 0x08, 0xf5, 0x1d, 0x96, 0x82, + 0x67, 0xfe, 0xe9, 0x30, 0x20, 0xbe, 0x06, 0xb9, 0x58, 0xe3, 0x2a, 0x0e, 0x88, 0x9b, 0x5a, 0x82, + 0x54, 0x65, 0x8b, 0x6b, 0x7d, 0xac, 0xd7, 0xcd, 0xa7, 0x9c, 0x86, 0x95, 0xaa, 0x6c, 0xa1, 0x8f, + 0x60, 0x94, 0x4e, 0xa3, 0xba, 0x9e, 0x91, 0xeb, 0xa9, 0x14, 0x4a, 0xe9, 0x5e, 0x37, 0x3f, 0x4a, + 0x2e, 0xf0, 0xd8, 0x62, 0x93, 0xd1, 0xc7, 0x90, 0xde, 0xc2, 0x4d, 0x7c, 0x66, 0x07, 0xae, 0xb0, + 0x1d, 0xea, 0x8e, 0x1a, 0x02, 0xa8, 0x6c, 0x51, 0x38, 0x93, 0x04, 0x0e, 0x0b, 0xdb, 0xbe, 0xdb, + 0x52, 0x03, 0x87, 0x47, 0x21, 0x6a, 0xe0, 0x60, 0x73, 0xd0, 0x5f, 0x1a, 0x30, 0x59, 0x6c, 0xb5, + 0x5c, 0x56, 0x97, 0xf1, 0x79, 0x21, 0x60, 0x71, 0x5d, 0xd6, 0x71, 0xf6, 0xed, 0x53, 0xdc, 0xac, + 0x91, 0x58, 0xed, 0x97, 0xbe, 0x26, 0x5e, 0xe7, 0xdf, 0xba, 0xf9, 0xcf, 0xdf, 0xa4, 0x34, 0xb4, + 0x7e, 0xe4, 0xd9, 0x4e, 0xe0, 0xd3, 0x7b, 0x51, 0xb8, 0xa0, 0x6a, 0x66, 0x0a, 0x1f, 0xe8, 0x3d, + 0x18, 0x25, 0x57, 0x64, 0x11, 0x7f, 0xe8, 0x66, 0x93, 0x5b, 0xb4, 0x96, 0x75, 0xd1, 0x19, 0xe6, + 0x7d, 0x48, 0x73, 0x4d, 0x56, 0xb6, 0x92, 0xb6, 0xc0, 0x7c, 0x0a, 0x0f, 0x2c, 0x97, 0x6a, 0x17, + 0xfb, 0x38, 0x38, 0xb4, 0x7d, 0xff, 0xa5, 0xeb, 0x35, 0xe8, 0x35, 0x81, 0x9b, 0xa4, 0xb0, 0xe6, + 0xfb, 0x30, 0x4e, 0xc1, 0x92, 0x0c, 0xdd, 0x19, 0x7a, 0xcd, 0xb0, 0xc4, 0x88, 0x59, 0x86, 0xd5, + 0x5d, 0x1c, 0xf4, 0xd3, 0xba, 0x15, 0x91, 0x5f, 0x18, 0x90, 0x2f, 0x7b, 0x38, 0x96, 0xa9, 0x9b, + 0x1d, 0xe5, 0x55, 0x5e, 0x13, 0x4b, 0x85, 0xa3, 0x44, 0xe9, 0xbc, 0xee, 0xf5, 0x3d, 0x18, 0x3e, + 0x3a, 0xda, 0xa7, 0xa6, 0x33, 0x4c, 0x35, 0x38, 0x1c, 0x04, 0xcd, 0xff, 0xea, 0xe6, 0x27, 0xb6, + 0x3a, 0xac, 0x66, 0x66, 0x91, 0x71, 0x73, 0x1a, 0x26, 0x0f, 0x9d, 0xd6, 0x19, 0x5f, 0xd1, 0xfc, + 0xb3, 0x14, 0x4c, 0xb1, 0x6f, 0xbf, 0xed, 0xb6, 0x98, 0x97, 0x57, 0x7d, 0x92, 0x71, 0x03, 0x9f, + 0x84, 0x3e, 0x85, 0x69, 0x7e, 0xa5, 0xc4, 0x1e, 0xbd, 0x18, 0x32, 0x0e, 0x69, 0x4a, 0xce, 0x2e, + 0x95, 0x27, 0x57, 0x6c, 0xc4, 0xd2, 0x27, 0xa2, 0x7d, 0x98, 0x61, 0x80, 0x1d, 0x6c, 0x07, 0x9d, + 0x30, 0xa7, 0x9a, 0xe5, 0x41, 0x50, 0x80, 0x99, 0x49, 0x70, 0x5a, 0x2f, 0x38, 0xd0, 0x8a, 0xe0, + 0xa2, 0xc7, 0x30, 0x7b, 0xe8, 0xb9, 0xaf, 0x5e, 0x2b, 0x5e, 0x98, 0x9d, 0x8a, 0x45, 0x92, 0x82, + 0xb5, 0xc9, 0xd0, 0x89, 0xea, 0x8b, 0xa3, 0xb3, 0xcd, 0xdf, 0xa4, 0x60, 0x42, 0x52, 0x5b, 0x57, + 0x43, 0x25, 0xf7, 0x73, 0xd4, 0xfb, 0x87, 0xf9, 0x8c, 0xa5, 0xcc, 0x40, 0x77, 0x68, 0xf0, 0xe4, + 0x1e, 0x76, 0x9c, 0x6c, 0x80, 0xdd, 0x6e, 0x5b, 0x04, 0x46, 0xec, 0x74, 0xab, 0x44, 0x45, 0x9b, + 0x60, 0x76, 0xda, 0x38, 0xb5, 0x52, 0x5b, 0x25, 0xb2, 0xa3, 0xcf, 0x2a, 0x5b, 0x65, 0xca, 0xe5, + 0x04, 0xdb, 0x51, 0xd7, 0x69, 0xd4, 0x2d, 0x0a, 0x25, 0xa3, 0xd5, 0xe2, 0xd3, 0x7d, 0x7a, 0x4a, + 0xf9, 0xa8, 0x6f, 0x5f, 0x36, 0x2d, 0x0a, 0x45, 0x9f, 0x0b, 0x0f, 0x5a, 0x76, 0x5b, 0x81, 0xe7, + 0x36, 0x7d, 0x5a, 0x77, 0x9b, 0xd0, 0x3c, 0x65, 0x9d, 0x0f, 0x59, 0x91, 0xa9, 0xe8, 0x39, 0x2c, + 0x17, 0x1b, 0x57, 0x76, 0xab, 0x8e, 0x1b, 0x6c, 0xe4, 0xb9, 0xeb, 0x5d, 0xbc, 0x68, 0xba, 0x2f, + 0x7d, 0x9a, 0xb8, 0x4d, 0xf0, 0x14, 0x90, 0x4f, 0x39, 0xe1, 0xe4, 0x5e, 0x8a, 0x49, 0x56, 0x12, + 0x36, 0xca, 0xc3, 0x68, 0xb9, 0xe9, 0x76, 0x1a, 0x34, 0x63, 0x9b, 0x60, 0x07, 0xa1, 0x4e, 0x00, + 0x16, 0x83, 0x9b, 0x3f, 0x82, 0x39, 0xe2, 0xbd, 0x02, 0x7c, 0xe3, 0x10, 0x66, 0x1e, 0x02, 0x54, + 0xf1, 0xa5, 0xdd, 0x3e, 0x77, 0xc9, 0xb6, 0x94, 0xd4, 0x2f, 0xee, 0xd3, 0x91, 0xbc, 0x51, 0xf3, + 0x81, 0xda, 0xa6, 0x08, 0xd4, 0x62, 0xa6, 0xa5, 0x60, 0x99, 0xff, 0x94, 0x02, 0x44, 0x6f, 0x96, + 0xd5, 0xc0, 0xc3, 0xf6, 0xa5, 0x60, 0xe3, 0xc7, 0x30, 0xc5, 0x4e, 0x28, 0x03, 0x53, 0x76, 0x48, + 0xc0, 0x60, 0xb6, 0xa8, 0x0e, 0xed, 0x0d, 0x59, 0xda, 0x54, 0x82, 0x6a, 0x61, 0xbf, 0x73, 0x29, + 0x50, 0x53, 0x1a, 0xaa, 0x3a, 0x44, 0x50, 0xd5, 0x6f, 0xf4, 0x18, 0x66, 0xca, 0xee, 0x65, 0x9b, + 0xe8, 0x84, 0x23, 0x0f, 0x73, 0xb7, 0xcc, 0xd7, 0xd5, 0x06, 0xc9, 0x55, 0x5c, 0x87, 0xa0, 0x03, + 0x98, 0xdf, 0x69, 0x76, 0xfc, 0xf3, 0x62, 0xab, 0x51, 0x6e, 0xba, 0xbe, 0xa0, 0x32, 0xc2, 0x6f, + 0x27, 0xfc, 0x24, 0xf5, 0xcf, 0xd8, 0x1b, 0xb2, 0xe2, 0x10, 0xd1, 0xf7, 0x78, 0x11, 0x9e, 0x87, + 0x87, 0xe9, 0x75, 0x5e, 0xa3, 0x7f, 0xd6, 0xc2, 0xcf, 0x5e, 0xec, 0x0d, 0x59, 0x6c, 0xb4, 0x94, + 0x86, 0x71, 0xe1, 0x45, 0x36, 0x60, 0x4e, 0x51, 0x27, 0x09, 0x68, 0x1d, 0x1f, 0xe5, 0x60, 0xe2, + 0xb8, 0x4d, 0xae, 0xb7, 0xc2, 0x2d, 0x5a, 0xf2, 0xdb, 0xfc, 0x40, 0xd7, 0x34, 0x5a, 0x55, 0x13, + 0x2d, 0x36, 0x39, 0x04, 0x98, 0x7b, 0xba, 0x72, 0x07, 0xcf, 0xd6, 0xd6, 0x4d, 0x45, 0xd6, 0xcd, + 0x44, 0x75, 0x6d, 0x2e, 0xc6, 0x2a, 0xcf, 0xfc, 0x43, 0x03, 0x16, 0x76, 0x71, 0x40, 0x4b, 0x77, + 0xc4, 0xc7, 0xc8, 0x80, 0xf1, 0x03, 0xb5, 0x8a, 0xcb, 0xec, 0x75, 0xba, 0xd7, 0xcd, 0xa7, 0x65, + 0xcd, 0x56, 0xad, 0xd3, 0x7e, 0x01, 0x33, 0xd5, 0x0b, 0xa7, 0x5d, 0xb3, 0x9b, 0x4e, 0x83, 0xfa, + 0x60, 0xee, 0x1d, 0x16, 0xa9, 0x37, 0xbb, 0x70, 0xda, 0x27, 0x57, 0xe1, 0x90, 0x61, 0x45, 0x26, + 0x9b, 0xcf, 0x60, 0x31, 0xc2, 0x03, 0x77, 0xd2, 0xff, 0x0f, 0xc6, 0x39, 0x88, 0x1f, 0x80, 0xbe, + 0x02, 0xf0, 0x64, 0xaf, 0x9b, 0x1f, 0xf7, 0x39, 0x9a, 0x98, 0x6c, 0x3e, 0x85, 0xa5, 0xe3, 0xb6, + 0x8f, 0xbd, 0x90, 0xa6, 0x10, 0x6b, 0x53, 0x56, 0x94, 0x8d, 0xf8, 0x8a, 0x32, 0xf4, 0xba, 0xf9, + 0x31, 0x46, 0x50, 0x54, 0x91, 0xcd, 0x3a, 0x2c, 0xb1, 0xb3, 0xdc, 0x47, 0xee, 0x56, 0x5a, 0x12, + 0xa7, 0x3f, 0x15, 0x7b, 0xfa, 0x2b, 0x90, 0xe3, 0x8b, 0x34, 0x9b, 0x6f, 0xb7, 0x1d, 0xe6, 0x3f, + 0x1a, 0xb0, 0xbc, 0x8b, 0x5b, 0xd8, 0xb3, 0x29, 0xcb, 0x5a, 0xe8, 0x55, 0x0b, 0x00, 0xc6, 0xc0, + 0x02, 0x40, 0x5e, 0x24, 0x2b, 0x29, 0x9a, 0xac, 0x50, 0x17, 0x47, 0x93, 0x15, 0x9e, 0xa2, 0x90, + 0x40, 0x70, 0x6c, 0x55, 0x78, 0x12, 0x47, 0x03, 0x41, 0xc7, 0x73, 0x2c, 0x02, 0x43, 0x95, 0xb0, + 0x78, 0x30, 0x72, 0x6d, 0xf1, 0x60, 0x9e, 0x5f, 0xfb, 0xc6, 0x79, 0xf1, 0x40, 0x2b, 0x19, 0x98, + 0x9f, 0x43, 0xb6, 0x5f, 0x16, 0x6e, 0x1f, 0x79, 0x18, 0x65, 0x15, 0xd5, 0xbe, 0x74, 0x84, 0xc1, + 0xcd, 0xad, 0xd0, 0xba, 0x79, 0xfd, 0x50, 0x16, 0x4d, 0x22, 0x27, 0x6b, 0xc0, 0x85, 0xc7, 0xac, + 0x86, 0xf6, 0xc9, 0xa9, 0xf0, 0xf5, 0x3f, 0x23, 0xf6, 0xc9, 0x6a, 0xc4, 0x46, 0x72, 0x8d, 0x98, + 0xdb, 0x28, 0x43, 0x15, 0x08, 0xe6, 0x73, 0x58, 0xd2, 0x88, 0x86, 0x56, 0xff, 0x05, 0x4c, 0x08, + 0x58, 0x24, 0x97, 0xd7, 0xc8, 0xd2, 0x7d, 0xf3, 0x05, 0xb2, 0x44, 0x31, 0x7f, 0x65, 0xc0, 0x32, + 0x73, 0x3a, 0xfd, 0x72, 0xdf, 0x7c, 0xf7, 0xff, 0x37, 0x2e, 0x79, 0x5f, 0x8e, 0x4c, 0xa4, 0x32, + 0xc3, 0x66, 0x0d, 0xb2, 0xfd, 0xfc, 0xbe, 0x03, 0x0d, 0xef, 0xc2, 0xb2, 0x72, 0x6c, 0xdf, 0x7a, + 0xff, 0xc3, 0x15, 0xdf, 0xe1, 0xfe, 0x87, 0x13, 0xdf, 0xd9, 0xfe, 0x57, 0x60, 0x9e, 0x11, 0xd6, + 0xcf, 0x4a, 0x41, 0x3d, 0x2b, 0xb1, 0xaf, 0x0f, 0xfd, 0xc7, 0xe7, 0x29, 0x3d, 0x3e, 0x62, 0x4a, + 0xc8, 0xe1, 0xc7, 0x30, 0xc6, 0x9f, 0x6f, 0x19, 0x7f, 0x31, 0xc4, 0xa8, 0x1f, 0x65, 0x6f, 0xb6, + 0x16, 0x9f, 0x6c, 0x66, 0xa9, 0xc8, 0x24, 0x95, 0xe4, 0xb5, 0x13, 0xe1, 0xde, 0xcc, 0xaf, 0x88, + 0xc3, 0x8a, 0x8c, 0xbc, 0x65, 0x0c, 0x78, 0x06, 0x59, 0x16, 0x03, 0x14, 0xaa, 0x6f, 0x15, 0x05, + 0x3e, 0x85, 0x2c, 0x33, 0xa7, 0x18, 0x82, 0x83, 0x5d, 0xfb, 0x1a, 0xac, 0x4a, 0xd7, 0x1e, 0x27, + 0xfd, 0x1f, 0x1b, 0x70, 0x67, 0x17, 0x07, 0xfa, 0x1b, 0xd4, 0xff, 0x49, 0x24, 0xfe, 0x1a, 0x72, + 0x71, 0x8c, 0xf0, 0xad, 0x78, 0x14, 0xdd, 0x8a, 0xc4, 0x07, 0xb7, 0xf8, 0x2d, 0xf9, 0x39, 0xac, + 0xb0, 0x2d, 0xd1, 0xe7, 0x0b, 0x41, 0x3f, 0x8f, 0xec, 0x4a, 0x22, 0xf5, 0xb8, 0xdd, 0xf9, 0x73, + 0x03, 0x56, 0x98, 0x92, 0xe3, 0x89, 0xdf, 0x4a, 0x8b, 0xf7, 0x61, 0x6c, 0xcf, 0x25, 0x37, 0x6f, + 0xbe, 0xa1, 0x54, 0x9c, 0x73, 0xd7, 0x0f, 0x88, 0x63, 0xe0, 0x43, 0x83, 0xdf, 0x2d, 0xcc, 0x03, + 0xc8, 0xcb, 0x3d, 0x7f, 0x07, 0x1b, 0x6b, 0xd6, 0x01, 0x09, 0x32, 0xe5, 0xaa, 0x25, 0x48, 0xdc, + 0x81, 0xe1, 0x72, 0xd5, 0xe2, 0x65, 0x7f, 0x1a, 0x82, 0xeb, 0xbe, 0x67, 0x11, 0x58, 0xd4, 0x1f, + 0xa7, 0x6e, 0x52, 0x74, 0xfb, 0x1d, 0x98, 0xd7, 0x16, 0xe1, 0xfb, 0xbe, 0x0a, 0x23, 0x65, 0xec, + 0x05, 0x7c, 0x19, 0x2a, 0x69, 0x1d, 0x7b, 0x81, 0x45, 0xa1, 0xe8, 0x01, 0x8c, 0x97, 0x8b, 0xb4, + 0x28, 0x4c, 0x33, 0x85, 0x29, 0xe6, 0x98, 0xea, 0xf6, 0x49, 0x9d, 0x16, 0x8a, 0xc5, 0xa0, 0xf9, + 0x27, 0x86, 0x42, 0x9d, 0xa0, 0x5f, 0x2f, 0xc3, 0x06, 0xb9, 0x03, 0x11, 0x9d, 0x29, 0x22, 0xd0, + 0x20, 0xc4, 0x6f, 0xc8, 0x54, 0x02, 0x65, 0xca, 0x4d, 0x8b, 0x03, 0x5f, 0xc3, 0x82, 0xce, 0xc9, + 0x3b, 0x15, 0xf4, 0xbb, 0xb4, 0x74, 0x49, 0x72, 0x24, 0x21, 0x22, 0x52, 0xef, 0x7d, 0xdc, 0x40, + 0x3e, 0x81, 0x0c, 0x9f, 0x15, 0x1e, 0xb0, 0xfb, 0x22, 0xe5, 0x62, 0xc7, 0x4b, 0x6f, 0xba, 0x10, + 0x95, 0xa1, 0xef, 0x8b, 0x9b, 0xe5, 0x75, 0x2b, 0x5c, 0x40, 0xf6, 0xe9, 0x4e, 0xb1, 0xd8, 0x09, + 0xce, 0x71, 0x2b, 0x70, 0xea, 0x76, 0x80, 0xcb, 0xe7, 0x76, 0xb3, 0x89, 0x5b, 0x67, 0x54, 0x51, + 0xc7, 0x85, 0x1d, 0x19, 0x5e, 0x78, 0x75, 0xbf, 0xb0, 0x23, 0x67, 0x58, 0x64, 0x1c, 0x3d, 0x84, + 0x91, 0xa3, 0x67, 0x47, 0x87, 0xfc, 0x9a, 0xb7, 0xc0, 0xe7, 0x11, 0x50, 0x38, 0x91, 0xce, 0x30, + 0x5f, 0xc1, 0x72, 0x64, 0x31, 0x29, 0xd5, 0x03, 0xb1, 0x96, 0x41, 0xaf, 0xb0, 0x72, 0x2d, 0x31, + 0x61, 0x6f, 0x88, 0x2d, 0xf6, 0x9e, 0xb6, 0xd8, 0xbc, 0xb2, 0x98, 0x32, 0x93, 0x4e, 0xe1, 0x2f, + 0x9d, 0x14, 0x66, 0xfe, 0x1e, 0x4c, 0xa9, 0x8c, 0x93, 0x5b, 0xd3, 0x13, 0xfc, 0x7a, 0xcf, 0x6e, + 0x35, 0x9a, 0x42, 0x1f, 0x21, 0x80, 0x8c, 0xca, 0xa9, 0xfc, 0xda, 0x14, 0x02, 0xd0, 0x02, 0x8c, + 0x16, 0xdb, 0xed, 0xca, 0x16, 0x3b, 0xd4, 0x16, 0xfb, 0x40, 0x59, 0x18, 0x17, 0x15, 0x1f, 0x9a, + 0xd6, 0x58, 0xe2, 0xd3, 0x74, 0x60, 0x52, 0x11, 0xe4, 0x9a, 0xa5, 0xd7, 0x00, 0xca, 0x4d, 0x07, + 0xb7, 0xa8, 0xfb, 0xe3, 0x6b, 0x2b, 0x10, 0x7a, 0xdd, 0x73, 0xce, 0x5a, 0xb4, 0x2c, 0xc3, 0x19, + 0x08, 0x01, 0xe6, 0x2c, 0x4c, 0x6b, 0x7a, 0x37, 0x4d, 0x98, 0x52, 0x75, 0x43, 0x4c, 0xa0, 0xec, + 0x36, 0xa4, 0x09, 0x90, 0x9f, 0xcd, 0x5f, 0x1a, 0xb0, 0xf0, 0x74, 0xa7, 0x68, 0xe1, 0x33, 0x87, + 0xf6, 0x04, 0x49, 0x41, 0x37, 0xd4, 0x3d, 0x59, 0x51, 0xf7, 0x24, 0x32, 0x53, 0x6c, 0x4e, 0x41, + 0xdb, 0x9c, 0x55, 0x6d, 0x73, 0xfa, 0x51, 0xd8, 0x2e, 0x29, 0x37, 0xe7, 0x5f, 0x18, 0x30, 0xaf, + 0x30, 0x22, 0x99, 0x5e, 0x57, 0xf9, 0xc8, 0xf5, 0xf3, 0x11, 0xb5, 0x91, 0x1f, 0x69, 0x6c, 0xac, + 0xc4, 0xb0, 0x31, 0xd0, 0x56, 0x1a, 0xb0, 0x10, 0x27, 0xa4, 0x6e, 0x15, 0x46, 0xa2, 0x55, 0xa4, + 0x12, 0xac, 0x62, 0x58, 0xb7, 0x0a, 0x1b, 0xe6, 0x63, 0x44, 0x40, 0xef, 0x43, 0x86, 0xc1, 0x98, + 0x2b, 0xe2, 0xb5, 0x7a, 0x82, 0xd9, 0x07, 0xbf, 0xce, 0x56, 0xcc, 0x5f, 0x1b, 0xb0, 0x18, 0xab, + 0x7c, 0xb4, 0x44, 0xa2, 0x68, 0xdd, 0xc3, 0x01, 0xa7, 0xcd, 0xbf, 0x08, 0xbc, 0xe2, 0xfb, 0x1d, + 0xde, 0x27, 0x98, 0xb6, 0xf8, 0x17, 0xfa, 0x2e, 0x4c, 0x1f, 0x62, 0xcf, 0x71, 0x1b, 0x55, 0x5c, + 0x77, 0x5b, 0x0d, 0x56, 0x99, 0x9c, 0xb6, 0x74, 0x20, 0x51, 0x50, 0xb1, 0x79, 0xe6, 0x7a, 0x4e, + 0x70, 0x7e, 0xc9, 0x0f, 0x41, 0x08, 0x20, 0xb4, 0xb7, 0x9c, 0x33, 0x27, 0x60, 0x95, 0xf6, 0x69, + 0x8b, 0x7f, 0x11, 0x15, 0x15, 0xeb, 0x75, 0xb7, 0xd3, 0x0a, 0x68, 0xd1, 0x2e, 0x6d, 0x89, 0x4f, + 0xf3, 0x7d, 0x58, 0x88, 0xdb, 0xb4, 0x58, 0x23, 0xfe, 0xfd, 0x14, 0xcc, 0x17, 0x1b, 0x8d, 0xa7, + 0x3b, 0xc5, 0x2d, 0xac, 0x26, 0x5d, 0x1f, 0xc1, 0x48, 0xa5, 0xe5, 0x04, 0xdc, 0x78, 0xd6, 0xb8, + 0x2d, 0xc4, 0xcc, 0x24, 0xb3, 0x88, 0x39, 0x90, 0xff, 0x91, 0x05, 0xf3, 0xdb, 0xaf, 0x1c, 0x3f, + 0x70, 0x5a, 0x67, 0xd4, 0x20, 0xd9, 0xc2, 0xdc, 0xa0, 0x04, 0x91, 0x04, 0x57, 0xb6, 0x37, 0x64, + 0xc5, 0x21, 0xa3, 0x23, 0x58, 0x3a, 0xc0, 0x2f, 0x63, 0xec, 0x5b, 0x3e, 0x9d, 0x4b, 0xb2, 0x31, + 0x66, 0x9a, 0x80, 0xab, 0x1e, 0x9f, 0x5f, 0xa6, 0x60, 0x41, 0x17, 0x8c, 0xaf, 0x7c, 0x0c, 0x0b, + 0x0a, 0x43, 0xba, 0x0d, 0x4f, 0x16, 0xf2, 0xf1, 0xe2, 0xa8, 0x27, 0x35, 0x16, 0x1d, 0x3d, 0x87, + 0x65, 0x9d, 0x29, 0xdd, 0x67, 0x86, 0x27, 0x2f, 0x6e, 0xca, 0xde, 0x90, 0x95, 0x84, 0x8d, 0x0a, + 0x30, 0x5c, 0xac, 0x5f, 0x70, 0xb5, 0xc4, 0x6f, 0x19, 0x93, 0xac, 0x58, 0xbf, 0x20, 0x67, 0xbe, + 0x28, 0xdb, 0x5a, 0xd8, 0x01, 0xfe, 0x2b, 0x03, 0x96, 0x13, 0x76, 0x98, 0x9c, 0x19, 0x06, 0x54, + 0x22, 0xa1, 0x02, 0x41, 0x5f, 0x28, 0xef, 0x0a, 0x33, 0x85, 0xf7, 0x06, 0xdb, 0xcb, 0x3a, 0x83, + 0x1c, 0xc9, 0x87, 0x07, 0x33, 0x2f, 0xc8, 0xd3, 0x67, 0x88, 0x09, 0xe6, 0x88, 0xd8, 0x9b, 0xf3, + 0x71, 0x61, 0x27, 0x63, 0x98, 0xe5, 0x28, 0x6b, 0x52, 0x12, 0xf4, 0x10, 0xc6, 0x18, 0x90, 0x6f, + 0x8c, 0x68, 0x88, 0x0c, 0x27, 0xf3, 0x71, 0xf3, 0x6f, 0x0c, 0x51, 0x6c, 0xea, 0xb3, 0xf7, 0x4f, + 0x34, 0x7b, 0x17, 0x4f, 0xf2, 0xf1, 0x93, 0x35, 0x93, 0x2f, 0xc1, 0xe4, 0x9b, 0x98, 0xba, 0x8a, + 0xa4, 0x1a, 0xe3, 0xdf, 0x1a, 0xe2, 0x62, 0xdd, 0x6f, 0x8f, 0xdb, 0x30, 0xf5, 0x66, 0x76, 0xa8, + 0xa1, 0xa1, 0x8f, 0x99, 0x99, 0xa4, 0x06, 0x4b, 0x3a, 0xd0, 0x52, 0x7e, 0x22, 0xea, 0x69, 0x6f, + 0x62, 0x2b, 0xe6, 0x6a, 0x0c, 0xb6, 0x5c, 0xce, 0x5c, 0xa2, 0xf7, 0x62, 0x39, 0x24, 0x2f, 0x72, + 0x65, 0x5a, 0x28, 0x50, 0xe1, 0xd2, 0xf5, 0x8f, 0x73, 0x90, 0x6c, 0xc3, 0x8a, 0x1a, 0x80, 0x98, + 0x40, 0x4c, 0xfc, 0xce, 0xb1, 0x8f, 0xbd, 0xaa, 0xd3, 0x3a, 0x6b, 0xe2, 0x63, 0x96, 0xa2, 0xca, + 0x4b, 0xc3, 0x0f, 0x35, 0x23, 0x58, 0x4e, 0xe8, 0xcb, 0xf8, 0x9f, 0xda, 0xfa, 0xbf, 0x36, 0x20, + 0x17, 0xc7, 0xdb, 0xbb, 0xdd, 0xfd, 0x75, 0x9e, 0x86, 0x33, 0x6e, 0xb3, 0x1c, 0x5d, 0xae, 0x29, + 0x84, 0x25, 0x42, 0x92, 0xff, 0xb5, 0x6d, 0xff, 0x95, 0x01, 0x0b, 0x15, 0x9f, 0xb2, 0xff, 0x4d, + 0xc7, 0xf1, 0x70, 0x43, 0x28, 0x6e, 0x3d, 0xae, 0x7b, 0x87, 0x6e, 0xfc, 0xde, 0x50, 0x5c, 0x77, + 0xce, 0x47, 0x4a, 0xd3, 0x45, 0x6a, 0x50, 0x5b, 0xce, 0xde, 0x50, 0xd8, 0x76, 0x81, 0x1e, 0xc0, + 0xc8, 0x01, 0x89, 0x5f, 0xc3, 0xfc, 0x98, 0x33, 0x0c, 0x02, 0xda, 0x77, 0xcf, 0x9c, 0x16, 0x61, + 0x99, 0x7c, 0x94, 0x26, 0x60, 0xec, 0xc8, 0xf6, 0xce, 0x70, 0x60, 0xfe, 0x1c, 0x72, 0xfc, 0x39, + 0x81, 0x15, 0x70, 0xe8, 0xa3, 0x83, 0x1f, 0x16, 0x16, 0x06, 0x3d, 0x01, 0xac, 0x01, 0x54, 0x03, + 0xdb, 0x0b, 0x2a, 0xad, 0x06, 0x7e, 0x45, 0xb9, 0x1c, 0xb5, 0x14, 0x88, 0xf9, 0x31, 0xa4, 0xe5, + 0xd2, 0xf4, 0x8a, 0xa0, 0x84, 0x56, 0xf2, 0x33, 0xc9, 0x6c, 0xe8, 0xa0, 0xc8, 0x6c, 0xe8, 0x87, + 0xb9, 0x09, 0x8b, 0x11, 0x15, 0xf2, 0xfd, 0xcd, 0x11, 0x45, 0x33, 0x18, 0x7b, 0x28, 0xb4, 0xe4, + 0xb7, 0x59, 0x86, 0xb9, 0xbe, 0x1d, 0x42, 0x48, 0xe9, 0x7d, 0x23, 0x87, 0xb4, 0x5a, 0xdd, 0x23, + 0x30, 0xd9, 0xea, 0x46, 0x60, 0x47, 0xfb, 0xd5, 0xd2, 0x18, 0xdb, 0x71, 0xf3, 0xef, 0x53, 0xf4, + 0x56, 0xd4, 0xa7, 0x83, 0xc8, 0x3d, 0x59, 0xbd, 0xab, 0x97, 0x20, 0x4d, 0x25, 0xde, 0x12, 0xad, + 0x08, 0x83, 0x8b, 0xcd, 0x13, 0xdf, 0x76, 0xf3, 0x43, 0xb4, 0xc2, 0x1c, 0xa2, 0xa1, 0x47, 0x30, + 0xbe, 0xdd, 0x6a, 0x50, 0x0a, 0xc3, 0xb7, 0xa0, 0x20, 0x90, 0xc8, 0x3e, 0x50, 0x96, 0x49, 0x64, + 0xf0, 0x69, 0xa3, 0x62, 0xda, 0x52, 0x20, 0x54, 0xcd, 0xce, 0xa5, 0xc3, 0x5e, 0x9a, 0x46, 0x2d, + 0xf6, 0x41, 0xb4, 0x49, 0x59, 0x78, 0x82, 0x5f, 0xf3, 0xf4, 0x48, 0x7e, 0x23, 0x13, 0x46, 0x9f, + 0x79, 0x0d, 0xde, 0x5f, 0x36, 0x53, 0x98, 0x12, 0xbf, 0x18, 0x42, 0x60, 0x16, 0x1b, 0x32, 0xff, + 0x93, 0x96, 0xf9, 0x83, 0x58, 0xbb, 0xd1, 0xb4, 0x62, 0xbc, 0xb5, 0x56, 0x52, 0x6f, 0xa2, 0x15, + 0x29, 0xf5, 0x70, 0x92, 0xd4, 0x23, 0x49, 0x52, 0x8f, 0x26, 0x4b, 0xbd, 0x0b, 0x63, 0x4c, 0x54, + 0x72, 0x5b, 0xae, 0x04, 0xf8, 0x32, 0xbc, 0x2d, 0xab, 0xef, 0x77, 0x16, 0x1b, 0x23, 0x29, 0xe8, + 0xbe, 0xed, 0xd3, 0xd5, 0x98, 0x8d, 0x8b, 0x4f, 0xf3, 0x14, 0x32, 0xfb, 0x8e, 0x1f, 0x90, 0x73, + 0x70, 0x43, 0x53, 0x93, 0x02, 0xa5, 0x92, 0x04, 0x1a, 0xd6, 0x05, 0x32, 0x7f, 0x0a, 0x73, 0xca, + 0x1a, 0xfc, 0x14, 0xbd, 0x77, 0x5d, 0x45, 0x53, 0x56, 0xcc, 0x08, 0xf7, 0x07, 0xf8, 0x95, 0xca, + 0x3d, 0xff, 0x34, 0x1f, 0xd1, 0x8e, 0xa5, 0x7d, 0xb7, 0x7e, 0xa1, 0xd4, 0x93, 0xc6, 0x99, 0x4f, + 0x89, 0x96, 0x65, 0xc9, 0x2c, 0x36, 0x62, 0x89, 0x19, 0xbc, 0xfc, 0xc0, 0xf1, 0xc3, 0xf2, 0x03, + 0x05, 0x44, 0xca, 0x0f, 0xac, 0xf3, 0xd8, 0x62, 0x63, 0xbc, 0xba, 0x41, 0x7e, 0x1e, 0x54, 0x7b, + 0x90, 0x45, 0x8a, 0x6b, 0x26, 0xbe, 0xff, 0x3e, 0xa4, 0xe5, 0x6f, 0x3b, 0x91, 0xa4, 0xaa, 0x72, + 0x50, 0x39, 0x62, 0x49, 0xd5, 0xe1, 0xf1, 0x51, 0xc6, 0x40, 0x00, 0x63, 0x5b, 0xdb, 0xfb, 0xdb, + 0x47, 0xdb, 0x99, 0xd4, 0xfb, 0x0f, 0xb8, 0x79, 0xa0, 0x19, 0x80, 0xad, 0xed, 0x6a, 0x79, 0xfb, + 0x60, 0xab, 0x72, 0xb0, 0x9b, 0x19, 0x42, 0xd3, 0x90, 0x2e, 0xca, 0x4f, 0xa3, 0xf0, 0x77, 0x5f, + 0xc0, 0x24, 0x89, 0x34, 0xbc, 0xce, 0x8a, 0x7e, 0x02, 0x33, 0x55, 0xdc, 0x6a, 0x3c, 0xc1, 0xb8, + 0x5d, 0x6c, 0x3a, 0x57, 0xd8, 0x47, 0x22, 0xfc, 0x4a, 0x50, 0x6e, 0xa9, 0xcf, 0xb6, 0xb7, 0x2f, + 0xdb, 0xc1, 0xeb, 0x87, 0x06, 0xfa, 0x01, 0x4c, 0xd2, 0x66, 0x63, 0x6e, 0x75, 0x53, 0x6a, 0x03, + 0x72, 0x4e, 0x7c, 0xd1, 0xc1, 0x0f, 0x0d, 0xf4, 0x05, 0x8c, 0xef, 0x62, 0xba, 0xdf, 0xe8, 0x3b, + 0x91, 0x5f, 0xc4, 0xaa, 0xb4, 0xa4, 0x25, 0x71, 0x85, 0xe4, 0xa2, 0x1b, 0x8f, 0xca, 0x30, 0xc1, + 0xd1, 0x7d, 0x64, 0x46, 0xf0, 0xfd, 0x18, 0x02, 0xf3, 0x11, 0x02, 0xc4, 0xd8, 0xd0, 0x23, 0x48, + 0x4b, 0xa3, 0x43, 0x22, 0x43, 0x88, 0x9a, 0x7a, 0x2e, 0xdb, 0x3f, 0xc0, 0xcd, 0x60, 0x03, 0x80, + 0x95, 0x69, 0xa9, 0x18, 0x51, 0x1e, 0x73, 0x7d, 0xba, 0x43, 0xbb, 0x24, 0x99, 0x22, 0x9b, 0x7d, + 0x53, 0xb9, 0x13, 0x94, 0x8d, 0xf6, 0x61, 0x46, 0x16, 0x4d, 0x6f, 0xae, 0x84, 0x24, 0x6a, 0x9f, + 0xc1, 0x9c, 0x78, 0x39, 0x94, 0xf9, 0x11, 0x4a, 0xca, 0x98, 0xe4, 0x4e, 0xb2, 0x69, 0x18, 0x72, + 0x2a, 0xae, 0x9e, 0xef, 0xa0, 0x7b, 0x0a, 0x91, 0xd8, 0x34, 0x2d, 0xf7, 0x9d, 0x01, 0x33, 0x98, + 0x9a, 0x1f, 0x1a, 0x1f, 0x1a, 0xe8, 0x4b, 0x98, 0xd6, 0x22, 0x2d, 0x12, 0xf7, 0xaa, 0xb8, 0x14, + 0x26, 0xb7, 0x1a, 0x3f, 0xc8, 0xb7, 0x6d, 0x87, 0x88, 0x1b, 0x44, 0xfa, 0x0f, 0x73, 0x71, 0x7d, + 0x86, 0xac, 0xa5, 0x3d, 0x27, 0x1a, 0x2f, 0x22, 0x28, 0xdb, 0x30, 0xcf, 0x9f, 0xe3, 0xb4, 0x5f, + 0x12, 0x4a, 0xe8, 0x58, 0x4c, 0xd4, 0xfe, 0x63, 0x98, 0xe7, 0x7b, 0xa9, 0x91, 0xc9, 0xc8, 0x56, + 0x11, 0xde, 0xdc, 0x96, 0x48, 0xe0, 0x4b, 0x58, 0xac, 0x46, 0xe4, 0x61, 0x2d, 0x84, 0x77, 0x74, + 0x12, 0x4a, 0xaf, 0x62, 0x22, 0xad, 0x27, 0x80, 0xaa, 0x9d, 0xd3, 0x4b, 0x47, 0x92, 0xbb, 0x72, + 0xf0, 0x4b, 0x74, 0x37, 0x22, 0x12, 0x01, 0xd2, 0x69, 0x34, 0xa0, 0xe6, 0x12, 0x24, 0x46, 0x47, + 0xec, 0x39, 0x98, 0x75, 0x1a, 0xd9, 0x6d, 0xfb, 0xd4, 0x69, 0x3a, 0x81, 0x83, 0x89, 0x59, 0xa8, + 0x08, 0xea, 0x90, 0xd8, 0xc1, 0x3b, 0x89, 0x33, 0xd0, 0x23, 0x98, 0xde, 0xc5, 0x41, 0xd8, 0x8e, + 0x89, 0x96, 0xfb, 0x1a, 0x38, 0xf9, 0xbe, 0x89, 0x32, 0xac, 0xde, 0x03, 0x5a, 0x81, 0xcc, 0x71, + 0xbb, 0x61, 0x07, 0x58, 0x21, 0x71, 0xb7, 0x8f, 0x04, 0x9f, 0x62, 0x7b, 0xf6, 0xa5, 0x9f, 0xa8, + 0xad, 0x0d, 0x18, 0x39, 0x74, 0x5a, 0x67, 0x48, 0xd4, 0x6a, 0x95, 0x46, 0xba, 0xdc, 0xbc, 0x06, + 0xe3, 0xa6, 0x17, 0x40, 0xfe, 0x9a, 0x3e, 0x44, 0xf4, 0x43, 0x99, 0x3c, 0xdf, 0xa4, 0x5f, 0x31, + 0xa7, 0x9c, 0xfb, 0xf8, 0x89, 0xb5, 0x4d, 0xf4, 0x33, 0xba, 0x0f, 0xfd, 0x33, 0xd0, 0x7d, 0xbe, + 0xd6, 0xa0, 0x66, 0xc6, 0xdc, 0x4a, 0xe2, 0x0a, 0xb5, 0x4d, 0x74, 0x22, 0x9e, 0xa4, 0x63, 0xa8, + 0x3f, 0xd0, 0xfa, 0xa4, 0xde, 0x70, 0x81, 0x0d, 0x1a, 0x27, 0xe8, 0x2f, 0x5a, 0x2e, 0x86, 0xdc, + 0x2a, 0xbd, 0x62, 0x39, 0xfd, 0x57, 0x35, 0xd1, 0x26, 0x8d, 0x0c, 0xb4, 0x43, 0x19, 0x2d, 0xe9, + 0x18, 0x7e, 0x3c, 0xca, 0x87, 0x06, 0xda, 0x04, 0x60, 0x5c, 0xd2, 0x85, 0xf4, 0xe1, 0xc4, 0xdd, + 0xdf, 0x24, 0xee, 0xbf, 0x71, 0x4b, 0xa4, 0x47, 0x22, 0x04, 0x50, 0xa4, 0xac, 0x76, 0x63, 0x57, + 0xa5, 0x4a, 0xc2, 0xaf, 0x40, 0xa6, 0x58, 0xa7, 0x0e, 0x4d, 0xb6, 0xaf, 0xa1, 0x35, 0x79, 0x58, + 0xf4, 0x01, 0x41, 0x6b, 0x31, 0xda, 0x0d, 0xb7, 0x8f, 0xc9, 0x15, 0x6c, 0x0f, 0x96, 0x65, 0x68, + 0x8a, 0x0c, 0xc5, 0x63, 0x24, 0x32, 0xb5, 0x0d, 0x0b, 0x65, 0xbb, 0x55, 0xc7, 0xcd, 0xb7, 0x23, + 0xf3, 0x19, 0x3d, 0xd9, 0x4a, 0x6b, 0xdf, 0x52, 0x14, 0x9f, 0x1f, 0x6c, 0xf1, 0x2b, 0x11, 0xca, + 0xd4, 0x22, 0xcc, 0x32, 0x25, 0x86, 0x6a, 0x49, 0xc2, 0x4e, 0x5a, 0xfe, 0x13, 0x98, 0xd9, 0x26, + 0x9e, 0xaf, 0xd3, 0x70, 0xd8, 0xc5, 0x0a, 0xe9, 0x99, 0x72, 0x22, 0xe2, 0x1e, 0xcc, 0xf1, 0x40, + 0x10, 0xf6, 0xbc, 0x49, 0xe7, 0xdb, 0xdf, 0x56, 0x98, 0x5b, 0x10, 0x64, 0xd5, 0xf6, 0x38, 0x11, + 0xe6, 0xb4, 0x06, 0x2f, 0x19, 0xe6, 0xe2, 0x5a, 0xcf, 0x64, 0x98, 0x8b, 0xef, 0x09, 0x2b, 0xc1, + 0x6c, 0xa4, 0xb7, 0x0b, 0xdd, 0x15, 0xc1, 0x36, 0xb6, 0xe7, 0x2b, 0x26, 0x61, 0xd9, 0x13, 0x5a, + 0xed, 0xa7, 0x11, 0xdf, 0xe8, 0x95, 0xa8, 0xa3, 0x43, 0x19, 0xe5, 0xd4, 0xae, 0x2d, 0xa4, 0x97, + 0xac, 0xe2, 0x3a, 0xba, 0x12, 0x29, 0x56, 0x49, 0x62, 0xae, 0xf7, 0x3b, 0xa1, 0x35, 0xa9, 0x91, + 0xd8, 0xa6, 0xae, 0x5c, 0x3e, 0x71, 0x9c, 0x2b, 0x4d, 0xd9, 0x00, 0xf6, 0xeb, 0xa8, 0xd1, 0x0d, + 0x50, 0xbb, 0x63, 0xfa, 0x36, 0x40, 0x6f, 0x7a, 0xd9, 0xa5, 0x17, 0x00, 0xa5, 0x71, 0x09, 0x25, + 0x88, 0x92, 0xbb, 0x1b, 0x47, 0x27, 0xdc, 0xc9, 0x2a, 0x64, 0xa2, 0x7d, 0x3f, 0x52, 0xd2, 0x84, + 0x06, 0x26, 0x29, 0x69, 0x62, 0xc3, 0xd0, 0x97, 0x90, 0x89, 0x36, 0xfd, 0x48, 0xa2, 0x09, 0xdd, + 0x40, 0x89, 0x5b, 0xb1, 0x03, 0x0b, 0xfa, 0x06, 0x5e, 0x23, 0x6f, 0x72, 0x26, 0x33, 0xad, 0xb5, + 0xfa, 0x20, 0x11, 0x1a, 0x22, 0x5d, 0x45, 0x7d, 0xda, 0x8f, 0x69, 0x39, 0x62, 0xda, 0x57, 0xda, + 0x86, 0x6e, 0xa2, 0xfd, 0xb8, 0x2e, 0x23, 0xa9, 0x28, 0x85, 0x2f, 0xe1, 0x71, 0xa3, 0x03, 0xb7, + 0x51, 0xd4, 0x4d, 0x58, 0x4b, 0xa2, 0xb3, 0x05, 0x93, 0x4a, 0xbf, 0x11, 0xba, 0xa3, 0xa9, 0x49, + 0xb3, 0xf8, 0x9c, 0x26, 0x9c, 0x6e, 0xec, 0x65, 0x98, 0x52, 0xbb, 0x96, 0x12, 0xb9, 0x58, 0xe9, + 0xa7, 0xe1, 0x2b, 0xd9, 0xf4, 0x8c, 0xd4, 0x02, 0xe3, 0x66, 0x35, 0xaa, 0x1c, 0x8d, 0xa1, 0x64, + 0x91, 0x90, 0xaa, 0x9a, 0x6b, 0x58, 0x4a, 0x8e, 0x44, 0xf3, 0x2c, 0x26, 0xeb, 0xbf, 0x08, 0x9f, + 0xf0, 0xfb, 0xf4, 0x03, 0xbc, 0xd5, 0x6c, 0xa4, 0xcd, 0x0a, 0x29, 0x56, 0x12, 0xd3, 0x9a, 0x94, + 0x5b, 0x4b, 0x1a, 0xe6, 0x6a, 0xda, 0x87, 0xb9, 0xbe, 0x2e, 0x2b, 0x94, 0xd7, 0xfc, 0x71, 0x7f, + 0xbb, 0xd4, 0x80, 0xfb, 0xdf, 0x5c, 0x5f, 0x8b, 0x95, 0xa4, 0x96, 0xd4, 0x7c, 0x95, 0x48, 0xed, + 0x08, 0x16, 0x63, 0xdb, 0xae, 0x64, 0x7e, 0x38, 0xa8, 0x29, 0x2b, 0x91, 0xea, 0xcf, 0x00, 0xf5, + 0xb7, 0x48, 0xc9, 0x1b, 0x61, 0x62, 0x1b, 0x97, 0xbc, 0x11, 0x0e, 0xe8, 0xaf, 0xda, 0x87, 0x85, + 0xb8, 0xfe, 0x28, 0x64, 0x6a, 0xfa, 0x8c, 0xed, 0x6f, 0x8a, 0x09, 0x72, 0x96, 0x38, 0x94, 0x09, + 0xd4, 0x06, 0x74, 0x4b, 0x25, 0x0a, 0xff, 0x73, 0xd1, 0x03, 0xd7, 0xdf, 0xd5, 0x24, 0xf3, 0xe2, + 0x6b, 0xda, 0x9e, 0x06, 0xa4, 0x1b, 0xb3, 0x55, 0xe7, 0xac, 0xa5, 0x34, 0x20, 0xc9, 0x64, 0xa3, + 0xbf, 0xf3, 0x49, 0x3a, 0x80, 0xb8, 0x7e, 0xa5, 0x67, 0xb0, 0x20, 0x22, 0xa1, 0xda, 0xe6, 0x83, + 0xfa, 0x70, 0xc2, 0x2e, 0x24, 0xe9, 0x0c, 0x62, 0xfb, 0x82, 0x58, 0xb6, 0x4e, 0xff, 0xba, 0x89, + 0x92, 0xad, 0x2b, 0xfd, 0x37, 0x39, 0xbd, 0x55, 0x07, 0x7d, 0x4e, 0xb3, 0x75, 0xd6, 0x26, 0x9d, + 0x74, 0xd6, 0x97, 0x75, 0x4a, 0xa1, 0x19, 0x6c, 0x8a, 0xfa, 0x0b, 0x5d, 0x50, 0xa7, 0x7c, 0x7d, + 0x02, 0x4e, 0x91, 0xf4, 0x04, 0x5c, 0x65, 0x34, 0xf9, 0x86, 0x3c, 0xa5, 0x3e, 0x5e, 0x4a, 0x5d, + 0xc5, 0x3c, 0x8f, 0x4a, 0x5d, 0xc5, 0xbd, 0x76, 0xd2, 0x7c, 0xef, 0x48, 0xe4, 0x57, 0x21, 0xbd, + 0xbb, 0x03, 0x9f, 0x2b, 0x73, 0x6b, 0x83, 0xdf, 0xf8, 0x94, 0x2c, 0x32, 0x7c, 0x5d, 0x53, 0x93, + 0x98, 0xbe, 0xb7, 0x38, 0x35, 0x8c, 0xc6, 0x3c, 0xc8, 0x3d, 0xa5, 0xe5, 0xcf, 0x67, 0x95, 0xad, + 0x32, 0xff, 0x2b, 0x2b, 0xae, 0xd7, 0x57, 0xb8, 0x52, 0x7e, 0xb3, 0x33, 0xd4, 0x1e, 0x9b, 0xa2, + 0x21, 0xd6, 0x0a, 0xa8, 0x4a, 0x6b, 0x2f, 0x1a, 0x34, 0xa6, 0x76, 0x15, 0x43, 0x30, 0x17, 0x4f, + 0x90, 0xd6, 0xf1, 0xa8, 0xd3, 0x27, 0x76, 0xa0, 0xb3, 0x99, 0xc0, 0xc3, 0xa0, 0xd8, 0xc1, 0xb4, + 0x1a, 0x4f, 0x46, 0x70, 0x77, 0x9d, 0x81, 0x30, 0x8d, 0x55, 0x8b, 0x4f, 0xf7, 0xdf, 0x48, 0x63, + 0x1a, 0xa2, 0xd4, 0x98, 0x06, 0xbd, 0x9d, 0xc6, 0x22, 0x04, 0x75, 0x8d, 0xe9, 0x6c, 0x26, 0xf0, + 0x70, 0xbd, 0xc6, 0xe2, 0xc9, 0xdc, 0x54, 0x63, 0x5f, 0xd1, 0x48, 0xb1, 0x4b, 0x7f, 0xab, 0xf4, + 0x56, 0x3a, 0xcb, 0x8a, 0xbc, 0x47, 0x47, 0xad, 0x6d, 0xa2, 0xe7, 0xb4, 0xb7, 0x3b, 0x02, 0xbf, + 0x99, 0xde, 0x56, 0x93, 0x88, 0x52, 0xcd, 0x55, 0x60, 0x91, 0x69, 0x2e, 0xca, 0x6e, 0x22, 0x2f, + 0x89, 0x62, 0xef, 0x8a, 0xb0, 0x1b, 0x25, 0x75, 0x5b, 0xfd, 0x6d, 0x51, 0x13, 0x39, 0xf2, 0x48, + 0x56, 0xd3, 0xe8, 0x4f, 0x79, 0x74, 0x22, 0xa2, 0x5a, 0xa6, 0x4f, 0xaf, 0x15, 0x50, 0x85, 0xee, + 0x82, 0x0e, 0x1e, 0x94, 0x13, 0xc6, 0x93, 0xa1, 0x4a, 0xda, 0x13, 0xf1, 0x39, 0xc2, 0x53, 0xd2, + 0xda, 0xc9, 0x4c, 0xc9, 0x84, 0xf9, 0x86, 0xd2, 0x25, 0xa9, 0x88, 0xc5, 0x19, 0x96, 0x9f, 0x5e, + 0xa7, 0x99, 0xe8, 0xdf, 0x3f, 0x43, 0xff, 0x1f, 0xd2, 0x02, 0xf9, 0x7a, 0x85, 0x44, 0xb1, 0xf9, + 0x4b, 0xc3, 0x24, 0x57, 0x08, 0xe5, 0x20, 0x69, 0xa5, 0x44, 0xf6, 0xbf, 0x80, 0x49, 0xae, 0x86, + 0x81, 0x12, 0x24, 0xa7, 0x8b, 0x8b, 0xbb, 0x38, 0x88, 0xf9, 0x0b, 0x3a, 0xd7, 0x09, 0x13, 0xf7, + 0x07, 0x7b, 0x50, 0x8d, 0xf6, 0xbe, 0x27, 0xfd, 0xb5, 0xa3, 0x24, 0x92, 0xd7, 0xfe, 0xad, 0x25, + 0x42, 0xb7, 0x9a, 0x4c, 0xf7, 0x5a, 0xfc, 0x44, 0xe9, 0x0f, 0x60, 0x95, 0x96, 0x16, 0x6f, 0xcb, + 0x71, 0x72, 0xba, 0x7c, 0x27, 0x7c, 0x4d, 0x8e, 0xfe, 0xa1, 0xa5, 0x24, 0x62, 0xd7, 0xfd, 0x8d, + 0x27, 0x42, 0xb5, 0x9a, 0x48, 0xf5, 0x3a, 0xec, 0x01, 0xc1, 0x68, 0x85, 0xca, 0x7e, 0x4b, 0x6e, + 0x07, 0x7b, 0x9a, 0xc8, 0x5f, 0x7e, 0x4a, 0xce, 0xdb, 0xe2, 0xff, 0xb6, 0x14, 0xa1, 0x52, 0xed, + 0xa3, 0x92, 0x34, 0x7b, 0x50, 0xf0, 0xa1, 0xa2, 0xdd, 0x90, 0x9b, 0xe4, 0x2a, 0x6e, 0x5a, 0x36, + 0x52, 0x20, 0x25, 0xd5, 0xd4, 0xda, 0x04, 0x72, 0xd3, 0xea, 0xf3, 0xa5, 0x8f, 0x8a, 0x2c, 0xc6, + 0xab, 0x0d, 0x05, 0x4a, 0xed, 0x29, 0xb6, 0xd3, 0x20, 0x4a, 0x82, 0xa5, 0xca, 0xfb, 0x6e, 0xfd, + 0x42, 0x4d, 0x95, 0x95, 0x57, 0xe0, 0x9c, 0xfe, 0xac, 0xcc, 0x5d, 0x18, 0x7d, 0x5b, 0x56, 0x0b, + 0xdb, 0xea, 0xcb, 0xb6, 0x9a, 0x2a, 0xeb, 0x2f, 0xd6, 0x32, 0x55, 0xa6, 0x0b, 0xea, 0x94, 0xaf, + 0x4f, 0x95, 0x29, 0x92, 0x9e, 0x2a, 0xab, 0x8c, 0x26, 0xd7, 0xaa, 0xe7, 0x63, 0x3a, 0x76, 0x64, + 0xcd, 0x2f, 0xb9, 0x9b, 0x27, 0xa7, 0x17, 0x5e, 0x3f, 0x34, 0x4a, 0x99, 0x6f, 0xff, 0x63, 0xcd, + 0xf8, 0xf6, 0xb7, 0x6b, 0xc6, 0xbf, 0xfc, 0x76, 0xcd, 0xf8, 0xcd, 0x6f, 0xd7, 0x8c, 0xd3, 0x31, + 0x4a, 0x64, 0xf3, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x81, 0xc7, 0x32, 0x85, 0x50, 0x55, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -7286,6 +7349,8 @@ type AuthServiceClient interface { UpsertLock(ctx context.Context, in *types.LockV2, opts ...grpc.CallOption) (*empty.Empty, error) // DeleteLock deletes a lock. DeleteLock(ctx context.Context, in *DeleteLockRequest, opts ...grpc.CallOption) (*empty.Empty, error) + // StreamSessionEvents streams audit events from a given session recording. + StreamSessionEvents(ctx context.Context, in *StreamSessionEventsRequest, opts ...grpc.CallOption) (AuthService_StreamSessionEventsClient, error) } type authServiceClient struct { @@ -8418,6 +8483,38 @@ func (c *authServiceClient) DeleteLock(ctx context.Context, in *DeleteLockReques return out, nil } +func (c *authServiceClient) StreamSessionEvents(ctx context.Context, in *StreamSessionEventsRequest, opts ...grpc.CallOption) (AuthService_StreamSessionEventsClient, error) { + stream, err := c.cc.NewStream(ctx, &_AuthService_serviceDesc.Streams[7], "/proto.AuthService/StreamSessionEvents", opts...) + if err != nil { + return nil, err + } + x := &authServiceStreamSessionEventsClient{stream} + if err := x.ClientStream.SendMsg(in); err != nil { + return nil, err + } + if err := x.ClientStream.CloseSend(); err != nil { + return nil, err + } + return x, nil +} + +type AuthService_StreamSessionEventsClient interface { + Recv() (*events.OneOf, error) + grpc.ClientStream +} + +type authServiceStreamSessionEventsClient struct { + grpc.ClientStream +} + +func (x *authServiceStreamSessionEventsClient) Recv() (*events.OneOf, error) { + m := new(events.OneOf) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} + // AuthServiceServer is the server API for AuthService service. type AuthServiceServer interface { // SendKeepAlives allows node to send a stream of keep alive requests @@ -8659,6 +8756,8 @@ type AuthServiceServer interface { UpsertLock(context.Context, *types.LockV2) (*empty.Empty, error) // DeleteLock deletes a lock. DeleteLock(context.Context, *DeleteLockRequest) (*empty.Empty, error) + // StreamSessionEvents streams audit events from a given session recording. + StreamSessionEvents(*StreamSessionEventsRequest, AuthService_StreamSessionEventsServer) error } // UnimplementedAuthServiceServer can be embedded to have forward compatible implementations. @@ -8986,6 +9085,9 @@ func (*UnimplementedAuthServiceServer) UpsertLock(ctx context.Context, req *type func (*UnimplementedAuthServiceServer) DeleteLock(ctx context.Context, req *DeleteLockRequest) (*empty.Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method DeleteLock not implemented") } +func (*UnimplementedAuthServiceServer) StreamSessionEvents(req *StreamSessionEventsRequest, srv AuthService_StreamSessionEventsServer) error { + return status.Errorf(codes.Unimplemented, "method StreamSessionEvents not implemented") +} func RegisterAuthServiceServer(s *grpc.Server, srv AuthServiceServer) { s.RegisterService(&_AuthService_serviceDesc, srv) @@ -10963,6 +11065,27 @@ func _AuthService_DeleteLock_Handler(srv interface{}, ctx context.Context, dec f return interceptor(ctx, in, info, handler) } +func _AuthService_StreamSessionEvents_Handler(srv interface{}, stream grpc.ServerStream) error { + m := new(StreamSessionEventsRequest) + if err := stream.RecvMsg(m); err != nil { + return err + } + return srv.(AuthServiceServer).StreamSessionEvents(m, &authServiceStreamSessionEventsServer{stream}) +} + +type AuthService_StreamSessionEventsServer interface { + Send(*events.OneOf) error + grpc.ServerStream +} + +type authServiceStreamSessionEventsServer struct { + grpc.ServerStream +} + +func (x *authServiceStreamSessionEventsServer) Send(m *events.OneOf) error { + return x.ServerStream.SendMsg(m) +} + var _AuthService_serviceDesc = grpc.ServiceDesc{ ServiceName: "proto.AuthService", HandlerType: (*AuthServiceServer)(nil), @@ -11408,6 +11531,11 @@ var _AuthService_serviceDesc = grpc.ServiceDesc{ ServerStreams: true, ClientStreams: true, }, + { + StreamName: "StreamSessionEvents", + Handler: _AuthService_StreamSessionEvents_Handler, + ServerStreams: true, + }, }, Metadata: "authservice.proto", } @@ -16080,6 +16208,45 @@ func (m *IsMFARequiredRequest_Node) MarshalToSizedBuffer(dAtA []byte) (int, erro } return len(dAtA) - i, nil } +func (m *StreamSessionEventsRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *StreamSessionEventsRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *StreamSessionEventsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if m.StartIndex != 0 { + i = encodeVarintAuthservice(dAtA, i, uint64(m.StartIndex)) + i-- + dAtA[i] = 0x10 + } + if len(m.SessionID) > 0 { + i -= len(m.SessionID) + copy(dAtA[i:], m.SessionID) + i = encodeVarintAuthservice(dAtA, i, uint64(len(m.SessionID))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *NodeLogin) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -18900,6 +19067,25 @@ func (m *IsMFARequiredRequest_Node) Size() (n int) { } return n } +func (m *StreamSessionEventsRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.SessionID) + if l > 0 { + n += 1 + l + sovAuthservice(uint64(l)) + } + if m.StartIndex != 0 { + n += 1 + sovAuthservice(uint64(m.StartIndex)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *NodeLogin) Size() (n int) { if m == nil { return 0 @@ -29649,6 +29835,108 @@ func (m *IsMFARequiredRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *StreamSessionEventsRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: StreamSessionEventsRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: StreamSessionEventsRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SessionID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthAuthservice + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAuthservice + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SessionID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartIndex", wireType) + } + m.StartIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAuthservice + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartIndex |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipAuthservice(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthAuthservice + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *NodeLogin) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/api/client/proto/authservice.proto b/api/client/proto/authservice.proto index 8de3235fc6d14..552febef32a9e 100644 --- a/api/client/proto/authservice.proto +++ b/api/client/proto/authservice.proto @@ -807,6 +807,15 @@ message IsMFARequiredRequest { } } +// StreamSessionEventsRequest is a request containing needed data to fetch a session recording. +message StreamSessionEventsRequest { + // SessionID is the ID for a given session in an UUIDv4 format. + string SessionID = 1; + // StartIndex is the index of the event to resume the stream after. + // A StartIndex of 0 creates a new stream. + int32 StartIndex = 2; +} + // NodeLogin specifies an SSH node and OS login. message NodeLogin { // Node can be node's hostname or UUID. @@ -1196,4 +1205,7 @@ service AuthService { rpc UpsertLock(types.LockV2) returns (google.protobuf.Empty); // DeleteLock deletes a lock. rpc DeleteLock(DeleteLockRequest) returns (google.protobuf.Empty); + + // StreamSessionEvents streams audit events from a given session recording. + rpc StreamSessionEvents(StreamSessionEventsRequest) returns (stream events.OneOf); } diff --git a/e b/e index d0361b3348219..fccd41304ddb3 160000 --- a/e +++ b/e @@ -1 +1 @@ -Subproject commit d0361b3348219d8c541886111b01c4d7f3a74c65 +Subproject commit fccd41304ddb38831296e092d12d66d0d0ed5cc9 diff --git a/integration/integration_test.go b/integration/integration_test.go index c9b97ab14d11e..4de6297ebb4df 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -33,6 +33,7 @@ import ( "os/exec" "os/user" "path/filepath" + "reflect" "regexp" "runtime/pprof" "strconv" @@ -46,6 +47,7 @@ import ( apidefaults "github.com/gravitational/teleport/api/defaults" "github.com/gravitational/teleport/api/profile" "github.com/gravitational/teleport/api/types" + apievents "github.com/gravitational/teleport/api/types/events" apiutils "github.com/gravitational/teleport/api/utils" "github.com/gravitational/teleport/api/utils/keypaths" "github.com/gravitational/teleport/lib" @@ -209,6 +211,7 @@ func TestIntegrations(t *testing.T) { t.Run("TwoClustersTunnel", suite.bind(testTwoClustersTunnel)) t.Run("UUIDBasedProxy", suite.bind(testUUIDBasedProxy)) t.Run("WindowChange", suite.bind(testWindowChange)) + t.Run("SessionStreaming", suite.bind(testSessionStreaming)) } // testAuditOn creates a live session, records a bunch of data through it @@ -5457,3 +5460,68 @@ func TestTraitsPropagation(t *testing.T) { require.NoError(t, err) require.Equal(t, "hello leaf", strings.TrimSpace(outputLeaf)) } + +// testSessionStreaming tests streaming events from session recordings. +func testSessionStreaming(t *testing.T, suite *integrationTestSuite) { + ctx := context.Background() + sessionID := session.ID(uuid.New()) + teleport := suite.newTeleport(t, nil, true) + defer teleport.StopAll() + + api := teleport.GetSiteAPI(Site) + uploadStream, err := api.CreateAuditStream(ctx, sessionID) + require.Nil(t, err) + + generatedSession := events.GenerateTestSession(events.SessionParams{ + PrintEvents: 100, + SessionID: string(sessionID), + ServerID: "00000000-0000-0000-0000-000000000000", + }) + + for _, event := range generatedSession { + err := uploadStream.EmitAuditEvent(ctx, event) + require.NoError(t, err) + } + + err = uploadStream.Complete(ctx) + require.Nil(t, err) + start := time.Now() + + // retry in case of error +outer: + for time.Since(start) < time.Minute*5 { + time.Sleep(time.Second * 5) + + receivedSession := make([]apievents.AuditEvent, 0) + sessionPlayback, e := api.StreamSessionEvents(ctx, sessionID, 0) + + inner: + for { + select { + case event, more := <-sessionPlayback: + if !more { + break inner + } + + receivedSession = append(receivedSession, event) + case <-ctx.Done(): + require.Nil(t, ctx.Err()) + case err := <-e: + require.Nil(t, err) + case <-time.After(time.Minute * 5): + t.FailNow() + } + } + + for i := range generatedSession { + receivedSession[i].SetClusterName("") + if !reflect.DeepEqual(generatedSession[i], receivedSession[i]) { + continue outer + } + } + + return + } + + t.FailNow() +} diff --git a/lib/auth/auth_with_roles.go b/lib/auth/auth_with_roles.go index fdd51c8b4bec2..9e990324abe30 100644 --- a/lib/auth/auth_with_roles.go +++ b/lib/auth/auth_with_roles.go @@ -3148,6 +3148,19 @@ func (a *ServerWithRoles) DeleteAllLocks(context.Context) error { return trace.NotImplemented(notImplementedMessage) } +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (a *ServerWithRoles) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + if err := a.action(apidefaults.Namespace, types.KindSession, types.VerbList); err != nil { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + e <- trace.Wrap(err) + return c, e + } + + return a.alog.StreamSessionEvents(ctx, sessionID, startIndex) +} + // NewAdminAuthServer returns auth server authorized as admin, // used for auth server cached access func NewAdminAuthServer(authServer *Server, sessions session.Service, alog events.IAuditLog) (ClientI, error) { diff --git a/lib/auth/clt.go b/lib/auth/clt.go index d55d1936bee36..eea0c2d240b2d 100644 --- a/lib/auth/clt.go +++ b/lib/auth/clt.go @@ -1447,6 +1447,13 @@ func (c *Client) GetSessionEvents(namespace string, sid session.ID, afterN int, return retval, nil } +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (c *Client) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + return c.APIClient.StreamSessionEvents(ctx, string(sessionID), startIndex) +} + // SearchEvents allows searching for audit events with pagination support. func (c *Client) SearchEvents(fromUTC, toUTC time.Time, namespace string, eventTypes []string, limit int, order types.EventOrder, startKey string) ([]apievents.AuditEvent, string, error) { events, lastKey, err := c.APIClient.SearchEvents(context.TODO(), fromUTC, toUTC, namespace, eventTypes, limit, order, startKey) diff --git a/lib/auth/grpcserver.go b/lib/auth/grpcserver.go index 8e33d15609a7f..ffa8fececff08 100644 --- a/lib/auth/grpcserver.go +++ b/lib/auth/grpcserver.go @@ -2663,6 +2663,38 @@ func (g *GRPCServer) ResetAuthPreference(ctx context.Context, _ *empty.Empty) (* return &empty.Empty{}, nil } +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (g *GRPCServer) StreamSessionEvents(req *proto.StreamSessionEventsRequest, stream proto.AuthService_StreamSessionEventsServer) error { + auth, err := g.authenticate(stream.Context()) + if err != nil { + return trace.Wrap(err) + } + + c, e := auth.ServerWithRoles.StreamSessionEvents(stream.Context(), session.ID(req.SessionID), int64(req.StartIndex)) + + for { + select { + case event, more := <-c: + if !more { + return nil + } + + oneOf, err := apievents.ToOneOf(event) + if err != nil { + return trail.ToGRPC(trace.Wrap(err)) + } + + if err := stream.Send(oneOf); err != nil { + return trail.ToGRPC(trace.Wrap(err)) + } + case err := <-e: + return trail.ToGRPC(trace.Wrap(err)) + } + } +} + // GetEvents searches for events on the backend and sends them back in a response. func (g *GRPCServer) GetEvents(ctx context.Context, req *proto.GetEventsRequest) (*proto.Events, error) { auth, err := g.authenticate(ctx) diff --git a/lib/events/api.go b/lib/events/api.go index 6c5cf4c69be91..5eca8bed97308 100644 --- a/lib/events/api.go +++ b/lib/events/api.go @@ -614,6 +614,11 @@ type IAuditLog interface { // WaitForDelivery waits for resources to be released and outstanding requests to // complete after calling Close method WaitForDelivery(context.Context) error + + // StreamSessionEvents streams all events from a given session recording. An error is returned on the first + // channel if one is encountered. Otherwise it is simply closed when the stream ends. + // The event channel is not closed on error to prevent race conditions in downstream select statements. + StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) } // EventFields instance is attached to every logged event diff --git a/lib/events/auditlog.go b/lib/events/auditlog.go index 0204029d9f492..7addfd48d75fb 100644 --- a/lib/events/auditlog.go +++ b/lib/events/auditlog.go @@ -1042,6 +1042,86 @@ func (l *AuditLog) SearchSessionEvents(fromUTC, toUTC time.Time, limit int, orde return l.localLog.SearchSessionEvents(fromUTC, toUTC, limit, order, startKey) } +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (l *AuditLog) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + l.log.Debugf("StreamSessionEvents(%v)", sessionID) + e := make(chan error, 1) + c := make(chan apievents.AuditEvent) + + tarballPath := filepath.Join(l.playbackDir, string(sessionID)+".stream.tar") + downloadCtx, cancel := l.createOrGetDownload(tarballPath) + + // Wait until another in progress download finishes and use it's tarball. + if cancel == nil { + l.log.Debugf("Another download is in progress for %v, waiting until it gets completed.", sessionID) + select { + case <-downloadCtx.Done(): + case <-l.ctx.Done(): + e <- trace.BadParameter("audit log is closing, aborting the download") + return c, e + } + } + defer cancel() + rawSession, err := os.OpenFile(tarballPath, os.O_CREATE|os.O_RDWR|os.O_TRUNC, 0640) + if err != nil { + e <- trace.Wrap(err) + return c, e + } + + start := time.Now() + if err := l.UploadHandler.Download(l.ctx, sessionID, rawSession); err != nil { + // remove partially downloaded tarball + if rmErr := os.Remove(tarballPath); rmErr != nil { + l.log.WithError(rmErr).Warningf("Failed to remove file %v.", tarballPath) + } + + e <- trace.Wrap(err) + return c, e + } + + l.log.WithField("duration", time.Since(start)).Debugf("Downloaded %v to %v.", sessionID, tarballPath) + _, err = rawSession.Seek(0, 0) + if err != nil { + e <- trace.Wrap(err) + return c, e + } + + if err != nil { + e <- trace.Wrap(err) + return c, e + } + + protoReader := NewProtoReader(rawSession) + + go func() { + for { + if ctx.Err() != nil { + e <- trace.Wrap(ctx.Err()) + break + } + + event, err := protoReader.Read(ctx) + if err != nil { + if err != io.EOF { + e <- trace.Wrap(err) + } else { + close(c) + } + + break + } + + if event.GetIndex() >= startIndex { + c <- event + } + } + }() + + return c, e +} + // getLocalLog returns the local (file based) audit log. func (l *AuditLog) getLocalLog() IAuditLog { l.RLock() @@ -1236,3 +1316,10 @@ func (a *closedLogger) WaitForDelivery(context.Context) error { func (a *closedLogger) Close() error { return trace.NotImplemented(loggerClosedMessage) } + +func (a *closedLogger) StreamSessionEvents(_ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + e <- trace.NotImplemented(loggerClosedMessage) + + return c, e +} diff --git a/lib/events/discard.go b/lib/events/discard.go index 48ce5de8b56d3..383135125c5d2 100644 --- a/lib/events/discard.go +++ b/lib/events/discard.go @@ -59,10 +59,14 @@ func (d *DiscardAuditLog) SearchEvents(fromUTC, toUTC time.Time, namespace strin func (d *DiscardAuditLog) SearchSessionEvents(fromUTC time.Time, toUTC time.Time, limit int, order types.EventOrder, startKey string) ([]apievents.AuditEvent, string, error) { return make([]apievents.AuditEvent, 0), "", nil } - func (d *DiscardAuditLog) UploadSessionRecording(SessionRecording) error { return nil } func (d *DiscardAuditLog) EmitAuditEvent(ctx context.Context, event apievents.AuditEvent) error { return nil } +func (d *DiscardAuditLog) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + close(c) + return c, e +} diff --git a/lib/events/dynamoevents/dynamoevents.go b/lib/events/dynamoevents/dynamoevents.go index 278d581bb225a..3aedc2b15874a 100644 --- a/lib/events/dynamoevents/dynamoevents.go +++ b/lib/events/dynamoevents/dynamoevents.go @@ -1435,3 +1435,12 @@ func convertError(err error) error { return err } } + +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (l *Log) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + e <- trace.NotImplemented("not implemented") + return c, e +} diff --git a/lib/events/filelog.go b/lib/events/filelog.go index f1783261d7cca..46a44b7750aa3 100644 --- a/lib/events/filelog.go +++ b/lib/events/filelog.go @@ -640,6 +640,15 @@ func (l *FileLog) findInFile(path string, eventFilter []string) ([]EventFields, return retval, nil } +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (l *FileLog) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + e <- trace.NotImplemented("not implemented") + return c, e +} + type eventFile struct { os.FileInfo path string diff --git a/lib/events/firestoreevents/firestoreevents.go b/lib/events/firestoreevents/firestoreevents.go index 8830a2031e4e5..55de71efa4f7e 100644 --- a/lib/events/firestoreevents/firestoreevents.go +++ b/lib/events/firestoreevents/firestoreevents.go @@ -671,3 +671,12 @@ func (l *Log) purgeExpiredEvents() error { } } } + +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (l *Log) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + e <- trace.NotImplemented("not implemented") + return c, e +} diff --git a/lib/events/multilog.go b/lib/events/multilog.go index 80166a63441bb..eda90b817d4d6 100644 --- a/lib/events/multilog.go +++ b/lib/events/multilog.go @@ -161,3 +161,38 @@ func (m *MultiLog) SearchSessionEvents(fromUTC, toUTC time.Time, limit int, orde } return events, lastKey, err } + +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (m *MultiLog) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + + go func() { + loggers: + for _, log := range m.loggers { + subCh, subErrCh := log.StreamSessionEvents(ctx, sessionID, startIndex) + + for { + select { + case event, more := <-subCh: + if !more { + close(c) + return + } + + c <- event + case err := <-subErrCh: + if !trace.IsNotImplemented(err) { + e <- trace.Wrap(err) + return + } + + continue loggers + } + } + } + }() + + return c, e +} diff --git a/lib/events/writer.go b/lib/events/writer.go index 344b866c5f33c..3d37799e3129f 100644 --- a/lib/events/writer.go +++ b/lib/events/writer.go @@ -131,3 +131,12 @@ func (w *WriterLog) SearchSessionEvents(fromUTC, toUTC time.Time, limit int, ord func (w *WriterLog) WaitForDelivery(context.Context) error { return nil } + +// StreamSessionEvents streams all events from a given session recording. An error is returned on the first +// channel if one is encountered. Otherwise it is simply closed when the stream ends. +// The event channel is not closed on error to prevent race conditions in downstream select statements. +func (w *WriterLog) StreamSessionEvents(ctx context.Context, sessionID session.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + e <- trace.NotImplemented(loggerClosedMessage) + return c, e +} diff --git a/lib/srv/exec_test.go b/lib/srv/exec_test.go index aaf3a6d07a7d4..820b46ff22a6a 100644 --- a/lib/srv/exec_test.go +++ b/lib/srv/exec_test.go @@ -548,6 +548,12 @@ func (a *fakeLog) SearchSessionEvents(fromUTC time.Time, toUTC time.Time, limit return nil, "", trace.NotFound("") } +func (a *fakeLog) StreamSessionEvents(ctx context.Context, sessionID rsession.ID, startIndex int64) (chan apievents.AuditEvent, chan error) { + c, e := make(chan apievents.AuditEvent), make(chan error, 1) + e <- trace.NotImplemented("not implemented") + return c, e +} + func (a *fakeLog) WaitForDelivery(context.Context) error { return trace.NotImplemented("not implemented") }