From f1295043ebcf7e53c4e3cac6389054c98c1b0b1a Mon Sep 17 00:00:00 2001 From: Mike Brown Date: Fri, 6 Nov 2020 12:52:37 -0600 Subject: [PATCH] vendor commit for cri api changes Signed-off-by: Mike Brown --- go.mod | 2 +- .../pkg/apis/runtime/v1alpha2/api.pb.go | 1440 +++++++++++------ .../pkg/apis/runtime/v1alpha2/api.proto | 62 +- 3 files changed, 1026 insertions(+), 478 deletions(-) diff --git a/go.mod b/go.mod index e1d391bf5..63ac9fe77 100644 --- a/go.mod +++ b/go.mod @@ -61,7 +61,7 @@ require ( k8s.io/apiserver v0.19.4 k8s.io/client-go v0.19.4 k8s.io/component-base v0.19.4 - k8s.io/cri-api v0.19.4 + k8s.io/cri-api 3990421b69a024ba452db5f6e4ae7d45d93a019a k8s.io/klog/v2 v2.2.0 k8s.io/utils v0.0.0-20200729134348-d5654de09c73 ) diff --git a/vendor/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.pb.go b/vendor/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.pb.go index 99880d3e0..37acf6c43 100644 --- a/vendor/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.pb.go +++ b/vendor/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.pb.go @@ -211,6 +211,38 @@ func (ContainerState) EnumDescriptor() ([]byte, []int) { return fileDescriptor_00212fb1f9d3bf1c, []int{4} } +// Available profile types. +type SecurityProfile_ProfileType int32 + +const ( + // The container runtime default profile should be used. + SecurityProfile_RuntimeDefault SecurityProfile_ProfileType = 0 + // Disable the feature for the sandbox or the container. + SecurityProfile_Unconfined SecurityProfile_ProfileType = 1 + // A pre-defined profile on the node should be used. + SecurityProfile_Localhost SecurityProfile_ProfileType = 2 +) + +var SecurityProfile_ProfileType_name = map[int32]string{ + 0: "RuntimeDefault", + 1: "Unconfined", + 2: "Localhost", +} + +var SecurityProfile_ProfileType_value = map[string]int32{ + "RuntimeDefault": 0, + "Unconfined": 1, + "Localhost": 2, +} + +func (x SecurityProfile_ProfileType) String() string { + return proto.EnumName(SecurityProfile_ProfileType_name, int32(x)) +} + +func (SecurityProfile_ProfileType) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{8, 0} +} + type VersionRequest struct { // Version of the kubelet runtime API. Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"` @@ -714,13 +746,17 @@ type LinuxSandboxSecurityContext struct { // This allows a sandbox to take additional security precautions if no // privileged containers are expected to be run. Privileged bool `protobuf:"varint,6,opt,name=privileged,proto3" json:"privileged,omitempty"` + // Seccomp profile for the sandbox. + Seccomp *SecurityProfile `protobuf:"bytes,9,opt,name=seccomp,proto3" json:"seccomp,omitempty"` + // AppArmor profile for the sandbox. + Apparmor *SecurityProfile `protobuf:"bytes,10,opt,name=apparmor,proto3" json:"apparmor,omitempty"` // Seccomp profile for the sandbox, candidate values are: // * runtime/default: the default profile for the container runtime // * unconfined: unconfined profile, ie, no seccomp sandboxing // * localhost/: the profile installed on the node. // is the full path of the profile. // Default: "", which is identical with unconfined. - SeccompProfilePath string `protobuf:"bytes,7,opt,name=seccomp_profile_path,json=seccompProfilePath,proto3" json:"seccomp_profile_path,omitempty"` + SeccompProfilePath string `protobuf:"bytes,7,opt,name=seccomp_profile_path,json=seccompProfilePath,proto3" json:"seccomp_profile_path,omitempty"` // Deprecated: Do not use. XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_sizecache int32 `json:"-"` } @@ -806,6 +842,21 @@ func (m *LinuxSandboxSecurityContext) GetPrivileged() bool { return false } +func (m *LinuxSandboxSecurityContext) GetSeccomp() *SecurityProfile { + if m != nil { + return m.Seccomp + } + return nil +} + +func (m *LinuxSandboxSecurityContext) GetApparmor() *SecurityProfile { + if m != nil { + return m.Apparmor + } + return nil +} + +// Deprecated: Do not use. func (m *LinuxSandboxSecurityContext) GetSeccompProfilePath() string { if m != nil { return m.SeccompProfilePath @@ -813,6 +864,65 @@ func (m *LinuxSandboxSecurityContext) GetSeccompProfilePath() string { return "" } +// A security profile which can be used for sandboxes and containers. +type SecurityProfile struct { + // Indicator which `ProfileType` should be applied. + ProfileType SecurityProfile_ProfileType `protobuf:"varint,1,opt,name=profile_type,json=profileType,proto3,enum=runtime.v1alpha2.SecurityProfile_ProfileType" json:"profile_type,omitempty"` + // Indicates that a pre-defined profile on the node should be used. + // Must only be set if `ProfileType` is `Localhost`. + // For seccomp, it must be an absolute path to the seccomp profile. + // For AppArmor, this field is the AppArmor `/` + LocalhostRef string `protobuf:"bytes,2,opt,name=localhost_ref,json=localhostRef,proto3" json:"localhost_ref,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SecurityProfile) Reset() { *m = SecurityProfile{} } +func (*SecurityProfile) ProtoMessage() {} +func (*SecurityProfile) Descriptor() ([]byte, []int) { + return fileDescriptor_00212fb1f9d3bf1c, []int{8} +} +func (m *SecurityProfile) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SecurityProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SecurityProfile.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 *SecurityProfile) XXX_Merge(src proto.Message) { + xxx_messageInfo_SecurityProfile.Merge(m, src) +} +func (m *SecurityProfile) XXX_Size() int { + return m.Size() +} +func (m *SecurityProfile) XXX_DiscardUnknown() { + xxx_messageInfo_SecurityProfile.DiscardUnknown(m) +} + +var xxx_messageInfo_SecurityProfile proto.InternalMessageInfo + +func (m *SecurityProfile) GetProfileType() SecurityProfile_ProfileType { + if m != nil { + return m.ProfileType + } + return SecurityProfile_RuntimeDefault +} + +func (m *SecurityProfile) GetLocalhostRef() string { + if m != nil { + return m.LocalhostRef + } + return "" +} + // LinuxPodSandboxConfig holds platform-specific configurations for Linux // host platforms and Linux-based containers. type LinuxPodSandboxConfig struct { @@ -831,7 +941,7 @@ type LinuxPodSandboxConfig struct { func (m *LinuxPodSandboxConfig) Reset() { *m = LinuxPodSandboxConfig{} } func (*LinuxPodSandboxConfig) ProtoMessage() {} func (*LinuxPodSandboxConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{8} + return fileDescriptor_00212fb1f9d3bf1c, []int{9} } func (m *LinuxPodSandboxConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -901,7 +1011,7 @@ type PodSandboxMetadata struct { func (m *PodSandboxMetadata) Reset() { *m = PodSandboxMetadata{} } func (*PodSandboxMetadata) ProtoMessage() {} func (*PodSandboxMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{9} + return fileDescriptor_00212fb1f9d3bf1c, []int{10} } func (m *PodSandboxMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1017,7 +1127,7 @@ type PodSandboxConfig struct { func (m *PodSandboxConfig) Reset() { *m = PodSandboxConfig{} } func (*PodSandboxConfig) ProtoMessage() {} func (*PodSandboxConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{10} + return fileDescriptor_00212fb1f9d3bf1c, []int{11} } func (m *PodSandboxConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1118,7 +1228,7 @@ type RunPodSandboxRequest struct { func (m *RunPodSandboxRequest) Reset() { *m = RunPodSandboxRequest{} } func (*RunPodSandboxRequest) ProtoMessage() {} func (*RunPodSandboxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{11} + return fileDescriptor_00212fb1f9d3bf1c, []int{12} } func (m *RunPodSandboxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1171,7 +1281,7 @@ type RunPodSandboxResponse struct { func (m *RunPodSandboxResponse) Reset() { *m = RunPodSandboxResponse{} } func (*RunPodSandboxResponse) ProtoMessage() {} func (*RunPodSandboxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{12} + return fileDescriptor_00212fb1f9d3bf1c, []int{13} } func (m *RunPodSandboxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1217,7 +1327,7 @@ type StopPodSandboxRequest struct { func (m *StopPodSandboxRequest) Reset() { *m = StopPodSandboxRequest{} } func (*StopPodSandboxRequest) ProtoMessage() {} func (*StopPodSandboxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{13} + return fileDescriptor_00212fb1f9d3bf1c, []int{14} } func (m *StopPodSandboxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1261,7 +1371,7 @@ type StopPodSandboxResponse struct { func (m *StopPodSandboxResponse) Reset() { *m = StopPodSandboxResponse{} } func (*StopPodSandboxResponse) ProtoMessage() {} func (*StopPodSandboxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{14} + return fileDescriptor_00212fb1f9d3bf1c, []int{15} } func (m *StopPodSandboxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1300,7 +1410,7 @@ type RemovePodSandboxRequest struct { func (m *RemovePodSandboxRequest) Reset() { *m = RemovePodSandboxRequest{} } func (*RemovePodSandboxRequest) ProtoMessage() {} func (*RemovePodSandboxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{15} + return fileDescriptor_00212fb1f9d3bf1c, []int{16} } func (m *RemovePodSandboxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1344,7 +1454,7 @@ type RemovePodSandboxResponse struct { func (m *RemovePodSandboxResponse) Reset() { *m = RemovePodSandboxResponse{} } func (*RemovePodSandboxResponse) ProtoMessage() {} func (*RemovePodSandboxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{16} + return fileDescriptor_00212fb1f9d3bf1c, []int{17} } func (m *RemovePodSandboxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1385,7 +1495,7 @@ type PodSandboxStatusRequest struct { func (m *PodSandboxStatusRequest) Reset() { *m = PodSandboxStatusRequest{} } func (*PodSandboxStatusRequest) ProtoMessage() {} func (*PodSandboxStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{17} + return fileDescriptor_00212fb1f9d3bf1c, []int{18} } func (m *PodSandboxStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1439,7 +1549,7 @@ type PodIP struct { func (m *PodIP) Reset() { *m = PodIP{} } func (*PodIP) ProtoMessage() {} func (*PodIP) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{18} + return fileDescriptor_00212fb1f9d3bf1c, []int{19} } func (m *PodIP) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1488,7 +1598,7 @@ type PodSandboxNetworkStatus struct { func (m *PodSandboxNetworkStatus) Reset() { *m = PodSandboxNetworkStatus{} } func (*PodSandboxNetworkStatus) ProtoMessage() {} func (*PodSandboxNetworkStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{19} + return fileDescriptor_00212fb1f9d3bf1c, []int{20} } func (m *PodSandboxNetworkStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1542,7 +1652,7 @@ type Namespace struct { func (m *Namespace) Reset() { *m = Namespace{} } func (*Namespace) ProtoMessage() {} func (*Namespace) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{20} + return fileDescriptor_00212fb1f9d3bf1c, []int{21} } func (m *Namespace) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1589,7 +1699,7 @@ type LinuxPodSandboxStatus struct { func (m *LinuxPodSandboxStatus) Reset() { *m = LinuxPodSandboxStatus{} } func (*LinuxPodSandboxStatus) ProtoMessage() {} func (*LinuxPodSandboxStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{21} + return fileDescriptor_00212fb1f9d3bf1c, []int{22} } func (m *LinuxPodSandboxStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1655,7 +1765,7 @@ type PodSandboxStatus struct { func (m *PodSandboxStatus) Reset() { *m = PodSandboxStatus{} } func (*PodSandboxStatus) ProtoMessage() {} func (*PodSandboxStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{22} + return fileDescriptor_00212fb1f9d3bf1c, []int{23} } func (m *PodSandboxStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1762,7 +1872,7 @@ type PodSandboxStatusResponse struct { func (m *PodSandboxStatusResponse) Reset() { *m = PodSandboxStatusResponse{} } func (*PodSandboxStatusResponse) ProtoMessage() {} func (*PodSandboxStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{23} + return fileDescriptor_00212fb1f9d3bf1c, []int{24} } func (m *PodSandboxStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1816,7 +1926,7 @@ type PodSandboxStateValue struct { func (m *PodSandboxStateValue) Reset() { *m = PodSandboxStateValue{} } func (*PodSandboxStateValue) ProtoMessage() {} func (*PodSandboxStateValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{24} + return fileDescriptor_00212fb1f9d3bf1c, []int{25} } func (m *PodSandboxStateValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1870,7 +1980,7 @@ type PodSandboxFilter struct { func (m *PodSandboxFilter) Reset() { *m = PodSandboxFilter{} } func (*PodSandboxFilter) ProtoMessage() {} func (*PodSandboxFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{25} + return fileDescriptor_00212fb1f9d3bf1c, []int{26} } func (m *PodSandboxFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1930,7 +2040,7 @@ type ListPodSandboxRequest struct { func (m *ListPodSandboxRequest) Reset() { *m = ListPodSandboxRequest{} } func (*ListPodSandboxRequest) ProtoMessage() {} func (*ListPodSandboxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{26} + return fileDescriptor_00212fb1f9d3bf1c, []int{27} } func (m *ListPodSandboxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1992,7 +2102,7 @@ type PodSandbox struct { func (m *PodSandbox) Reset() { *m = PodSandbox{} } func (*PodSandbox) ProtoMessage() {} func (*PodSandbox) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{27} + return fileDescriptor_00212fb1f9d3bf1c, []int{28} } func (m *PodSandbox) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2080,7 +2190,7 @@ type ListPodSandboxResponse struct { func (m *ListPodSandboxResponse) Reset() { *m = ListPodSandboxResponse{} } func (*ListPodSandboxResponse) ProtoMessage() {} func (*ListPodSandboxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{28} + return fileDescriptor_00212fb1f9d3bf1c, []int{29} } func (m *ListPodSandboxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2131,7 +2241,7 @@ type ImageSpec struct { func (m *ImageSpec) Reset() { *m = ImageSpec{} } func (*ImageSpec) ProtoMessage() {} func (*ImageSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{29} + return fileDescriptor_00212fb1f9d3bf1c, []int{30} } func (m *ImageSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2184,7 +2294,7 @@ type KeyValue struct { func (m *KeyValue) Reset() { *m = KeyValue{} } func (*KeyValue) ProtoMessage() {} func (*KeyValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{30} + return fileDescriptor_00212fb1f9d3bf1c, []int{31} } func (m *KeyValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2255,7 +2365,7 @@ type LinuxContainerResources struct { func (m *LinuxContainerResources) Reset() { *m = LinuxContainerResources{} } func (*LinuxContainerResources) ProtoMessage() {} func (*LinuxContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{31} + return fileDescriptor_00212fb1f9d3bf1c, []int{32} } func (m *LinuxContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2356,7 +2466,7 @@ type HugepageLimit struct { func (m *HugepageLimit) Reset() { *m = HugepageLimit{} } func (*HugepageLimit) ProtoMessage() {} func (*HugepageLimit) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{32} + return fileDescriptor_00212fb1f9d3bf1c, []int{33} } func (m *HugepageLimit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2412,7 +2522,7 @@ type SELinuxOption struct { func (m *SELinuxOption) Reset() { *m = SELinuxOption{} } func (*SELinuxOption) ProtoMessage() {} func (*SELinuxOption) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{33} + return fileDescriptor_00212fb1f9d3bf1c, []int{34} } func (m *SELinuxOption) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2482,7 +2592,7 @@ type Capability struct { func (m *Capability) Reset() { *m = Capability{} } func (*Capability) ProtoMessage() {} func (*Capability) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{34} + return fileDescriptor_00212fb1f9d3bf1c, []int{35} } func (m *Capability) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2541,7 +2651,7 @@ type LinuxContainerSecurityContext struct { // 1. All capabilities are added. // 2. Sensitive paths, such as kernel module paths within sysfs, are not masked. // 3. Any sysfs and procfs mounts are mounted RW. - // 4. Apparmor confinement is not applied. + // 4. AppArmor confinement is not applied. // 5. Seccomp restrictions are not applied. // 6. The device cgroup does not restrict access to any devices. // 7. All devices from the host's /dev are available within the container. @@ -2568,20 +2678,6 @@ type LinuxContainerSecurityContext struct { // List of groups applied to the first process run in the container, in // addition to the container's primary GID. SupplementalGroups []int64 `protobuf:"varint,8,rep,packed,name=supplemental_groups,json=supplementalGroups,proto3" json:"supplemental_groups,omitempty"` - // AppArmor profile for the container, candidate values are: - // * runtime/default: equivalent to not specifying a profile. - // * unconfined: no profiles are loaded - // * localhost/: profile loaded on the node - // (localhost) by name. The possible profile names are detailed at - // http://wiki.apparmor.net/index.php/AppArmor_Core_Policy_Reference - ApparmorProfile string `protobuf:"bytes,9,opt,name=apparmor_profile,json=apparmorProfile,proto3" json:"apparmor_profile,omitempty"` - // Seccomp profile for the container, candidate values are: - // * runtime/default: the default profile for the container runtime - // * unconfined: unconfined profile, ie, no seccomp sandboxing - // * localhost/: the profile installed on the node. - // is the full path of the profile. - // Default: "", which is identical with unconfined. - SeccompProfilePath string `protobuf:"bytes,10,opt,name=seccomp_profile_path,json=seccompProfilePath,proto3" json:"seccomp_profile_path,omitempty"` // no_new_privs defines if the flag for no_new_privs should be set on the // container. NoNewPrivs bool `protobuf:"varint,11,opt,name=no_new_privs,json=noNewPrivs,proto3" json:"no_new_privs,omitempty"` @@ -2590,7 +2686,25 @@ type LinuxContainerSecurityContext struct { MaskedPaths []string `protobuf:"bytes,13,rep,name=masked_paths,json=maskedPaths,proto3" json:"masked_paths,omitempty"` // readonly_paths is a slice of paths that should be set as readonly by the // container runtime, this can be passed directly to the OCI spec. - ReadonlyPaths []string `protobuf:"bytes,14,rep,name=readonly_paths,json=readonlyPaths,proto3" json:"readonly_paths,omitempty"` + ReadonlyPaths []string `protobuf:"bytes,14,rep,name=readonly_paths,json=readonlyPaths,proto3" json:"readonly_paths,omitempty"` + // Seccomp profile for the container. + Seccomp *SecurityProfile `protobuf:"bytes,15,opt,name=seccomp,proto3" json:"seccomp,omitempty"` + // AppArmor profile for the container. + Apparmor *SecurityProfile `protobuf:"bytes,16,opt,name=apparmor,proto3" json:"apparmor,omitempty"` + // AppArmor profile for the container, candidate values are: + // * runtime/default: equivalent to not specifying a profile. + // * unconfined: no profiles are loaded + // * localhost/: profile loaded on the node + // (localhost) by name. The possible profile names are detailed at + // https://gitlab.com/apparmor/apparmor/-/wikis/AppArmor_Core_Policy_Reference + ApparmorProfile string `protobuf:"bytes,9,opt,name=apparmor_profile,json=apparmorProfile,proto3" json:"apparmor_profile,omitempty"` // Deprecated: Do not use. + // Seccomp profile for the container, candidate values are: + // * runtime/default: the default profile for the container runtime + // * unconfined: unconfined profile, ie, no seccomp sandboxing + // * localhost/: the profile installed on the node. + // is the full path of the profile. + // Default: "", which is identical with unconfined. + SeccompProfilePath string `protobuf:"bytes,10,opt,name=seccomp_profile_path,json=seccompProfilePath,proto3" json:"seccomp_profile_path,omitempty"` // Deprecated: Do not use. XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_sizecache int32 `json:"-"` } @@ -2598,7 +2712,7 @@ type LinuxContainerSecurityContext struct { func (m *LinuxContainerSecurityContext) Reset() { *m = LinuxContainerSecurityContext{} } func (*LinuxContainerSecurityContext) ProtoMessage() {} func (*LinuxContainerSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{35} + return fileDescriptor_00212fb1f9d3bf1c, []int{36} } func (m *LinuxContainerSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2690,20 +2804,6 @@ func (m *LinuxContainerSecurityContext) GetSupplementalGroups() []int64 { return nil } -func (m *LinuxContainerSecurityContext) GetApparmorProfile() string { - if m != nil { - return m.ApparmorProfile - } - return "" -} - -func (m *LinuxContainerSecurityContext) GetSeccompProfilePath() string { - if m != nil { - return m.SeccompProfilePath - } - return "" -} - func (m *LinuxContainerSecurityContext) GetNoNewPrivs() bool { if m != nil { return m.NoNewPrivs @@ -2725,6 +2825,36 @@ func (m *LinuxContainerSecurityContext) GetReadonlyPaths() []string { return nil } +func (m *LinuxContainerSecurityContext) GetSeccomp() *SecurityProfile { + if m != nil { + return m.Seccomp + } + return nil +} + +func (m *LinuxContainerSecurityContext) GetApparmor() *SecurityProfile { + if m != nil { + return m.Apparmor + } + return nil +} + +// Deprecated: Do not use. +func (m *LinuxContainerSecurityContext) GetApparmorProfile() string { + if m != nil { + return m.ApparmorProfile + } + return "" +} + +// Deprecated: Do not use. +func (m *LinuxContainerSecurityContext) GetSeccompProfilePath() string { + if m != nil { + return m.SeccompProfilePath + } + return "" +} + // LinuxContainerConfig contains platform-specific configuration for // Linux-based containers. type LinuxContainerConfig struct { @@ -2739,7 +2869,7 @@ type LinuxContainerConfig struct { func (m *LinuxContainerConfig) Reset() { *m = LinuxContainerConfig{} } func (*LinuxContainerConfig) ProtoMessage() {} func (*LinuxContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{36} + return fileDescriptor_00212fb1f9d3bf1c, []int{37} } func (m *LinuxContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2797,7 +2927,7 @@ type WindowsContainerSecurityContext struct { func (m *WindowsContainerSecurityContext) Reset() { *m = WindowsContainerSecurityContext{} } func (*WindowsContainerSecurityContext) ProtoMessage() {} func (*WindowsContainerSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{37} + return fileDescriptor_00212fb1f9d3bf1c, []int{38} } func (m *WindowsContainerSecurityContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2854,7 +2984,7 @@ type WindowsContainerConfig struct { func (m *WindowsContainerConfig) Reset() { *m = WindowsContainerConfig{} } func (*WindowsContainerConfig) ProtoMessage() {} func (*WindowsContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{38} + return fileDescriptor_00212fb1f9d3bf1c, []int{39} } func (m *WindowsContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2915,7 +3045,7 @@ type WindowsContainerResources struct { func (m *WindowsContainerResources) Reset() { *m = WindowsContainerResources{} } func (*WindowsContainerResources) ProtoMessage() {} func (*WindowsContainerResources) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{39} + return fileDescriptor_00212fb1f9d3bf1c, []int{40} } func (m *WindowsContainerResources) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2989,7 +3119,7 @@ type ContainerMetadata struct { func (m *ContainerMetadata) Reset() { *m = ContainerMetadata{} } func (*ContainerMetadata) ProtoMessage() {} func (*ContainerMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{40} + return fileDescriptor_00212fb1f9d3bf1c, []int{41} } func (m *ContainerMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3050,7 +3180,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (*Device) ProtoMessage() {} func (*Device) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{41} + return fileDescriptor_00212fb1f9d3bf1c, []int{42} } func (m *Device) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3169,7 +3299,7 @@ type ContainerConfig struct { func (m *ContainerConfig) Reset() { *m = ContainerConfig{} } func (*ContainerConfig) ProtoMessage() {} func (*ContainerConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{42} + return fileDescriptor_00212fb1f9d3bf1c, []int{43} } func (m *ContainerConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3327,7 +3457,7 @@ type CreateContainerRequest struct { func (m *CreateContainerRequest) Reset() { *m = CreateContainerRequest{} } func (*CreateContainerRequest) ProtoMessage() {} func (*CreateContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{43} + return fileDescriptor_00212fb1f9d3bf1c, []int{44} } func (m *CreateContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3387,7 +3517,7 @@ type CreateContainerResponse struct { func (m *CreateContainerResponse) Reset() { *m = CreateContainerResponse{} } func (*CreateContainerResponse) ProtoMessage() {} func (*CreateContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{44} + return fileDescriptor_00212fb1f9d3bf1c, []int{45} } func (m *CreateContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3433,7 +3563,7 @@ type StartContainerRequest struct { func (m *StartContainerRequest) Reset() { *m = StartContainerRequest{} } func (*StartContainerRequest) ProtoMessage() {} func (*StartContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{45} + return fileDescriptor_00212fb1f9d3bf1c, []int{46} } func (m *StartContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3477,7 +3607,7 @@ type StartContainerResponse struct { func (m *StartContainerResponse) Reset() { *m = StartContainerResponse{} } func (*StartContainerResponse) ProtoMessage() {} func (*StartContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{46} + return fileDescriptor_00212fb1f9d3bf1c, []int{47} } func (m *StartContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3519,7 +3649,7 @@ type StopContainerRequest struct { func (m *StopContainerRequest) Reset() { *m = StopContainerRequest{} } func (*StopContainerRequest) ProtoMessage() {} func (*StopContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{47} + return fileDescriptor_00212fb1f9d3bf1c, []int{48} } func (m *StopContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3570,7 +3700,7 @@ type StopContainerResponse struct { func (m *StopContainerResponse) Reset() { *m = StopContainerResponse{} } func (*StopContainerResponse) ProtoMessage() {} func (*StopContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{48} + return fileDescriptor_00212fb1f9d3bf1c, []int{49} } func (m *StopContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3609,7 +3739,7 @@ type RemoveContainerRequest struct { func (m *RemoveContainerRequest) Reset() { *m = RemoveContainerRequest{} } func (*RemoveContainerRequest) ProtoMessage() {} func (*RemoveContainerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{49} + return fileDescriptor_00212fb1f9d3bf1c, []int{50} } func (m *RemoveContainerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3653,7 +3783,7 @@ type RemoveContainerResponse struct { func (m *RemoveContainerResponse) Reset() { *m = RemoveContainerResponse{} } func (*RemoveContainerResponse) ProtoMessage() {} func (*RemoveContainerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{50} + return fileDescriptor_00212fb1f9d3bf1c, []int{51} } func (m *RemoveContainerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3693,7 +3823,7 @@ type ContainerStateValue struct { func (m *ContainerStateValue) Reset() { *m = ContainerStateValue{} } func (*ContainerStateValue) ProtoMessage() {} func (*ContainerStateValue) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{51} + return fileDescriptor_00212fb1f9d3bf1c, []int{52} } func (m *ContainerStateValue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3749,7 +3879,7 @@ type ContainerFilter struct { func (m *ContainerFilter) Reset() { *m = ContainerFilter{} } func (*ContainerFilter) ProtoMessage() {} func (*ContainerFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{52} + return fileDescriptor_00212fb1f9d3bf1c, []int{53} } func (m *ContainerFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3815,7 +3945,7 @@ type ListContainersRequest struct { func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (*ListContainersRequest) ProtoMessage() {} func (*ListContainersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{53} + return fileDescriptor_00212fb1f9d3bf1c, []int{54} } func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3884,7 +4014,7 @@ type Container struct { func (m *Container) Reset() { *m = Container{} } func (*Container) ProtoMessage() {} func (*Container) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{54} + return fileDescriptor_00212fb1f9d3bf1c, []int{55} } func (m *Container) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3986,7 +4116,7 @@ type ListContainersResponse struct { func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} } func (*ListContainersResponse) ProtoMessage() {} func (*ListContainersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{55} + return fileDescriptor_00212fb1f9d3bf1c, []int{56} } func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4034,7 +4164,7 @@ type ContainerStatusRequest struct { func (m *ContainerStatusRequest) Reset() { *m = ContainerStatusRequest{} } func (*ContainerStatusRequest) ProtoMessage() {} func (*ContainerStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{56} + return fileDescriptor_00212fb1f9d3bf1c, []int{57} } func (m *ContainerStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4121,7 +4251,7 @@ type ContainerStatus struct { func (m *ContainerStatus) Reset() { *m = ContainerStatus{} } func (*ContainerStatus) ProtoMessage() {} func (*ContainerStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{57} + return fileDescriptor_00212fb1f9d3bf1c, []int{58} } func (m *ContainerStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4270,7 +4400,7 @@ type ContainerStatusResponse struct { func (m *ContainerStatusResponse) Reset() { *m = ContainerStatusResponse{} } func (*ContainerStatusResponse) ProtoMessage() {} func (*ContainerStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{58} + return fileDescriptor_00212fb1f9d3bf1c, []int{59} } func (m *ContainerStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4325,7 +4455,7 @@ type UpdateContainerResourcesRequest struct { func (m *UpdateContainerResourcesRequest) Reset() { *m = UpdateContainerResourcesRequest{} } func (*UpdateContainerResourcesRequest) ProtoMessage() {} func (*UpdateContainerResourcesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{59} + return fileDescriptor_00212fb1f9d3bf1c, []int{60} } func (m *UpdateContainerResourcesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4376,7 +4506,7 @@ type UpdateContainerResourcesResponse struct { func (m *UpdateContainerResourcesResponse) Reset() { *m = UpdateContainerResourcesResponse{} } func (*UpdateContainerResourcesResponse) ProtoMessage() {} func (*UpdateContainerResourcesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{60} + return fileDescriptor_00212fb1f9d3bf1c, []int{61} } func (m *UpdateContainerResourcesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4419,7 +4549,7 @@ type ExecSyncRequest struct { func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} } func (*ExecSyncRequest) ProtoMessage() {} func (*ExecSyncRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{61} + return fileDescriptor_00212fb1f9d3bf1c, []int{62} } func (m *ExecSyncRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4483,7 +4613,7 @@ type ExecSyncResponse struct { func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} } func (*ExecSyncResponse) ProtoMessage() {} func (*ExecSyncResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{62} + return fileDescriptor_00212fb1f9d3bf1c, []int{63} } func (m *ExecSyncResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4559,7 +4689,7 @@ type ExecRequest struct { func (m *ExecRequest) Reset() { *m = ExecRequest{} } func (*ExecRequest) ProtoMessage() {} func (*ExecRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{63} + return fileDescriptor_00212fb1f9d3bf1c, []int{64} } func (m *ExecRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4640,7 +4770,7 @@ type ExecResponse struct { func (m *ExecResponse) Reset() { *m = ExecResponse{} } func (*ExecResponse) ProtoMessage() {} func (*ExecResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{64} + return fileDescriptor_00212fb1f9d3bf1c, []int{65} } func (m *ExecResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4701,7 +4831,7 @@ type AttachRequest struct { func (m *AttachRequest) Reset() { *m = AttachRequest{} } func (*AttachRequest) ProtoMessage() {} func (*AttachRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{65} + return fileDescriptor_00212fb1f9d3bf1c, []int{66} } func (m *AttachRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4775,7 +4905,7 @@ type AttachResponse struct { func (m *AttachResponse) Reset() { *m = AttachResponse{} } func (*AttachResponse) ProtoMessage() {} func (*AttachResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{66} + return fileDescriptor_00212fb1f9d3bf1c, []int{67} } func (m *AttachResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4823,7 +4953,7 @@ type PortForwardRequest struct { func (m *PortForwardRequest) Reset() { *m = PortForwardRequest{} } func (*PortForwardRequest) ProtoMessage() {} func (*PortForwardRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{67} + return fileDescriptor_00212fb1f9d3bf1c, []int{68} } func (m *PortForwardRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4876,7 +5006,7 @@ type PortForwardResponse struct { func (m *PortForwardResponse) Reset() { *m = PortForwardResponse{} } func (*PortForwardResponse) ProtoMessage() {} func (*PortForwardResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{68} + return fileDescriptor_00212fb1f9d3bf1c, []int{69} } func (m *PortForwardResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4922,7 +5052,7 @@ type ImageFilter struct { func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (*ImageFilter) ProtoMessage() {} func (*ImageFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{69} + return fileDescriptor_00212fb1f9d3bf1c, []int{70} } func (m *ImageFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4968,7 +5098,7 @@ type ListImagesRequest struct { func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (*ListImagesRequest) ProtoMessage() {} func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{70} + return fileDescriptor_00212fb1f9d3bf1c, []int{71} } func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5030,7 +5160,7 @@ type Image struct { func (m *Image) Reset() { *m = Image{} } func (*Image) ProtoMessage() {} func (*Image) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{71} + return fileDescriptor_00212fb1f9d3bf1c, []int{72} } func (m *Image) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5118,7 +5248,7 @@ type ListImagesResponse struct { func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (*ListImagesResponse) ProtoMessage() {} func (*ListImagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{72} + return fileDescriptor_00212fb1f9d3bf1c, []int{73} } func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5166,7 +5296,7 @@ type ImageStatusRequest struct { func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (*ImageStatusRequest) ProtoMessage() {} func (*ImageStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{73} + return fileDescriptor_00212fb1f9d3bf1c, []int{74} } func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5224,7 +5354,7 @@ type ImageStatusResponse struct { func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (*ImageStatusResponse) ProtoMessage() {} func (*ImageStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{74} + return fileDescriptor_00212fb1f9d3bf1c, []int{75} } func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5285,7 +5415,7 @@ type AuthConfig struct { func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (*AuthConfig) ProtoMessage() {} func (*AuthConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{75} + return fileDescriptor_00212fb1f9d3bf1c, []int{76} } func (m *AuthConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5370,7 +5500,7 @@ type PullImageRequest struct { func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (*PullImageRequest) ProtoMessage() {} func (*PullImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{76} + return fileDescriptor_00212fb1f9d3bf1c, []int{77} } func (m *PullImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5431,7 +5561,7 @@ type PullImageResponse struct { func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (*PullImageResponse) ProtoMessage() {} func (*PullImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{77} + return fileDescriptor_00212fb1f9d3bf1c, []int{78} } func (m *PullImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5477,7 +5607,7 @@ type RemoveImageRequest struct { func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (*RemoveImageRequest) ProtoMessage() {} func (*RemoveImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{78} + return fileDescriptor_00212fb1f9d3bf1c, []int{79} } func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5521,7 +5651,7 @@ type RemoveImageResponse struct { func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (*RemoveImageResponse) ProtoMessage() {} func (*RemoveImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{79} + return fileDescriptor_00212fb1f9d3bf1c, []int{80} } func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5561,7 +5691,7 @@ type NetworkConfig struct { func (m *NetworkConfig) Reset() { *m = NetworkConfig{} } func (*NetworkConfig) ProtoMessage() {} func (*NetworkConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{80} + return fileDescriptor_00212fb1f9d3bf1c, []int{81} } func (m *NetworkConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5606,7 +5736,7 @@ type RuntimeConfig struct { func (m *RuntimeConfig) Reset() { *m = RuntimeConfig{} } func (*RuntimeConfig) ProtoMessage() {} func (*RuntimeConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{81} + return fileDescriptor_00212fb1f9d3bf1c, []int{82} } func (m *RuntimeConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5651,7 +5781,7 @@ type UpdateRuntimeConfigRequest struct { func (m *UpdateRuntimeConfigRequest) Reset() { *m = UpdateRuntimeConfigRequest{} } func (*UpdateRuntimeConfigRequest) ProtoMessage() {} func (*UpdateRuntimeConfigRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{82} + return fileDescriptor_00212fb1f9d3bf1c, []int{83} } func (m *UpdateRuntimeConfigRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5695,7 +5825,7 @@ type UpdateRuntimeConfigResponse struct { func (m *UpdateRuntimeConfigResponse) Reset() { *m = UpdateRuntimeConfigResponse{} } func (*UpdateRuntimeConfigResponse) ProtoMessage() {} func (*UpdateRuntimeConfigResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{83} + return fileDescriptor_00212fb1f9d3bf1c, []int{84} } func (m *UpdateRuntimeConfigResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5753,7 +5883,7 @@ type RuntimeCondition struct { func (m *RuntimeCondition) Reset() { *m = RuntimeCondition{} } func (*RuntimeCondition) ProtoMessage() {} func (*RuntimeCondition) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{84} + return fileDescriptor_00212fb1f9d3bf1c, []int{85} } func (m *RuntimeCondition) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5821,7 +5951,7 @@ type RuntimeStatus struct { func (m *RuntimeStatus) Reset() { *m = RuntimeStatus{} } func (*RuntimeStatus) ProtoMessage() {} func (*RuntimeStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{85} + return fileDescriptor_00212fb1f9d3bf1c, []int{86} } func (m *RuntimeStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5867,7 +5997,7 @@ type StatusRequest struct { func (m *StatusRequest) Reset() { *m = StatusRequest{} } func (*StatusRequest) ProtoMessage() {} func (*StatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{86} + return fileDescriptor_00212fb1f9d3bf1c, []int{87} } func (m *StatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5918,7 +6048,7 @@ type StatusResponse struct { func (m *StatusResponse) Reset() { *m = StatusResponse{} } func (*StatusResponse) ProtoMessage() {} func (*StatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{87} + return fileDescriptor_00212fb1f9d3bf1c, []int{88} } func (m *StatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -5969,7 +6099,7 @@ type ImageFsInfoRequest struct { func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{88} + return fileDescriptor_00212fb1f9d3bf1c, []int{89} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6009,7 +6139,7 @@ type UInt64Value struct { func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{89} + return fileDescriptor_00212fb1f9d3bf1c, []int{90} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6056,7 +6186,7 @@ type FilesystemIdentifier struct { func (m *FilesystemIdentifier) Reset() { *m = FilesystemIdentifier{} } func (*FilesystemIdentifier) ProtoMessage() {} func (*FilesystemIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{90} + return fileDescriptor_00212fb1f9d3bf1c, []int{91} } func (m *FilesystemIdentifier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6113,7 +6243,7 @@ type FilesystemUsage struct { func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{91} + return fileDescriptor_00212fb1f9d3bf1c, []int{92} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6180,7 +6310,7 @@ type ImageFsInfoResponse struct { func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{92} + return fileDescriptor_00212fb1f9d3bf1c, []int{93} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6226,7 +6356,7 @@ type ContainerStatsRequest struct { func (m *ContainerStatsRequest) Reset() { *m = ContainerStatsRequest{} } func (*ContainerStatsRequest) ProtoMessage() {} func (*ContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{93} + return fileDescriptor_00212fb1f9d3bf1c, []int{94} } func (m *ContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6272,7 +6402,7 @@ type ContainerStatsResponse struct { func (m *ContainerStatsResponse) Reset() { *m = ContainerStatsResponse{} } func (*ContainerStatsResponse) ProtoMessage() {} func (*ContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{94} + return fileDescriptor_00212fb1f9d3bf1c, []int{95} } func (m *ContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6318,7 +6448,7 @@ type ListContainerStatsRequest struct { func (m *ListContainerStatsRequest) Reset() { *m = ListContainerStatsRequest{} } func (*ListContainerStatsRequest) ProtoMessage() {} func (*ListContainerStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{95} + return fileDescriptor_00212fb1f9d3bf1c, []int{96} } func (m *ListContainerStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6372,7 +6502,7 @@ type ContainerStatsFilter struct { func (m *ContainerStatsFilter) Reset() { *m = ContainerStatsFilter{} } func (*ContainerStatsFilter) ProtoMessage() {} func (*ContainerStatsFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{96} + return fileDescriptor_00212fb1f9d3bf1c, []int{97} } func (m *ContainerStatsFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6432,7 +6562,7 @@ type ListContainerStatsResponse struct { func (m *ListContainerStatsResponse) Reset() { *m = ListContainerStatsResponse{} } func (*ListContainerStatsResponse) ProtoMessage() {} func (*ListContainerStatsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{97} + return fileDescriptor_00212fb1f9d3bf1c, []int{98} } func (m *ListContainerStatsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6488,7 +6618,7 @@ type ContainerAttributes struct { func (m *ContainerAttributes) Reset() { *m = ContainerAttributes{} } func (*ContainerAttributes) ProtoMessage() {} func (*ContainerAttributes) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{98} + return fileDescriptor_00212fb1f9d3bf1c, []int{99} } func (m *ContainerAttributes) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6562,7 +6692,7 @@ type ContainerStats struct { func (m *ContainerStats) Reset() { *m = ContainerStats{} } func (*ContainerStats) ProtoMessage() {} func (*ContainerStats) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{99} + return fileDescriptor_00212fb1f9d3bf1c, []int{100} } func (m *ContainerStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6632,7 +6762,7 @@ type CpuUsage struct { func (m *CpuUsage) Reset() { *m = CpuUsage{} } func (*CpuUsage) ProtoMessage() {} func (*CpuUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{100} + return fileDescriptor_00212fb1f9d3bf1c, []int{101} } func (m *CpuUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6688,7 +6818,7 @@ type MemoryUsage struct { func (m *MemoryUsage) Reset() { *m = MemoryUsage{} } func (*MemoryUsage) ProtoMessage() {} func (*MemoryUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{101} + return fileDescriptor_00212fb1f9d3bf1c, []int{102} } func (m *MemoryUsage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6741,7 +6871,7 @@ type ReopenContainerLogRequest struct { func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} } func (*ReopenContainerLogRequest) ProtoMessage() {} func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{102} + return fileDescriptor_00212fb1f9d3bf1c, []int{103} } func (m *ReopenContainerLogRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6785,7 +6915,7 @@ type ReopenContainerLogResponse struct { func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} } func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_00212fb1f9d3bf1c, []int{103} + return fileDescriptor_00212fb1f9d3bf1c, []int{104} } func (m *ReopenContainerLogResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -6820,6 +6950,7 @@ func init() { proto.RegisterEnum("runtime.v1alpha2.NamespaceMode", NamespaceMode_name, NamespaceMode_value) proto.RegisterEnum("runtime.v1alpha2.PodSandboxState", PodSandboxState_name, PodSandboxState_value) proto.RegisterEnum("runtime.v1alpha2.ContainerState", ContainerState_name, ContainerState_value) + proto.RegisterEnum("runtime.v1alpha2.SecurityProfile_ProfileType", SecurityProfile_ProfileType_name, SecurityProfile_ProfileType_value) proto.RegisterType((*VersionRequest)(nil), "runtime.v1alpha2.VersionRequest") proto.RegisterType((*VersionResponse)(nil), "runtime.v1alpha2.VersionResponse") proto.RegisterType((*DNSConfig)(nil), "runtime.v1alpha2.DNSConfig") @@ -6828,6 +6959,7 @@ func init() { proto.RegisterType((*NamespaceOption)(nil), "runtime.v1alpha2.NamespaceOption") proto.RegisterType((*Int64Value)(nil), "runtime.v1alpha2.Int64Value") proto.RegisterType((*LinuxSandboxSecurityContext)(nil), "runtime.v1alpha2.LinuxSandboxSecurityContext") + proto.RegisterType((*SecurityProfile)(nil), "runtime.v1alpha2.SecurityProfile") proto.RegisterType((*LinuxPodSandboxConfig)(nil), "runtime.v1alpha2.LinuxPodSandboxConfig") proto.RegisterMapType((map[string]string)(nil), "runtime.v1alpha2.LinuxPodSandboxConfig.SysctlsEntry") proto.RegisterType((*PodSandboxMetadata)(nil), "runtime.v1alpha2.PodSandboxMetadata") @@ -6952,312 +7084,320 @@ func init() { func init() { proto.RegisterFile("api.proto", fileDescriptor_00212fb1f9d3bf1c) } var fileDescriptor_00212fb1f9d3bf1c = []byte{ - // 4879 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5c, 0xcd, 0x73, 0x1b, 0x47, - 0x76, 0xe7, 0xe0, 0x83, 0x04, 0x1e, 0x08, 0x10, 0x6c, 0x51, 0x22, 0x04, 0x59, 0xb2, 0x34, 0xb6, - 0x3e, 0x6d, 0x53, 0x16, 0xed, 0x95, 0x23, 0xc9, 0x96, 0x0d, 0x91, 0x94, 0x84, 0xac, 0x04, 0x22, - 0x03, 0xd2, 0x1f, 0x6b, 0x57, 0xcd, 0x0e, 0x31, 0x4d, 0x70, 0x56, 0xc0, 0xcc, 0x78, 0x66, 0x20, - 0x89, 0x9b, 0xaa, 0xd4, 0x56, 0x6d, 0x65, 0x0f, 0x39, 0xe5, 0x9c, 0xe3, 0xe6, 0x90, 0x43, 0x4e, - 0x39, 0xe4, 0x94, 0xd3, 0xa6, 0x72, 0xd8, 0x4b, 0x2a, 0x39, 0x6d, 0x92, 0xca, 0x25, 0x76, 0x92, - 0xaa, 0x54, 0xaa, 0x92, 0xca, 0x1f, 0x90, 0x43, 0xaa, 0xbf, 0xe6, 0x7b, 0xf0, 0x21, 0x69, 0xd7, - 0x9b, 0x13, 0xd1, 0x6f, 0xde, 0x7b, 0xfd, 0xe6, 0xf5, 0xeb, 0xd7, 0xaf, 0x7f, 0xdd, 0x43, 0x28, - 0x6b, 0xb6, 0xb1, 0x61, 0x3b, 0x96, 0x67, 0xa1, 0xba, 0x33, 0x36, 0x3d, 0x63, 0x84, 0x37, 0x9e, - 0xde, 0xd0, 0x86, 0xf6, 0x91, 0xb6, 0xd9, 0x7c, 0x67, 0x60, 0x78, 0x47, 0xe3, 0x83, 0x8d, 0xbe, - 0x35, 0xba, 0x3e, 0xb0, 0x06, 0xd6, 0x75, 0xca, 0x78, 0x30, 0x3e, 0xa4, 0x2d, 0xda, 0xa0, 0xbf, - 0x98, 0x02, 0xf9, 0x1a, 0xd4, 0x3e, 0xc5, 0x8e, 0x6b, 0x58, 0xa6, 0x82, 0xbf, 0x1e, 0x63, 0xd7, - 0x43, 0x0d, 0x58, 0x7a, 0xca, 0x28, 0x0d, 0xe9, 0xbc, 0x74, 0xa5, 0xac, 0x88, 0xa6, 0xfc, 0x67, - 0x12, 0xac, 0xf8, 0xcc, 0xae, 0x6d, 0x99, 0x2e, 0xce, 0xe6, 0x46, 0x17, 0x60, 0x99, 0x1b, 0xa7, - 0x9a, 0xda, 0x08, 0x37, 0x72, 0xf4, 0x71, 0x85, 0xd3, 0x3a, 0xda, 0x08, 0xa3, 0xcb, 0xb0, 0x22, - 0x58, 0x84, 0x92, 0x3c, 0xe5, 0xaa, 0x71, 0x32, 0xef, 0x0d, 0x6d, 0xc0, 0x09, 0xc1, 0xa8, 0xd9, - 0x86, 0xcf, 0x5c, 0xa0, 0xcc, 0xab, 0xfc, 0x51, 0xcb, 0x36, 0x38, 0xbf, 0xfc, 0x25, 0x94, 0xb7, - 0x3b, 0xbd, 0x2d, 0xcb, 0x3c, 0x34, 0x06, 0xc4, 0x44, 0x17, 0x3b, 0x44, 0xa6, 0x21, 0x9d, 0xcf, - 0x13, 0x13, 0x79, 0x13, 0x35, 0xa1, 0xe4, 0x62, 0xcd, 0xe9, 0x1f, 0x61, 0xb7, 0x91, 0xa3, 0x8f, - 0xfc, 0x36, 0x91, 0xb2, 0x6c, 0xcf, 0xb0, 0x4c, 0xb7, 0x91, 0x67, 0x52, 0xbc, 0x29, 0xff, 0x5c, - 0x82, 0x4a, 0xd7, 0x72, 0xbc, 0xc7, 0x9a, 0x6d, 0x1b, 0xe6, 0x00, 0xdd, 0x84, 0x12, 0xf5, 0x65, - 0xdf, 0x1a, 0x52, 0x1f, 0xd4, 0x36, 0x9b, 0x1b, 0xf1, 0x61, 0xd9, 0xe8, 0x72, 0x0e, 0xc5, 0xe7, - 0x45, 0x17, 0xa1, 0xd6, 0xb7, 0x4c, 0x4f, 0x33, 0x4c, 0xec, 0xa8, 0xb6, 0xe5, 0x78, 0xd4, 0x45, - 0x45, 0xa5, 0xea, 0x53, 0x49, 0x2f, 0xe8, 0x0c, 0x94, 0x8f, 0x2c, 0xd7, 0x63, 0x1c, 0x79, 0xca, - 0x51, 0x22, 0x04, 0xfa, 0x70, 0x1d, 0x96, 0xe8, 0x43, 0xc3, 0xe6, 0xce, 0x58, 0x24, 0xcd, 0xb6, - 0x2d, 0xff, 0x4a, 0x82, 0xe2, 0x63, 0x6b, 0x6c, 0x7a, 0xb1, 0x6e, 0x34, 0xef, 0x88, 0x0f, 0x54, - 0xa8, 0x1b, 0xcd, 0x3b, 0x0a, 0xba, 0x21, 0x1c, 0x6c, 0xac, 0x58, 0x37, 0xe4, 0x61, 0x13, 0x4a, - 0x0e, 0xd6, 0x74, 0xcb, 0x1c, 0x1e, 0x53, 0x13, 0x4a, 0x8a, 0xdf, 0x26, 0x83, 0xe8, 0xe2, 0xa1, - 0x61, 0x8e, 0x9f, 0xab, 0x0e, 0x1e, 0x6a, 0x07, 0x78, 0x48, 0x4d, 0x29, 0x29, 0x35, 0x4e, 0x56, - 0x18, 0x15, 0x6d, 0x43, 0xc5, 0x76, 0x2c, 0x5b, 0x1b, 0x68, 0xc4, 0x8f, 0x8d, 0x22, 0x75, 0x95, - 0x9c, 0x74, 0x15, 0x35, 0xbb, 0x1b, 0x70, 0x2a, 0x61, 0x31, 0xf9, 0xef, 0x24, 0x58, 0x21, 0xc1, - 0xe3, 0xda, 0x5a, 0x1f, 0xef, 0xd2, 0x21, 0x41, 0xb7, 0x60, 0xc9, 0xc4, 0xde, 0x33, 0xcb, 0x79, - 0xc2, 0x07, 0xe0, 0xf5, 0xa4, 0x56, 0x5f, 0xe6, 0xb1, 0xa5, 0x63, 0x45, 0xf0, 0xa3, 0x1b, 0x90, - 0xb7, 0x0d, 0x9d, 0xbe, 0xf0, 0x0c, 0x62, 0x84, 0x97, 0x88, 0x18, 0x76, 0x9f, 0xfa, 0x61, 0x16, - 0x11, 0xc3, 0xee, 0x13, 0xe7, 0x7a, 0x9a, 0x33, 0xc0, 0x9e, 0x6a, 0xe8, 0x7c, 0xa0, 0x4a, 0x8c, - 0xd0, 0xd6, 0x65, 0x19, 0xa0, 0x6d, 0x7a, 0x37, 0xdf, 0xff, 0x54, 0x1b, 0x8e, 0x31, 0x5a, 0x83, - 0xe2, 0x53, 0xf2, 0x83, 0xbe, 0x49, 0x5e, 0x61, 0x0d, 0xf9, 0x9b, 0x3c, 0x9c, 0x79, 0x44, 0x9c, - 0xd9, 0xd3, 0x4c, 0xfd, 0xc0, 0x7a, 0xde, 0xc3, 0xfd, 0xb1, 0x63, 0x78, 0xc7, 0x5b, 0x96, 0xe9, - 0xe1, 0xe7, 0x1e, 0xea, 0xc0, 0xaa, 0x29, 0xba, 0x55, 0x45, 0xdc, 0x12, 0x0d, 0x95, 0xcd, 0x0b, - 0x13, 0x2c, 0x64, 0xfe, 0x53, 0xea, 0x66, 0x94, 0xe0, 0xa2, 0x87, 0xc1, 0xa0, 0x0a, 0x6d, 0x39, - 0xaa, 0x2d, 0xe5, 0x7d, 0x7b, 0x3b, 0xd4, 0x32, 0xae, 0x4b, 0x8c, 0xba, 0xd0, 0xf4, 0x21, 0x90, - 0x29, 0xaf, 0x6a, 0xae, 0x3a, 0x76, 0xb1, 0x43, 0xbd, 0x56, 0xd9, 0x7c, 0x2d, 0xa9, 0x25, 0x70, - 0x81, 0x52, 0x76, 0xc6, 0x66, 0xcb, 0xdd, 0x77, 0xb1, 0x83, 0xee, 0xd2, 0x24, 0x42, 0xa4, 0x07, - 0x8e, 0x35, 0xb6, 0x1b, 0xa5, 0x19, 0xc4, 0x81, 0x8a, 0x3f, 0x20, 0xfc, 0x34, 0xc3, 0xf0, 0x40, - 0x55, 0x1d, 0xcb, 0xf2, 0x0e, 0x5d, 0x11, 0x9c, 0x82, 0xac, 0x50, 0x2a, 0xba, 0x0e, 0x27, 0xdc, - 0xb1, 0x6d, 0x0f, 0xf1, 0x08, 0x9b, 0x9e, 0x36, 0x64, 0xdd, 0xb9, 0x8d, 0xe2, 0xf9, 0xfc, 0x95, - 0xbc, 0x82, 0xc2, 0x8f, 0xa8, 0x62, 0x17, 0x9d, 0x03, 0xb0, 0x1d, 0xe3, 0xa9, 0x31, 0xc4, 0x03, - 0xac, 0x37, 0x16, 0xa9, 0xd2, 0x10, 0x05, 0xbd, 0x0b, 0x6b, 0x2e, 0xee, 0xf7, 0xad, 0x91, 0xad, - 0xda, 0x8e, 0x75, 0x68, 0x0c, 0x31, 0x9b, 0x5a, 0x4b, 0x74, 0xf4, 0x11, 0x7f, 0xd6, 0x65, 0x8f, - 0xc8, 0x24, 0x93, 0x7f, 0x9e, 0x83, 0x93, 0xd4, 0x93, 0x5d, 0x4b, 0xe7, 0xc3, 0xcc, 0x33, 0xd8, - 0x1b, 0x50, 0xed, 0x53, 0x83, 0x54, 0x5b, 0x73, 0xb0, 0xe9, 0xf1, 0x19, 0xbc, 0xcc, 0x88, 0x5d, - 0x4a, 0x43, 0x9f, 0x43, 0xdd, 0xe5, 0x51, 0xa1, 0xf6, 0x59, 0x58, 0xf0, 0x31, 0x7b, 0x27, 0xe9, - 0xae, 0x09, 0xb1, 0xa4, 0xac, 0xb8, 0x89, 0xe0, 0x5a, 0x72, 0x8f, 0xdd, 0xbe, 0x37, 0x64, 0xa9, - 0xb0, 0xb2, 0xf9, 0x7e, 0x86, 0xc2, 0xb8, 0xe1, 0x1b, 0x3d, 0x26, 0xb6, 0x63, 0x7a, 0xce, 0xb1, - 0x22, 0x94, 0x34, 0x6f, 0xc3, 0x72, 0xf8, 0x01, 0xaa, 0x43, 0xfe, 0x09, 0x3e, 0xe6, 0x2f, 0x45, - 0x7e, 0x06, 0x93, 0x80, 0x25, 0x22, 0xd6, 0xb8, 0x9d, 0xfb, 0x1d, 0x49, 0x76, 0x00, 0x05, 0xbd, - 0x3c, 0xc6, 0x9e, 0xa6, 0x6b, 0x9e, 0x86, 0x10, 0x14, 0xe8, 0x1a, 0xc3, 0x54, 0xd0, 0xdf, 0x44, - 0xeb, 0x98, 0xcf, 0xec, 0xb2, 0x42, 0x7e, 0xa2, 0xd7, 0xa0, 0xec, 0x07, 0x3a, 0x5f, 0x68, 0x02, - 0x02, 0x49, 0xf8, 0x9a, 0xe7, 0xe1, 0x91, 0xed, 0xd1, 0x10, 0xa9, 0x2a, 0xa2, 0x29, 0xff, 0x77, - 0x01, 0xea, 0x89, 0x31, 0xf9, 0x04, 0x4a, 0x23, 0xde, 0x3d, 0x9f, 0x68, 0x6f, 0xa6, 0x64, 0xfd, - 0x84, 0xa9, 0x8a, 0x2f, 0x45, 0x92, 0x2a, 0x49, 0xb0, 0xa1, 0xc5, 0xd1, 0x6f, 0x93, 0x11, 0x1f, - 0x5a, 0x03, 0x55, 0x37, 0x1c, 0xdc, 0xf7, 0x2c, 0xe7, 0x98, 0x9b, 0xbb, 0x3c, 0xb4, 0x06, 0xdb, - 0x82, 0x86, 0x6e, 0x03, 0xe8, 0xa6, 0x4b, 0x06, 0xfb, 0xd0, 0x18, 0x50, 0xa3, 0x2b, 0x9b, 0x67, - 0x92, 0x46, 0xf8, 0x2b, 0xa1, 0x52, 0xd6, 0x4d, 0x97, 0x9b, 0x7f, 0x0f, 0xaa, 0x64, 0x41, 0x51, - 0x47, 0x6c, 0x11, 0x63, 0x91, 0x5e, 0xd9, 0x3c, 0x9b, 0xf6, 0x0e, 0xfe, 0x52, 0xa7, 0x2c, 0xdb, - 0x41, 0xc3, 0x45, 0xf7, 0x61, 0x91, 0x66, 0x76, 0xb7, 0xb1, 0x48, 0x85, 0x37, 0x26, 0x39, 0x80, - 0x47, 0xc4, 0x23, 0x2a, 0xc0, 0x02, 0x82, 0x4b, 0xa3, 0x7d, 0xa8, 0x68, 0xa6, 0x69, 0x79, 0x1a, - 0x4b, 0x34, 0x4b, 0x54, 0xd9, 0x7b, 0x33, 0x28, 0x6b, 0x05, 0x52, 0x4c, 0x63, 0x58, 0x0f, 0xfa, - 0x08, 0x8a, 0x34, 0x13, 0xf1, 0xa4, 0x71, 0x79, 0xc6, 0xa0, 0x55, 0x98, 0x54, 0xf3, 0x16, 0x54, - 0x42, 0xc6, 0xce, 0x13, 0xa4, 0xcd, 0xbb, 0x50, 0x8f, 0x9b, 0x36, 0x57, 0x90, 0xff, 0x3e, 0xac, - 0x29, 0x63, 0x33, 0x30, 0x4c, 0x94, 0x66, 0xb7, 0x61, 0x91, 0x0f, 0x36, 0x8b, 0x38, 0x79, 0xba, - 0x8f, 0x14, 0x2e, 0x11, 0xae, 0xb5, 0x8e, 0x34, 0x53, 0x1f, 0x62, 0x87, 0xf7, 0x2b, 0x6a, 0xad, - 0x87, 0x8c, 0x2a, 0x7f, 0x04, 0x27, 0x63, 0x9d, 0xf3, 0x52, 0xef, 0x4d, 0xa8, 0xd9, 0x96, 0xae, - 0xba, 0x8c, 0x4c, 0x56, 0x32, 0x9e, 0x86, 0x6c, 0x9f, 0xb7, 0xad, 0x13, 0xf1, 0x9e, 0x67, 0xd9, - 0x49, 0xe3, 0x67, 0x13, 0x6f, 0xc0, 0xa9, 0xb8, 0x38, 0xeb, 0x5e, 0xfe, 0x18, 0xd6, 0x15, 0x3c, - 0xb2, 0x9e, 0xe2, 0x17, 0x55, 0xdd, 0x84, 0x46, 0x52, 0x01, 0x57, 0xfe, 0x05, 0xac, 0x07, 0xd4, - 0x9e, 0xa7, 0x79, 0x63, 0x77, 0x2e, 0xe5, 0xbc, 0x0e, 0x3e, 0xb0, 0x5c, 0x36, 0x9c, 0x25, 0x45, - 0x34, 0xe5, 0x75, 0x28, 0x76, 0x2d, 0xbd, 0xdd, 0x45, 0x35, 0xc8, 0x19, 0x36, 0x17, 0xce, 0x19, - 0xb6, 0x6c, 0x84, 0xfb, 0xec, 0xb0, 0x7a, 0x84, 0x75, 0x1d, 0x67, 0x45, 0x77, 0xa1, 0xa6, 0xe9, - 0xba, 0x41, 0xc2, 0x49, 0x1b, 0xaa, 0x86, 0xcd, 0xca, 0xd5, 0xca, 0xe6, 0x7a, 0x6a, 0x00, 0xb4, - 0xbb, 0x4a, 0x35, 0x60, 0x6f, 0xdb, 0xae, 0xfc, 0x10, 0xca, 0xfe, 0x9a, 0x8f, 0xee, 0x04, 0x95, - 0x6d, 0x6e, 0xd6, 0x0a, 0xc1, 0x2f, 0x7e, 0xf7, 0x12, 0x6b, 0x14, 0x37, 0xf9, 0x0e, 0x80, 0x9f, - 0x4b, 0x45, 0xe9, 0x71, 0x66, 0x82, 0x62, 0x25, 0xc4, 0x2e, 0xff, 0xb4, 0x18, 0xce, 0xb0, 0x21, - 0x27, 0xe8, 0xbe, 0x13, 0xf4, 0x48, 0xc6, 0xcd, 0xbd, 0x50, 0xc6, 0xfd, 0x00, 0x8a, 0xae, 0xa7, - 0x79, 0x98, 0xd7, 0x6e, 0x17, 0x26, 0x89, 0x13, 0x23, 0xb0, 0xc2, 0xf8, 0xd1, 0x59, 0x80, 0xbe, - 0x83, 0x35, 0x0f, 0xeb, 0xaa, 0xc6, 0x96, 0x87, 0xbc, 0x52, 0xe6, 0x94, 0x96, 0x87, 0xb6, 0x82, - 0xfa, 0xb3, 0x48, 0x0d, 0xbb, 0x3a, 0x49, 0x73, 0x64, 0xa8, 0x83, 0x4a, 0xd4, 0x4f, 0x57, 0x8b, - 0x33, 0xa6, 0x2b, 0xae, 0x80, 0x49, 0x85, 0x92, 0xf1, 0xd2, 0xf4, 0x64, 0xcc, 0x44, 0x67, 0x49, - 0xc6, 0xa5, 0xe9, 0xc9, 0x98, 0x2b, 0x9b, 0x9c, 0x8c, 0x53, 0xd2, 0x4f, 0x39, 0x2d, 0xfd, 0x7c, - 0x97, 0x69, 0xf7, 0x9f, 0x24, 0x68, 0x24, 0xb3, 0x00, 0xcf, 0x7e, 0xb7, 0x61, 0xd1, 0xa5, 0x94, - 0x59, 0x72, 0x2f, 0x97, 0xe5, 0x12, 0xe8, 0x21, 0x14, 0x0c, 0xf3, 0xd0, 0xe2, 0x93, 0xf6, 0xfd, - 0x19, 0x24, 0x79, 0xaf, 0x1b, 0x6d, 0xf3, 0xd0, 0x62, 0xde, 0xa4, 0x1a, 0x9a, 0x1f, 0x40, 0xd9, - 0x27, 0xcd, 0xf5, 0x6e, 0xbb, 0xb0, 0x16, 0x8b, 0x6d, 0xb6, 0xdd, 0xf0, 0xa7, 0x84, 0x34, 0xdf, - 0x94, 0x90, 0x7f, 0x92, 0x0b, 0x4f, 0xd9, 0xfb, 0xc6, 0xd0, 0xc3, 0x4e, 0x62, 0xca, 0x7e, 0x28, - 0xb4, 0xb3, 0xf9, 0x7a, 0x69, 0xaa, 0x76, 0x56, 0xc1, 0xf3, 0x59, 0xf7, 0x15, 0xd4, 0x68, 0x50, - 0xaa, 0x2e, 0x1e, 0xd2, 0x92, 0x87, 0x97, 0x9f, 0xdf, 0x9b, 0xa4, 0x86, 0x59, 0xc2, 0x42, 0xbb, - 0xc7, 0xe5, 0x98, 0x07, 0xab, 0xc3, 0x30, 0xad, 0xf9, 0x09, 0xa0, 0x24, 0xd3, 0x5c, 0x3e, 0xed, - 0x91, 0x5c, 0x48, 0x36, 0xe2, 0x29, 0xeb, 0xf4, 0x21, 0x35, 0x63, 0x96, 0x58, 0x61, 0x06, 0x2b, - 0x5c, 0x42, 0xfe, 0xaf, 0x3c, 0x40, 0xf0, 0xf0, 0xff, 0x51, 0x12, 0xfc, 0xc4, 0x4f, 0x40, 0xac, - 0x94, 0xbc, 0x32, 0x49, 0x71, 0x6a, 0xea, 0xd9, 0x8d, 0xa6, 0x1e, 0x56, 0x54, 0xbe, 0x33, 0x51, - 0xcd, 0xdc, 0x49, 0x67, 0xe9, 0xb7, 0x2d, 0xe9, 0x3c, 0x82, 0x53, 0xf1, 0x20, 0xe2, 0x19, 0x67, - 0x13, 0x8a, 0x86, 0x87, 0x47, 0x0c, 0xb5, 0x4a, 0xdd, 0xf4, 0x86, 0x84, 0x18, 0xab, 0xfc, 0x17, - 0x12, 0x94, 0xdb, 0x23, 0x6d, 0x80, 0x7b, 0x36, 0xee, 0x93, 0x5e, 0x0d, 0xd2, 0xe0, 0x96, 0xb0, - 0x06, 0xea, 0x44, 0xdd, 0xcc, 0x92, 0xd2, 0xdb, 0x29, 0x5b, 0x6a, 0xa1, 0x67, 0xb2, 0x97, 0x5f, - 0xda, 0x03, 0x9b, 0x50, 0xfa, 0x3e, 0x3e, 0x66, 0xe9, 0x68, 0x46, 0x39, 0xf9, 0x1f, 0x72, 0xb0, - 0x4e, 0x97, 0xc3, 0x2d, 0x01, 0x62, 0x29, 0xd8, 0xb5, 0xc6, 0x4e, 0x1f, 0xbb, 0x34, 0x4e, 0xed, - 0xb1, 0x6a, 0x63, 0xc7, 0xb0, 0x74, 0x0e, 0xa3, 0x94, 0xfb, 0xf6, 0xb8, 0x4b, 0x09, 0xe8, 0x0c, - 0x90, 0x86, 0xfa, 0xf5, 0xd8, 0xe2, 0x53, 0x28, 0xaf, 0x94, 0xfa, 0xf6, 0xf8, 0xf7, 0x48, 0x5b, - 0xc8, 0xba, 0x47, 0x9a, 0x83, 0x5d, 0x3a, 0x43, 0x98, 0x6c, 0x8f, 0x12, 0xd0, 0x0d, 0x38, 0x39, - 0xc2, 0x23, 0xcb, 0x39, 0x56, 0x87, 0xc6, 0xc8, 0xf0, 0x54, 0xc3, 0x54, 0x0f, 0x8e, 0x3d, 0xec, - 0xf2, 0xd9, 0x80, 0xd8, 0xc3, 0x47, 0xe4, 0x59, 0xdb, 0xbc, 0x47, 0x9e, 0x20, 0x19, 0xaa, 0x96, - 0x35, 0x52, 0xdd, 0xbe, 0xe5, 0x60, 0x55, 0xd3, 0x7f, 0x44, 0x2b, 0x84, 0xbc, 0x52, 0xb1, 0xac, - 0x51, 0x8f, 0xd0, 0x5a, 0xfa, 0x8f, 0xd0, 0xeb, 0x50, 0xe9, 0xdb, 0x63, 0x17, 0x7b, 0x2a, 0xf9, - 0x43, 0x0b, 0x80, 0xb2, 0x02, 0x8c, 0xb4, 0x65, 0x8f, 0xdd, 0x10, 0xc3, 0x88, 0x04, 0xc4, 0x52, - 0x98, 0xe1, 0x31, 0x1e, 0x51, 0xbc, 0xe6, 0x68, 0x3c, 0xc0, 0xb6, 0x36, 0xc0, 0xcc, 0x34, 0xb1, - 0x72, 0xa7, 0xe0, 0x35, 0x0f, 0x39, 0x23, 0x35, 0x53, 0xa9, 0x1d, 0x85, 0x9b, 0xae, 0x7c, 0x0f, - 0xaa, 0x11, 0x06, 0xe2, 0x2f, 0xaa, 0xd6, 0x35, 0x7e, 0x2c, 0x02, 0xa9, 0x44, 0x08, 0x3d, 0xe3, - 0xc7, 0x14, 0xad, 0xa2, 0xdd, 0x51, 0x47, 0x16, 0x14, 0xd6, 0x90, 0x35, 0xa8, 0x46, 0x40, 0x21, - 0xb2, 0x3f, 0xa7, 0xe8, 0x0f, 0xdf, 0x9f, 0x93, 0xdf, 0x84, 0xe6, 0x58, 0x43, 0x31, 0xae, 0xf4, - 0x37, 0xa1, 0x79, 0xc7, 0xb6, 0xd8, 0x9c, 0xd3, 0xdf, 0xb4, 0x0b, 0xfc, 0x94, 0xa3, 0x8a, 0x65, - 0x85, 0x35, 0x64, 0x1d, 0x60, 0x4b, 0xb3, 0xb5, 0x03, 0x63, 0x68, 0x78, 0xc7, 0xe8, 0x2a, 0xd4, - 0x35, 0x5d, 0x57, 0xfb, 0x82, 0x62, 0x60, 0x81, 0xf5, 0xae, 0x68, 0xba, 0xbe, 0x15, 0x22, 0xa3, - 0xb7, 0x60, 0x55, 0x77, 0x2c, 0x3b, 0xca, 0xcb, 0xc0, 0xdf, 0x3a, 0x79, 0x10, 0x66, 0x96, 0xff, - 0xad, 0x08, 0x67, 0xa3, 0x61, 0x16, 0x07, 0xde, 0x3e, 0x81, 0xe5, 0x58, 0xaf, 0x19, 0x00, 0x55, - 0x60, 0xad, 0x12, 0x91, 0x88, 0x01, 0x49, 0xb9, 0x04, 0x90, 0x94, 0x0a, 0xed, 0xe5, 0x5f, 0x29, - 0xb4, 0x57, 0x78, 0x25, 0xd0, 0x5e, 0xf1, 0xe5, 0xa0, 0xbd, 0xe5, 0x39, 0xa1, 0xbd, 0x4b, 0x34, - 0xb9, 0x8b, 0xde, 0x29, 0x8a, 0xc2, 0x26, 0x4e, 0xd5, 0xef, 0xc3, 0x14, 0x87, 0x0c, 0x31, 0x08, - 0x70, 0x69, 0x1e, 0x08, 0xb0, 0x94, 0x09, 0x01, 0x92, 0xa8, 0xb3, 0x6d, 0xcd, 0x19, 0x59, 0x8e, - 0xc0, 0xf8, 0x78, 0x51, 0xbb, 0x22, 0xe8, 0x1c, 0xdf, 0xcb, 0x44, 0x03, 0x21, 0x0b, 0x0d, 0x44, - 0xe7, 0x61, 0xd9, 0xb4, 0x54, 0x13, 0x3f, 0x53, 0x49, 0x2c, 0xb8, 0x8d, 0x0a, 0x0b, 0x0c, 0xd3, - 0xea, 0xe0, 0x67, 0x5d, 0x42, 0x41, 0x17, 0x60, 0x79, 0xa4, 0xb9, 0x4f, 0xb0, 0x4e, 0x55, 0xb9, - 0x8d, 0x2a, 0x0d, 0xe2, 0x0a, 0xa3, 0x11, 0x1d, 0x2e, 0xba, 0x08, 0xfe, 0x4b, 0x72, 0xa6, 0x1a, - 0x65, 0xaa, 0x0a, 0x2a, 0x65, 0x93, 0xff, 0x4a, 0x82, 0xb5, 0x68, 0x98, 0x73, 0x94, 0xe8, 0x01, - 0x94, 0x1d, 0x91, 0x57, 0x79, 0x68, 0x5f, 0xcd, 0xd8, 0x97, 0x24, 0x13, 0xb1, 0x12, 0xc8, 0xa2, - 0x1f, 0x64, 0x82, 0x93, 0xd7, 0xa7, 0xe9, 0x9b, 0x06, 0x4f, 0xca, 0x0e, 0xbc, 0xfe, 0x99, 0x61, - 0xea, 0xd6, 0x33, 0x37, 0x73, 0x96, 0xa6, 0xc4, 0x8a, 0x94, 0x11, 0x2b, 0x7d, 0x07, 0xeb, 0xd8, - 0xf4, 0x0c, 0x6d, 0xa8, 0xba, 0x36, 0xee, 0x0b, 0x90, 0x24, 0x20, 0x93, 0x15, 0x51, 0xfe, 0x85, - 0x04, 0xa7, 0xe2, 0x9d, 0x72, 0x9f, 0xb5, 0x93, 0x3e, 0x7b, 0x2b, 0xf9, 0x8e, 0x71, 0xe1, 0x54, - 0xaf, 0x7d, 0x95, 0xe9, 0xb5, 0x1b, 0xd3, 0x35, 0x4e, 0xf5, 0xdb, 0x9f, 0x4b, 0x70, 0x3a, 0xd3, - 0x8c, 0xd8, 0x4a, 0x28, 0xc5, 0x57, 0x42, 0xbe, 0x8a, 0xf6, 0xad, 0xb1, 0xe9, 0x85, 0x56, 0xd1, - 0x2d, 0x7a, 0xe4, 0xc4, 0x96, 0x2b, 0x75, 0xa4, 0x3d, 0x37, 0x46, 0xe3, 0x11, 0x5f, 0x46, 0x89, - 0xba, 0xc7, 0x8c, 0xf2, 0x02, 0xeb, 0xa8, 0xdc, 0x82, 0x55, 0xdf, 0xca, 0x89, 0xb8, 0x6f, 0x08, - 0xc7, 0xcd, 0x45, 0x71, 0x5c, 0x13, 0x16, 0xb7, 0xf1, 0x53, 0xa3, 0x8f, 0x5f, 0xc9, 0x99, 0xd8, - 0x79, 0xa8, 0xd8, 0xd8, 0x19, 0x19, 0xae, 0xeb, 0x67, 0xe4, 0xb2, 0x12, 0x26, 0xc9, 0xff, 0xbe, - 0x08, 0x2b, 0xf1, 0xe8, 0xf8, 0x38, 0x01, 0x1b, 0xbf, 0x91, 0xb2, 0x56, 0xc4, 0x5f, 0x34, 0x54, - 0xbe, 0xdf, 0x10, 0x35, 0x5d, 0x2e, 0x0b, 0x62, 0xf1, 0xeb, 0x36, 0x51, 0xf0, 0x35, 0x60, 0xa9, - 0x6f, 0x8d, 0x46, 0x9a, 0xa9, 0x8b, 0xa3, 0x4c, 0xde, 0x24, 0xfe, 0xd3, 0x9c, 0x01, 0x71, 0x3b, - 0x21, 0xd3, 0xdf, 0x64, 0xf0, 0x9e, 0x59, 0xce, 0x13, 0xc3, 0xa4, 0xf0, 0x33, 0xcd, 0xea, 0x65, - 0x05, 0x38, 0x69, 0xdb, 0x70, 0xd0, 0x06, 0x14, 0xb0, 0xf9, 0x54, 0xd4, 0xe7, 0x29, 0x67, 0x9d, - 0xa2, 0x9a, 0x53, 0x28, 0x1f, 0xba, 0x0e, 0x8b, 0x23, 0x12, 0x16, 0x02, 0x99, 0x58, 0xcf, 0x38, - 0xf2, 0x53, 0x38, 0x1b, 0xda, 0x84, 0x25, 0x9d, 0x8e, 0x93, 0x28, 0x62, 0x1a, 0x29, 0xa0, 0x36, - 0x65, 0x50, 0x04, 0x23, 0xda, 0xf1, 0x77, 0x1f, 0xe5, 0xac, 0x6d, 0x43, 0x6c, 0x28, 0x52, 0xb7, - 0x20, 0x7b, 0xd1, 0xda, 0x18, 0xa8, 0xae, 0xcd, 0xe9, 0xba, 0x26, 0xef, 0x43, 0x4e, 0x43, 0x69, - 0x68, 0x0d, 0x58, 0x18, 0x55, 0xd8, 0x29, 0xf9, 0xd0, 0x1a, 0xd0, 0x28, 0x5a, 0x23, 0xbb, 0x31, - 0xdd, 0x30, 0xe9, 0xf2, 0x57, 0x52, 0x58, 0x83, 0x4c, 0x3e, 0xfa, 0x43, 0xb5, 0xcc, 0x3e, 0x6e, - 0x54, 0xe9, 0xa3, 0x32, 0xa5, 0xec, 0x9a, 0x7d, 0x5a, 0x25, 0x7b, 0xde, 0x71, 0xa3, 0x46, 0xe9, - 0xe4, 0x27, 0xd9, 0x68, 0x33, 0xf0, 0x68, 0x25, 0x6b, 0xa3, 0x9d, 0x96, 0xdf, 0x05, 0x76, 0x74, - 0x0f, 0x96, 0x9e, 0xb1, 0x44, 0xd0, 0xa8, 0x53, 0xf9, 0x2b, 0xd3, 0xd3, 0x0b, 0xd7, 0x20, 0x04, - 0xbf, 0xcb, 0x2d, 0xd4, 0xdf, 0x48, 0x70, 0x6a, 0x8b, 0xee, 0x43, 0x43, 0x79, 0x6c, 0x1e, 0xf0, - 0xf6, 0x96, 0x8f, 0xab, 0x67, 0x02, 0xa2, 0xf1, 0xf7, 0x16, 0xb0, 0x7a, 0x1b, 0x6a, 0x42, 0x39, - 0x57, 0x91, 0x9f, 0x19, 0x9a, 0xaf, 0xba, 0xe1, 0xa6, 0xfc, 0x21, 0xac, 0x27, 0xde, 0x82, 0x6f, - 0x05, 0x2f, 0xc0, 0x72, 0x90, 0xaf, 0xfc, 0x97, 0xa8, 0xf8, 0xb4, 0xb6, 0x2e, 0xdf, 0x86, 0x93, - 0x3d, 0x4f, 0x73, 0xbc, 0x84, 0x0b, 0x66, 0x90, 0xa5, 0xa0, 0x7b, 0x54, 0x96, 0xe3, 0xe2, 0x3d, - 0x58, 0xeb, 0x79, 0x96, 0xfd, 0x02, 0x4a, 0x49, 0xd6, 0x21, 0xef, 0x6f, 0x8d, 0xc5, 0xfa, 0x20, - 0x9a, 0xf2, 0x3a, 0x3b, 0x22, 0x48, 0xf6, 0x76, 0x07, 0x4e, 0x31, 0x84, 0xfe, 0x45, 0x5e, 0xe2, - 0xb4, 0x38, 0x1f, 0x48, 0xea, 0x7d, 0x0c, 0x27, 0x82, 0x65, 0x31, 0xc0, 0xbe, 0x6e, 0x46, 0xb1, - 0xaf, 0xf3, 0x13, 0x46, 0x3d, 0x02, 0x7d, 0xfd, 0x69, 0x2e, 0x94, 0xd7, 0x33, 0x90, 0xaf, 0x3b, - 0x51, 0xe4, 0xeb, 0xe2, 0x34, 0xdd, 0x11, 0xe0, 0x2b, 0x19, 0xb5, 0xf9, 0x94, 0xa8, 0xfd, 0x32, - 0x01, 0x8f, 0x15, 0xb2, 0xf0, 0xc5, 0x98, 0xb5, 0xbf, 0x11, 0x74, 0x4c, 0x61, 0xe8, 0x98, 0xdf, - 0xb5, 0x7f, 0xa0, 0x72, 0x2b, 0x86, 0x8e, 0x5d, 0x98, 0x6a, 0xaf, 0x0f, 0x8e, 0xfd, 0x65, 0x01, - 0xca, 0xfe, 0xb3, 0x84, 0xcf, 0x93, 0x6e, 0xcb, 0xa5, 0xb8, 0x2d, 0xbc, 0x02, 0xe7, 0x5f, 0x6a, - 0x05, 0x2e, 0xcc, 0xbc, 0x02, 0x9f, 0x81, 0x32, 0xfd, 0xa1, 0x3a, 0xf8, 0x90, 0xaf, 0xa8, 0x25, - 0x4a, 0x50, 0xf0, 0x61, 0x10, 0x86, 0x8b, 0x73, 0x85, 0x61, 0x0c, 0x8f, 0x5b, 0x8a, 0xe3, 0x71, - 0x1f, 0xfb, 0x2b, 0x22, 0x5b, 0x44, 0x2f, 0x4f, 0xd0, 0x9b, 0xba, 0x16, 0xc6, 0x70, 0xa2, 0x72, - 0x16, 0x4e, 0x14, 0x68, 0x99, 0x8c, 0x13, 0x7d, 0x87, 0x2b, 0xc4, 0x3e, 0x03, 0xd9, 0xc2, 0xb1, - 0xc8, 0x33, 0xeb, 0x1d, 0x00, 0x3f, 0x89, 0x08, 0xa4, 0xed, 0xcc, 0x84, 0x77, 0x54, 0x42, 0xec, - 0x44, 0x6d, 0x64, 0x68, 0x82, 0x43, 0xc3, 0xd9, 0xf2, 0x63, 0xc6, 0x89, 0xe1, 0xff, 0x16, 0x43, - 0xf9, 0x25, 0xe3, 0x30, 0xec, 0xe3, 0x04, 0x0e, 0x3c, 0x67, 0x14, 0xdf, 0x8c, 0xc2, 0xc0, 0x2f, - 0x18, 0x75, 0x09, 0x14, 0x98, 0x56, 0x2e, 0x9a, 0xc3, 0x1f, 0x33, 0xac, 0xab, 0xcc, 0x29, 0x2d, - 0xba, 0x33, 0x38, 0x34, 0x4c, 0xc3, 0x3d, 0x62, 0xcf, 0x17, 0xd9, 0xce, 0x40, 0x90, 0x5a, 0x14, - 0x6d, 0xc2, 0xcf, 0x0d, 0x4f, 0xed, 0x5b, 0x3a, 0xa6, 0x31, 0x5d, 0x54, 0x4a, 0x84, 0xb0, 0x65, - 0xe9, 0x38, 0x98, 0x79, 0xa5, 0x17, 0x9b, 0x79, 0xe5, 0xd8, 0xcc, 0x3b, 0x05, 0x8b, 0x0e, 0xd6, - 0x5c, 0xcb, 0xe4, 0xfb, 0x70, 0xde, 0x22, 0x43, 0x33, 0xc2, 0xae, 0x4b, 0x7a, 0xe2, 0xe5, 0x1a, - 0x6f, 0x86, 0xca, 0xcc, 0xe5, 0xa9, 0x65, 0xe6, 0x84, 0x43, 0xb6, 0x58, 0x99, 0x59, 0x9d, 0x5a, - 0x66, 0xce, 0x74, 0xc6, 0x16, 0x14, 0xda, 0xb5, 0xd9, 0x0a, 0xed, 0x70, 0x5d, 0xba, 0x12, 0xa9, - 0x4b, 0xbf, 0xcb, 0xc9, 0xfa, 0x2b, 0x09, 0xd6, 0x13, 0xd3, 0x8a, 0x4f, 0xd7, 0x5b, 0xb1, 0x53, - 0xb8, 0x0b, 0x53, 0x7d, 0xe6, 0x1f, 0xc2, 0x3d, 0x88, 0x1c, 0xc2, 0xbd, 0x37, 0x5d, 0xf0, 0x95, - 0x9f, 0xc1, 0xfd, 0xa1, 0x04, 0xaf, 0xef, 0xdb, 0x7a, 0xac, 0xc2, 0xe3, 0xdb, 0xfe, 0xd9, 0x13, - 0xc7, 0xc7, 0xa2, 0xd6, 0xcf, 0xcd, 0x0b, 0xc8, 0x30, 0x39, 0x59, 0x86, 0xf3, 0xd9, 0x66, 0xf0, - 0x92, 0xe9, 0x87, 0xb0, 0xb2, 0xf3, 0x1c, 0xf7, 0x7b, 0xc7, 0x66, 0x7f, 0x0e, 0xd3, 0xea, 0x90, - 0xef, 0x8f, 0x74, 0x0e, 0xa7, 0x92, 0x9f, 0xe1, 0x2a, 0x30, 0x1f, 0xad, 0x02, 0x55, 0xa8, 0x07, - 0x3d, 0xf0, 0xe1, 0x3d, 0x45, 0x86, 0x57, 0x27, 0xcc, 0x44, 0xf9, 0xb2, 0xc2, 0x5b, 0x9c, 0x8e, - 0x1d, 0x76, 0x67, 0x85, 0xd1, 0xb1, 0xe3, 0x44, 0xb3, 0x45, 0x3e, 0x9a, 0x2d, 0xe4, 0x3f, 0x91, - 0xa0, 0x42, 0x7a, 0x78, 0x29, 0xfb, 0xf9, 0x56, 0x2b, 0x1f, 0x6c, 0xb5, 0xfc, 0x1d, 0x5b, 0x21, - 0xbc, 0x63, 0x0b, 0x2c, 0x2f, 0x52, 0x72, 0xd2, 0xf2, 0x45, 0x9f, 0x8e, 0x1d, 0x47, 0x3e, 0x0f, - 0xcb, 0xcc, 0x36, 0xfe, 0xe6, 0x75, 0xc8, 0x8f, 0x9d, 0xa1, 0x88, 0xa3, 0xb1, 0x33, 0x94, 0xff, - 0x48, 0x82, 0x6a, 0xcb, 0xf3, 0xb4, 0xfe, 0xd1, 0x1c, 0x2f, 0xe0, 0x1b, 0x97, 0x0b, 0x1b, 0x97, - 0x7c, 0x89, 0xc0, 0xdc, 0x42, 0x86, 0xb9, 0xc5, 0x88, 0xb9, 0x32, 0xd4, 0x84, 0x2d, 0x99, 0x06, - 0x77, 0x00, 0x75, 0x2d, 0xc7, 0xbb, 0x6f, 0x39, 0xcf, 0x34, 0x47, 0x9f, 0x6f, 0x07, 0x86, 0xa0, - 0xc0, 0x6f, 0x40, 0xe7, 0xaf, 0x14, 0x15, 0xfa, 0x5b, 0xbe, 0x0c, 0x27, 0x22, 0xfa, 0x32, 0x3b, - 0xfe, 0x04, 0x2a, 0x34, 0xef, 0xf3, 0x52, 0xfc, 0x46, 0xf8, 0xd4, 0x6b, 0xa6, 0x55, 0x42, 0xfe, - 0x5d, 0x58, 0x25, 0xf5, 0x01, 0xa5, 0xfb, 0x53, 0xf1, 0x7b, 0xb1, 0x3a, 0xf5, 0x6c, 0x86, 0xa2, - 0x58, 0x8d, 0xfa, 0x1f, 0x12, 0x14, 0x29, 0x3d, 0xb1, 0x66, 0x9f, 0x81, 0xb2, 0x83, 0x6d, 0x4b, - 0xf5, 0xb4, 0x81, 0x7f, 0xdf, 0x9c, 0x10, 0xf6, 0xb4, 0x01, 0x45, 0x73, 0xe9, 0x43, 0xdd, 0x18, - 0x60, 0xd7, 0x13, 0x97, 0xce, 0x2b, 0x84, 0xb6, 0xcd, 0x48, 0xc4, 0x49, 0xf4, 0x10, 0xa6, 0x40, - 0xcf, 0x5a, 0xe8, 0x6f, 0xb4, 0xc1, 0x6e, 0x39, 0xce, 0x82, 0xbd, 0xd3, 0x3b, 0x90, 0x4d, 0x28, - 0xc5, 0xe0, 0x72, 0xbf, 0x8d, 0xae, 0x43, 0x81, 0x42, 0x9e, 0x4b, 0xd3, 0xfd, 0x46, 0x19, 0xe5, - 0x1d, 0x40, 0x61, 0xb7, 0xf1, 0x01, 0xba, 0x0e, 0x8b, 0xd4, 0xab, 0xa2, 0x9c, 0x5a, 0xcf, 0x50, - 0xa4, 0x70, 0x36, 0x59, 0x03, 0xc4, 0x34, 0x47, 0x4a, 0xa8, 0xf9, 0x87, 0x71, 0x42, 0x49, 0xf5, - 0xd7, 0x12, 0x9c, 0x88, 0xf4, 0xc1, 0x6d, 0x7d, 0x27, 0xda, 0x49, 0xa6, 0xa9, 0xbc, 0x83, 0xad, - 0xc8, 0x1a, 0x72, 0x3d, 0xcb, 0xa4, 0x5f, 0xd3, 0xfa, 0xf1, 0xb7, 0x12, 0x40, 0x6b, 0xec, 0x1d, - 0x71, 0x28, 0x31, 0x3c, 0x94, 0x52, 0x6c, 0x28, 0x9b, 0x50, 0xb2, 0x35, 0xd7, 0x7d, 0x66, 0x39, - 0x62, 0x13, 0xe4, 0xb7, 0x29, 0xe8, 0x37, 0xf6, 0x8e, 0xc4, 0x21, 0x1b, 0xf9, 0x8d, 0x2e, 0x42, - 0x8d, 0x7d, 0x14, 0xa1, 0x6a, 0xba, 0xee, 0x60, 0xd7, 0xe5, 0xa7, 0x6d, 0x55, 0x46, 0x6d, 0x31, - 0x22, 0x61, 0x33, 0x28, 0x0c, 0xee, 0x1d, 0xab, 0x9e, 0xf5, 0x04, 0x9b, 0x7c, 0x33, 0x53, 0x15, - 0xd4, 0x3d, 0x42, 0x64, 0xc7, 0x0e, 0x03, 0xc3, 0xf5, 0x1c, 0xc1, 0x26, 0x4e, 0x66, 0x38, 0x95, - 0xb2, 0x91, 0x41, 0xa9, 0x77, 0xc7, 0xc3, 0x21, 0x73, 0xf1, 0x8b, 0x0f, 0xfb, 0xbb, 0xfc, 0x85, - 0x72, 0x59, 0x93, 0x20, 0x70, 0x1a, 0x7f, 0xdd, 0x57, 0x88, 0xda, 0xbc, 0x0b, 0xab, 0xa1, 0x77, - 0xe0, 0x61, 0x15, 0xa9, 0x3a, 0xa5, 0x68, 0xd5, 0x29, 0x3f, 0x00, 0xc4, 0x80, 0x8a, 0x97, 0x7c, - 0x6f, 0xf9, 0x24, 0x9c, 0x88, 0x28, 0xe2, 0x4b, 0xf7, 0x35, 0xa8, 0xf2, 0x2b, 0x66, 0x3c, 0x50, - 0x4e, 0x43, 0x89, 0xa4, 0xe0, 0xbe, 0xa1, 0x8b, 0x13, 0xd8, 0x25, 0xdb, 0xd2, 0xb7, 0x0c, 0xdd, - 0x91, 0x3f, 0x83, 0xaa, 0xc2, 0xfa, 0xe1, 0xbc, 0xf7, 0xa1, 0xc6, 0x2f, 0xa4, 0xa9, 0x91, 0xab, - 0xa6, 0x69, 0xdf, 0x39, 0x84, 0x3b, 0x51, 0xaa, 0x66, 0xb8, 0x29, 0xeb, 0xd0, 0x64, 0x35, 0x46, - 0x44, 0xbd, 0x78, 0xd9, 0xfb, 0x20, 0x6e, 0x60, 0x4c, 0xed, 0x25, 0x2a, 0x5f, 0x75, 0xc2, 0x4d, - 0xf9, 0x2c, 0x9c, 0x49, 0xed, 0x85, 0x7b, 0xc2, 0x86, 0x7a, 0xf0, 0x80, 0xdd, 0x87, 0xf4, 0x8f, - 0x98, 0xa5, 0xd0, 0x11, 0xf3, 0x29, 0xbf, 0xaa, 0xcc, 0x89, 0x55, 0x8f, 0x96, 0x8c, 0xc1, 0xfe, - 0x20, 0x9f, 0xb5, 0x3f, 0x28, 0x44, 0xf6, 0x07, 0x72, 0xcf, 0xf7, 0x27, 0xdf, 0xb7, 0xdd, 0xa3, - 0xfb, 0x4b, 0xd6, 0xb7, 0x48, 0x88, 0xf2, 0xa4, 0xb7, 0x64, 0xac, 0x4a, 0x48, 0x4a, 0xbe, 0x0a, - 0xd5, 0x68, 0x6a, 0x0c, 0xe5, 0x39, 0x29, 0x91, 0xe7, 0x6a, 0xb1, 0x14, 0xf7, 0x41, 0xac, 0x64, - 0xce, 0xf6, 0x71, 0xac, 0x60, 0xbe, 0x1b, 0x49, 0x76, 0xd7, 0x52, 0x4e, 0x87, 0x7f, 0x4d, 0x79, - 0x6e, 0x8d, 0xaf, 0x07, 0xf7, 0x5d, 0x22, 0xcf, 0x5f, 0x5a, 0x7e, 0x03, 0x2a, 0xfb, 0x59, 0xdf, - 0xc9, 0x14, 0xc4, 0xbd, 0x90, 0x9b, 0xb0, 0x76, 0xdf, 0x18, 0x62, 0xf7, 0xd8, 0xf5, 0xf0, 0xa8, - 0x4d, 0x93, 0xd2, 0xa1, 0x81, 0x1d, 0x74, 0x0e, 0x80, 0xee, 0x79, 0x6c, 0xcb, 0xf0, 0x3f, 0x9f, - 0x08, 0x51, 0xe4, 0xff, 0x94, 0x60, 0x25, 0x10, 0xdc, 0xa7, 0x7b, 0xbd, 0xd7, 0xa0, 0x4c, 0xde, - 0xd7, 0xf5, 0xb4, 0x91, 0x2d, 0x0e, 0xc0, 0x7c, 0x02, 0xba, 0x03, 0xc5, 0x43, 0x57, 0x60, 0x4c, - 0xa9, 0x88, 0x7b, 0x9a, 0x21, 0x4a, 0xe1, 0xd0, 0x6d, 0xeb, 0xe8, 0x43, 0x80, 0xb1, 0x8b, 0x75, - 0x7e, 0xe8, 0x95, 0xcf, 0x2a, 0x2f, 0xf6, 0xc3, 0x27, 0xe7, 0x44, 0x80, 0x5d, 0x29, 0xb9, 0x0b, - 0x15, 0xc3, 0xb4, 0x74, 0x4c, 0x4f, 0x33, 0x75, 0x0e, 0x43, 0x4d, 0x11, 0x07, 0x26, 0xb1, 0xef, - 0x62, 0x5d, 0xc6, 0x7c, 0x2d, 0x14, 0xfe, 0xe5, 0x81, 0xd2, 0x81, 0x55, 0x96, 0xb4, 0x0e, 0x7d, - 0xc3, 0x45, 0xc4, 0x5e, 0x98, 0xf4, 0x76, 0xd4, 0x5b, 0x4a, 0xdd, 0xe0, 0xb5, 0x90, 0x10, 0x95, - 0x6f, 0xc3, 0xc9, 0xc8, 0x96, 0x6a, 0x8e, 0x3d, 0x8e, 0xdc, 0x8d, 0x21, 0x2b, 0x41, 0x38, 0x73, - 0xdc, 0x42, 0x44, 0xf3, 0x34, 0xdc, 0xc2, 0x65, 0xb8, 0x85, 0x2b, 0x7f, 0x09, 0xa7, 0x23, 0x10, - 0x50, 0xc4, 0xa2, 0xbb, 0xb1, 0x52, 0xef, 0xd2, 0x34, 0xad, 0xb1, 0x9a, 0xef, 0x7f, 0x24, 0x58, - 0x4b, 0x63, 0x78, 0x41, 0x88, 0xf2, 0x87, 0x19, 0x17, 0x1f, 0x6f, 0xcd, 0x66, 0xd6, 0x6f, 0x04, - 0xde, 0xdd, 0x83, 0x66, 0x9a, 0x3f, 0x93, 0xa3, 0x94, 0x9f, 0x67, 0x94, 0x7e, 0x96, 0x0f, 0x41, - 0xf5, 0x2d, 0xcf, 0x73, 0x8c, 0x83, 0x31, 0x09, 0xf9, 0x57, 0x0e, 0x7f, 0xb5, 0x7d, 0x20, 0x87, - 0xb9, 0xf6, 0xc6, 0x04, 0xf1, 0xc0, 0x8e, 0x54, 0x30, 0xe7, 0xf3, 0x28, 0x98, 0xc3, 0x40, 0xf8, - 0x9b, 0xb3, 0xe9, 0xfb, 0xad, 0x45, 0x4c, 0x7f, 0x96, 0x83, 0x5a, 0x74, 0x88, 0xd0, 0x0e, 0x80, - 0xe6, 0x5b, 0xce, 0x27, 0xca, 0xc5, 0x99, 0x5e, 0x53, 0x09, 0x09, 0xa2, 0xb7, 0x21, 0xdf, 0xb7, - 0xc7, 0x7c, 0xd4, 0x52, 0x4e, 0x8f, 0xb7, 0xec, 0x31, 0xcb, 0x28, 0x84, 0x8d, 0x6c, 0xc2, 0xd8, - 0x65, 0x80, 0xec, 0x2c, 0xf9, 0x98, 0x3e, 0x67, 0x32, 0x9c, 0x19, 0x3d, 0x84, 0xda, 0x33, 0xc7, - 0xf0, 0xb4, 0x83, 0x21, 0x56, 0x87, 0xda, 0x31, 0x76, 0x78, 0x96, 0x9c, 0x21, 0x91, 0x55, 0x85, - 0xe0, 0x23, 0x22, 0x27, 0xff, 0x01, 0x94, 0x84, 0x45, 0x53, 0x56, 0x84, 0x3d, 0x58, 0x1f, 0x13, - 0x36, 0x95, 0x5e, 0xf5, 0x33, 0x35, 0xd3, 0x52, 0x5d, 0x4c, 0x96, 0x71, 0xf1, 0x9d, 0xc5, 0x94, - 0x14, 0xbd, 0x46, 0xa5, 0xb7, 0x2c, 0x07, 0x77, 0x34, 0xd3, 0xea, 0x31, 0x51, 0xf9, 0x29, 0x54, - 0x42, 0x2f, 0x38, 0xc5, 0x84, 0x36, 0xac, 0x8a, 0xb3, 0x7b, 0x17, 0x7b, 0x7c, 0x79, 0x99, 0xa9, - 0xf3, 0x15, 0x2e, 0xd7, 0xc3, 0x1e, 0xbb, 0x6f, 0x71, 0x17, 0x4e, 0x2b, 0xd8, 0xb2, 0xb1, 0xe9, - 0x8f, 0xe7, 0x23, 0x6b, 0x30, 0x47, 0x06, 0x7f, 0x0d, 0x9a, 0x69, 0xf2, 0x2c, 0x3f, 0x5c, 0xbb, - 0x04, 0x25, 0xf1, 0x45, 0x34, 0x5a, 0x82, 0xfc, 0xde, 0x56, 0xb7, 0xbe, 0x40, 0x7e, 0xec, 0x6f, - 0x77, 0xeb, 0x12, 0x2a, 0x41, 0xa1, 0xb7, 0xb5, 0xd7, 0xad, 0xe7, 0xae, 0x8d, 0xa0, 0x1e, 0xff, - 0x1c, 0x18, 0xad, 0xc3, 0x89, 0xae, 0xb2, 0xdb, 0x6d, 0x3d, 0x68, 0xed, 0xb5, 0x77, 0x3b, 0x6a, - 0x57, 0x69, 0x7f, 0xda, 0xda, 0xdb, 0xa9, 0x2f, 0xa0, 0x0b, 0x70, 0x36, 0xfc, 0xe0, 0xe1, 0x6e, - 0x6f, 0x4f, 0xdd, 0xdb, 0x55, 0xb7, 0x76, 0x3b, 0x7b, 0xad, 0x76, 0x67, 0x47, 0xa9, 0x4b, 0xe8, - 0x2c, 0x9c, 0x0e, 0xb3, 0xdc, 0x6b, 0x6f, 0xb7, 0x95, 0x9d, 0x2d, 0xf2, 0xbb, 0xf5, 0xa8, 0x9e, - 0xbb, 0xf6, 0x11, 0x54, 0x23, 0x5f, 0xef, 0x12, 0x93, 0xba, 0xbb, 0xdb, 0xf5, 0x05, 0x54, 0x85, - 0x72, 0x58, 0x4f, 0x09, 0x0a, 0x9d, 0xdd, 0xed, 0x9d, 0x7a, 0x0e, 0x01, 0x2c, 0xee, 0xb5, 0x94, - 0x07, 0x3b, 0x7b, 0xf5, 0xfc, 0xb5, 0xdb, 0xb0, 0x12, 0xbb, 0x3b, 0x8d, 0x56, 0xa1, 0xda, 0x6b, - 0x75, 0xb6, 0xef, 0xed, 0x7e, 0xae, 0x2a, 0x3b, 0xad, 0xed, 0x2f, 0xea, 0x0b, 0x68, 0x0d, 0xea, - 0x82, 0xd4, 0xd9, 0xdd, 0x63, 0x54, 0xe9, 0xda, 0x93, 0xd8, 0x7c, 0xc3, 0xe8, 0x24, 0xac, 0xfa, - 0x5d, 0xaa, 0x5b, 0xca, 0x4e, 0x6b, 0x6f, 0x87, 0x58, 0x12, 0x21, 0x2b, 0xfb, 0x9d, 0x4e, 0xbb, - 0xf3, 0xa0, 0x2e, 0x11, 0xad, 0x01, 0x79, 0xe7, 0xf3, 0x36, 0x61, 0xce, 0x45, 0x99, 0xf7, 0x3b, - 0xdf, 0xef, 0xec, 0x7e, 0xd6, 0xa9, 0xe7, 0x37, 0x7f, 0xb1, 0x0a, 0x35, 0x51, 0xf4, 0x61, 0x87, - 0x5e, 0x89, 0xe9, 0xc2, 0x92, 0xf8, 0xda, 0x3e, 0x25, 0x5b, 0x47, 0xff, 0x47, 0x40, 0xf3, 0xc2, - 0x04, 0x0e, 0x5e, 0x7b, 0x2f, 0xa0, 0x03, 0x5a, 0x0b, 0x87, 0xee, 0xb2, 0x5f, 0x4a, 0xad, 0x3c, - 0x13, 0xd7, 0xe7, 0x9b, 0x97, 0xa7, 0xf2, 0xf9, 0x7d, 0x60, 0x52, 0xee, 0x86, 0x3f, 0x17, 0x43, - 0x97, 0xd3, 0xea, 0xd4, 0x94, 0xef, 0xd1, 0x9a, 0x57, 0xa6, 0x33, 0xfa, 0xdd, 0x3c, 0x81, 0x7a, - 0xfc, 0xd3, 0x31, 0x94, 0x82, 0xbb, 0x66, 0x7c, 0x9f, 0xd6, 0xbc, 0x36, 0x0b, 0x6b, 0xb8, 0xb3, - 0xc4, 0xb7, 0x50, 0x57, 0x67, 0xf9, 0x66, 0x24, 0xb3, 0xb3, 0xac, 0xcf, 0x4b, 0x98, 0x03, 0xa3, - 0xd7, 0xcf, 0x51, 0xea, 0x87, 0x47, 0x29, 0x5f, 0x39, 0xa4, 0x39, 0x30, 0xfd, 0x26, 0xbb, 0xbc, - 0x80, 0x8e, 0x60, 0x25, 0x76, 0xb7, 0x01, 0xa5, 0x88, 0xa7, 0x5f, 0xe2, 0x68, 0x5e, 0x9d, 0x81, - 0x33, 0x1a, 0x11, 0xe1, 0xbb, 0x0c, 0xe9, 0x11, 0x91, 0x72, 0x53, 0x22, 0x3d, 0x22, 0x52, 0xaf, - 0x45, 0xd0, 0xe0, 0x8e, 0xdc, 0x61, 0x48, 0x0b, 0xee, 0xb4, 0x9b, 0x13, 0xcd, 0xcb, 0x53, 0xf9, - 0xc2, 0x4e, 0x8b, 0xdd, 0x68, 0x48, 0x73, 0x5a, 0xfa, 0x8d, 0x89, 0xe6, 0xd5, 0x19, 0x38, 0xe3, - 0x51, 0x10, 0x9c, 0x8f, 0x66, 0x45, 0x41, 0xe2, 0x34, 0x3f, 0x2b, 0x0a, 0x92, 0x47, 0xad, 0x3c, - 0x0a, 0x62, 0xe7, 0x9a, 0x57, 0x66, 0x38, 0x87, 0xc9, 0x8e, 0x82, 0xf4, 0x13, 0x1b, 0x79, 0x01, - 0xfd, 0x54, 0x82, 0x46, 0xd6, 0x19, 0x07, 0x4a, 0xa9, 0xf5, 0xa6, 0x1c, 0xcb, 0x34, 0x37, 0xe7, - 0x11, 0xf1, 0xad, 0xf8, 0x1a, 0x50, 0x72, 0x0d, 0x44, 0x6f, 0xa5, 0x8d, 0x4c, 0xc6, 0x4a, 0xdb, - 0x7c, 0x7b, 0x36, 0x66, 0xbf, 0xcb, 0x1e, 0x94, 0xc4, 0xa9, 0x0a, 0x4a, 0xc9, 0xd2, 0xb1, 0x33, - 0x9d, 0xa6, 0x3c, 0x89, 0xc5, 0x57, 0xfa, 0x00, 0x0a, 0x84, 0x8a, 0xce, 0xa6, 0x73, 0x0b, 0x65, - 0xe7, 0xb2, 0x1e, 0xfb, 0x8a, 0x1e, 0xc3, 0x22, 0x3b, 0x46, 0x40, 0x29, 0x28, 0x44, 0xe4, 0xb0, - 0xa3, 0x79, 0x3e, 0x9b, 0xc1, 0x57, 0xf7, 0x15, 0xfb, 0x47, 0x2c, 0xfc, 0x84, 0x00, 0xbd, 0x99, - 0xfe, 0xf1, 0x7a, 0xf4, 0x40, 0xa2, 0x79, 0x71, 0x0a, 0x57, 0x78, 0x52, 0xc4, 0x2a, 0xe0, 0xcb, - 0x53, 0xb7, 0x31, 0xd9, 0x93, 0x22, 0x7d, 0xa3, 0xc4, 0x82, 0x24, 0xb9, 0x91, 0x4a, 0x0b, 0x92, - 0xcc, 0xed, 0x6b, 0x5a, 0x90, 0x64, 0xef, 0xcd, 0xe4, 0x05, 0xe4, 0xc1, 0x89, 0x14, 0xd8, 0x0c, - 0xbd, 0x9d, 0x15, 0xe4, 0x69, 0x18, 0x5e, 0xf3, 0x9d, 0x19, 0xb9, 0xc3, 0x83, 0xcf, 0x27, 0xfd, - 0xeb, 0xd9, 0x58, 0x52, 0xe6, 0xe0, 0xc7, 0xa7, 0xf8, 0xe6, 0x3f, 0xe7, 0x61, 0x99, 0x41, 0xa2, - 0xbc, 0x82, 0xf9, 0x02, 0x20, 0x38, 0x8d, 0x40, 0x6f, 0xa4, 0xfb, 0x24, 0x72, 0xc4, 0xd3, 0x7c, - 0x73, 0x32, 0x53, 0x38, 0xd0, 0x42, 0xc8, 0x7e, 0x5a, 0xa0, 0x25, 0x0f, 0x30, 0xd2, 0x02, 0x2d, - 0xe5, 0x78, 0x40, 0x5e, 0x40, 0x9f, 0x42, 0xd9, 0x87, 0x90, 0x51, 0x1a, 0x04, 0x1d, 0xc3, 0xc8, - 0x9b, 0x6f, 0x4c, 0xe4, 0x09, 0x5b, 0x1d, 0xc2, 0x87, 0xd3, 0xac, 0x4e, 0xe2, 0xd0, 0x69, 0x56, - 0xa7, 0x81, 0xcc, 0x81, 0x4f, 0x18, 0x8a, 0x94, 0xe9, 0x93, 0x08, 0x88, 0x97, 0xe9, 0x93, 0x28, - 0x14, 0x25, 0x2f, 0xdc, 0xbb, 0xf4, 0xcb, 0x6f, 0xce, 0x49, 0xff, 0xf8, 0xcd, 0xb9, 0x85, 0x9f, - 0x7c, 0x7b, 0x4e, 0xfa, 0xe5, 0xb7, 0xe7, 0xa4, 0xbf, 0xff, 0xf6, 0x9c, 0xf4, 0x2f, 0xdf, 0x9e, - 0x93, 0xfe, 0xf8, 0x5f, 0xcf, 0x2d, 0xfc, 0xa0, 0x24, 0xa4, 0x0f, 0x16, 0xe9, 0xbf, 0x53, 0x7a, - 0xef, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x64, 0x05, 0xc8, 0x1a, 0x14, 0x4b, 0x00, 0x00, + // 5008 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5c, 0xcd, 0x6f, 0x1b, 0x49, + 0x76, 0x57, 0x93, 0x94, 0x44, 0x3e, 0x8a, 0x14, 0x55, 0x96, 0x2d, 0x9a, 0x1e, 0x7b, 0xec, 0xf6, + 0xf8, 0x73, 0xc6, 0xf2, 0x5a, 0x33, 0xeb, 0x89, 0xed, 0x19, 0xdb, 0xb4, 0x24, 0xdb, 0xcc, 0xda, + 0x14, 0xd3, 0x94, 0xe6, 0x63, 0x67, 0x80, 0xde, 0x16, 0xbb, 0x44, 0xf5, 0x9a, 0xec, 0xee, 0xe9, + 0x6e, 0xda, 0xd6, 0x06, 0x08, 0x16, 0x58, 0x64, 0x0f, 0x39, 0xe5, 0x9c, 0xe3, 0xe6, 0x90, 0x43, + 0x4e, 0x39, 0xe4, 0x94, 0xd3, 0x06, 0x39, 0x2c, 0x02, 0x04, 0xc9, 0x69, 0x93, 0x20, 0x97, 0xcc, + 0x04, 0x01, 0x16, 0x01, 0x12, 0xe4, 0x0f, 0xc8, 0x21, 0xa8, 0xaf, 0xfe, 0x6e, 0x7e, 0xd8, 0xde, + 0x9d, 0xdd, 0x93, 0x58, 0xaf, 0xdf, 0x7b, 0xf5, 0xfa, 0xd5, 0xab, 0x57, 0xaf, 0x7e, 0x55, 0x2d, + 0x28, 0x69, 0xb6, 0xb1, 0x6e, 0x3b, 0x96, 0x67, 0xa1, 0x9a, 0x33, 0x32, 0x3d, 0x63, 0x88, 0xd7, + 0x9f, 0xdf, 0xd0, 0x06, 0xf6, 0xa1, 0xb6, 0xd1, 0xb8, 0xd6, 0x37, 0xbc, 0xc3, 0xd1, 0xfe, 0x7a, + 0xcf, 0x1a, 0x5e, 0xef, 0x5b, 0x7d, 0xeb, 0x3a, 0x65, 0xdc, 0x1f, 0x1d, 0xd0, 0x16, 0x6d, 0xd0, + 0x5f, 0x4c, 0x81, 0x7c, 0x15, 0xaa, 0x9f, 0x60, 0xc7, 0x35, 0x2c, 0x53, 0xc1, 0x5f, 0x8d, 0xb0, + 0xeb, 0xa1, 0x3a, 0x2c, 0x3e, 0x67, 0x94, 0xba, 0x74, 0x56, 0xba, 0x5c, 0x52, 0x44, 0x53, 0xfe, + 0x0b, 0x09, 0x96, 0x7d, 0x66, 0xd7, 0xb6, 0x4c, 0x17, 0x67, 0x73, 0xa3, 0x73, 0xb0, 0xc4, 0x8d, + 0x53, 0x4d, 0x6d, 0x88, 0xeb, 0x39, 0xfa, 0xb8, 0xcc, 0x69, 0x6d, 0x6d, 0x88, 0xd1, 0x25, 0x58, + 0x16, 0x2c, 0x42, 0x49, 0x9e, 0x72, 0x55, 0x39, 0x99, 0xf7, 0x86, 0xd6, 0xe1, 0x98, 0x60, 0xd4, + 0x6c, 0xc3, 0x67, 0x2e, 0x50, 0xe6, 0x15, 0xfe, 0xa8, 0x69, 0x1b, 0x9c, 0x5f, 0xfe, 0x02, 0x4a, + 0x5b, 0xed, 0xee, 0xa6, 0x65, 0x1e, 0x18, 0x7d, 0x62, 0xa2, 0x8b, 0x1d, 0x22, 0x53, 0x97, 0xce, + 0xe6, 0x89, 0x89, 0xbc, 0x89, 0x1a, 0x50, 0x74, 0xb1, 0xe6, 0xf4, 0x0e, 0xb1, 0x5b, 0xcf, 0xd1, + 0x47, 0x7e, 0x9b, 0x48, 0x59, 0xb6, 0x67, 0x58, 0xa6, 0x5b, 0xcf, 0x33, 0x29, 0xde, 0x94, 0x7f, + 0x26, 0x41, 0xb9, 0x63, 0x39, 0xde, 0x53, 0xcd, 0xb6, 0x0d, 0xb3, 0x8f, 0x6e, 0x42, 0x91, 0xfa, + 0xb2, 0x67, 0x0d, 0xa8, 0x0f, 0xaa, 0x1b, 0x8d, 0xf5, 0xf8, 0xb0, 0xac, 0x77, 0x38, 0x87, 0xe2, + 0xf3, 0xa2, 0x0b, 0x50, 0xed, 0x59, 0xa6, 0xa7, 0x19, 0x26, 0x76, 0x54, 0xdb, 0x72, 0x3c, 0xea, + 0xa2, 0x79, 0xa5, 0xe2, 0x53, 0x49, 0x2f, 0xe8, 0x14, 0x94, 0x0e, 0x2d, 0xd7, 0x63, 0x1c, 0x79, + 0xca, 0x51, 0x24, 0x04, 0xfa, 0x70, 0x0d, 0x16, 0xe9, 0x43, 0xc3, 0xe6, 0xce, 0x58, 0x20, 0xcd, + 0x96, 0x2d, 0xff, 0x52, 0x82, 0xf9, 0xa7, 0xd6, 0xc8, 0xf4, 0x62, 0xdd, 0x68, 0xde, 0x21, 0x1f, + 0xa8, 0x50, 0x37, 0x9a, 0x77, 0x18, 0x74, 0x43, 0x38, 0xd8, 0x58, 0xb1, 0x6e, 0xc8, 0xc3, 0x06, + 0x14, 0x1d, 0xac, 0xe9, 0x96, 0x39, 0x38, 0xa2, 0x26, 0x14, 0x15, 0xbf, 0x4d, 0x06, 0xd1, 0xc5, + 0x03, 0xc3, 0x1c, 0xbd, 0x54, 0x1d, 0x3c, 0xd0, 0xf6, 0xf1, 0x80, 0x9a, 0x52, 0x54, 0xaa, 0x9c, + 0xac, 0x30, 0x2a, 0xda, 0x82, 0xb2, 0xed, 0x58, 0xb6, 0xd6, 0xd7, 0x88, 0x1f, 0xeb, 0xf3, 0xd4, + 0x55, 0x72, 0xd2, 0x55, 0xd4, 0xec, 0x4e, 0xc0, 0xa9, 0x84, 0xc5, 0xe4, 0x7f, 0x94, 0x60, 0x99, + 0x04, 0x8f, 0x6b, 0x6b, 0x3d, 0xbc, 0x43, 0x87, 0x04, 0xdd, 0x82, 0x45, 0x13, 0x7b, 0x2f, 0x2c, + 0xe7, 0x19, 0x1f, 0x80, 0xb7, 0x93, 0x5a, 0x7d, 0x99, 0xa7, 0x96, 0x8e, 0x15, 0xc1, 0x8f, 0x6e, + 0x40, 0xde, 0x36, 0x74, 0xfa, 0xc2, 0x53, 0x88, 0x11, 0x5e, 0x22, 0x62, 0xd8, 0x3d, 0xea, 0x87, + 0x69, 0x44, 0x0c, 0xbb, 0x47, 0x9c, 0xeb, 0x69, 0x4e, 0x1f, 0x7b, 0xaa, 0xa1, 0xf3, 0x81, 0x2a, + 0x32, 0x42, 0x4b, 0x97, 0x65, 0x80, 0x96, 0xe9, 0xdd, 0xfc, 0xe0, 0x13, 0x6d, 0x30, 0xc2, 0x68, + 0x15, 0xe6, 0x9f, 0x93, 0x1f, 0xf4, 0x4d, 0xf2, 0x0a, 0x6b, 0xc8, 0x5f, 0x17, 0xe0, 0xd4, 0x13, + 0xe2, 0xcc, 0xae, 0x66, 0xea, 0xfb, 0xd6, 0xcb, 0x2e, 0xee, 0x8d, 0x1c, 0xc3, 0x3b, 0xda, 0xb4, + 0x4c, 0x0f, 0xbf, 0xf4, 0x50, 0x1b, 0x56, 0x4c, 0xd1, 0xad, 0x2a, 0xe2, 0x96, 0x68, 0x28, 0x6f, + 0x9c, 0x1b, 0x63, 0x21, 0xf3, 0x9f, 0x52, 0x33, 0xa3, 0x04, 0x17, 0x3d, 0x0e, 0x06, 0x55, 0x68, + 0xcb, 0x51, 0x6d, 0x29, 0xef, 0xdb, 0xdd, 0xa6, 0x96, 0x71, 0x5d, 0x62, 0xd4, 0x85, 0xa6, 0x8f, + 0x80, 0x4c, 0x79, 0x55, 0x73, 0xd5, 0x91, 0x8b, 0x1d, 0xea, 0xb5, 0xf2, 0xc6, 0x5b, 0x49, 0x2d, + 0x81, 0x0b, 0x94, 0x92, 0x33, 0x32, 0x9b, 0xee, 0x9e, 0x8b, 0x1d, 0x74, 0x97, 0x26, 0x11, 0x22, + 0xdd, 0x77, 0xac, 0x91, 0x5d, 0x2f, 0x4e, 0x21, 0x0e, 0x54, 0xfc, 0x11, 0xe1, 0xa7, 0x19, 0x86, + 0x07, 0xaa, 0xea, 0x58, 0x96, 0x77, 0xe0, 0x8a, 0xe0, 0x14, 0x64, 0x85, 0x52, 0xd1, 0x75, 0x38, + 0xe6, 0x8e, 0x6c, 0x7b, 0x80, 0x87, 0xd8, 0xf4, 0xb4, 0x01, 0xeb, 0xce, 0xad, 0xcf, 0x9f, 0xcd, + 0x5f, 0xce, 0x2b, 0x28, 0xfc, 0x88, 0x2a, 0x76, 0xd1, 0x19, 0x00, 0xdb, 0x31, 0x9e, 0x1b, 0x03, + 0xdc, 0xc7, 0x7a, 0x7d, 0x81, 0x2a, 0x0d, 0x51, 0xd0, 0x1d, 0x92, 0x75, 0x7a, 0x3d, 0x6b, 0x68, + 0xd7, 0x4b, 0x59, 0xe3, 0x20, 0x46, 0xb1, 0xe3, 0x58, 0x07, 0xc6, 0x00, 0x2b, 0x42, 0x02, 0x7d, + 0x0c, 0x45, 0xcd, 0xb6, 0x35, 0x67, 0x68, 0x39, 0x75, 0x98, 0x56, 0xda, 0x17, 0x41, 0x1f, 0xc0, + 0x2a, 0xd7, 0xa4, 0xda, 0xec, 0x21, 0x9b, 0xd6, 0x8b, 0x24, 0xf2, 0x1e, 0xe4, 0xea, 0x92, 0x82, + 0xf8, 0x73, 0x2e, 0x4b, 0x26, 0xb9, 0xfc, 0xf7, 0x12, 0x2c, 0xc7, 0x74, 0xa2, 0x0e, 0x2c, 0x09, + 0x0d, 0xde, 0x91, 0x8d, 0xf9, 0xf4, 0xba, 0x36, 0xd1, 0x98, 0x75, 0xfe, 0x77, 0xf7, 0xc8, 0xc6, + 0x74, 0xfe, 0x8a, 0x06, 0x3a, 0x0f, 0x95, 0x81, 0xd5, 0xd3, 0x06, 0x34, 0xd9, 0x38, 0xf8, 0x80, + 0xe7, 0x9a, 0x25, 0x9f, 0xa8, 0xe0, 0x03, 0xf9, 0x3e, 0x94, 0x43, 0x0a, 0x10, 0x82, 0xaa, 0xc2, + 0x3a, 0xdc, 0xc2, 0x07, 0xda, 0x68, 0xe0, 0xd5, 0xe6, 0x50, 0x15, 0x60, 0xcf, 0xec, 0x91, 0x0c, + 0x6f, 0x62, 0xbd, 0x26, 0xa1, 0x0a, 0x94, 0x9e, 0x08, 0x15, 0xb5, 0x9c, 0xfc, 0xb3, 0x1c, 0x1c, + 0xa7, 0x61, 0xd9, 0xb1, 0x74, 0x3e, 0x67, 0xf8, 0x72, 0x70, 0x1e, 0x2a, 0x3d, 0x3a, 0xba, 0xaa, + 0xad, 0x39, 0xd8, 0xf4, 0x78, 0x3a, 0x5c, 0x62, 0xc4, 0x0e, 0xa5, 0xa1, 0xcf, 0xa0, 0xe6, 0xf2, + 0x37, 0x52, 0x7b, 0x6c, 0x8e, 0xf1, 0x09, 0x90, 0xf2, 0xee, 0x63, 0x26, 0xa6, 0xb2, 0xec, 0x26, + 0x66, 0xea, 0xa2, 0x7b, 0xe4, 0xf6, 0xbc, 0x01, 0x5b, 0x57, 0xca, 0x1b, 0x1f, 0x64, 0x28, 0x8c, + 0x1b, 0xbe, 0xde, 0x65, 0x62, 0xdb, 0xa6, 0xe7, 0x1c, 0x29, 0x42, 0x49, 0xe3, 0x36, 0x2c, 0x85, + 0x1f, 0xa0, 0x1a, 0xe4, 0x9f, 0xe1, 0x23, 0xfe, 0x52, 0xe4, 0x67, 0x90, 0x51, 0x98, 0xa7, 0x59, + 0xe3, 0x76, 0xee, 0xf7, 0x24, 0xd9, 0x01, 0x14, 0xf4, 0xf2, 0x14, 0x7b, 0x9a, 0xae, 0x79, 0x1a, + 0x42, 0x50, 0xa0, 0x0b, 0x36, 0x53, 0x41, 0x7f, 0x13, 0xad, 0x23, 0x9e, 0x26, 0x4b, 0x0a, 0xf9, + 0x89, 0xde, 0x82, 0x92, 0x9f, 0x35, 0xf8, 0xaa, 0x1d, 0x10, 0xc8, 0xea, 0xa9, 0x79, 0x1e, 0x1e, + 0xda, 0x1e, 0x9d, 0x6f, 0x15, 0x45, 0x34, 0xe5, 0xff, 0x29, 0x40, 0x2d, 0x31, 0x26, 0xf7, 0xa1, + 0x38, 0xe4, 0xdd, 0xf3, 0xac, 0xf5, 0x4e, 0xca, 0x12, 0x9a, 0x30, 0x55, 0xf1, 0xa5, 0xc8, 0x0a, + 0x45, 0x46, 0x3e, 0x54, 0x69, 0xf8, 0x6d, 0x16, 0x72, 0x7d, 0x55, 0x37, 0x1c, 0xdc, 0xf3, 0x2c, + 0xe7, 0x88, 0x9b, 0xbb, 0x34, 0xb0, 0xfa, 0x5b, 0x82, 0x86, 0x6e, 0x03, 0xe8, 0xa6, 0xab, 0xd2, + 0x88, 0xea, 0x53, 0xa3, 0xcb, 0x1b, 0xa7, 0x92, 0x46, 0xf8, 0x65, 0x85, 0x52, 0xd2, 0x4d, 0x97, + 0x9b, 0xff, 0x00, 0x2a, 0x64, 0x75, 0x56, 0x87, 0xac, 0x22, 0x60, 0x69, 0xa3, 0xbc, 0x71, 0x3a, + 0xed, 0x1d, 0xfc, 0xba, 0x41, 0x59, 0xb2, 0x83, 0x86, 0x8b, 0x1e, 0xc2, 0x02, 0x5d, 0x26, 0xdd, + 0xfa, 0x02, 0x15, 0x5e, 0x1f, 0xe7, 0x00, 0x1e, 0x11, 0x4f, 0xa8, 0x00, 0x0b, 0x08, 0x2e, 0x8d, + 0xf6, 0xa0, 0xac, 0x99, 0xa6, 0xe5, 0x69, 0x2c, 0x6b, 0x2f, 0x52, 0x65, 0xef, 0x4f, 0xa1, 0xac, + 0x19, 0x48, 0x31, 0x8d, 0x61, 0x3d, 0xe8, 0x63, 0x98, 0xa7, 0x69, 0x9d, 0x67, 0xe0, 0x4b, 0x53, + 0x06, 0xad, 0xc2, 0xa4, 0x1a, 0xb7, 0xa0, 0x1c, 0x32, 0x76, 0x96, 0x20, 0x6d, 0xdc, 0x85, 0x5a, + 0xdc, 0xb4, 0x99, 0x82, 0xfc, 0x0f, 0x61, 0x55, 0x19, 0x99, 0x81, 0x61, 0xa2, 0xce, 0xbd, 0x0d, + 0x0b, 0x7c, 0xb0, 0x59, 0xc4, 0xc9, 0x93, 0x7d, 0xa4, 0x70, 0x89, 0x70, 0xe1, 0x7a, 0xa8, 0x99, + 0xfa, 0x00, 0x3b, 0xbc, 0x5f, 0x51, 0xb8, 0x3e, 0x66, 0x54, 0xf9, 0x63, 0x38, 0x1e, 0xeb, 0x9c, + 0xd7, 0xcd, 0xef, 0x40, 0xd5, 0xb6, 0x74, 0xd5, 0x65, 0x64, 0x52, 0x16, 0xf0, 0x34, 0x64, 0xfb, + 0xbc, 0x2d, 0x9d, 0x88, 0x77, 0x3d, 0xcb, 0x4e, 0x1a, 0x3f, 0x9d, 0x78, 0x1d, 0x4e, 0xc4, 0xc5, + 0x59, 0xf7, 0xf2, 0x3d, 0x58, 0x53, 0xf0, 0xd0, 0x7a, 0x8e, 0x5f, 0x55, 0x75, 0x03, 0xea, 0x49, + 0x05, 0x5c, 0xf9, 0xe7, 0xb0, 0x16, 0x50, 0xbb, 0x9e, 0xe6, 0x8d, 0xdc, 0x99, 0x94, 0xf3, 0x4d, + 0xc5, 0xbe, 0xe5, 0xb2, 0xe1, 0x2c, 0x2a, 0xa2, 0x29, 0xaf, 0xc1, 0x7c, 0xc7, 0xd2, 0x5b, 0x1d, + 0x54, 0x85, 0x9c, 0x61, 0x73, 0xe1, 0x9c, 0x61, 0xcb, 0x46, 0xb8, 0xcf, 0x36, 0x2b, 0xee, 0x58, + 0xd7, 0x71, 0x56, 0x74, 0x17, 0xaa, 0x9a, 0xae, 0x1b, 0x24, 0x9c, 0xb4, 0x81, 0x6a, 0xd8, 0xac, + 0xf6, 0x2f, 0x6f, 0xac, 0xa5, 0x06, 0x40, 0xab, 0xa3, 0x54, 0x02, 0xf6, 0x96, 0xed, 0xca, 0x8f, + 0xa1, 0xe4, 0x17, 0x50, 0x64, 0x99, 0x8f, 0x16, 0x48, 0x53, 0x94, 0x5b, 0xfe, 0x4e, 0x62, 0x37, + 0xb1, 0x46, 0x71, 0x93, 0xef, 0x00, 0xf8, 0xb9, 0x54, 0xd4, 0x71, 0xa7, 0xc6, 0x28, 0x56, 0x42, + 0xec, 0xf2, 0x4f, 0xe6, 0xc3, 0x19, 0x36, 0xe4, 0x04, 0xdd, 0x77, 0x82, 0x1e, 0xc9, 0xb8, 0xb9, + 0x57, 0xca, 0xb8, 0x1f, 0xc2, 0xbc, 0xeb, 0x69, 0x1e, 0xe6, 0x85, 0xf0, 0xb9, 0x71, 0xe2, 0xc4, + 0x08, 0xac, 0x30, 0x7e, 0x74, 0x1a, 0xa0, 0xe7, 0x60, 0xcd, 0xc3, 0xba, 0xaa, 0xb1, 0xe5, 0x21, + 0xaf, 0x94, 0x38, 0xa5, 0xe9, 0xa1, 0xcd, 0xa0, 0x98, 0x9f, 0xa7, 0x86, 0x5d, 0x19, 0xa7, 0x39, + 0x32, 0xd4, 0x41, 0x59, 0xef, 0xa7, 0xab, 0x85, 0x29, 0xd3, 0x15, 0x57, 0xc0, 0xa4, 0x42, 0xc9, + 0x78, 0x71, 0x72, 0x32, 0x66, 0xa2, 0xd3, 0x24, 0xe3, 0xe2, 0xe4, 0x64, 0xcc, 0x95, 0x8d, 0x4f, + 0xc6, 0x29, 0xe9, 0xa7, 0x94, 0x96, 0x7e, 0xbe, 0xcd, 0xb4, 0xfb, 0xaf, 0x12, 0xd4, 0x93, 0x59, + 0x80, 0x67, 0xbf, 0xdb, 0xb0, 0xe0, 0x52, 0xca, 0x34, 0xb9, 0x97, 0xcb, 0x72, 0x09, 0xf4, 0x18, + 0x0a, 0x86, 0x79, 0x60, 0xf1, 0x49, 0xfb, 0xc1, 0x14, 0x92, 0xbc, 0xd7, 0xf5, 0x96, 0x79, 0x60, + 0x31, 0x6f, 0x52, 0x0d, 0x8d, 0x0f, 0xa1, 0xe4, 0x93, 0x66, 0x7a, 0xb7, 0x1d, 0x58, 0x8d, 0xc5, + 0x36, 0xdb, 0xbb, 0xf9, 0x53, 0x42, 0x9a, 0x6d, 0x4a, 0xc8, 0x3f, 0xce, 0x85, 0xa7, 0xec, 0x43, + 0x63, 0xe0, 0x61, 0x27, 0x31, 0x65, 0x3f, 0x12, 0xda, 0xd9, 0x7c, 0xbd, 0x38, 0x51, 0x3b, 0xdb, + 0x0e, 0xf1, 0x59, 0xf7, 0x25, 0x54, 0x69, 0x50, 0xaa, 0x2e, 0x1e, 0xd0, 0x92, 0x87, 0x97, 0x9f, + 0xdf, 0x1d, 0xa7, 0x86, 0x59, 0xc2, 0x42, 0xbb, 0xcb, 0xe5, 0x98, 0x07, 0x2b, 0x83, 0x30, 0xad, + 0x71, 0x1f, 0x50, 0x92, 0x69, 0x26, 0x9f, 0x76, 0x49, 0x2e, 0x74, 0xbd, 0xd4, 0x75, 0xfa, 0x80, + 0x9a, 0x31, 0x4d, 0xac, 0x30, 0x83, 0x15, 0x2e, 0x21, 0xff, 0x77, 0x1e, 0x20, 0x78, 0xf8, 0x3b, + 0x94, 0x04, 0xef, 0xfb, 0x09, 0x88, 0x95, 0x92, 0x97, 0xc7, 0x29, 0x4e, 0x4d, 0x3d, 0x3b, 0xd1, + 0xd4, 0xc3, 0x8a, 0xca, 0x6b, 0x63, 0xd5, 0xcc, 0x9c, 0x74, 0x16, 0x7f, 0xdb, 0x92, 0xce, 0x13, + 0x38, 0x11, 0x0f, 0x22, 0x9e, 0x71, 0x36, 0x60, 0xde, 0xf0, 0xf0, 0x90, 0x41, 0x80, 0xa9, 0x08, + 0x42, 0x48, 0x88, 0xb1, 0xca, 0x7f, 0x25, 0x41, 0xa9, 0x35, 0xd4, 0xfa, 0xb8, 0x6b, 0xe3, 0x1e, + 0xe9, 0xd5, 0x20, 0x0d, 0x6e, 0x09, 0x6b, 0xa0, 0x76, 0xd4, 0xcd, 0x2c, 0x29, 0xbd, 0x97, 0x82, + 0x4f, 0x08, 0x3d, 0xe3, 0xbd, 0xfc, 0xda, 0x1e, 0xd8, 0x80, 0xe2, 0xf7, 0xf0, 0x11, 0x4b, 0x47, + 0x53, 0xca, 0xc9, 0xff, 0x9c, 0x83, 0x35, 0xba, 0x1c, 0x6e, 0x0a, 0x44, 0x50, 0xc1, 0xae, 0x35, + 0x72, 0x7a, 0xd8, 0xa5, 0x71, 0x6a, 0x8f, 0x54, 0x1b, 0x3b, 0x86, 0xa5, 0x73, 0x4c, 0xaa, 0xd4, + 0xb3, 0x47, 0x1d, 0x4a, 0x40, 0xa7, 0x80, 0x34, 0xd4, 0xaf, 0x46, 0x16, 0x9f, 0x42, 0x79, 0xa5, + 0xd8, 0xb3, 0x47, 0x7f, 0x40, 0xda, 0x42, 0xd6, 0x3d, 0xd4, 0x1c, 0xec, 0xd2, 0x19, 0xc2, 0x64, + 0xbb, 0x94, 0x80, 0x6e, 0xc0, 0xf1, 0x21, 0x1e, 0x5a, 0xce, 0x91, 0x3a, 0x30, 0x86, 0x86, 0xa7, + 0x1a, 0xa6, 0xba, 0x7f, 0xe4, 0x61, 0x97, 0xcf, 0x06, 0xc4, 0x1e, 0x3e, 0x21, 0xcf, 0x5a, 0xe6, + 0x03, 0xf2, 0x04, 0xc9, 0x50, 0xb1, 0xac, 0xa1, 0xea, 0xf6, 0x2c, 0x07, 0xab, 0x9a, 0xfe, 0x43, + 0x5a, 0x21, 0xe4, 0x95, 0xb2, 0x65, 0x0d, 0xbb, 0x84, 0xd6, 0xd4, 0x7f, 0x88, 0xde, 0x86, 0x72, + 0xcf, 0x1e, 0xb9, 0xd8, 0x53, 0xc9, 0x1f, 0x5a, 0x00, 0x94, 0x14, 0x60, 0xa4, 0x4d, 0x7b, 0xe4, + 0x86, 0x18, 0x86, 0x24, 0x20, 0x16, 0xc3, 0x0c, 0x4f, 0xf1, 0x90, 0x82, 0x5f, 0x87, 0xa3, 0x3e, + 0xb6, 0xb5, 0x3e, 0x66, 0xa6, 0x89, 0x95, 0x3b, 0x05, 0xfc, 0x7a, 0xcc, 0x19, 0xa9, 0x99, 0x4a, + 0xf5, 0x30, 0xdc, 0x74, 0xe5, 0x07, 0x50, 0x89, 0x30, 0x10, 0x7f, 0x51, 0xb5, 0xae, 0xf1, 0x23, + 0x11, 0x48, 0x45, 0x42, 0xe8, 0x1a, 0x3f, 0xa2, 0xd0, 0x1f, 0xed, 0x8e, 0x3a, 0xb2, 0xa0, 0xb0, + 0x86, 0xac, 0x41, 0x25, 0x82, 0xb0, 0x91, 0xfd, 0x39, 0x85, 0xd2, 0xf8, 0xfe, 0x9c, 0xfc, 0x26, + 0x34, 0xc7, 0x1a, 0x88, 0x71, 0xa5, 0xbf, 0x09, 0x8d, 0x62, 0x36, 0x6c, 0xb7, 0x4b, 0x7f, 0xd3, + 0x2e, 0xf0, 0x73, 0x0e, 0xd1, 0x96, 0x14, 0xd6, 0x90, 0x75, 0x80, 0x4d, 0xcd, 0xd6, 0xf6, 0x8d, + 0x81, 0xe1, 0x1d, 0xa1, 0x2b, 0x50, 0xd3, 0x74, 0x5d, 0xed, 0x09, 0x8a, 0x81, 0x05, 0x70, 0xbe, + 0xac, 0xe9, 0xfa, 0x66, 0x88, 0x8c, 0xde, 0x85, 0x15, 0xdd, 0xb1, 0xec, 0x28, 0x2f, 0x43, 0xd2, + 0x6b, 0xe4, 0x41, 0x98, 0x59, 0xfe, 0xd5, 0x02, 0x9c, 0x8e, 0x86, 0x59, 0x1c, 0xc5, 0xbc, 0x0f, + 0x4b, 0xb1, 0x5e, 0x33, 0xd0, 0xbe, 0xc0, 0x5a, 0x25, 0x22, 0x11, 0x43, 0xe5, 0x72, 0x09, 0x54, + 0x2e, 0x15, 0x27, 0xcd, 0xbf, 0x51, 0x9c, 0xb4, 0xf0, 0x46, 0x70, 0xd2, 0xf9, 0xd7, 0xc3, 0x49, + 0x97, 0x66, 0xc4, 0x49, 0x2f, 0xd2, 0xe4, 0x2e, 0x7a, 0xa7, 0x28, 0x0a, 0x9b, 0x38, 0x15, 0xbf, + 0x0f, 0x53, 0x9c, 0xd8, 0xc4, 0xf0, 0xd4, 0xc5, 0x59, 0xf0, 0xd4, 0x62, 0x26, 0x9e, 0x7a, 0x16, + 0x96, 0x4c, 0x4b, 0x35, 0xf1, 0x0b, 0x95, 0x0c, 0x97, 0x5b, 0x2f, 0xb3, 0xb1, 0x33, 0xad, 0x36, + 0x7e, 0xd1, 0x21, 0x14, 0x74, 0x0e, 0x96, 0x86, 0x9a, 0xfb, 0x0c, 0xeb, 0x14, 0xcc, 0x74, 0xeb, + 0x15, 0x1a, 0x67, 0x65, 0x46, 0xeb, 0x10, 0x12, 0xba, 0x00, 0xbe, 0x1d, 0x9c, 0xa9, 0x4a, 0x99, + 0x2a, 0x82, 0xca, 0xd8, 0x42, 0xd8, 0xec, 0xf2, 0x6b, 0x61, 0xb3, 0xb5, 0xd9, 0xb1, 0xd9, 0x6b, + 0x50, 0x13, 0xbf, 0x05, 0x38, 0xcb, 0x8a, 0x77, 0x8a, 0xcb, 0x2e, 0x8b, 0x67, 0x02, 0x80, 0xcd, + 0x82, 0x72, 0x61, 0x2c, 0x94, 0xfb, 0x37, 0x12, 0xac, 0x46, 0xa7, 0x1a, 0x47, 0xaa, 0x1e, 0x41, + 0xc9, 0x11, 0xb9, 0x9d, 0x4f, 0xaf, 0x2b, 0x19, 0x7b, 0xa3, 0xe4, 0x62, 0xa0, 0x04, 0xb2, 0xe8, + 0xfb, 0x99, 0x00, 0xe9, 0xf5, 0x49, 0xfa, 0x26, 0x41, 0xa4, 0xb2, 0x03, 0x6f, 0x7f, 0x6a, 0x98, + 0xba, 0xf5, 0xc2, 0xcd, 0xcc, 0x14, 0x29, 0xf1, 0x2a, 0x65, 0xc4, 0x6b, 0xcf, 0xc1, 0x3a, 0x36, + 0x3d, 0x43, 0x1b, 0xa8, 0xae, 0x8d, 0x7b, 0x02, 0xa8, 0x09, 0xc8, 0x64, 0x55, 0x96, 0x7f, 0x2e, + 0xc1, 0x89, 0x78, 0xa7, 0xdc, 0x67, 0xad, 0xa4, 0xcf, 0xde, 0x4d, 0xbe, 0x63, 0x5c, 0x38, 0xd5, + 0x6b, 0x5f, 0x66, 0x7a, 0xed, 0xc6, 0x64, 0x8d, 0x13, 0xfd, 0xf6, 0x97, 0x12, 0x9c, 0xcc, 0x34, + 0x23, 0xb6, 0x1a, 0x4b, 0xf1, 0xd5, 0x98, 0xaf, 0xe4, 0x3d, 0x6b, 0x64, 0x7a, 0xa1, 0x95, 0x7c, + 0x93, 0x9e, 0x21, 0xb2, 0x25, 0x53, 0x1d, 0x6a, 0x2f, 0x8d, 0xe1, 0x68, 0xc8, 0x97, 0x72, 0xa2, + 0xee, 0x29, 0xa3, 0xbc, 0xc2, 0x5a, 0x2e, 0x37, 0x61, 0xc5, 0xb7, 0x72, 0x2c, 0xf6, 0x1c, 0xc2, + 0x92, 0x73, 0x51, 0x2c, 0xd9, 0x84, 0x85, 0x2d, 0xfc, 0xdc, 0xe8, 0xe1, 0x37, 0x72, 0xc8, 0x79, + 0x16, 0xca, 0x36, 0x76, 0x86, 0x86, 0xeb, 0xfa, 0xab, 0x42, 0x49, 0x09, 0x93, 0xe4, 0xff, 0x5c, + 0x80, 0xe5, 0x78, 0x74, 0xdc, 0x4b, 0x40, 0xd7, 0xe7, 0x53, 0xd6, 0xab, 0xf8, 0x8b, 0x86, 0xb6, + 0x10, 0x37, 0x44, 0x5d, 0x99, 0xcb, 0x82, 0x79, 0xfc, 0xda, 0x51, 0x14, 0x9d, 0x75, 0x58, 0xec, + 0x59, 0xc3, 0xa1, 0x66, 0xea, 0xe2, 0x6c, 0x9a, 0x37, 0x89, 0xff, 0x34, 0xa7, 0x4f, 0xdc, 0x4e, + 0xc8, 0xf4, 0x37, 0x19, 0xbc, 0x17, 0x96, 0xf3, 0xcc, 0x30, 0x29, 0x04, 0x4e, 0x57, 0x96, 0x92, + 0x02, 0x9c, 0xb4, 0x65, 0x38, 0x68, 0x1d, 0x0a, 0xd8, 0x7c, 0x2e, 0xf6, 0x08, 0x29, 0x87, 0xd7, + 0xa2, 0xa2, 0x54, 0x28, 0x1f, 0xba, 0x0e, 0x0b, 0x43, 0x12, 0x16, 0x02, 0x1d, 0x59, 0xcb, 0x38, + 0xc3, 0x55, 0x38, 0x1b, 0xda, 0x80, 0x45, 0x9d, 0x8e, 0x93, 0x28, 0xa4, 0xea, 0x29, 0xc0, 0x3a, + 0x65, 0x50, 0x04, 0x23, 0xda, 0xf6, 0x77, 0x40, 0xa5, 0xac, 0xad, 0x4b, 0x6c, 0x28, 0x52, 0xb7, + 0x41, 0xbb, 0xd1, 0xfa, 0x1c, 0xa8, 0xae, 0x8d, 0xc9, 0xba, 0xc6, 0xef, 0x85, 0x4e, 0x42, 0x71, + 0x60, 0xf5, 0x59, 0x18, 0x95, 0xd9, 0xb5, 0x87, 0x81, 0xd5, 0xa7, 0x51, 0xb4, 0x4a, 0x76, 0x84, + 0xba, 0x61, 0xd2, 0x25, 0xb8, 0xa8, 0xb0, 0x06, 0x99, 0x7c, 0xf4, 0x87, 0x6a, 0x99, 0x3d, 0x5c, + 0xaf, 0xd0, 0x47, 0x25, 0x4a, 0xd9, 0x31, 0x7b, 0xb4, 0x52, 0xf7, 0xbc, 0xa3, 0x7a, 0x95, 0xd2, + 0xc9, 0x4f, 0xb2, 0xd9, 0x67, 0x00, 0xd6, 0x72, 0xd6, 0x66, 0x3f, 0x2d, 0xbf, 0x0b, 0xfc, 0xea, + 0x01, 0x2c, 0xbe, 0x60, 0x89, 0x80, 0x2f, 0x51, 0x97, 0x27, 0xa7, 0x17, 0xae, 0x41, 0x08, 0x7e, + 0x9b, 0xdb, 0xb8, 0xbf, 0x93, 0xe0, 0xc4, 0x26, 0xdd, 0x0b, 0x87, 0xf2, 0xd8, 0x2c, 0x00, 0xf2, + 0x2d, 0x1f, 0xdb, 0xcf, 0x04, 0x65, 0xe3, 0xef, 0x2d, 0xa0, 0xfd, 0x16, 0x54, 0x85, 0x72, 0xae, + 0x22, 0x3f, 0xf5, 0xf1, 0x40, 0xc5, 0x0d, 0x37, 0xe5, 0x8f, 0x60, 0x2d, 0xf1, 0x16, 0x7c, 0x3b, + 0x7a, 0x0e, 0x96, 0x82, 0x7c, 0xe5, 0xbf, 0x44, 0xd9, 0xa7, 0xb5, 0x74, 0xf9, 0x36, 0x1c, 0xef, + 0x7a, 0x9a, 0xe3, 0x25, 0x5c, 0x30, 0x85, 0x2c, 0x05, 0xfe, 0xa3, 0xb2, 0x1c, 0x9b, 0xef, 0xc2, + 0x6a, 0xd7, 0xb3, 0xec, 0x57, 0x50, 0x4a, 0xb2, 0x0e, 0x79, 0x7f, 0x6b, 0x24, 0xd6, 0x07, 0xd1, + 0x94, 0xd7, 0xd8, 0x31, 0x45, 0xb2, 0xb7, 0x3b, 0x70, 0x82, 0x9d, 0x12, 0xbc, 0xca, 0x4b, 0x9c, + 0x14, 0x67, 0x14, 0x49, 0xbd, 0x4f, 0xe1, 0x58, 0xb0, 0x2c, 0x06, 0xf8, 0xdb, 0xcd, 0x28, 0xfe, + 0x76, 0x76, 0xcc, 0xa8, 0x47, 0xe0, 0xb7, 0x3f, 0xcf, 0x85, 0xf2, 0x7a, 0x06, 0xfa, 0x76, 0x27, + 0x8a, 0xbe, 0x5d, 0x98, 0xa4, 0x3b, 0x02, 0xbe, 0x25, 0xa3, 0x36, 0x9f, 0x12, 0xb5, 0x5f, 0x24, + 0x20, 0xba, 0x42, 0x16, 0xc6, 0x19, 0xb3, 0xf6, 0x37, 0x82, 0xd0, 0x29, 0x0c, 0xa1, 0xf3, 0xbb, + 0xf6, 0x0f, 0x75, 0x6e, 0xc5, 0x10, 0xba, 0x73, 0x13, 0xed, 0xf5, 0x01, 0xba, 0xbf, 0x2e, 0x40, + 0xc9, 0x7f, 0x96, 0xf0, 0x79, 0xd2, 0x6d, 0xb9, 0x14, 0xb7, 0x85, 0x57, 0xe0, 0xfc, 0x6b, 0xad, + 0xc0, 0x85, 0xa9, 0x57, 0xe0, 0x53, 0x50, 0xa2, 0x3f, 0xe8, 0x0d, 0x06, 0xb6, 0xa2, 0x16, 0x29, + 0x41, 0xc1, 0x07, 0x41, 0x18, 0x2e, 0xcc, 0x14, 0x86, 0x31, 0x4c, 0x70, 0x31, 0x8e, 0x09, 0xde, + 0xf3, 0x57, 0x44, 0xb6, 0x88, 0x5e, 0x1a, 0xa3, 0x37, 0x75, 0x2d, 0x8c, 0x61, 0x55, 0xa5, 0x2c, + 0xac, 0x2a, 0xd0, 0x32, 0x1e, 0xab, 0xfa, 0x16, 0x57, 0x88, 0x3d, 0x06, 0xf4, 0x85, 0x63, 0x91, + 0x67, 0xd6, 0x3b, 0x00, 0x7e, 0x12, 0x11, 0x68, 0xdf, 0xa9, 0x31, 0xef, 0xa8, 0x84, 0xd8, 0x89, + 0xda, 0xc8, 0xd0, 0x04, 0x07, 0x97, 0xd3, 0xe5, 0xc7, 0x8c, 0x53, 0xcb, 0xff, 0x9b, 0x0f, 0xe5, + 0x97, 0x8c, 0x03, 0xb9, 0x7b, 0x09, 0x2c, 0x7a, 0xc6, 0x28, 0xbe, 0x19, 0x85, 0xa2, 0x5f, 0x31, + 0xea, 0x12, 0x48, 0x34, 0xad, 0x5c, 0x34, 0x87, 0x3f, 0x66, 0x78, 0x5b, 0x89, 0x53, 0x9a, 0x74, + 0x67, 0x70, 0x60, 0x98, 0x86, 0x7b, 0xc8, 0x9e, 0x2f, 0xb0, 0x9d, 0x81, 0x20, 0x35, 0x29, 0xe2, + 0x85, 0x5f, 0x1a, 0x9e, 0xda, 0xb3, 0x74, 0x4c, 0x63, 0x7a, 0x5e, 0x29, 0x12, 0xc2, 0xa6, 0xa5, + 0xe3, 0x60, 0xe6, 0x15, 0x5f, 0x6d, 0xe6, 0x95, 0x62, 0x33, 0xef, 0x04, 0x2c, 0x38, 0x58, 0x73, + 0x2d, 0x93, 0xed, 0x8f, 0x15, 0xde, 0x22, 0x43, 0x33, 0xc4, 0xae, 0x4b, 0x7a, 0xe2, 0xe5, 0x1a, + 0x6f, 0x86, 0xca, 0xcc, 0xa5, 0x89, 0x65, 0xe6, 0x98, 0x83, 0xbe, 0x58, 0x99, 0x59, 0x99, 0x58, + 0x66, 0x4e, 0x75, 0xce, 0x17, 0x14, 0xda, 0xd5, 0xe9, 0x0a, 0xed, 0x70, 0x5d, 0xba, 0x1c, 0xa9, + 0x4b, 0xbf, 0xcd, 0xc9, 0xfa, 0x4b, 0x09, 0xd6, 0x12, 0xd3, 0x8a, 0x4f, 0xd7, 0x5b, 0xb1, 0x93, + 0xc0, 0x73, 0x13, 0x7d, 0xe6, 0x1f, 0x04, 0x3e, 0x8a, 0x1c, 0x04, 0xbe, 0x3f, 0x59, 0xf0, 0x8d, + 0x9f, 0x03, 0xfe, 0xb1, 0x04, 0x6f, 0xef, 0xd9, 0x7a, 0xac, 0xc2, 0xe3, 0xdb, 0xfe, 0xe9, 0x13, + 0xc7, 0x3d, 0x51, 0xeb, 0xe7, 0x66, 0x05, 0x64, 0x98, 0x9c, 0x2c, 0xc3, 0xd9, 0x6c, 0x33, 0x78, + 0xc9, 0xf4, 0x03, 0x58, 0xde, 0x7e, 0x89, 0x7b, 0xdd, 0x23, 0xb3, 0x37, 0x83, 0x69, 0x35, 0xc8, + 0xf7, 0x86, 0x3a, 0x87, 0x74, 0xc9, 0xcf, 0x70, 0x15, 0x98, 0x8f, 0x56, 0x81, 0x2a, 0xd4, 0x82, + 0x1e, 0xf8, 0xf0, 0x9e, 0x20, 0xc3, 0xab, 0x13, 0x66, 0xa2, 0x7c, 0x49, 0xe1, 0x2d, 0x4e, 0xc7, + 0x0e, 0xbb, 0x37, 0xc3, 0xe8, 0xd8, 0x71, 0xa2, 0xd9, 0x22, 0x1f, 0xcd, 0x16, 0xf2, 0x9f, 0x49, + 0x50, 0x26, 0x3d, 0xbc, 0x96, 0xfd, 0x7c, 0xab, 0x95, 0x0f, 0xb6, 0x5a, 0xfe, 0x8e, 0xad, 0x10, + 0xde, 0xb1, 0x05, 0x96, 0xcf, 0x53, 0x72, 0xd2, 0xf2, 0x05, 0x9f, 0x8e, 0x1d, 0x47, 0x3e, 0x0b, + 0x4b, 0xcc, 0x36, 0xfe, 0xe6, 0x35, 0xc8, 0x8f, 0x9c, 0x81, 0x88, 0xa3, 0x91, 0x33, 0x90, 0xff, + 0x44, 0x82, 0x4a, 0xd3, 0xf3, 0xb4, 0xde, 0xe1, 0x0c, 0x2f, 0xe0, 0x1b, 0x97, 0x0b, 0x1b, 0x97, + 0x7c, 0x89, 0xc0, 0xdc, 0x42, 0x86, 0xb9, 0xf3, 0x11, 0x73, 0x65, 0xa8, 0x0a, 0x5b, 0x32, 0x0d, + 0x6e, 0x03, 0xea, 0x58, 0x8e, 0xf7, 0xd0, 0x72, 0x5e, 0x68, 0x8e, 0x3e, 0xdb, 0x0e, 0x0c, 0x41, + 0x81, 0x5f, 0x69, 0xcf, 0x5f, 0x9e, 0x57, 0xe8, 0x6f, 0xf9, 0x12, 0x1c, 0x8b, 0xe8, 0xcb, 0xec, + 0xf8, 0x3e, 0x94, 0x69, 0xde, 0xe7, 0xa5, 0xf8, 0x8d, 0xf0, 0xc9, 0xdb, 0x54, 0xab, 0x84, 0xfc, + 0xfb, 0xb0, 0x42, 0xea, 0x03, 0x4a, 0xf7, 0xa7, 0xe2, 0x77, 0x63, 0x75, 0xea, 0xe9, 0x0c, 0x45, + 0xb1, 0x1a, 0xf5, 0x57, 0x12, 0xcc, 0x53, 0x7a, 0x62, 0xcd, 0x3e, 0x05, 0x25, 0x07, 0xdb, 0x96, + 0xea, 0x69, 0x7d, 0xff, 0x03, 0x02, 0x42, 0xd8, 0xd5, 0xfa, 0x14, 0xae, 0xa6, 0x0f, 0x75, 0xa3, + 0x8f, 0x5d, 0x4f, 0x7c, 0x45, 0x50, 0x26, 0xb4, 0x2d, 0x46, 0x22, 0x4e, 0xa2, 0x07, 0x41, 0x05, + 0x7a, 0xde, 0x43, 0x7f, 0xa3, 0x75, 0x76, 0xd3, 0x72, 0x1a, 0xfc, 0x9f, 0xde, 0xc3, 0x6c, 0x40, + 0x31, 0x06, 0xd9, 0xfb, 0x6d, 0x74, 0x1d, 0x0a, 0x14, 0xf2, 0x5c, 0x9c, 0xec, 0x37, 0xca, 0x28, + 0x6f, 0x03, 0x0a, 0xbb, 0x8d, 0x0f, 0xd0, 0x75, 0x58, 0xa0, 0x5e, 0x15, 0xe5, 0xd4, 0x5a, 0x86, + 0x22, 0x85, 0xb3, 0xc9, 0x1a, 0x20, 0xa6, 0x39, 0x52, 0x42, 0xcd, 0x3e, 0x8c, 0x63, 0x4a, 0xaa, + 0xbf, 0x95, 0xe0, 0x58, 0xa4, 0x0f, 0x6e, 0xeb, 0xb5, 0x68, 0x27, 0x99, 0xa6, 0xf2, 0x0e, 0x36, + 0x23, 0x6b, 0xc8, 0xf5, 0x2c, 0x93, 0x7e, 0x4d, 0xeb, 0xc7, 0x3f, 0x48, 0x00, 0xcd, 0x91, 0x77, + 0xc8, 0xa1, 0xc4, 0xf0, 0x50, 0x4a, 0xb1, 0xa1, 0x6c, 0x40, 0xd1, 0xd6, 0x5c, 0xf7, 0x85, 0xe5, + 0x88, 0x4d, 0x90, 0xdf, 0xa6, 0xa0, 0xdf, 0xc8, 0x3b, 0x14, 0x07, 0x7d, 0xe4, 0x37, 0xba, 0x00, + 0x55, 0xf6, 0x95, 0x8b, 0xaa, 0xe9, 0xba, 0x83, 0x5d, 0x97, 0x9f, 0xf8, 0x55, 0x18, 0xb5, 0xc9, + 0x88, 0x84, 0xcd, 0xa0, 0x30, 0xb8, 0x77, 0xa4, 0x7a, 0xd6, 0x33, 0x6c, 0xf2, 0xcd, 0x4c, 0x45, + 0x50, 0x77, 0x09, 0x91, 0x9d, 0xab, 0xf4, 0x0d, 0xd7, 0x73, 0x04, 0x9b, 0x38, 0x1d, 0xe2, 0x54, + 0xca, 0x46, 0x06, 0xa5, 0xd6, 0x19, 0x0d, 0x06, 0xcc, 0xc5, 0xaf, 0x3e, 0xec, 0xdf, 0xe1, 0x2f, + 0x94, 0xcb, 0x9a, 0x04, 0x81, 0xd3, 0xf8, 0xeb, 0xbe, 0x41, 0xd4, 0xe6, 0x3b, 0xb0, 0x12, 0x7a, + 0x07, 0x1e, 0x56, 0x91, 0xaa, 0x53, 0x8a, 0x56, 0x9d, 0xf2, 0x23, 0x40, 0x0c, 0xa8, 0x78, 0xcd, + 0xf7, 0x96, 0x8f, 0xc3, 0xb1, 0x88, 0x22, 0xbe, 0x74, 0x5f, 0x85, 0x0a, 0xbf, 0xe6, 0xc6, 0x03, + 0xe5, 0x24, 0x14, 0x49, 0x0a, 0xee, 0x19, 0xba, 0x38, 0x05, 0x5e, 0xb4, 0x2d, 0x7d, 0xd3, 0xd0, + 0x1d, 0xf9, 0x53, 0xa8, 0xf0, 0xab, 0xf2, 0x9c, 0xf7, 0x21, 0x54, 0xf9, 0xa5, 0x38, 0x35, 0x72, + 0xdd, 0x35, 0xed, 0xc3, 0x95, 0x70, 0x27, 0x4a, 0xc5, 0x0c, 0x37, 0x65, 0x1d, 0x1a, 0xac, 0xc6, + 0x88, 0xa8, 0x17, 0x2f, 0xfb, 0x10, 0xc4, 0x2d, 0x90, 0x89, 0xbd, 0x44, 0xe5, 0x2b, 0x4e, 0xb8, + 0x29, 0x9f, 0x86, 0x53, 0xa9, 0xbd, 0x70, 0x4f, 0xd8, 0x50, 0x0b, 0x1e, 0xb0, 0x3b, 0x99, 0xfe, + 0x31, 0xb7, 0x14, 0x3a, 0xe6, 0x3e, 0xe1, 0x57, 0x95, 0x39, 0xb1, 0xea, 0xd1, 0x92, 0x31, 0xd8, + 0x1f, 0xe4, 0xb3, 0xf6, 0x07, 0x85, 0xc8, 0xfe, 0x40, 0xee, 0xfa, 0xfe, 0xe4, 0xfb, 0xb6, 0x07, + 0x74, 0x7f, 0xc9, 0xfa, 0x16, 0x09, 0x51, 0x1e, 0xf7, 0x96, 0x8c, 0x55, 0x09, 0x49, 0xc9, 0x57, + 0xa0, 0x12, 0x4d, 0x8d, 0xa1, 0x3c, 0x27, 0x25, 0xf2, 0x5c, 0x35, 0x96, 0xe2, 0x3e, 0x8c, 0x95, + 0xcc, 0xd9, 0x3e, 0x8e, 0x15, 0xcc, 0x77, 0x23, 0xc9, 0xee, 0x6a, 0xca, 0xa9, 0xe5, 0xaf, 0x29, + 0xcf, 0xad, 0xf2, 0xf5, 0xe0, 0xa1, 0x4b, 0xe4, 0xf9, 0x4b, 0xcb, 0xe7, 0xa1, 0xbc, 0x97, 0xf5, + 0xe1, 0x53, 0x41, 0xdc, 0x4d, 0xb9, 0x09, 0xab, 0x0f, 0x8d, 0x01, 0x76, 0x8f, 0x5c, 0x0f, 0x0f, + 0x5b, 0x34, 0x29, 0x1d, 0x18, 0xd8, 0x41, 0x67, 0x00, 0xe8, 0x9e, 0xc7, 0xb6, 0x0c, 0xff, 0x13, + 0x8e, 0x10, 0x45, 0xfe, 0x2f, 0x09, 0x96, 0x03, 0xc1, 0x3d, 0xba, 0xd7, 0x7b, 0x0b, 0x4a, 0xe4, + 0x7d, 0x5d, 0x4f, 0x1b, 0xda, 0xe2, 0x00, 0xcc, 0x27, 0xa0, 0x3b, 0x30, 0x7f, 0xe0, 0x0a, 0x8c, + 0x29, 0x15, 0x71, 0x4f, 0x33, 0x44, 0x29, 0x1c, 0xb8, 0x2d, 0x1d, 0x7d, 0x04, 0x30, 0x72, 0xb1, + 0xce, 0x0f, 0xbd, 0xf2, 0x59, 0xe5, 0xc5, 0x5e, 0xf8, 0xf4, 0x9e, 0x08, 0xb0, 0x6b, 0x2d, 0x77, + 0xa1, 0x6c, 0x98, 0x96, 0x8e, 0xe9, 0x69, 0xa6, 0xce, 0x61, 0xa8, 0x09, 0xe2, 0xc0, 0x24, 0xf6, + 0x5c, 0xac, 0xcb, 0x98, 0xaf, 0x85, 0xc2, 0xbf, 0x3c, 0x50, 0xda, 0xb0, 0xc2, 0x92, 0xd6, 0x81, + 0x6f, 0xb8, 0x88, 0xd8, 0x73, 0xe3, 0xde, 0x8e, 0x7a, 0x4b, 0xa9, 0x19, 0xbc, 0x16, 0x12, 0xa2, + 0xf2, 0x6d, 0x38, 0x1e, 0xd9, 0x52, 0xcd, 0xb0, 0xc7, 0x91, 0x3b, 0x31, 0x64, 0x25, 0x08, 0x67, + 0x8e, 0x5b, 0x88, 0x68, 0x9e, 0x84, 0x5b, 0xb8, 0x0c, 0xb7, 0x70, 0xe5, 0x2f, 0xe0, 0x64, 0x04, + 0x02, 0x8a, 0x58, 0x74, 0x37, 0x56, 0xea, 0x5d, 0x9c, 0xa4, 0x35, 0x56, 0xf3, 0xfd, 0xaf, 0x04, + 0xab, 0x69, 0x0c, 0xaf, 0x08, 0x51, 0xfe, 0x20, 0xe3, 0xf2, 0xe5, 0xad, 0xe9, 0xcc, 0xfa, 0x8d, + 0xc0, 0xbb, 0xbb, 0xd0, 0x48, 0xf3, 0x67, 0x72, 0x94, 0xf2, 0xb3, 0x8c, 0xd2, 0x4f, 0xf3, 0x21, + 0xa8, 0xbe, 0xe9, 0x79, 0x8e, 0xb1, 0x3f, 0x22, 0x21, 0xff, 0xc6, 0xe1, 0xaf, 0x96, 0x0f, 0xe4, + 0x30, 0xd7, 0xde, 0x18, 0x23, 0x1e, 0xd8, 0x91, 0x0a, 0xe6, 0x7c, 0x16, 0x05, 0x73, 0x18, 0x08, + 0x7f, 0x73, 0x3a, 0x7d, 0xbf, 0xb5, 0x88, 0xe9, 0x4f, 0x73, 0x50, 0x8d, 0x0e, 0x11, 0xda, 0x06, + 0xd0, 0x7c, 0xcb, 0xf9, 0x44, 0xb9, 0x30, 0xd5, 0x6b, 0x2a, 0x21, 0x41, 0xf4, 0x1e, 0xe4, 0x7b, + 0xf6, 0x88, 0x8f, 0x5a, 0xca, 0xe9, 0xf1, 0xa6, 0x3d, 0x62, 0x19, 0x85, 0xb0, 0x91, 0x4d, 0x18, + 0xbb, 0x0c, 0x90, 0x9d, 0x25, 0x9f, 0xd2, 0xe7, 0x4c, 0x86, 0x33, 0xa3, 0xc7, 0x50, 0x7d, 0xe1, + 0x18, 0x9e, 0xb6, 0x3f, 0xc0, 0xea, 0x40, 0x3b, 0xc2, 0x0e, 0xcf, 0x92, 0x53, 0x24, 0xb2, 0x8a, + 0x10, 0x7c, 0x42, 0xe4, 0xe4, 0x3f, 0x82, 0xa2, 0xb0, 0x68, 0xc2, 0x8a, 0xb0, 0x0b, 0x6b, 0x23, + 0xc2, 0xa6, 0xd2, 0xeb, 0x86, 0xa6, 0x66, 0x5a, 0xaa, 0x8b, 0xc9, 0x32, 0x2e, 0xbe, 0xf5, 0x98, + 0x90, 0xa2, 0x57, 0xa9, 0xf4, 0xa6, 0xe5, 0xe0, 0xb6, 0x66, 0x5a, 0x5d, 0x26, 0x2a, 0x3f, 0x87, + 0x72, 0xe8, 0x05, 0x27, 0x98, 0xd0, 0x82, 0x15, 0x71, 0x76, 0xef, 0x62, 0x8f, 0x2f, 0x2f, 0x53, + 0x75, 0xbe, 0xcc, 0xe5, 0xba, 0xd8, 0x63, 0xf7, 0x2d, 0xee, 0xc2, 0x49, 0x05, 0x5b, 0x36, 0x36, + 0xfd, 0xf1, 0x7c, 0x62, 0xf5, 0x67, 0xc8, 0xe0, 0x6f, 0x41, 0x23, 0x4d, 0x9e, 0xe5, 0x87, 0xab, + 0x17, 0xa1, 0x28, 0x3e, 0x71, 0x47, 0x8b, 0x90, 0xdf, 0xdd, 0xec, 0xd4, 0xe6, 0xc8, 0x8f, 0xbd, + 0xad, 0x4e, 0x4d, 0x42, 0x45, 0x28, 0x74, 0x37, 0x77, 0x3b, 0xb5, 0xdc, 0xd5, 0x21, 0xd4, 0xe2, + 0xdf, 0x77, 0xa3, 0x35, 0x38, 0xd6, 0x51, 0x76, 0x3a, 0xcd, 0x47, 0xcd, 0xdd, 0xd6, 0x4e, 0x5b, + 0xed, 0x28, 0xad, 0x4f, 0x9a, 0xbb, 0xdb, 0xb5, 0x39, 0x74, 0x0e, 0x4e, 0x87, 0x1f, 0x3c, 0xde, + 0xe9, 0xee, 0xaa, 0xbb, 0x3b, 0xea, 0xe6, 0x4e, 0x7b, 0xb7, 0xd9, 0x6a, 0x6f, 0x2b, 0x35, 0x09, + 0x9d, 0x86, 0x93, 0x61, 0x96, 0x07, 0xad, 0xad, 0x96, 0xb2, 0xbd, 0x49, 0x7e, 0x37, 0x9f, 0xd4, + 0x72, 0x57, 0x3f, 0x86, 0x4a, 0xe4, 0x73, 0x6c, 0x62, 0x52, 0x67, 0x67, 0xab, 0x36, 0x87, 0x2a, + 0x50, 0x0a, 0xeb, 0x29, 0x42, 0xa1, 0xbd, 0xb3, 0xb5, 0x5d, 0xcb, 0x21, 0x80, 0x85, 0xdd, 0xa6, + 0xf2, 0x68, 0x7b, 0xb7, 0x96, 0xbf, 0x7a, 0x1b, 0x96, 0x63, 0xf7, 0xb7, 0xd1, 0x0a, 0x54, 0xba, + 0xcd, 0xf6, 0xd6, 0x83, 0x9d, 0xcf, 0x54, 0x65, 0xbb, 0xb9, 0xf5, 0x79, 0x6d, 0x0e, 0xad, 0x42, + 0x4d, 0x90, 0xda, 0x3b, 0xbb, 0x8c, 0x2a, 0x5d, 0x7d, 0x16, 0x9b, 0x6f, 0x18, 0x1d, 0x87, 0x15, + 0xbf, 0x4b, 0x75, 0x53, 0xd9, 0x6e, 0xee, 0x6e, 0x13, 0x4b, 0x22, 0x64, 0x65, 0xaf, 0xdd, 0x6e, + 0xb5, 0x1f, 0xd5, 0x24, 0xa2, 0x35, 0x20, 0x6f, 0x7f, 0xd6, 0x22, 0xcc, 0xb9, 0x28, 0xf3, 0x5e, + 0xfb, 0x7b, 0xed, 0x9d, 0x4f, 0xdb, 0xb5, 0xfc, 0xc6, 0xcf, 0x57, 0xfc, 0x4f, 0x64, 0xbb, 0xd8, + 0xa1, 0x57, 0x62, 0x3a, 0xb0, 0x28, 0xfe, 0x7d, 0x42, 0x4a, 0xb6, 0x8e, 0xfe, 0xd3, 0x87, 0xc6, + 0xb9, 0x31, 0x1c, 0xbc, 0xf6, 0x9e, 0x43, 0xfb, 0xb4, 0x16, 0x0e, 0xdd, 0xa7, 0xbf, 0x98, 0x5a, + 0x79, 0x26, 0xae, 0xf0, 0x37, 0x2e, 0x4d, 0xe4, 0xf3, 0xfb, 0xc0, 0xa4, 0xdc, 0x0d, 0x7f, 0xb2, + 0x86, 0x2e, 0xa5, 0xd5, 0xa9, 0x29, 0xdf, 0xc4, 0x35, 0x2e, 0x4f, 0x66, 0xf4, 0xbb, 0x79, 0x06, + 0xb5, 0xf8, 0xe7, 0x6b, 0x28, 0x05, 0x77, 0xcd, 0xf8, 0x46, 0xae, 0x71, 0x75, 0x1a, 0xd6, 0x70, + 0x67, 0x89, 0xef, 0xb1, 0xae, 0x4c, 0xf3, 0xdd, 0x4a, 0x66, 0x67, 0x59, 0x9f, 0xb8, 0x30, 0x07, + 0x46, 0xaf, 0xc0, 0xa3, 0xd4, 0x8f, 0x9f, 0x52, 0xbe, 0xb4, 0x48, 0x73, 0x60, 0xfa, 0x6d, 0x7a, + 0x79, 0x0e, 0x1d, 0xc2, 0x72, 0xec, 0x6e, 0x03, 0x4a, 0x11, 0x4f, 0xbf, 0xc4, 0xd1, 0xb8, 0x32, + 0x05, 0x67, 0x34, 0x22, 0xc2, 0x77, 0x19, 0xd2, 0x23, 0x22, 0xe5, 0xa6, 0x44, 0x7a, 0x44, 0xa4, + 0x5e, 0x8b, 0xa0, 0xc1, 0x1d, 0xb9, 0xc3, 0x90, 0x16, 0xdc, 0x69, 0x37, 0x27, 0x1a, 0x97, 0x26, + 0xf2, 0x85, 0x9d, 0x16, 0xbb, 0xd1, 0x90, 0xe6, 0xb4, 0xf4, 0x1b, 0x13, 0x8d, 0x2b, 0x53, 0x70, + 0xc6, 0xa3, 0x20, 0x38, 0x1f, 0xcd, 0x8a, 0x82, 0xc4, 0x69, 0x7e, 0x56, 0x14, 0x24, 0x8f, 0x5a, + 0x79, 0x14, 0xc4, 0xce, 0x35, 0x2f, 0x4f, 0x71, 0x0e, 0x93, 0x1d, 0x05, 0xe9, 0x27, 0x36, 0xf2, + 0x1c, 0xfa, 0x89, 0x04, 0xf5, 0xac, 0x33, 0x0e, 0x94, 0x52, 0xeb, 0x4d, 0x38, 0x96, 0x69, 0x6c, + 0xcc, 0x22, 0xe2, 0x5b, 0xf1, 0x15, 0xa0, 0xe4, 0x1a, 0x88, 0xde, 0x4d, 0x1b, 0x99, 0x8c, 0x95, + 0xb6, 0xf1, 0xde, 0x74, 0xcc, 0x7e, 0x97, 0x5d, 0x28, 0x8a, 0x53, 0x15, 0x94, 0x92, 0xa5, 0x63, + 0x67, 0x3a, 0x0d, 0x79, 0x1c, 0x8b, 0xaf, 0xf4, 0x11, 0x14, 0x08, 0x15, 0x9d, 0x4e, 0xe7, 0x16, + 0xca, 0xce, 0x64, 0x3d, 0xf6, 0x15, 0x3d, 0x85, 0x05, 0x76, 0x8c, 0x80, 0x52, 0x50, 0x88, 0xc8, + 0x61, 0x47, 0xe3, 0x6c, 0x36, 0x83, 0xaf, 0xee, 0x4b, 0xf6, 0x9f, 0x75, 0xf8, 0x09, 0x01, 0x7a, + 0x27, 0xfd, 0x03, 0xfa, 0xe8, 0x81, 0x44, 0xe3, 0xc2, 0x04, 0xae, 0xf0, 0xa4, 0x88, 0x55, 0xc0, + 0x97, 0x26, 0x6e, 0x63, 0xb2, 0x27, 0x45, 0xfa, 0x46, 0x89, 0x05, 0x49, 0x72, 0x23, 0x95, 0x16, + 0x24, 0x99, 0xdb, 0xd7, 0xb4, 0x20, 0xc9, 0xde, 0x9b, 0xc9, 0x73, 0xc8, 0x83, 0x63, 0x29, 0xb0, + 0x19, 0x7a, 0x2f, 0x2b, 0xc8, 0xd3, 0x30, 0xbc, 0xc6, 0xb5, 0x29, 0xb9, 0xc3, 0x83, 0xcf, 0x27, + 0xfd, 0xdb, 0xd9, 0x58, 0x52, 0xe6, 0xe0, 0xc7, 0xa7, 0xf8, 0xc6, 0xbf, 0xe5, 0x61, 0x89, 0x41, + 0xa2, 0xbc, 0x82, 0xf9, 0x1c, 0x20, 0x38, 0x8d, 0x40, 0xe7, 0xd3, 0x7d, 0x12, 0x39, 0xe2, 0x69, + 0xbc, 0x33, 0x9e, 0x29, 0x1c, 0x68, 0x21, 0x64, 0x3f, 0x2d, 0xd0, 0x92, 0x07, 0x18, 0x69, 0x81, + 0x96, 0x72, 0x3c, 0x20, 0xcf, 0xa1, 0x4f, 0xa0, 0xe4, 0x43, 0xc8, 0x28, 0x0d, 0x82, 0x8e, 0x61, + 0xe4, 0x8d, 0xf3, 0x63, 0x79, 0xc2, 0x56, 0x87, 0xf0, 0xe1, 0x34, 0xab, 0x93, 0x38, 0x74, 0x9a, + 0xd5, 0x69, 0x20, 0x73, 0xe0, 0x13, 0x86, 0x22, 0x65, 0xfa, 0x24, 0x02, 0xe2, 0x65, 0xfa, 0x24, + 0x0a, 0x45, 0xc9, 0x73, 0x0f, 0x2e, 0xfe, 0xe2, 0xeb, 0x33, 0xd2, 0xbf, 0x7c, 0x7d, 0x66, 0xee, + 0xc7, 0xdf, 0x9c, 0x91, 0x7e, 0xf1, 0xcd, 0x19, 0xe9, 0x9f, 0xbe, 0x39, 0x23, 0xfd, 0xfb, 0x37, + 0x67, 0xa4, 0x3f, 0xfd, 0x8f, 0x33, 0x73, 0xdf, 0x2f, 0x0a, 0xe9, 0xfd, 0x05, 0xfa, 0xff, 0xb1, + 0xde, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x87, 0x9d, 0x7b, 0xff, 0xe5, 0x4c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -8755,6 +8895,30 @@ func (m *LinuxSandboxSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, er _ = i var l int _ = l + if m.Apparmor != nil { + { + size, err := m.Apparmor.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x52 + } + if m.Seccomp != nil { + { + size, err := m.Seccomp.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x4a + } if m.RunAsGroup != nil { { size, err := m.RunAsGroup.MarshalToSizedBuffer(dAtA[:i]) @@ -8785,21 +8949,21 @@ func (m *LinuxSandboxSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, er dAtA[i] = 0x30 } if len(m.SupplementalGroups) > 0 { - dAtA3 := make([]byte, len(m.SupplementalGroups)*10) - var j2 int + dAtA5 := make([]byte, len(m.SupplementalGroups)*10) + var j4 int for _, num1 := range m.SupplementalGroups { num := uint64(num1) for num >= 1<<7 { - dAtA3[j2] = uint8(uint64(num)&0x7f | 0x80) + dAtA5[j4] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j2++ + j4++ } - dAtA3[j2] = uint8(num) - j2++ + dAtA5[j4] = uint8(num) + j4++ } - i -= j2 - copy(dAtA[i:], dAtA3[:j2]) - i = encodeVarintApi(dAtA, i, uint64(j2)) + i -= j4 + copy(dAtA[i:], dAtA5[:j4]) + i = encodeVarintApi(dAtA, i, uint64(j4)) i-- dAtA[i] = 0x2a } @@ -8852,6 +9016,41 @@ func (m *LinuxSandboxSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, er return len(dAtA) - i, nil } +func (m *SecurityProfile) 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 *SecurityProfile) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SecurityProfile) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.LocalhostRef) > 0 { + i -= len(m.LocalhostRef) + copy(dAtA[i:], m.LocalhostRef) + i = encodeVarintApi(dAtA, i, uint64(len(m.LocalhostRef))) + i-- + dAtA[i] = 0x12 + } + if m.ProfileType != 0 { + i = encodeVarintApi(dAtA, i, uint64(m.ProfileType)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *LinuxPodSandboxConfig) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -10191,6 +10390,32 @@ func (m *LinuxContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, _ = i var l int _ = l + if m.Apparmor != nil { + { + size, err := m.Apparmor.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x82 + } + if m.Seccomp != nil { + { + size, err := m.Seccomp.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintApi(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x7a + } if len(m.ReadonlyPaths) > 0 { for iNdEx := len(m.ReadonlyPaths) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.ReadonlyPaths[iNdEx]) @@ -10246,21 +10471,21 @@ func (m *LinuxContainerSecurityContext) MarshalToSizedBuffer(dAtA []byte) (int, dAtA[i] = 0x4a } if len(m.SupplementalGroups) > 0 { - dAtA23 := make([]byte, len(m.SupplementalGroups)*10) - var j22 int + dAtA27 := make([]byte, len(m.SupplementalGroups)*10) + var j26 int for _, num1 := range m.SupplementalGroups { num := uint64(num1) for num >= 1<<7 { - dAtA23[j22] = uint8(uint64(num)&0x7f | 0x80) + dAtA27[j26] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j22++ + j26++ } - dAtA23[j22] = uint8(num) - j22++ + dAtA27[j26] = uint8(num) + j26++ } - i -= j22 - copy(dAtA[i:], dAtA23[:j22]) - i = encodeVarintApi(dAtA, i, uint64(j22)) + i -= j26 + copy(dAtA[i:], dAtA27[:j26]) + i = encodeVarintApi(dAtA, i, uint64(j26)) i-- dAtA[i] = 0x42 } @@ -11976,21 +12201,21 @@ func (m *PortForwardRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { var l int _ = l if len(m.Port) > 0 { - dAtA47 := make([]byte, len(m.Port)*10) - var j46 int + dAtA51 := make([]byte, len(m.Port)*10) + var j50 int for _, num1 := range m.Port { num := uint64(num1) for num >= 1<<7 { - dAtA47[j46] = uint8(uint64(num)&0x7f | 0x80) + dAtA51[j50] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j46++ + j50++ } - dAtA47[j46] = uint8(num) - j46++ + dAtA51[j50] = uint8(num) + j50++ } - i -= j46 - copy(dAtA[i:], dAtA47[:j46]) - i = encodeVarintApi(dAtA, i, uint64(j46)) + i -= j50 + copy(dAtA[i:], dAtA51[:j50]) + i = encodeVarintApi(dAtA, i, uint64(j50)) i-- dAtA[i] = 0x12 } @@ -13693,6 +13918,30 @@ func (m *LinuxSandboxSecurityContext) Size() (n int) { l = m.RunAsGroup.Size() n += 1 + l + sovApi(uint64(l)) } + if m.Seccomp != nil { + l = m.Seccomp.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.Apparmor != nil { + l = m.Apparmor.Size() + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *SecurityProfile) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ProfileType != 0 { + n += 1 + sovApi(uint64(m.ProfileType)) + } + l = len(m.LocalhostRef) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } return n } @@ -14328,6 +14577,14 @@ func (m *LinuxContainerSecurityContext) Size() (n int) { n += 1 + l + sovApi(uint64(l)) } } + if m.Seccomp != nil { + l = m.Seccomp.Size() + n += 1 + l + sovApi(uint64(l)) + } + if m.Apparmor != nil { + l = m.Apparmor.Size() + n += 2 + l + sovApi(uint64(l)) + } return n } @@ -15740,6 +15997,19 @@ func (this *LinuxSandboxSecurityContext) String() string { `Privileged:` + fmt.Sprintf("%v", this.Privileged) + `,`, `SeccompProfilePath:` + fmt.Sprintf("%v", this.SeccompProfilePath) + `,`, `RunAsGroup:` + strings.Replace(this.RunAsGroup.String(), "Int64Value", "Int64Value", 1) + `,`, + `Seccomp:` + strings.Replace(this.Seccomp.String(), "SecurityProfile", "SecurityProfile", 1) + `,`, + `Apparmor:` + strings.Replace(this.Apparmor.String(), "SecurityProfile", "SecurityProfile", 1) + `,`, + `}`, + }, "") + return s +} +func (this *SecurityProfile) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&SecurityProfile{`, + `ProfileType:` + fmt.Sprintf("%v", this.ProfileType) + `,`, + `LocalhostRef:` + fmt.Sprintf("%v", this.LocalhostRef) + `,`, `}`, }, "") return s @@ -16197,6 +16467,8 @@ func (this *LinuxContainerSecurityContext) String() string { `RunAsGroup:` + strings.Replace(this.RunAsGroup.String(), "Int64Value", "Int64Value", 1) + `,`, `MaskedPaths:` + fmt.Sprintf("%v", this.MaskedPaths) + `,`, `ReadonlyPaths:` + fmt.Sprintf("%v", this.ReadonlyPaths) + `,`, + `Seccomp:` + strings.Replace(this.Seccomp.String(), "SecurityProfile", "SecurityProfile", 1) + `,`, + `Apparmor:` + strings.Replace(this.Apparmor.String(), "SecurityProfile", "SecurityProfile", 1) + `,`, `}`, }, "") return s @@ -18425,6 +18697,182 @@ func (m *LinuxSandboxSecurityContext) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 9: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Seccomp", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Seccomp == nil { + m.Seccomp = &SecurityProfile{} + } + if err := m.Seccomp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 10: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Apparmor", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Apparmor == nil { + m.Apparmor = &SecurityProfile{} + } + if err := m.Apparmor.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *SecurityProfile) 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 ErrIntOverflowApi + } + 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: SecurityProfile: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SecurityProfile: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ProfileType", wireType) + } + m.ProfileType = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ProfileType |= SecurityProfile_ProfileType(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LocalhostRef", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + 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 ErrInvalidLengthApi + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.LocalhostRef = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -23503,6 +23951,78 @@ func (m *LinuxContainerSecurityContext) Unmarshal(dAtA []byte) error { } m.ReadonlyPaths = append(m.ReadonlyPaths, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex + case 15: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Seccomp", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Seccomp == nil { + m.Seccomp = &SecurityProfile{} + } + if err := m.Seccomp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 16: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Apparmor", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthApi + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Apparmor == nil { + m.Apparmor = &SecurityProfile{} + } + if err := m.Apparmor.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) diff --git a/vendor/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto b/vendor/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto index 0c7ff5641..b0acd98aa 100644 --- a/vendor/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto +++ b/vendor/k8s.io/cri-api/pkg/apis/runtime/v1alpha2/api.proto @@ -15,7 +15,7 @@ limitations under the License. */ // To regenerate api.pb.go run hack/update-generated-runtime.sh -syntax = 'proto3'; +syntax = "proto3"; package runtime.v1alpha2; option go_package = "v1alpha2"; @@ -279,13 +279,37 @@ message LinuxSandboxSecurityContext { // This allows a sandbox to take additional security precautions if no // privileged containers are expected to be run. bool privileged = 6; + // Seccomp profile for the sandbox. + SecurityProfile seccomp = 9; + // AppArmor profile for the sandbox. + SecurityProfile apparmor = 10; // Seccomp profile for the sandbox, candidate values are: // * runtime/default: the default profile for the container runtime // * unconfined: unconfined profile, ie, no seccomp sandboxing // * localhost/: the profile installed on the node. // is the full path of the profile. // Default: "", which is identical with unconfined. - string seccomp_profile_path = 7; + string seccomp_profile_path = 7 [deprecated=true]; +} + +// A security profile which can be used for sandboxes and containers. +message SecurityProfile { + // Available profile types. + enum ProfileType { + // The container runtime default profile should be used. + RuntimeDefault = 0; + // Disable the feature for the sandbox or the container. + Unconfined = 1; + // A pre-defined profile on the node should be used. + Localhost = 2; + } + // Indicator which `ProfileType` should be applied. + ProfileType profile_type = 1; + // Indicates that a pre-defined profile on the node should be used. + // Must only be set if `ProfileType` is `Localhost`. + // For seccomp, it must be an absolute path to the seccomp profile. + // For AppArmor, this field is the AppArmor `/` + string localhost_ref = 2; } // LinuxPodSandboxConfig holds platform-specific configurations for Linux @@ -604,7 +628,7 @@ message LinuxContainerSecurityContext { // 1. All capabilities are added. // 2. Sensitive paths, such as kernel module paths within sysfs, are not masked. // 3. Any sysfs and procfs mounts are mounted RW. - // 4. Apparmor confinement is not applied. + // 4. AppArmor confinement is not applied. // 5. Seccomp restrictions are not applied. // 6. The device cgroup does not restrict access to any devices. // 7. All devices from the host's /dev are available within the container. @@ -631,20 +655,6 @@ message LinuxContainerSecurityContext { // List of groups applied to the first process run in the container, in // addition to the container's primary GID. repeated int64 supplemental_groups = 8; - // AppArmor profile for the container, candidate values are: - // * runtime/default: equivalent to not specifying a profile. - // * unconfined: no profiles are loaded - // * localhost/: profile loaded on the node - // (localhost) by name. The possible profile names are detailed at - // http://wiki.apparmor.net/index.php/AppArmor_Core_Policy_Reference - string apparmor_profile = 9; - // Seccomp profile for the container, candidate values are: - // * runtime/default: the default profile for the container runtime - // * unconfined: unconfined profile, ie, no seccomp sandboxing - // * localhost/: the profile installed on the node. - // is the full path of the profile. - // Default: "", which is identical with unconfined. - string seccomp_profile_path = 10; // no_new_privs defines if the flag for no_new_privs should be set on the // container. bool no_new_privs = 11; @@ -654,6 +664,24 @@ message LinuxContainerSecurityContext { // readonly_paths is a slice of paths that should be set as readonly by the // container runtime, this can be passed directly to the OCI spec. repeated string readonly_paths = 14; + // Seccomp profile for the container. + SecurityProfile seccomp = 15; + // AppArmor profile for the container. + SecurityProfile apparmor = 16; + // AppArmor profile for the container, candidate values are: + // * runtime/default: equivalent to not specifying a profile. + // * unconfined: no profiles are loaded + // * localhost/: profile loaded on the node + // (localhost) by name. The possible profile names are detailed at + // https://gitlab.com/apparmor/apparmor/-/wikis/AppArmor_Core_Policy_Reference + string apparmor_profile = 9 [deprecated=true]; + // Seccomp profile for the container, candidate values are: + // * runtime/default: the default profile for the container runtime + // * unconfined: unconfined profile, ie, no seccomp sandboxing + // * localhost/: the profile installed on the node. + // is the full path of the profile. + // Default: "", which is identical with unconfined. + string seccomp_profile_path = 10 [deprecated=true]; } // LinuxContainerConfig contains platform-specific configuration for