diff --git a/api/proto/teleport/legacy/types/events/events.proto b/api/proto/teleport/legacy/types/events/events.proto index 04028c33c499c..0967c408522df 100644 --- a/api/proto/teleport/legacy/types/events/events.proto +++ b/api/proto/teleport/legacy/types/events/events.proto @@ -172,6 +172,31 @@ message SAMLIdPServiceProviderMetadata { string ServiceProviderShortcut = 2 [(gogoproto.jsontag) = "service_provider_shortcut,omitempty"]; } +// OktaResourcesUpdatedMetadata contains common metadata for Okta resources updated events. +message OktaResourcesUpdatedMetadata { + // Added is the number of resources added. + int32 Added = 1 [(gogoproto.jsontag) = "added"]; + // Updated is the number of resources updated. + int32 Updated = 2 [(gogoproto.jsontag) = "updated"]; + // Deleted is the number of resources deleted. + int32 Deleted = 3 [(gogoproto.jsontag) = "deleted"]; +} + +// OktaAssignmentMetadata contains common metadata for Okta assignment events. +message OktaAssignmentMetadata { + // Source is the source of the Okta assignment. + string Source = 1 [(gogoproto.jsontag) = "source,omitempty"]; + + // User is the user the Okta assignment is for. + string User = 2 [(gogoproto.jsontag) = "user,omitempty"]; + + // StartingStatus is the starting status of the assignment. + string StartingStatus = 3 [(gogoproto.jsontag) = "starting_status,omitempty"]; + + // EndingStatus is the ending status of the assignment. + string EndingStatus = 4 [(gogoproto.jsontag) = "ending_status,omitempty"]; +} + // SessionStart is a session start event message SessionStart { // Metadata is a common event metadata @@ -3278,6 +3303,9 @@ message OneOf { events.SAMLIdPServiceProviderDelete SAMLIdPServiceProviderDelete = 118; events.SAMLIdPServiceProviderDeleteAll SAMLIdPServiceProviderDeleteAll = 119; events.DeviceEvent2 DeviceEvent2 = 121; + events.OktaResourcesUpdate OktaResourcesUpdate = 122; + events.OktaSyncFailure OktaSyncFailure = 123; + events.OktaAssignmentResult OktaAssignmentResult = 124; } reserved 120; // OpenSearchRequest not backported. @@ -4609,3 +4637,89 @@ message SAMLIdPServiceProviderDeleteAll { (gogoproto.jsontag) = "" ]; } + +// OktaResourcesUpdate is emitted when Okta related resources have been updated. +message OktaResourcesUpdate { + // Metadata is common event metadata + Metadata Metadata = 1 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; + + // Server is a common server metadata. + ServerMetadata Server = 2 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; + + // Updated is common metadata related to Okta resources being updated. + OktaResourcesUpdatedMetadata Updated = 3 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; +} + +// OktaSyncFailure is emitted when an Okta synchronization attempt has failed. +message OktaSyncFailure { + // Metadata is common event metadata + Metadata Metadata = 1 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; + + // Server is a common server metadata. + ServerMetadata Server = 2 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; + + // Status contains error information for the synchronization failure. + Status Status = 3 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; +} + +// OktaAssignmentResult is emitted when an Okta assignment processing or cleanup was attempted. +message OktaAssignmentResult { + // Metadata is common event metadata + Metadata Metadata = 1 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; + + // Server is a common server metadata. + ServerMetadata Server = 2 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; + + // ResourceMetadata is common resource event metadata + ResourceMetadata Resource = 3 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; + + // Status indicates whether the assignment processing was successful. + Status Status = 4 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; + + // OktaAssignmentMetadata is common Okta assignment metadata. + OktaAssignmentMetadata OktaAssignment = 5 [ + (gogoproto.nullable) = false, + (gogoproto.embed) = true, + (gogoproto.jsontag) = "" + ]; +} diff --git a/api/types/events/events.pb.go b/api/types/events/events.pb.go index 7bb66eee4a2ff..7dce1bc71b6a3 100644 --- a/api/types/events/events.pb.go +++ b/api/types/events/events.pb.go @@ -236,7 +236,7 @@ func (x SessionNetwork_NetworkOperation) String() string { } func (SessionNetwork_NetworkOperation) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{26, 0} + return fileDescriptor_007ba1c3d6266d56, []int{28, 0} } // Metadata is a common event metadata @@ -681,6 +681,100 @@ func (m *SAMLIdPServiceProviderMetadata) XXX_DiscardUnknown() { var xxx_messageInfo_SAMLIdPServiceProviderMetadata proto.InternalMessageInfo +// OktaResourcesUpdatedMetadata contains common metadata for Okta resources updated events. +type OktaResourcesUpdatedMetadata struct { + // Added is the number of resources added. + Added int32 `protobuf:"varint,1,opt,name=Added,proto3" json:"added"` + // Updated is the number of resources updated. + Updated int32 `protobuf:"varint,2,opt,name=Updated,proto3" json:"updated"` + // Deleted is the number of resources deleted. + Deleted int32 `protobuf:"varint,3,opt,name=Deleted,proto3" json:"deleted"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *OktaResourcesUpdatedMetadata) Reset() { *m = OktaResourcesUpdatedMetadata{} } +func (m *OktaResourcesUpdatedMetadata) String() string { return proto.CompactTextString(m) } +func (*OktaResourcesUpdatedMetadata) ProtoMessage() {} +func (*OktaResourcesUpdatedMetadata) Descriptor() ([]byte, []int) { + return fileDescriptor_007ba1c3d6266d56, []int{9} +} +func (m *OktaResourcesUpdatedMetadata) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *OktaResourcesUpdatedMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_OktaResourcesUpdatedMetadata.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 *OktaResourcesUpdatedMetadata) XXX_Merge(src proto.Message) { + xxx_messageInfo_OktaResourcesUpdatedMetadata.Merge(m, src) +} +func (m *OktaResourcesUpdatedMetadata) XXX_Size() int { + return m.Size() +} +func (m *OktaResourcesUpdatedMetadata) XXX_DiscardUnknown() { + xxx_messageInfo_OktaResourcesUpdatedMetadata.DiscardUnknown(m) +} + +var xxx_messageInfo_OktaResourcesUpdatedMetadata proto.InternalMessageInfo + +// OktaAssignmentMetadata contains common metadata for Okta assignment events. +type OktaAssignmentMetadata struct { + // Source is the source of the Okta assignment. + Source string `protobuf:"bytes,1,opt,name=Source,proto3" json:"source,omitempty"` + // User is the user the Okta assignment is for. + User string `protobuf:"bytes,2,opt,name=User,proto3" json:"user,omitempty"` + // StartingStatus is the starting status of the assignment. + StartingStatus string `protobuf:"bytes,3,opt,name=StartingStatus,proto3" json:"starting_status,omitempty"` + // EndingStatus is the ending status of the assignment. + EndingStatus string `protobuf:"bytes,4,opt,name=EndingStatus,proto3" json:"ending_status,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *OktaAssignmentMetadata) Reset() { *m = OktaAssignmentMetadata{} } +func (m *OktaAssignmentMetadata) String() string { return proto.CompactTextString(m) } +func (*OktaAssignmentMetadata) ProtoMessage() {} +func (*OktaAssignmentMetadata) Descriptor() ([]byte, []int) { + return fileDescriptor_007ba1c3d6266d56, []int{10} +} +func (m *OktaAssignmentMetadata) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *OktaAssignmentMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_OktaAssignmentMetadata.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 *OktaAssignmentMetadata) XXX_Merge(src proto.Message) { + xxx_messageInfo_OktaAssignmentMetadata.Merge(m, src) +} +func (m *OktaAssignmentMetadata) XXX_Size() int { + return m.Size() +} +func (m *OktaAssignmentMetadata) XXX_DiscardUnknown() { + xxx_messageInfo_OktaAssignmentMetadata.DiscardUnknown(m) +} + +var xxx_messageInfo_OktaAssignmentMetadata proto.InternalMessageInfo + // SessionStart is a session start event type SessionStart struct { // Metadata is a common event metadata @@ -713,7 +807,7 @@ func (m *SessionStart) Reset() { *m = SessionStart{} } func (m *SessionStart) String() string { return proto.CompactTextString(m) } func (*SessionStart) ProtoMessage() {} func (*SessionStart) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{9} + return fileDescriptor_007ba1c3d6266d56, []int{11} } func (m *SessionStart) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -766,7 +860,7 @@ func (m *SessionJoin) Reset() { *m = SessionJoin{} } func (m *SessionJoin) String() string { return proto.CompactTextString(m) } func (*SessionJoin) ProtoMessage() {} func (*SessionJoin) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{10} + return fileDescriptor_007ba1c3d6266d56, []int{12} } func (m *SessionJoin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -820,7 +914,7 @@ func (m *SessionPrint) Reset() { *m = SessionPrint{} } func (m *SessionPrint) String() string { return proto.CompactTextString(m) } func (*SessionPrint) ProtoMessage() {} func (*SessionPrint) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{11} + return fileDescriptor_007ba1c3d6266d56, []int{13} } func (m *SessionPrint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -867,7 +961,7 @@ func (m *DesktopRecording) Reset() { *m = DesktopRecording{} } func (m *DesktopRecording) String() string { return proto.CompactTextString(m) } func (*DesktopRecording) ProtoMessage() {} func (*DesktopRecording) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{12} + return fileDescriptor_007ba1c3d6266d56, []int{14} } func (m *DesktopRecording) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -920,7 +1014,7 @@ func (m *DesktopClipboardReceive) Reset() { *m = DesktopClipboardReceive func (m *DesktopClipboardReceive) String() string { return proto.CompactTextString(m) } func (*DesktopClipboardReceive) ProtoMessage() {} func (*DesktopClipboardReceive) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{13} + return fileDescriptor_007ba1c3d6266d56, []int{15} } func (m *DesktopClipboardReceive) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -973,7 +1067,7 @@ func (m *DesktopClipboardSend) Reset() { *m = DesktopClipboardSend{} } func (m *DesktopClipboardSend) String() string { return proto.CompactTextString(m) } func (*DesktopClipboardSend) ProtoMessage() {} func (*DesktopClipboardSend) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{14} + return fileDescriptor_007ba1c3d6266d56, []int{16} } func (m *DesktopClipboardSend) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1030,7 +1124,7 @@ func (m *DesktopSharedDirectoryStart) Reset() { *m = DesktopSharedDirect func (m *DesktopSharedDirectoryStart) String() string { return proto.CompactTextString(m) } func (*DesktopSharedDirectoryStart) ProtoMessage() {} func (*DesktopSharedDirectoryStart) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{15} + return fileDescriptor_007ba1c3d6266d56, []int{17} } func (m *DesktopSharedDirectoryStart) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1094,7 +1188,7 @@ func (m *DesktopSharedDirectoryRead) Reset() { *m = DesktopSharedDirecto func (m *DesktopSharedDirectoryRead) String() string { return proto.CompactTextString(m) } func (*DesktopSharedDirectoryRead) ProtoMessage() {} func (*DesktopSharedDirectoryRead) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{16} + return fileDescriptor_007ba1c3d6266d56, []int{18} } func (m *DesktopSharedDirectoryRead) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1158,7 +1252,7 @@ func (m *DesktopSharedDirectoryWrite) Reset() { *m = DesktopSharedDirect func (m *DesktopSharedDirectoryWrite) String() string { return proto.CompactTextString(m) } func (*DesktopSharedDirectoryWrite) ProtoMessage() {} func (*DesktopSharedDirectoryWrite) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{17} + return fileDescriptor_007ba1c3d6266d56, []int{19} } func (m *DesktopSharedDirectoryWrite) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1212,7 +1306,7 @@ func (m *SessionReject) Reset() { *m = SessionReject{} } func (m *SessionReject) String() string { return proto.CompactTextString(m) } func (*SessionReject) ProtoMessage() {} func (*SessionReject) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{18} + return fileDescriptor_007ba1c3d6266d56, []int{20} } func (m *SessionReject) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1255,7 +1349,7 @@ func (m *SessionConnect) Reset() { *m = SessionConnect{} } func (m *SessionConnect) String() string { return proto.CompactTextString(m) } func (*SessionConnect) ProtoMessage() {} func (*SessionConnect) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{19} + return fileDescriptor_007ba1c3d6266d56, []int{21} } func (m *SessionConnect) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1312,7 +1406,7 @@ func (m *Resize) Reset() { *m = Resize{} } func (m *Resize) String() string { return proto.CompactTextString(m) } func (*Resize) ProtoMessage() {} func (*Resize) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{20} + return fileDescriptor_007ba1c3d6266d56, []int{22} } func (m *Resize) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1383,7 +1477,7 @@ func (m *SessionEnd) Reset() { *m = SessionEnd{} } func (m *SessionEnd) String() string { return proto.CompactTextString(m) } func (*SessionEnd) ProtoMessage() {} func (*SessionEnd) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{21} + return fileDescriptor_007ba1c3d6266d56, []int{23} } func (m *SessionEnd) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1429,7 +1523,7 @@ func (m *BPFMetadata) Reset() { *m = BPFMetadata{} } func (m *BPFMetadata) String() string { return proto.CompactTextString(m) } func (*BPFMetadata) ProtoMessage() {} func (*BPFMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{22} + return fileDescriptor_007ba1c3d6266d56, []int{24} } func (m *BPFMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1475,7 +1569,7 @@ func (m *Status) Reset() { *m = Status{} } func (m *Status) String() string { return proto.CompactTextString(m) } func (*Status) ProtoMessage() {} func (*Status) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{23} + return fileDescriptor_007ba1c3d6266d56, []int{25} } func (m *Status) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1534,7 +1628,7 @@ func (m *SessionCommand) Reset() { *m = SessionCommand{} } func (m *SessionCommand) String() string { return proto.CompactTextString(m) } func (*SessionCommand) ProtoMessage() {} func (*SessionCommand) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{24} + return fileDescriptor_007ba1c3d6266d56, []int{26} } func (m *SessionCommand) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1590,7 +1684,7 @@ func (m *SessionDisk) Reset() { *m = SessionDisk{} } func (m *SessionDisk) String() string { return proto.CompactTextString(m) } func (*SessionDisk) ProtoMessage() {} func (*SessionDisk) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{25} + return fileDescriptor_007ba1c3d6266d56, []int{27} } func (m *SessionDisk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1652,7 +1746,7 @@ func (m *SessionNetwork) Reset() { *m = SessionNetwork{} } func (m *SessionNetwork) String() string { return proto.CompactTextString(m) } func (*SessionNetwork) ProtoMessage() {} func (*SessionNetwork) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{26} + return fileDescriptor_007ba1c3d6266d56, []int{28} } func (m *SessionNetwork) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1706,7 +1800,7 @@ func (m *SessionData) Reset() { *m = SessionData{} } func (m *SessionData) String() string { return proto.CompactTextString(m) } func (*SessionData) ProtoMessage() {} func (*SessionData) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{27} + return fileDescriptor_007ba1c3d6266d56, []int{29} } func (m *SessionData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1756,7 +1850,7 @@ func (m *SessionLeave) Reset() { *m = SessionLeave{} } func (m *SessionLeave) String() string { return proto.CompactTextString(m) } func (*SessionLeave) ProtoMessage() {} func (*SessionLeave) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{28} + return fileDescriptor_007ba1c3d6266d56, []int{30} } func (m *SessionLeave) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1812,7 +1906,7 @@ func (m *UserLogin) Reset() { *m = UserLogin{} } func (m *UserLogin) String() string { return proto.CompactTextString(m) } func (*UserLogin) ProtoMessage() {} func (*UserLogin) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{29} + return fileDescriptor_007ba1c3d6266d56, []int{31} } func (m *UserLogin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1862,7 +1956,7 @@ func (m *ResourceMetadata) Reset() { *m = ResourceMetadata{} } func (m *ResourceMetadata) String() string { return proto.CompactTextString(m) } func (*ResourceMetadata) ProtoMessage() {} func (*ResourceMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{30} + return fileDescriptor_007ba1c3d6266d56, []int{32} } func (m *ResourceMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1912,7 +2006,7 @@ func (m *UserCreate) Reset() { *m = UserCreate{} } func (m *UserCreate) String() string { return proto.CompactTextString(m) } func (*UserCreate) ProtoMessage() {} func (*UserCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{31} + return fileDescriptor_007ba1c3d6266d56, []int{33} } func (m *UserCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1958,7 +2052,7 @@ func (m *UserDelete) Reset() { *m = UserDelete{} } func (m *UserDelete) String() string { return proto.CompactTextString(m) } func (*UserDelete) ProtoMessage() {} func (*UserDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{32} + return fileDescriptor_007ba1c3d6266d56, []int{34} } func (m *UserDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2002,7 +2096,7 @@ func (m *UserPasswordChange) Reset() { *m = UserPasswordChange{} } func (m *UserPasswordChange) String() string { return proto.CompactTextString(m) } func (*UserPasswordChange) ProtoMessage() {} func (*UserPasswordChange) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{33} + return fileDescriptor_007ba1c3d6266d56, []int{35} } func (m *UserPasswordChange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2071,7 +2165,7 @@ func (m *AccessRequestCreate) Reset() { *m = AccessRequestCreate{} } func (m *AccessRequestCreate) String() string { return proto.CompactTextString(m) } func (*AccessRequestCreate) ProtoMessage() {} func (*AccessRequestCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{34} + return fileDescriptor_007ba1c3d6266d56, []int{36} } func (m *AccessRequestCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2125,7 +2219,7 @@ func (m *ResourceID) Reset() { *m = ResourceID{} } func (m *ResourceID) String() string { return proto.CompactTextString(m) } func (*ResourceID) ProtoMessage() {} func (*ResourceID) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{35} + return fileDescriptor_007ba1c3d6266d56, []int{37} } func (m *ResourceID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2171,7 +2265,7 @@ func (m *AccessRequestDelete) Reset() { *m = AccessRequestDelete{} } func (m *AccessRequestDelete) String() string { return proto.CompactTextString(m) } func (*AccessRequestDelete) ProtoMessage() {} func (*AccessRequestDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{36} + return fileDescriptor_007ba1c3d6266d56, []int{38} } func (m *AccessRequestDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2221,7 +2315,7 @@ func (m *PortForward) Reset() { *m = PortForward{} } func (m *PortForward) String() string { return proto.CompactTextString(m) } func (*PortForward) ProtoMessage() {} func (*PortForward) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{37} + return fileDescriptor_007ba1c3d6266d56, []int{39} } func (m *PortForward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2269,7 +2363,7 @@ func (m *X11Forward) Reset() { *m = X11Forward{} } func (m *X11Forward) String() string { return proto.CompactTextString(m) } func (*X11Forward) ProtoMessage() {} func (*X11Forward) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{38} + return fileDescriptor_007ba1c3d6266d56, []int{40} } func (m *X11Forward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2315,7 +2409,7 @@ func (m *CommandMetadata) Reset() { *m = CommandMetadata{} } func (m *CommandMetadata) String() string { return proto.CompactTextString(m) } func (*CommandMetadata) ProtoMessage() {} func (*CommandMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{39} + return fileDescriptor_007ba1c3d6266d56, []int{41} } func (m *CommandMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2372,7 +2466,7 @@ func (m *Exec) Reset() { *m = Exec{} } func (m *Exec) String() string { return proto.CompactTextString(m) } func (*Exec) ProtoMessage() {} func (*Exec) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{40} + return fileDescriptor_007ba1c3d6266d56, []int{42} } func (m *Exec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2428,7 +2522,7 @@ func (m *SCP) Reset() { *m = SCP{} } func (m *SCP) String() string { return proto.CompactTextString(m) } func (*SCP) ProtoMessage() {} func (*SCP) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{41} + return fileDescriptor_007ba1c3d6266d56, []int{43} } func (m *SCP) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2480,7 +2574,7 @@ func (m *SFTPAttributes) Reset() { *m = SFTPAttributes{} } func (m *SFTPAttributes) String() string { return proto.CompactTextString(m) } func (*SFTPAttributes) ProtoMessage() {} func (*SFTPAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{42} + return fileDescriptor_007ba1c3d6266d56, []int{44} } func (m *SFTPAttributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2547,7 +2641,7 @@ func (m *SFTP) Reset() { *m = SFTP{} } func (m *SFTP) String() string { return proto.CompactTextString(m) } func (*SFTP) ProtoMessage() {} func (*SFTP) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{43} + return fileDescriptor_007ba1c3d6266d56, []int{45} } func (m *SFTP) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2597,7 +2691,7 @@ func (m *Subsystem) Reset() { *m = Subsystem{} } func (m *Subsystem) String() string { return proto.CompactTextString(m) } func (*Subsystem) ProtoMessage() {} func (*Subsystem) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{44} + return fileDescriptor_007ba1c3d6266d56, []int{46} } func (m *Subsystem) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2649,7 +2743,7 @@ func (m *ClientDisconnect) Reset() { *m = ClientDisconnect{} } func (m *ClientDisconnect) String() string { return proto.CompactTextString(m) } func (*ClientDisconnect) ProtoMessage() {} func (*ClientDisconnect) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{45} + return fileDescriptor_007ba1c3d6266d56, []int{47} } func (m *ClientDisconnect) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2697,7 +2791,7 @@ func (m *AuthAttempt) Reset() { *m = AuthAttempt{} } func (m *AuthAttempt) String() string { return proto.CompactTextString(m) } func (*AuthAttempt) ProtoMessage() {} func (*AuthAttempt) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{46} + return fileDescriptor_007ba1c3d6266d56, []int{48} } func (m *AuthAttempt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2743,7 +2837,7 @@ func (m *UserTokenCreate) Reset() { *m = UserTokenCreate{} } func (m *UserTokenCreate) String() string { return proto.CompactTextString(m) } func (*UserTokenCreate) ProtoMessage() {} func (*UserTokenCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{47} + return fileDescriptor_007ba1c3d6266d56, []int{49} } func (m *UserTokenCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2789,7 +2883,7 @@ func (m *RoleCreate) Reset() { *m = RoleCreate{} } func (m *RoleCreate) String() string { return proto.CompactTextString(m) } func (*RoleCreate) ProtoMessage() {} func (*RoleCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{48} + return fileDescriptor_007ba1c3d6266d56, []int{50} } func (m *RoleCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2835,7 +2929,7 @@ func (m *RoleDelete) Reset() { *m = RoleDelete{} } func (m *RoleDelete) String() string { return proto.CompactTextString(m) } func (*RoleDelete) ProtoMessage() {} func (*RoleDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{49} + return fileDescriptor_007ba1c3d6266d56, []int{51} } func (m *RoleDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2881,7 +2975,7 @@ func (m *TrustedClusterCreate) Reset() { *m = TrustedClusterCreate{} } func (m *TrustedClusterCreate) String() string { return proto.CompactTextString(m) } func (*TrustedClusterCreate) ProtoMessage() {} func (*TrustedClusterCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{50} + return fileDescriptor_007ba1c3d6266d56, []int{52} } func (m *TrustedClusterCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2927,7 +3021,7 @@ func (m *TrustedClusterDelete) Reset() { *m = TrustedClusterDelete{} } func (m *TrustedClusterDelete) String() string { return proto.CompactTextString(m) } func (*TrustedClusterDelete) ProtoMessage() {} func (*TrustedClusterDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{51} + return fileDescriptor_007ba1c3d6266d56, []int{53} } func (m *TrustedClusterDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2974,7 +3068,7 @@ func (m *TrustedClusterTokenCreate) Reset() { *m = TrustedClusterTokenCr func (m *TrustedClusterTokenCreate) String() string { return proto.CompactTextString(m) } func (*TrustedClusterTokenCreate) ProtoMessage() {} func (*TrustedClusterTokenCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{52} + return fileDescriptor_007ba1c3d6266d56, []int{54} } func (m *TrustedClusterTokenCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3020,7 +3114,7 @@ func (m *GithubConnectorCreate) Reset() { *m = GithubConnectorCreate{} } func (m *GithubConnectorCreate) String() string { return proto.CompactTextString(m) } func (*GithubConnectorCreate) ProtoMessage() {} func (*GithubConnectorCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{53} + return fileDescriptor_007ba1c3d6266d56, []int{55} } func (m *GithubConnectorCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3066,7 +3160,7 @@ func (m *GithubConnectorDelete) Reset() { *m = GithubConnectorDelete{} } func (m *GithubConnectorDelete) String() string { return proto.CompactTextString(m) } func (*GithubConnectorDelete) ProtoMessage() {} func (*GithubConnectorDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{54} + return fileDescriptor_007ba1c3d6266d56, []int{56} } func (m *GithubConnectorDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3112,7 +3206,7 @@ func (m *OIDCConnectorCreate) Reset() { *m = OIDCConnectorCreate{} } func (m *OIDCConnectorCreate) String() string { return proto.CompactTextString(m) } func (*OIDCConnectorCreate) ProtoMessage() {} func (*OIDCConnectorCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{55} + return fileDescriptor_007ba1c3d6266d56, []int{57} } func (m *OIDCConnectorCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3158,7 +3252,7 @@ func (m *OIDCConnectorDelete) Reset() { *m = OIDCConnectorDelete{} } func (m *OIDCConnectorDelete) String() string { return proto.CompactTextString(m) } func (*OIDCConnectorDelete) ProtoMessage() {} func (*OIDCConnectorDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{56} + return fileDescriptor_007ba1c3d6266d56, []int{58} } func (m *OIDCConnectorDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3204,7 +3298,7 @@ func (m *SAMLConnectorCreate) Reset() { *m = SAMLConnectorCreate{} } func (m *SAMLConnectorCreate) String() string { return proto.CompactTextString(m) } func (*SAMLConnectorCreate) ProtoMessage() {} func (*SAMLConnectorCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{57} + return fileDescriptor_007ba1c3d6266d56, []int{59} } func (m *SAMLConnectorCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3250,7 +3344,7 @@ func (m *SAMLConnectorDelete) Reset() { *m = SAMLConnectorDelete{} } func (m *SAMLConnectorDelete) String() string { return proto.CompactTextString(m) } func (*SAMLConnectorDelete) ProtoMessage() {} func (*SAMLConnectorDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{58} + return fileDescriptor_007ba1c3d6266d56, []int{60} } func (m *SAMLConnectorDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3314,7 +3408,7 @@ func (m *KubeRequest) Reset() { *m = KubeRequest{} } func (m *KubeRequest) String() string { return proto.CompactTextString(m) } func (*KubeRequest) ProtoMessage() {} func (*KubeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{59} + return fileDescriptor_007ba1c3d6266d56, []int{61} } func (m *KubeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3362,7 +3456,7 @@ func (m *AppMetadata) Reset() { *m = AppMetadata{} } func (m *AppMetadata) String() string { return proto.CompactTextString(m) } func (*AppMetadata) ProtoMessage() {} func (*AppMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{60} + return fileDescriptor_007ba1c3d6266d56, []int{62} } func (m *AppMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3410,7 +3504,7 @@ func (m *AppCreate) Reset() { *m = AppCreate{} } func (m *AppCreate) String() string { return proto.CompactTextString(m) } func (*AppCreate) ProtoMessage() {} func (*AppCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{61} + return fileDescriptor_007ba1c3d6266d56, []int{63} } func (m *AppCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3458,7 +3552,7 @@ func (m *AppUpdate) Reset() { *m = AppUpdate{} } func (m *AppUpdate) String() string { return proto.CompactTextString(m) } func (*AppUpdate) ProtoMessage() {} func (*AppUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{62} + return fileDescriptor_007ba1c3d6266d56, []int{64} } func (m *AppUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3504,7 +3598,7 @@ func (m *AppDelete) Reset() { *m = AppDelete{} } func (m *AppDelete) String() string { return proto.CompactTextString(m) } func (*AppDelete) ProtoMessage() {} func (*AppDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{63} + return fileDescriptor_007ba1c3d6266d56, []int{65} } func (m *AppDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3559,7 +3653,7 @@ func (m *AppSessionStart) Reset() { *m = AppSessionStart{} } func (m *AppSessionStart) String() string { return proto.CompactTextString(m) } func (*AppSessionStart) ProtoMessage() {} func (*AppSessionStart) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{64} + return fileDescriptor_007ba1c3d6266d56, []int{66} } func (m *AppSessionStart) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3611,7 +3705,7 @@ func (m *AppSessionEnd) Reset() { *m = AppSessionEnd{} } func (m *AppSessionEnd) String() string { return proto.CompactTextString(m) } func (*AppSessionEnd) ProtoMessage() {} func (*AppSessionEnd) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{65} + return fileDescriptor_007ba1c3d6266d56, []int{67} } func (m *AppSessionEnd) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3668,7 +3762,7 @@ func (m *AppSessionChunk) Reset() { *m = AppSessionChunk{} } func (m *AppSessionChunk) String() string { return proto.CompactTextString(m) } func (*AppSessionChunk) ProtoMessage() {} func (*AppSessionChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{66} + return fileDescriptor_007ba1c3d6266d56, []int{68} } func (m *AppSessionChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3722,7 +3816,7 @@ func (m *AppSessionRequest) Reset() { *m = AppSessionRequest{} } func (m *AppSessionRequest) String() string { return proto.CompactTextString(m) } func (*AppSessionRequest) ProtoMessage() {} func (*AppSessionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{67} + return fileDescriptor_007ba1c3d6266d56, []int{69} } func (m *AppSessionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3770,7 +3864,7 @@ func (m *AWSRequestMetadata) Reset() { *m = AWSRequestMetadata{} } func (m *AWSRequestMetadata) String() string { return proto.CompactTextString(m) } func (*AWSRequestMetadata) ProtoMessage() {} func (*AWSRequestMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{68} + return fileDescriptor_007ba1c3d6266d56, []int{70} } func (m *AWSRequestMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3830,7 +3924,7 @@ func (m *DatabaseMetadata) Reset() { *m = DatabaseMetadata{} } func (m *DatabaseMetadata) String() string { return proto.CompactTextString(m) } func (*DatabaseMetadata) ProtoMessage() {} func (*DatabaseMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{69} + return fileDescriptor_007ba1c3d6266d56, []int{71} } func (m *DatabaseMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3878,7 +3972,7 @@ func (m *DatabaseCreate) Reset() { *m = DatabaseCreate{} } func (m *DatabaseCreate) String() string { return proto.CompactTextString(m) } func (*DatabaseCreate) ProtoMessage() {} func (*DatabaseCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{70} + return fileDescriptor_007ba1c3d6266d56, []int{72} } func (m *DatabaseCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3926,7 +4020,7 @@ func (m *DatabaseUpdate) Reset() { *m = DatabaseUpdate{} } func (m *DatabaseUpdate) String() string { return proto.CompactTextString(m) } func (*DatabaseUpdate) ProtoMessage() {} func (*DatabaseUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{71} + return fileDescriptor_007ba1c3d6266d56, []int{73} } func (m *DatabaseUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3972,7 +4066,7 @@ func (m *DatabaseDelete) Reset() { *m = DatabaseDelete{} } func (m *DatabaseDelete) String() string { return proto.CompactTextString(m) } func (*DatabaseDelete) ProtoMessage() {} func (*DatabaseDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{72} + return fileDescriptor_007ba1c3d6266d56, []int{74} } func (m *DatabaseDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4026,7 +4120,7 @@ func (m *DatabaseSessionStart) Reset() { *m = DatabaseSessionStart{} } func (m *DatabaseSessionStart) String() string { return proto.CompactTextString(m) } func (*DatabaseSessionStart) ProtoMessage() {} func (*DatabaseSessionStart) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{73} + return fileDescriptor_007ba1c3d6266d56, []int{75} } func (m *DatabaseSessionStart) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4080,7 +4174,7 @@ func (m *DatabaseSessionQuery) Reset() { *m = DatabaseSessionQuery{} } func (m *DatabaseSessionQuery) String() string { return proto.CompactTextString(m) } func (*DatabaseSessionQuery) ProtoMessage() {} func (*DatabaseSessionQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{74} + return fileDescriptor_007ba1c3d6266d56, []int{76} } func (m *DatabaseSessionQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4133,7 +4227,7 @@ func (m *PostgresParse) Reset() { *m = PostgresParse{} } func (m *PostgresParse) String() string { return proto.CompactTextString(m) } func (*PostgresParse) ProtoMessage() {} func (*PostgresParse) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{75} + return fileDescriptor_007ba1c3d6266d56, []int{77} } func (m *PostgresParse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4188,7 +4282,7 @@ func (m *PostgresBind) Reset() { *m = PostgresBind{} } func (m *PostgresBind) String() string { return proto.CompactTextString(m) } func (*PostgresBind) ProtoMessage() {} func (*PostgresBind) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{76} + return fileDescriptor_007ba1c3d6266d56, []int{78} } func (m *PostgresBind) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4239,7 +4333,7 @@ func (m *PostgresExecute) Reset() { *m = PostgresExecute{} } func (m *PostgresExecute) String() string { return proto.CompactTextString(m) } func (*PostgresExecute) ProtoMessage() {} func (*PostgresExecute) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{77} + return fileDescriptor_007ba1c3d6266d56, []int{79} } func (m *PostgresExecute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4292,7 +4386,7 @@ func (m *PostgresClose) Reset() { *m = PostgresClose{} } func (m *PostgresClose) String() string { return proto.CompactTextString(m) } func (*PostgresClose) ProtoMessage() {} func (*PostgresClose) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{78} + return fileDescriptor_007ba1c3d6266d56, []int{80} } func (m *PostgresClose) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4345,7 +4439,7 @@ func (m *PostgresFunctionCall) Reset() { *m = PostgresFunctionCall{} } func (m *PostgresFunctionCall) String() string { return proto.CompactTextString(m) } func (*PostgresFunctionCall) ProtoMessage() {} func (*PostgresFunctionCall) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{79} + return fileDescriptor_007ba1c3d6266d56, []int{81} } func (m *PostgresFunctionCall) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4407,7 +4501,7 @@ func (m *WindowsDesktopSessionStart) Reset() { *m = WindowsDesktopSessio func (m *WindowsDesktopSessionStart) String() string { return proto.CompactTextString(m) } func (*WindowsDesktopSessionStart) ProtoMessage() {} func (*WindowsDesktopSessionStart) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{80} + return fileDescriptor_007ba1c3d6266d56, []int{82} } func (m *WindowsDesktopSessionStart) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4455,7 +4549,7 @@ func (m *DatabaseSessionEnd) Reset() { *m = DatabaseSessionEnd{} } func (m *DatabaseSessionEnd) String() string { return proto.CompactTextString(m) } func (*DatabaseSessionEnd) ProtoMessage() {} func (*DatabaseSessionEnd) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{81} + return fileDescriptor_007ba1c3d6266d56, []int{83} } func (m *DatabaseSessionEnd) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4501,7 +4595,7 @@ func (m *MFADeviceMetadata) Reset() { *m = MFADeviceMetadata{} } func (m *MFADeviceMetadata) String() string { return proto.CompactTextString(m) } func (*MFADeviceMetadata) ProtoMessage() {} func (*MFADeviceMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{82} + return fileDescriptor_007ba1c3d6266d56, []int{84} } func (m *MFADeviceMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4547,7 +4641,7 @@ func (m *MFADeviceAdd) Reset() { *m = MFADeviceAdd{} } func (m *MFADeviceAdd) String() string { return proto.CompactTextString(m) } func (*MFADeviceAdd) ProtoMessage() {} func (*MFADeviceAdd) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{83} + return fileDescriptor_007ba1c3d6266d56, []int{85} } func (m *MFADeviceAdd) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4593,7 +4687,7 @@ func (m *MFADeviceDelete) Reset() { *m = MFADeviceDelete{} } func (m *MFADeviceDelete) String() string { return proto.CompactTextString(m) } func (*MFADeviceDelete) ProtoMessage() {} func (*MFADeviceDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{84} + return fileDescriptor_007ba1c3d6266d56, []int{86} } func (m *MFADeviceDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4637,7 +4731,7 @@ func (m *BillingInformationUpdate) Reset() { *m = BillingInformationUpda func (m *BillingInformationUpdate) String() string { return proto.CompactTextString(m) } func (*BillingInformationUpdate) ProtoMessage() {} func (*BillingInformationUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{85} + return fileDescriptor_007ba1c3d6266d56, []int{87} } func (m *BillingInformationUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4681,7 +4775,7 @@ func (m *BillingCardCreate) Reset() { *m = BillingCardCreate{} } func (m *BillingCardCreate) String() string { return proto.CompactTextString(m) } func (*BillingCardCreate) ProtoMessage() {} func (*BillingCardCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{86} + return fileDescriptor_007ba1c3d6266d56, []int{88} } func (m *BillingCardCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4725,7 +4819,7 @@ func (m *BillingCardDelete) Reset() { *m = BillingCardDelete{} } func (m *BillingCardDelete) String() string { return proto.CompactTextString(m) } func (*BillingCardDelete) ProtoMessage() {} func (*BillingCardDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{87} + return fileDescriptor_007ba1c3d6266d56, []int{89} } func (m *BillingCardDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4776,7 +4870,7 @@ func (m *LockCreate) Reset() { *m = LockCreate{} } func (m *LockCreate) String() string { return proto.CompactTextString(m) } func (*LockCreate) ProtoMessage() {} func (*LockCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{88} + return fileDescriptor_007ba1c3d6266d56, []int{90} } func (m *LockCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4822,7 +4916,7 @@ func (m *LockDelete) Reset() { *m = LockDelete{} } func (m *LockDelete) String() string { return proto.CompactTextString(m) } func (*LockDelete) ProtoMessage() {} func (*LockDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{89} + return fileDescriptor_007ba1c3d6266d56, []int{91} } func (m *LockDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4866,7 +4960,7 @@ func (m *RecoveryCodeGenerate) Reset() { *m = RecoveryCodeGenerate{} } func (m *RecoveryCodeGenerate) String() string { return proto.CompactTextString(m) } func (*RecoveryCodeGenerate) ProtoMessage() {} func (*RecoveryCodeGenerate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{90} + return fileDescriptor_007ba1c3d6266d56, []int{92} } func (m *RecoveryCodeGenerate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4913,7 +5007,7 @@ func (m *RecoveryCodeUsed) Reset() { *m = RecoveryCodeUsed{} } func (m *RecoveryCodeUsed) String() string { return proto.CompactTextString(m) } func (*RecoveryCodeUsed) ProtoMessage() {} func (*RecoveryCodeUsed) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{91} + return fileDescriptor_007ba1c3d6266d56, []int{93} } func (m *RecoveryCodeUsed) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4979,7 +5073,7 @@ func (m *WindowsDesktopSessionEnd) Reset() { *m = WindowsDesktopSessionE func (m *WindowsDesktopSessionEnd) String() string { return proto.CompactTextString(m) } func (*WindowsDesktopSessionEnd) ProtoMessage() {} func (*WindowsDesktopSessionEnd) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{92} + return fileDescriptor_007ba1c3d6266d56, []int{94} } func (m *WindowsDesktopSessionEnd) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5025,7 +5119,7 @@ func (m *CertificateCreate) Reset() { *m = CertificateCreate{} } func (m *CertificateCreate) String() string { return proto.CompactTextString(m) } func (*CertificateCreate) ProtoMessage() {} func (*CertificateCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{93} + return fileDescriptor_007ba1c3d6266d56, []int{95} } func (m *CertificateCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5073,7 +5167,7 @@ func (m *RenewableCertificateGenerationMismatch) Reset() { func (m *RenewableCertificateGenerationMismatch) String() string { return proto.CompactTextString(m) } func (*RenewableCertificateGenerationMismatch) ProtoMessage() {} func (*RenewableCertificateGenerationMismatch) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{94} + return fileDescriptor_007ba1c3d6266d56, []int{96} } func (m *RenewableCertificateGenerationMismatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5125,7 +5219,7 @@ func (m *BotJoin) Reset() { *m = BotJoin{} } func (m *BotJoin) String() string { return proto.CompactTextString(m) } func (*BotJoin) ProtoMessage() {} func (*BotJoin) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{95} + return fileDescriptor_007ba1c3d6266d56, []int{97} } func (m *BotJoin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5182,7 +5276,7 @@ func (m *InstanceJoin) Reset() { *m = InstanceJoin{} } func (m *InstanceJoin) String() string { return proto.CompactTextString(m) } func (*InstanceJoin) ProtoMessage() {} func (*InstanceJoin) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{96} + return fileDescriptor_007ba1c3d6266d56, []int{98} } func (m *InstanceJoin) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5230,7 +5324,7 @@ func (m *Unknown) Reset() { *m = Unknown{} } func (m *Unknown) String() string { return proto.CompactTextString(m) } func (*Unknown) ProtoMessage() {} func (*Unknown) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{97} + return fileDescriptor_007ba1c3d6266d56, []int{99} } func (m *Unknown) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5278,7 +5372,7 @@ func (m *DeviceMetadata) Reset() { *m = DeviceMetadata{} } func (m *DeviceMetadata) String() string { return proto.CompactTextString(m) } func (*DeviceMetadata) ProtoMessage() {} func (*DeviceMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{98} + return fileDescriptor_007ba1c3d6266d56, []int{100} } func (m *DeviceMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5329,7 +5423,7 @@ func (m *DeviceEvent) Reset() { *m = DeviceEvent{} } func (m *DeviceEvent) String() string { return proto.CompactTextString(m) } func (*DeviceEvent) ProtoMessage() {} func (*DeviceEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{99} + return fileDescriptor_007ba1c3d6266d56, []int{101} } func (m *DeviceEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5381,7 +5475,7 @@ func (m *DeviceEvent2) Reset() { *m = DeviceEvent2{} } func (m *DeviceEvent2) String() string { return proto.CompactTextString(m) } func (*DeviceEvent2) ProtoMessage() {} func (*DeviceEvent2) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{100} + return fileDescriptor_007ba1c3d6266d56, []int{102} } func (m *DeviceEvent2) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5534,6 +5628,9 @@ type OneOf struct { // *OneOf_SAMLIdPServiceProviderDelete // *OneOf_SAMLIdPServiceProviderDeleteAll // *OneOf_DeviceEvent2 + // *OneOf_OktaResourcesUpdate + // *OneOf_OktaSyncFailure + // *OneOf_OktaAssignmentResult Event isOneOf_Event `protobuf_oneof:"Event"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -5544,7 +5641,7 @@ func (m *OneOf) Reset() { *m = OneOf{} } func (m *OneOf) String() string { return proto.CompactTextString(m) } func (*OneOf) ProtoMessage() {} func (*OneOf) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{101} + return fileDescriptor_007ba1c3d6266d56, []int{103} } func (m *OneOf) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5936,6 +6033,15 @@ type OneOf_SAMLIdPServiceProviderDeleteAll struct { type OneOf_DeviceEvent2 struct { DeviceEvent2 *DeviceEvent2 `protobuf:"bytes,121,opt,name=DeviceEvent2,proto3,oneof" json:"DeviceEvent2,omitempty"` } +type OneOf_OktaResourcesUpdate struct { + OktaResourcesUpdate *OktaResourcesUpdate `protobuf:"bytes,122,opt,name=OktaResourcesUpdate,proto3,oneof" json:"OktaResourcesUpdate,omitempty"` +} +type OneOf_OktaSyncFailure struct { + OktaSyncFailure *OktaSyncFailure `protobuf:"bytes,123,opt,name=OktaSyncFailure,proto3,oneof" json:"OktaSyncFailure,omitempty"` +} +type OneOf_OktaAssignmentResult struct { + OktaAssignmentResult *OktaAssignmentResult `protobuf:"bytes,124,opt,name=OktaAssignmentResult,proto3,oneof" json:"OktaAssignmentResult,omitempty"` +} func (*OneOf_UserLogin) isOneOf_Event() {} func (*OneOf_UserCreate) isOneOf_Event() {} @@ -6056,6 +6162,9 @@ func (*OneOf_SAMLIdPServiceProviderUpdate) isOneOf_Event() {} func (*OneOf_SAMLIdPServiceProviderDelete) isOneOf_Event() {} func (*OneOf_SAMLIdPServiceProviderDeleteAll) isOneOf_Event() {} func (*OneOf_DeviceEvent2) isOneOf_Event() {} +func (*OneOf_OktaResourcesUpdate) isOneOf_Event() {} +func (*OneOf_OktaSyncFailure) isOneOf_Event() {} +func (*OneOf_OktaAssignmentResult) isOneOf_Event() {} func (m *OneOf) GetEvent() isOneOf_Event { if m != nil { @@ -6897,6 +7006,27 @@ func (m *OneOf) GetDeviceEvent2() *DeviceEvent2 { return nil } +func (m *OneOf) GetOktaResourcesUpdate() *OktaResourcesUpdate { + if x, ok := m.GetEvent().(*OneOf_OktaResourcesUpdate); ok { + return x.OktaResourcesUpdate + } + return nil +} + +func (m *OneOf) GetOktaSyncFailure() *OktaSyncFailure { + if x, ok := m.GetEvent().(*OneOf_OktaSyncFailure); ok { + return x.OktaSyncFailure + } + return nil +} + +func (m *OneOf) GetOktaAssignmentResult() *OktaAssignmentResult { + if x, ok := m.GetEvent().(*OneOf_OktaAssignmentResult); ok { + return x.OktaAssignmentResult + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*OneOf) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -7019,6 +7149,9 @@ func (*OneOf) XXX_OneofWrappers() []interface{} { (*OneOf_SAMLIdPServiceProviderDelete)(nil), (*OneOf_SAMLIdPServiceProviderDeleteAll)(nil), (*OneOf_DeviceEvent2)(nil), + (*OneOf_OktaResourcesUpdate)(nil), + (*OneOf_OktaSyncFailure)(nil), + (*OneOf_OktaAssignmentResult)(nil), } } @@ -7039,7 +7172,7 @@ func (m *StreamStatus) Reset() { *m = StreamStatus{} } func (m *StreamStatus) String() string { return proto.CompactTextString(m) } func (*StreamStatus) ProtoMessage() {} func (*StreamStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{102} + return fileDescriptor_007ba1c3d6266d56, []int{104} } func (m *StreamStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7085,7 +7218,7 @@ func (m *SessionUpload) Reset() { *m = SessionUpload{} } func (m *SessionUpload) String() string { return proto.CompactTextString(m) } func (*SessionUpload) ProtoMessage() {} func (*SessionUpload) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{103} + return fileDescriptor_007ba1c3d6266d56, []int{105} } func (m *SessionUpload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7193,7 +7326,7 @@ func (m *Identity) Reset() { *m = Identity{} } func (m *Identity) String() string { return proto.CompactTextString(m) } func (*Identity) ProtoMessage() {} func (*Identity) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{104} + return fileDescriptor_007ba1c3d6266d56, []int{106} } func (m *Identity) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7247,7 +7380,7 @@ func (m *RouteToApp) Reset() { *m = RouteToApp{} } func (m *RouteToApp) String() string { return proto.CompactTextString(m) } func (*RouteToApp) ProtoMessage() {} func (*RouteToApp) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{105} + return fileDescriptor_007ba1c3d6266d56, []int{107} } func (m *RouteToApp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7295,7 +7428,7 @@ func (m *RouteToDatabase) Reset() { *m = RouteToDatabase{} } func (m *RouteToDatabase) String() string { return proto.CompactTextString(m) } func (*RouteToDatabase) ProtoMessage() {} func (*RouteToDatabase) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{106} + return fileDescriptor_007ba1c3d6266d56, []int{108} } func (m *RouteToDatabase) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7352,7 +7485,7 @@ func (m *AccessRequestResourceSearch) Reset() { *m = AccessRequestResour func (m *AccessRequestResourceSearch) String() string { return proto.CompactTextString(m) } func (*AccessRequestResourceSearch) ProtoMessage() {} func (*AccessRequestResourceSearch) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{107} + return fileDescriptor_007ba1c3d6266d56, []int{109} } func (m *AccessRequestResourceSearch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7403,7 +7536,7 @@ func (m *MySQLStatementPrepare) Reset() { *m = MySQLStatementPrepare{} } func (m *MySQLStatementPrepare) String() string { return proto.CompactTextString(m) } func (*MySQLStatementPrepare) ProtoMessage() {} func (*MySQLStatementPrepare) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{108} + return fileDescriptor_007ba1c3d6266d56, []int{110} } func (m *MySQLStatementPrepare) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7456,7 +7589,7 @@ func (m *MySQLStatementExecute) Reset() { *m = MySQLStatementExecute{} } func (m *MySQLStatementExecute) String() string { return proto.CompactTextString(m) } func (*MySQLStatementExecute) ProtoMessage() {} func (*MySQLStatementExecute) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{109} + return fileDescriptor_007ba1c3d6266d56, []int{111} } func (m *MySQLStatementExecute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7511,7 +7644,7 @@ func (m *MySQLStatementSendLongData) Reset() { *m = MySQLStatementSendLo func (m *MySQLStatementSendLongData) String() string { return proto.CompactTextString(m) } func (*MySQLStatementSendLongData) ProtoMessage() {} func (*MySQLStatementSendLongData) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{110} + return fileDescriptor_007ba1c3d6266d56, []int{112} } func (m *MySQLStatementSendLongData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7562,7 +7695,7 @@ func (m *MySQLStatementClose) Reset() { *m = MySQLStatementClose{} } func (m *MySQLStatementClose) String() string { return proto.CompactTextString(m) } func (*MySQLStatementClose) ProtoMessage() {} func (*MySQLStatementClose) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{111} + return fileDescriptor_007ba1c3d6266d56, []int{113} } func (m *MySQLStatementClose) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7613,7 +7746,7 @@ func (m *MySQLStatementReset) Reset() { *m = MySQLStatementReset{} } func (m *MySQLStatementReset) String() string { return proto.CompactTextString(m) } func (*MySQLStatementReset) ProtoMessage() {} func (*MySQLStatementReset) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{112} + return fileDescriptor_007ba1c3d6266d56, []int{114} } func (m *MySQLStatementReset) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7666,7 +7799,7 @@ func (m *MySQLStatementFetch) Reset() { *m = MySQLStatementFetch{} } func (m *MySQLStatementFetch) String() string { return proto.CompactTextString(m) } func (*MySQLStatementFetch) ProtoMessage() {} func (*MySQLStatementFetch) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{113} + return fileDescriptor_007ba1c3d6266d56, []int{115} } func (m *MySQLStatementFetch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7719,7 +7852,7 @@ func (m *MySQLStatementBulkExecute) Reset() { *m = MySQLStatementBulkExe func (m *MySQLStatementBulkExecute) String() string { return proto.CompactTextString(m) } func (*MySQLStatementBulkExecute) ProtoMessage() {} func (*MySQLStatementBulkExecute) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{114} + return fileDescriptor_007ba1c3d6266d56, []int{116} } func (m *MySQLStatementBulkExecute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7770,7 +7903,7 @@ func (m *MySQLInitDB) Reset() { *m = MySQLInitDB{} } func (m *MySQLInitDB) String() string { return proto.CompactTextString(m) } func (*MySQLInitDB) ProtoMessage() {} func (*MySQLInitDB) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{115} + return fileDescriptor_007ba1c3d6266d56, []int{117} } func (m *MySQLInitDB) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7820,7 +7953,7 @@ func (m *MySQLCreateDB) Reset() { *m = MySQLCreateDB{} } func (m *MySQLCreateDB) String() string { return proto.CompactTextString(m) } func (*MySQLCreateDB) ProtoMessage() {} func (*MySQLCreateDB) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{116} + return fileDescriptor_007ba1c3d6266d56, []int{118} } func (m *MySQLCreateDB) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7870,7 +8003,7 @@ func (m *MySQLDropDB) Reset() { *m = MySQLDropDB{} } func (m *MySQLDropDB) String() string { return proto.CompactTextString(m) } func (*MySQLDropDB) ProtoMessage() {} func (*MySQLDropDB) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{117} + return fileDescriptor_007ba1c3d6266d56, []int{119} } func (m *MySQLDropDB) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7918,7 +8051,7 @@ func (m *MySQLShutDown) Reset() { *m = MySQLShutDown{} } func (m *MySQLShutDown) String() string { return proto.CompactTextString(m) } func (*MySQLShutDown) ProtoMessage() {} func (*MySQLShutDown) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{118} + return fileDescriptor_007ba1c3d6266d56, []int{120} } func (m *MySQLShutDown) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -7969,7 +8102,7 @@ func (m *MySQLProcessKill) Reset() { *m = MySQLProcessKill{} } func (m *MySQLProcessKill) String() string { return proto.CompactTextString(m) } func (*MySQLProcessKill) ProtoMessage() {} func (*MySQLProcessKill) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{119} + return fileDescriptor_007ba1c3d6266d56, []int{121} } func (m *MySQLProcessKill) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8018,7 +8151,7 @@ func (m *MySQLDebug) Reset() { *m = MySQLDebug{} } func (m *MySQLDebug) String() string { return proto.CompactTextString(m) } func (*MySQLDebug) ProtoMessage() {} func (*MySQLDebug) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{120} + return fileDescriptor_007ba1c3d6266d56, []int{122} } func (m *MySQLDebug) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8068,7 +8201,7 @@ func (m *MySQLRefresh) Reset() { *m = MySQLRefresh{} } func (m *MySQLRefresh) String() string { return proto.CompactTextString(m) } func (*MySQLRefresh) ProtoMessage() {} func (*MySQLRefresh) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{121} + return fileDescriptor_007ba1c3d6266d56, []int{123} } func (m *MySQLRefresh) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8120,7 +8253,7 @@ func (m *SQLServerRPCRequest) Reset() { *m = SQLServerRPCRequest{} } func (m *SQLServerRPCRequest) String() string { return proto.CompactTextString(m) } func (*SQLServerRPCRequest) ProtoMessage() {} func (*SQLServerRPCRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{122} + return fileDescriptor_007ba1c3d6266d56, []int{124} } func (m *SQLServerRPCRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8170,7 +8303,7 @@ func (m *DatabaseSessionMalformedPacket) Reset() { *m = DatabaseSessionM func (m *DatabaseSessionMalformedPacket) String() string { return proto.CompactTextString(m) } func (*DatabaseSessionMalformedPacket) ProtoMessage() {} func (*DatabaseSessionMalformedPacket) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{123} + return fileDescriptor_007ba1c3d6266d56, []int{125} } func (m *DatabaseSessionMalformedPacket) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8235,7 +8368,7 @@ func (m *ElasticsearchRequest) Reset() { *m = ElasticsearchRequest{} } func (m *ElasticsearchRequest) String() string { return proto.CompactTextString(m) } func (*ElasticsearchRequest) ProtoMessage() {} func (*ElasticsearchRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{124} + return fileDescriptor_007ba1c3d6266d56, []int{126} } func (m *ElasticsearchRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8295,7 +8428,7 @@ func (m *DynamoDBRequest) Reset() { *m = DynamoDBRequest{} } func (m *DynamoDBRequest) String() string { return proto.CompactTextString(m) } func (*DynamoDBRequest) ProtoMessage() {} func (*DynamoDBRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{125} + return fileDescriptor_007ba1c3d6266d56, []int{127} } func (m *DynamoDBRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8361,7 +8494,7 @@ func (m *AppSessionDynamoDBRequest) Reset() { *m = AppSessionDynamoDBReq func (m *AppSessionDynamoDBRequest) String() string { return proto.CompactTextString(m) } func (*AppSessionDynamoDBRequest) ProtoMessage() {} func (*AppSessionDynamoDBRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{126} + return fileDescriptor_007ba1c3d6266d56, []int{128} } func (m *AppSessionDynamoDBRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8403,7 +8536,7 @@ func (m *UpgradeWindowStartMetadata) Reset() { *m = UpgradeWindowStartMe func (m *UpgradeWindowStartMetadata) String() string { return proto.CompactTextString(m) } func (*UpgradeWindowStartMetadata) ProtoMessage() {} func (*UpgradeWindowStartMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{127} + return fileDescriptor_007ba1c3d6266d56, []int{129} } func (m *UpgradeWindowStartMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8451,7 +8584,7 @@ func (m *UpgradeWindowStartUpdate) Reset() { *m = UpgradeWindowStartUpda func (m *UpgradeWindowStartUpdate) String() string { return proto.CompactTextString(m) } func (*UpgradeWindowStartUpdate) ProtoMessage() {} func (*UpgradeWindowStartUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{128} + return fileDescriptor_007ba1c3d6266d56, []int{130} } func (m *UpgradeWindowStartUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8498,7 +8631,7 @@ func (m *SessionRecordingAccess) Reset() { *m = SessionRecordingAccess{} func (m *SessionRecordingAccess) String() string { return proto.CompactTextString(m) } func (*SessionRecordingAccess) ProtoMessage() {} func (*SessionRecordingAccess) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{129} + return fileDescriptor_007ba1c3d6266d56, []int{131} } func (m *SessionRecordingAccess) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8540,7 +8673,7 @@ func (m *KubeClusterMetadata) Reset() { *m = KubeClusterMetadata{} } func (m *KubeClusterMetadata) String() string { return proto.CompactTextString(m) } func (*KubeClusterMetadata) ProtoMessage() {} func (*KubeClusterMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{130} + return fileDescriptor_007ba1c3d6266d56, []int{132} } func (m *KubeClusterMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8588,7 +8721,7 @@ func (m *KubernetesClusterCreate) Reset() { *m = KubernetesClusterCreate func (m *KubernetesClusterCreate) String() string { return proto.CompactTextString(m) } func (*KubernetesClusterCreate) ProtoMessage() {} func (*KubernetesClusterCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{131} + return fileDescriptor_007ba1c3d6266d56, []int{133} } func (m *KubernetesClusterCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8636,7 +8769,7 @@ func (m *KubernetesClusterUpdate) Reset() { *m = KubernetesClusterUpdate func (m *KubernetesClusterUpdate) String() string { return proto.CompactTextString(m) } func (*KubernetesClusterUpdate) ProtoMessage() {} func (*KubernetesClusterUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{132} + return fileDescriptor_007ba1c3d6266d56, []int{134} } func (m *KubernetesClusterUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8682,7 +8815,7 @@ func (m *KubernetesClusterDelete) Reset() { *m = KubernetesClusterDelete func (m *KubernetesClusterDelete) String() string { return proto.CompactTextString(m) } func (*KubernetesClusterDelete) ProtoMessage() {} func (*KubernetesClusterDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{133} + return fileDescriptor_007ba1c3d6266d56, []int{135} } func (m *KubernetesClusterDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8736,7 +8869,7 @@ func (m *SSMRun) Reset() { *m = SSMRun{} } func (m *SSMRun) String() string { return proto.CompactTextString(m) } func (*SSMRun) ProtoMessage() {} func (*SSMRun) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{134} + return fileDescriptor_007ba1c3d6266d56, []int{136} } func (m *SSMRun) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8789,7 +8922,7 @@ func (m *CassandraPrepare) Reset() { *m = CassandraPrepare{} } func (m *CassandraPrepare) String() string { return proto.CompactTextString(m) } func (*CassandraPrepare) ProtoMessage() {} func (*CassandraPrepare) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{135} + return fileDescriptor_007ba1c3d6266d56, []int{137} } func (m *CassandraPrepare) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8839,7 +8972,7 @@ func (m *CassandraExecute) Reset() { *m = CassandraExecute{} } func (m *CassandraExecute) String() string { return proto.CompactTextString(m) } func (*CassandraExecute) ProtoMessage() {} func (*CassandraExecute) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{136} + return fileDescriptor_007ba1c3d6266d56, []int{138} } func (m *CassandraExecute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8895,7 +9028,7 @@ func (m *CassandraBatch) Reset() { *m = CassandraBatch{} } func (m *CassandraBatch) String() string { return proto.CompactTextString(m) } func (*CassandraBatch) ProtoMessage() {} func (*CassandraBatch) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{137} + return fileDescriptor_007ba1c3d6266d56, []int{139} } func (m *CassandraBatch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8941,7 +9074,7 @@ func (m *CassandraBatch_BatchChild) Reset() { *m = CassandraBatch_BatchC func (m *CassandraBatch_BatchChild) String() string { return proto.CompactTextString(m) } func (*CassandraBatch_BatchChild) ProtoMessage() {} func (*CassandraBatch_BatchChild) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{137, 0} + return fileDescriptor_007ba1c3d6266d56, []int{139, 0} } func (m *CassandraBatch_BatchChild) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -8985,7 +9118,7 @@ func (m *CassandraBatch_BatchChild_Value) Reset() { *m = CassandraBatch_ func (m *CassandraBatch_BatchChild_Value) String() string { return proto.CompactTextString(m) } func (*CassandraBatch_BatchChild_Value) ProtoMessage() {} func (*CassandraBatch_BatchChild_Value) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{137, 0, 0} + return fileDescriptor_007ba1c3d6266d56, []int{139, 0, 0} } func (m *CassandraBatch_BatchChild_Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9036,7 +9169,7 @@ func (m *CassandraRegister) Reset() { *m = CassandraRegister{} } func (m *CassandraRegister) String() string { return proto.CompactTextString(m) } func (*CassandraRegister) ProtoMessage() {} func (*CassandraRegister) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{138} + return fileDescriptor_007ba1c3d6266d56, []int{140} } func (m *CassandraRegister) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9082,7 +9215,7 @@ func (m *LoginRuleCreate) Reset() { *m = LoginRuleCreate{} } func (m *LoginRuleCreate) String() string { return proto.CompactTextString(m) } func (*LoginRuleCreate) ProtoMessage() {} func (*LoginRuleCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{139} + return fileDescriptor_007ba1c3d6266d56, []int{141} } func (m *LoginRuleCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9128,7 +9261,7 @@ func (m *LoginRuleDelete) Reset() { *m = LoginRuleDelete{} } func (m *LoginRuleDelete) String() string { return proto.CompactTextString(m) } func (*LoginRuleDelete) ProtoMessage() {} func (*LoginRuleDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{140} + return fileDescriptor_007ba1c3d6266d56, []int{142} } func (m *LoginRuleDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9178,7 +9311,7 @@ func (m *SAMLIdPAuthAttempt) Reset() { *m = SAMLIdPAuthAttempt{} } func (m *SAMLIdPAuthAttempt) String() string { return proto.CompactTextString(m) } func (*SAMLIdPAuthAttempt) ProtoMessage() {} func (*SAMLIdPAuthAttempt) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{141} + return fileDescriptor_007ba1c3d6266d56, []int{143} } func (m *SAMLIdPAuthAttempt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9224,7 +9357,7 @@ func (m *SAMLIdPServiceProviderCreate) Reset() { *m = SAMLIdPServiceProv func (m *SAMLIdPServiceProviderCreate) String() string { return proto.CompactTextString(m) } func (*SAMLIdPServiceProviderCreate) ProtoMessage() {} func (*SAMLIdPServiceProviderCreate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{142} + return fileDescriptor_007ba1c3d6266d56, []int{144} } func (m *SAMLIdPServiceProviderCreate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9270,7 +9403,7 @@ func (m *SAMLIdPServiceProviderUpdate) Reset() { *m = SAMLIdPServiceProv func (m *SAMLIdPServiceProviderUpdate) String() string { return proto.CompactTextString(m) } func (*SAMLIdPServiceProviderUpdate) ProtoMessage() {} func (*SAMLIdPServiceProviderUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{143} + return fileDescriptor_007ba1c3d6266d56, []int{145} } func (m *SAMLIdPServiceProviderUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9316,7 +9449,7 @@ func (m *SAMLIdPServiceProviderDelete) Reset() { *m = SAMLIdPServiceProv func (m *SAMLIdPServiceProviderDelete) String() string { return proto.CompactTextString(m) } func (*SAMLIdPServiceProviderDelete) ProtoMessage() {} func (*SAMLIdPServiceProviderDelete) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{144} + return fileDescriptor_007ba1c3d6266d56, []int{146} } func (m *SAMLIdPServiceProviderDelete) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9360,7 +9493,7 @@ func (m *SAMLIdPServiceProviderDeleteAll) Reset() { *m = SAMLIdPServiceP func (m *SAMLIdPServiceProviderDeleteAll) String() string { return proto.CompactTextString(m) } func (*SAMLIdPServiceProviderDeleteAll) ProtoMessage() {} func (*SAMLIdPServiceProviderDeleteAll) Descriptor() ([]byte, []int) { - return fileDescriptor_007ba1c3d6266d56, []int{145} + return fileDescriptor_007ba1c3d6266d56, []int{147} } func (m *SAMLIdPServiceProviderDeleteAll) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9389,6 +9522,148 @@ func (m *SAMLIdPServiceProviderDeleteAll) XXX_DiscardUnknown() { var xxx_messageInfo_SAMLIdPServiceProviderDeleteAll proto.InternalMessageInfo +// OktaResourcesUpdate is emitted when Okta related resources have been updated. +type OktaResourcesUpdate struct { + // Metadata is common event metadata + Metadata `protobuf:"bytes,1,opt,name=Metadata,proto3,embedded=Metadata" json:""` + // Server is a common server metadata. + ServerMetadata `protobuf:"bytes,2,opt,name=Server,proto3,embedded=Server" json:""` + // Updated is common metadata related to Okta resources being updated. + OktaResourcesUpdatedMetadata `protobuf:"bytes,3,opt,name=Updated,proto3,embedded=Updated" json:""` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *OktaResourcesUpdate) Reset() { *m = OktaResourcesUpdate{} } +func (m *OktaResourcesUpdate) String() string { return proto.CompactTextString(m) } +func (*OktaResourcesUpdate) ProtoMessage() {} +func (*OktaResourcesUpdate) Descriptor() ([]byte, []int) { + return fileDescriptor_007ba1c3d6266d56, []int{148} +} +func (m *OktaResourcesUpdate) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *OktaResourcesUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_OktaResourcesUpdate.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 *OktaResourcesUpdate) XXX_Merge(src proto.Message) { + xxx_messageInfo_OktaResourcesUpdate.Merge(m, src) +} +func (m *OktaResourcesUpdate) XXX_Size() int { + return m.Size() +} +func (m *OktaResourcesUpdate) XXX_DiscardUnknown() { + xxx_messageInfo_OktaResourcesUpdate.DiscardUnknown(m) +} + +var xxx_messageInfo_OktaResourcesUpdate proto.InternalMessageInfo + +// OktaSyncFailure is emitted when an Okta synchronization attempt has failed. +type OktaSyncFailure struct { + // Metadata is common event metadata + Metadata `protobuf:"bytes,1,opt,name=Metadata,proto3,embedded=Metadata" json:""` + // Server is a common server metadata. + ServerMetadata `protobuf:"bytes,2,opt,name=Server,proto3,embedded=Server" json:""` + // Status contains error information for the synchronization failure. + Status `protobuf:"bytes,3,opt,name=Status,proto3,embedded=Status" json:""` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *OktaSyncFailure) Reset() { *m = OktaSyncFailure{} } +func (m *OktaSyncFailure) String() string { return proto.CompactTextString(m) } +func (*OktaSyncFailure) ProtoMessage() {} +func (*OktaSyncFailure) Descriptor() ([]byte, []int) { + return fileDescriptor_007ba1c3d6266d56, []int{149} +} +func (m *OktaSyncFailure) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *OktaSyncFailure) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_OktaSyncFailure.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 *OktaSyncFailure) XXX_Merge(src proto.Message) { + xxx_messageInfo_OktaSyncFailure.Merge(m, src) +} +func (m *OktaSyncFailure) XXX_Size() int { + return m.Size() +} +func (m *OktaSyncFailure) XXX_DiscardUnknown() { + xxx_messageInfo_OktaSyncFailure.DiscardUnknown(m) +} + +var xxx_messageInfo_OktaSyncFailure proto.InternalMessageInfo + +// OktaAssignmentResult is emitted when an Okta assignment processing or cleanup was attempted. +type OktaAssignmentResult struct { + // Metadata is common event metadata + Metadata `protobuf:"bytes,1,opt,name=Metadata,proto3,embedded=Metadata" json:""` + // Server is a common server metadata. + ServerMetadata `protobuf:"bytes,2,opt,name=Server,proto3,embedded=Server" json:""` + // ResourceMetadata is common resource event metadata + ResourceMetadata `protobuf:"bytes,3,opt,name=Resource,proto3,embedded=Resource" json:""` + // Status indicates whether the assignment processing was successful. + Status `protobuf:"bytes,4,opt,name=Status,proto3,embedded=Status" json:""` + // OktaAssignmentMetadata is common Okta assignment metadata. + OktaAssignmentMetadata `protobuf:"bytes,5,opt,name=OktaAssignment,proto3,embedded=OktaAssignment" json:""` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *OktaAssignmentResult) Reset() { *m = OktaAssignmentResult{} } +func (m *OktaAssignmentResult) String() string { return proto.CompactTextString(m) } +func (*OktaAssignmentResult) ProtoMessage() {} +func (*OktaAssignmentResult) Descriptor() ([]byte, []int) { + return fileDescriptor_007ba1c3d6266d56, []int{150} +} +func (m *OktaAssignmentResult) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *OktaAssignmentResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_OktaAssignmentResult.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 *OktaAssignmentResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_OktaAssignmentResult.Merge(m, src) +} +func (m *OktaAssignmentResult) XXX_Size() int { + return m.Size() +} +func (m *OktaAssignmentResult) XXX_DiscardUnknown() { + xxx_messageInfo_OktaAssignmentResult.DiscardUnknown(m) +} + +var xxx_messageInfo_OktaAssignmentResult proto.InternalMessageInfo + func init() { proto.RegisterEnum("events.EventAction", EventAction_name, EventAction_value) proto.RegisterEnum("events.SFTPAction", SFTPAction_name, SFTPAction_value) @@ -9406,6 +9681,8 @@ func init() { proto.RegisterMapType((map[string]string)(nil), "events.KubernetesClusterMetadata.KubernetesLabelsEntry") proto.RegisterType((*KubernetesPodMetadata)(nil), "events.KubernetesPodMetadata") proto.RegisterType((*SAMLIdPServiceProviderMetadata)(nil), "events.SAMLIdPServiceProviderMetadata") + proto.RegisterType((*OktaResourcesUpdatedMetadata)(nil), "events.OktaResourcesUpdatedMetadata") + proto.RegisterType((*OktaAssignmentMetadata)(nil), "events.OktaAssignmentMetadata") proto.RegisterType((*SessionStart)(nil), "events.SessionStart") proto.RegisterType((*SessionJoin)(nil), "events.SessionJoin") proto.RegisterType((*SessionPrint)(nil), "events.SessionPrint") @@ -9551,6 +9828,9 @@ func init() { proto.RegisterType((*SAMLIdPServiceProviderUpdate)(nil), "events.SAMLIdPServiceProviderUpdate") proto.RegisterType((*SAMLIdPServiceProviderDelete)(nil), "events.SAMLIdPServiceProviderDelete") proto.RegisterType((*SAMLIdPServiceProviderDeleteAll)(nil), "events.SAMLIdPServiceProviderDeleteAll") + proto.RegisterType((*OktaResourcesUpdate)(nil), "events.OktaResourcesUpdate") + proto.RegisterType((*OktaSyncFailure)(nil), "events.OktaSyncFailure") + proto.RegisterType((*OktaAssignmentResult)(nil), "events.OktaAssignmentResult") } func init() { @@ -9558,670 +9838,688 @@ func init() { } var fileDescriptor_007ba1c3d6266d56 = []byte{ - // 10601 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x8c, 0x24, 0xc7, - 0x79, 0xd8, 0xce, 0x63, 0xe7, 0x51, 0xb3, 0x8f, 0xd9, 0xba, 0x3b, 0x5e, 0xf3, 0x78, 0xbc, 0x21, - 0x9b, 0xd2, 0xf1, 0x8e, 0x3a, 0xee, 0x89, 0x77, 0x27, 0x9e, 0x48, 0x89, 0x22, 0x67, 0x67, 0x66, - 0x6f, 0x87, 0xb7, 0x8f, 0x61, 0xcf, 0x1e, 0x8f, 0x92, 0x2c, 0x8e, 0x7b, 0xa7, 0xeb, 0x76, 0x9b, - 0x3b, 0x33, 0x3d, 0xea, 0xee, 0xb9, 0xbd, 0xe5, 0x2f, 0x0b, 0x71, 0x12, 0x25, 0x50, 0x8c, 0xc0, - 0x86, 0xe1, 0x1f, 0xf9, 0x61, 0x3b, 0x40, 0x80, 0x04, 0x31, 0x2c, 0x38, 0x30, 0xec, 0x18, 0x89, - 0x91, 0x87, 0x94, 0x84, 0x8e, 0x62, 0xd9, 0x8e, 0x03, 0x07, 0xc8, 0x8f, 0x51, 0xa2, 0x20, 0x08, - 0xb0, 0x48, 0x02, 0x21, 0x11, 0x10, 0x27, 0x41, 0x12, 0xa3, 0xbe, 0xaa, 0xee, 0xae, 0xea, 0xee, - 0xd9, 0xc7, 0xed, 0xd1, 0xab, 0xe5, 0xee, 0x9f, 0xbb, 0x9d, 0xef, 0x55, 0xd5, 0x5f, 0x7d, 0x55, - 0xf5, 0x55, 0xd5, 0x57, 0x5f, 0xa1, 0xab, 0x2e, 0xe9, 0x90, 0xbe, 0x65, 0xbb, 0xd7, 0x3b, 0x64, - 0x5d, 0x6f, 0x6f, 0x5f, 0x77, 0xb7, 0xfb, 0xc4, 0xb9, 0x4e, 0x1e, 0x92, 0x9e, 0xeb, 0xfd, 0x37, - 0xdb, 0xb7, 0x2d, 0xd7, 0xc2, 0x19, 0xf6, 0xeb, 0xc2, 0xd9, 0x75, 0x6b, 0xdd, 0x02, 0xd0, 0x75, - 0xfa, 0x17, 0xc3, 0x5e, 0xb8, 0xb8, 0x6e, 0x59, 0xeb, 0x1d, 0x72, 0x1d, 0x7e, 0xad, 0x0d, 0x1e, - 0x5c, 0x77, 0x5c, 0x7b, 0xd0, 0x76, 0x39, 0xb6, 0x14, 0xc6, 0xba, 0x66, 0x97, 0x38, 0xae, 0xde, - 0xed, 0x73, 0x82, 0x4b, 0x61, 0x82, 0x2d, 0x5b, 0xef, 0xf7, 0x89, 0xcd, 0x0b, 0xbf, 0xf0, 0x7c, - 0x7c, 0x3d, 0xe1, 0x5f, 0x4e, 0xf2, 0x72, 0x3c, 0x89, 0x27, 0x28, 0x24, 0x51, 0xfd, 0xf9, 0x24, - 0xca, 0x2d, 0x11, 0x57, 0x37, 0x74, 0x57, 0xc7, 0x17, 0xd1, 0x78, 0xbd, 0x67, 0x90, 0x47, 0x4a, - 0xe2, 0xb9, 0xc4, 0x95, 0xd4, 0x5c, 0x66, 0x67, 0x58, 0x4a, 0x12, 0x53, 0x63, 0x40, 0xfc, 0x2c, - 0x4a, 0xaf, 0x6e, 0xf7, 0x89, 0x92, 0x7c, 0x2e, 0x71, 0x25, 0x3f, 0x97, 0xdf, 0x19, 0x96, 0xc6, - 0x41, 0x17, 0x1a, 0x80, 0xf1, 0xf3, 0x28, 0x59, 0xaf, 0x2a, 0x29, 0x40, 0xce, 0xec, 0x0c, 0x4b, - 0x93, 0x03, 0xd3, 0xb8, 0x66, 0x75, 0x4d, 0x97, 0x74, 0xfb, 0xee, 0xb6, 0x96, 0xac, 0x57, 0xf1, - 0x65, 0x94, 0xae, 0x58, 0x06, 0x51, 0xd2, 0x40, 0x84, 0x77, 0x86, 0xa5, 0xa9, 0xb6, 0x65, 0x10, - 0x81, 0x0a, 0xf0, 0xf8, 0x2d, 0x94, 0x5e, 0x35, 0xbb, 0x44, 0x19, 0x7f, 0x2e, 0x71, 0xa5, 0x70, - 0xe3, 0xc2, 0x2c, 0xd3, 0xca, 0xac, 0xa7, 0x95, 0xd9, 0x55, 0x4f, 0x6d, 0x73, 0xc5, 0x8f, 0x86, - 0xa5, 0xb1, 0x9d, 0x61, 0x29, 0x4d, 0x35, 0xf9, 0xd7, 0x7f, 0x50, 0x4a, 0x68, 0xc0, 0x89, 0xbf, - 0x88, 0x0a, 0x95, 0xce, 0xc0, 0x71, 0x89, 0xbd, 0xac, 0x77, 0x89, 0x92, 0x81, 0x02, 0x2f, 0xec, - 0x0c, 0x4b, 0x4f, 0xb5, 0x19, 0xb8, 0xd5, 0xd3, 0xbb, 0x62, 0xc1, 0x22, 0xb9, 0xfa, 0x01, 0x9a, - 0x6e, 0x12, 0xc7, 0x31, 0xad, 0x9e, 0xaf, 0x9a, 0x4f, 0xa3, 0x3c, 0x07, 0xd5, 0xab, 0xa0, 0x9e, - 0xfc, 0x5c, 0x76, 0x67, 0x58, 0x4a, 0x39, 0xa6, 0xa1, 0x05, 0x18, 0xfc, 0x59, 0x94, 0xbd, 0x6f, - 0xba, 0x1b, 0x4b, 0xf3, 0x65, 0xae, 0xa6, 0xa7, 0x76, 0x86, 0x25, 0xbc, 0x65, 0xba, 0x1b, 0xad, - 0xee, 0x03, 0x5d, 0x28, 0xcf, 0x23, 0x53, 0x7f, 0x31, 0x8d, 0x26, 0xee, 0x39, 0xc4, 0xf6, 0x4b, - 0xba, 0x8c, 0xd2, 0xf4, 0x37, 0x2f, 0x04, 0x94, 0x34, 0x70, 0x88, 0x2d, 0x2a, 0x89, 0xe2, 0xf1, - 0x55, 0x34, 0xbe, 0x68, 0xad, 0x9b, 0x3d, 0x5e, 0xd0, 0x99, 0x9d, 0x61, 0x69, 0xba, 0x43, 0x01, - 0x02, 0x25, 0xa3, 0xc0, 0x5f, 0x42, 0x13, 0xf5, 0x2e, 0x6d, 0x74, 0xab, 0xa7, 0xbb, 0x96, 0xcd, - 0x1b, 0x09, 0xd4, 0x61, 0x0a, 0x70, 0x81, 0x51, 0xa2, 0xc7, 0xaf, 0x23, 0x54, 0xbe, 0xdf, 0xd4, - 0xac, 0x0e, 0x29, 0x6b, 0xcb, 0xbc, 0xf5, 0x80, 0x5b, 0xdf, 0x72, 0x5a, 0xb6, 0xd5, 0x21, 0x2d, - 0xdd, 0x16, 0x8b, 0x15, 0xa8, 0x71, 0x0d, 0x4d, 0x95, 0xdb, 0x6d, 0xe2, 0x38, 0x1a, 0xf9, 0xfa, - 0x80, 0x38, 0xae, 0xa3, 0x8c, 0x3f, 0x97, 0xba, 0x92, 0x9f, 0x7b, 0x76, 0x67, 0x58, 0x7a, 0x5a, - 0x07, 0x4c, 0xcb, 0xe6, 0x28, 0x41, 0x44, 0x88, 0x09, 0xcf, 0xa1, 0xc9, 0xf2, 0x87, 0x03, 0x9b, - 0xd4, 0x0d, 0xd2, 0x73, 0x4d, 0x77, 0x9b, 0x37, 0xe9, 0xc5, 0x9d, 0x61, 0x49, 0xd1, 0x29, 0xa2, - 0x65, 0x72, 0x8c, 0x20, 0x44, 0x66, 0xc1, 0x2b, 0x68, 0xe6, 0x4e, 0xa5, 0xd1, 0x24, 0xf6, 0x43, - 0xb3, 0x4d, 0xca, 0xed, 0xb6, 0x35, 0xe8, 0xb9, 0x4a, 0x16, 0xe4, 0x3c, 0xbf, 0x33, 0x2c, 0x3d, - 0xbb, 0xde, 0xee, 0xb7, 0x1c, 0x86, 0x6d, 0xe9, 0x0c, 0x2d, 0x08, 0x8b, 0xf2, 0xe2, 0xaf, 0xa0, - 0xc9, 0x55, 0x9b, 0x9a, 0x8d, 0x51, 0x25, 0x14, 0xae, 0xe4, 0xc0, 0x60, 0x9f, 0x9a, 0xe5, 0x23, - 0x06, 0x83, 0x7a, 0x2d, 0xcb, 0x2a, 0xeb, 0x32, 0x86, 0x96, 0x01, 0x38, 0xb1, 0xb2, 0x92, 0x28, - 0xf5, 0xbf, 0xa5, 0xd0, 0x14, 0x2d, 0x4e, 0xb0, 0x8c, 0x32, 0x35, 0x4b, 0x0a, 0xa1, 0x46, 0xea, - 0xf4, 0xf5, 0x36, 0xe1, 0x46, 0x72, 0x7e, 0x67, 0x58, 0x3a, 0xd3, 0xf3, 0x80, 0x82, 0xcc, 0x30, - 0x3d, 0xbe, 0x8a, 0x72, 0x0c, 0x54, 0xaf, 0x72, 0xbb, 0x99, 0xdc, 0x19, 0x96, 0xf2, 0x0e, 0xc0, - 0x5a, 0xa6, 0xa1, 0xf9, 0x68, 0xda, 0x70, 0xec, 0xef, 0x05, 0xcb, 0x71, 0xa9, 0x70, 0x6e, 0x36, - 0xd0, 0x70, 0x9c, 0x61, 0x83, 0xa3, 0xc4, 0x86, 0x93, 0x99, 0xf0, 0x6b, 0x08, 0x31, 0x48, 0xd9, - 0x30, 0x6c, 0x6e, 0x3b, 0x4f, 0xef, 0x0c, 0x4b, 0xe7, 0xb8, 0x08, 0xdd, 0x30, 0x44, 0xc3, 0x13, - 0x88, 0x71, 0x17, 0x4d, 0xb0, 0x5f, 0x8b, 0xfa, 0x1a, 0xe9, 0x30, 0xc3, 0x29, 0xdc, 0xb8, 0xe2, - 0x69, 0x57, 0xd6, 0xce, 0xac, 0x48, 0x5a, 0xeb, 0xb9, 0xf6, 0xf6, 0x5c, 0x89, 0x0f, 0x0e, 0xe7, - 0x79, 0x51, 0x1d, 0xc0, 0x89, 0x56, 0x2e, 0xf2, 0xd0, 0x31, 0x63, 0xde, 0xb2, 0xb7, 0x74, 0xdb, - 0x20, 0xc6, 0xdc, 0xb6, 0x38, 0x66, 0x3c, 0xf0, 0xc0, 0xad, 0x35, 0xd1, 0xbc, 0x44, 0xf2, 0x0b, - 0x6f, 0xa2, 0x99, 0x48, 0x0d, 0x70, 0x11, 0xa5, 0x36, 0xc9, 0x36, 0x6b, 0x25, 0x8d, 0xfe, 0x89, - 0xcf, 0xa2, 0xf1, 0x87, 0x7a, 0x67, 0xc0, 0x47, 0x51, 0x8d, 0xfd, 0x78, 0x3d, 0xf9, 0xf9, 0x84, - 0xfa, 0xf7, 0x13, 0x08, 0x57, 0xac, 0x5e, 0x8f, 0xb4, 0x5d, 0x71, 0xe0, 0x79, 0x15, 0xe5, 0x17, - 0xad, 0xb6, 0xde, 0x01, 0xf5, 0xb1, 0xe6, 0x56, 0x76, 0x86, 0xa5, 0xb3, 0x54, 0x6f, 0xb3, 0x1d, - 0x8a, 0x11, 0x6a, 0x14, 0x90, 0x52, 0xbd, 0x6b, 0xa4, 0x6b, 0xb9, 0x04, 0x18, 0x93, 0x81, 0xde, - 0x81, 0xd1, 0x06, 0x94, 0xa8, 0xf7, 0x80, 0x18, 0x5f, 0x47, 0xb9, 0x06, 0x1d, 0x6a, 0xdb, 0x56, - 0x87, 0xb7, 0x39, 0x0c, 0x2e, 0x30, 0xfc, 0x0a, 0x2c, 0x3e, 0x91, 0xba, 0x80, 0xa6, 0x2a, 0x1d, - 0x93, 0xf4, 0x5c, 0xb1, 0xd6, 0x74, 0x90, 0x2a, 0xaf, 0x93, 0x9e, 0x2b, 0xd6, 0x9a, 0x8e, 0x64, - 0x2d, 0x9d, 0x42, 0xc5, 0x5a, 0xfb, 0xa4, 0xea, 0xf7, 0x53, 0xe8, 0xe9, 0xbb, 0x83, 0x35, 0x62, - 0xf7, 0x88, 0x4b, 0x1c, 0x3e, 0x26, 0xfb, 0x52, 0x97, 0xd1, 0x4c, 0x04, 0xc9, 0xa5, 0x3f, 0xb7, - 0x33, 0x2c, 0x5d, 0xdc, 0xf4, 0x91, 0x2d, 0x3e, 0xcc, 0x8b, 0xfd, 0x37, 0xc2, 0x8a, 0x17, 0xd0, - 0x74, 0x00, 0xa4, 0x95, 0x70, 0x94, 0x24, 0x0c, 0x4e, 0x97, 0x76, 0x86, 0xa5, 0x0b, 0x82, 0x34, - 0x5a, 0x6d, 0xd1, 0x70, 0xc2, 0x6c, 0xf8, 0x2e, 0x2a, 0x06, 0xa0, 0x3b, 0xb6, 0x35, 0xe8, 0x3b, - 0x4a, 0x0a, 0x44, 0x95, 0x76, 0x86, 0xa5, 0x67, 0x04, 0x51, 0xeb, 0x80, 0x14, 0x64, 0x45, 0x18, - 0xf1, 0xcf, 0x26, 0x44, 0x69, 0xdc, 0xf8, 0xd3, 0x60, 0xfc, 0xb7, 0x3d, 0xe3, 0x1f, 0xa9, 0xa4, - 0xd9, 0x30, 0x27, 0xef, 0x0b, 0xa1, 0x6a, 0x44, 0xfa, 0x42, 0xa4, 0xc4, 0x0b, 0x15, 0x74, 0x2e, - 0x56, 0xd6, 0x81, 0xac, 0xfa, 0x3f, 0xa5, 0x44, 0x29, 0x0d, 0xcb, 0xf0, 0x1b, 0x73, 0x45, 0x6c, - 0xcc, 0x86, 0x65, 0xc0, 0x44, 0x9d, 0x08, 0x46, 0x63, 0xa1, 0xb2, 0x7d, 0xcb, 0x08, 0xcf, 0xd7, - 0x51, 0x5e, 0xfc, 0x3e, 0x7a, 0x2a, 0x02, 0x64, 0xa3, 0x24, 0xb3, 0xfe, 0xcb, 0x3b, 0xc3, 0x92, - 0x1a, 0x23, 0x35, 0x3c, 0x68, 0x8e, 0x90, 0x82, 0x75, 0x74, 0x5e, 0xd0, 0xba, 0xd5, 0x73, 0x75, - 0xb3, 0xc7, 0xfd, 0x0b, 0xd6, 0x4b, 0x5e, 0xdc, 0x19, 0x96, 0x5e, 0x10, 0x6d, 0xd0, 0xa3, 0x09, - 0x57, 0x7e, 0x94, 0x1c, 0x6c, 0x20, 0x25, 0x06, 0x55, 0xef, 0xea, 0xeb, 0x9e, 0xd3, 0x74, 0x65, - 0x67, 0x58, 0xfa, 0x54, 0x6c, 0x19, 0x26, 0xa5, 0x12, 0x0a, 0x19, 0x29, 0x09, 0x6b, 0x08, 0x07, - 0xb8, 0x65, 0xcb, 0x20, 0xf0, 0x0d, 0xe3, 0x20, 0x5f, 0xdd, 0x19, 0x96, 0x2e, 0x09, 0xf2, 0x7b, - 0x96, 0x41, 0xc2, 0xd5, 0x8f, 0xe1, 0x56, 0xff, 0x73, 0x02, 0x5d, 0x6a, 0x96, 0x97, 0x16, 0xeb, - 0x86, 0x37, 0x49, 0x36, 0x6c, 0xeb, 0xa1, 0x69, 0x08, 0xbd, 0x77, 0x0d, 0x9d, 0x0f, 0xa1, 0x6a, - 0x30, 0x2f, 0xfb, 0x0e, 0x15, 0x7c, 0x9b, 0x37, 0x01, 0xf7, 0x39, 0x4d, 0x8b, 0x4d, 0xde, 0x2d, - 0xc9, 0x99, 0x1c, 0x25, 0x88, 0xb6, 0x51, 0x08, 0xd5, 0xdc, 0xb0, 0x6c, 0xb7, 0x3d, 0x70, 0xb9, - 0x11, 0x40, 0x1b, 0x45, 0xca, 0x70, 0x38, 0xd1, 0x2e, 0x45, 0x78, 0x72, 0xd4, 0x1f, 0x8c, 0xd3, - 0x69, 0x09, 0x1c, 0xbe, 0xa6, 0xab, 0xdb, 0x2e, 0x7e, 0x3d, 0xf0, 0xa0, 0xe1, 0x43, 0x0a, 0x37, - 0x8a, 0x5e, 0x2f, 0xf5, 0xa7, 0xfe, 0x09, 0x3a, 0x15, 0xfd, 0xe1, 0xb0, 0x94, 0xd8, 0x19, 0x96, - 0xc6, 0xb4, 0x9c, 0x30, 0x4e, 0x32, 0x67, 0x2f, 0x09, 0x7c, 0x67, 0x3d, 0x3e, 0xd1, 0x21, 0x0c, - 0xf1, 0x32, 0xe7, 0xef, 0x4d, 0x94, 0xe5, 0x75, 0x00, 0xdb, 0x2b, 0xdc, 0x38, 0x1f, 0xcc, 0x8a, - 0x92, 0xe3, 0x1a, 0xe2, 0xf6, 0xb8, 0xf0, 0x17, 0x51, 0x86, 0x4d, 0x57, 0x60, 0x57, 0x82, 0xcf, - 0x22, 0xcf, 0xaa, 0x21, 0x76, 0xce, 0x83, 0x17, 0x10, 0x0a, 0xa6, 0x2a, 0xdf, 0x4d, 0xe7, 0x12, - 0xa2, 0x93, 0x58, 0x48, 0x8a, 0xc0, 0x8b, 0x5f, 0x45, 0x13, 0xab, 0xc4, 0xee, 0x9a, 0x3d, 0xbd, - 0xd3, 0x34, 0x3f, 0xf4, 0x3c, 0x75, 0xf0, 0x7a, 0x1d, 0xf3, 0x43, 0xd1, 0xea, 0x24, 0x3a, 0xfc, - 0xb5, 0xb8, 0xa9, 0x20, 0x0b, 0x15, 0x79, 0x7e, 0xcf, 0x31, 0x32, 0x54, 0x9f, 0x98, 0x99, 0xe1, - 0x1d, 0x34, 0x29, 0x8d, 0x02, 0xdc, 0xb3, 0x7b, 0x36, 0x2a, 0x5a, 0x18, 0xd2, 0x42, 0x62, 0x65, - 0x09, 0xd4, 0x9f, 0xaa, 0xf7, 0x4c, 0xd7, 0xd4, 0x3b, 0x15, 0xab, 0xdb, 0xd5, 0x7b, 0x86, 0x92, - 0x0f, 0x1c, 0x61, 0x93, 0x61, 0x5a, 0x6d, 0x86, 0x12, 0xfd, 0x29, 0x99, 0x89, 0xce, 0x34, 0xbc, - 0x0d, 0x35, 0xd2, 0xb6, 0x6c, 0xc3, 0xec, 0xad, 0x2b, 0x08, 0x94, 0x06, 0x43, 0xbc, 0xc3, 0x70, - 0x2d, 0xdb, 0x43, 0x8a, 0x43, 0x7c, 0x98, 0xf1, 0xed, 0x74, 0xae, 0x50, 0x9c, 0x08, 0xfb, 0xda, - 0xea, 0xdf, 0x49, 0xa1, 0x02, 0x27, 0x7d, 0xdb, 0x32, 0x7b, 0xa7, 0x06, 0x7e, 0x18, 0x03, 0x8f, - 0x35, 0xd4, 0xcc, 0x93, 0x32, 0x54, 0xf5, 0x5b, 0x49, 0x7f, 0x34, 0x6a, 0xd8, 0x66, 0xef, 0x70, - 0xa3, 0xd1, 0x65, 0x84, 0x2a, 0x1b, 0x83, 0xde, 0x26, 0xdb, 0x04, 0x48, 0x06, 0x9b, 0x00, 0x6d, - 0x53, 0x13, 0x30, 0xf8, 0x59, 0x94, 0xae, 0x52, 0xf9, 0xb4, 0x65, 0x26, 0xe6, 0xf2, 0x1f, 0x31, - 0x49, 0x89, 0x97, 0x35, 0x00, 0xe3, 0x12, 0x1a, 0x9f, 0xdb, 0x76, 0x89, 0x03, 0x9a, 0x4f, 0xb1, - 0x9d, 0x82, 0x35, 0x0a, 0xd0, 0x18, 0x1c, 0xdf, 0x42, 0x33, 0x55, 0xd2, 0xd1, 0xb7, 0x97, 0xcc, - 0x4e, 0xc7, 0x74, 0x48, 0xdb, 0xea, 0x19, 0x0e, 0x28, 0x99, 0x17, 0xd7, 0x75, 0xb4, 0x28, 0x01, - 0x56, 0x51, 0x66, 0xe5, 0xc1, 0x03, 0x87, 0xb8, 0xa0, 0xbe, 0xd4, 0x1c, 0xda, 0x19, 0x96, 0x32, - 0x16, 0x40, 0x34, 0x8e, 0x51, 0xbf, 0x9d, 0x40, 0xc5, 0x2a, 0x71, 0x36, 0x5d, 0xab, 0xef, 0x5b, - 0xf9, 0xa1, 0x54, 0x72, 0x15, 0x65, 0x97, 0x88, 0xe3, 0xd0, 0x09, 0x38, 0x09, 0x5f, 0x3b, 0xcd, - 0xbf, 0x36, 0xdb, 0x65, 0x60, 0xcd, 0xc3, 0xc7, 0x7f, 0x55, 0x6a, 0x8f, 0xaf, 0x52, 0x7f, 0x94, - 0x44, 0xe7, 0x79, 0x8d, 0x2b, 0x1d, 0xb3, 0xbf, 0x66, 0xe9, 0xb6, 0xa1, 0x91, 0x36, 0x31, 0x1f, - 0x92, 0xe3, 0xd9, 0xf1, 0xe4, 0xae, 0x93, 0x3e, 0x44, 0xd7, 0xb9, 0x81, 0x0a, 0x5c, 0x33, 0xb0, - 0x86, 0x61, 0x0e, 0x4a, 0x71, 0x67, 0x58, 0x9a, 0x30, 0x18, 0x18, 0x16, 0x8f, 0x9a, 0x48, 0x44, - 0x8d, 0x64, 0x91, 0xf4, 0xd6, 0xdd, 0x0d, 0x30, 0x92, 0x71, 0x66, 0x24, 0x1d, 0x80, 0x68, 0x1c, - 0xa3, 0xfe, 0xd7, 0x24, 0x3a, 0x1b, 0x56, 0x79, 0x93, 0xf4, 0x8c, 0x53, 0x7d, 0x7f, 0x3c, 0xfa, - 0xfe, 0x71, 0x0a, 0x3d, 0xc3, 0x79, 0x9a, 0x1b, 0xba, 0x4d, 0x8c, 0xaa, 0x69, 0x93, 0xb6, 0x6b, - 0xd9, 0xdb, 0xc7, 0xd8, 0x81, 0x7a, 0x72, 0x6a, 0xbf, 0x85, 0x32, 0x4d, 0x57, 0x77, 0x07, 0x0e, - 0x9f, 0x67, 0xa6, 0xfc, 0x9a, 0x00, 0x34, 0x32, 0x43, 0x01, 0x34, 0xdc, 0x58, 0x99, 0xfd, 0x34, - 0xd6, 0xe7, 0xd1, 0xa4, 0xaf, 0x7a, 0xf0, 0xf9, 0xb3, 0x81, 0xb7, 0x65, 0x78, 0x08, 0xf0, 0xf6, - 0x35, 0x99, 0x10, 0x4a, 0xf3, 0x00, 0xf5, 0x2a, 0x78, 0x43, 0x93, 0xbc, 0x34, 0x9f, 0xcf, 0x34, - 0x34, 0x91, 0x48, 0x1d, 0xa6, 0xd1, 0x85, 0xf8, 0x66, 0xd7, 0x88, 0x6e, 0x9c, 0xb6, 0xfa, 0x27, - 0xb2, 0xd5, 0xf1, 0xf3, 0x28, 0xdd, 0xd0, 0xdd, 0x0d, 0x25, 0x1f, 0xec, 0x2e, 0x3e, 0x30, 0x3b, - 0xa4, 0xd5, 0xd7, 0xdd, 0x0d, 0x0d, 0x50, 0xc2, 0x98, 0x81, 0x40, 0x62, 0xcc, 0x98, 0x21, 0x4c, - 0xf6, 0x85, 0xe7, 0x12, 0x57, 0xd2, 0xb1, 0x93, 0xfd, 0x0f, 0xd2, 0xa3, 0xc6, 0x95, 0xfb, 0xb6, - 0xe9, 0x92, 0x53, 0x0b, 0x3b, 0xb5, 0xb0, 0x43, 0x5a, 0xd8, 0xbf, 0x4e, 0xa2, 0x49, 0x7f, 0xd1, - 0xf4, 0x01, 0x69, 0x1f, 0xcd, 0x5c, 0x15, 0x2c, 0x65, 0x52, 0x87, 0x5e, 0xca, 0x1c, 0xc6, 0xa0, - 0x54, 0x94, 0xd1, 0x88, 0xee, 0xf0, 0x05, 0x51, 0x9e, 0x69, 0xcc, 0x06, 0x88, 0xc6, 0x31, 0xf8, - 0x79, 0x94, 0x5d, 0xd2, 0x1f, 0x99, 0xdd, 0x41, 0x97, 0x7b, 0xe9, 0x70, 0x4a, 0xd6, 0xd5, 0x1f, - 0x69, 0x1e, 0x5c, 0xfd, 0x37, 0x09, 0x34, 0xc5, 0x95, 0xca, 0x85, 0x1f, 0x4a, 0xab, 0x81, 0x76, - 0x92, 0x87, 0xd6, 0x4e, 0xea, 0xf1, 0xb5, 0xa3, 0x7e, 0x3b, 0x4d, 0xd5, 0xe3, 0x98, 0x1f, 0x9e, - 0xf8, 0x81, 0x27, 0x68, 0x91, 0xf1, 0xc7, 0x68, 0x91, 0x13, 0xb3, 0x23, 0xa4, 0xfe, 0xcf, 0x2c, - 0x42, 0x5c, 0xfb, 0xb5, 0xd3, 0xd5, 0xc7, 0xe1, 0xac, 0xa6, 0x8a, 0x66, 0x6a, 0xbd, 0x0d, 0xbd, - 0xd7, 0x26, 0x46, 0xb0, 0x2f, 0x46, 0x4d, 0x27, 0xc7, 0x8e, 0xe0, 0x09, 0x47, 0x06, 0x1b, 0x63, - 0x5a, 0x94, 0x01, 0xbf, 0x82, 0x0a, 0xf5, 0x9e, 0x4b, 0x6c, 0xbd, 0xed, 0x9a, 0x0f, 0xd9, 0x34, - 0x96, 0x9b, 0x9b, 0xde, 0x19, 0x96, 0x0a, 0x66, 0x00, 0xd6, 0x44, 0x1a, 0x7c, 0x0b, 0x4d, 0x34, - 0x74, 0xdb, 0x35, 0xdb, 0x66, 0x5f, 0xef, 0xb9, 0x8e, 0x92, 0x83, 0x4d, 0x3d, 0x98, 0xc2, 0xfa, - 0x02, 0x5c, 0x93, 0xa8, 0xf0, 0xd7, 0x50, 0x1e, 0xd6, 0x3e, 0x10, 0xe6, 0x90, 0xdf, 0x33, 0xcc, - 0xe1, 0x85, 0xe0, 0x24, 0x93, 0x6d, 0xef, 0x39, 0x94, 0x39, 0xe8, 0x0a, 0x10, 0xf9, 0x10, 0x48, - 0xc4, 0xef, 0xa1, 0x6c, 0xad, 0x67, 0x80, 0x70, 0xb4, 0xa7, 0x70, 0x95, 0x0b, 0x7f, 0x2a, 0x10, - 0x6e, 0xf5, 0x43, 0xb2, 0x3d, 0x71, 0xf1, 0xbd, 0xac, 0xf0, 0xf1, 0xf5, 0xb2, 0x89, 0x8f, 0x61, - 0xdf, 0x75, 0xf2, 0x49, 0xed, 0xbb, 0x4e, 0x3d, 0xe6, 0xbe, 0xab, 0xfa, 0x21, 0x2a, 0xcc, 0x35, - 0xe6, 0xfd, 0xde, 0xfb, 0x34, 0x4a, 0x35, 0xf8, 0x29, 0x48, 0x9a, 0x4d, 0x98, 0x7d, 0xd3, 0xd0, - 0x28, 0x0c, 0x5f, 0x45, 0xb9, 0x0a, 0x1c, 0x19, 0xf2, 0x03, 0xfb, 0x34, 0x73, 0x78, 0xda, 0x00, - 0x83, 0x03, 0x7b, 0x0f, 0x8d, 0x3f, 0x8d, 0xb2, 0x0d, 0xdb, 0x5a, 0xb7, 0xf5, 0x2e, 0x3f, 0x8f, - 0x2a, 0xec, 0x0c, 0x4b, 0xd9, 0x3e, 0x03, 0x69, 0x1e, 0x4e, 0xfd, 0x85, 0x84, 0xe7, 0x17, 0x52, - 0x8e, 0xe6, 0x00, 0xf6, 0x7e, 0xa1, 0xec, 0x1c, 0xe3, 0x70, 0x18, 0x48, 0xf3, 0x70, 0xf8, 0x2a, - 0x1a, 0xaf, 0xd9, 0xb6, 0x65, 0x8b, 0x91, 0x26, 0x84, 0x02, 0xc4, 0x48, 0x13, 0xa0, 0xc0, 0xb7, - 0x51, 0x81, 0x8d, 0x39, 0x6c, 0xcb, 0x8c, 0xd5, 0xe3, 0xdc, 0xce, 0xb0, 0x34, 0xc3, 0xb7, 0xcb, - 0xc4, 0xe3, 0x73, 0x81, 0x52, 0xfd, 0x4e, 0x4a, 0x70, 0x0a, 0x98, 0xc6, 0x4f, 0xe0, 0xb6, 0xf3, - 0x4d, 0x94, 0x9a, 0x6b, 0xcc, 0xf3, 0x01, 0xf0, 0x8c, 0xc7, 0x2a, 0x98, 0x4a, 0x88, 0x8f, 0x52, - 0xe3, 0x8b, 0x28, 0xdd, 0xa0, 0xe6, 0x93, 0x01, 0xf3, 0xc8, 0xed, 0x0c, 0x4b, 0xe9, 0x3e, 0xb5, - 0x1f, 0x80, 0x02, 0x96, 0x7a, 0xcb, 0xcc, 0x25, 0x67, 0xd8, 0xc0, 0x51, 0xbe, 0x88, 0xd2, 0x65, - 0x7b, 0xfd, 0x21, 0x1f, 0xb5, 0x00, 0xab, 0xdb, 0xeb, 0x0f, 0x35, 0x80, 0xe2, 0xeb, 0x08, 0x69, - 0xc4, 0x1d, 0xd8, 0x3d, 0x88, 0xda, 0xca, 0xc3, 0x06, 0x0f, 0x8c, 0x86, 0x36, 0x40, 0x5b, 0x6d, - 0xcb, 0x20, 0x9a, 0x40, 0xa2, 0xfe, 0xad, 0xe0, 0xe4, 0xa0, 0x6a, 0x3a, 0x9b, 0xa7, 0x4d, 0x78, - 0x80, 0x26, 0xd4, 0xf9, 0x1e, 0x5a, 0xb4, 0x91, 0x4a, 0x68, 0x7c, 0xbe, 0xa3, 0xaf, 0x3b, 0xd0, - 0x86, 0xe3, 0x6c, 0x3f, 0xfd, 0x01, 0x05, 0x68, 0x0c, 0x1e, 0x6a, 0xa7, 0xdc, 0xde, 0xed, 0xf4, - 0x4b, 0xe3, 0x7e, 0x6f, 0x5b, 0x26, 0xee, 0x96, 0x65, 0x9f, 0x36, 0xd5, 0x7e, 0x9b, 0xea, 0x32, - 0xca, 0x36, 0xed, 0xb6, 0xb0, 0x36, 0x9e, 0xd8, 0x19, 0x96, 0x72, 0x8e, 0xdd, 0x66, 0xeb, 0x62, - 0x0f, 0x49, 0xe9, 0xaa, 0x8e, 0x0b, 0x74, 0xd9, 0x80, 0xce, 0x70, 0x5c, 0x4e, 0xc7, 0x91, 0x9c, - 0xae, 0x61, 0xd9, 0x2e, 0x6f, 0x38, 0x9f, 0xae, 0x6f, 0xd9, 0xae, 0xe6, 0x21, 0xf1, 0x67, 0x10, - 0x5a, 0xad, 0x34, 0xde, 0x25, 0x36, 0xa8, 0x8b, 0xf5, 0x45, 0x18, 0xae, 0x1f, 0x32, 0x90, 0x26, - 0xa0, 0xf1, 0x2a, 0xca, 0xaf, 0xf4, 0x89, 0xad, 0x83, 0x53, 0x46, 0x3d, 0x80, 0xa9, 0x1b, 0x2f, - 0x86, 0x54, 0xcb, 0xdb, 0x7d, 0x96, 0xff, 0xef, 0x93, 0xb3, 0xf9, 0xc5, 0xf2, 0x7e, 0x6a, 0x81, - 0x20, 0x7c, 0x1b, 0x65, 0xca, 0xcc, 0xcf, 0x2b, 0x80, 0x48, 0x5f, 0x65, 0x35, 0xfa, 0x1f, 0x43, - 0xb1, 0x45, 0xa1, 0x0e, 0x7f, 0x6b, 0x9c, 0x5c, 0xbd, 0x8a, 0x8a, 0xe1, 0x62, 0x70, 0x01, 0x65, - 0x2b, 0x2b, 0xcb, 0xcb, 0xb5, 0xca, 0x6a, 0x71, 0x0c, 0xe7, 0x50, 0xba, 0x59, 0x5b, 0xae, 0x16, - 0x13, 0xea, 0xaf, 0x09, 0x23, 0x08, 0x35, 0xad, 0xd3, 0xb3, 0xc7, 0x43, 0x6d, 0xe8, 0x17, 0xe1, - 0xc0, 0x6d, 0xd5, 0xd6, 0x7b, 0x4e, 0xd7, 0x74, 0x5d, 0x62, 0xf0, 0x59, 0x02, 0x0e, 0xa4, 0xdc, - 0x47, 0x5a, 0x04, 0x8f, 0xaf, 0xa1, 0x49, 0x80, 0xf1, 0x33, 0x28, 0x03, 0xac, 0x97, 0x33, 0xd8, - 0x8f, 0x34, 0x19, 0xa9, 0x7e, 0x2f, 0x38, 0x7e, 0x5c, 0x24, 0xfa, 0x71, 0x3d, 0xb2, 0xfa, 0x09, - 0x69, 0x2f, 0xf5, 0xef, 0xa6, 0x59, 0xd8, 0x1c, 0x8b, 0xda, 0x3d, 0x0a, 0x55, 0x06, 0x7b, 0x86, - 0xa9, 0x03, 0xec, 0x19, 0x5e, 0x43, 0x99, 0x25, 0xe2, 0x6e, 0x58, 0x06, 0x0f, 0x52, 0x3a, 0xbb, - 0x33, 0x2c, 0x15, 0xbb, 0x00, 0x11, 0xfc, 0x3d, 0x4e, 0x83, 0x37, 0x11, 0xf6, 0x42, 0x72, 0xcb, - 0xae, 0x6b, 0x9b, 0x6b, 0x03, 0x97, 0x78, 0x7b, 0x94, 0xe7, 0x23, 0xeb, 0x94, 0x26, 0x04, 0xd0, - 0x43, 0x5c, 0xd2, 0x59, 0xdd, 0x27, 0x0f, 0xc4, 0xfe, 0xef, 0x61, 0x29, 0xc3, 0x68, 0xb4, 0x18, - 0xb1, 0xf8, 0x1d, 0x94, 0x5f, 0x9a, 0x2f, 0xf3, 0xf0, 0x5c, 0x76, 0xec, 0xfe, 0xb4, 0xaf, 0x45, - 0x0f, 0xe1, 0xab, 0x04, 0x62, 0x14, 0xbb, 0x0f, 0xf4, 0x68, 0x74, 0x6e, 0x20, 0x85, 0x5a, 0x0b, - 0x8b, 0x76, 0xe4, 0xbb, 0x0b, 0xbe, 0xb5, 0xc8, 0x31, 0x90, 0x61, 0x5d, 0x31, 0x6c, 0xc8, 0x5a, - 0x72, 0x87, 0xb0, 0x96, 0xff, 0x92, 0x40, 0x45, 0x8d, 0x38, 0xd6, 0xc0, 0x0e, 0xbe, 0x00, 0x5f, - 0x46, 0x69, 0x21, 0x90, 0x0e, 0x76, 0x4d, 0x42, 0xd1, 0x5b, 0x80, 0xc7, 0x4d, 0x94, 0xad, 0x3d, - 0xea, 0x9b, 0x36, 0x71, 0xb8, 0x8d, 0xec, 0xb6, 0x42, 0x7c, 0x96, 0xaf, 0x10, 0x67, 0x08, 0x63, - 0x89, 0x2c, 0x0e, 0x19, 0x18, 0xa2, 0x3e, 0xfb, 0x86, 0xee, 0x42, 0xfc, 0x6c, 0x4a, 0x88, 0xfa, - 0x64, 0x40, 0x39, 0x7a, 0x36, 0x20, 0xc5, 0x2f, 0xa0, 0xd4, 0xea, 0xea, 0x22, 0x37, 0x1e, 0xb8, - 0x3b, 0xe0, 0xba, 0x62, 0x58, 0x2b, 0xc5, 0xaa, 0x3f, 0x9f, 0x44, 0x88, 0xda, 0x68, 0xc5, 0x26, - 0xfa, 0x11, 0x6d, 0xee, 0xcf, 0xa1, 0x9c, 0xa7, 0x70, 0xde, 0x3f, 0x14, 0x8f, 0x37, 0xdc, 0x10, - 0xe1, 0xb2, 0x3d, 0x3c, 0x75, 0xe6, 0x34, 0xab, 0x43, 0x58, 0x40, 0x27, 0xbf, 0x46, 0x61, 0x53, - 0x80, 0xc6, 0xe0, 0xf8, 0x33, 0x28, 0xcf, 0x1b, 0xd9, 0xf2, 0xce, 0x60, 0xd9, 0x92, 0xcf, 0x03, - 0x6a, 0x01, 0x5e, 0xfd, 0x6e, 0x82, 0x29, 0xa5, 0x4a, 0x3a, 0xe4, 0xf8, 0x2a, 0x45, 0xfd, 0x66, - 0x02, 0x61, 0x2a, 0xac, 0xa1, 0x3b, 0xce, 0x96, 0x65, 0x1b, 0x95, 0x0d, 0xbd, 0xb7, 0x7e, 0x24, - 0x9f, 0xa3, 0xfe, 0xf7, 0x71, 0x74, 0x46, 0x8a, 0x87, 0x3a, 0xe6, 0xf6, 0x76, 0x55, 0xb6, 0x37, - 0x58, 0xbc, 0x83, 0xbd, 0x89, 0x8b, 0x77, 0x66, 0x79, 0x9f, 0x42, 0x79, 0xfe, 0xcd, 0xf5, 0x2a, - 0xb7, 0x3c, 0x98, 0xf6, 0x4d, 0x43, 0x0b, 0x10, 0xf8, 0x65, 0x34, 0xc1, 0x7f, 0xd0, 0xd1, 0xdf, - 0xdb, 0x9f, 0x05, 0x3b, 0x76, 0x28, 0x40, 0x93, 0xd0, 0xf8, 0x73, 0x28, 0x4f, 0x8d, 0x73, 0x1d, - 0x2e, 0x9e, 0x64, 0x83, 0xeb, 0x0a, 0x86, 0x07, 0x14, 0x87, 0x04, 0x9f, 0x92, 0x4e, 0x29, 0xfc, - 0xac, 0x21, 0x17, 0x4c, 0x29, 0xec, 0xac, 0x41, 0x9c, 0x52, 0xf8, 0xa9, 0xc3, 0xfb, 0xa8, 0x50, - 0xee, 0xf5, 0x2c, 0x17, 0x5c, 0x4b, 0x87, 0x6f, 0xa8, 0x8d, 0x9c, 0x4b, 0x5e, 0x80, 0x30, 0xf8, - 0x80, 0x3e, 0x76, 0x32, 0x11, 0x05, 0xe2, 0x1b, 0xb4, 0x21, 0x1e, 0x9a, 0x64, 0x8b, 0xd8, 0x3c, - 0xd8, 0x0e, 0x36, 0x15, 0x6d, 0x0e, 0x13, 0x83, 0xe2, 0x3d, 0x3a, 0x3c, 0x87, 0x26, 0x1b, 0xb6, - 0xd5, 0xb7, 0x1c, 0x62, 0x30, 0x45, 0x15, 0x82, 0x1b, 0x2b, 0x7d, 0x8e, 0x68, 0x81, 0xc6, 0xc4, - 0x4b, 0x20, 0x12, 0x0b, 0x7e, 0x80, 0xce, 0x72, 0x65, 0x12, 0xc3, 0x6b, 0xd1, 0x7a, 0xd5, 0x51, - 0x26, 0x20, 0x18, 0x1c, 0x87, 0x8d, 0xa1, 0x5e, 0x9d, 0xbb, 0xe4, 0x6d, 0xe6, 0xd9, 0x1c, 0xd6, - 0x32, 0x0d, 0xb1, 0xa9, 0x63, 0xe5, 0xa9, 0xbf, 0x9b, 0xa0, 0x2b, 0x48, 0xef, 0x37, 0x7e, 0x59, - 0xbe, 0x3d, 0x95, 0x08, 0x76, 0x93, 0x78, 0x58, 0xbd, 0x74, 0x5d, 0x8a, 0xae, 0x5e, 0xef, 0x9a, - 0x3d, 0x83, 0x6f, 0x0f, 0xc1, 0xea, 0x75, 0xd3, 0xec, 0x19, 0x1a, 0x40, 0x29, 0x56, 0x88, 0x91, - 0x06, 0x2c, 0x9c, 0x04, 0xb2, 0x79, 0xa8, 0x8a, 0xa6, 0x9b, 0x83, 0x35, 0xaf, 0x6c, 0x20, 0x14, - 0xee, 0x17, 0x39, 0x83, 0xb5, 0x96, 0xf7, 0x21, 0xd2, 0xb5, 0x16, 0x99, 0x45, 0xfd, 0x76, 0x22, - 0xd4, 0x69, 0x8f, 0x70, 0x3c, 0x94, 0x7a, 0x51, 0x6a, 0x44, 0x2f, 0x52, 0x7f, 0x39, 0x89, 0x0a, - 0x74, 0x5d, 0xc7, 0xaf, 0x90, 0x1c, 0x49, 0x4d, 0x9f, 0xd8, 0xd9, 0x97, 0xe0, 0x36, 0xa6, 0x0f, - 0xe0, 0x36, 0x5e, 0x44, 0x69, 0x21, 0xd0, 0x88, 0x6d, 0x3e, 0xd1, 0xb5, 0x31, 0x40, 0xd5, 0x9f, - 0x49, 0x22, 0xf4, 0xde, 0x2b, 0xaf, 0x9c, 0x60, 0x05, 0xa9, 0x7f, 0x23, 0x81, 0xa6, 0xf9, 0x6e, - 0xa8, 0x70, 0x11, 0x31, 0xeb, 0xed, 0x63, 0x8b, 0xfd, 0x92, 0x81, 0x34, 0x0f, 0x47, 0x47, 0xac, - 0xda, 0x23, 0xd3, 0x85, 0x0d, 0x21, 0xe1, 0x26, 0x22, 0xe1, 0x30, 0x71, 0xc4, 0xf2, 0xe8, 0xf0, - 0xcb, 0xde, 0x3e, 0x6f, 0x2a, 0x18, 0xa6, 0x29, 0x43, 0x2d, 0x76, 0xaf, 0x57, 0xfd, 0xad, 0x34, - 0x4a, 0xd7, 0x1e, 0x91, 0xf6, 0x31, 0x6f, 0x1a, 0x61, 0xf5, 0x98, 0x3e, 0xe4, 0xea, 0xf1, 0x71, - 0x0e, 0xae, 0xde, 0x0c, 0xda, 0x33, 0x23, 0x17, 0x1f, 0x6a, 0xf9, 0x70, 0xf1, 0x5e, 0x4b, 0x1f, - 0xbf, 0x73, 0xcf, 0x7f, 0x96, 0x42, 0xa9, 0x66, 0xa5, 0x71, 0x6a, 0x37, 0x47, 0x6a, 0x37, 0xbb, - 0x1f, 0x0c, 0xa8, 0xfe, 0x5e, 0x5f, 0x2e, 0x88, 0xf5, 0x08, 0x6d, 0xeb, 0xfd, 0x38, 0x85, 0xa6, - 0x9a, 0xf3, 0xab, 0x0d, 0x61, 0xb9, 0x7d, 0x17, 0xe5, 0xe6, 0xcd, 0x0e, 0x81, 0x83, 0x7b, 0xd6, - 0xa4, 0x17, 0x23, 0x5e, 0xd8, 0xbd, 0x7a, 0xcf, 0x7d, 0xf5, 0xd6, 0xbb, 0x7a, 0x67, 0x40, 0x60, - 0xb1, 0xc7, 0xa2, 0x77, 0x1c, 0xf3, 0x43, 0xf2, 0x2b, 0x74, 0x35, 0xe9, 0x0b, 0xc0, 0x5f, 0x40, - 0xa9, 0x7b, 0xfc, 0xd8, 0x6b, 0x94, 0x9c, 0x9b, 0x37, 0x98, 0x1c, 0x3a, 0x08, 0xa6, 0x06, 0xa6, - 0x01, 0x12, 0x28, 0x17, 0x65, 0xbe, 0xc3, 0x27, 0xe0, 0x7d, 0x31, 0xaf, 0x7b, 0xcc, 0x77, 0xea, - 0x55, 0xdc, 0x44, 0x85, 0x06, 0xb1, 0xbb, 0x26, 0x34, 0x94, 0x37, 0x66, 0xef, 0x2e, 0x84, 0x3a, - 0xd6, 0x85, 0x7e, 0xc0, 0x04, 0xc2, 0x44, 0x29, 0xf8, 0xcb, 0x08, 0x31, 0x1f, 0x65, 0x9f, 0x77, - 0xdb, 0x9f, 0x05, 0x37, 0x95, 0xdd, 0x90, 0x76, 0x4d, 0x71, 0x0d, 0x0f, 0xab, 0x6e, 0x41, 0x18, - 0xde, 0x44, 0xc5, 0x25, 0xcb, 0x30, 0x1f, 0x98, 0x6d, 0x70, 0x58, 0xa1, 0x80, 0xcc, 0xde, 0xa7, - 0xca, 0x3b, 0xc3, 0xd2, 0x33, 0x5d, 0x81, 0x2f, 0xae, 0x98, 0x88, 0x60, 0xf5, 0x1f, 0x8d, 0xa3, - 0x34, 0x6d, 0xf6, 0xd3, 0xfe, 0x7b, 0x98, 0xfe, 0x5b, 0x46, 0xc5, 0xfb, 0x96, 0xbd, 0x69, 0xf6, - 0xd6, 0xfd, 0xd8, 0x36, 0xbe, 0x94, 0x82, 0xe3, 0xd2, 0x2d, 0x86, 0x6b, 0xf9, 0x61, 0x70, 0x5a, - 0x84, 0x7c, 0x8f, 0x1e, 0xfc, 0x1a, 0x42, 0xab, 0xba, 0xbd, 0x4e, 0x5c, 0xa0, 0xc9, 0x05, 0x17, - 0x80, 0x5d, 0x80, 0x42, 0xb8, 0x9c, 0x78, 0x01, 0x38, 0x20, 0xa6, 0x6b, 0x46, 0x76, 0xe0, 0x94, - 0x87, 0xe8, 0x39, 0x58, 0x33, 0xc2, 0x81, 0x93, 0xe8, 0x04, 0xb0, 0xa3, 0xa7, 0x06, 0x42, 0xc2, - 0x26, 0x1e, 0x0a, 0x29, 0x42, 0x1a, 0x1c, 0xf8, 0xbd, 0xe5, 0x98, 0x3d, 0x3c, 0x4d, 0x90, 0x81, - 0x5f, 0x0d, 0x9d, 0x32, 0x60, 0x49, 0xda, 0xc8, 0x43, 0x86, 0xe0, 0x94, 0x7a, 0x62, 0xaf, 0x53, - 0x6a, 0xf5, 0x5b, 0x49, 0x94, 0x6f, 0x0e, 0xd6, 0x9c, 0x6d, 0xc7, 0x25, 0xdd, 0x63, 0x6e, 0xc6, - 0xde, 0xf2, 0x2a, 0x1d, 0xbb, 0xbc, 0x7a, 0xc1, 0x53, 0x8a, 0xb0, 0x91, 0xe4, 0xbb, 0x74, 0x9e, - 0x3a, 0xfe, 0x5e, 0x12, 0x15, 0xd9, 0xee, 0x64, 0xd5, 0x74, 0xda, 0x4f, 0x20, 0x24, 0xef, 0xe8, - 0xb5, 0x72, 0xb8, 0x1d, 0xfd, 0x7d, 0x04, 0x3a, 0xaa, 0xdf, 0x48, 0xa2, 0x42, 0x79, 0xe0, 0x6e, - 0x94, 0x5d, 0xb0, 0xad, 0x13, 0xb9, 0x3e, 0xf9, 0xbd, 0x04, 0x9a, 0xa6, 0x15, 0x59, 0xb5, 0x36, - 0x49, 0xef, 0x09, 0xec, 0x93, 0x89, 0xfb, 0x5d, 0xc9, 0xc7, 0xdc, 0xef, 0xf2, 0x74, 0x99, 0x3a, - 0xe0, 0xbe, 0xdf, 0x77, 0x13, 0x08, 0x69, 0x56, 0x87, 0x7c, 0x42, 0x3e, 0xe3, 0x09, 0x6c, 0x80, - 0x1c, 0xe5, 0x67, 0x7c, 0x3f, 0x81, 0xce, 0xf2, 0x7c, 0x28, 0x7c, 0x21, 0x72, 0xcc, 0xdb, 0x25, - 0xfa, 0x41, 0xc7, 0xbc, 0x85, 0xfe, 0x38, 0x81, 0x9e, 0x96, 0x3f, 0xe8, 0x93, 0x30, 0x0a, 0xfc, - 0x41, 0x02, 0x9d, 0xbb, 0x63, 0xba, 0x1b, 0x83, 0x35, 0xff, 0x8c, 0xe5, 0x93, 0xf7, 0x45, 0xc7, - 0xdc, 0xf2, 0x7e, 0x3f, 0x81, 0xce, 0xac, 0xd4, 0xab, 0x95, 0x4f, 0x4a, 0x0b, 0x45, 0xbe, 0xe7, - 0x13, 0xd0, 0x3e, 0xcd, 0xf2, 0xd2, 0xe2, 0x27, 0xa9, 0x7d, 0xa4, 0xef, 0x39, 0xe6, 0xed, 0xf3, - 0x17, 0x32, 0xa8, 0x70, 0x77, 0xb0, 0x46, 0xf8, 0x61, 0xc4, 0x89, 0xf6, 0xf4, 0x6f, 0xa0, 0x02, - 0x57, 0x03, 0xac, 0x92, 0x85, 0x2b, 0xcf, 0x3c, 0x27, 0x1d, 0xbb, 0x55, 0x26, 0x12, 0xd1, 0x15, - 0xd7, 0xbb, 0xc4, 0x5e, 0x13, 0x83, 0x35, 0x1f, 0x12, 0x7b, 0x4d, 0x03, 0x28, 0x5e, 0x0c, 0x82, - 0x32, 0xca, 0x8d, 0x3a, 0x64, 0x74, 0xe2, 0x0b, 0x74, 0x48, 0x51, 0xe5, 0x1f, 0xcb, 0xe9, 0x7d, - 0x93, 0xe5, 0x82, 0x12, 0x03, 0xc5, 0xc3, 0x9c, 0x78, 0x19, 0xcd, 0x88, 0x07, 0x5d, 0x2c, 0x9d, - 0x51, 0x2e, 0x46, 0x5c, 0x5c, 0x22, 0xa3, 0x28, 0x2b, 0x7e, 0x13, 0x4d, 0x78, 0x40, 0x38, 0xb2, - 0x63, 0x77, 0xe8, 0x9e, 0xd9, 0x19, 0x96, 0xce, 0xfb, 0xa2, 0x36, 0x4d, 0x29, 0x10, 0x5e, 0x62, - 0x10, 0x05, 0xc0, 0xb2, 0x13, 0xc5, 0x08, 0x08, 0x05, 0x9c, 0x48, 0x0c, 0xf8, 0x73, 0x20, 0xa0, - 0x6f, 0xf5, 0x1c, 0x02, 0x87, 0x13, 0x05, 0x88, 0x64, 0x84, 0xa0, 0x0f, 0x9b, 0xc3, 0x59, 0xbc, - 0xaa, 0x44, 0x86, 0x57, 0x10, 0x0a, 0x36, 0x91, 0xf9, 0xad, 0x80, 0x03, 0x6f, 0x6f, 0x0b, 0x22, - 0xd4, 0x3f, 0xa2, 0xeb, 0xb7, 0x7e, 0xdf, 0xb7, 0xe4, 0x97, 0x51, 0xa6, 0xdc, 0xef, 0xdf, 0xd3, - 0xea, 0xfc, 0x58, 0x05, 0x76, 0x61, 0xf4, 0x7e, 0xbf, 0x35, 0xb0, 0x4d, 0xf1, 0xc4, 0x99, 0x11, - 0xe1, 0x0a, 0x9a, 0x2c, 0xf7, 0xfb, 0x8d, 0xc1, 0x5a, 0xc7, 0x6c, 0x0b, 0x19, 0xd6, 0x58, 0x56, - 0xc3, 0x7e, 0xbf, 0xd5, 0x07, 0x4c, 0x38, 0xbb, 0x9d, 0xcc, 0x83, 0xdf, 0x47, 0xf9, 0x72, 0xbf, - 0xcf, 0x13, 0x7c, 0xa5, 0xe0, 0x4c, 0x57, 0xf5, 0xbe, 0x49, 0xa8, 0xdb, 0xac, 0x4f, 0xc4, 0x72, - 0x79, 0x5d, 0xe4, 0x67, 0xbc, 0x67, 0x69, 0x41, 0x91, 0x44, 0x5e, 0x81, 0x48, 0xfc, 0x59, 0x94, - 0x2d, 0xf7, 0xfb, 0xc2, 0xf6, 0x00, 0x9c, 0x01, 0x51, 0xae, 0x50, 0x13, 0x79, 0x64, 0x17, 0xbe, - 0x88, 0xa6, 0xe4, 0xc2, 0x0e, 0x94, 0xec, 0xeb, 0x4f, 0x13, 0xf0, 0x41, 0xc7, 0x3c, 0x62, 0xe2, - 0x26, 0x4a, 0x95, 0xfb, 0x7d, 0x3e, 0x9c, 0x9c, 0x89, 0x69, 0x8f, 0x70, 0x58, 0x70, 0xb9, 0xdf, - 0xf7, 0x3e, 0x9d, 0xc5, 0x34, 0x9d, 0xac, 0x4f, 0xff, 0x0e, 0xfb, 0xf4, 0x63, 0x1e, 0x82, 0xf4, - 0x5b, 0x29, 0x34, 0x5d, 0xee, 0xf7, 0x4f, 0x33, 0x7b, 0x3d, 0xa9, 0xe0, 0xe3, 0x57, 0x10, 0x12, - 0x86, 0xc7, 0xac, 0x1f, 0xdb, 0x57, 0x10, 0x86, 0x46, 0x25, 0xa1, 0x09, 0x44, 0x9e, 0xf9, 0xe5, - 0x0e, 0x64, 0x7e, 0xdf, 0x48, 0xc1, 0x50, 0x7c, 0xdc, 0x2f, 0x52, 0xfe, 0xa4, 0x34, 0x1b, 0x6f, - 0x83, 0xcc, 0x81, 0xda, 0xe0, 0x9f, 0x48, 0x9d, 0x07, 0x32, 0x45, 0x9d, 0xb6, 0xc2, 0xf8, 0xa1, - 0xbc, 0xda, 0x29, 0x51, 0x99, 0xfc, 0x76, 0x17, 0x0f, 0x83, 0xf3, 0xee, 0x1a, 0xb6, 0x29, 0xaa, - 0x65, 0x1a, 0x5a, 0x88, 0xd6, 0x6b, 0xc3, 0xec, 0x81, 0xda, 0x70, 0x98, 0x44, 0x33, 0x41, 0x1b, - 0x3e, 0x89, 0xc5, 0xc1, 0x75, 0x84, 0xd8, 0x46, 0xb1, 0x1f, 0x85, 0x32, 0xc9, 0xae, 0x25, 0x39, - 0x00, 0xe5, 0xd7, 0x92, 0x02, 0x12, 0xff, 0x40, 0x2b, 0x15, 0x7b, 0xa0, 0x75, 0x15, 0xe5, 0x34, - 0x7d, 0xeb, 0x9d, 0x01, 0xb1, 0xb7, 0xb9, 0x3b, 0x03, 0xc7, 0x19, 0xb6, 0xbe, 0xd5, 0xfa, 0x3a, - 0x05, 0x6a, 0x3e, 0x1a, 0xab, 0x7e, 0x40, 0xba, 0xb0, 0x81, 0xcf, 0x02, 0xd2, 0xfd, 0x30, 0xf4, - 0xc7, 0x31, 0x74, 0xfc, 0x3a, 0x4a, 0x95, 0xef, 0x37, 0xb9, 0x66, 0xfd, 0xa6, 0x2d, 0xdf, 0x6f, - 0x72, 0x7d, 0x8d, 0xe4, 0xbd, 0xdf, 0x54, 0xbf, 0x91, 0x44, 0x38, 0x4a, 0x89, 0x5f, 0x45, 0x79, - 0x80, 0xae, 0x53, 0x9b, 0x11, 0x13, 0xfc, 0x6e, 0x39, 0x2d, 0x1b, 0xa0, 0x92, 0x73, 0xe7, 0x91, - 0xe2, 0xd7, 0x20, 0x29, 0x37, 0xcf, 0x52, 0x29, 0x25, 0xf8, 0xdd, 0x72, 0xbc, 0x34, 0xd6, 0xa1, - 0x9c, 0xdc, 0x9c, 0x18, 0xfc, 0xc2, 0xfb, 0xcd, 0x05, 0xcb, 0x71, 0xb9, 0xaa, 0x99, 0x5f, 0xb8, - 0xe5, 0x40, 0x42, 0x67, 0xc9, 0x2f, 0x64, 0x64, 0x78, 0x1e, 0x4d, 0x95, 0xef, 0x37, 0xcb, 0x8e, - 0x33, 0xe8, 0x12, 0x43, 0xb3, 0x3a, 0x9e, 0x43, 0x09, 0x89, 0x72, 0x29, 0xa3, 0xce, 0x50, 0x90, - 0x0d, 0x5c, 0x4a, 0xe3, 0x2d, 0x71, 0xa9, 0x7f, 0x9c, 0x41, 0xc5, 0xaa, 0xee, 0xea, 0x6b, 0xba, - 0x43, 0x84, 0xc5, 0xf0, 0xb4, 0x07, 0xf3, 0x3e, 0x47, 0xd0, 0x83, 0xb1, 0x16, 0xf3, 0x35, 0x61, - 0x06, 0xfc, 0x85, 0x40, 0xae, 0x9f, 0xbb, 0x98, 0xe9, 0x04, 0x2c, 0xce, 0x58, 0x6b, 0xf5, 0x39, - 0x58, 0x8b, 0x10, 0xe2, 0x6b, 0xa8, 0xe0, 0xc1, 0xe8, 0x02, 0x20, 0x15, 0xd8, 0x8c, 0xb1, 0x46, - 0xfd, 0x7f, 0x4d, 0x44, 0xe3, 0xd7, 0xd0, 0x84, 0xf7, 0x53, 0x70, 0xad, 0x61, 0xbd, 0x60, 0xac, - 0x45, 0x16, 0x3f, 0x22, 0xa9, 0xc8, 0x0a, 0xe3, 0xdb, 0xb8, 0xc4, 0x1a, 0x4a, 0xf3, 0x2e, 0x91, - 0xe2, 0xaf, 0xa3, 0x29, 0xef, 0x37, 0x5f, 0x30, 0x64, 0x60, 0xc1, 0x70, 0xcd, 0x4f, 0x36, 0x1e, - 0x52, 0xeb, 0xac, 0x4c, 0xce, 0x96, 0x0e, 0xcf, 0xf0, 0xa5, 0xc3, 0x19, 0x63, 0x2d, 0xba, 0x72, - 0x08, 0x15, 0x80, 0xeb, 0x68, 0xc6, 0x83, 0x04, 0x16, 0x9a, 0x0d, 0x16, 0x7c, 0xc6, 0x5a, 0x2b, - 0xd6, 0x48, 0xa3, 0x5c, 0xb8, 0x83, 0x2e, 0x4a, 0x40, 0xc3, 0xd9, 0x30, 0x1f, 0xb8, 0x7c, 0xb5, - 0xc6, 0x13, 0xbf, 0xf0, 0x04, 0xb0, 0xbe, 0x54, 0x46, 0xe3, 0x65, 0x72, 0x96, 0x13, 0xc0, 0xee, - 0x2a, 0x0d, 0x37, 0xd1, 0x59, 0x0f, 0x7f, 0xa7, 0xd2, 0x68, 0xd8, 0xd6, 0x07, 0xa4, 0xed, 0xd6, - 0xab, 0x7c, 0xb5, 0x0b, 0xf7, 0xb5, 0x8d, 0xb5, 0xd6, 0x7a, 0xbb, 0x4f, 0x8d, 0x82, 0xe2, 0x64, - 0xe1, 0xb1, 0xcc, 0xf8, 0x5d, 0x74, 0x4e, 0x80, 0xd7, 0x7b, 0x8e, 0xab, 0xf7, 0xda, 0xa4, 0x5e, - 0xe5, 0x4b, 0x60, 0x58, 0x8e, 0x73, 0xa9, 0x26, 0x47, 0xca, 0x62, 0xe3, 0xd9, 0x2f, 0x94, 0xd1, - 0x99, 0x98, 0x96, 0x3a, 0xd0, 0xba, 0xeb, 0x5b, 0xc9, 0xc0, 0x38, 0x8e, 0xf9, 0xe2, 0x6b, 0x0e, - 0xe5, 0xbc, 0x2f, 0xe1, 0x53, 0xb0, 0x32, 0xca, 0xc0, 0xc3, 0x32, 0x3c, 0xbc, 0xa4, 0x8e, 0x63, - 0xbe, 0x20, 0x7b, 0x12, 0xea, 0xf8, 0x28, 0x11, 0xa8, 0xe3, 0x98, 0x2f, 0xd2, 0x7e, 0x3f, 0x15, - 0xf4, 0xec, 0xd3, 0x95, 0xda, 0x93, 0x72, 0x36, 0x83, 0xc3, 0xff, 0xcc, 0x01, 0xa2, 0xb7, 0x45, - 0xd3, 0xcc, 0x3e, 0xa6, 0x69, 0xfe, 0x49, 0xb4, 0x3d, 0x99, 0x03, 0x77, 0x2c, 0xdb, 0xf3, 0x09, - 0x74, 0x56, 0x7c, 0x03, 0x4d, 0x7a, 0x7f, 0x33, 0x4f, 0x77, 0x5c, 0xb8, 0x3c, 0xbe, 0xc6, 0x1d, - 0x5d, 0x99, 0x04, 0x7f, 0x15, 0x9d, 0x97, 0x00, 0x0d, 0xdd, 0xd6, 0xbb, 0xc4, 0x25, 0x36, 0xf3, - 0x11, 0x78, 0x3e, 0x7d, 0x8f, 0xbb, 0xd5, 0xf7, 0xd1, 0x62, 0xba, 0xf3, 0x11, 0x12, 0x04, 0xe3, - 0xc8, 0x1e, 0x20, 0x32, 0xe4, 0x3f, 0x26, 0xd1, 0x64, 0xc3, 0x72, 0xdc, 0x75, 0x9b, 0x38, 0x0d, - 0xdd, 0x76, 0xc8, 0xc9, 0x6d, 0xd1, 0xcf, 0xa3, 0x49, 0xb8, 0xcc, 0xd3, 0x25, 0x3d, 0x57, 0x48, - 0xb4, 0xcf, 0x12, 0x5a, 0x79, 0x08, 0x9e, 0x1c, 0x4f, 0x22, 0xc4, 0x25, 0x34, 0xce, 0x6c, 0x40, - 0xb8, 0x62, 0xc5, 0x0c, 0x80, 0xc1, 0xd5, 0xbf, 0x99, 0x42, 0x13, 0x9e, 0x96, 0xe7, 0xcc, 0xe3, - 0xba, 0xf3, 0x71, 0xb4, 0x4a, 0xbe, 0x8e, 0x50, 0xc3, 0xb2, 0x5d, 0xbd, 0x23, 0x3c, 0x14, 0x05, - 0x4b, 0x86, 0x3e, 0x40, 0x19, 0x8f, 0x40, 0x82, 0x67, 0x11, 0x12, 0x3a, 0x58, 0x16, 0x3a, 0xd8, - 0xd4, 0xce, 0xb0, 0x84, 0x82, 0x7e, 0xa5, 0x09, 0x14, 0xea, 0x3f, 0x48, 0xa2, 0x69, 0xaf, 0x91, - 0x6a, 0x8f, 0x48, 0x7b, 0xe0, 0x9e, 0xe0, 0xce, 0x20, 0x6b, 0x7b, 0x7c, 0x4f, 0x6d, 0xab, 0xff, - 0x43, 0x18, 0x48, 0x2a, 0x1d, 0xeb, 0x74, 0x20, 0xf9, 0xf3, 0xb0, 0x71, 0xf5, 0x67, 0x53, 0xe8, - 0xac, 0xa7, 0xf5, 0xf9, 0x41, 0x0f, 0xdc, 0x84, 0x8a, 0xde, 0xe9, 0x9c, 0xe4, 0x79, 0xb9, 0xe0, - 0x29, 0x62, 0x85, 0xdf, 0x8e, 0xe5, 0x89, 0x4a, 0x1f, 0x70, 0x70, 0xcb, 0x32, 0x0d, 0x4d, 0x24, - 0xc2, 0x6f, 0xa2, 0x09, 0xef, 0x67, 0xd9, 0x5e, 0xf7, 0x26, 0x63, 0x58, 0x3a, 0xfb, 0x4c, 0xba, - 0x2d, 0x45, 0x55, 0x4b, 0x0c, 0xea, 0x2f, 0x67, 0xd0, 0x85, 0xfb, 0x66, 0xcf, 0xb0, 0xb6, 0x1c, - 0x2f, 0xcf, 0xed, 0xb1, 0x77, 0x7a, 0x8f, 0x3a, 0xbf, 0xed, 0x3b, 0xe8, 0x5c, 0x58, 0xa5, 0xb6, - 0x9f, 0x1c, 0x82, 0xb7, 0xce, 0x16, 0x23, 0x68, 0x79, 0x19, 0x6f, 0xf9, 0xfe, 0x93, 0x16, 0xcf, - 0x19, 0x4e, 0x99, 0x9b, 0xdd, 0x4f, 0xca, 0xdc, 0x97, 0x50, 0xa6, 0x6a, 0x75, 0x75, 0xd3, 0xbb, - 0x5f, 0x03, 0xbd, 0xd8, 0x2f, 0x17, 0x30, 0x1a, 0xa7, 0xa0, 0xf2, 0x79, 0xc1, 0xd0, 0x64, 0xf9, - 0x40, 0xbe, 0xc7, 0x30, 0x70, 0x88, 0xad, 0x89, 0x44, 0xd8, 0x42, 0x93, 0xbc, 0x38, 0xbe, 0x5b, - 0x84, 0x60, 0xb7, 0xe8, 0x73, 0x9e, 0x8e, 0x46, 0x9b, 0xd5, 0xac, 0xc4, 0xc7, 0xb6, 0x8d, 0x58, - 0x26, 0x5f, 0xfe, 0x31, 0x6c, 0xdf, 0x48, 0x93, 0xe5, 0x0b, 0x4a, 0x80, 0x41, 0xa6, 0x10, 0x55, - 0x02, 0x8c, 0x32, 0x22, 0xd1, 0x85, 0xb7, 0x10, 0x8e, 0x16, 0x76, 0xa0, 0x9d, 0x8f, 0xbf, 0x96, - 0x44, 0x38, 0xb4, 0x80, 0xa8, 0x9d, 0x60, 0x3f, 0x48, 0xfd, 0xf5, 0x04, 0x9a, 0x89, 0xa4, 0x35, - 0xc1, 0x37, 0x11, 0x62, 0x10, 0xe1, 0x3a, 0x37, 0xdc, 0x8f, 0x08, 0x52, 0x9d, 0xf0, 0x39, 0x20, - 0x20, 0xc3, 0xd7, 0x51, 0x8e, 0xfd, 0xf2, 0x9f, 0x0a, 0x0c, 0xb3, 0x0c, 0x06, 0xa6, 0xa1, 0xf9, - 0x44, 0x41, 0x29, 0xf0, 0x4a, 0x68, 0x2a, 0x96, 0xc5, 0xdd, 0xee, 0xfb, 0xa5, 0x50, 0x32, 0xf5, - 0x3b, 0x09, 0x34, 0xe1, 0x57, 0xb8, 0x6c, 0x1c, 0x55, 0xd3, 0x65, 0x78, 0x86, 0x98, 0xd4, 0x5e, - 0x19, 0x62, 0x42, 0x83, 0x0a, 0x7f, 0xac, 0xf1, 0x9f, 0x27, 0xd0, 0xb4, 0x4f, 0x7b, 0x84, 0x7b, - 0x2c, 0x87, 0xfe, 0x90, 0x9f, 0x4b, 0x20, 0x65, 0xce, 0xec, 0x74, 0xcc, 0xde, 0x7a, 0xbd, 0xf7, - 0xc0, 0xb2, 0xbb, 0x70, 0xed, 0xeb, 0xe8, 0x36, 0xd1, 0xd4, 0xbf, 0x9c, 0x40, 0x33, 0xbc, 0x42, - 0x15, 0xdd, 0x36, 0x8e, 0x6e, 0x77, 0x33, 0x5c, 0x93, 0xa3, 0x6b, 0x65, 0xf5, 0xff, 0x27, 0x10, - 0x5a, 0xb4, 0xda, 0x9b, 0xc7, 0x3b, 0xae, 0x12, 0xbf, 0x86, 0x32, 0xec, 0xce, 0x19, 0x1f, 0xed, - 0x66, 0x66, 0xd9, 0x3b, 0xc6, 0xf4, 0xd3, 0x18, 0x62, 0x6e, 0x8a, 0x1f, 0x57, 0x64, 0xd8, 0x9d, - 0x35, 0x8d, 0x33, 0xc0, 0x2d, 0x07, 0x4a, 0x76, 0xcc, 0x23, 0x31, 0xff, 0x6a, 0x02, 0x9d, 0xd5, - 0x48, 0xdb, 0x7a, 0x48, 0xec, 0xed, 0x8a, 0x65, 0x90, 0x3b, 0xa4, 0x47, 0xec, 0xa3, 0xb2, 0xef, - 0x7f, 0x08, 0xe9, 0xa4, 0x82, 0xca, 0xdc, 0x73, 0x88, 0x71, 0x7c, 0x72, 0x90, 0xa9, 0xbf, 0x99, - 0x45, 0x4a, 0xac, 0x53, 0x73, 0x6c, 0xfd, 0x81, 0x91, 0x9e, 0x6a, 0xfa, 0x49, 0x79, 0xaa, 0xe3, - 0x07, 0xf3, 0x54, 0x33, 0x07, 0xf5, 0x54, 0xb3, 0xfb, 0xf1, 0x54, 0xbb, 0x61, 0x4f, 0x35, 0x07, - 0x9e, 0xea, 0xcd, 0x5d, 0x3d, 0xd5, 0x5a, 0xcf, 0x78, 0x4c, 0x3f, 0xf5, 0xd8, 0x66, 0xde, 0x7e, - 0x0c, 0x07, 0x1b, 0x5f, 0xa1, 0x83, 0x5b, 0xdb, 0xb2, 0x0d, 0xc2, 0x32, 0x69, 0xe7, 0xd8, 0x46, - 0xb2, 0xcd, 0x61, 0x9a, 0x8f, 0x8d, 0xa4, 0x31, 0x9f, 0xdc, 0x4f, 0x1a, 0xf3, 0x27, 0xe0, 0xc0, - 0x7f, 0x3f, 0x81, 0x66, 0x2a, 0xc4, 0x76, 0xd9, 0x15, 0xf3, 0x27, 0x71, 0x7a, 0x59, 0x46, 0xd3, - 0x82, 0x40, 0xe1, 0xc5, 0x7a, 0xc8, 0x67, 0xd2, 0x26, 0xb6, 0x0b, 0x5e, 0xa8, 0x18, 0x4c, 0x10, - 0xa2, 0xa7, 0xc5, 0xfb, 0xef, 0x8c, 0xa7, 0xe4, 0xe2, 0x3d, 0x38, 0x53, 0xa4, 0xf7, 0xe6, 0xb8, - 0xe6, 0xd3, 0xab, 0xbf, 0x96, 0x40, 0x97, 0x35, 0xd2, 0x23, 0x5b, 0xfa, 0x5a, 0x87, 0x08, 0x82, - 0xf9, 0xd8, 0x4e, 0xfb, 0xbd, 0xe9, 0x74, 0x75, 0xb7, 0xbd, 0x71, 0xa8, 0xaf, 0x9c, 0x97, 0x5f, - 0x8d, 0x3f, 0xc0, 0xe8, 0x24, 0xf1, 0xa9, 0x3f, 0x4a, 0xa2, 0xec, 0x9c, 0xe5, 0x1e, 0xfa, 0x9d, - 0xc7, 0x60, 0xd0, 0x4e, 0x1e, 0x60, 0x31, 0xfe, 0x59, 0x28, 0x5c, 0x48, 0x0f, 0x05, 0x81, 0x28, - 0x6b, 0x96, 0x1b, 0x09, 0x50, 0xe6, 0x64, 0x07, 0x4c, 0x35, 0xf9, 0x2a, 0xca, 0xc3, 0xad, 0x34, - 0x61, 0xbb, 0x0c, 0x62, 0x4a, 0x5c, 0x0a, 0x0c, 0x97, 0x11, 0x90, 0xe2, 0xaf, 0x4a, 0xb7, 0xda, - 0x33, 0x87, 0x4f, 0x4d, 0x29, 0x88, 0x53, 0xff, 0x20, 0x85, 0x26, 0xbc, 0xf3, 0xff, 0x23, 0xd2, - 0xfb, 0xcb, 0x28, 0xb3, 0x60, 0x09, 0x09, 0xaa, 0x20, 0x02, 0x65, 0xc3, 0x72, 0x42, 0x81, 0x10, - 0x9c, 0x08, 0xdf, 0x44, 0x39, 0xff, 0x99, 0xe0, 0xb4, 0xf0, 0xe2, 0x7c, 0xcc, 0xdb, 0xc0, 0x3e, - 0x21, 0xbe, 0x8c, 0xd2, 0x10, 0x28, 0x24, 0xec, 0x52, 0x86, 0x82, 0x83, 0x00, 0x2f, 0xb4, 0x68, - 0xe6, 0xa0, 0x2d, 0x9a, 0x7d, 0xdc, 0x16, 0xcd, 0x3d, 0xd9, 0x16, 0xfd, 0x93, 0x04, 0xca, 0xde, - 0xeb, 0x6d, 0xf6, 0xac, 0xad, 0xc3, 0x35, 0xe6, 0x4d, 0x54, 0xe0, 0x62, 0x84, 0x61, 0x0b, 0xae, - 0x46, 0x0c, 0x18, 0xb8, 0x05, 0x92, 0x34, 0x91, 0x0a, 0x7f, 0xd1, 0x67, 0x82, 0x30, 0xbb, 0x54, - 0x90, 0x3d, 0xcd, 0x63, 0x6a, 0xcb, 0x09, 0x9f, 0x44, 0x72, 0x7c, 0x91, 0x3f, 0xe5, 0x29, 0xa4, - 0x0f, 0xa0, 0x55, 0x61, 0x2f, 0x79, 0xaa, 0x3f, 0x4e, 0xa0, 0xa9, 0xd0, 0x5e, 0xc2, 0x4b, 0x28, - 0xcf, 0xd7, 0xf2, 0xa6, 0x97, 0x81, 0x0a, 0xc2, 0xf0, 0x7c, 0xa0, 0x96, 0x63, 0x7f, 0xd6, 0x0d, - 0xfc, 0x25, 0x94, 0xb5, 0x1c, 0x18, 0x6d, 0xe1, 0x5b, 0xa6, 0x02, 0xeb, 0x5c, 0x69, 0xd2, 0xba, - 0x33, 0xbb, 0xe3, 0x24, 0x62, 0x63, 0x5b, 0x0e, 0x7c, 0xda, 0x2d, 0x94, 0xd7, 0x1d, 0x87, 0xb8, - 0x2d, 0x57, 0x5f, 0x17, 0x93, 0x52, 0xf9, 0x40, 0xd1, 0xf0, 0x00, 0xb8, 0xaa, 0xaf, 0xe3, 0xb7, - 0xd0, 0x64, 0xdb, 0x26, 0x30, 0x1e, 0xeb, 0x1d, 0x5a, 0x4b, 0xc1, 0x5f, 0x92, 0x10, 0xe2, 0xbe, - 0x6b, 0x80, 0xa8, 0x1b, 0xea, 0xf7, 0x12, 0x74, 0xae, 0xa5, 0x1f, 0x01, 0x99, 0xad, 0x69, 0x9b, - 0x76, 0x0f, 0xd8, 0xa6, 0xdd, 0x20, 0x21, 0x6b, 0xc6, 0xd9, 0xa5, 0x83, 0x6a, 0x1c, 0x8b, 0x67, - 0x51, 0xc6, 0x10, 0x97, 0xee, 0x7e, 0x30, 0x80, 0xac, 0x7f, 0x8d, 0x53, 0xe1, 0x2b, 0x28, 0x4d, - 0x7d, 0x29, 0xbe, 0x76, 0x8a, 0x1d, 0xf8, 0x35, 0xa0, 0x50, 0x7f, 0x26, 0x89, 0x26, 0x84, 0xaf, - 0xb9, 0x71, 0xa8, 0xcf, 0x79, 0x7d, 0x7f, 0xd5, 0xe4, 0xd1, 0x73, 0x00, 0xf3, 0xab, 0x7c, 0xcb, - 0x57, 0xc5, 0xbe, 0x36, 0x6c, 0xb9, 0x62, 0x5e, 0xe5, 0x1f, 0x9a, 0xd9, 0xbf, 0xff, 0x4d, 0xe9, - 0xdf, 0x4e, 0xe7, 0x92, 0xc5, 0xd4, 0xdb, 0xe9, 0x5c, 0xba, 0x38, 0xae, 0xfe, 0x42, 0x15, 0x8d, - 0xaf, 0xf4, 0xc8, 0xca, 0x03, 0xfc, 0x8a, 0x90, 0x61, 0x99, 0x7f, 0xfc, 0x8c, 0x28, 0x12, 0x10, - 0x0b, 0x63, 0x9a, 0x90, 0x87, 0xf9, 0x96, 0x98, 0x77, 0x96, 0xb7, 0x22, 0x16, 0x79, 0x18, 0x66, - 0x61, 0x4c, 0x13, 0xf3, 0xd3, 0xde, 0x12, 0x13, 0xb3, 0x72, 0x65, 0x49, 0x5c, 0x0c, 0xe3, 0x71, - 0xf1, 0x95, 0xec, 0x62, 0x5c, 0x1e, 0xd4, 0xf0, 0x2e, 0x79, 0x94, 0x62, 0x61, 0x4c, 0x8b, 0xcf, - 0x9f, 0x2a, 0xbd, 0x54, 0xce, 0xd5, 0x7e, 0x36, 0xb4, 0x0e, 0x01, 0xdc, 0xc2, 0x98, 0x26, 0xbf, - 0x6a, 0x7e, 0x5b, 0x7a, 0x03, 0x3a, 0x1c, 0x26, 0x2b, 0xa0, 0x16, 0xc6, 0xb4, 0xd0, 0x6b, 0xd1, - 0xd2, 0x83, 0xc4, 0x3c, 0x6c, 0x20, 0x5c, 0x28, 0xe0, 0x84, 0x42, 0xd9, 0xe3, 0xc5, 0x6f, 0x84, - 0x9e, 0x5b, 0xe3, 0x03, 0xf5, 0xb9, 0x10, 0x33, 0x43, 0x2e, 0x8c, 0x69, 0xa1, 0xc7, 0xd9, 0xae, - 0x78, 0x2f, 0x70, 0x71, 0xc7, 0x7e, 0x4a, 0x58, 0xc9, 0x9b, 0x1f, 0x52, 0x2d, 0x79, 0x2f, 0x74, - 0xdd, 0x12, 0x5f, 0x5e, 0xe2, 0x9e, 0x3a, 0x0e, 0x95, 0x52, 0xeb, 0x19, 0xb4, 0x75, 0x84, 0x65, - 0xe4, 0x5b, 0xe1, 0x37, 0x4a, 0xf8, 0xcb, 0x37, 0x4f, 0x85, 0x38, 0x39, 0x76, 0x61, 0x4c, 0x0b, - 0xbf, 0x69, 0x72, 0x5b, 0x7a, 0x1f, 0x83, 0xdf, 0x63, 0x0b, 0x6b, 0x95, 0xa2, 0x04, 0xad, 0xc2, - 0x4b, 0x1a, 0x6f, 0x85, 0x1f, 0x6c, 0x50, 0x26, 0x63, 0x8b, 0xe6, 0x58, 0xa1, 0x68, 0xef, 0x81, - 0x87, 0xdb, 0x52, 0x62, 0x7d, 0x78, 0xbb, 0x26, 0xa6, 0x68, 0xdd, 0xd5, 0xc5, 0xa2, 0x59, 0x97, - 0x97, 0x52, 0xbc, 0x2b, 0xd3, 0xb1, 0x0d, 0x0a, 0x38, 0xa1, 0x41, 0x59, 0x3a, 0xf8, 0xdb, 0x52, - 0x96, 0x4b, 0xa5, 0x28, 0x17, 0x2a, 0xa0, 0x68, 0xa1, 0x62, 0x3e, 0xcc, 0x5b, 0x62, 0xf2, 0x47, - 0x65, 0x46, 0x6e, 0xa0, 0x00, 0x43, 0x1b, 0x48, 0x48, 0x12, 0x59, 0x82, 0xc4, 0x72, 0x0a, 0x06, - 0xf2, 0x82, 0x5f, 0xc3, 0x4a, 0x63, 0x61, 0x4c, 0x83, 0x94, 0x73, 0x2a, 0x4b, 0x59, 0xa8, 0x9c, - 0x01, 0x8a, 0x09, 0xff, 0x01, 0x83, 0x47, 0xa4, 0xbd, 0x30, 0xa6, 0xb1, 0x74, 0x86, 0xaf, 0x08, - 0xc9, 0x81, 0x94, 0xb3, 0xf2, 0x10, 0xe1, 0x23, 0xe8, 0x10, 0x11, 0xa4, 0x10, 0x9a, 0x8f, 0x26, - 0xd0, 0x51, 0xce, 0xc9, 0x9b, 0x49, 0x61, 0xfc, 0xc2, 0x98, 0x16, 0x4d, 0xba, 0x73, 0x5b, 0xca, - 0x29, 0xa3, 0x3c, 0x15, 0x8a, 0x4d, 0x0f, 0x50, 0x54, 0x5d, 0x62, 0xf6, 0x99, 0x95, 0xd8, 0xa4, - 0xc5, 0xca, 0x79, 0x10, 0xf0, 0x8c, 0x2f, 0x20, 0x4a, 0xb2, 0x30, 0xa6, 0xc5, 0xa6, 0x3b, 0xae, - 0x44, 0x32, 0xbb, 0x28, 0x8a, 0xbc, 0x8b, 0x11, 0x42, 0x2f, 0x8c, 0x69, 0x91, 0x5c, 0x30, 0xb7, - 0xc4, 0x94, 0x2a, 0xca, 0xd3, 0x72, 0x23, 0x06, 0x18, 0xda, 0x88, 0x42, 0xea, 0x95, 0x5b, 0x62, - 0x06, 0x13, 0xe5, 0x42, 0x94, 0x2b, 0x18, 0x39, 0x85, 0x4c, 0x27, 0x5a, 0x7c, 0xc2, 0x10, 0xe5, - 0x19, 0x9e, 0xbb, 0x8d, 0xf3, 0xc7, 0xd1, 0x2c, 0x8c, 0x69, 0xf1, 0xc9, 0x46, 0xb4, 0xf8, 0x9c, - 0x1d, 0xca, 0xc5, 0xdd, 0x64, 0xfa, 0xb5, 0x8b, 0xcf, 0xf7, 0xa1, 0xef, 0x92, 0x36, 0x43, 0x79, - 0x56, 0xbe, 0xd7, 0x3a, 0x92, 0x70, 0x61, 0x4c, 0xdb, 0x25, 0xf9, 0xc6, 0xbd, 0x11, 0x39, 0x2c, - 0x94, 0x4b, 0x72, 0xea, 0xc6, 0x58, 0xa2, 0x85, 0x31, 0x6d, 0x44, 0x06, 0x8c, 0x7b, 0x23, 0x12, - 0x49, 0x28, 0xa5, 0x5d, 0xc5, 0xfa, 0xfa, 0x18, 0x91, 0x86, 0x62, 0x25, 0x36, 0x9b, 0x83, 0xf2, - 0x9c, 0x6c, 0xba, 0x31, 0x24, 0xd4, 0x74, 0xe3, 0xf2, 0x40, 0xac, 0xc4, 0xa6, 0x53, 0x50, 0x9e, - 0xdf, 0x45, 0xa0, 0x5f, 0xc7, 0xd8, 0x44, 0x0c, 0x2b, 0xb1, 0xf9, 0x0c, 0x14, 0x55, 0x16, 0x18, - 0x43, 0x42, 0x05, 0xc6, 0x65, 0x42, 0x58, 0x89, 0x4d, 0x28, 0xa0, 0xbc, 0xb0, 0x8b, 0xc0, 0xa0, - 0x86, 0x71, 0xa9, 0x08, 0x6e, 0x4b, 0x37, 0xfa, 0x95, 0x4f, 0xc9, 0xe3, 0x86, 0x80, 0xa2, 0xe3, - 0x86, 0x78, 0xf7, 0xbf, 0x12, 0xb9, 0xf4, 0xa8, 0x7c, 0x5a, 0xee, 0xe6, 0x21, 0x34, 0xed, 0xe6, - 0xe1, 0x6b, 0x92, 0x95, 0xc8, 0xe5, 0x2f, 0xe5, 0xf2, 0x28, 0x21, 0x80, 0x96, 0x85, 0xb0, 0xeb, - 0x62, 0xf5, 0x98, 0xdb, 0x47, 0xca, 0x8b, 0xf2, 0x29, 0x56, 0x84, 0x60, 0x61, 0x4c, 0x8b, 0xb9, - 0xb3, 0xa4, 0xc5, 0x07, 0x09, 0x2b, 0x57, 0xe4, 0x6e, 0x1b, 0x47, 0x43, 0xbb, 0x6d, 0x6c, 0x80, - 0xf1, 0x62, 0xdc, 0x39, 0xb3, 0x72, 0x55, 0x76, 0xcc, 0xa2, 0x14, 0xd4, 0x31, 0x8b, 0x39, 0x9f, - 0xd6, 0xe2, 0xc3, 0x5e, 0x95, 0x97, 0x76, 0xad, 0x21, 0xd0, 0xc4, 0xd4, 0x90, 0x45, 0x81, 0x06, - 0xbe, 0xd3, 0xbd, 0x7e, 0xc7, 0xd2, 0x0d, 0xe5, 0x33, 0xb1, 0xbe, 0x13, 0x43, 0x0a, 0xbe, 0x13, - 0x03, 0xd0, 0x59, 0x5e, 0x3c, 0x87, 0x55, 0xae, 0xc9, 0xb3, 0xbc, 0x88, 0xa3, 0xb3, 0xbc, 0x74, - 0x66, 0x5b, 0x89, 0x9c, 0x7e, 0x2a, 0x2f, 0xcb, 0x06, 0x10, 0x42, 0x53, 0x03, 0x08, 0x9f, 0x97, - 0xbe, 0x3f, 0xfa, 0xe4, 0x51, 0x99, 0x05, 0x69, 0xcf, 0xf9, 0x4f, 0x34, 0x8d, 0xa0, 0x5b, 0x18, - 0xd3, 0x46, 0x9f, 0x5e, 0xd6, 0x63, 0x0e, 0x12, 0x95, 0xeb, 0xb2, 0x81, 0x45, 0x08, 0xa8, 0x81, - 0x45, 0x8f, 0x1f, 0xeb, 0x31, 0x27, 0x81, 0xca, 0x67, 0x47, 0x8a, 0xf2, 0xbf, 0x39, 0xe6, 0xfc, - 0xf0, 0x96, 0x78, 0x94, 0xa7, 0xbc, 0x22, 0x4f, 0x76, 0x01, 0x86, 0x4e, 0x76, 0xc2, 0x91, 0xdf, - 0x2d, 0xf1, 0xf8, 0x4b, 0xb9, 0x11, 0xe5, 0x0a, 0xa6, 0x48, 0xe1, 0x98, 0x4c, 0x8b, 0x3f, 0x6d, - 0x52, 0x6e, 0xca, 0x56, 0x17, 0x47, 0x43, 0xad, 0x2e, 0xf6, 0xa4, 0x6a, 0x3e, 0x7a, 0x68, 0xa4, - 0xdc, 0x0a, 0x1f, 0xa3, 0xc9, 0x78, 0xea, 0xf9, 0x44, 0x0e, 0x9a, 0xde, 0x0a, 0xdf, 0x60, 0x51, - 0x3e, 0x17, 0x5a, 0x5f, 0x4a, 0x58, 0xea, 0xdf, 0x86, 0x6e, 0xbc, 0xbc, 0x15, 0xbe, 0xf4, 0xa1, - 0xbc, 0x1a, 0x2f, 0xc1, 0xb7, 0x95, 0xf0, 0x25, 0x91, 0xb7, 0xc2, 0xf7, 0x24, 0x94, 0xdb, 0xf1, - 0x12, 0x7c, 0xed, 0x86, 0xef, 0x55, 0xbc, 0x22, 0xe4, 0x3f, 0x50, 0x3e, 0x2f, 0xbb, 0x8e, 0x3e, - 0x82, 0xba, 0x8e, 0x41, 0x96, 0x84, 0x57, 0x84, 0xbc, 0x01, 0xca, 0x6b, 0x11, 0x16, 0xbf, 0xb2, - 0x42, 0x76, 0x81, 0x57, 0x84, 0xfb, 0xf6, 0xca, 0xeb, 0x11, 0x16, 0xbf, 0x76, 0xc2, 0xad, 0x7c, - 0x63, 0xb7, 0x40, 0x32, 0xe5, 0x0b, 0x20, 0x43, 0xdd, 0x3b, 0x36, 0x68, 0x61, 0x4c, 0xdb, 0x2d, - 0x20, 0xed, 0xfd, 0xd1, 0x47, 0x70, 0xca, 0x17, 0xe5, 0x2e, 0x3c, 0x8a, 0x8e, 0x76, 0xe1, 0x91, - 0xc7, 0x78, 0x6f, 0x84, 0x82, 0xca, 0x95, 0x37, 0xe4, 0x21, 0x4e, 0x42, 0xd2, 0x21, 0x2e, 0x1c, - 0x82, 0x2e, 0x45, 0x4b, 0x2b, 0x5f, 0x92, 0x87, 0x38, 0x11, 0x47, 0x87, 0x38, 0x29, 0xb2, 0xba, - 0x12, 0x09, 0xe2, 0x55, 0xde, 0x94, 0x87, 0xb8, 0x10, 0x9a, 0x0e, 0x71, 0xe1, 0xb0, 0xdf, 0x37, - 0x42, 0xb1, 0xac, 0xca, 0x5b, 0xf1, 0xf5, 0x07, 0xa4, 0x58, 0x7f, 0x16, 0xf9, 0xaa, 0xc5, 0x07, - 0x65, 0x2a, 0x65, 0xb9, 0xff, 0xc6, 0xd1, 0xd0, 0xfe, 0x1b, 0x1b, 0xd0, 0xb9, 0x12, 0xfb, 0x70, - 0x82, 0x32, 0xb7, 0xcb, 0xc2, 0x21, 0x70, 0x45, 0xe2, 0x9e, 0x5c, 0x78, 0x2b, 0xfc, 0xb8, 0xb7, - 0x52, 0x19, 0xb1, 0x46, 0xf6, 0x96, 0x41, 0xe1, 0xc7, 0xc0, 0xeb, 0x31, 0x27, 0x42, 0x4a, 0x55, - 0x1e, 0x5d, 0x23, 0x04, 0x74, 0x74, 0x8d, 0x9e, 0x23, 0xcd, 0xa3, 0x22, 0xb7, 0xa2, 0xe0, 0xd1, - 0xd6, 0x5a, 0x28, 0xb4, 0x2a, 0x84, 0xa7, 0xa3, 0x53, 0x18, 0x06, 0xf3, 0x35, 0x83, 0x55, 0x3a, - 0x66, 0x7f, 0xcd, 0xd2, 0x6d, 0xa3, 0x49, 0x7a, 0x86, 0x32, 0x1f, 0x9a, 0xaf, 0x63, 0x68, 0x60, - 0xbe, 0x8e, 0x81, 0xc3, 0xad, 0x8d, 0x10, 0x9c, 0x3f, 0xab, 0xa6, 0xdc, 0x01, 0xb1, 0xa5, 0x51, - 0x62, 0x39, 0xd9, 0xc2, 0x98, 0x36, 0x4a, 0x02, 0xf5, 0xd5, 0x97, 0xb6, 0x9b, 0xef, 0x2c, 0xfa, - 0x71, 0xc0, 0x0d, 0x9b, 0xf4, 0x75, 0x9b, 0x28, 0x0b, 0xb2, 0xaf, 0x1e, 0x4b, 0x44, 0x7d, 0xf5, - 0x58, 0x44, 0x54, 0xac, 0xd7, 0x17, 0xea, 0xbb, 0x89, 0x0d, 0x7a, 0x44, 0x3c, 0x37, 0x1d, 0x9d, - 0x64, 0x04, 0x55, 0xd0, 0xa2, 0xd5, 0x5b, 0x87, 0x9d, 0x8a, 0xb7, 0xe5, 0xd1, 0x69, 0x34, 0x25, - 0x1d, 0x9d, 0x46, 0x63, 0xa9, 0xa9, 0xcb, 0x58, 0xd6, 0x07, 0xef, 0xca, 0xa6, 0x1e, 0x43, 0x42, - 0x4d, 0x3d, 0x06, 0x1c, 0x15, 0xa8, 0x11, 0x87, 0xb8, 0xca, 0xe2, 0x6e, 0x02, 0x81, 0x24, 0x2a, - 0x10, 0xc0, 0x51, 0x81, 0xf3, 0xc4, 0x6d, 0x6f, 0x28, 0x4b, 0xbb, 0x09, 0x04, 0x92, 0xa8, 0x40, - 0x00, 0xd3, 0xc5, 0xa6, 0x0c, 0x9e, 0x1b, 0x74, 0x36, 0xbd, 0x36, 0x5b, 0x96, 0x17, 0x9b, 0x23, - 0x09, 0xe9, 0x62, 0x73, 0x24, 0x12, 0x7f, 0x73, 0xdf, 0xe7, 0x9d, 0xca, 0x0a, 0x14, 0x38, 0x1b, - 0xf8, 0x05, 0xfb, 0xe1, 0x5a, 0x18, 0xd3, 0xf6, 0x7b, 0x9e, 0xfa, 0x19, 0xff, 0x14, 0x46, 0x69, - 0x40, 0x51, 0xd3, 0xfe, 0x5e, 0x05, 0x03, 0x2f, 0x8c, 0x69, 0xfe, 0x39, 0xcd, 0x6d, 0x54, 0x80, - 0x8f, 0xaa, 0xf7, 0x4c, 0xb7, 0x3a, 0xa7, 0xbc, 0x23, 0x2f, 0x99, 0x04, 0x14, 0x5d, 0x32, 0x09, - 0x3f, 0xe9, 0x20, 0x0e, 0x3f, 0xd9, 0x10, 0x53, 0x9d, 0x53, 0x34, 0x79, 0x10, 0x97, 0x90, 0x74, - 0x10, 0x97, 0x00, 0x7e, 0xb9, 0x55, 0xdb, 0xea, 0x57, 0xe7, 0x94, 0x66, 0x4c, 0xb9, 0x0c, 0xe5, - 0x97, 0xcb, 0x7e, 0xfa, 0xe5, 0x36, 0x37, 0x06, 0x6e, 0x95, 0x7e, 0xe3, 0x6a, 0x4c, 0xb9, 0x1e, - 0xd2, 0x2f, 0xd7, 0x03, 0xd0, 0xa1, 0x10, 0x00, 0x0d, 0xdb, 0xa2, 0x83, 0xf6, 0x5d, 0xb3, 0xd3, - 0x51, 0xee, 0xc9, 0x43, 0x61, 0x18, 0x4f, 0x87, 0xc2, 0x30, 0x8c, 0xba, 0x9e, 0xac, 0x56, 0x64, - 0x6d, 0xb0, 0xae, 0xbc, 0x2b, 0xbb, 0x9e, 0x01, 0x86, 0xba, 0x9e, 0xc1, 0x2f, 0x58, 0x5d, 0xd0, - 0x5f, 0x1a, 0x79, 0x60, 0x13, 0x67, 0x43, 0xb9, 0x1f, 0x5a, 0x5d, 0x08, 0x38, 0x58, 0x5d, 0x08, - 0xbf, 0xf1, 0x3a, 0x7a, 0x46, 0x9a, 0x68, 0xbc, 0xb0, 0xab, 0x26, 0xd1, 0xed, 0xf6, 0x86, 0xf2, - 0x1e, 0x88, 0x7a, 0x21, 0x76, 0xaa, 0x92, 0x49, 0x17, 0xc6, 0xb4, 0xdd, 0x24, 0xc1, 0xb2, 0xfc, - 0x9d, 0x45, 0x76, 0xbd, 0x52, 0x6b, 0x54, 0xbc, 0x45, 0xe8, 0x97, 0x43, 0xcb, 0xf2, 0x28, 0x09, - 0x2c, 0xcb, 0xa3, 0x60, 0xdc, 0x47, 0x97, 0x42, 0x4b, 0xb5, 0x25, 0xbd, 0x43, 0xd7, 0x25, 0xc4, - 0x68, 0xe8, 0xed, 0x4d, 0xe2, 0x2a, 0x5f, 0x01, 0xd9, 0x97, 0x47, 0x2c, 0xf8, 0x42, 0xd4, 0x0b, - 0x63, 0xda, 0x1e, 0xf2, 0xb0, 0xca, 0x52, 0xf3, 0x2b, 0x5f, 0x95, 0xf7, 0x37, 0x29, 0x6c, 0x61, - 0x4c, 0x63, 0x69, 0xfb, 0xdf, 0x47, 0xca, 0xbd, 0xfe, 0xba, 0xad, 0x1b, 0x84, 0x39, 0x5a, 0xe0, - 0xbb, 0x71, 0x07, 0xf4, 0xa7, 0x64, 0x2f, 0x6d, 0x14, 0x1d, 0xf5, 0xd2, 0x46, 0xe1, 0xa8, 0xa1, - 0x4a, 0xf9, 0x78, 0x94, 0xaf, 0xc9, 0x86, 0x2a, 0x21, 0xa9, 0xa1, 0xca, 0xd9, 0x7b, 0xde, 0x43, - 0x4f, 0x85, 0xdf, 0x4b, 0x67, 0x8d, 0xa6, 0xbc, 0x0f, 0x72, 0x2e, 0x45, 0x0e, 0x03, 0x24, 0xaa, - 0x85, 0x31, 0x6d, 0x04, 0x3f, 0x9d, 0x71, 0x23, 0x99, 0xe2, 0xb8, 0x7b, 0xf1, 0xd3, 0xf2, 0x8c, - 0x3b, 0x82, 0x8c, 0xce, 0xb8, 0x23, 0x50, 0xb1, 0xc2, 0xb9, 0x52, 0xf5, 0x3d, 0x84, 0xfb, 0x3a, - 0x1d, 0x25, 0x21, 0x56, 0x38, 0xf7, 0xd4, 0xd6, 0xf6, 0x10, 0xee, 0x7b, 0x6b, 0xa3, 0x24, 0xe0, - 0x2b, 0x28, 0xd3, 0x6c, 0x2e, 0x69, 0x83, 0x9e, 0xd2, 0x0e, 0x1d, 0xcb, 0x01, 0x74, 0x61, 0x4c, - 0xe3, 0x78, 0xea, 0x06, 0xd5, 0x3a, 0xba, 0xe3, 0x9a, 0x6d, 0x07, 0x7a, 0x8c, 0xd7, 0x43, 0x0c, - 0xd9, 0x0d, 0x8a, 0xa3, 0xa1, 0x6e, 0x50, 0x1c, 0x9c, 0xfa, 0x8b, 0x15, 0xdd, 0x71, 0xf4, 0x9e, - 0x61, 0xeb, 0x73, 0x30, 0x4d, 0x90, 0xd0, 0xab, 0x9a, 0x12, 0x96, 0xfa, 0x8b, 0x32, 0x04, 0x36, - 0xdf, 0x3d, 0x88, 0xe7, 0xe6, 0x3c, 0x08, 0x6d, 0xbe, 0x87, 0xf0, 0xb0, 0xf9, 0x1e, 0x82, 0x81, - 0xdf, 0xe9, 0xc1, 0x34, 0xb2, 0x6e, 0xc2, 0x43, 0x3a, 0xeb, 0x21, 0xbf, 0x33, 0x4c, 0x00, 0x7e, - 0x67, 0x18, 0x28, 0x55, 0xc9, 0x9b, 0x6e, 0x37, 0x46, 0x54, 0x29, 0x98, 0x65, 0x23, 0x3c, 0x74, - 0xfe, 0x0e, 0x3a, 0x47, 0x75, 0xbb, 0xa7, 0x77, 0xad, 0xea, 0x9c, 0xa7, 0x75, 0x53, 0x9e, 0xbf, - 0x47, 0x12, 0xd2, 0xf9, 0x7b, 0x24, 0x92, 0x8e, 0xae, 0xde, 0x42, 0x6b, 0x43, 0xb7, 0x89, 0xe1, - 0x3f, 0x2f, 0xc1, 0x96, 0x86, 0x1f, 0xc8, 0xa3, 0xeb, 0x2e, 0xa4, 0x74, 0x74, 0xdd, 0x05, 0x4d, - 0x9d, 0xbc, 0x78, 0xb4, 0x46, 0x74, 0x43, 0xd9, 0x94, 0x9d, 0xbc, 0xd1, 0x94, 0xd4, 0xc9, 0x1b, - 0x8d, 0x1d, 0xfd, 0x39, 0xf7, 0x6d, 0xd3, 0x25, 0x4a, 0x67, 0x3f, 0x9f, 0x03, 0xa4, 0xa3, 0x3f, - 0x07, 0xd0, 0x74, 0x41, 0x18, 0x6e, 0x90, 0xae, 0xbc, 0x20, 0x8c, 0x36, 0x43, 0x98, 0x83, 0x7a, - 0x2c, 0x3c, 0xf8, 0x4a, 0xe9, 0xc9, 0x1e, 0x0b, 0x07, 0x53, 0x8f, 0x25, 0x08, 0xcf, 0x92, 0xc2, - 0x86, 0x14, 0x4b, 0x9e, 0x43, 0x45, 0x1c, 0x9d, 0x43, 0xa5, 0x10, 0xa3, 0xdb, 0x52, 0x40, 0x83, - 0xd2, 0x97, 0xbd, 0x0e, 0x01, 0x45, 0xbd, 0x0e, 0x31, 0xf4, 0xa1, 0x82, 0xa6, 0xe1, 0x14, 0x5c, - 0x1b, 0xf8, 0xe7, 0x38, 0x5f, 0x97, 0x3f, 0x33, 0x84, 0xa6, 0x9f, 0x19, 0x02, 0x49, 0x42, 0xf8, - 0xb0, 0x65, 0x8f, 0x10, 0x12, 0xec, 0x0f, 0x86, 0x40, 0x78, 0x11, 0xe1, 0x66, 0x79, 0x69, 0xb1, - 0x6e, 0x34, 0xc4, 0x23, 0x32, 0x47, 0xde, 0x81, 0x8d, 0x52, 0x2c, 0x8c, 0x69, 0x31, 0x7c, 0xf8, - 0x03, 0x74, 0x91, 0x43, 0x79, 0x6c, 0x6c, 0xc3, 0xb6, 0x1e, 0x9a, 0x86, 0x3f, 0x21, 0xb8, 0x20, - 0xf7, 0x53, 0x21, 0xb9, 0xb1, 0xb4, 0x0b, 0x63, 0xda, 0xae, 0xb2, 0x46, 0x97, 0xc5, 0xe7, 0x87, - 0xc1, 0x7e, 0xca, 0xf2, 0x27, 0x89, 0x5d, 0x65, 0x8d, 0x2e, 0x8b, 0xeb, 0xfd, 0xe1, 0x7e, 0xca, - 0xf2, 0x1b, 0x61, 0x57, 0x59, 0xd8, 0x41, 0xa5, 0xdd, 0xf0, 0xe5, 0x4e, 0x47, 0xd9, 0x82, 0xe2, - 0x5e, 0xdc, 0x4f, 0x71, 0x65, 0x70, 0x38, 0xf7, 0x92, 0x48, 0x7b, 0x81, 0x18, 0xcc, 0xa2, 0x6c, - 0xcb, 0xbd, 0x40, 0xc4, 0xd1, 0x5e, 0x20, 0xfe, 0x9e, 0xcb, 0xa2, 0x71, 0xf8, 0xeb, 0xed, 0x74, - 0xee, 0x51, 0x71, 0x5b, 0xfd, 0x95, 0x04, 0x9a, 0x68, 0xba, 0x36, 0xd1, 0xbb, 0x3c, 0x2c, 0xee, - 0x02, 0xca, 0xb1, 0xdd, 0xf0, 0x7a, 0x95, 0x47, 0xaf, 0xfa, 0xbf, 0xf1, 0x65, 0x34, 0xb5, 0xa8, - 0x3b, 0x2e, 0xf0, 0xd7, 0x7b, 0x06, 0x79, 0x04, 0x91, 0x20, 0x29, 0x2d, 0x04, 0xc5, 0x8b, 0x8c, - 0x8e, 0xf1, 0x41, 0x1c, 0x70, 0x6a, 0xcf, 0x38, 0xe0, 0xdc, 0x47, 0xc3, 0xd2, 0x18, 0x44, 0xfb, - 0x86, 0x78, 0xd5, 0xef, 0x25, 0x50, 0x64, 0x9f, 0xfe, 0xf1, 0xe3, 0xcb, 0x56, 0xd0, 0x74, 0x28, - 0xf6, 0x9c, 0x87, 0xb3, 0xec, 0x33, 0x34, 0x3d, 0xcc, 0x8d, 0x5f, 0xf4, 0xc3, 0x28, 0xee, 0x69, - 0x8b, 0x3c, 0xd2, 0x2f, 0x0b, 0x4f, 0x71, 0xd9, 0x1d, 0x4d, 0x40, 0xf1, 0x30, 0x9c, 0x7f, 0x35, - 0x15, 0x04, 0xd6, 0xe2, 0xcb, 0x3c, 0xae, 0x5e, 0x78, 0xa9, 0x3a, 0x94, 0x00, 0x8b, 0xc5, 0xd1, - 0x7f, 0x09, 0x4d, 0xd4, 0xbb, 0x7d, 0x62, 0x3b, 0x56, 0x0f, 0xde, 0x90, 0x4d, 0x06, 0x01, 0x6e, - 0xa6, 0x00, 0x17, 0x83, 0xb9, 0x44, 0xfa, 0xe0, 0x01, 0xdc, 0xd4, 0x9e, 0x0f, 0xe0, 0x5e, 0x45, - 0xe3, 0xf7, 0x1c, 0x1d, 0x02, 0x6e, 0x7c, 0xd2, 0x01, 0x05, 0x88, 0xa4, 0x40, 0x81, 0xaf, 0xa1, - 0x0c, 0x0c, 0x50, 0x8e, 0x32, 0x0e, 0xb4, 0x10, 0xb5, 0xd8, 0x01, 0x88, 0x18, 0xc8, 0xc6, 0x68, - 0xf0, 0x5d, 0x54, 0x0c, 0xbc, 0x2f, 0xc8, 0xec, 0xec, 0xdd, 0x06, 0x86, 0x64, 0x54, 0x9b, 0x3e, - 0x8e, 0xa5, 0x84, 0x16, 0x45, 0x44, 0x18, 0xf1, 0x02, 0x9a, 0x0e, 0x60, 0x54, 0x45, 0x5e, 0x16, - 0x02, 0x48, 0xc6, 0x26, 0xc8, 0xa2, 0xea, 0x14, 0x45, 0x85, 0xd9, 0x70, 0x3d, 0x78, 0x04, 0x3c, - 0xb7, 0xa7, 0x91, 0x9e, 0xe1, 0xc1, 0xea, 0x59, 0xfe, 0x08, 0xb8, 0xfc, 0xf4, 0xf7, 0x3c, 0x9a, - 0xd2, 0xac, 0x81, 0x4b, 0x56, 0x2d, 0xef, 0x09, 0xc2, 0x7c, 0x90, 0x20, 0xce, 0xa6, 0x98, 0x96, - 0x6b, 0x79, 0xb9, 0xbc, 0xc4, 0x9c, 0x63, 0x32, 0x17, 0x5e, 0x8e, 0x7b, 0xcd, 0x50, 0xc8, 0xb0, - 0x25, 0x7c, 0x5e, 0x54, 0x58, 0xcc, 0xf3, 0x85, 0x7f, 0x29, 0x81, 0x32, 0xab, 0xb6, 0x6e, 0xba, - 0x0e, 0x8f, 0xd5, 0x39, 0x37, 0xbb, 0x65, 0xeb, 0x7d, 0x6a, 0x1f, 0xb3, 0x10, 0xb3, 0x0e, 0xaf, - 0xb7, 0x39, 0x73, 0xf7, 0xe9, 0xd7, 0xfd, 0xbb, 0x61, 0xe9, 0x0b, 0xeb, 0x70, 0x48, 0x3d, 0xdb, - 0xb6, 0xba, 0xd7, 0xd7, 0x6d, 0xfd, 0xa1, 0xc9, 0x9e, 0x00, 0xd6, 0x3b, 0xd7, 0x5d, 0xd2, 0x21, - 0x7d, 0xcb, 0x76, 0xaf, 0xeb, 0x7d, 0xf3, 0x3a, 0xdc, 0x54, 0xba, 0xee, 0x4b, 0x62, 0x25, 0x50, - 0x13, 0x70, 0xe1, 0x2f, 0xd1, 0x04, 0x18, 0x0e, 0x2f, 0x23, 0xc4, 0x3f, 0xb5, 0xdc, 0xef, 0xf3, - 0xc0, 0x1f, 0x21, 0xaa, 0xc1, 0xc3, 0x30, 0xc3, 0xf6, 0x15, 0xa6, 0xf7, 0xc5, 0xfc, 0xe0, 0x82, - 0x04, 0x6a, 0x05, 0xab, 0xbc, 0x46, 0x9e, 0x9a, 0x26, 0x03, 0x8d, 0x7b, 0x95, 0x8d, 0x51, 0x52, - 0x98, 0x0d, 0xaf, 0xa1, 0x69, 0x2e, 0xd7, 0xbf, 0x7e, 0x3a, 0x25, 0x8f, 0x0a, 0x21, 0x34, 0x33, - 0x5a, 0xbf, 0x8e, 0x06, 0x07, 0x8b, 0x65, 0x84, 0x38, 0xf0, 0x5c, 0x90, 0xd6, 0x06, 0x92, 0x91, - 0x2b, 0xd3, 0x60, 0xb1, 0xf0, 0x18, 0xb2, 0xc7, 0xcf, 0x72, 0x98, 0x8b, 0xd9, 0xb2, 0x25, 0x16, - 0x51, 0x06, 0xb3, 0xfa, 0x62, 0x8c, 0x8c, 0xb0, 0xcd, 0xcb, 0x2c, 0xb8, 0x82, 0x26, 0xfd, 0x73, - 0xc7, 0x7b, 0xf7, 0xea, 0x55, 0x88, 0x2c, 0xe2, 0x69, 0xbb, 0x43, 0x37, 0x5b, 0x45, 0x21, 0x12, - 0x0f, 0xbe, 0x89, 0x72, 0x2c, 0x72, 0xa7, 0xce, 0x42, 0x8d, 0xbc, 0xab, 0x05, 0x00, 0x6b, 0x99, - 0x62, 0x8b, 0xf9, 0x84, 0xf8, 0x0d, 0x54, 0x28, 0xdf, 0x6f, 0xd2, 0x71, 0xa6, 0xac, 0x2d, 0x3b, - 0xca, 0x99, 0x20, 0x17, 0x00, 0x64, 0xbb, 0xb3, 0x3a, 0xa4, 0xa5, 0xdb, 0xd2, 0xe0, 0x21, 0xd2, - 0xe3, 0x1a, 0x9a, 0x92, 0xb6, 0x2e, 0x1c, 0xe5, 0x2c, 0x48, 0x60, 0x09, 0xc7, 0xd9, 0x23, 0x81, - 0x3c, 0x65, 0xbd, 0x94, 0xd2, 0x4f, 0x66, 0xa2, 0x56, 0x53, 0x35, 0x1d, 0xbd, 0xd3, 0xb1, 0xb6, - 0x34, 0x62, 0x3a, 0xce, 0x80, 0x40, 0x9c, 0x52, 0x8e, 0x59, 0x8d, 0xc1, 0x51, 0x2d, 0x9b, 0xe1, - 0xa4, 0x84, 0x8b, 0x32, 0x1b, 0xfe, 0x00, 0xe1, 0x32, 0xfd, 0x2d, 0x3f, 0x4c, 0xfd, 0xd4, 0xc8, - 0x87, 0xa9, 0x2f, 0xf3, 0xe1, 0xe3, 0x92, 0xce, 0xb8, 0x5a, 0x23, 0x1e, 0xa8, 0x8e, 0x91, 0x8a, - 0xb7, 0xd0, 0xf9, 0x86, 0x4d, 0x1e, 0x9a, 0xd6, 0xc0, 0xf1, 0xa6, 0x0f, 0x6f, 0xdc, 0x3a, 0xbf, - 0xe7, 0xb8, 0xf5, 0x3c, 0x2f, 0xf8, 0x5c, 0xdf, 0x26, 0x0f, 0x5b, 0xde, 0x8d, 0x8d, 0x96, 0x38, - 0x8a, 0x8d, 0x92, 0x4e, 0xd5, 0x55, 0xfe, 0x70, 0x60, 0x13, 0x0e, 0x37, 0x89, 0xa3, 0x28, 0xc1, - 0x50, 0xab, 0x53, 0x94, 0x27, 0xd1, 0x94, 0x4c, 0x37, 0xcc, 0x86, 0x35, 0x84, 0xef, 0x54, 0x3c, - 0xaf, 0xa6, 0xdc, 0x6e, 0x5b, 0x83, 0x9e, 0xeb, 0x28, 0x4f, 0x83, 0x30, 0x95, 0xaa, 0x65, 0xbd, - 0xed, 0xdf, 0xde, 0x6a, 0xe9, 0x1c, 0x2f, 0xaa, 0x25, 0xca, 0xad, 0xfe, 0x5c, 0x4a, 0x1c, 0x53, - 0xfc, 0x97, 0xe0, 0x12, 0xb1, 0x2f, 0xc1, 0x5d, 0x43, 0x79, 0x3e, 0x1f, 0xfb, 0xf7, 0xb9, 0x21, - 0x6b, 0x8d, 0x77, 0xf5, 0xc8, 0x34, 0xb4, 0x80, 0x00, 0x32, 0x86, 0x04, 0xc9, 0x9b, 0x53, 0x42, - 0xc6, 0x90, 0x20, 0x79, 0xb3, 0x94, 0xba, 0xf9, 0x86, 0xfc, 0x64, 0x78, 0x3a, 0xb8, 0x9d, 0xe4, - 0xe5, 0x6f, 0x64, 0xb7, 0x93, 0xc4, 0x77, 0xc3, 0x5f, 0x87, 0x0c, 0xa6, 0xdc, 0xc4, 0xb9, 0xf7, - 0x00, 0xc3, 0x9f, 0xd8, 0x23, 0x42, 0x29, 0x4c, 0x39, 0x35, 0x1d, 0x0c, 0x44, 0x15, 0x7b, 0x39, - 0x92, 0x60, 0x30, 0x90, 0xda, 0x65, 0x5b, 0x4a, 0xbf, 0x2f, 0xb2, 0xe0, 0x15, 0x34, 0x13, 0xd1, - 0x2a, 0xbf, 0x53, 0x00, 0x19, 0xb3, 0x62, 0x9a, 0x44, 0x9c, 0x6c, 0x22, 0xbc, 0xea, 0xbf, 0x4d, - 0x44, 0x86, 0x52, 0xaa, 0x18, 0x4e, 0x25, 0x34, 0x0e, 0x28, 0xc6, 0x13, 0xcd, 0x14, 0x23, 0x10, - 0xe1, 0x2b, 0x28, 0x17, 0x4a, 0x62, 0x0a, 0xb7, 0x8d, 0xfc, 0x0c, 0xa6, 0x3e, 0x16, 0xdf, 0x40, - 0x39, 0x3a, 0xb0, 0xf5, 0x42, 0x37, 0x68, 0x06, 0x1c, 0x26, 0x8e, 0x44, 0x1e, 0x1d, 0xe5, 0x91, - 0xf2, 0x0c, 0x70, 0x9e, 0x98, 0x61, 0x3c, 0xc8, 0x2b, 0xf0, 0x7f, 0xd2, 0xbb, 0x6e, 0xc2, 0x1e, - 0xc9, 0x05, 0xcb, 0xd7, 0xa8, 0x6b, 0x4c, 0x4b, 0x2f, 0x3b, 0x11, 0x07, 0x8f, 0xed, 0x31, 0xb5, - 0x74, 0x66, 0x47, 0x8e, 0x26, 0x53, 0x8a, 0xaf, 0x58, 0xc0, 0x4d, 0x8b, 0x74, 0xcc, 0x2b, 0x16, - 0xa1, 0x3b, 0x09, 0x12, 0x03, 0xfe, 0x1c, 0xca, 0x07, 0xef, 0x71, 0x8c, 0x0b, 0x57, 0x62, 0x62, - 0x9e, 0xe1, 0x08, 0x28, 0xf1, 0xd7, 0x50, 0x46, 0x4a, 0xde, 0x7a, 0x7d, 0x1f, 0xbb, 0xd6, 0xb3, - 0xe2, 0x05, 0x47, 0xe6, 0x66, 0x86, 0x13, 0xb7, 0x72, 0xa1, 0x78, 0x15, 0x9d, 0x69, 0xd8, 0xc4, - 0x80, 0xf3, 0x91, 0xda, 0xa3, 0xbe, 0xcd, 0xaf, 0x9f, 0x32, 0x93, 0x86, 0x51, 0xa6, 0xef, 0xa1, - 0xe9, 0xf8, 0xc7, 0xf1, 0x82, 0xa0, 0x38, 0x76, 0x3a, 0xf5, 0xb0, 0x9a, 0xdc, 0x25, 0xdb, 0x5b, - 0x96, 0x6d, 0xb0, 0x1b, 0x9a, 0x7c, 0xea, 0xe1, 0x8a, 0xde, 0xe4, 0x28, 0x71, 0xea, 0x91, 0x99, - 0x2e, 0xbc, 0x86, 0x0a, 0x8f, 0x7b, 0x49, 0xf0, 0x37, 0x92, 0x23, 0x8e, 0x33, 0x4f, 0x6e, 0x3e, - 0x22, 0x3f, 0x37, 0xdc, 0xf8, 0x88, 0xdc, 0x70, 0x3f, 0x4e, 0x8e, 0x38, 0xab, 0x3d, 0xd1, 0x39, - 0x9c, 0x7c, 0x65, 0xc8, 0x39, 0x9c, 0x82, 0xf4, 0x59, 0xa6, 0xa1, 0x89, 0x44, 0xa1, 0x6c, 0x6f, - 0x99, 0x3d, 0xb3, 0xbd, 0xfd, 0xed, 0xd4, 0x6e, 0x67, 0xd9, 0xa7, 0xba, 0x3f, 0x88, 0xee, 0x6f, - 0xa0, 0x82, 0xaf, 0x59, 0x9e, 0x01, 0x7f, 0xd2, 0xbf, 0x92, 0xcc, 0xc0, 0xc0, 0x23, 0x10, 0xe1, - 0xab, 0xac, 0xae, 0xf0, 0x00, 0x79, 0x16, 0x18, 0xd8, 0xed, 0x34, 0xdd, 0xd5, 0xe1, 0x89, 0x71, - 0xcd, 0x47, 0xab, 0xff, 0x34, 0x19, 0x1b, 0x10, 0x70, 0xda, 0x46, 0x07, 0x68, 0xa3, 0x18, 0x25, - 0xb2, 0x50, 0x86, 0x53, 0x25, 0x1e, 0x40, 0x89, 0x3f, 0x4a, 0xc6, 0x06, 0x7e, 0x9c, 0x2a, 0xf1, - 0x20, 0xa3, 0xc5, 0x35, 0x94, 0xd7, 0xac, 0x2d, 0xa7, 0x02, 0x5e, 0x3c, 0x1b, 0x2b, 0x60, 0xa0, - 0xb6, 0xad, 0x2d, 0xa7, 0x05, 0xfe, 0xb9, 0x16, 0x10, 0xa8, 0x7f, 0x9a, 0xdc, 0x25, 0x34, 0xe6, - 0x54, 0xf1, 0x1f, 0xe7, 0x14, 0xf9, 0xdb, 0x49, 0x29, 0xf4, 0xe6, 0x44, 0x27, 0x43, 0x6d, 0xb6, - 0x37, 0x48, 0x57, 0x0f, 0x27, 0x43, 0x75, 0x00, 0xca, 0x53, 0xb2, 0x05, 0x24, 0xea, 0xef, 0x24, - 0x43, 0xb1, 0x47, 0xa7, 0xba, 0xdb, 0xb7, 0xee, 0x7c, 0xab, 0xe3, 0xe1, 0x54, 0xa7, 0x9a, 0xdb, - 0xaf, 0xe6, 0xbe, 0x99, 0x0c, 0x45, 0x9e, 0x9d, 0xdc, 0xf4, 0x8a, 0xbf, 0x93, 0x8c, 0x46, 0xd1, - 0x9d, 0x5c, 0x4b, 0xba, 0x86, 0xf2, 0x5c, 0x0f, 0xfe, 0x54, 0xc1, 0xc6, 0x7d, 0x06, 0x84, 0x2d, - 0x45, 0x9f, 0x40, 0xfd, 0x8b, 0x49, 0x24, 0x47, 0x04, 0x9e, 0x50, 0x1b, 0xfa, 0xed, 0xa4, 0x1c, - 0x0b, 0x79, 0x72, 0xed, 0x67, 0x16, 0xa1, 0xe6, 0x60, 0xad, 0xcd, 0xaf, 0xd2, 0x8f, 0x0b, 0x7b, - 0xd2, 0x3e, 0x54, 0x13, 0x28, 0xd4, 0xff, 0x9b, 0x8c, 0x0d, 0xd0, 0x3c, 0xb9, 0x0a, 0xbc, 0x09, - 0xfb, 0xc4, 0xed, 0x5e, 0x30, 0x90, 0xc3, 0x26, 0x24, 0xed, 0x7f, 0x91, 0xbc, 0x3c, 0x1e, 0x21, - 0xfe, 0x7c, 0x8c, 0xbb, 0x06, 0x29, 0x74, 0x62, 0xdf, 0x85, 0x10, 0x1d, 0xb7, 0x7f, 0x99, 0xdc, - 0x2b, 0x9e, 0xf5, 0x24, 0xcf, 0xaa, 0xd9, 0x86, 0xbe, 0x0d, 0xf7, 0x2e, 0x69, 0x4b, 0x4c, 0xb0, - 0xd4, 0x36, 0x7d, 0x06, 0x12, 0x13, 0x59, 0x71, 0x2a, 0xf5, 0x37, 0xc7, 0xe3, 0x83, 0x29, 0x4f, - 0xae, 0x0a, 0xbd, 0xd7, 0xff, 0xc6, 0xf7, 0x7c, 0xfd, 0x2f, 0xb3, 0xdf, 0xd7, 0xff, 0xb2, 0x23, - 0x5f, 0xff, 0xbb, 0x88, 0xd2, 0x73, 0x96, 0xb1, 0x0d, 0x71, 0x0f, 0x13, 0xac, 0xb0, 0x35, 0xcb, - 0xd8, 0xd6, 0x00, 0x8a, 0xff, 0x4a, 0x02, 0x65, 0x17, 0x88, 0x6e, 0xd0, 0x1e, 0x92, 0xdf, 0x2d, - 0x6c, 0xe0, 0xbd, 0x27, 0x13, 0x36, 0x30, 0xb3, 0xc1, 0x0a, 0x13, 0x0d, 0x85, 0x97, 0x8f, 0xef, - 0xa0, 0x5c, 0x45, 0x77, 0xc9, 0xba, 0x65, 0x6f, 0x43, 0x20, 0xc4, 0x54, 0x70, 0xcd, 0x46, 0xb2, - 0x1f, 0x8f, 0x88, 0x9d, 0x15, 0xb5, 0xf9, 0x2f, 0xcd, 0x67, 0xa6, 0x6a, 0xe1, 0xf9, 0x56, 0x0b, - 0x81, 0x5a, 0xe4, 0xc4, 0xaa, 0xc1, 0xb6, 0xf2, 0xc4, 0x88, 0x6d, 0xe5, 0x5f, 0x4a, 0x47, 0xe2, - 0x1e, 0x4f, 0xb6, 0x2b, 0x1d, 0x3c, 0x70, 0x39, 0xbe, 0xff, 0x07, 0x2e, 0x33, 0x7b, 0x9a, 0x78, - 0x76, 0xbf, 0x26, 0x9e, 0x1b, 0x69, 0xe2, 0x41, 0x7b, 0xe7, 0x47, 0xb6, 0x77, 0x9d, 0x77, 0x03, - 0xb4, 0x7b, 0x42, 0xb4, 0x8b, 0x3b, 0xc3, 0xd2, 0x14, 0xed, 0x1f, 0xb1, 0xa9, 0xd0, 0x40, 0x84, - 0xfa, 0xbd, 0xf4, 0x2e, 0xc1, 0xca, 0x47, 0x62, 0x23, 0xfc, 0x85, 0xcf, 0xd4, 0xe3, 0xbc, 0xf0, - 0x99, 0x7e, 0x8c, 0x17, 0x3e, 0x63, 0x5e, 0x6d, 0x1d, 0x3f, 0xc0, 0xab, 0xad, 0xb2, 0x35, 0x65, - 0xf6, 0x6f, 0x4d, 0xd9, 0x3d, 0xad, 0x29, 0xb7, 0x5f, 0x6b, 0xca, 0xef, 0xc3, 0x9a, 0xd0, 0x9e, - 0xd6, 0x54, 0x38, 0xbc, 0x35, 0xf5, 0xd1, 0x85, 0xe8, 0x05, 0x13, 0xdf, 0x22, 0x34, 0x84, 0xa3, - 0x58, 0x7e, 0xb6, 0x0e, 0xe7, 0x9c, 0x03, 0x86, 0x6d, 0xb1, 0xb4, 0xb3, 0xe1, 0xa4, 0xad, 0x5a, - 0x0c, 0xb7, 0xfa, 0x1b, 0xc9, 0xd1, 0xf7, 0x62, 0x8e, 0xe7, 0x10, 0xf7, 0xd3, 0xb1, 0x5a, 0x4a, - 0xcb, 0x91, 0xf6, 0xa3, 0xb5, 0x1c, 0x12, 0x1b, 0xa7, 0xb3, 0xef, 0x24, 0x46, 0x5d, 0xd6, 0x39, - 0x94, 0xc6, 0x3e, 0x1d, 0x8d, 0x55, 0x81, 0xa8, 0x52, 0x47, 0x0e, 0x52, 0x09, 0xe7, 0x40, 0x4d, - 0x3d, 0x66, 0x0e, 0xd4, 0x7f, 0x9c, 0x40, 0x67, 0xee, 0x0e, 0xd6, 0x08, 0x8f, 0x4d, 0xf1, 0xab, - 0xf1, 0x01, 0x42, 0x14, 0xcc, 0x4f, 0xec, 0x13, 0x70, 0x62, 0xff, 0x19, 0xf1, 0xa2, 0x4d, 0x88, - 0x61, 0x36, 0xa0, 0x66, 0xa7, 0xf5, 0xcf, 0x7a, 0xa1, 0x47, 0x9b, 0x83, 0x35, 0x12, 0x7d, 0x6f, - 0x55, 0x90, 0x7e, 0xe1, 0x0d, 0x16, 0xd4, 0xf9, 0xb8, 0x27, 0xe4, 0xbf, 0x9e, 0x1c, 0x79, 0xb7, - 0xe9, 0xd8, 0xbe, 0x7d, 0xf9, 0xd5, 0xd8, 0x56, 0xe1, 0xf6, 0xfb, 0xcc, 0x2e, 0xed, 0x10, 0x92, - 0x18, 0x27, 0x25, 0x5e, 0x61, 0xc7, 0xfc, 0xb1, 0xd0, 0x8f, 0x55, 0x61, 0x7f, 0x94, 0x18, 0x79, - 0x07, 0xed, 0xd8, 0x3e, 0x27, 0xfa, 0xdd, 0xa4, 0x77, 0xf5, 0xed, 0x50, 0x9f, 0x70, 0x0d, 0xe5, - 0x79, 0x7e, 0x3f, 0x39, 0xb4, 0x8e, 0xef, 0x5b, 0xc0, 0x3e, 0x98, 0x4f, 0x40, 0xa7, 0x79, 0xe1, - 0xf1, 0x60, 0x21, 0xb4, 0x4e, 0x78, 0x35, 0x58, 0x13, 0x48, 0xe8, 0x44, 0x5e, 0x7b, 0x64, 0xba, - 0xe0, 0x15, 0xd0, 0xb6, 0x4c, 0xb1, 0x89, 0x9c, 0x3c, 0x32, 0x5d, 0xe6, 0x13, 0xf8, 0x68, 0x3a, - 0x49, 0x0b, 0x4f, 0x22, 0xf1, 0x49, 0xda, 0xe1, 0x89, 0x46, 0xf9, 0x25, 0x87, 0x6b, 0x28, 0xcf, - 0xe3, 0xd5, 0xfc, 0x57, 0xe5, 0xa1, 0xb6, 0x3c, 0xc2, 0x0d, 0x6a, 0xeb, 0x13, 0x50, 0x89, 0xd2, - 0xc3, 0xcf, 0x20, 0x91, 0xbd, 0xf8, 0xac, 0x71, 0x8c, 0xba, 0x93, 0x8c, 0xde, 0xc0, 0x3b, 0xb9, - 0x8b, 0x82, 0xab, 0x72, 0x64, 0x0e, 0x84, 0xa3, 0x81, 0xc3, 0x25, 0x5e, 0x22, 0x60, 0x7e, 0xd7, - 0x0d, 0x94, 0xbb, 0x4b, 0xb6, 0x59, 0x10, 0x59, 0x26, 0x88, 0xc4, 0xdb, 0xe4, 0x30, 0x71, 0xfb, - 0xc6, 0xa3, 0x53, 0x7f, 0x37, 0x19, 0xbd, 0x5b, 0x78, 0x72, 0x95, 0xfd, 0x59, 0x94, 0x05, 0x55, - 0xd6, 0xbd, 0xfd, 0x43, 0x50, 0x20, 0x7b, 0xe7, 0x54, 0x0a, 0xe1, 0xf6, 0xc8, 0xd4, 0x5f, 0xcd, - 0x84, 0x2f, 0x9c, 0x9e, 0x5c, 0xed, 0x7d, 0x01, 0x15, 0x2a, 0x56, 0xcf, 0x31, 0x1d, 0x97, 0xf4, - 0xda, 0x9e, 0xc1, 0x3e, 0x4d, 0x1d, 0x96, 0x76, 0x00, 0x16, 0x23, 0xd2, 0x05, 0xea, 0xc7, 0x31, - 0x5e, 0xfc, 0x2a, 0xca, 0x83, 0xca, 0x21, 0xe8, 0x52, 0xc8, 0xde, 0xbd, 0x46, 0x81, 0xe1, 0x88, - 0xcb, 0x80, 0x14, 0xdf, 0x43, 0xb9, 0xca, 0x86, 0xd9, 0x31, 0x6c, 0xd2, 0xe3, 0xcf, 0x43, 0x3c, - 0x1f, 0x7f, 0x3d, 0x78, 0x16, 0xfe, 0x05, 0x5a, 0x56, 0x9d, 0x36, 0x67, 0x93, 0x62, 0xf2, 0x39, - 0xec, 0xc2, 0x2f, 0x26, 0x11, 0x0a, 0x18, 0xf0, 0x73, 0x28, 0xe9, 0x5d, 0xfc, 0x62, 0x67, 0xde, - 0x92, 0x05, 0x25, 0x61, 0x28, 0xe6, 0x7d, 0x3b, 0xb9, 0x67, 0xdf, 0xbe, 0x87, 0x32, 0x6c, 0x8f, - 0x08, 0xc2, 0x52, 0x85, 0x3b, 0x70, 0x23, 0x2b, 0x3c, 0x0b, 0xf4, 0x6c, 0xb1, 0x08, 0x9e, 0x9d, - 0x14, 0xe2, 0xc9, 0x84, 0x5d, 0x68, 0xa3, 0x71, 0xf8, 0x0b, 0x5f, 0x46, 0x69, 0xd0, 0x62, 0x02, - 0xd6, 0x89, 0x70, 0x7d, 0x2a, 0xa4, 0x3f, 0xc0, 0xd3, 0x66, 0xaa, 0x58, 0x3d, 0x97, 0x16, 0x0d, - 0xb5, 0x9e, 0xe0, 0x7a, 0xe1, 0x30, 0x49, 0x2f, 0x1c, 0xa6, 0xfe, 0x8b, 0x64, 0xcc, 0x55, 0xe8, - 0x93, 0xdb, 0x4d, 0x5e, 0x43, 0x08, 0x2e, 0xf8, 0x51, 0x7d, 0x7a, 0xf7, 0xbd, 0xa0, 0x97, 0x80, - 0x20, 0x30, 0x5b, 0xc9, 0xad, 0x0f, 0x88, 0xd5, 0xdf, 0x4b, 0x44, 0xee, 0xcf, 0x1e, 0xdb, 0xd7, - 0x8a, 0xa4, 0x6f, 0x39, 0xe6, 0x2f, 0x2f, 0xfd, 0x20, 0x19, 0x77, 0x9b, 0xf8, 0x78, 0x9a, 0x78, - 0xf0, 0x04, 0x44, 0xfa, 0x00, 0x4f, 0x40, 0xbc, 0x8f, 0xa6, 0x43, 0x77, 0x6c, 0x79, 0x7a, 0xf0, - 0xcb, 0xbb, 0x5f, 0xd6, 0x1d, 0x7d, 0x35, 0x54, 0x22, 0x53, 0xff, 0x5f, 0x62, 0xf7, 0x1b, 0xd6, - 0x47, 0x6e, 0x3a, 0x31, 0x0a, 0x48, 0xfd, 0xf9, 0x28, 0xe0, 0x09, 0x2c, 0x33, 0x8f, 0xb7, 0x02, - 0x7e, 0x42, 0x06, 0x8f, 0x8f, 0x5b, 0x01, 0xbf, 0x9a, 0x40, 0xfb, 0xb8, 0xce, 0x7e, 0xa4, 0x3a, - 0x78, 0xe9, 0x45, 0x54, 0x80, 0xe9, 0xaa, 0xcc, 0xde, 0xd4, 0x9d, 0x40, 0xb9, 0x95, 0xb9, 0x66, - 0x4d, 0x7b, 0xb7, 0x56, 0x2d, 0x8e, 0x61, 0x84, 0x32, 0xd5, 0xda, 0x72, 0xbd, 0x56, 0x2d, 0x26, - 0x5e, 0xfa, 0x5f, 0x09, 0x84, 0x9a, 0xf3, 0xab, 0x0d, 0x4e, 0x58, 0x40, 0xd9, 0xfa, 0xf2, 0xbb, - 0xe5, 0xc5, 0x3a, 0xa5, 0xcb, 0xa1, 0xf4, 0x4a, 0xa3, 0xb6, 0x5c, 0x4c, 0xe0, 0x3c, 0x1a, 0xaf, - 0x2c, 0xae, 0x34, 0x6b, 0xc5, 0x24, 0x05, 0x6a, 0xb5, 0x72, 0xb5, 0x98, 0xa2, 0xc0, 0xfb, 0x5a, - 0x7d, 0xb5, 0x56, 0x4c, 0xd3, 0x3f, 0x17, 0x9b, 0xab, 0xe5, 0xd5, 0xe2, 0x38, 0xfd, 0x73, 0x1e, - 0xfe, 0xcc, 0x50, 0x61, 0xcd, 0xda, 0x2a, 0xfc, 0xc8, 0xd2, 0x2a, 0xcc, 0x7b, 0xbf, 0x72, 0x14, - 0x45, 0x45, 0x57, 0xeb, 0x5a, 0x31, 0x4f, 0x7f, 0x50, 0x91, 0xf4, 0x07, 0xa2, 0x95, 0xd3, 0x6a, - 0x4b, 0x2b, 0xef, 0xd6, 0x8a, 0x05, 0x2a, 0x6b, 0xe9, 0x2e, 0x05, 0x4f, 0xd0, 0x3f, 0xb5, 0x25, - 0xfa, 0xe7, 0x24, 0x95, 0xa4, 0xd5, 0xca, 0x8b, 0x8d, 0xf2, 0xea, 0x42, 0x71, 0x8a, 0xd6, 0x07, - 0x64, 0x4e, 0x33, 0xce, 0xe5, 0xf2, 0x52, 0xad, 0x58, 0xe4, 0x34, 0xd5, 0xc5, 0xfa, 0xf2, 0xdd, - 0xe2, 0x0c, 0x54, 0xe4, 0xcb, 0x4b, 0xf0, 0x03, 0x53, 0x06, 0xf8, 0xeb, 0xcc, 0x4b, 0x3f, 0x85, - 0x32, 0xec, 0xc1, 0x12, 0x7c, 0x1e, 0x9d, 0x59, 0x69, 0xb6, 0x56, 0xbf, 0xdc, 0xa8, 0xb5, 0xee, - 0x2d, 0x37, 0x1b, 0xb5, 0x4a, 0x7d, 0xbe, 0x0e, 0xaa, 0x9a, 0x41, 0x93, 0x1e, 0x62, 0xb1, 0xbe, - 0x7c, 0xef, 0xbd, 0x62, 0x42, 0x04, 0x2d, 0x95, 0x2b, 0x2b, 0xcd, 0x62, 0x12, 0x9f, 0x41, 0xd3, - 0x1e, 0xe8, 0x7e, 0x7d, 0xb9, 0xba, 0x72, 0xbf, 0x59, 0x4c, 0xbd, 0x74, 0x07, 0x9d, 0x8b, 0x3d, - 0xc8, 0xa3, 0xb5, 0xb9, 0x53, 0x5b, 0xae, 0x69, 0xe5, 0xc5, 0xe2, 0x18, 0xad, 0x68, 0xb3, 0x56, - 0xb9, 0xa7, 0xd5, 0x57, 0xbf, 0x5c, 0x4c, 0xd0, 0x4f, 0x68, 0xd6, 0xca, 0x5a, 0x65, 0xa1, 0x98, - 0xc4, 0x59, 0x94, 0x6a, 0xbe, 0xb3, 0x58, 0x4c, 0xcd, 0x55, 0x3f, 0xfa, 0x0f, 0x97, 0xc6, 0x3e, - 0xfa, 0xe1, 0xa5, 0xc4, 0x1f, 0xfe, 0xf0, 0x52, 0xe2, 0xdf, 0xff, 0xf0, 0x52, 0xe2, 0x2b, 0x37, - 0x0e, 0x72, 0x2c, 0xc9, 0x4c, 0x67, 0x2d, 0x03, 0xdb, 0xf5, 0x37, 0xff, 0x2c, 0x00, 0x00, 0xff, - 0xff, 0x97, 0xda, 0xcb, 0x12, 0x14, 0xeb, 0x00, 0x00, + // 10896 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x1c, 0x47, + 0x76, 0xd8, 0xce, 0xc7, 0xce, 0x47, 0xcd, 0x7e, 0x0c, 0x8b, 0x94, 0xd8, 0xa2, 0x28, 0x8e, 0xd4, + 0xba, 0xa3, 0x48, 0x1d, 0xb5, 0x3c, 0x91, 0x3c, 0xf1, 0xa4, 0x93, 0x4e, 0x9a, 0x9d, 0x99, 0xe5, + 0x8e, 0xb8, 0x1f, 0xa3, 0x9e, 0x5d, 0x51, 0xe7, 0xf3, 0x69, 0xdc, 0x3b, 0x5d, 0xdc, 0x6d, 0xed, + 0xcc, 0xf4, 0x5c, 0x77, 0x0f, 0x97, 0xab, 0xe4, 0x87, 0x0f, 0x71, 0x92, 0x4b, 0x70, 0x36, 0x02, + 0x07, 0x86, 0x7f, 0xe4, 0x87, 0xed, 0x00, 0x01, 0x12, 0xc4, 0xf0, 0xc1, 0x81, 0x61, 0xc7, 0x48, + 0x8c, 0xc4, 0xb9, 0x4b, 0x22, 0xe7, 0xe2, 0xb3, 0x1d, 0x07, 0x0e, 0x10, 0x20, 0x73, 0xce, 0x05, + 0x41, 0x80, 0x45, 0x12, 0x1c, 0x92, 0x43, 0xe2, 0x24, 0x70, 0x12, 0xd4, 0xab, 0xea, 0xee, 0xaa, + 0xee, 0x9e, 0xfd, 0xe0, 0x52, 0xde, 0x5b, 0xed, 0xfe, 0x21, 0x77, 0xde, 0x57, 0x55, 0xbf, 0x7a, + 0x55, 0xf5, 0xaa, 0xea, 0xd5, 0x2b, 0x74, 0xd5, 0x25, 0x1d, 0xd2, 0xb7, 0x6c, 0xf7, 0x7a, 0x87, + 0xac, 0xeb, 0xed, 0xed, 0xeb, 0xee, 0x76, 0x9f, 0x38, 0xd7, 0xc9, 0x03, 0xd2, 0x73, 0xbd, 0xff, + 0x66, 0xfa, 0xb6, 0xe5, 0x5a, 0x38, 0xc3, 0x7e, 0x5d, 0x38, 0xb7, 0x6e, 0xad, 0x5b, 0x00, 0xba, + 0x4e, 0xff, 0x62, 0xd8, 0x0b, 0x17, 0xd7, 0x2d, 0x6b, 0xbd, 0x43, 0xae, 0xc3, 0xaf, 0xb5, 0xc1, + 0xfd, 0xeb, 0x8e, 0x6b, 0x0f, 0xda, 0x2e, 0xc7, 0x96, 0xc2, 0x58, 0xd7, 0xec, 0x12, 0xc7, 0xd5, + 0xbb, 0x7d, 0x4e, 0x70, 0x29, 0x4c, 0xb0, 0x65, 0xeb, 0xfd, 0x3e, 0xb1, 0x79, 0xe1, 0x17, 0x9e, + 0x8b, 0xaf, 0x27, 0xfc, 0xcb, 0x49, 0x5e, 0x8a, 0x27, 0xf1, 0x04, 0x85, 0x24, 0xaa, 0x3f, 0x9b, + 0x44, 0xb9, 0x45, 0xe2, 0xea, 0x86, 0xee, 0xea, 0xf8, 0x22, 0x1a, 0xaf, 0xf7, 0x0c, 0xf2, 0x50, + 0x49, 0x3c, 0x9b, 0xb8, 0x92, 0x9a, 0xcd, 0xec, 0x0c, 0x4b, 0x49, 0x62, 0x6a, 0x0c, 0x88, 0x9f, + 0x41, 0xe9, 0x95, 0xed, 0x3e, 0x51, 0x92, 0xcf, 0x26, 0xae, 0xe4, 0x67, 0xf3, 0x3b, 0xc3, 0xd2, + 0x38, 0xe8, 0x42, 0x03, 0x30, 0x7e, 0x0e, 0x25, 0xeb, 0x55, 0x25, 0x05, 0xc8, 0x33, 0x3b, 0xc3, + 0xd2, 0xe4, 0xc0, 0x34, 0xae, 0x59, 0x5d, 0xd3, 0x25, 0xdd, 0xbe, 0xbb, 0xad, 0x25, 0xeb, 0x55, + 0x7c, 0x19, 0xa5, 0x2b, 0x96, 0x41, 0x94, 0x34, 0x10, 0xe1, 0x9d, 0x61, 0x69, 0xaa, 0x6d, 0x19, + 0x44, 0xa0, 0x02, 0x3c, 0x7e, 0x0b, 0xa5, 0x57, 0xcc, 0x2e, 0x51, 0xc6, 0x9f, 0x4d, 0x5c, 0x29, + 0xdc, 0xb8, 0x30, 0xc3, 0xb4, 0x32, 0xe3, 0x69, 0x65, 0x66, 0xc5, 0x53, 0xdb, 0x6c, 0xf1, 0xa3, + 0x61, 0x69, 0x6c, 0x67, 0x58, 0x4a, 0x53, 0x4d, 0xfe, 0xb5, 0xef, 0x95, 0x12, 0x1a, 0x70, 0xe2, + 0xd7, 0x51, 0xa1, 0xd2, 0x19, 0x38, 0x2e, 0xb1, 0x97, 0xf4, 0x2e, 0x51, 0x32, 0x50, 0xe0, 0x85, + 0x9d, 0x61, 0xe9, 0xc9, 0x36, 0x03, 0xb7, 0x7a, 0x7a, 0x57, 0x2c, 0x58, 0x24, 0x57, 0x3f, 0x40, + 0xd3, 0x4d, 0xe2, 0x38, 0xa6, 0xd5, 0xf3, 0x55, 0xf3, 0x69, 0x94, 0xe7, 0xa0, 0x7a, 0x15, 0xd4, + 0x93, 0x9f, 0xcd, 0xee, 0x0c, 0x4b, 0x29, 0xc7, 0x34, 0xb4, 0x00, 0x83, 0x3f, 0x8b, 0xb2, 0xf7, + 0x4c, 0x77, 0x63, 0x71, 0xae, 0xcc, 0xd5, 0xf4, 0xe4, 0xce, 0xb0, 0x84, 0xb7, 0x4c, 0x77, 0xa3, + 0xd5, 0xbd, 0xaf, 0x0b, 0xe5, 0x79, 0x64, 0xea, 0xcf, 0xa5, 0xd1, 0xc4, 0xaa, 0x43, 0x6c, 0xbf, + 0xa4, 0xcb, 0x28, 0x4d, 0x7f, 0xf3, 0x42, 0x40, 0x49, 0x03, 0x87, 0xd8, 0xa2, 0x92, 0x28, 0x1e, + 0x5f, 0x45, 0xe3, 0x0b, 0xd6, 0xba, 0xd9, 0xe3, 0x05, 0x9d, 0xdd, 0x19, 0x96, 0xa6, 0x3b, 0x14, + 0x20, 0x50, 0x32, 0x0a, 0xfc, 0x45, 0x34, 0x51, 0xef, 0xd2, 0x46, 0xb7, 0x7a, 0xba, 0x6b, 0xd9, + 0xbc, 0x91, 0x40, 0x1d, 0xa6, 0x00, 0x17, 0x18, 0x25, 0x7a, 0xfc, 0x1a, 0x42, 0xe5, 0x7b, 0x4d, + 0xcd, 0xea, 0x90, 0xb2, 0xb6, 0xc4, 0x5b, 0x0f, 0xb8, 0xf5, 0x2d, 0xa7, 0x65, 0x5b, 0x1d, 0xd2, + 0xd2, 0x6d, 0xb1, 0x58, 0x81, 0x1a, 0xd7, 0xd0, 0x54, 0xb9, 0xdd, 0x26, 0x8e, 0xa3, 0x91, 0xaf, + 0x0e, 0x88, 0xe3, 0x3a, 0xca, 0xf8, 0xb3, 0xa9, 0x2b, 0xf9, 0xd9, 0x67, 0x76, 0x86, 0xa5, 0xa7, + 0x74, 0xc0, 0xb4, 0x6c, 0x8e, 0x12, 0x44, 0x84, 0x98, 0xf0, 0x2c, 0x9a, 0x2c, 0x7f, 0x38, 0xb0, + 0x49, 0xdd, 0x20, 0x3d, 0xd7, 0x74, 0xb7, 0x79, 0x93, 0x5e, 0xdc, 0x19, 0x96, 0x14, 0x9d, 0x22, + 0x5a, 0x26, 0xc7, 0x08, 0x42, 0x64, 0x16, 0xbc, 0x8c, 0xce, 0xdc, 0xa9, 0x34, 0x9a, 0xc4, 0x7e, + 0x60, 0xb6, 0x49, 0xb9, 0xdd, 0xb6, 0x06, 0x3d, 0x57, 0xc9, 0x82, 0x9c, 0xe7, 0x76, 0x86, 0xa5, + 0x67, 0xd6, 0xdb, 0xfd, 0x96, 0xc3, 0xb0, 0x2d, 0x9d, 0xa1, 0x05, 0x61, 0x51, 0x5e, 0xfc, 0x63, + 0x68, 0x72, 0xc5, 0xa6, 0x66, 0x63, 0x54, 0x09, 0x85, 0x2b, 0x39, 0x30, 0xd8, 0x27, 0x67, 0xf8, + 0x88, 0xc1, 0xa0, 0x5e, 0xcb, 0xb2, 0xca, 0xba, 0x8c, 0xa1, 0x65, 0x00, 0x4e, 0xac, 0xac, 0x24, + 0x4a, 0xfd, 0xaf, 0x29, 0x34, 0x45, 0x8b, 0x13, 0x2c, 0xa3, 0x4c, 0xcd, 0x92, 0x42, 0xa8, 0x91, + 0x3a, 0x7d, 0xbd, 0x4d, 0xb8, 0x91, 0x9c, 0xdf, 0x19, 0x96, 0xce, 0xf6, 0x3c, 0xa0, 0x20, 0x33, + 0x4c, 0x8f, 0xaf, 0xa2, 0x1c, 0x03, 0xd5, 0xab, 0xdc, 0x6e, 0x26, 0x77, 0x86, 0xa5, 0xbc, 0x03, + 0xb0, 0x96, 0x69, 0x68, 0x3e, 0x9a, 0x36, 0x1c, 0xfb, 0x7b, 0xde, 0x72, 0x5c, 0x2a, 0x9c, 0x9b, + 0x0d, 0x34, 0x1c, 0x67, 0xd8, 0xe0, 0x28, 0xb1, 0xe1, 0x64, 0x26, 0xfc, 0x2a, 0x42, 0x0c, 0x52, + 0x36, 0x0c, 0x9b, 0xdb, 0xce, 0x53, 0x3b, 0xc3, 0xd2, 0x13, 0x5c, 0x84, 0x6e, 0x18, 0xa2, 0xe1, + 0x09, 0xc4, 0xb8, 0x8b, 0x26, 0xd8, 0xaf, 0x05, 0x7d, 0x8d, 0x74, 0x98, 0xe1, 0x14, 0x6e, 0x5c, + 0xf1, 0xb4, 0x2b, 0x6b, 0x67, 0x46, 0x24, 0xad, 0xf5, 0x5c, 0x7b, 0x7b, 0xb6, 0xc4, 0x07, 0x87, + 0xf3, 0xbc, 0xa8, 0x0e, 0xe0, 0x44, 0x2b, 0x17, 0x79, 0xe8, 0x98, 0x31, 0x67, 0xd9, 0x5b, 0xba, + 0x6d, 0x10, 0x63, 0x76, 0x5b, 0x1c, 0x33, 0xee, 0x7b, 0xe0, 0xd6, 0x9a, 0x68, 0x5e, 0x22, 0xf9, + 0x85, 0x37, 0xd1, 0x99, 0x48, 0x0d, 0x70, 0x11, 0xa5, 0x36, 0xc9, 0x36, 0x6b, 0x25, 0x8d, 0xfe, + 0x89, 0xcf, 0xa1, 0xf1, 0x07, 0x7a, 0x67, 0xc0, 0x47, 0x51, 0x8d, 0xfd, 0x78, 0x2d, 0xf9, 0xf9, + 0x84, 0xfa, 0xf7, 0x13, 0x08, 0x57, 0xac, 0x5e, 0x8f, 0xb4, 0x5d, 0x71, 0xe0, 0x79, 0x05, 0xe5, + 0x17, 0xac, 0xb6, 0xde, 0x01, 0xf5, 0xb1, 0xe6, 0x56, 0x76, 0x86, 0xa5, 0x73, 0x54, 0x6f, 0x33, + 0x1d, 0x8a, 0x11, 0x6a, 0x14, 0x90, 0x52, 0xbd, 0x6b, 0xa4, 0x6b, 0xb9, 0x04, 0x18, 0x93, 0x81, + 0xde, 0x81, 0xd1, 0x06, 0x94, 0xa8, 0xf7, 0x80, 0x18, 0x5f, 0x47, 0xb9, 0x06, 0x1d, 0x6a, 0xdb, + 0x56, 0x87, 0xb7, 0x39, 0x0c, 0x2e, 0x30, 0xfc, 0x0a, 0x2c, 0x3e, 0x91, 0x3a, 0x8f, 0xa6, 0x2a, + 0x1d, 0x93, 0xf4, 0x5c, 0xb1, 0xd6, 0x74, 0x90, 0x2a, 0xaf, 0x93, 0x9e, 0x2b, 0xd6, 0x9a, 0x8e, + 0x64, 0x2d, 0x9d, 0x42, 0xc5, 0x5a, 0xfb, 0xa4, 0xea, 0x77, 0x53, 0xe8, 0xa9, 0xbb, 0x83, 0x35, + 0x62, 0xf7, 0x88, 0x4b, 0x1c, 0x3e, 0x26, 0xfb, 0x52, 0x97, 0xd0, 0x99, 0x08, 0x92, 0x4b, 0x7f, + 0x76, 0x67, 0x58, 0xba, 0xb8, 0xe9, 0x23, 0x5b, 0x7c, 0x98, 0x17, 0xfb, 0x6f, 0x84, 0x15, 0xcf, + 0xa3, 0xe9, 0x00, 0x48, 0x2b, 0xe1, 0x28, 0x49, 0x18, 0x9c, 0x2e, 0xed, 0x0c, 0x4b, 0x17, 0x04, + 0x69, 0xb4, 0xda, 0xa2, 0xe1, 0x84, 0xd9, 0xf0, 0x5d, 0x54, 0x0c, 0x40, 0x77, 0x6c, 0x6b, 0xd0, + 0x77, 0x94, 0x14, 0x88, 0x2a, 0xed, 0x0c, 0x4b, 0x4f, 0x0b, 0xa2, 0xd6, 0x01, 0x29, 0xc8, 0x8a, + 0x30, 0xe2, 0x9f, 0x4a, 0x88, 0xd2, 0xb8, 0xf1, 0xa7, 0xc1, 0xf8, 0x6f, 0x7b, 0xc6, 0x3f, 0x52, + 0x49, 0x33, 0x61, 0x4e, 0xde, 0x17, 0x42, 0xd5, 0x88, 0xf4, 0x85, 0x48, 0x89, 0x17, 0x2a, 0xe8, + 0x89, 0x58, 0x59, 0x07, 0xb2, 0xea, 0xff, 0x98, 0x12, 0xa5, 0x34, 0x2c, 0xc3, 0x6f, 0xcc, 0x65, + 0xb1, 0x31, 0x1b, 0x96, 0x01, 0x13, 0x75, 0x22, 0x18, 0x8d, 0x85, 0xca, 0xf6, 0x2d, 0x23, 0x3c, + 0x5f, 0x47, 0x79, 0xf1, 0xfb, 0xe8, 0xc9, 0x08, 0x90, 0x8d, 0x92, 0xcc, 0xfa, 0x2f, 0xef, 0x0c, + 0x4b, 0x6a, 0x8c, 0xd4, 0xf0, 0xa0, 0x39, 0x42, 0x0a, 0xd6, 0xd1, 0x79, 0x41, 0xeb, 0x56, 0xcf, + 0xd5, 0xcd, 0x1e, 0xf7, 0x2f, 0x58, 0x2f, 0x79, 0x61, 0x67, 0x58, 0x7a, 0x5e, 0xb4, 0x41, 0x8f, + 0x26, 0x5c, 0xf9, 0x51, 0x72, 0xb0, 0x81, 0x94, 0x18, 0x54, 0xbd, 0xab, 0xaf, 0x7b, 0x4e, 0xd3, + 0x95, 0x9d, 0x61, 0xe9, 0x53, 0xb1, 0x65, 0x98, 0x94, 0x4a, 0x28, 0x64, 0xa4, 0x24, 0xac, 0x21, + 0x1c, 0xe0, 0x96, 0x2c, 0x83, 0xc0, 0x37, 0x8c, 0x83, 0x7c, 0x75, 0x67, 0x58, 0xba, 0x24, 0xc8, + 0xef, 0x59, 0x06, 0x09, 0x57, 0x3f, 0x86, 0x5b, 0xfd, 0x4f, 0x09, 0x74, 0xa9, 0x59, 0x5e, 0x5c, + 0xa8, 0x1b, 0xde, 0x24, 0xd9, 0xb0, 0xad, 0x07, 0xa6, 0x21, 0xf4, 0xde, 0x35, 0x74, 0x3e, 0x84, + 0xaa, 0xc1, 0xbc, 0xec, 0x3b, 0x54, 0xf0, 0x6d, 0xde, 0x04, 0xdc, 0xe7, 0x34, 0x2d, 0x36, 0x79, + 0xb7, 0x24, 0x67, 0x72, 0x94, 0x20, 0xda, 0x46, 0x21, 0x54, 0x73, 0xc3, 0xb2, 0xdd, 0xf6, 0xc0, + 0xe5, 0x46, 0x00, 0x6d, 0x14, 0x29, 0xc3, 0xe1, 0x44, 0xbb, 0x14, 0xe1, 0xc9, 0x51, 0x7f, 0x3a, + 0x81, 0x2e, 0x2e, 0x6f, 0xba, 0xba, 0x46, 0x1c, 0x6b, 0x60, 0xb7, 0x89, 0xb3, 0xda, 0x37, 0x74, + 0x97, 0x04, 0x86, 0x5d, 0x42, 0xe3, 0x65, 0xc3, 0x20, 0x06, 0x7c, 0xd5, 0x38, 0x73, 0x94, 0x75, + 0x0a, 0xd0, 0x18, 0x1c, 0x7f, 0x1a, 0x65, 0x39, 0x0f, 0x54, 0x6a, 0x7c, 0xb6, 0xb0, 0x33, 0x2c, + 0x65, 0x07, 0x0c, 0xa4, 0x79, 0x38, 0x4a, 0x56, 0x25, 0x1d, 0x42, 0xc9, 0x52, 0x01, 0x99, 0xc1, + 0x40, 0x9a, 0x87, 0x53, 0xff, 0x47, 0x02, 0x3d, 0x49, 0xeb, 0x53, 0x76, 0x1c, 0x73, 0xbd, 0xd7, + 0x15, 0x47, 0xe1, 0x6b, 0x28, 0xd3, 0x84, 0x3a, 0x72, 0x05, 0x9f, 0xdb, 0x19, 0x96, 0x8a, 0xac, + 0xd6, 0xc2, 0x97, 0x72, 0x1a, 0xdf, 0xf1, 0x4c, 0xee, 0xe1, 0x78, 0x52, 0xc7, 0xc0, 0xd5, 0x6d, + 0xd7, 0xec, 0xad, 0x37, 0x5d, 0xdd, 0x1d, 0x38, 0x92, 0x63, 0xc0, 0x31, 0x2d, 0x07, 0x50, 0x92, + 0x63, 0x20, 0x31, 0xe1, 0x37, 0xd1, 0x44, 0xad, 0x67, 0x04, 0x42, 0x98, 0x7d, 0x3f, 0x4d, 0xe7, + 0x6b, 0x02, 0xf0, 0xa8, 0x08, 0x89, 0x41, 0xfd, 0xde, 0x38, 0xf5, 0x0f, 0xc0, 0xf3, 0x06, 0xd1, + 0xf8, 0xb5, 0x60, 0x29, 0x03, 0x1f, 0x5c, 0xb8, 0x51, 0xf4, 0x86, 0x4b, 0xdf, 0x07, 0x9b, 0xa0, + 0x3e, 0xc1, 0xef, 0x0f, 0x4b, 0x89, 0x9d, 0x61, 0x69, 0x4c, 0xcb, 0x09, 0x13, 0x56, 0xf0, 0xf1, + 0x85, 0x1b, 0xe7, 0x3c, 0x3e, 0xd1, 0x33, 0x0f, 0xf1, 0x32, 0x65, 0xbc, 0x89, 0xb2, 0xbc, 0x0e, + 0xa0, 0x85, 0xc2, 0x8d, 0xf3, 0x81, 0x7b, 0x22, 0xad, 0x20, 0x42, 0xdc, 0x1e, 0x17, 0x7e, 0x1d, + 0x65, 0x98, 0xdf, 0x00, 0x0a, 0x10, 0x9c, 0x47, 0xd9, 0xbd, 0x09, 0xb1, 0x73, 0x1e, 0x3c, 0x8f, + 0x50, 0xe0, 0x33, 0xf8, 0xeb, 0x25, 0x2e, 0x21, 0xea, 0x4d, 0x84, 0xa4, 0x08, 0xbc, 0xf8, 0x15, + 0x34, 0xb1, 0x42, 0xec, 0xae, 0xd9, 0xd3, 0x3b, 0x4d, 0xf3, 0x43, 0x6f, 0xc9, 0x04, 0x56, 0xe0, + 0x98, 0x1f, 0x8a, 0xf6, 0x22, 0xd1, 0xe1, 0xaf, 0xc4, 0xcd, 0xc9, 0x59, 0xa8, 0xc8, 0x73, 0x7b, + 0x4e, 0x56, 0xa1, 0xfa, 0xc4, 0x4c, 0xd1, 0xef, 0xa0, 0x49, 0x69, 0x38, 0xe6, 0x2e, 0xf6, 0x33, + 0x51, 0xd1, 0xc2, 0xdc, 0x12, 0x12, 0x2b, 0x4b, 0xa0, 0xf6, 0x5b, 0xef, 0x99, 0xae, 0xa9, 0x77, + 0x2a, 0x56, 0xb7, 0xab, 0xf7, 0x0c, 0x25, 0x1f, 0xac, 0x48, 0x4c, 0x86, 0x69, 0xb5, 0x19, 0x4a, + 0xb4, 0x5f, 0x99, 0x89, 0x4e, 0xf9, 0xbc, 0x0d, 0x35, 0xd2, 0xb6, 0x6c, 0x6a, 0x98, 0x0a, 0x02, + 0xa5, 0xc1, 0x5c, 0xeb, 0x30, 0x5c, 0xcb, 0xf6, 0x90, 0xe2, 0x5c, 0x1b, 0x66, 0x7c, 0x3b, 0x9d, + 0x2b, 0x14, 0x27, 0xc2, 0x8b, 0x1e, 0xf5, 0xef, 0xa4, 0x50, 0x81, 0x93, 0xbe, 0x6d, 0x99, 0xbd, + 0x53, 0x03, 0x3f, 0x8c, 0x81, 0xc7, 0x1a, 0x6a, 0xe6, 0x71, 0x19, 0xaa, 0xfa, 0x8d, 0xa4, 0x3f, + 0x1a, 0x35, 0x6c, 0xb3, 0x77, 0xb8, 0xd1, 0xe8, 0x32, 0x42, 0x95, 0x8d, 0x41, 0x6f, 0x93, 0xed, + 0xc6, 0x24, 0x83, 0xdd, 0x98, 0xb6, 0xa9, 0x09, 0x18, 0xfc, 0x0c, 0x4a, 0x57, 0xa9, 0x7c, 0xda, + 0x32, 0x13, 0xb3, 0xf9, 0x8f, 0x98, 0xa4, 0xc4, 0x4b, 0x1a, 0x80, 0xe9, 0x4c, 0x34, 0xbb, 0xed, + 0x12, 0x36, 0xb6, 0xa6, 0xd8, 0x4c, 0xb4, 0x46, 0x01, 0x1a, 0x83, 0xe3, 0x5b, 0xe8, 0x4c, 0x95, + 0x74, 0xf4, 0xed, 0x45, 0xb3, 0xd3, 0x31, 0x1d, 0xd2, 0xb6, 0x7a, 0x86, 0x03, 0x4a, 0xe6, 0xc5, + 0x75, 0x1d, 0x2d, 0x4a, 0x80, 0x55, 0x94, 0x59, 0xbe, 0x7f, 0xdf, 0x21, 0x2e, 0xa8, 0x2f, 0x35, + 0x8b, 0x76, 0x86, 0xa5, 0x8c, 0x05, 0x10, 0x8d, 0x63, 0xd4, 0x6f, 0x26, 0x50, 0xb1, 0x4a, 0x9c, + 0x4d, 0xd7, 0xea, 0xfb, 0x56, 0x7e, 0x28, 0x95, 0x5c, 0x45, 0xd9, 0x45, 0xe2, 0x38, 0xd4, 0x13, + 0x4a, 0xc2, 0xd7, 0x4e, 0xf3, 0xaf, 0xcd, 0x76, 0x19, 0x58, 0xf3, 0xf0, 0xf1, 0x5f, 0x95, 0xda, + 0xe3, 0xab, 0xd4, 0x1f, 0x24, 0xd1, 0x79, 0x5e, 0xe3, 0x4a, 0xc7, 0xec, 0xaf, 0x59, 0xba, 0x6d, + 0x68, 0xa4, 0x4d, 0xcc, 0x07, 0xe4, 0x78, 0x76, 0x3c, 0xb9, 0xeb, 0xa4, 0x0f, 0xd1, 0x75, 0x6e, + 0xa0, 0x02, 0xd7, 0x0c, 0x2c, 0x26, 0x99, 0xa7, 0x58, 0xdc, 0x19, 0x96, 0x26, 0x0c, 0x06, 0x86, + 0x55, 0xbc, 0x26, 0x12, 0x51, 0x23, 0x59, 0x20, 0xbd, 0x75, 0x77, 0x03, 0x8c, 0x64, 0x9c, 0x19, + 0x49, 0x07, 0x20, 0x1a, 0xc7, 0xa8, 0xff, 0x25, 0x89, 0xce, 0x85, 0x55, 0xde, 0x24, 0x3d, 0xe3, + 0x54, 0xdf, 0x1f, 0x8f, 0xbe, 0x7f, 0x98, 0x42, 0x4f, 0x73, 0x9e, 0xe6, 0x86, 0x6e, 0x13, 0xa3, + 0x6a, 0xda, 0xa4, 0xed, 0x5a, 0xf6, 0xf6, 0x31, 0x76, 0xa0, 0x1e, 0x9f, 0xda, 0x6f, 0xa1, 0x0c, + 0xf7, 0x45, 0xd9, 0x3c, 0x33, 0xe5, 0xd7, 0x04, 0xa0, 0x91, 0x19, 0x8a, 0xf9, 0xb1, 0xa1, 0xc6, + 0xca, 0xec, 0xa7, 0xb1, 0x3e, 0x8f, 0x26, 0x7d, 0xd5, 0xc3, 0xe2, 0x2b, 0x1b, 0x78, 0x5b, 0x86, + 0x87, 0x80, 0x65, 0x97, 0x26, 0x13, 0x42, 0x69, 0x1e, 0xa0, 0x5e, 0x05, 0x6f, 0x68, 0x92, 0x97, + 0xe6, 0xf3, 0x99, 0x86, 0x26, 0x12, 0xa9, 0xc3, 0x34, 0xba, 0x10, 0xdf, 0xec, 0x1a, 0xd1, 0x8d, + 0xd3, 0x56, 0xff, 0x44, 0xb6, 0x3a, 0x7e, 0x0e, 0xa5, 0x1b, 0xba, 0xbb, 0xa1, 0xe4, 0x83, 0x6d, + 0xde, 0xfb, 0x66, 0x87, 0xb4, 0xfa, 0xba, 0xbb, 0xa1, 0x01, 0x4a, 0x18, 0x33, 0x10, 0x48, 0x8c, + 0x19, 0x33, 0x84, 0xc9, 0xbe, 0xf0, 0x6c, 0xe2, 0x4a, 0x3a, 0x76, 0xb2, 0xff, 0x5e, 0x7a, 0xd4, + 0xb8, 0x72, 0xcf, 0x36, 0x5d, 0x72, 0x6a, 0x61, 0xa7, 0x16, 0x76, 0x48, 0x0b, 0xfb, 0x57, 0x49, + 0x34, 0xe9, 0x2f, 0x9a, 0x3e, 0x20, 0xed, 0xa3, 0x99, 0xab, 0x82, 0xa5, 0x4c, 0xea, 0xd0, 0x4b, + 0x99, 0xc3, 0x18, 0x94, 0x8a, 0x32, 0x1a, 0xd1, 0x1d, 0xbe, 0x20, 0xca, 0x33, 0x8d, 0xd9, 0x00, + 0xd1, 0x38, 0x06, 0x3f, 0x87, 0xb2, 0x8b, 0xfa, 0x43, 0xb3, 0x3b, 0xe8, 0x72, 0x2f, 0x1d, 0x8e, + 0x2b, 0xbb, 0xfa, 0x43, 0xcd, 0x83, 0xab, 0xff, 0x3a, 0x81, 0xa6, 0xb8, 0x52, 0xb9, 0xf0, 0x43, + 0x69, 0x35, 0xd0, 0x4e, 0xf2, 0xd0, 0xda, 0x49, 0x3d, 0xba, 0x76, 0xd4, 0x6f, 0xa6, 0xa9, 0x7a, + 0x1c, 0xf3, 0xc3, 0x13, 0x3f, 0xf0, 0x04, 0x2d, 0x32, 0xfe, 0x08, 0x2d, 0x72, 0x62, 0x76, 0x84, + 0xd4, 0xff, 0x99, 0x45, 0x88, 0x6b, 0xbf, 0x76, 0xba, 0xfa, 0x38, 0x9c, 0xd5, 0x54, 0xd1, 0x99, + 0x5a, 0x6f, 0x43, 0xef, 0xb5, 0x89, 0x11, 0xec, 0x8b, 0x51, 0xd3, 0xc9, 0xb1, 0x58, 0x08, 0xc2, + 0x91, 0xc1, 0xc6, 0x98, 0x16, 0x65, 0xc0, 0x2f, 0xa3, 0x42, 0xbd, 0xe7, 0x12, 0x5b, 0x6f, 0xbb, + 0xe6, 0x03, 0x36, 0x8d, 0xe5, 0x66, 0xa7, 0x77, 0x86, 0xa5, 0x82, 0x19, 0x80, 0x35, 0x91, 0x06, + 0xdf, 0x42, 0x13, 0x0d, 0xdd, 0x76, 0xcd, 0xb6, 0xd9, 0xd7, 0x7b, 0xae, 0xa3, 0xe4, 0x60, 0x53, + 0x0f, 0xa6, 0xb0, 0xbe, 0x00, 0xd7, 0x24, 0x2a, 0xfc, 0x15, 0x94, 0x87, 0xb5, 0x0f, 0xc4, 0x9b, + 0xe4, 0xf7, 0x8c, 0x37, 0x79, 0x3e, 0x38, 0x52, 0x66, 0xdb, 0x7b, 0xb0, 0xdf, 0x1d, 0x74, 0x05, + 0x08, 0x41, 0x09, 0x24, 0xe2, 0xf7, 0x50, 0xb6, 0xd6, 0x33, 0x40, 0x38, 0xda, 0x53, 0xb8, 0xca, + 0x85, 0x3f, 0x19, 0x08, 0xb7, 0xfa, 0x21, 0xd9, 0x9e, 0xb8, 0xf8, 0x5e, 0x56, 0xf8, 0xf8, 0x7a, + 0xd9, 0xc4, 0xc7, 0xb0, 0xef, 0x3a, 0xf9, 0xb8, 0xf6, 0x5d, 0xa7, 0x1e, 0x71, 0xdf, 0x55, 0xfd, + 0x10, 0x15, 0x66, 0x1b, 0x73, 0x7e, 0xef, 0x7d, 0x0a, 0xa5, 0x1a, 0xfc, 0x38, 0x2a, 0xcd, 0x26, + 0xcc, 0xbe, 0x69, 0x68, 0x14, 0x86, 0xaf, 0xa2, 0x5c, 0x05, 0xce, 0x6e, 0x79, 0xe4, 0x44, 0x9a, + 0x39, 0x3c, 0x6d, 0x80, 0x41, 0xe4, 0x84, 0x87, 0xc6, 0x9f, 0x46, 0xd9, 0x86, 0x6d, 0xad, 0xdb, + 0x7a, 0x97, 0x9f, 0x8c, 0xc0, 0xc1, 0x4d, 0x9f, 0x81, 0x34, 0x0f, 0xa7, 0xfe, 0xf5, 0x84, 0xe7, + 0x17, 0x52, 0x8e, 0xe6, 0x00, 0xf6, 0x7e, 0xa1, 0xec, 0x1c, 0xe3, 0x70, 0x18, 0x48, 0xf3, 0x70, + 0xf8, 0x2a, 0x1a, 0xaf, 0xd9, 0xb6, 0x65, 0x8b, 0x21, 0x3f, 0x84, 0x02, 0xc4, 0x90, 0x1f, 0xa0, + 0xc0, 0xb7, 0x51, 0x81, 0x8d, 0x39, 0x6c, 0xcb, 0x8c, 0xd5, 0xe3, 0x89, 0x9d, 0x61, 0xe9, 0x0c, + 0xdf, 0x2e, 0x13, 0xe3, 0x18, 0x04, 0x4a, 0xf5, 0x5b, 0x29, 0xc1, 0x29, 0x60, 0x1a, 0x3f, 0x81, + 0xdb, 0xce, 0x37, 0x51, 0x6a, 0xb6, 0x31, 0xc7, 0x07, 0xc0, 0xb3, 0x1e, 0xab, 0x60, 0x2a, 0x21, + 0x3e, 0x4a, 0x8d, 0x2f, 0xa2, 0x74, 0x83, 0x9a, 0x4f, 0x06, 0xcc, 0x23, 0xb7, 0x33, 0x2c, 0xa5, + 0xfb, 0xd4, 0x7e, 0x00, 0x0a, 0x58, 0xea, 0x2d, 0x33, 0x97, 0x9c, 0x61, 0x03, 0x47, 0xf9, 0x22, + 0x4a, 0x97, 0xed, 0xf5, 0x07, 0x7c, 0xd4, 0x02, 0xac, 0x6e, 0xaf, 0x3f, 0xd0, 0x00, 0x8a, 0xaf, + 0x23, 0xa4, 0x11, 0x77, 0x60, 0xf7, 0x20, 0x7c, 0x2e, 0x0f, 0x1b, 0x3c, 0x30, 0x1a, 0xda, 0x00, + 0x6d, 0xb5, 0x2d, 0x83, 0x68, 0x02, 0x89, 0xfa, 0xb7, 0x82, 0x93, 0x83, 0xaa, 0xe9, 0x6c, 0x9e, + 0x36, 0xe1, 0x01, 0x9a, 0x50, 0xe7, 0x7b, 0x68, 0xd1, 0x46, 0x2a, 0xa1, 0xf1, 0xb9, 0x8e, 0xbe, + 0xee, 0x40, 0x1b, 0xf2, 0x93, 0xdd, 0xfb, 0x14, 0xa0, 0x31, 0x78, 0xa8, 0x9d, 0x72, 0x7b, 0xb7, + 0xd3, 0xcf, 0x8f, 0xfb, 0xbd, 0x6d, 0x89, 0xb8, 0x5b, 0x96, 0x7d, 0xda, 0x54, 0xfb, 0x6d, 0xaa, + 0xcb, 0x28, 0xdb, 0xb4, 0xdb, 0xc2, 0xda, 0x78, 0x62, 0x67, 0x58, 0xca, 0x39, 0x76, 0x9b, 0xad, + 0x8b, 0x3d, 0x24, 0xa5, 0xab, 0x3a, 0x2e, 0xd0, 0x65, 0x03, 0x3a, 0xc3, 0x71, 0x39, 0x1d, 0x47, + 0x72, 0xba, 0x86, 0x65, 0xbb, 0xbc, 0xe1, 0x7c, 0xba, 0xbe, 0x65, 0xbb, 0x9a, 0x87, 0xc4, 0x9f, + 0x41, 0x68, 0xa5, 0xd2, 0x78, 0x97, 0xd8, 0xa0, 0xae, 0x7c, 0x70, 0x32, 0xff, 0x80, 0x81, 0x34, + 0x01, 0x8d, 0x57, 0x50, 0x7e, 0xb9, 0x4f, 0x6c, 0x1d, 0x9c, 0x32, 0xea, 0x01, 0x4c, 0xdd, 0x78, + 0x21, 0xa4, 0x5a, 0xde, 0xee, 0x33, 0xfc, 0x7f, 0x9f, 0x9c, 0xcd, 0x2f, 0x96, 0xf7, 0x53, 0x0b, + 0x04, 0xe1, 0xdb, 0x28, 0x53, 0x66, 0x7e, 0x5e, 0x01, 0x44, 0xfa, 0x2a, 0xab, 0xd1, 0xff, 0x18, + 0x8a, 0x2d, 0x0a, 0x75, 0xf8, 0x5b, 0xe3, 0xe4, 0xea, 0x55, 0x54, 0x0c, 0x17, 0x83, 0x0b, 0x28, + 0x5b, 0x59, 0x5e, 0x5a, 0xaa, 0x55, 0x56, 0x8a, 0x63, 0x38, 0x87, 0xd2, 0xcd, 0xda, 0x52, 0xb5, + 0x98, 0x50, 0x7f, 0x59, 0x18, 0x41, 0xa8, 0x69, 0x9d, 0x9e, 0x3d, 0x1e, 0x6a, 0x43, 0xbf, 0x08, + 0x07, 0x6e, 0x2b, 0xb6, 0xde, 0x73, 0xba, 0xa6, 0xeb, 0x12, 0x83, 0xcf, 0x12, 0x70, 0x20, 0xe5, + 0x3e, 0xd4, 0x22, 0x78, 0x7c, 0x0d, 0x4d, 0x02, 0x8c, 0x9f, 0x41, 0x19, 0x60, 0xbd, 0x9c, 0xc1, + 0x7e, 0xa8, 0xc9, 0x48, 0xf5, 0x3b, 0xc1, 0xf1, 0xe3, 0x02, 0xd1, 0x8f, 0xeb, 0x91, 0xd5, 0x8f, + 0x48, 0x7b, 0xa9, 0x7f, 0x37, 0xcd, 0xe2, 0x17, 0x59, 0xf8, 0xf4, 0x51, 0xa8, 0x32, 0xd8, 0x33, + 0x4c, 0x1d, 0x60, 0xcf, 0xf0, 0x1a, 0xca, 0x2c, 0x12, 0x77, 0xc3, 0x32, 0x78, 0x34, 0x0d, 0x04, + 0xfc, 0x74, 0x01, 0x22, 0x06, 0xfc, 0x30, 0x1a, 0xbc, 0x89, 0xb0, 0x17, 0x1b, 0x5d, 0x76, 0x5d, + 0xdb, 0x5c, 0x1b, 0xb8, 0xc4, 0xdb, 0xa3, 0x3c, 0x1f, 0x59, 0xa7, 0x34, 0xe1, 0x26, 0x03, 0x04, + 0x88, 0x9d, 0xd3, 0x7d, 0xf2, 0x40, 0xec, 0xff, 0x1e, 0x96, 0x32, 0x8c, 0x46, 0x8b, 0x11, 0x8b, + 0xdf, 0x41, 0xf9, 0xc5, 0xb9, 0x32, 0x8f, 0x93, 0x66, 0xc7, 0xee, 0x4f, 0xf9, 0x5a, 0xf4, 0x10, + 0xbe, 0x4a, 0x20, 0x58, 0xb4, 0x7b, 0x5f, 0x8f, 0x86, 0x49, 0x07, 0x52, 0xa8, 0xb5, 0xb0, 0xb0, + 0x53, 0xbe, 0xbb, 0xe0, 0x5b, 0x8b, 0x1c, 0x8c, 0x1a, 0xd6, 0x15, 0xc3, 0x86, 0xac, 0x25, 0x77, + 0x08, 0x6b, 0xf9, 0xcf, 0x09, 0x54, 0xf4, 0xa2, 0xc1, 0xc4, 0x30, 0x7e, 0x21, 0xa2, 0x11, 0x76, + 0x4d, 0x42, 0x61, 0x74, 0x80, 0xc7, 0x4d, 0x94, 0xad, 0x3d, 0xec, 0x9b, 0x36, 0x71, 0xb8, 0x8d, + 0xec, 0xb6, 0x42, 0x7c, 0x86, 0xaf, 0x10, 0xcf, 0x10, 0xc6, 0x12, 0x59, 0x1c, 0x32, 0x30, 0x84, + 0xdf, 0xb2, 0x28, 0xb2, 0xd9, 0x6d, 0xee, 0xfb, 0xb3, 0xf0, 0x5b, 0x06, 0x94, 0xc3, 0x98, 0x03, + 0x52, 0xfc, 0x3c, 0x4a, 0xad, 0xac, 0x2c, 0x70, 0xe3, 0x81, 0x4b, 0x1c, 0xae, 0x2b, 0xc6, 0x17, + 0x53, 0xac, 0xfa, 0xb3, 0x49, 0x84, 0xa8, 0x8d, 0x56, 0x6c, 0xa2, 0x1f, 0xd1, 0xe6, 0xfe, 0x2c, + 0xca, 0x79, 0x0a, 0xe7, 0xfd, 0x43, 0xf1, 0x78, 0xc3, 0x0d, 0x11, 0x2e, 0xdb, 0xc3, 0x53, 0x67, + 0x4e, 0xb3, 0x3a, 0x84, 0x45, 0xd6, 0xf2, 0xfb, 0x2c, 0x36, 0x05, 0x68, 0x0c, 0x8e, 0x3f, 0x83, + 0xf2, 0xbc, 0x91, 0x2d, 0xef, 0x0c, 0x96, 0x2d, 0xf9, 0x3c, 0xa0, 0x16, 0xe0, 0xd5, 0x6f, 0x27, + 0x98, 0x52, 0x58, 0x54, 0xde, 0x71, 0x55, 0x8a, 0xfa, 0xf5, 0x04, 0xc2, 0x54, 0x58, 0x43, 0x77, + 0x9c, 0x2d, 0xcb, 0x36, 0x2a, 0x1b, 0x7a, 0x6f, 0xfd, 0x48, 0x3e, 0x47, 0xfd, 0x6f, 0xe3, 0xe8, + 0xac, 0x14, 0x0f, 0x75, 0xcc, 0xed, 0xed, 0xaa, 0x6c, 0x6f, 0xb0, 0x78, 0x07, 0x7b, 0x13, 0x17, + 0xef, 0xcc, 0xf2, 0x3e, 0x85, 0xf2, 0xfc, 0x9b, 0xeb, 0x55, 0x6e, 0x79, 0x30, 0xed, 0x9b, 0x86, + 0x16, 0x20, 0xf0, 0x4b, 0x68, 0x82, 0xff, 0xa0, 0xa3, 0xbf, 0xb7, 0x3f, 0x0b, 0x76, 0xec, 0x50, + 0x80, 0x26, 0xa1, 0xf1, 0xe7, 0x50, 0x9e, 0x1a, 0xe7, 0x3a, 0xdc, 0x00, 0xca, 0x06, 0xf7, 0x46, + 0x0c, 0x0f, 0x28, 0x0e, 0x09, 0x3e, 0x25, 0x9d, 0x52, 0xf8, 0x59, 0x43, 0x2e, 0x98, 0x52, 0xd8, + 0x59, 0x83, 0x38, 0xa5, 0xf0, 0x53, 0x87, 0xf7, 0x51, 0xa1, 0xdc, 0xeb, 0x59, 0x2e, 0xb8, 0x96, + 0x0e, 0xdf, 0x50, 0x1b, 0x39, 0x97, 0x3c, 0x0f, 0xf7, 0x11, 0x02, 0xfa, 0xd8, 0xc9, 0x44, 0x14, + 0x88, 0x6f, 0xd0, 0x86, 0x78, 0x60, 0x92, 0x2d, 0x62, 0xf3, 0x60, 0x3b, 0xd8, 0x54, 0xb4, 0x39, + 0x4c, 0xbc, 0x9d, 0xe0, 0xd1, 0xe1, 0x59, 0x34, 0xd9, 0xb0, 0xad, 0xbe, 0xe5, 0x10, 0x83, 0x29, + 0xaa, 0x10, 0x5c, 0x1d, 0xea, 0x73, 0x04, 0xc4, 0x9a, 0x4a, 0xb7, 0x71, 0x24, 0x16, 0x7c, 0x1f, + 0x9d, 0xe3, 0xca, 0x24, 0x86, 0xd7, 0xa2, 0xf5, 0xaa, 0xa3, 0x4c, 0x40, 0x54, 0x3e, 0x0e, 0x1b, + 0x43, 0xbd, 0x3a, 0x7b, 0xc9, 0xdb, 0xcc, 0xb3, 0x39, 0xac, 0x65, 0x1a, 0x62, 0x53, 0xc7, 0xca, + 0x53, 0x7f, 0x2b, 0x41, 0x57, 0x90, 0xde, 0x6f, 0xfc, 0x92, 0x7c, 0x8d, 0x2d, 0x11, 0xec, 0x26, + 0xf1, 0xfb, 0x0d, 0xd2, 0xbd, 0x35, 0xba, 0x7a, 0xbd, 0x6b, 0xf6, 0x0c, 0xbe, 0x3d, 0x04, 0xab, + 0xd7, 0x4d, 0xb3, 0x67, 0x68, 0x00, 0xa5, 0x58, 0x21, 0x58, 0x1d, 0xb0, 0x70, 0x12, 0xc8, 0xe6, + 0xa1, 0x2a, 0x9a, 0x6e, 0x0e, 0xd6, 0xbc, 0xb2, 0x81, 0x50, 0xb8, 0xe8, 0xe5, 0x0c, 0xd6, 0x5a, + 0xde, 0x87, 0x48, 0xf7, 0x8b, 0x64, 0x16, 0xf5, 0x9b, 0x89, 0x50, 0xa7, 0x3d, 0xc2, 0xf1, 0x50, + 0xea, 0x45, 0xa9, 0x11, 0xbd, 0x48, 0xfd, 0x85, 0x24, 0x2a, 0xd0, 0x75, 0x1d, 0xbf, 0xcb, 0x73, + 0x24, 0x35, 0x7d, 0x6c, 0x67, 0x5f, 0x82, 0xdb, 0x98, 0x3e, 0x80, 0xdb, 0x78, 0x11, 0xa5, 0x85, + 0x40, 0x23, 0xb6, 0xf9, 0x44, 0xd7, 0xc6, 0x00, 0x55, 0x7f, 0x32, 0x89, 0xd0, 0x7b, 0x2f, 0xbf, + 0x7c, 0x82, 0x15, 0xa4, 0xfe, 0x8d, 0x04, 0x9a, 0xe6, 0xbb, 0xa1, 0xc2, 0x8d, 0xd0, 0xac, 0xb7, + 0x8f, 0x2d, 0xf6, 0x4b, 0x06, 0xd2, 0x3c, 0x1c, 0x1d, 0xb1, 0x6a, 0x0f, 0x4d, 0x17, 0x36, 0x84, + 0x84, 0x2b, 0xa1, 0x84, 0xc3, 0xc4, 0x11, 0xcb, 0xa3, 0xc3, 0x2f, 0x79, 0xfb, 0xbc, 0xa9, 0x60, + 0x98, 0xa6, 0x0c, 0xb5, 0xd8, 0xbd, 0x5e, 0xf5, 0xd7, 0xd3, 0x28, 0x5d, 0x7b, 0x48, 0xda, 0xc7, + 0xbc, 0x69, 0x84, 0xd5, 0x63, 0xfa, 0x90, 0xab, 0xc7, 0x47, 0x39, 0xb8, 0x7a, 0x33, 0x68, 0xcf, + 0x8c, 0x5c, 0x7c, 0xa8, 0xe5, 0xc3, 0xc5, 0x7b, 0x2d, 0x7d, 0xfc, 0xce, 0x3d, 0xff, 0x69, 0x0a, + 0xa5, 0x9a, 0x95, 0xc6, 0xa9, 0xdd, 0x1c, 0xa9, 0xdd, 0xec, 0x7e, 0x30, 0xa0, 0xfa, 0x7b, 0x7d, + 0xb9, 0x20, 0xd6, 0x23, 0xb4, 0xad, 0xf7, 0xc3, 0x14, 0x9a, 0x6a, 0xce, 0xad, 0x34, 0x84, 0xe5, + 0xf6, 0x5d, 0x94, 0x9b, 0x33, 0x3b, 0x04, 0x0e, 0xee, 0x59, 0x93, 0x5e, 0x8c, 0x78, 0x61, 0xab, + 0xf5, 0x9e, 0xfb, 0xca, 0xad, 0x77, 0xf5, 0xce, 0x80, 0xc0, 0x62, 0x8f, 0x45, 0xef, 0x38, 0xe6, + 0x87, 0xe4, 0x17, 0xe9, 0x6a, 0xd2, 0x17, 0x80, 0xbf, 0x80, 0x52, 0xab, 0xfc, 0xd8, 0x6b, 0x94, + 0x9c, 0x9b, 0x37, 0x98, 0x1c, 0x3a, 0x08, 0xa6, 0x06, 0xa6, 0x01, 0x12, 0x28, 0x17, 0x65, 0xbe, + 0xc3, 0x27, 0xe0, 0x7d, 0x31, 0xaf, 0x7b, 0xcc, 0x77, 0xea, 0x55, 0xdc, 0x44, 0x85, 0x06, 0xb1, + 0xbb, 0x26, 0x34, 0x94, 0x37, 0x66, 0xef, 0x2e, 0x84, 0x3a, 0xd6, 0x85, 0x7e, 0xc0, 0x04, 0xc2, + 0x44, 0x29, 0xf8, 0x4b, 0x08, 0x31, 0x1f, 0x65, 0x9f, 0x49, 0x06, 0x9e, 0x01, 0x37, 0x95, 0x5d, + 0x55, 0x77, 0x4d, 0x71, 0x0d, 0x0f, 0xab, 0x6e, 0x41, 0x18, 0xde, 0x44, 0xc5, 0x45, 0xcb, 0x30, + 0xef, 0x9b, 0x6d, 0x70, 0x58, 0xa1, 0x80, 0xcc, 0xde, 0xa7, 0xca, 0x3b, 0xc3, 0xd2, 0xd3, 0x5d, + 0x81, 0x2f, 0xae, 0x98, 0x88, 0x60, 0xf5, 0x1f, 0x8d, 0xa3, 0x34, 0x6d, 0xf6, 0xd3, 0xfe, 0x7b, + 0x98, 0xfe, 0x5b, 0x46, 0xc5, 0x7b, 0x96, 0xbd, 0x69, 0xf6, 0xd6, 0xfd, 0xd8, 0x36, 0xbe, 0x94, + 0x82, 0xe3, 0xd2, 0x2d, 0x86, 0x6b, 0xf9, 0x61, 0x70, 0x5a, 0x84, 0x7c, 0x8f, 0x1e, 0xfc, 0x2a, + 0x42, 0x2b, 0xba, 0xbd, 0x4e, 0x5c, 0xa0, 0xc9, 0x05, 0x37, 0xb1, 0x5d, 0x80, 0x42, 0xb8, 0x9c, + 0x78, 0x13, 0x3b, 0x20, 0xa6, 0x6b, 0x46, 0x76, 0xe0, 0x94, 0x87, 0xe8, 0x39, 0x58, 0x33, 0xc2, + 0x81, 0x93, 0xe8, 0x04, 0xb0, 0xa3, 0xa7, 0x06, 0x42, 0xc2, 0x26, 0x1e, 0x0a, 0x29, 0x42, 0x1a, + 0x1c, 0xf8, 0x05, 0xf2, 0x98, 0x3d, 0x3c, 0x4d, 0x90, 0x81, 0x5f, 0x09, 0x9d, 0x32, 0x60, 0x49, + 0xda, 0xc8, 0x43, 0x86, 0xe0, 0x94, 0x7a, 0x62, 0xaf, 0x53, 0x6a, 0xf5, 0x1b, 0x49, 0x94, 0x6f, + 0x0e, 0xd6, 0x9c, 0x6d, 0xc7, 0x25, 0xdd, 0x63, 0x6e, 0xc6, 0xde, 0xf2, 0x2a, 0x1d, 0xbb, 0xbc, + 0x7a, 0xde, 0x53, 0x8a, 0xb0, 0x91, 0xe4, 0xbb, 0x74, 0x9e, 0x3a, 0xfe, 0x5e, 0x12, 0x15, 0xd9, + 0xee, 0x64, 0xd5, 0x74, 0xda, 0x8f, 0x21, 0x24, 0xef, 0xe8, 0xb5, 0x72, 0xb8, 0x1d, 0xfd, 0x7d, + 0x04, 0x3a, 0xaa, 0x5f, 0x4b, 0xa2, 0x42, 0x79, 0xe0, 0x6e, 0x94, 0x5d, 0xb0, 0xad, 0x13, 0xb9, + 0x3e, 0xf9, 0x9d, 0x04, 0x9a, 0xa6, 0x15, 0x59, 0xb1, 0x36, 0x49, 0xef, 0x31, 0xec, 0x93, 0x89, + 0xfb, 0x5d, 0xc9, 0x47, 0xdc, 0xef, 0xf2, 0x74, 0x99, 0x3a, 0xe0, 0xbe, 0xdf, 0xb7, 0x13, 0x08, + 0x69, 0x56, 0x87, 0x7c, 0x42, 0x3e, 0xe3, 0x31, 0x6c, 0x80, 0x1c, 0xe5, 0x67, 0x7c, 0x37, 0x81, + 0xce, 0xf1, 0xc4, 0x34, 0x7c, 0x21, 0x72, 0xcc, 0xdb, 0x25, 0xfa, 0x41, 0xc7, 0xbc, 0x85, 0xfe, + 0x30, 0x81, 0x9e, 0x92, 0x3f, 0xe8, 0x93, 0x30, 0x0a, 0xfc, 0x5e, 0x02, 0x3d, 0x71, 0xc7, 0x74, + 0x37, 0x06, 0x6b, 0xfe, 0x19, 0xcb, 0x27, 0xef, 0x8b, 0x8e, 0xb9, 0xe5, 0xfd, 0x6e, 0x02, 0x9d, + 0x5d, 0xae, 0x57, 0x2b, 0x9f, 0x94, 0x16, 0x8a, 0x7c, 0xcf, 0x27, 0xa0, 0x7d, 0x9a, 0xe5, 0xc5, + 0x85, 0x4f, 0x52, 0xfb, 0x48, 0xdf, 0x73, 0xcc, 0xdb, 0xe7, 0x2f, 0x64, 0x50, 0xe1, 0xee, 0x60, + 0x8d, 0xf0, 0xc3, 0x88, 0x13, 0xed, 0xe9, 0xdf, 0x40, 0x05, 0xae, 0x06, 0x58, 0x25, 0x0b, 0x57, + 0x9e, 0x79, 0x72, 0x40, 0x76, 0xab, 0x4c, 0x24, 0xa2, 0x2b, 0xae, 0x77, 0x89, 0xbd, 0x26, 0x06, + 0x6b, 0x3e, 0x20, 0xf6, 0x9a, 0x06, 0x50, 0xbc, 0x10, 0x04, 0x65, 0x94, 0x1b, 0x75, 0x48, 0xad, + 0xc5, 0x17, 0xe8, 0x90, 0x2b, 0xcc, 0x3f, 0x96, 0xd3, 0xfb, 0x26, 0x4b, 0xca, 0x25, 0x06, 0x8a, + 0x87, 0x39, 0xf1, 0x12, 0x3a, 0x23, 0x1e, 0x74, 0xb1, 0xbc, 0x52, 0xb9, 0x18, 0x71, 0x71, 0x19, + 0xa5, 0xa2, 0xac, 0xf8, 0x4d, 0x34, 0xe1, 0x01, 0xe1, 0xc8, 0x2e, 0x1f, 0x64, 0xbf, 0xf1, 0x45, + 0x6d, 0x9a, 0x52, 0x20, 0xbc, 0xc4, 0x20, 0x0a, 0x80, 0x65, 0x27, 0x8a, 0x11, 0x10, 0x0a, 0x38, + 0x91, 0x18, 0xf0, 0xe7, 0x40, 0x40, 0xdf, 0xea, 0x39, 0x04, 0x0e, 0x27, 0x0a, 0x10, 0xc9, 0x08, + 0x41, 0x1f, 0x36, 0x87, 0xb3, 0x78, 0x55, 0x89, 0x0c, 0x2f, 0x23, 0x14, 0x6c, 0x22, 0xf3, 0x5b, + 0x01, 0x07, 0xde, 0xde, 0x16, 0x44, 0xa8, 0x7f, 0x40, 0xd7, 0x6f, 0xfd, 0xbe, 0x6f, 0xc9, 0x2f, + 0xa1, 0x4c, 0xb9, 0xdf, 0x5f, 0xd5, 0xea, 0xfc, 0x58, 0x05, 0x76, 0x61, 0xf4, 0x7e, 0xbf, 0x35, + 0xb0, 0x4d, 0xf1, 0xc4, 0x99, 0x11, 0xe1, 0x0a, 0x9a, 0x2c, 0xf7, 0xfb, 0x8d, 0xc1, 0x5a, 0xc7, + 0x6c, 0x0b, 0xa9, 0xee, 0x58, 0x7a, 0xc9, 0x7e, 0xbf, 0xd5, 0x07, 0x4c, 0x38, 0xcd, 0xa0, 0xcc, + 0x83, 0xdf, 0x47, 0xf9, 0x72, 0xbf, 0xcf, 0x33, 0xad, 0xa5, 0xe0, 0x4c, 0x57, 0xf5, 0xbe, 0x49, + 0xa8, 0xdb, 0x8c, 0x4f, 0xc4, 0x92, 0xaa, 0x5d, 0xe4, 0x67, 0xbc, 0xe7, 0x68, 0x41, 0x91, 0x8c, + 0x6a, 0x81, 0x48, 0xfc, 0x59, 0x94, 0x2d, 0xf7, 0xfb, 0xc2, 0xf6, 0x00, 0x9c, 0x01, 0x51, 0xae, + 0x50, 0x13, 0x79, 0x64, 0x17, 0x5e, 0x47, 0x53, 0x72, 0x61, 0x07, 0xca, 0xba, 0xf6, 0x27, 0x09, + 0xf8, 0xa0, 0x63, 0x1e, 0x31, 0x71, 0x13, 0xa5, 0xca, 0xfd, 0x3e, 0x1f, 0x4e, 0xce, 0xc6, 0xb4, + 0x47, 0x38, 0x2c, 0xb8, 0xdc, 0xef, 0x7b, 0x9f, 0xce, 0x62, 0x9a, 0x4e, 0xd6, 0xa7, 0x7f, 0x8b, + 0x7d, 0xfa, 0x31, 0x0f, 0x41, 0xfa, 0xf5, 0x14, 0x9a, 0x2e, 0xf7, 0xfb, 0xa7, 0x99, 0xbd, 0x1e, + 0x57, 0xf0, 0xf1, 0xcb, 0x08, 0x09, 0xc3, 0x63, 0xd6, 0x8f, 0xed, 0x2b, 0x08, 0x43, 0xa3, 0x92, + 0xd0, 0x04, 0x22, 0xcf, 0xfc, 0x72, 0x07, 0x32, 0xbf, 0xaf, 0xa5, 0x60, 0x28, 0x3e, 0xee, 0x17, + 0x29, 0x7f, 0x54, 0x9a, 0x8d, 0xb7, 0x41, 0xe6, 0x40, 0x6d, 0xf0, 0xdb, 0x52, 0xe7, 0x81, 0x4c, + 0x51, 0xa7, 0xad, 0x30, 0x7e, 0x28, 0xaf, 0x76, 0x4a, 0x54, 0x26, 0xbf, 0xdd, 0xe5, 0xa5, 0x52, + 0xe4, 0x77, 0x0d, 0xdb, 0x14, 0xd5, 0x32, 0x0d, 0x2d, 0x44, 0xeb, 0xb5, 0x61, 0xf6, 0x40, 0x6d, + 0x38, 0x4c, 0xa2, 0x33, 0x41, 0x1b, 0x3e, 0x8e, 0xc5, 0xc1, 0x75, 0x84, 0xd8, 0x46, 0xb1, 0x1f, + 0x85, 0x32, 0xc9, 0xae, 0x25, 0xb1, 0x0c, 0x8b, 0xfc, 0x5a, 0x52, 0x40, 0xe2, 0x1f, 0x68, 0xa5, + 0x62, 0x0f, 0xb4, 0xae, 0xa2, 0x9c, 0xa6, 0x6f, 0xbd, 0x33, 0x20, 0xf6, 0x36, 0x77, 0x67, 0xe0, + 0x38, 0xc3, 0xd6, 0xb7, 0x5a, 0x5f, 0xa5, 0x40, 0xcd, 0x47, 0x63, 0xd5, 0x0f, 0x48, 0x17, 0x36, + 0xf0, 0x59, 0x40, 0xba, 0x1f, 0x86, 0xfe, 0x28, 0x86, 0x8e, 0x5f, 0x43, 0xa9, 0xf2, 0xbd, 0x26, + 0xd7, 0xac, 0xdf, 0xb4, 0xe5, 0x7b, 0x4d, 0xae, 0xaf, 0x91, 0xbc, 0xf7, 0x9a, 0xea, 0xd7, 0x92, + 0x08, 0x47, 0x29, 0xf1, 0x2b, 0x28, 0x0f, 0xd0, 0x75, 0x6a, 0x33, 0x62, 0xa6, 0xe5, 0x2d, 0xa7, + 0x65, 0x03, 0x54, 0x72, 0xee, 0x3c, 0x52, 0xfc, 0x2a, 0x64, 0x47, 0xe7, 0xe9, 0x42, 0xa5, 0x4c, + 0xcb, 0x5b, 0x8e, 0x97, 0x4f, 0x3c, 0x94, 0x1c, 0x9d, 0x13, 0x83, 0x5f, 0x78, 0xaf, 0x39, 0x6f, + 0x39, 0x2e, 0x57, 0x35, 0xf3, 0x0b, 0xb7, 0x1c, 0xc8, 0xac, 0x2d, 0xf9, 0x85, 0x8c, 0x0c, 0xcf, + 0xa1, 0xa9, 0xf2, 0xbd, 0x66, 0xd9, 0x71, 0x06, 0x5d, 0x62, 0x68, 0x56, 0xc7, 0x73, 0x28, 0x21, + 0x63, 0x31, 0x65, 0xd4, 0x19, 0x0a, 0xd2, 0xb2, 0x4b, 0xf9, 0xd4, 0x25, 0x2e, 0xf5, 0x0f, 0x33, + 0xa8, 0x58, 0xd5, 0x5d, 0x7d, 0x4d, 0x77, 0x88, 0xb0, 0x18, 0x9e, 0xf6, 0x60, 0xde, 0xe7, 0x08, + 0x7a, 0x30, 0xd6, 0x62, 0xbe, 0x26, 0xcc, 0x80, 0xbf, 0x10, 0xc8, 0xf5, 0x93, 0x48, 0x33, 0x9d, + 0x80, 0xc5, 0x19, 0x6b, 0xad, 0x3e, 0x07, 0x6b, 0x11, 0x42, 0x7c, 0x0d, 0x15, 0x3c, 0x18, 0x5d, + 0x00, 0xa4, 0x02, 0x9b, 0x31, 0xd6, 0xa8, 0xff, 0xaf, 0x89, 0x68, 0xfc, 0x2a, 0x9a, 0xf0, 0x7e, + 0x0a, 0xae, 0x35, 0xac, 0x17, 0x8c, 0xb5, 0xc8, 0xe2, 0x47, 0x24, 0x15, 0x59, 0x61, 0x7c, 0x1b, + 0x97, 0x58, 0x43, 0x69, 0x4f, 0x25, 0x52, 0xfc, 0x55, 0x34, 0xe5, 0xfd, 0xe6, 0x0b, 0x86, 0x0c, + 0x2c, 0x18, 0xae, 0xf9, 0x59, 0xdf, 0x43, 0x6a, 0x9d, 0x91, 0xc9, 0xd9, 0xd2, 0xe1, 0x69, 0xbe, + 0x74, 0x38, 0x6b, 0xac, 0x45, 0x57, 0x0e, 0xa1, 0x02, 0x70, 0x1d, 0x9d, 0xf1, 0x20, 0x81, 0x85, + 0x66, 0x83, 0x05, 0x9f, 0xb1, 0xd6, 0x8a, 0x35, 0xd2, 0x28, 0x17, 0xee, 0xa0, 0x8b, 0x12, 0xd0, + 0x70, 0x36, 0xcc, 0xfb, 0x2e, 0x5f, 0xad, 0xf1, 0xc4, 0x2f, 0x3c, 0x13, 0xaf, 0x2f, 0x95, 0xd1, + 0x78, 0x29, 0xb5, 0xe5, 0x4c, 0xbc, 0xbb, 0x4a, 0xc3, 0x4d, 0x74, 0xce, 0xc3, 0xdf, 0xa9, 0x34, + 0x1a, 0xb6, 0xf5, 0x01, 0x69, 0xbb, 0xf5, 0x2a, 0x5f, 0xed, 0xc2, 0x7d, 0x6d, 0x63, 0xad, 0xb5, + 0xde, 0xee, 0x53, 0xa3, 0xa0, 0x38, 0x59, 0x78, 0x2c, 0x33, 0x7e, 0x17, 0x3d, 0x21, 0xc0, 0xeb, + 0x3d, 0xc7, 0xd5, 0x7b, 0x6d, 0x52, 0xaf, 0xf2, 0x25, 0x30, 0x2c, 0xc7, 0xb9, 0x54, 0x93, 0x23, + 0x65, 0xb1, 0xf1, 0xec, 0x17, 0xca, 0xe8, 0x6c, 0x4c, 0x4b, 0x1d, 0x68, 0xdd, 0xf5, 0x8d, 0x64, + 0x60, 0x1c, 0xc7, 0x7c, 0xf1, 0x35, 0x8b, 0x72, 0xde, 0x97, 0xf0, 0x29, 0x58, 0x19, 0x65, 0xe0, + 0x61, 0x19, 0x1e, 0x5e, 0x52, 0xc7, 0x31, 0x5f, 0x90, 0x3d, 0x0e, 0x75, 0x7c, 0x94, 0x08, 0xd4, + 0x71, 0xcc, 0x17, 0x69, 0xbf, 0x9b, 0x0a, 0x7a, 0xf6, 0xe9, 0x4a, 0xed, 0x71, 0x39, 0x9b, 0xc1, + 0xe1, 0x7f, 0xe6, 0x00, 0xd1, 0xdb, 0xa2, 0x69, 0x66, 0x1f, 0xd1, 0x34, 0xff, 0x28, 0xda, 0x9e, + 0xcc, 0x81, 0x3b, 0x96, 0xed, 0xf9, 0x18, 0x3a, 0x2b, 0xbe, 0x81, 0x26, 0xbd, 0xbf, 0x99, 0xa7, + 0x3b, 0x2e, 0x5c, 0x1e, 0x5f, 0xe3, 0x8e, 0xae, 0x4c, 0x82, 0xbf, 0x8c, 0xce, 0x4b, 0x80, 0x86, + 0x6e, 0xeb, 0x5d, 0xe2, 0x12, 0x9b, 0xf9, 0x08, 0xfc, 0x61, 0x03, 0x8f, 0xbb, 0xd5, 0xf7, 0xd1, + 0x62, 0xde, 0xf9, 0x11, 0x12, 0x04, 0xe3, 0xc8, 0x1e, 0x20, 0x32, 0xe4, 0x3f, 0x24, 0xd1, 0x64, + 0xc3, 0x72, 0xdc, 0x75, 0x9b, 0x38, 0x0d, 0xdd, 0x76, 0xc8, 0xc9, 0x6d, 0xd1, 0xcf, 0xa3, 0x49, + 0xb8, 0xcc, 0xd3, 0x25, 0x3d, 0x57, 0x78, 0xf1, 0x80, 0x25, 0xb4, 0xf2, 0x10, 0x3c, 0x39, 0x9e, + 0x44, 0x88, 0x4b, 0x68, 0x9c, 0xd9, 0x80, 0x70, 0xc5, 0x8a, 0x19, 0x00, 0x83, 0xab, 0x7f, 0x33, + 0x85, 0x26, 0x3c, 0x2d, 0xcf, 0x9a, 0xc7, 0x75, 0xe7, 0xe3, 0x68, 0x95, 0x7c, 0x1d, 0xa1, 0x86, + 0x65, 0xbb, 0x7a, 0x47, 0x78, 0xb1, 0x0b, 0x96, 0x0c, 0x7d, 0x80, 0x32, 0x1e, 0x81, 0x04, 0xcf, + 0x20, 0x24, 0x74, 0xb0, 0x2c, 0x74, 0xb0, 0xa9, 0x9d, 0x61, 0x09, 0x05, 0xfd, 0x4a, 0x13, 0x28, + 0xd4, 0x7f, 0x90, 0x44, 0xd3, 0x5e, 0x23, 0xd5, 0x1e, 0x92, 0xf6, 0xc0, 0x3d, 0xc1, 0x9d, 0x41, + 0xd6, 0xf6, 0xf8, 0x9e, 0xda, 0x56, 0xff, 0xbb, 0x30, 0x90, 0x54, 0x3a, 0xd6, 0xe9, 0x40, 0xf2, + 0x67, 0x61, 0xe3, 0xea, 0x4f, 0xa5, 0xd0, 0x39, 0x4f, 0xeb, 0x73, 0x83, 0x1e, 0xb8, 0x09, 0x15, + 0xbd, 0xd3, 0x39, 0xc9, 0xf3, 0x72, 0xc1, 0x53, 0xc4, 0x32, 0xbf, 0x1d, 0xcb, 0x13, 0x95, 0xde, + 0xe7, 0xe0, 0x96, 0x65, 0x1a, 0x9a, 0x48, 0x84, 0xdf, 0x44, 0x13, 0xde, 0xcf, 0xb2, 0xbd, 0xee, + 0x4d, 0xc6, 0xb0, 0x74, 0xf6, 0x99, 0x74, 0x5b, 0x8a, 0xaa, 0x96, 0x18, 0xd4, 0x5f, 0xc8, 0xa0, + 0x0b, 0xf7, 0xcc, 0x9e, 0x61, 0x6d, 0x39, 0x5e, 0x9e, 0xdb, 0x63, 0xef, 0xf4, 0x1e, 0x75, 0x7e, + 0xdb, 0x77, 0xd0, 0x13, 0x61, 0x95, 0xda, 0x7e, 0x72, 0x08, 0xde, 0x3a, 0x5b, 0x8c, 0xa0, 0xe5, + 0x65, 0xbc, 0xe5, 0xfb, 0x4f, 0x5a, 0x3c, 0x67, 0x38, 0x65, 0x6e, 0x76, 0x3f, 0x29, 0x73, 0x5f, + 0x44, 0x99, 0xaa, 0xd5, 0xd5, 0x4d, 0xef, 0x7e, 0x0d, 0xf4, 0x62, 0xbf, 0x5c, 0xc0, 0x68, 0x9c, + 0x82, 0xca, 0xe7, 0x05, 0x43, 0x93, 0xe5, 0x03, 0xf9, 0x1e, 0xc3, 0xc0, 0x21, 0xb6, 0x26, 0x12, + 0x61, 0x0b, 0x4d, 0xf2, 0xe2, 0xf8, 0x6e, 0x11, 0x82, 0xdd, 0xa2, 0xcf, 0x79, 0x3a, 0x1a, 0x6d, + 0x56, 0x33, 0x12, 0x1f, 0xdb, 0x36, 0x62, 0x99, 0x7c, 0xf9, 0xc7, 0xb0, 0x7d, 0x23, 0x4d, 0x96, + 0x2f, 0x28, 0x01, 0x06, 0x99, 0x42, 0x54, 0x09, 0x30, 0xca, 0x88, 0x44, 0x17, 0xde, 0x42, 0x38, + 0x5a, 0xd8, 0x81, 0x76, 0x3e, 0x7e, 0x3a, 0x89, 0x70, 0x68, 0x01, 0x51, 0x3b, 0xc1, 0x7e, 0x90, + 0xfa, 0x2b, 0x09, 0x74, 0x26, 0x92, 0xd6, 0x04, 0xdf, 0x44, 0x88, 0x41, 0x84, 0xeb, 0xdc, 0x70, + 0x3f, 0x22, 0x48, 0x75, 0xc2, 0xe7, 0x80, 0x80, 0x0c, 0x5f, 0x47, 0x39, 0xf6, 0xcb, 0x7f, 0xb3, + 0x31, 0xcc, 0x32, 0x18, 0x98, 0x86, 0xe6, 0x13, 0x05, 0xa5, 0xc0, 0x73, 0xad, 0xa9, 0x58, 0x16, + 0x77, 0xbb, 0xef, 0x97, 0x42, 0xc9, 0xd4, 0x6f, 0x25, 0xd0, 0x84, 0x5f, 0xe1, 0xb2, 0x71, 0x54, + 0x4d, 0x97, 0xe1, 0x19, 0x62, 0x52, 0x7b, 0x65, 0x88, 0x09, 0x0d, 0x2a, 0xfc, 0xd5, 0xcc, 0x7f, + 0x96, 0x40, 0xd3, 0x3e, 0xed, 0x11, 0xee, 0xb1, 0x1c, 0xfa, 0x43, 0x7e, 0x26, 0x81, 0x94, 0x59, + 0xb3, 0xd3, 0x31, 0x7b, 0xeb, 0xf5, 0xde, 0x7d, 0xcb, 0xee, 0xc2, 0xb5, 0xaf, 0xa3, 0xdb, 0x44, + 0x53, 0xff, 0x72, 0x02, 0x9d, 0xe1, 0x15, 0xaa, 0xe8, 0xb6, 0x71, 0x74, 0xbb, 0x9b, 0xe1, 0x9a, + 0x1c, 0x5d, 0x2b, 0xab, 0xff, 0x2f, 0x81, 0xd0, 0x82, 0xd5, 0xde, 0x3c, 0xde, 0x71, 0x95, 0xf8, + 0x55, 0x94, 0x61, 0x77, 0xce, 0xf8, 0x68, 0x77, 0x66, 0x86, 0x3d, 0x28, 0x4d, 0x3f, 0x8d, 0x21, + 0x66, 0xa7, 0xf8, 0x71, 0x45, 0x86, 0xdd, 0x59, 0xd3, 0x38, 0x03, 0xdc, 0x72, 0xa0, 0x64, 0xc7, + 0x3c, 0x12, 0xf3, 0xaf, 0x26, 0xd0, 0x39, 0x8d, 0xb4, 0xad, 0x07, 0xc4, 0xde, 0xae, 0x58, 0x06, + 0xb9, 0x43, 0x7a, 0xc4, 0x3e, 0x2a, 0xfb, 0xfe, 0x87, 0x90, 0x4e, 0x2a, 0xa8, 0xcc, 0xaa, 0x43, + 0x8c, 0xe3, 0x93, 0x83, 0x4c, 0xfd, 0xb5, 0x2c, 0x52, 0x62, 0x9d, 0x9a, 0x63, 0xeb, 0x0f, 0x8c, + 0xf4, 0x54, 0xd3, 0x8f, 0xcb, 0x53, 0x1d, 0x3f, 0x98, 0xa7, 0x9a, 0x39, 0xa8, 0xa7, 0x9a, 0xdd, + 0x8f, 0xa7, 0xda, 0x0d, 0x7b, 0xaa, 0x39, 0xf0, 0x54, 0x6f, 0xee, 0xea, 0xa9, 0xd6, 0x7a, 0xc6, + 0x23, 0xfa, 0xa9, 0xc7, 0x36, 0xf3, 0xf6, 0x23, 0x38, 0xd8, 0xf8, 0x0a, 0x1d, 0xdc, 0xda, 0x96, + 0x6d, 0x10, 0x96, 0x49, 0x3b, 0xc7, 0x36, 0x92, 0x6d, 0x0e, 0xd3, 0x7c, 0x6c, 0x24, 0x8d, 0xf9, + 0xe4, 0x7e, 0xd2, 0x98, 0x3f, 0x06, 0x07, 0xfe, 0xbb, 0x09, 0x74, 0xa6, 0x42, 0x6c, 0x97, 0x5d, + 0x31, 0x7f, 0x1c, 0xa7, 0x97, 0x65, 0x34, 0x2d, 0x08, 0x04, 0x5f, 0x34, 0x19, 0xe4, 0x33, 0x69, + 0x13, 0xdb, 0x05, 0x2f, 0x54, 0x0c, 0x26, 0x08, 0xd1, 0xd3, 0xe2, 0xfd, 0x07, 0xdf, 0x53, 0x72, + 0xf1, 0x1e, 0x9c, 0x29, 0xd2, 0x7b, 0xfc, 0x5d, 0xf3, 0xe9, 0xd5, 0x5f, 0x4e, 0xa0, 0xcb, 0x1a, + 0xe9, 0x91, 0x2d, 0x7d, 0xad, 0x43, 0x04, 0xc1, 0x7c, 0x6c, 0xa7, 0xfd, 0xde, 0x74, 0xba, 0xba, + 0xdb, 0xde, 0x38, 0xd4, 0x57, 0xce, 0xc9, 0xcf, 0xf7, 0x1f, 0x60, 0x74, 0x92, 0xf8, 0xd4, 0x1f, + 0x24, 0x51, 0x76, 0xd6, 0x72, 0x0f, 0xfd, 0xce, 0x63, 0x30, 0x68, 0x27, 0x0f, 0xb0, 0x18, 0xff, + 0x2c, 0x14, 0x2e, 0xa4, 0x87, 0x82, 0x40, 0x94, 0x35, 0xcb, 0x8d, 0x04, 0x28, 0x73, 0xb2, 0x03, + 0xa6, 0x9a, 0x7c, 0x05, 0xe5, 0xe1, 0x56, 0x9a, 0xb0, 0x5d, 0x06, 0x31, 0x25, 0x2e, 0x05, 0x86, + 0xcb, 0x08, 0x48, 0xf1, 0x97, 0xa5, 0x5b, 0xed, 0x99, 0xc3, 0xa7, 0xa6, 0x14, 0xc4, 0xa9, 0xbf, + 0x97, 0x42, 0x13, 0xde, 0xf9, 0xff, 0x11, 0xe9, 0xfd, 0x25, 0x94, 0x99, 0xb7, 0x84, 0x04, 0x55, + 0x10, 0x81, 0xb2, 0x61, 0x39, 0xa1, 0x40, 0x08, 0x4e, 0x84, 0x6f, 0xa2, 0x9c, 0xff, 0x5e, 0x73, + 0x5a, 0x78, 0xfa, 0x3f, 0xe6, 0x91, 0x66, 0x9f, 0x10, 0x5f, 0x46, 0x69, 0x08, 0x14, 0x12, 0x76, + 0x29, 0x43, 0xc1, 0x41, 0x80, 0x17, 0x5a, 0x34, 0x73, 0xd0, 0x16, 0xcd, 0x3e, 0x6a, 0x8b, 0xe6, + 0x1e, 0x6f, 0x8b, 0xfe, 0x51, 0x02, 0x65, 0x57, 0x7b, 0x9b, 0x3d, 0x6b, 0xeb, 0x70, 0x8d, 0x79, + 0x13, 0x15, 0xb8, 0x18, 0x61, 0xd8, 0x82, 0xab, 0x11, 0x03, 0x06, 0x6e, 0x81, 0x24, 0x4d, 0xa4, + 0xc2, 0xaf, 0xfb, 0x4c, 0x10, 0x66, 0x97, 0x0a, 0xb2, 0xa7, 0x79, 0x4c, 0x6d, 0x39, 0xe1, 0x93, + 0x48, 0x8e, 0x2f, 0xf2, 0xa7, 0x3c, 0x85, 0xf4, 0x01, 0xb4, 0x2a, 0xec, 0x25, 0x4f, 0xf5, 0x87, + 0x09, 0x34, 0x15, 0xda, 0x4b, 0x78, 0x11, 0xe5, 0xf9, 0x5a, 0xde, 0xf4, 0x32, 0x50, 0x41, 0x18, + 0x9e, 0x0f, 0xd4, 0x72, 0xec, 0xcf, 0xba, 0x81, 0xbf, 0x88, 0xb2, 0x96, 0x03, 0xa3, 0x2d, 0x7c, + 0xcb, 0x54, 0x60, 0x9d, 0xcb, 0x4d, 0x5a, 0x77, 0x66, 0x77, 0x9c, 0x44, 0x6c, 0x6c, 0xcb, 0x81, + 0x4f, 0xbb, 0x85, 0xf2, 0xba, 0xe3, 0x10, 0xb7, 0xe5, 0xea, 0xeb, 0x62, 0x52, 0x2a, 0x1f, 0x28, + 0x1a, 0x1e, 0x00, 0x57, 0xf4, 0x75, 0xfc, 0x16, 0x9a, 0x6c, 0xdb, 0x04, 0xc6, 0x63, 0xbd, 0x43, + 0x6b, 0x29, 0xf8, 0x4b, 0x12, 0x42, 0xdc, 0x77, 0x0d, 0x10, 0x75, 0x43, 0xfd, 0x4e, 0x82, 0xce, + 0xb5, 0xf4, 0x23, 0x20, 0xb3, 0x35, 0x6d, 0xd3, 0xee, 0x01, 0xdb, 0xb4, 0x1b, 0x24, 0x64, 0xcd, + 0x38, 0xbb, 0x74, 0x50, 0x8d, 0x63, 0xf1, 0x0c, 0xca, 0x18, 0xe2, 0xd2, 0xdd, 0x0f, 0x06, 0x90, + 0xf5, 0xaf, 0x71, 0x2a, 0x7c, 0x05, 0xa5, 0xa9, 0x2f, 0xc5, 0xd7, 0x4e, 0xb1, 0x03, 0xbf, 0x06, + 0x14, 0xea, 0x4f, 0x26, 0xd1, 0x84, 0xf0, 0x35, 0x37, 0x0e, 0xf5, 0x39, 0xaf, 0xed, 0xaf, 0x9a, + 0x3c, 0x7a, 0x0e, 0x60, 0x7e, 0x95, 0x6f, 0xf9, 0xaa, 0xd8, 0xd7, 0x86, 0x2d, 0x57, 0xcc, 0x2b, + 0xfc, 0x43, 0x33, 0xfb, 0xf7, 0xbf, 0x29, 0xfd, 0xdb, 0xe9, 0x5c, 0xb2, 0x98, 0x7a, 0x3b, 0x9d, + 0x4b, 0x17, 0xc7, 0xd5, 0x3f, 0xad, 0xa1, 0xf1, 0xe5, 0x1e, 0x59, 0xbe, 0x8f, 0x5f, 0x16, 0x32, + 0x2c, 0xf3, 0x8f, 0x3f, 0x23, 0x8a, 0x04, 0xc4, 0xfc, 0x98, 0x26, 0xe4, 0x61, 0xbe, 0x25, 0xe6, + 0x9d, 0xe5, 0xad, 0x88, 0x45, 0x1e, 0x86, 0x99, 0x1f, 0xd3, 0xc4, 0xfc, 0xb4, 0xb7, 0xc4, 0xc4, + 0xac, 0x5c, 0x59, 0x12, 0x17, 0xc3, 0x78, 0x5c, 0x7c, 0x25, 0xbb, 0x10, 0x97, 0x07, 0x35, 0xbc, + 0x4b, 0x1e, 0xa5, 0x98, 0x1f, 0xd3, 0xe2, 0xf3, 0xa7, 0x4a, 0x2f, 0x95, 0x73, 0xb5, 0x9f, 0x0b, + 0xad, 0x43, 0x00, 0x37, 0x3f, 0xa6, 0xc9, 0xaf, 0x9a, 0xdf, 0x96, 0xde, 0x80, 0x0e, 0x87, 0xc9, + 0x0a, 0xa8, 0xf9, 0x31, 0x2d, 0xf4, 0x5a, 0xb4, 0xf4, 0x20, 0x31, 0x0f, 0x1b, 0x08, 0x17, 0x0a, + 0x38, 0xa1, 0x50, 0xf6, 0x78, 0xf1, 0x1b, 0xa1, 0xe7, 0xd6, 0xf8, 0x40, 0xfd, 0x44, 0x88, 0x99, + 0x21, 0xe7, 0xc7, 0xb4, 0xd0, 0xe3, 0x6c, 0x57, 0xbc, 0x17, 0xb8, 0xb8, 0x63, 0x3f, 0x25, 0xac, + 0xe4, 0xcd, 0x0f, 0xa9, 0x96, 0xbc, 0x17, 0xba, 0x6e, 0x89, 0x2f, 0x2f, 0x71, 0x4f, 0x1d, 0x87, + 0x4a, 0xa9, 0xf5, 0x0c, 0xda, 0x3a, 0xc2, 0x32, 0xf2, 0xad, 0xf0, 0x1b, 0x25, 0xfc, 0xe5, 0x9b, + 0x27, 0x43, 0x9c, 0x1c, 0x3b, 0x3f, 0xa6, 0x85, 0xdf, 0x34, 0xb9, 0x2d, 0xbd, 0x8f, 0xc1, 0xef, + 0xb1, 0x85, 0xb5, 0x4a, 0x51, 0x82, 0x56, 0xe1, 0x25, 0x8d, 0xb7, 0xc2, 0x0f, 0x36, 0x28, 0x93, + 0xb1, 0x45, 0x73, 0xac, 0x50, 0xb4, 0xf7, 0xc0, 0xc3, 0x6d, 0x29, 0xb1, 0x3e, 0xbc, 0x5d, 0x13, + 0x53, 0xb4, 0xee, 0xea, 0x62, 0xd1, 0xac, 0xcb, 0x4b, 0x29, 0xde, 0x95, 0xe9, 0xd8, 0x06, 0x05, + 0x9c, 0xd0, 0xa0, 0x2c, 0x1d, 0xfc, 0x6d, 0x29, 0xcb, 0xa5, 0x52, 0x94, 0x0b, 0x15, 0x50, 0xb4, + 0x50, 0x31, 0x1f, 0xe6, 0x2d, 0x31, 0xf9, 0xa3, 0x72, 0x46, 0x6e, 0xa0, 0x00, 0x43, 0x1b, 0x48, + 0x48, 0x12, 0x59, 0x82, 0xc4, 0x72, 0x0a, 0x06, 0xf2, 0x82, 0x5f, 0xc3, 0x4a, 0x63, 0x7e, 0x4c, + 0x83, 0x94, 0x73, 0x2a, 0x4b, 0x59, 0xa8, 0x9c, 0x05, 0x8a, 0x09, 0xff, 0x01, 0x83, 0x87, 0xa4, + 0x3d, 0x3f, 0xa6, 0xb1, 0x74, 0x86, 0x2f, 0x0b, 0xc9, 0x81, 0x94, 0x73, 0xf2, 0x10, 0xe1, 0x23, + 0xe8, 0x10, 0x11, 0xa4, 0x10, 0x9a, 0x8b, 0x26, 0xd0, 0x51, 0x9e, 0x90, 0x37, 0x93, 0xc2, 0xf8, + 0xf9, 0x31, 0x2d, 0x9a, 0x74, 0xe7, 0xb6, 0x94, 0x53, 0x46, 0x79, 0x32, 0x14, 0x9b, 0x1e, 0xa0, + 0xa8, 0xba, 0xc4, 0xec, 0x33, 0xcb, 0xb1, 0x49, 0x8b, 0x95, 0xf3, 0x20, 0xe0, 0x69, 0x5f, 0x40, + 0x94, 0x64, 0x7e, 0x4c, 0x8b, 0x4d, 0x77, 0x5c, 0x89, 0x64, 0x76, 0x51, 0x14, 0x79, 0x17, 0x23, + 0x84, 0x9e, 0x1f, 0xd3, 0x22, 0xb9, 0x60, 0x6e, 0x89, 0x29, 0x55, 0x94, 0xa7, 0xe4, 0x46, 0x0c, + 0x30, 0xb4, 0x11, 0x85, 0xd4, 0x2b, 0xb7, 0xc4, 0x0c, 0x26, 0xca, 0x85, 0x28, 0x57, 0x30, 0x72, + 0x0a, 0x99, 0x4e, 0xb4, 0xf8, 0x84, 0x21, 0xca, 0xd3, 0x3c, 0x77, 0x1b, 0xe7, 0x8f, 0xa3, 0x99, + 0x1f, 0xd3, 0xe2, 0x93, 0x8d, 0x68, 0xf1, 0x39, 0x3b, 0x94, 0x8b, 0xbb, 0xc9, 0xf4, 0x6b, 0x17, + 0x9f, 0xef, 0x43, 0xdf, 0x25, 0x6d, 0x86, 0xf2, 0x8c, 0x7c, 0xaf, 0x75, 0x24, 0xe1, 0xfc, 0x98, + 0xb6, 0x4b, 0xf2, 0x8d, 0xd5, 0x11, 0x39, 0x2c, 0x94, 0x4b, 0x72, 0xea, 0xc6, 0x58, 0xa2, 0xf9, + 0x31, 0x6d, 0x44, 0x06, 0x8c, 0xd5, 0x11, 0x89, 0x24, 0x94, 0xd2, 0xae, 0x62, 0x7d, 0x7d, 0x8c, + 0x48, 0x43, 0xb1, 0x1c, 0x9b, 0xcd, 0x41, 0x79, 0x56, 0x36, 0xdd, 0x18, 0x12, 0x6a, 0xba, 0x71, + 0x79, 0x20, 0x96, 0x63, 0xd3, 0x29, 0x28, 0xcf, 0xed, 0x22, 0xd0, 0xaf, 0x63, 0x6c, 0x22, 0x86, + 0xe5, 0xd8, 0x7c, 0x06, 0x8a, 0x2a, 0x0b, 0x8c, 0x21, 0xa1, 0x02, 0xe3, 0x32, 0x21, 0x2c, 0xc7, + 0x26, 0x14, 0x50, 0x9e, 0xdf, 0x45, 0x60, 0x50, 0xc3, 0xb8, 0x54, 0x04, 0xb7, 0xa5, 0x1b, 0xfd, + 0xca, 0xa7, 0xe4, 0x71, 0x43, 0x40, 0xd1, 0x71, 0x43, 0xbc, 0xfb, 0x5f, 0x89, 0x5c, 0x7a, 0x54, + 0x3e, 0x2d, 0x77, 0xf3, 0x10, 0x9a, 0x76, 0xf3, 0xf0, 0x35, 0xc9, 0x4a, 0xe4, 0xf2, 0x97, 0x72, + 0x79, 0x94, 0x10, 0x40, 0xcb, 0x42, 0xd8, 0x75, 0xb1, 0x7a, 0xcc, 0xed, 0x23, 0xe5, 0x05, 0xf9, + 0x14, 0x2b, 0x42, 0x30, 0x3f, 0xa6, 0xc5, 0xdc, 0x59, 0xd2, 0xe2, 0x83, 0x84, 0x95, 0x2b, 0x72, + 0xb7, 0x8d, 0xa3, 0xa1, 0xdd, 0x36, 0x36, 0xc0, 0x78, 0x21, 0xee, 0x9c, 0x59, 0xb9, 0x2a, 0x3b, + 0x66, 0x51, 0x0a, 0xea, 0x98, 0xc5, 0x9c, 0x4f, 0x6b, 0xf1, 0x61, 0xaf, 0xca, 0x8b, 0xbb, 0xd6, + 0x10, 0x68, 0x62, 0x6a, 0xc8, 0xa2, 0x40, 0x03, 0xdf, 0x69, 0xb5, 0xdf, 0xb1, 0x74, 0x43, 0xf9, + 0x4c, 0xac, 0xef, 0xc4, 0x90, 0x82, 0xef, 0xc4, 0x00, 0x74, 0x96, 0x17, 0xcf, 0x61, 0x95, 0x6b, + 0xf2, 0x2c, 0x2f, 0xe2, 0xe8, 0x2c, 0x2f, 0x9d, 0xd9, 0x56, 0x22, 0xa7, 0x9f, 0xca, 0x4b, 0xb2, + 0x01, 0x84, 0xd0, 0xd4, 0x00, 0xc2, 0xe7, 0xa5, 0xef, 0x8f, 0x3e, 0x79, 0x54, 0x66, 0x40, 0xda, + 0xb3, 0xfe, 0x13, 0x4d, 0x23, 0xe8, 0xe6, 0xc7, 0xb4, 0xd1, 0xa7, 0x97, 0xf5, 0x98, 0x83, 0x44, + 0xe5, 0xba, 0x6c, 0x60, 0x11, 0x02, 0x6a, 0x60, 0xd1, 0xe3, 0xc7, 0x7a, 0xcc, 0x49, 0xa0, 0xf2, + 0xd9, 0x91, 0xa2, 0xfc, 0x6f, 0x8e, 0x39, 0x3f, 0xbc, 0x25, 0x1e, 0xe5, 0x29, 0x2f, 0xcb, 0x93, + 0x5d, 0x80, 0xa1, 0x93, 0x9d, 0x70, 0xe4, 0x77, 0x4b, 0x3c, 0xfe, 0x52, 0x6e, 0x44, 0xb9, 0x82, + 0x29, 0x52, 0x38, 0x26, 0xd3, 0xe2, 0x4f, 0x9b, 0x94, 0x9b, 0xb2, 0xd5, 0xc5, 0xd1, 0x50, 0xab, + 0x8b, 0x3d, 0xa9, 0x9a, 0x8b, 0x1e, 0x1a, 0x29, 0xb7, 0xc2, 0xc7, 0x68, 0x32, 0x9e, 0x7a, 0x3e, + 0x91, 0x83, 0xa6, 0xb7, 0xc2, 0x37, 0x58, 0x94, 0xcf, 0x85, 0xd6, 0x97, 0x12, 0x96, 0xfa, 0xb7, + 0xa1, 0x1b, 0x2f, 0x6f, 0x85, 0x2f, 0x7d, 0x28, 0xaf, 0xc4, 0x4b, 0xf0, 0x6d, 0x25, 0x7c, 0x49, + 0xe4, 0xad, 0xf0, 0x3d, 0x09, 0xe5, 0x76, 0xbc, 0x04, 0x5f, 0xbb, 0xe1, 0x7b, 0x15, 0x2f, 0x0b, + 0xf9, 0x0f, 0x94, 0xcf, 0xcb, 0xae, 0xa3, 0x8f, 0xa0, 0xae, 0x63, 0x90, 0x25, 0xe1, 0x65, 0x21, + 0x6f, 0x80, 0xf2, 0x6a, 0x84, 0xc5, 0xaf, 0xac, 0x90, 0x5d, 0xe0, 0x65, 0xe1, 0xbe, 0xbd, 0xf2, + 0x5a, 0x84, 0xc5, 0xaf, 0x9d, 0x70, 0x2b, 0xdf, 0xd8, 0x2d, 0x90, 0x4c, 0xf9, 0x02, 0xc8, 0x50, + 0xf7, 0x8e, 0x0d, 0x9a, 0x1f, 0xd3, 0x76, 0x0b, 0x48, 0x7b, 0x7f, 0xf4, 0x11, 0x9c, 0xf2, 0xba, + 0xdc, 0x85, 0x47, 0xd1, 0xd1, 0x2e, 0x3c, 0xf2, 0x18, 0xef, 0x8d, 0x50, 0x50, 0xb9, 0xf2, 0x86, + 0x3c, 0xc4, 0x49, 0x48, 0x3a, 0xc4, 0x85, 0x43, 0xd0, 0xa5, 0x68, 0x69, 0xe5, 0x8b, 0xf2, 0x10, + 0x27, 0xe2, 0xe8, 0x10, 0x27, 0x45, 0x56, 0x57, 0x22, 0x41, 0xbc, 0xca, 0x9b, 0xf2, 0x10, 0x17, + 0x42, 0xd3, 0x21, 0x2e, 0x1c, 0xf6, 0xfb, 0x46, 0x28, 0x96, 0x55, 0x79, 0x2b, 0xbe, 0xfe, 0x80, + 0x14, 0xeb, 0xcf, 0x22, 0x5f, 0xb5, 0xf8, 0xa0, 0x4c, 0xa5, 0x2c, 0xf7, 0xdf, 0x38, 0x1a, 0xda, + 0x7f, 0x63, 0x03, 0x3a, 0x97, 0x63, 0x1f, 0x4e, 0x50, 0x66, 0x77, 0x59, 0x38, 0x04, 0xae, 0x48, + 0xdc, 0x93, 0x0b, 0x6f, 0x85, 0x1f, 0xf7, 0x56, 0x2a, 0x23, 0xd6, 0xc8, 0xde, 0x32, 0x28, 0xfc, + 0x18, 0x78, 0x3d, 0xe6, 0x44, 0x48, 0xa9, 0xca, 0xa3, 0x6b, 0x84, 0x80, 0x8e, 0xae, 0xd1, 0x73, + 0xa4, 0x39, 0x54, 0xe4, 0x56, 0x14, 0x3c, 0xda, 0x5a, 0x0b, 0x85, 0x56, 0x85, 0xf0, 0x74, 0x74, + 0x0a, 0xc3, 0x60, 0xbe, 0x66, 0xb0, 0x4a, 0xc7, 0xec, 0xaf, 0x59, 0xba, 0x6d, 0x34, 0x49, 0xcf, + 0x50, 0xe6, 0x42, 0xf3, 0x75, 0x0c, 0x0d, 0xcc, 0xd7, 0x31, 0x70, 0xb8, 0xb5, 0x11, 0x82, 0xf3, + 0x67, 0xd5, 0x94, 0x3b, 0x20, 0xb6, 0x34, 0x4a, 0x2c, 0x27, 0x9b, 0x1f, 0xd3, 0x46, 0x49, 0xa0, + 0xbe, 0xfa, 0xe2, 0x76, 0xf3, 0x9d, 0x05, 0x3f, 0x0e, 0xb8, 0x61, 0x93, 0xbe, 0x6e, 0x13, 0x65, + 0x5e, 0xf6, 0xd5, 0x63, 0x89, 0xa8, 0xaf, 0x1e, 0x8b, 0x88, 0x8a, 0xf5, 0xfa, 0x42, 0x7d, 0x37, + 0xb1, 0x41, 0x8f, 0x88, 0xe7, 0xa6, 0xa3, 0x93, 0x8c, 0xa0, 0x0a, 0x5a, 0xb0, 0x7a, 0xeb, 0xb0, + 0x53, 0xf1, 0xb6, 0x3c, 0x3a, 0x8d, 0xa6, 0xa4, 0xa3, 0xd3, 0x68, 0x2c, 0x35, 0x75, 0x19, 0xcb, + 0xfa, 0xe0, 0x5d, 0xd9, 0xd4, 0x63, 0x48, 0xa8, 0xa9, 0xc7, 0x80, 0xa3, 0x02, 0x35, 0xe2, 0x10, + 0x57, 0x59, 0xd8, 0x4d, 0x20, 0x90, 0x44, 0x05, 0x02, 0x38, 0x2a, 0x70, 0x8e, 0xb8, 0xed, 0x0d, + 0x65, 0x71, 0x37, 0x81, 0x40, 0x12, 0x15, 0x08, 0x60, 0xba, 0xd8, 0x94, 0xc1, 0xb3, 0x83, 0xce, + 0xa6, 0xd7, 0x66, 0x4b, 0xf2, 0x62, 0x73, 0x24, 0x21, 0x5d, 0x6c, 0x8e, 0x44, 0xe2, 0xaf, 0xef, + 0xfb, 0xbc, 0x53, 0x59, 0x86, 0x02, 0x67, 0x02, 0xbf, 0x60, 0x3f, 0x5c, 0xf3, 0x63, 0xda, 0x7e, + 0xcf, 0x53, 0x3f, 0xe3, 0x9f, 0xc2, 0x28, 0x0d, 0x28, 0x6a, 0xda, 0xdf, 0xab, 0x60, 0xe0, 0xf9, + 0x31, 0xcd, 0x3f, 0xa7, 0xb9, 0x8d, 0x0a, 0xf0, 0x51, 0xf5, 0x9e, 0xe9, 0x56, 0x67, 0x95, 0x77, + 0xe4, 0x25, 0x93, 0x80, 0xa2, 0x4b, 0x26, 0xe1, 0x27, 0x1d, 0xc4, 0xe1, 0x27, 0x1b, 0x62, 0xaa, + 0xb3, 0x8a, 0x26, 0x0f, 0xe2, 0x12, 0x92, 0x0e, 0xe2, 0x12, 0xc0, 0x2f, 0xb7, 0x6a, 0x5b, 0xfd, + 0xea, 0xac, 0xd2, 0x8c, 0x29, 0x97, 0xa1, 0xfc, 0x72, 0xd9, 0x4f, 0xbf, 0xdc, 0xe6, 0xc6, 0xc0, + 0xad, 0xd2, 0x6f, 0x5c, 0x89, 0x29, 0xd7, 0x43, 0xfa, 0xe5, 0x7a, 0x00, 0x3a, 0x14, 0x02, 0xa0, + 0x61, 0x5b, 0x74, 0xd0, 0xbe, 0x6b, 0x76, 0x3a, 0xca, 0xaa, 0x3c, 0x14, 0x86, 0xf1, 0x74, 0x28, + 0x0c, 0xc3, 0xa8, 0xeb, 0xc9, 0x6a, 0x45, 0xd6, 0x06, 0xeb, 0xca, 0xbb, 0xb2, 0xeb, 0x19, 0x60, + 0xa8, 0xeb, 0x19, 0xfc, 0x82, 0xd5, 0x05, 0xfd, 0xa5, 0x91, 0xfb, 0x36, 0x71, 0x36, 0x94, 0x7b, + 0xa1, 0xd5, 0x85, 0x80, 0x83, 0xd5, 0x85, 0xf0, 0x1b, 0xaf, 0xa3, 0xa7, 0xa5, 0x89, 0xc6, 0x0b, + 0xbb, 0x6a, 0x12, 0xdd, 0x6e, 0x6f, 0x28, 0xef, 0x81, 0xa8, 0xe7, 0x63, 0xa7, 0x2a, 0x99, 0x74, + 0x7e, 0x4c, 0xdb, 0x4d, 0x12, 0x2c, 0xcb, 0xdf, 0x59, 0x60, 0xd7, 0x2b, 0xb5, 0x46, 0xc5, 0x5b, + 0x84, 0x7e, 0x29, 0xb4, 0x2c, 0x8f, 0x92, 0xc0, 0xb2, 0x3c, 0x0a, 0xc6, 0x7d, 0x74, 0x29, 0xb4, + 0x54, 0x5b, 0xd4, 0x3b, 0x74, 0x5d, 0x42, 0x8c, 0x86, 0xde, 0xde, 0x24, 0xae, 0xf2, 0x63, 0x20, + 0xfb, 0xf2, 0x88, 0x05, 0x5f, 0x88, 0x7a, 0x7e, 0x4c, 0xdb, 0x43, 0x1e, 0x56, 0x59, 0x6a, 0x7e, + 0xe5, 0xcb, 0xf2, 0xfe, 0x26, 0x85, 0xcd, 0x8f, 0x69, 0x2c, 0x6d, 0xff, 0xfb, 0x48, 0x59, 0xed, + 0xaf, 0xdb, 0xba, 0x41, 0x98, 0xa3, 0x05, 0xbe, 0x1b, 0x77, 0x40, 0x7f, 0x5c, 0xf6, 0xd2, 0x46, + 0xd1, 0x51, 0x2f, 0x6d, 0x14, 0x8e, 0x1a, 0xaa, 0x94, 0x8f, 0x47, 0xf9, 0x8a, 0x6c, 0xa8, 0x12, + 0x92, 0x1a, 0xaa, 0x9c, 0xbd, 0xe7, 0x3d, 0xf4, 0x64, 0xf8, 0xbd, 0x74, 0xd6, 0x68, 0xca, 0xfb, + 0x20, 0xe7, 0x52, 0xe4, 0x30, 0x40, 0xa2, 0x9a, 0x1f, 0xd3, 0x46, 0xf0, 0xd3, 0x19, 0x37, 0x92, + 0x29, 0x8e, 0xbb, 0x17, 0x3f, 0x21, 0xcf, 0xb8, 0x23, 0xc8, 0xe8, 0x8c, 0x3b, 0x02, 0x15, 0x2b, + 0x9c, 0x2b, 0x55, 0xdf, 0x43, 0xb8, 0xaf, 0xd3, 0x51, 0x12, 0x62, 0x85, 0x73, 0x4f, 0x6d, 0x6d, + 0x0f, 0xe1, 0xbe, 0xb7, 0x36, 0x4a, 0x02, 0xbe, 0x82, 0x32, 0xcd, 0xe6, 0xa2, 0x36, 0xe8, 0x29, + 0xed, 0xd0, 0xb1, 0x1c, 0x40, 0xe7, 0xc7, 0x34, 0x8e, 0xa7, 0x6e, 0x50, 0xad, 0xa3, 0x3b, 0xae, + 0xd9, 0x76, 0xa0, 0xc7, 0x78, 0x3d, 0xc4, 0x90, 0xdd, 0xa0, 0x38, 0x1a, 0xea, 0x06, 0xc5, 0xc1, + 0xa9, 0xbf, 0x58, 0xd1, 0x1d, 0x47, 0xef, 0x19, 0xb6, 0x3e, 0x0b, 0xd3, 0x04, 0x09, 0xbd, 0xaa, + 0x29, 0x61, 0xa9, 0xbf, 0x28, 0x43, 0x60, 0xf3, 0xdd, 0x83, 0x78, 0x6e, 0xce, 0xfd, 0xd0, 0xe6, + 0x7b, 0x08, 0x0f, 0x9b, 0xef, 0x21, 0x18, 0xf8, 0x9d, 0x1e, 0x4c, 0x23, 0xeb, 0x26, 0x3c, 0xa4, + 0xb3, 0x1e, 0xf2, 0x3b, 0xc3, 0x04, 0xe0, 0x77, 0x86, 0x81, 0x52, 0x95, 0xbc, 0xe9, 0x76, 0x63, + 0x44, 0x95, 0x82, 0x59, 0x36, 0xc2, 0x43, 0xe7, 0xef, 0xa0, 0x73, 0x54, 0xb7, 0x7b, 0x7a, 0xd7, + 0xaa, 0xce, 0x7a, 0x5a, 0x37, 0xe5, 0xf9, 0x7b, 0x24, 0x21, 0x9d, 0xbf, 0x47, 0x22, 0xe9, 0xe8, + 0xea, 0x2d, 0xb4, 0x36, 0x74, 0x9b, 0x18, 0xfe, 0xf3, 0x12, 0x6c, 0x69, 0xf8, 0x81, 0x3c, 0xba, + 0xee, 0x42, 0x4a, 0x47, 0xd7, 0x5d, 0xd0, 0xd4, 0xc9, 0x8b, 0x47, 0x6b, 0x44, 0x37, 0x94, 0x4d, + 0xd9, 0xc9, 0x1b, 0x4d, 0x49, 0x9d, 0xbc, 0xd1, 0xd8, 0xd1, 0x9f, 0x73, 0xcf, 0x36, 0x5d, 0xa2, + 0x74, 0xf6, 0xf3, 0x39, 0x40, 0x3a, 0xfa, 0x73, 0x00, 0x4d, 0x17, 0x84, 0xe1, 0x06, 0xe9, 0xca, + 0x0b, 0xc2, 0x68, 0x33, 0x84, 0x39, 0xa8, 0xc7, 0xc2, 0x83, 0xaf, 0x94, 0x9e, 0xec, 0xb1, 0x70, + 0x30, 0xf5, 0x58, 0x82, 0xf0, 0x2c, 0x29, 0x6c, 0x48, 0xb1, 0xe4, 0x39, 0x54, 0xc4, 0xd1, 0x39, + 0x54, 0x0a, 0x31, 0xba, 0x2d, 0x05, 0x34, 0x28, 0x7d, 0xd9, 0xeb, 0x10, 0x50, 0xd4, 0xeb, 0x10, + 0x43, 0x1f, 0x2a, 0x68, 0x1a, 0x4e, 0xc1, 0xb5, 0x81, 0x7f, 0x8e, 0xf3, 0x55, 0xf9, 0x33, 0x43, + 0x68, 0xfa, 0x99, 0x21, 0x90, 0x24, 0x84, 0x0f, 0x5b, 0xf6, 0x08, 0x21, 0xc1, 0xfe, 0x60, 0x08, + 0x84, 0x17, 0x10, 0x6e, 0x96, 0x17, 0x17, 0xea, 0x46, 0x43, 0x3c, 0x22, 0x73, 0xe4, 0x1d, 0xd8, + 0x28, 0xc5, 0xfc, 0x98, 0x16, 0xc3, 0x87, 0x3f, 0x40, 0x17, 0x39, 0x94, 0xc7, 0xc6, 0x36, 0x6c, + 0xeb, 0x81, 0x69, 0xf8, 0x13, 0x82, 0x0b, 0x72, 0x3f, 0x15, 0x92, 0x1b, 0x4b, 0x3b, 0x3f, 0xa6, + 0xed, 0x2a, 0x6b, 0x74, 0x59, 0x7c, 0x7e, 0x18, 0xec, 0xa7, 0x2c, 0x7f, 0x92, 0xd8, 0x55, 0xd6, + 0xe8, 0xb2, 0xb8, 0xde, 0x1f, 0xec, 0xa7, 0x2c, 0xbf, 0x11, 0x76, 0x95, 0x85, 0x1d, 0x54, 0xda, + 0x0d, 0x5f, 0xee, 0x74, 0x94, 0x2d, 0x28, 0xee, 0x85, 0xfd, 0x14, 0x57, 0x06, 0x87, 0x73, 0x2f, + 0x89, 0xb4, 0x17, 0x88, 0xc1, 0x2c, 0xca, 0xb6, 0xdc, 0x0b, 0x44, 0x1c, 0xed, 0x05, 0x52, 0xe0, + 0xcb, 0x32, 0x3a, 0xbb, 0xbc, 0xe9, 0xea, 0x9e, 0xdb, 0xe7, 0x70, 0xfd, 0x7f, 0x18, 0x3a, 0x19, + 0x8a, 0x92, 0xc0, 0xc9, 0x50, 0x14, 0x4c, 0x0d, 0x9b, 0x82, 0x9b, 0xdb, 0xbd, 0xf6, 0x9c, 0x6e, + 0x76, 0x06, 0x36, 0x51, 0xfe, 0x9c, 0x6c, 0xd8, 0x21, 0x34, 0x35, 0xec, 0x10, 0x88, 0xce, 0xaa, + 0x14, 0x54, 0x76, 0x1c, 0x73, 0xbd, 0xc7, 0x17, 0x83, 0x83, 0x8e, 0xab, 0xfc, 0x79, 0x79, 0x56, + 0x8d, 0xa3, 0xa1, 0xb3, 0x6a, 0x1c, 0x7c, 0x36, 0x8b, 0xc6, 0xe1, 0x9b, 0xdf, 0x4e, 0xe7, 0x1e, + 0x16, 0xb7, 0xd5, 0x5f, 0x4c, 0xa0, 0x89, 0xa6, 0x6b, 0x13, 0xbd, 0xcb, 0x03, 0x00, 0x2f, 0xa0, + 0x1c, 0xdb, 0xf7, 0xaf, 0x57, 0x79, 0x9c, 0xae, 0xff, 0x1b, 0x5f, 0x46, 0x53, 0x0b, 0xba, 0xe3, + 0x02, 0x7f, 0xbd, 0x67, 0x90, 0x87, 0x10, 0xf3, 0x92, 0xd2, 0x42, 0x50, 0xbc, 0xc0, 0xe8, 0x18, + 0x1f, 0x44, 0x3c, 0xa7, 0xf6, 0x8c, 0x78, 0xce, 0x7d, 0x34, 0x2c, 0x8d, 0x41, 0x5c, 0x73, 0x88, + 0x57, 0xfd, 0x4e, 0x02, 0x45, 0x4e, 0x24, 0x1e, 0x3d, 0x92, 0x6e, 0x19, 0x4d, 0x87, 0xa2, 0xec, + 0x79, 0xe0, 0xce, 0x3e, 0x83, 0xf0, 0xc3, 0xdc, 0xf8, 0x05, 0x3f, 0x60, 0x64, 0x55, 0x5b, 0xe0, + 0x31, 0x8d, 0x59, 0x78, 0x74, 0xcc, 0xee, 0x68, 0x02, 0x8a, 0x07, 0x1c, 0xfd, 0xcb, 0xa9, 0x20, + 0x84, 0x18, 0x5f, 0xe6, 0x37, 0x08, 0x84, 0x37, 0xb9, 0x43, 0xa9, 0xbe, 0xd8, 0x8d, 0x81, 0x2f, + 0xa2, 0x89, 0x7a, 0xb7, 0x4f, 0x6c, 0xc7, 0xea, 0xc1, 0x6b, 0xb9, 0xc9, 0x20, 0x94, 0xcf, 0x14, + 0xe0, 0x62, 0xd8, 0x9a, 0x48, 0x1f, 0x3c, 0xf5, 0x9b, 0xda, 0xf3, 0xa9, 0xdf, 0xab, 0x68, 0x7c, + 0xd5, 0xd1, 0x21, 0xb4, 0xc8, 0x27, 0x1d, 0x50, 0x80, 0x48, 0x0a, 0x14, 0xf8, 0x1a, 0xca, 0xc0, + 0x50, 0xec, 0x28, 0xe3, 0x40, 0x0b, 0xf1, 0x99, 0x1d, 0x80, 0x88, 0x21, 0x7b, 0x8c, 0x06, 0xdf, + 0x45, 0xc5, 0xc0, 0xcf, 0x84, 0x1c, 0xd6, 0xde, 0xbd, 0x67, 0x48, 0xbb, 0xb5, 0xe9, 0xe3, 0x58, + 0xf2, 0x6b, 0x51, 0x44, 0x84, 0x11, 0xcf, 0xa3, 0xe9, 0x00, 0x46, 0x55, 0xe4, 0xe5, 0x5b, 0x80, + 0xb4, 0x73, 0x82, 0x2c, 0xaa, 0x4e, 0x51, 0x54, 0x98, 0x0d, 0xd7, 0x83, 0xe7, 0xce, 0x73, 0x7b, + 0x1a, 0xe9, 0x59, 0x1e, 0x96, 0x9f, 0xe5, 0xcf, 0x9d, 0xcb, 0x8f, 0x9c, 0xcf, 0xa1, 0x29, 0xcd, + 0x1a, 0xb8, 0x64, 0xc5, 0xf2, 0x1e, 0x5b, 0xcc, 0x07, 0xa9, 0xf0, 0x6c, 0x8a, 0x69, 0xb9, 0x96, + 0x97, 0xb5, 0x4c, 0xcc, 0xae, 0x26, 0x73, 0xe1, 0xa5, 0xb8, 0x77, 0x1b, 0x85, 0x5c, 0x62, 0xc2, + 0xe7, 0x45, 0x85, 0xc5, 0x3c, 0xd4, 0xf8, 0x97, 0x12, 0x28, 0xb3, 0x62, 0xeb, 0xa6, 0xeb, 0xf0, + 0xa8, 0xa4, 0x27, 0x66, 0xb6, 0x6c, 0xbd, 0x4f, 0xed, 0x63, 0x06, 0xa2, 0xf3, 0xe1, 0x9d, 0x3a, + 0x67, 0xf6, 0x1e, 0xfd, 0xba, 0x7f, 0x3b, 0x2c, 0x7d, 0x61, 0x1d, 0x8e, 0xe3, 0x67, 0xda, 0x56, + 0xf7, 0xfa, 0xba, 0xad, 0x3f, 0x30, 0xd9, 0x63, 0xc7, 0x7a, 0xe7, 0xba, 0x4b, 0x3a, 0xa4, 0x6f, + 0xd9, 0xee, 0x75, 0xbd, 0x6f, 0x5e, 0x87, 0x3b, 0x59, 0xd7, 0x7d, 0x49, 0xac, 0x04, 0x6a, 0x02, + 0x2e, 0xfc, 0x25, 0x9a, 0x00, 0xc3, 0xe1, 0x25, 0x84, 0xf8, 0xa7, 0x96, 0xfb, 0x7d, 0x1e, 0xe2, + 0x24, 0xc4, 0x6f, 0x78, 0x18, 0x66, 0xd8, 0xbe, 0xc2, 0xf4, 0xbe, 0x98, 0x09, 0x5d, 0x90, 0x40, + 0xad, 0x60, 0x85, 0xd7, 0xc8, 0x53, 0xd3, 0x64, 0xa0, 0x71, 0xaf, 0xb2, 0x31, 0x4a, 0x0a, 0xb3, + 0xe1, 0x35, 0x34, 0xcd, 0xe5, 0xfa, 0x17, 0x6d, 0xa7, 0xe4, 0x51, 0x21, 0x84, 0x66, 0x46, 0xeb, + 0xd7, 0xd1, 0xe0, 0x60, 0xb1, 0x8c, 0x10, 0x07, 0x9e, 0x0d, 0x12, 0xf8, 0x40, 0xda, 0x75, 0x65, + 0x1a, 0x2c, 0x16, 0x9e, 0x7d, 0xf6, 0xf8, 0x59, 0xb6, 0x76, 0x31, 0x2f, 0xb8, 0xc4, 0x22, 0xca, + 0x60, 0x56, 0x5f, 0x8c, 0x91, 0x11, 0xb6, 0x79, 0x99, 0x05, 0x57, 0xd0, 0xa4, 0x7f, 0xc2, 0xba, + 0xba, 0x5a, 0xaf, 0x42, 0x0c, 0x15, 0x4f, 0x50, 0x1e, 0xba, 0xc3, 0x2b, 0x0a, 0x91, 0x78, 0xf0, + 0x4d, 0x94, 0x63, 0x31, 0x4a, 0x75, 0x16, 0x54, 0xe5, 0x5d, 0xa2, 0x00, 0x58, 0xcb, 0x14, 0x5b, + 0xcc, 0x27, 0xc4, 0x6f, 0xa0, 0x42, 0xf9, 0x5e, 0x93, 0x8e, 0x33, 0x65, 0x6d, 0xc9, 0x51, 0xce, + 0x06, 0x59, 0x0f, 0x20, 0xaf, 0x9f, 0xd5, 0x21, 0x2d, 0xdd, 0x96, 0x06, 0x0f, 0x91, 0x1e, 0xd7, + 0xd0, 0x94, 0xb4, 0x49, 0xe3, 0x28, 0xe7, 0x40, 0x02, 0x4b, 0xad, 0xce, 0x9e, 0x43, 0xe4, 0xc9, + 0xf9, 0xa5, 0xe4, 0x85, 0x32, 0x13, 0xb5, 0x9a, 0xaa, 0xe9, 0xe8, 0x9d, 0x8e, 0xb5, 0xa5, 0x11, + 0xd3, 0x71, 0x06, 0x04, 0x22, 0xb2, 0x72, 0xcc, 0x6a, 0x0c, 0x8e, 0x6a, 0xd9, 0x0c, 0x27, 0xa5, + 0x96, 0x94, 0xd9, 0xf0, 0x07, 0x08, 0x97, 0xe9, 0x6f, 0xf9, 0x09, 0xee, 0x27, 0x47, 0x3e, 0xc1, + 0x7d, 0x99, 0x0f, 0x1f, 0x97, 0x74, 0xc6, 0xd5, 0x1a, 0xf1, 0x14, 0x77, 0x8c, 0x54, 0xbc, 0x85, + 0xce, 0x37, 0x6c, 0xf2, 0xc0, 0xb4, 0x06, 0x8e, 0x37, 0x7d, 0x78, 0xe3, 0xd6, 0xf9, 0x3d, 0xc7, + 0xad, 0xe7, 0x78, 0xc1, 0x4f, 0xf4, 0x6d, 0xf2, 0xa0, 0xe5, 0xdd, 0x4d, 0x69, 0x89, 0xa3, 0xd8, + 0x28, 0xe9, 0x54, 0x5d, 0xe5, 0x0f, 0x07, 0x36, 0xe1, 0x70, 0x93, 0x38, 0x8a, 0x12, 0x0c, 0xb5, + 0x3a, 0x45, 0x79, 0x12, 0x4d, 0xc9, 0x74, 0xc3, 0x6c, 0x58, 0x43, 0xf8, 0x4e, 0xc5, 0xf3, 0xdf, + 0xca, 0xed, 0xb6, 0x35, 0xe8, 0xb9, 0x8e, 0xf2, 0x14, 0x08, 0x53, 0xa9, 0x5a, 0xd6, 0xdb, 0xfe, + 0x3d, 0xb5, 0x96, 0xce, 0xf1, 0xa2, 0x5a, 0xa2, 0xdc, 0xea, 0xcf, 0xa4, 0xc4, 0x31, 0xc5, 0x7f, + 0xf3, 0x2e, 0x11, 0xfb, 0xe6, 0xdd, 0x35, 0x94, 0xe7, 0xf3, 0xb1, 0x7f, 0x73, 0x1d, 0xf2, 0xf3, + 0x78, 0x97, 0xac, 0x4c, 0x43, 0x0b, 0x08, 0x20, 0x37, 0x4a, 0x90, 0xa6, 0x3a, 0x25, 0xe4, 0x46, + 0x09, 0xd2, 0x54, 0x4b, 0x49, 0xaa, 0x6f, 0xc8, 0x8f, 0xa3, 0xa7, 0x83, 0x7b, 0x58, 0x5e, 0xa6, + 0x4a, 0x76, 0x0f, 0x4b, 0x7c, 0x21, 0xfd, 0x35, 0xc8, 0xd5, 0xca, 0x4d, 0x9c, 0x7b, 0x0f, 0x30, + 0xfc, 0x89, 0x3d, 0x22, 0x94, 0xac, 0x95, 0x53, 0xd3, 0xc1, 0x40, 0x54, 0xb1, 0x97, 0x0d, 0x0a, + 0x06, 0x03, 0xa9, 0x5d, 0xb6, 0xa5, 0x87, 0x06, 0x44, 0x16, 0xbc, 0x8c, 0xce, 0x44, 0xb4, 0xca, + 0x6f, 0x4f, 0x40, 0x6e, 0xb0, 0x98, 0x26, 0x11, 0x27, 0x9b, 0x08, 0xaf, 0xfa, 0x6f, 0x12, 0x91, + 0xa1, 0x94, 0x2a, 0x86, 0x53, 0x09, 0x8d, 0x03, 0x8a, 0xf1, 0x44, 0x33, 0xc5, 0x08, 0x44, 0xf8, + 0x0a, 0xca, 0x85, 0xd2, 0xb5, 0xc2, 0xbd, 0x2a, 0x3f, 0x57, 0xab, 0x8f, 0xc5, 0x37, 0x50, 0x8e, + 0x0e, 0x6c, 0xbd, 0xd0, 0x5d, 0xa1, 0x01, 0x87, 0x89, 0x23, 0x91, 0x47, 0x47, 0x79, 0xa4, 0x8c, + 0x0a, 0x9c, 0x27, 0x66, 0x18, 0x0f, 0x32, 0x28, 0xfc, 0x9f, 0xf4, 0xae, 0xdb, 0xcd, 0x47, 0x72, + 0x95, 0xf4, 0x55, 0xea, 0x1a, 0xd3, 0xd2, 0xcb, 0x4e, 0xc4, 0xc1, 0x63, 0xbb, 0x69, 0x2d, 0x9d, + 0xd9, 0x91, 0xa3, 0xc9, 0x94, 0xe2, 0x7b, 0x1d, 0x70, 0xa7, 0x24, 0x1d, 0xf3, 0x5e, 0x47, 0xe8, + 0xf6, 0x85, 0xc4, 0x80, 0x3f, 0x87, 0xf2, 0xc1, 0xcb, 0x23, 0xe3, 0xc2, 0xe5, 0x9f, 0x98, 0x07, + 0x47, 0x02, 0x4a, 0xfc, 0x15, 0x94, 0x91, 0xd2, 0xd4, 0x5e, 0xdf, 0xc7, 0xfe, 0xfc, 0x8c, 0x78, + 0x95, 0x93, 0xb9, 0x99, 0xe1, 0x14, 0xb5, 0x5c, 0x28, 0x5e, 0x41, 0x67, 0x1b, 0x36, 0x31, 0xe0, + 0x24, 0xa8, 0xf6, 0xb0, 0x6f, 0xf3, 0x8b, 0xb6, 0xcc, 0xa4, 0x61, 0x94, 0xe9, 0x7b, 0x68, 0x3a, + 0xfe, 0x71, 0xbc, 0x20, 0x28, 0x8e, 0x9d, 0x4e, 0x3d, 0xac, 0x26, 0x77, 0xc9, 0xf6, 0x96, 0x65, + 0x1b, 0xec, 0x2e, 0x2a, 0x9f, 0x7a, 0xb8, 0xa2, 0x37, 0x39, 0x4a, 0x9c, 0x7a, 0x64, 0xa6, 0x0b, + 0xaf, 0xa2, 0xc2, 0xa3, 0x5e, 0x87, 0xfc, 0xd5, 0xe4, 0x88, 0x83, 0xdb, 0x93, 0x9b, 0x79, 0xc9, + 0xcf, 0x82, 0x37, 0x3e, 0x22, 0x0b, 0xde, 0x0f, 0x93, 0x23, 0x4e, 0xa5, 0x4f, 0x74, 0xb6, 0x2a, + 0x5f, 0x19, 0x72, 0xb6, 0xaa, 0x20, 0x51, 0x98, 0x69, 0x68, 0x22, 0x51, 0x28, 0xaf, 0x5d, 0x66, + 0xcf, 0xbc, 0x76, 0x7f, 0x3b, 0xb5, 0xdb, 0xa9, 0xfd, 0xa9, 0xee, 0x0f, 0xa2, 0xfb, 0x1b, 0xa8, + 0xe0, 0x6b, 0x96, 0xe7, 0xfa, 0x9f, 0xf4, 0x2f, 0x5f, 0x33, 0x30, 0xf0, 0x08, 0x44, 0xf8, 0x2a, + 0xab, 0x2b, 0x3c, 0xb5, 0x9e, 0x05, 0x06, 0x76, 0x0f, 0x4f, 0x77, 0x75, 0x78, 0x4c, 0x5d, 0xf3, + 0xd1, 0xea, 0x3f, 0x49, 0xc6, 0x86, 0x3e, 0x9c, 0xb6, 0xd1, 0x01, 0xda, 0x28, 0x46, 0x89, 0x2c, + 0x68, 0xe3, 0x54, 0x89, 0x07, 0x50, 0xe2, 0x0f, 0x92, 0xb1, 0x21, 0x2e, 0xa7, 0x4a, 0x3c, 0xc8, + 0x68, 0x71, 0x0d, 0xe5, 0x35, 0x6b, 0xcb, 0xa9, 0x80, 0x17, 0xcf, 0xc6, 0x0a, 0x18, 0xa8, 0x6d, + 0x6b, 0xcb, 0x69, 0x81, 0x7f, 0xae, 0x05, 0x04, 0xea, 0x9f, 0x24, 0x77, 0x09, 0x02, 0x3a, 0x55, + 0xfc, 0xc7, 0x39, 0x45, 0xfe, 0x46, 0x52, 0x0a, 0x32, 0x3a, 0xd1, 0x69, 0x5f, 0x9b, 0xed, 0x0d, + 0xd2, 0xd5, 0xc3, 0x69, 0x5f, 0x1d, 0x80, 0xf2, 0xe4, 0x73, 0x01, 0x89, 0xfa, 0x9b, 0xc9, 0x50, + 0x94, 0xd5, 0xa9, 0xee, 0xf6, 0xad, 0x3b, 0xdf, 0xea, 0x78, 0xe0, 0xd8, 0xa9, 0xe6, 0xf6, 0xab, + 0xb9, 0xaf, 0x27, 0x43, 0x31, 0x76, 0x27, 0x37, 0x91, 0xe4, 0x6f, 0x26, 0xa3, 0xf1, 0x82, 0x27, + 0xd7, 0x92, 0xae, 0xa1, 0x3c, 0xd7, 0x83, 0x3f, 0x55, 0xb0, 0x71, 0x9f, 0x01, 0x61, 0x4b, 0xd1, + 0x27, 0x50, 0xff, 0x62, 0x12, 0xc9, 0xb1, 0x8f, 0x27, 0xd4, 0x86, 0x7e, 0x23, 0x29, 0x47, 0x7d, + 0x9e, 0x5c, 0xfb, 0x99, 0x41, 0xa8, 0x39, 0x58, 0x6b, 0xf3, 0xa4, 0x01, 0xe3, 0xc2, 0x9e, 0xb4, + 0x0f, 0xd5, 0x04, 0x0a, 0xf5, 0x4f, 0x93, 0xb1, 0xa1, 0xa8, 0x27, 0x57, 0x81, 0x37, 0x61, 0x9f, + 0xb8, 0xdd, 0x0b, 0x06, 0x72, 0xd8, 0x84, 0xa4, 0xfd, 0x2f, 0x92, 0x81, 0xc8, 0x23, 0xc4, 0x9f, + 0x8f, 0x71, 0xd7, 0x20, 0x59, 0x50, 0xec, 0x0b, 0x18, 0xa2, 0xe3, 0xf6, 0x2f, 0x92, 0x7b, 0x45, + 0xee, 0x9e, 0xe4, 0x59, 0x35, 0xdb, 0xd0, 0xb7, 0xe1, 0x86, 0x29, 0x6d, 0x89, 0x09, 0x96, 0xc4, + 0xa7, 0xcf, 0x40, 0x62, 0xca, 0x2e, 0x4e, 0xa5, 0xfe, 0xda, 0x78, 0x7c, 0xd8, 0xe8, 0xc9, 0x55, + 0xa1, 0xf7, 0xce, 0xe1, 0xf8, 0x9e, 0xef, 0x1c, 0x66, 0xf6, 0xfb, 0xce, 0x61, 0x76, 0xe4, 0x3b, + 0x87, 0x17, 0x51, 0x7a, 0xd6, 0x32, 0xb6, 0x21, 0xee, 0x61, 0x82, 0x15, 0xb6, 0x66, 0x19, 0xdb, + 0x1a, 0x40, 0xf1, 0x5f, 0x49, 0xa0, 0xec, 0x3c, 0xd1, 0x0d, 0xda, 0x43, 0xf2, 0xbb, 0x85, 0x0d, + 0xbc, 0xf7, 0x78, 0xc2, 0x06, 0xce, 0x6c, 0xb0, 0xc2, 0x44, 0x43, 0xe1, 0xe5, 0xe3, 0x3b, 0x28, + 0x57, 0xd1, 0x5d, 0xb2, 0x6e, 0xd9, 0xdb, 0x10, 0x08, 0x31, 0x15, 0x5c, 0x28, 0x92, 0xec, 0xc7, + 0x23, 0x62, 0x67, 0x45, 0x6d, 0xfe, 0x4b, 0xf3, 0x99, 0xa9, 0x5a, 0x78, 0x66, 0xd9, 0x42, 0xa0, + 0x16, 0x39, 0x85, 0x6c, 0xb0, 0xad, 0x3c, 0x31, 0x62, 0x5b, 0xf9, 0xe7, 0xd3, 0x91, 0x08, 0xcf, + 0x93, 0xed, 0x4a, 0x07, 0x4f, 0x79, 0x8e, 0xef, 0xff, 0x29, 0xcf, 0xcc, 0x9e, 0x26, 0x9e, 0xdd, + 0xaf, 0x89, 0xe7, 0x46, 0x9a, 0x78, 0xd0, 0xde, 0xf9, 0x91, 0xed, 0x5d, 0xe7, 0xdd, 0x00, 0xed, + 0x9e, 0xfa, 0xed, 0xe2, 0xce, 0xb0, 0x34, 0x45, 0xfb, 0x47, 0x6c, 0xd2, 0x37, 0x10, 0xa1, 0x7e, + 0x27, 0xbd, 0x4b, 0x58, 0xf6, 0x91, 0xd8, 0x08, 0x7f, 0xcb, 0x34, 0xf5, 0x28, 0x6f, 0x99, 0xa6, + 0x1f, 0xe1, 0x2d, 0xd3, 0x98, 0xf7, 0x69, 0xc7, 0x0f, 0xf0, 0x3e, 0xad, 0x6c, 0x4d, 0x99, 0xfd, + 0x5b, 0x53, 0x76, 0x4f, 0x6b, 0xca, 0xed, 0xd7, 0x9a, 0xf2, 0xfb, 0xb0, 0x26, 0xb4, 0xa7, 0x35, + 0x15, 0x0e, 0x6f, 0x4d, 0x7d, 0x74, 0x21, 0x7a, 0x95, 0xc6, 0xb7, 0x08, 0x0d, 0xe1, 0x28, 0x96, + 0x9f, 0xad, 0xc3, 0x39, 0xe7, 0x80, 0x61, 0x5b, 0x2c, 0xc1, 0x6e, 0x38, 0x3d, 0xad, 0x16, 0xc3, + 0xad, 0xfe, 0x6a, 0x72, 0xf4, 0x0d, 0xa0, 0xe3, 0x39, 0xc4, 0xfd, 0x44, 0xac, 0x96, 0xd2, 0xf2, + 0x9d, 0x82, 0xd1, 0x5a, 0x0e, 0x89, 0x8d, 0xd3, 0xd9, 0xb7, 0x12, 0xa3, 0xae, 0x25, 0x1d, 0x4a, + 0x63, 0x9f, 0x8e, 0xc6, 0xaa, 0x40, 0x54, 0xa9, 0x23, 0x07, 0xa9, 0x84, 0xb3, 0xbd, 0xa6, 0x1e, + 0x31, 0xdb, 0xeb, 0x3f, 0x4e, 0xa0, 0xb3, 0x77, 0x07, 0x6b, 0x84, 0xc7, 0xa6, 0xf8, 0xd5, 0xf8, + 0x00, 0x21, 0x0a, 0xe6, 0x27, 0xf6, 0x09, 0x38, 0xb1, 0xff, 0x8c, 0x78, 0xa5, 0x28, 0xc4, 0x30, + 0x13, 0x50, 0xb3, 0xd3, 0xfa, 0x67, 0xbc, 0xd0, 0xa3, 0xcd, 0xc1, 0x1a, 0x89, 0xbe, 0x2c, 0x2b, + 0x48, 0xbf, 0xf0, 0x06, 0x0b, 0xea, 0x7c, 0xd4, 0x13, 0xf2, 0x5f, 0x49, 0x8e, 0xbc, 0xc5, 0x75, + 0x6c, 0x5f, 0xf9, 0xfc, 0x72, 0x6c, 0xab, 0x70, 0xfb, 0x7d, 0x7a, 0x97, 0x76, 0x08, 0x49, 0x8c, + 0x93, 0x12, 0xaf, 0xb0, 0x63, 0xfe, 0x2c, 0xea, 0xc7, 0xaa, 0xb0, 0x3f, 0x48, 0x8c, 0xbc, 0x6d, + 0x77, 0x6c, 0x1f, 0x4e, 0xfd, 0x76, 0xd2, 0xbb, 0xe4, 0x77, 0xa8, 0x4f, 0xb8, 0x86, 0xf2, 0x3c, + 0x93, 0xa1, 0x1c, 0x5a, 0xc7, 0xf7, 0x2d, 0x60, 0x1f, 0xcc, 0x27, 0xa0, 0xd3, 0xbc, 0xf0, 0x4c, + 0xb2, 0x10, 0x5a, 0x27, 0xbc, 0x8f, 0xac, 0x09, 0x24, 0x74, 0x22, 0xaf, 0x3d, 0x34, 0x5d, 0xf0, + 0x0a, 0x68, 0x5b, 0xa6, 0xd8, 0x44, 0x4e, 0x1e, 0x9a, 0x2e, 0xf3, 0x09, 0x7c, 0x34, 0x9d, 0xa4, + 0x85, 0xc7, 0x9f, 0xf8, 0x24, 0xed, 0xf0, 0x94, 0xaa, 0xfc, 0x92, 0xc3, 0x35, 0x94, 0xe7, 0xf1, + 0x6a, 0xfe, 0xfb, 0xf9, 0x50, 0x5b, 0x1e, 0xe1, 0x06, 0xb5, 0xf5, 0x09, 0xa8, 0x44, 0xe9, 0x89, + 0x6b, 0x90, 0xc8, 0xde, 0xb6, 0xd6, 0x38, 0x46, 0xdd, 0x49, 0x46, 0xef, 0x1a, 0x9e, 0xdc, 0x45, + 0xc1, 0x55, 0x39, 0x32, 0x07, 0xc2, 0xd1, 0xc0, 0xe1, 0x12, 0x2f, 0x11, 0x30, 0xbf, 0xeb, 0x06, + 0xca, 0xdd, 0x25, 0xdb, 0x2c, 0x88, 0x2c, 0x13, 0x44, 0xe2, 0x6d, 0x72, 0x98, 0xb8, 0x7d, 0xe3, + 0xd1, 0xa9, 0xbf, 0x95, 0x8c, 0xde, 0xa2, 0x3c, 0xb9, 0xca, 0xfe, 0x2c, 0xca, 0x82, 0x2a, 0xeb, + 0xde, 0xfe, 0x21, 0x28, 0x90, 0xbd, 0xe8, 0x2a, 0x85, 0x70, 0x7b, 0x64, 0xea, 0x2f, 0x65, 0xc2, + 0x57, 0x6b, 0x4f, 0xae, 0xf6, 0xbe, 0x80, 0x0a, 0x15, 0xab, 0xe7, 0x98, 0x8e, 0x4b, 0x7a, 0x6d, + 0xcf, 0x60, 0x9f, 0xa2, 0x0e, 0x4b, 0x3b, 0x00, 0x8b, 0x11, 0xe9, 0x02, 0xf5, 0xa3, 0x18, 0x2f, + 0x7e, 0x05, 0xe5, 0x41, 0xe5, 0x10, 0x74, 0x29, 0xe4, 0x29, 0x5f, 0xa3, 0xc0, 0x70, 0xc4, 0x65, + 0x40, 0x8a, 0x57, 0x51, 0xae, 0xb2, 0x61, 0x76, 0x0c, 0x9b, 0xf4, 0xf8, 0x43, 0x18, 0xcf, 0xc5, + 0x5f, 0x84, 0x9e, 0x81, 0x7f, 0x81, 0x96, 0x55, 0xa7, 0xcd, 0xd9, 0xa4, 0x98, 0x7c, 0x0e, 0xbb, + 0xf0, 0x73, 0x49, 0x84, 0x02, 0x06, 0xfc, 0x2c, 0x4a, 0x7a, 0x17, 0xbf, 0xd8, 0x99, 0xb7, 0x64, + 0x41, 0x49, 0x18, 0x8a, 0x79, 0xdf, 0x4e, 0xee, 0xd9, 0xb7, 0x57, 0x51, 0x86, 0xed, 0x11, 0x41, + 0x58, 0xaa, 0x70, 0xdb, 0x6f, 0x64, 0x85, 0x67, 0x80, 0x9e, 0x2d, 0x16, 0xc1, 0xb3, 0x93, 0x42, + 0x3c, 0x99, 0xb0, 0x0b, 0x6d, 0x34, 0x0e, 0x7f, 0xe1, 0xcb, 0x28, 0x0d, 0x5a, 0x4c, 0xc0, 0x3a, + 0x11, 0xae, 0x4f, 0x85, 0xf4, 0x07, 0x78, 0xda, 0x4c, 0x15, 0xab, 0xe7, 0xd2, 0xa2, 0xa1, 0xd6, + 0x13, 0x5c, 0x2f, 0x1c, 0x26, 0xe9, 0x85, 0xc3, 0xd4, 0x7f, 0x9e, 0x8c, 0xb9, 0xf4, 0x7d, 0x72, + 0xbb, 0xc9, 0xab, 0x08, 0xc1, 0x05, 0x3f, 0xaa, 0x4f, 0xef, 0xbe, 0x17, 0xf4, 0x12, 0x10, 0x04, + 0x66, 0x2b, 0xb9, 0xf5, 0x01, 0xb1, 0xfa, 0x3b, 0x89, 0xc8, 0x4d, 0xe1, 0x63, 0xfb, 0x2e, 0x93, + 0xf4, 0x2d, 0xc7, 0xfc, 0x8d, 0xa9, 0xef, 0x25, 0xe3, 0xee, 0x4d, 0x1f, 0x4f, 0x13, 0x0f, 0x1e, + 0xbb, 0x48, 0x1f, 0xe0, 0xb1, 0x8b, 0xf7, 0xd1, 0x74, 0xe8, 0x36, 0x31, 0x4f, 0x84, 0x7e, 0x79, + 0xf7, 0x6b, 0xc9, 0xa3, 0xaf, 0x86, 0x4a, 0x64, 0xea, 0xff, 0x4d, 0xec, 0x7e, 0x97, 0xfc, 0xc8, + 0x4d, 0x27, 0x46, 0x01, 0xa9, 0x3f, 0x1b, 0x05, 0x3c, 0x86, 0x65, 0xe6, 0xf1, 0x56, 0xc0, 0x8f, + 0xc8, 0xe0, 0xf1, 0x71, 0x2b, 0xe0, 0x97, 0x12, 0x68, 0x1f, 0x17, 0xf7, 0x8f, 0x54, 0x07, 0xea, + 0xbf, 0x4b, 0xc4, 0xde, 0xfe, 0x3f, 0x54, 0xbd, 0x5e, 0x47, 0x19, 0x76, 0x46, 0xcf, 0x6b, 0x25, + 0x24, 0x39, 0xa4, 0xd0, 0x51, 0x8f, 0x6d, 0x32, 0x2c, 0x5e, 0x40, 0x59, 0x56, 0x07, 0x83, 0xb7, + 0xc6, 0xa7, 0x76, 0x49, 0x41, 0x60, 0x8c, 0x1a, 0x1c, 0x39, 0x5a, 0xfd, 0xed, 0x44, 0x24, 0x19, + 0xc1, 0x11, 0x7e, 0xdb, 0xa3, 0x3d, 0xe2, 0xf7, 0xc7, 0xc9, 0xf8, 0x5c, 0x08, 0x47, 0xf8, 0x21, + 0x8f, 0x63, 0xbb, 0xea, 0xd1, 0xe6, 0xad, 0x15, 0x34, 0x25, 0xeb, 0x82, 0x4f, 0x5b, 0x97, 0xe2, + 0x33, 0x42, 0x8c, 0xa8, 0x45, 0x48, 0xc6, 0x8b, 0x2f, 0xa0, 0x02, 0x78, 0x6d, 0x65, 0xf6, 0x88, + 0xf6, 0x04, 0xca, 0x2d, 0xcf, 0x36, 0x6b, 0xda, 0xbb, 0xb5, 0x6a, 0x71, 0x0c, 0x23, 0x94, 0xa9, + 0xd6, 0x96, 0xea, 0xb5, 0x6a, 0x31, 0xf1, 0xe2, 0xff, 0x4a, 0x20, 0xd4, 0x9c, 0x5b, 0x69, 0x70, + 0xc2, 0x02, 0xca, 0xd6, 0x97, 0xde, 0x2d, 0x2f, 0xd4, 0x29, 0x5d, 0x0e, 0xa5, 0x97, 0x1b, 0xb5, + 0xa5, 0x62, 0x02, 0xe7, 0xd1, 0x78, 0x65, 0x61, 0xb9, 0x59, 0x2b, 0x26, 0x29, 0x50, 0xab, 0x95, + 0xab, 0xc5, 0x14, 0x05, 0xde, 0xd3, 0xea, 0x2b, 0xb5, 0x62, 0x9a, 0xfe, 0xb9, 0xd0, 0x5c, 0x29, + 0xaf, 0x14, 0xc7, 0xe9, 0x9f, 0x73, 0xf0, 0x67, 0x86, 0x0a, 0x6b, 0xd6, 0x56, 0xe0, 0x47, 0x96, + 0x56, 0x61, 0xce, 0xfb, 0x95, 0xa3, 0x28, 0x2a, 0xba, 0x5a, 0xd7, 0x8a, 0x79, 0xfa, 0x83, 0x8a, + 0xa4, 0x3f, 0x10, 0xad, 0x9c, 0x56, 0x5b, 0x5c, 0x7e, 0xb7, 0x56, 0x2c, 0x50, 0x59, 0x8b, 0x77, + 0x29, 0x78, 0x82, 0xfe, 0xa9, 0x2d, 0xd2, 0x3f, 0x27, 0xa9, 0x24, 0xad, 0x56, 0x5e, 0x68, 0x94, + 0x57, 0xe6, 0x8b, 0x53, 0xb4, 0x3e, 0x20, 0x73, 0x9a, 0x71, 0x2e, 0x95, 0x17, 0x6b, 0xc5, 0x22, + 0xa7, 0xa9, 0x2e, 0xd4, 0x97, 0xee, 0x16, 0xcf, 0x40, 0x45, 0xbe, 0xb4, 0x08, 0x3f, 0x30, 0x65, + 0x80, 0xbf, 0xce, 0xbe, 0xf8, 0xe3, 0x28, 0xc3, 0x5e, 0x28, 0xc2, 0xe7, 0xd1, 0xd9, 0xe5, 0x66, + 0x6b, 0xe5, 0x4b, 0x8d, 0x5a, 0x6b, 0x75, 0xa9, 0xd9, 0xa8, 0x55, 0xea, 0x73, 0x75, 0x50, 0xd5, + 0x19, 0x34, 0xe9, 0x21, 0x16, 0xea, 0x4b, 0xab, 0xef, 0x15, 0x13, 0x22, 0x68, 0xb1, 0x5c, 0x59, + 0x6e, 0x16, 0x93, 0xf8, 0x2c, 0x9a, 0xf6, 0x40, 0xf7, 0xea, 0x4b, 0xd5, 0xe5, 0x7b, 0xcd, 0x62, + 0xea, 0xc5, 0x3b, 0xe8, 0x89, 0xd8, 0xf3, 0x6c, 0x5a, 0x9b, 0x3b, 0xb5, 0xa5, 0x9a, 0x56, 0x5e, + 0x28, 0x8e, 0xd1, 0x8a, 0x36, 0x6b, 0x95, 0x55, 0xad, 0xbe, 0xf2, 0xa5, 0x62, 0x82, 0x7e, 0x42, + 0xb3, 0x56, 0xd6, 0x2a, 0xf3, 0xc5, 0x24, 0xce, 0xa2, 0x54, 0xf3, 0x9d, 0x85, 0x62, 0x6a, 0xb6, + 0xfa, 0xd1, 0xbf, 0xbf, 0x34, 0xf6, 0xd1, 0xf7, 0x2f, 0x25, 0x7e, 0xff, 0xfb, 0x97, 0x12, 0x7f, + 0xfc, 0xfd, 0x4b, 0x89, 0x1f, 0xbb, 0x71, 0x90, 0xd3, 0x79, 0x66, 0x46, 0x6b, 0x19, 0x38, 0xb5, + 0xba, 0xf9, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x56, 0xa7, 0xca, 0x68, 0x8e, 0xf0, 0x00, 0x00, } func (m *Metadata) Marshal() (dAtA []byte, err error) { @@ -10760,6 +11058,103 @@ func (m *SAMLIdPServiceProviderMetadata) MarshalToSizedBuffer(dAtA []byte) (int, return len(dAtA) - i, nil } +func (m *OktaResourcesUpdatedMetadata) 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 *OktaResourcesUpdatedMetadata) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OktaResourcesUpdatedMetadata) 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.Deleted != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.Deleted)) + i-- + dAtA[i] = 0x18 + } + if m.Updated != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.Updated)) + i-- + dAtA[i] = 0x10 + } + if m.Added != 0 { + i = encodeVarintEvents(dAtA, i, uint64(m.Added)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *OktaAssignmentMetadata) 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 *OktaAssignmentMetadata) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OktaAssignmentMetadata) 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 len(m.EndingStatus) > 0 { + i -= len(m.EndingStatus) + copy(dAtA[i:], m.EndingStatus) + i = encodeVarintEvents(dAtA, i, uint64(len(m.EndingStatus))) + i-- + dAtA[i] = 0x22 + } + if len(m.StartingStatus) > 0 { + i -= len(m.StartingStatus) + copy(dAtA[i:], m.StartingStatus) + i = encodeVarintEvents(dAtA, i, uint64(len(m.StartingStatus))) + i-- + dAtA[i] = 0x1a + } + if len(m.User) > 0 { + i -= len(m.User) + copy(dAtA[i:], m.User) + i = encodeVarintEvents(dAtA, i, uint64(len(m.User))) + i-- + dAtA[i] = 0x12 + } + if len(m.Source) > 0 { + i -= len(m.Source) + copy(dAtA[i:], m.Source) + i = encodeVarintEvents(dAtA, i, uint64(len(m.Source))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *SessionStart) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -20456,6 +20851,75 @@ func (m *OneOf_DeviceEvent2) MarshalToSizedBuffer(dAtA []byte) (int, error) { } return len(dAtA) - i, nil } +func (m *OneOf_OktaResourcesUpdate) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OneOf_OktaResourcesUpdate) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.OktaResourcesUpdate != nil { + { + size, err := m.OktaResourcesUpdate.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x7 + i-- + dAtA[i] = 0xd2 + } + return len(dAtA) - i, nil +} +func (m *OneOf_OktaSyncFailure) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OneOf_OktaSyncFailure) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.OktaSyncFailure != nil { + { + size, err := m.OktaSyncFailure.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x7 + i-- + dAtA[i] = 0xda + } + return len(dAtA) - i, nil +} +func (m *OneOf_OktaAssignmentResult) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OneOf_OktaAssignmentResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.OktaAssignmentResult != nil { + { + size, err := m.OktaAssignmentResult.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x7 + i-- + dAtA[i] = 0xe2 + } + return len(dAtA) - i, nil +} func (m *StreamStatus) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -20480,12 +20944,12 @@ func (m *StreamStatus) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } - n448, err448 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LastUploadTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LastUploadTime):]) - if err448 != nil { - return 0, err448 + n451, err451 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LastUploadTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LastUploadTime):]) + if err451 != nil { + return 0, err451 } - i -= n448 - i = encodeVarintEvents(dAtA, i, uint64(n448)) + i -= n451 + i = encodeVarintEvents(dAtA, i, uint64(n451)) i-- dAtA[i] = 0x1a if m.LastEventIndex != 0 { @@ -20603,12 +21067,12 @@ func (m *Identity) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0xc2 } } - n451, err451 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.PreviousIdentityExpires, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.PreviousIdentityExpires):]) - if err451 != nil { - return 0, err451 + n454, err454 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.PreviousIdentityExpires, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.PreviousIdentityExpires):]) + if err454 != nil { + return 0, err454 } - i -= n451 - i = encodeVarintEvents(dAtA, i, uint64(n451)) + i -= n454 + i = encodeVarintEvents(dAtA, i, uint64(n454)) i-- dAtA[i] = 0x1 i-- @@ -20756,12 +21220,12 @@ func (m *Identity) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x4a } - n455, err455 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Expires, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Expires):]) - if err455 != nil { - return 0, err455 + n458, err458 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Expires, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Expires):]) + if err458 != nil { + return 0, err458 } - i -= n455 - i = encodeVarintEvents(dAtA, i, uint64(n455)) + i -= n458 + i = encodeVarintEvents(dAtA, i, uint64(n458)) i-- dAtA[i] = 0x42 if len(m.KubernetesUsers) > 0 { @@ -23920,6 +24384,197 @@ func (m *SAMLIdPServiceProviderDeleteAll) MarshalToSizedBuffer(dAtA []byte) (int return len(dAtA) - i, nil } +func (m *OktaResourcesUpdate) 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 *OktaResourcesUpdate) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OktaResourcesUpdate) 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) + } + { + size, err := m.OktaResourcesUpdatedMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + { + size, err := m.ServerMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + { + size, err := m.Metadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *OktaSyncFailure) 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 *OktaSyncFailure) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OktaSyncFailure) 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) + } + { + size, err := m.Status.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + { + size, err := m.ServerMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + { + size, err := m.Metadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *OktaAssignmentResult) 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 *OktaAssignmentResult) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *OktaAssignmentResult) 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) + } + { + size, err := m.OktaAssignmentMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + { + size, err := m.Status.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + { + size, err := m.ResourceMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + { + size, err := m.ServerMetadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + { + size, err := m.Metadata.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintEvents(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func encodeVarintEvents(dAtA []byte, offset int, v uint64) int { offset -= sovEvents(v) base := offset @@ -24198,6 +24853,55 @@ func (m *SAMLIdPServiceProviderMetadata) Size() (n int) { return n } +func (m *OktaResourcesUpdatedMetadata) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Added != 0 { + n += 1 + sovEvents(uint64(m.Added)) + } + if m.Updated != 0 { + n += 1 + sovEvents(uint64(m.Updated)) + } + if m.Deleted != 0 { + n += 1 + sovEvents(uint64(m.Deleted)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *OktaAssignmentMetadata) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Source) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.User) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.StartingStatus) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.EndingStatus) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *SessionStart) Size() (n int) { if m == nil { return 0 @@ -28104,6 +28808,42 @@ func (m *OneOf_DeviceEvent2) Size() (n int) { } return n } +func (m *OneOf_OktaResourcesUpdate) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.OktaResourcesUpdate != nil { + l = m.OktaResourcesUpdate.Size() + n += 2 + l + sovEvents(uint64(l)) + } + return n +} +func (m *OneOf_OktaSyncFailure) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.OktaSyncFailure != nil { + l = m.OktaSyncFailure.Size() + n += 2 + l + sovEvents(uint64(l)) + } + return n +} +func (m *OneOf_OktaAssignmentResult) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.OktaAssignmentResult != nil { + l = m.OktaAssignmentResult.Size() + n += 2 + l + sovEvents(uint64(l)) + } + return n +} func (m *StreamStatus) Size() (n int) { if m == nil { return 0 @@ -29385,6 +30125,64 @@ func (m *SAMLIdPServiceProviderDeleteAll) Size() (n int) { return n } +func (m *OktaResourcesUpdate) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Metadata.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.ServerMetadata.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.OktaResourcesUpdatedMetadata.Size() + n += 1 + l + sovEvents(uint64(l)) + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *OktaSyncFailure) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Metadata.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.ServerMetadata.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.Status.Size() + n += 1 + l + sovEvents(uint64(l)) + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *OktaAssignmentResult) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Metadata.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.ServerMetadata.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.ResourceMetadata.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.Status.Size() + n += 1 + l + sovEvents(uint64(l)) + l = m.OktaAssignmentMetadata.Size() + n += 1 + l + sovEvents(uint64(l)) + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func sovEvents(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -31216,6 +32014,293 @@ func (m *SAMLIdPServiceProviderMetadata) Unmarshal(dAtA []byte) error { } return nil } +func (m *OktaResourcesUpdatedMetadata) 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 ErrIntOverflowEvents + } + 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: OktaResourcesUpdatedMetadata: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: OktaResourcesUpdatedMetadata: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Added", wireType) + } + m.Added = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Added |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Updated", wireType) + } + m.Updated = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Updated |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Deleted", wireType) + } + m.Deleted = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Deleted |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + 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 *OktaAssignmentMetadata) 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 ErrIntOverflowEvents + } + 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: OktaAssignmentMetadata: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: OktaAssignmentMetadata: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Source", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Source = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field User", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.User = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StartingStatus", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.StartingStatus = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field EndingStatus", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.EndingStatus = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + 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 *SessionStart) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -56196,6 +57281,111 @@ func (m *OneOf) Unmarshal(dAtA []byte) error { } m.Event = &OneOf_DeviceEvent2{v} iNdEx = postIndex + case 122: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OktaResourcesUpdate", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &OktaResourcesUpdate{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_OktaResourcesUpdate{v} + iNdEx = postIndex + case 123: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OktaSyncFailure", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &OktaSyncFailure{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_OktaSyncFailure{v} + iNdEx = postIndex + case 124: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OktaAssignmentResult", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &OktaAssignmentResult{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Event = &OneOf_OktaAssignmentResult{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) @@ -63862,13 +65052,459 @@ func (m *KubernetesClusterDelete) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + 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 *SSMRun) 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 ErrIntOverflowEvents + } + 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: SSMRun: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SSMRun: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CommandID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CommandID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field InstanceID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.InstanceID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ExitCode", wireType) + } + m.ExitCode = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ExitCode |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Status = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AccountID", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AccountID = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Region", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Region = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + 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 *CassandraPrepare) 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 ErrIntOverflowEvents + } + 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: CassandraPrepare: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CassandraPrepare: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 2: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -63895,13 +65531,13 @@ func (m *KubernetesClusterDelete) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.SessionMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 3: + case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -63928,10 +65564,74 @@ func (m *KubernetesClusterDelete) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.DatabaseMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Query", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Query = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Keyspace", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Keyspace = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) @@ -63954,7 +65654,7 @@ func (m *KubernetesClusterDelete) Unmarshal(dAtA []byte) error { } return nil } -func (m *SSMRun) Unmarshal(dAtA []byte) error { +func (m *CassandraExecute) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -63977,10 +65677,10 @@ func (m *SSMRun) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: SSMRun: wiretype end group for non-group") + return fmt.Errorf("proto: CassandraExecute: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: SSMRun: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CassandraExecute: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -64018,9 +65718,9 @@ func (m *SSMRun) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CommandID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -64030,29 +65730,30 @@ func (m *SSMRun) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - m.CommandID = string(dAtA[iNdEx:postIndex]) + if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field InstanceID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SessionMetadata", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -64062,48 +65763,30 @@ func (m *SSMRun) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - m.InstanceID = string(dAtA[iNdEx:postIndex]) + if err := m.SessionMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex case 4: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ExitCode", wireType) - } - m.ExitCode = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.ExitCode |= int64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DatabaseMetadata", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -64113,59 +65796,28 @@ func (m *SSMRun) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - m.Status = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AccountID", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - 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 ErrInvalidLengthEvents - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF + if err := m.DatabaseMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } - m.AccountID = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 7: + case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Region", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field QueryId", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -64193,7 +65845,7 @@ func (m *SSMRun) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Region = string(dAtA[iNdEx:postIndex]) + m.QueryId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -64217,7 +65869,7 @@ func (m *SSMRun) Unmarshal(dAtA []byte) error { } return nil } -func (m *CassandraPrepare) Unmarshal(dAtA []byte) error { +func (m *CassandraBatch) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -64240,10 +65892,10 @@ func (m *CassandraPrepare) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CassandraPrepare: wiretype end group for non-group") + return fmt.Errorf("proto: CassandraBatch: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CassandraPrepare: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CassandraBatch: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -64380,7 +66032,7 @@ func (m *CassandraPrepare) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Query", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Consistency", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -64408,7 +66060,7 @@ func (m *CassandraPrepare) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Query = string(dAtA[iNdEx:postIndex]) + m.Consistency = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 6: if wireType != 2 { @@ -64442,6 +66094,72 @@ func (m *CassandraPrepare) Unmarshal(dAtA []byte) error { } m.Keyspace = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BatchType", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + 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 ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.BatchType = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Children", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Children = append(m.Children, &CassandraBatch_BatchChild{}) + if err := m.Children[len(m.Children)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) @@ -64464,7 +66182,7 @@ func (m *CassandraPrepare) Unmarshal(dAtA []byte) error { } return nil } -func (m *CassandraExecute) Unmarshal(dAtA []byte) error { +func (m *CassandraBatch_BatchChild) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -64487,17 +66205,17 @@ func (m *CassandraExecute) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CassandraExecute: wiretype end group for non-group") + return fmt.Errorf("proto: BatchChild: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CassandraExecute: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: BatchChild: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -64507,30 +66225,29 @@ func (m *CassandraExecute) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.ID = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Query", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -64540,28 +66257,27 @@ func (m *CassandraExecute) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.Query = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Values", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -64588,15 +66304,67 @@ func (m *CassandraExecute) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.SessionMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Values = append(m.Values, &CassandraBatch_BatchChild_Value{}) + if err := m.Values[len(m.Values)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DatabaseMetadata", wireType) + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err } - var msglen int + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + 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 *CassandraBatch_BatchChild_Value) 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 ErrIntOverflowEvents + } + 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: Value: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Value: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -64606,30 +66374,16 @@ func (m *CassandraExecute) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.Type |= uint32(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.DatabaseMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 5: + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field QueryId", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Contents", wireType) } - var stringLen uint64 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -64639,23 +66393,25 @@ func (m *CassandraExecute) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if byteLen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - m.QueryId = string(dAtA[iNdEx:postIndex]) + m.Contents = append(m.Contents[:0], dAtA[iNdEx:postIndex]...) + if m.Contents == nil { + m.Contents = []byte{} + } iNdEx = postIndex default: iNdEx = preIndex @@ -64679,7 +66435,7 @@ func (m *CassandraExecute) Unmarshal(dAtA []byte) error { } return nil } -func (m *CassandraBatch) Unmarshal(dAtA []byte) error { +func (m *CassandraRegister) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -64702,10 +66458,10 @@ func (m *CassandraBatch) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CassandraBatch: wiretype end group for non-group") + return fmt.Errorf("proto: CassandraRegister: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CassandraBatch: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CassandraRegister: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -64842,71 +66598,7 @@ func (m *CassandraBatch) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Consistency", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - 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 ErrInvalidLengthEvents - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Consistency = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Keyspace", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - 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 ErrInvalidLengthEvents - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Keyspace = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field BatchType", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field EventTypes", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -64934,41 +66626,7 @@ func (m *CassandraBatch) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.BatchType = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 8: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Children", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Children = append(m.Children, &CassandraBatch_BatchChild{}) - if err := m.Children[len(m.Children)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.EventTypes = append(m.EventTypes, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex default: iNdEx = preIndex @@ -64992,7 +66650,7 @@ func (m *CassandraBatch) Unmarshal(dAtA []byte) error { } return nil } -func (m *CassandraBatch_BatchChild) Unmarshal(dAtA []byte) error { +func (m *LoginRuleCreate) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -65015,17 +66673,17 @@ func (m *CassandraBatch_BatchChild) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: BatchChild: wiretype end group for non-group") + return fmt.Errorf("proto: LoginRuleCreate: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: BatchChild: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: LoginRuleCreate: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -65035,29 +66693,30 @@ func (m *CassandraBatch_BatchChild) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - m.ID = string(dAtA[iNdEx:postIndex]) + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Query", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -65067,27 +66726,28 @@ func (m *CassandraBatch_BatchChild) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - m.Query = string(dAtA[iNdEx:postIndex]) + if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Values", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -65114,8 +66774,7 @@ func (m *CassandraBatch_BatchChild) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Values = append(m.Values, &CassandraBatch_BatchChild_Value{}) - if err := m.Values[len(m.Values)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -65141,7 +66800,7 @@ func (m *CassandraBatch_BatchChild) Unmarshal(dAtA []byte) error { } return nil } -func (m *CassandraBatch_BatchChild_Value) Unmarshal(dAtA []byte) error { +func (m *LoginRuleDelete) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -65164,17 +66823,17 @@ func (m *CassandraBatch_BatchChild_Value) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: Value: wiretype end group for non-group") + return fmt.Errorf("proto: LoginRuleDelete: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: Value: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: LoginRuleDelete: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) } - m.Type = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -65184,16 +66843,30 @@ func (m *CassandraBatch_BatchChild_Value) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Type |= uint32(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Contents", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowEvents @@ -65203,24 +66876,56 @@ func (m *CassandraBatch_BatchChild_Value) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthEvents } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthEvents } if postIndex > l { return io.ErrUnexpectedEOF } - m.Contents = append(m.Contents[:0], dAtA[iNdEx:postIndex]...) - if m.Contents == nil { - m.Contents = []byte{} + if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } iNdEx = postIndex default: @@ -65245,7 +66950,7 @@ func (m *CassandraBatch_BatchChild_Value) Unmarshal(dAtA []byte) error { } return nil } -func (m *CassandraRegister) Unmarshal(dAtA []byte) error { +func (m *SAMLIdPAuthAttempt) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -65268,10 +66973,10 @@ func (m *CassandraRegister) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CassandraRegister: wiretype end group for non-group") + return fmt.Errorf("proto: SAMLIdPAuthAttempt: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CassandraRegister: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: SAMLIdPAuthAttempt: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -65375,7 +67080,7 @@ func (m *CassandraRegister) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DatabaseMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -65402,162 +67107,13 @@ func (m *CassandraRegister) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.DatabaseMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field EventTypes", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - 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 ErrInvalidLengthEvents - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.EventTypes = append(m.EventTypes, string(dAtA[iNdEx:postIndex])) - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipEvents(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthEvents - } - 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 *LoginRuleCreate) 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 ErrIntOverflowEvents - } - 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: LoginRuleCreate: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: LoginRuleCreate: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SAMLIdPServiceProviderMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -65584,7 +67140,7 @@ func (m *LoginRuleCreate) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.SAMLIdPServiceProviderMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -65610,7 +67166,7 @@ func (m *LoginRuleCreate) Unmarshal(dAtA []byte) error { } return nil } -func (m *LoginRuleDelete) Unmarshal(dAtA []byte) error { +func (m *SAMLIdPServiceProviderCreate) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -65633,10 +67189,10 @@ func (m *LoginRuleDelete) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: LoginRuleDelete: wiretype end group for non-group") + return fmt.Errorf("proto: SAMLIdPServiceProviderCreate: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: LoginRuleDelete: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: SAMLIdPServiceProviderCreate: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -65707,7 +67263,7 @@ func (m *LoginRuleDelete) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SAMLIdPServiceProviderMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -65734,7 +67290,7 @@ func (m *LoginRuleDelete) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.SAMLIdPServiceProviderMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -65760,7 +67316,7 @@ func (m *LoginRuleDelete) Unmarshal(dAtA []byte) error { } return nil } -func (m *SAMLIdPAuthAttempt) Unmarshal(dAtA []byte) error { +func (m *SAMLIdPServiceProviderUpdate) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -65783,10 +67339,10 @@ func (m *SAMLIdPAuthAttempt) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: SAMLIdPAuthAttempt: wiretype end group for non-group") + return fmt.Errorf("proto: SAMLIdPServiceProviderUpdate: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: SAMLIdPAuthAttempt: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: SAMLIdPServiceProviderUpdate: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -65824,7 +67380,7 @@ func (m *SAMLIdPAuthAttempt) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field UserMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -65851,13 +67407,13 @@ func (m *SAMLIdPAuthAttempt) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.UserMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SessionMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SAMLIdPServiceProviderMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -65884,13 +67440,64 @@ func (m *SAMLIdPAuthAttempt) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.SessionMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.SAMLIdPServiceProviderMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 4: + default: + iNdEx = preIndex + skippy, err := skipEvents(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthEvents + } + 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 *SAMLIdPServiceProviderDelete) 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 ErrIntOverflowEvents + } + 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: SAMLIdPServiceProviderDelete: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SAMLIdPServiceProviderDelete: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -65917,11 +67524,44 @@ func (m *SAMLIdPAuthAttempt) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Metadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 5: + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SAMLIdPServiceProviderMetadata", wireType) } @@ -65976,7 +67616,7 @@ func (m *SAMLIdPAuthAttempt) Unmarshal(dAtA []byte) error { } return nil } -func (m *SAMLIdPServiceProviderCreate) Unmarshal(dAtA []byte) error { +func (m *SAMLIdPServiceProviderDeleteAll) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -65999,10 +67639,10 @@ func (m *SAMLIdPServiceProviderCreate) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: SAMLIdPServiceProviderCreate: wiretype end group for non-group") + return fmt.Errorf("proto: SAMLIdPServiceProviderDeleteAll: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: SAMLIdPServiceProviderCreate: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: SAMLIdPServiceProviderDeleteAll: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -66071,39 +67711,6 @@ func (m *SAMLIdPServiceProviderCreate) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SAMLIdPServiceProviderMetadata", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvents - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvents - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvents - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.SAMLIdPServiceProviderMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) @@ -66126,7 +67733,7 @@ func (m *SAMLIdPServiceProviderCreate) Unmarshal(dAtA []byte) error { } return nil } -func (m *SAMLIdPServiceProviderUpdate) Unmarshal(dAtA []byte) error { +func (m *OktaResourcesUpdate) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -66149,10 +67756,10 @@ func (m *SAMLIdPServiceProviderUpdate) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: SAMLIdPServiceProviderUpdate: wiretype end group for non-group") + return fmt.Errorf("proto: OktaResourcesUpdate: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: SAMLIdPServiceProviderUpdate: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: OktaResourcesUpdate: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -66190,7 +67797,7 @@ func (m *SAMLIdPServiceProviderUpdate) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ServerMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -66217,13 +67824,13 @@ func (m *SAMLIdPServiceProviderUpdate) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.ServerMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SAMLIdPServiceProviderMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field OktaResourcesUpdatedMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -66250,7 +67857,7 @@ func (m *SAMLIdPServiceProviderUpdate) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.SAMLIdPServiceProviderMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.OktaResourcesUpdatedMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -66276,7 +67883,7 @@ func (m *SAMLIdPServiceProviderUpdate) Unmarshal(dAtA []byte) error { } return nil } -func (m *SAMLIdPServiceProviderDelete) Unmarshal(dAtA []byte) error { +func (m *OktaSyncFailure) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -66299,10 +67906,10 @@ func (m *SAMLIdPServiceProviderDelete) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: SAMLIdPServiceProviderDelete: wiretype end group for non-group") + return fmt.Errorf("proto: OktaSyncFailure: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: SAMLIdPServiceProviderDelete: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: OktaSyncFailure: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -66340,7 +67947,7 @@ func (m *SAMLIdPServiceProviderDelete) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ServerMetadata", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -66367,13 +67974,13 @@ func (m *SAMLIdPServiceProviderDelete) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.ResourceMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.ServerMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field SAMLIdPServiceProviderMetadata", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -66400,7 +68007,7 @@ func (m *SAMLIdPServiceProviderDelete) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.SAMLIdPServiceProviderMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -66426,7 +68033,7 @@ func (m *SAMLIdPServiceProviderDelete) Unmarshal(dAtA []byte) error { } return nil } -func (m *SAMLIdPServiceProviderDeleteAll) Unmarshal(dAtA []byte) error { +func (m *OktaAssignmentResult) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -66449,10 +68056,10 @@ func (m *SAMLIdPServiceProviderDeleteAll) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: SAMLIdPServiceProviderDeleteAll: wiretype end group for non-group") + return fmt.Errorf("proto: OktaAssignmentResult: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: SAMLIdPServiceProviderDeleteAll: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: OktaAssignmentResult: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -66489,6 +68096,39 @@ func (m *SAMLIdPServiceProviderDeleteAll) Unmarshal(dAtA []byte) error { } iNdEx = postIndex case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ServerMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.ServerMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ResourceMetadata", wireType) } @@ -66521,6 +68161,72 @@ func (m *SAMLIdPServiceProviderDeleteAll) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Status.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OktaAssignmentMetadata", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.OktaAssignmentMetadata.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipEvents(dAtA[iNdEx:]) diff --git a/api/types/events/oneof.go b/api/types/events/oneof.go index 1d8feaaee99d9..b995ba6a2997d 100644 --- a/api/types/events/oneof.go +++ b/api/types/events/oneof.go @@ -515,6 +515,18 @@ func ToOneOf(in AuditEvent) (*OneOf, error) { out.Event = &OneOf_SAMLIdPServiceProviderDeleteAll{ SAMLIdPServiceProviderDeleteAll: e, } + case *OktaResourcesUpdate: + out.Event = &OneOf_OktaResourcesUpdate{ + OktaResourcesUpdate: e, + } + case *OktaSyncFailure: + out.Event = &OneOf_OktaSyncFailure{ + OktaSyncFailure: e, + } + case *OktaAssignmentResult: + out.Event = &OneOf_OktaAssignmentResult{ + OktaAssignmentResult: e, + } default: log.Errorf("Attempted to convert dynamic event of unknown type \"%v\" into protobuf event.", in.GetType()) unknown := &Unknown{} diff --git a/lib/events/api.go b/lib/events/api.go index f8e56bc7c2250..703588cb60dd7 100644 --- a/lib/events/api.go +++ b/lib/events/api.go @@ -636,6 +636,21 @@ const ( // SAMLIdPServiceProviderDeleteAllEvent is emitted when all service providers have been deleted. SAMLIdPServiceProviderDeleteAllEvent = "saml.idp.service.provider.delete_all" + // OktaGroupsUpdate event is emitted when the groups synced from Okta have been updated. + OktaGroupsUpdateEvent = "okta.groups.update" + + // OktaApplicationsUpdateEvent is emitted when the applications synced from Okta have been updated. + OktaApplicationsUpdateEvent = "okta.applications.update" + + // OktaSyncFailureEvent is emitted when the Okta synchronization fails. + OktaSyncFailureEvent = "okta.sync.failure" + + // OktaAssignmentProcessEvent is emitted when an assignment is processed. + OktaAssignmentProcessEvent = "okta.assignment.process" + + // OktaAssignmentCleanupEvent is emitted when an assignment is cleaned up. + OktaAssignmentCleanupEvent = "okta.assignment.cleanup" + // UnknownEvent is any event received that isn't recognized as any other event type. UnknownEvent = apievents.UnknownEvent ) diff --git a/lib/events/codes.go b/lib/events/codes.go index 3792994f26ba8..7ecb9e0a14ac5 100644 --- a/lib/events/codes.go +++ b/lib/events/codes.go @@ -433,6 +433,27 @@ const ( // SAMLIdPServiceProviderDeleteAllFailureCode is the SAML IdP service provider delete all failure code. SAMLIdPServiceProviderDeleteAllFailureCode = "TSI004W" + // OktaGroupsUpdateCode is the Okta groups updated code. + OktaGroupsUpdateCode = "TOK001I" + + // OktaApplicationsUpdateCode is the Okta applications updated code. + OktaApplicationsUpdateCode = "TOK002I" + + // OktaSyncFailureCode is the Okta synchronization failure code. + OktaSyncFailureCode = "TOK003E" + + // OktaAssignmentProcessSuccessCode is the Okta assignment process success code. + OktaAssignmentProcessSuccessCode = "TOK004I" + + // OktaAssignmentProcessFailureCode is the Okta assignment process failure code. + OktaAssignmentProcessFailureCode = "TOK004E" + + // OktaAssignmentCleanupSuccessCode is the Okta assignment cleanup success code. + OktaAssignmentCleanupSuccessCode = "TOK005I" + + // OktaAssignmentCleanupFailureCode is the Okta assignment cleanup failure code. + OktaAssignmentCleanupFailureCode = "TOK005E" + // UnknownCode is used when an event of unknown type is encountered. UnknownCode = apievents.UnknownCode ) diff --git a/lib/events/dynamic.go b/lib/events/dynamic.go index 0a7c00d663dcb..c506e9b204d22 100644 --- a/lib/events/dynamic.go +++ b/lib/events/dynamic.go @@ -295,6 +295,16 @@ func FromEventFields(fields EventFields) (events.AuditEvent, error) { e = &events.SAMLIdPServiceProviderDelete{} case SAMLIdPServiceProviderDeleteAllEvent: e = &events.SAMLIdPServiceProviderDeleteAll{} + case OktaGroupsUpdateEvent: + e = &events.OktaResourcesUpdate{} + case OktaApplicationsUpdateEvent: + e = &events.OktaResourcesUpdate{} + case OktaSyncFailureEvent: + e = &events.OktaSyncFailure{} + case OktaAssignmentProcessEvent: + e = &events.OktaAssignmentResult{} + case OktaAssignmentCleanupEvent: + e = &events.OktaAssignmentResult{} case UnknownEvent: e = &events.Unknown{} diff --git a/web/packages/teleport/src/Audit/EventList/EventTypeCell.tsx b/web/packages/teleport/src/Audit/EventList/EventTypeCell.tsx index b6093abcde2cb..4f438ac8ea9e1 100644 --- a/web/packages/teleport/src/Audit/EventList/EventTypeCell.tsx +++ b/web/packages/teleport/src/Audit/EventList/EventTypeCell.tsx @@ -209,6 +209,13 @@ const EventIconMap: Record = { [eventCodes.SAML_IDP_SERVICE_PROVIDER_DELETE_FAILURE]: Icons.Info, [eventCodes.SAML_IDP_SERVICE_PROVIDER_DELETE_ALL]: Icons.Info, [eventCodes.SAML_IDP_SERVICE_PROVIDER_DELETE_ALL_FAILURE]: Icons.Info, + [eventCodes.OKTA_GROUPS_UPDATE]: Icons.Info, + [eventCodes.OKTA_APPLICATIONS_UPDATE]: Icons.Info, + [eventCodes.OKTA_SYNC_FAILURE]: Icons.Warning, + [eventCodes.OKTA_ASSIGNMENT_PROCESS]: Icons.Info, + [eventCodes.OKTA_ASSIGNMENT_PROCESS_FAILURE]: Icons.Warning, + [eventCodes.OKTA_ASSIGNMENT_CLEANUP]: Icons.Info, + [eventCodes.OKTA_ASSIGNMENT_CLEANUP_FAILURE]: Icons.Warning, [eventCodes.UNKNOWN]: Icons.Question, }; diff --git a/web/packages/teleport/src/Audit/__snapshots__/Audit.story.test.tsx.snap b/web/packages/teleport/src/Audit/__snapshots__/Audit.story.test.tsx.snap index bffc07a7a5a8c..d39bd45713f25 100644 --- a/web/packages/teleport/src/Audit/__snapshots__/Audit.story.test.tsx.snap +++ b/web/packages/teleport/src/Audit/__snapshots__/Audit.story.test.tsx.snap @@ -359,12 +359,12 @@ exports[`list of all events 1`] = ` - - 184 + 192 of - 184 + 192 + + + + +
+ + Okta assignment has been cleaned up +
+ + + Okta assignment [assignment-id], source [source], user [mike] has been successfully cleaned up + + + 2023-05-08T19:21:36.144Z + + + + + + + +
+ + Okta assignment failed to process +
+ + + Okta assignment [assignment-id], source [source], user [mike] processing has failed + + + 2023-05-08T19:21:36.144Z + + + + + + + +
+ + Okta assignment has been processed +
+ + + Okta assignment [assignment-id], source [source], user [mike] has been successfully processed + + + 2023-05-08T19:21:36.144Z + + + + + + + +
+ + Okta synchronization failed +
+ + + Okta synchronization failed + + + 2023-05-08T19:21:36.144Z + + + + + + + +
+ + Okta applications have been updated +
+ + + [5] added, [1] updated, [7] deleted + + + 2023-05-08T19:21:36.144Z + + + + + + + +
+ + Okta groups have been updated +
+ + + [5] added, [1] updated, [7] deleted + + + 2023-05-08T19:21:36.144Z + + + + + + + +
+ + SAML IdP service provider delete failed +
+ + + User [mike] failed to delete all service providers + + + 2023-01-25T19:21:36.144Z + + + + + `User [${updated_by}] failed to delete all service providers`, }, + [eventCodes.OKTA_GROUPS_UPDATE]: { + type: 'okta.groups.update', + desc: 'Okta groups have been updated', + format: ({ added, updated, deleted }) => + `[${added}] added, [${updated}] updated, [${deleted}] deleted`, + }, + [eventCodes.OKTA_APPLICATIONS_UPDATE]: { + type: 'okta.applications.update', + desc: 'Okta applications have been updated', + format: ({ added, updated, deleted }) => + `[${added}] added, [${updated}] updated, [${deleted}] deleted`, + }, + [eventCodes.OKTA_SYNC_FAILURE]: { + type: 'okta.sync.failure', + desc: 'Okta synchronization failed', + format: () => `Okta synchronization failed`, + }, + [eventCodes.OKTA_ASSIGNMENT_PROCESS]: { + type: 'okta.assignment.process', + desc: 'Okta assignment has been processed', + format: ({ name, source, user }) => + `Okta assignment [${name}], source [${source}], user [${user}] has been successfully processed`, + }, + [eventCodes.OKTA_ASSIGNMENT_PROCESS_FAILURE]: { + type: 'okta.assignment.process', + desc: 'Okta assignment failed to process', + format: ({ name, source, user }) => + `Okta assignment [${name}], source [${source}], user [${user}] processing has failed`, + }, + [eventCodes.OKTA_ASSIGNMENT_CLEANUP]: { + type: 'okta.assignment.cleanup', + desc: 'Okta assignment has been cleaned up', + format: ({ name, source, user }) => + `Okta assignment [${name}], source [${source}], user [${user}] has been successfully cleaned up`, + }, + [eventCodes.OKTA_ASSIGNMENT_CLEANUP_FAILURE]: { + type: 'okta.assignment.cleanup', + desc: 'Okta assignment failed to clean up', + format: ({ name, source, user }) => + `Okta assignment [${name}], source [${source}], user [${user}] cleanup has failed`, + }, [eventCodes.UNKNOWN]: { type: 'unknown', desc: 'Unknown Event', diff --git a/web/packages/teleport/src/services/audit/types.ts b/web/packages/teleport/src/services/audit/types.ts index 5f742cead464f..eb6c8be02b15b 100644 --- a/web/packages/teleport/src/services/audit/types.ts +++ b/web/packages/teleport/src/services/audit/types.ts @@ -227,6 +227,13 @@ export const eventCodes = { SAML_IDP_SERVICE_PROVIDER_DELETE_FAILURE: 'TSI003W', SAML_IDP_SERVICE_PROVIDER_DELETE_ALL: 'TSI004I', SAML_IDP_SERVICE_PROVIDER_DELETE_ALL_FAILURE: 'TSI004W', + OKTA_GROUPS_UPDATE: 'TOK001I', + OKTA_APPLICATIONS_UPDATE: 'TOK002I', + OKTA_SYNC_FAILURE: 'TOK003E', + OKTA_ASSIGNMENT_PROCESS: 'TOK004I', + OKTA_ASSIGNMENT_PROCESS_FAILURE: 'TOK004E', + OKTA_ASSIGNMENT_CLEANUP: 'TOK005I', + OKTA_ASSIGNMENT_CLEANUP_FAILURE: 'TOK005E', } as const; /** @@ -1202,6 +1209,51 @@ export type RawEvents = { updated_by: string; } >; + [eventCodes.OKTA_GROUPS_UPDATE]: RawEvent< + typeof eventCodes.OKTA_GROUPS_UPDATE, + { + added: number; + updated: number; + deleted: number; + } + >; + [eventCodes.OKTA_APPLICATIONS_UPDATE]: RawEvent< + typeof eventCodes.OKTA_APPLICATIONS_UPDATE, + { + added: number; + updated: number; + deleted: number; + } + >; + [eventCodes.OKTA_SYNC_FAILURE]: RawEvent; + [eventCodes.OKTA_ASSIGNMENT_PROCESS]: RawEvent< + typeof eventCodes.OKTA_ASSIGNMENT_PROCESS, + { + name: string; + source: string; + } + >; + [eventCodes.OKTA_ASSIGNMENT_PROCESS_FAILURE]: RawEvent< + typeof eventCodes.OKTA_ASSIGNMENT_PROCESS_FAILURE, + { + name: string; + source: string; + } + >; + [eventCodes.OKTA_ASSIGNMENT_CLEANUP]: RawEvent< + typeof eventCodes.OKTA_ASSIGNMENT_PROCESS, + { + name: string; + source: string; + } + >; + [eventCodes.OKTA_ASSIGNMENT_CLEANUP_FAILURE]: RawEvent< + typeof eventCodes.OKTA_ASSIGNMENT_CLEANUP_FAILURE, + { + name: string; + source: string; + } + >; }; /**