Merge pull request #10369 from hashicorp/f-cpu-cores-4

Reserved Cores [4/4]: Implement driver cpuset cgroup path consumption
This commit is contained in:
Nick Ethier 2021-04-19 14:53:29 -04:00 committed by GitHub
commit 8140b0160c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 388 additions and 320 deletions

View File

@ -206,7 +206,6 @@ type TaskRunner struct {
// cpusetCgroupPathGetter is used to lookup the cgroup path if supported by the platform
cpusetCgroupPathGetter cgutil.CgroupPathGetter
CpusetCgroupPathGetter cgutil.CgroupPathGetter
// driverManager is used to dispense driver plugins and register event
// handlers
driverManager drivermanager.Manager
@ -999,6 +998,11 @@ func (tr *TaskRunner) buildTaskConfig() *drivers.TaskConfig {
memoryLimit = max
}
cpusetCpus := make([]string, len(taskResources.Cpu.ReservedCores))
for i, v := range taskResources.Cpu.ReservedCores {
cpusetCpus[i] = fmt.Sprintf("%d", v)
}
return &drivers.TaskConfig{
ID: fmt.Sprintf("%s/%s/%s", alloc.ID, task.Name, invocationid),
Name: task.Name,
@ -1013,6 +1017,7 @@ func (tr *TaskRunner) buildTaskConfig() *drivers.TaskConfig {
LinuxResources: &drivers.LinuxResources{
MemoryLimitBytes: memoryLimit * 1024 * 1024,
CPUShares: taskResources.Cpu.CpuShares,
CpusetCpus: strings.Join(cpusetCpus, ","),
PercentTicks: float64(taskResources.Cpu.CpuShares) / float64(tr.clientConfig.Node.NodeResources.Cpu.CpuShares),
},
Ports: &ports,

View File

@ -11,15 +11,12 @@ import (
"time"
"github.com/opencontainers/runc/libcontainer/cgroups"
"github.com/hashicorp/go-hclog"
"github.com/opencontainers/runc/libcontainer/cgroups/fscommon"
"github.com/hashicorp/nomad/lib/cpuset"
cgroupFs "github.com/opencontainers/runc/libcontainer/cgroups/fs"
"github.com/opencontainers/runc/libcontainer/cgroups/fscommon"
"github.com/opencontainers/runc/libcontainer/configs"
"github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad/lib/cpuset"
"github.com/hashicorp/nomad/nomad/structs"
)
@ -128,8 +125,6 @@ type allocTaskCgroupInfo map[string]*TaskCgroupInfo
// If the cgroup parent is set to /nomad then this will ensure that the /nomad/shared
// cgroup is initialized.
func (c *cpusetManager) Init() error {
c.mu.Lock()
defer c.mu.Unlock()
cgroupParentPath, err := getCgroupPathHelper("cpuset", c.cgroupParent)
if err != nil {
return err
@ -156,13 +151,14 @@ func (c *cpusetManager) Init() error {
if err != nil {
return err
}
if err := fscommon.WriteFile(filepath.Join(cgroupParentPath, ReservedCpusetCgroupName), "cpuset.mems", parentMems); err != nil {
return err
}
} else if !os.IsExist(err) {
return err
}
if err := fscommon.WriteFile(filepath.Join(cgroupParentPath, ReservedCpusetCgroupName), "cpuset.mems", parentMems); err != nil {
return err
}
c.doneCh = make(chan struct{})
c.signalCh = make(chan struct{})

View File

@ -348,6 +348,12 @@ CREATE:
container.ID, "container_state", container.State.String())
}
if containerCfg.HostConfig.CPUSet == "" && cfg.Resources.LinuxResources.CpusetCgroupPath != "" {
if err := setCPUSetCgroup(cfg.Resources.LinuxResources.CpusetCgroupPath, container.State.Pid); err != nil {
return nil, nil, fmt.Errorf("failed to set the cpuset cgroup for container: %v", err)
}
}
collectingLogs := !d.config.DisableLogCollection
var dlogger docklog.DockerLogger
@ -839,6 +845,8 @@ func (d *Driver) createContainerConfig(task *drivers.TaskConfig, driverConfig *T
// This translates to docker create/run --cpuset-cpus option.
// --cpuset-cpus limit the specific CPUs or cores a container can use.
// Nomad natively manages cpusets, setting this option will override
// Nomad managed cpusets.
if driverConfig.CPUSetCPUs != "" {
hostConfig.CPUSetCPUs = driverConfig.CPUSetCPUs
}

View File

@ -0,0 +1,5 @@
package docker
func setCPUSetCgroup(path string, pid int) error {
return nil
}

View File

@ -0,0 +1,9 @@
package docker
import (
"github.com/opencontainers/runc/libcontainer/cgroups"
)
func setCPUSetCgroup(path string, pid int) error {
return cgroups.WriteCgroupProc(path, pid)
}

View File

@ -10,3 +10,7 @@ func getPortBinding(ip string, port string) docker.PortBinding {
func tweakCapabilities(basics, adds, drops []string) ([]string, error) {
return nil, nil
}
func setCPUSetCgroup(path string, pid int) error {
return nil
}

View File

@ -471,9 +471,14 @@ func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drive
args = append(args,
"-enable-kvm",
"-cpu", "host",
// Do we have cores information available to the Driver?
// "-smp", fmt.Sprintf("%d", cores),
)
if cfg.Resources.LinuxResources != nil && cfg.Resources.LinuxResources.CpusetCpus != "" {
cores := strings.Split(cfg.Resources.LinuxResources.CpusetCpus, ",")
args = append(args,
"-smp", fmt.Sprintf("%d", len(cores)),
)
}
}
d.logger.Debug("starting QemuVM command ", "args", strings.Join(args, " "))

View File

@ -14,6 +14,8 @@ import (
"syscall"
"time"
"github.com/opencontainers/runtime-spec/specs-go"
"github.com/armon/circbuf"
"github.com/hashicorp/consul-template/signals"
hclog "github.com/hashicorp/go-hclog"
@ -716,6 +718,14 @@ func configureCgroups(cfg *lconfigs.Config, command *ExecCommand) error {
// Set the relative CPU shares for this cgroup.
cfg.Cgroups.Resources.CpuShares = uint64(cpuShares)
if command.Resources.LinuxResources != nil && command.Resources.LinuxResources.CpusetCgroupPath != "" {
cfg.Hooks = lconfigs.Hooks{
lconfigs.CreateRuntime: lconfigs.HookList{
newSetCPUSetCgroupHook(command.Resources.LinuxResources.CpusetCgroupPath),
},
}
}
return nil
}
@ -779,6 +789,7 @@ func newLibcontainerConfig(command *ExecCommand) (*lconfigs.Config, error) {
if err := configureCgroups(cfg, command); err != nil {
return nil, err
}
return cfg, nil
}
@ -884,3 +895,9 @@ func lookPathIn(path string, root string, bin string) (string, error) {
}
return "", fmt.Errorf("file %s not found under path %s", bin, root)
}
func newSetCPUSetCgroupHook(cgroupPath string) lconfigs.Hook {
return lconfigs.NewFunctionHook(func(state *specs.State) error {
return cgroups.WriteCgroupProc(cgroupPath, state.Pid)
})
}

View File

@ -43,6 +43,7 @@ type LaunchRequest struct {
NoPivotRoot bool `protobuf:"varint,14,opt,name=no_pivot_root,json=noPivotRoot,proto3" json:"no_pivot_root,omitempty"`
DefaultPidMode string `protobuf:"bytes,15,opt,name=default_pid_mode,json=defaultPidMode,proto3" json:"default_pid_mode,omitempty"`
DefaultIpcMode string `protobuf:"bytes,16,opt,name=default_ipc_mode,json=defaultIpcMode,proto3" json:"default_ipc_mode,omitempty"`
CpusetCgroup string `protobuf:"bytes,17,opt,name=cpuset_cgroup,json=cpusetCgroup,proto3" json:"cpuset_cgroup,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -185,6 +186,13 @@ func (m *LaunchRequest) GetDefaultIpcMode() string {
return ""
}
func (m *LaunchRequest) GetCpusetCgroup() string {
if m != nil {
return m.CpusetCgroup
}
return ""
}
type LaunchResponse struct {
Process *ProcessState `protobuf:"bytes,1,opt,name=process,proto3" json:"process,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@ -850,70 +858,71 @@ func init() {
}
var fileDescriptor_66b85426380683f3 = []byte{
// 1003 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x5b, 0x6f, 0x1b, 0x45,
0x14, 0xee, 0xc6, 0xf1, 0xed, 0xd8, 0x8e, 0xcd, 0x08, 0x85, 0xad, 0x79, 0xa8, 0xd9, 0x07, 0x6a,
0x41, 0x59, 0x47, 0xe9, 0x0d, 0x09, 0x89, 0x22, 0x92, 0x82, 0x2a, 0xa5, 0x91, 0xb5, 0x2e, 0x54,
0xe2, 0x81, 0x65, 0xba, 0x3b, 0xb5, 0x47, 0xb1, 0x77, 0x96, 0x99, 0x59, 0x37, 0x48, 0x48, 0x3c,
0xf1, 0x0f, 0x40, 0xe2, 0x87, 0xf1, 0x83, 0xd0, 0xdc, 0x36, 0x76, 0x5a, 0xaa, 0x75, 0x11, 0x4f,
0x9e, 0x39, 0xfe, 0xbe, 0x73, 0x99, 0x73, 0xce, 0xb7, 0x70, 0x27, 0xe5, 0x74, 0x4d, 0xb8, 0x98,
0x88, 0x05, 0xe6, 0x24, 0x9d, 0x90, 0x4b, 0x92, 0x14, 0x92, 0xf1, 0x49, 0xce, 0x99, 0x64, 0xe5,
0x35, 0xd4, 0x57, 0xf4, 0xf1, 0x02, 0x8b, 0x05, 0x4d, 0x18, 0xcf, 0xc3, 0x8c, 0xad, 0x70, 0x1a,
0xe6, 0xcb, 0x62, 0x4e, 0x33, 0x11, 0x6e, 0xe3, 0x86, 0xb7, 0xe6, 0x8c, 0xcd, 0x97, 0xc4, 0x38,
0x79, 0x51, 0xbc, 0x9c, 0x48, 0xba, 0x22, 0x42, 0xe2, 0x55, 0x6e, 0x01, 0x81, 0x25, 0x4e, 0x5c,
0x78, 0x13, 0xce, 0xdc, 0x0c, 0x26, 0xf8, 0xbb, 0x0e, 0xbd, 0x33, 0x5c, 0x64, 0xc9, 0x22, 0x22,
0x3f, 0x17, 0x44, 0x48, 0x34, 0x80, 0x5a, 0xb2, 0x4a, 0x7d, 0x6f, 0xe4, 0x8d, 0xdb, 0x91, 0x3a,
0x22, 0x04, 0xfb, 0x98, 0xcf, 0x85, 0xbf, 0x37, 0xaa, 0x8d, 0xdb, 0x91, 0x3e, 0xa3, 0x73, 0x68,
0x73, 0x22, 0x58, 0xc1, 0x13, 0x22, 0xfc, 0xda, 0xc8, 0x1b, 0x77, 0x8e, 0x8f, 0xc2, 0x7f, 0x4b,
0xdc, 0xc6, 0x37, 0x21, 0xc3, 0xc8, 0xf1, 0xa2, 0x2b, 0x17, 0xe8, 0x16, 0x74, 0x84, 0x4c, 0x59,
0x21, 0xe3, 0x1c, 0xcb, 0x85, 0xbf, 0xaf, 0xa3, 0x83, 0x31, 0x4d, 0xb1, 0x5c, 0x58, 0x00, 0xe1,
// 1020 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x5b, 0x8f, 0xdb, 0x44,
0x14, 0xae, 0x37, 0x9b, 0xdb, 0x49, 0xb2, 0x49, 0x47, 0xa8, 0xb8, 0xe1, 0xa1, 0xc1, 0x48, 0x34,
0x82, 0xe2, 0xac, 0xb6, 0x37, 0x24, 0x24, 0x8a, 0xd8, 0x2d, 0xa8, 0xd2, 0x76, 0x15, 0x39, 0x85,
0x4a, 0x3c, 0x60, 0x5c, 0xcf, 0x34, 0x19, 0x6d, 0xe2, 0x31, 0x33, 0xe3, 0x74, 0x91, 0x90, 0x78,
0xe2, 0x1f, 0x80, 0xc4, 0x5f, 0xe5, 0x0d, 0xcd, 0xcd, 0x9b, 0x6c, 0x4b, 0xe5, 0x14, 0xf1, 0x14,
0xcf, 0xc9, 0xf7, 0x9d, 0xcb, 0x9c, 0x73, 0xbe, 0x81, 0x3b, 0x98, 0xd3, 0x35, 0xe1, 0x62, 0x22,
0x16, 0x09, 0x27, 0x78, 0x42, 0x2e, 0x48, 0x5a, 0x48, 0xc6, 0x27, 0x39, 0x67, 0x92, 0x95, 0xc7,
0x50, 0x1f, 0xd1, 0xc7, 0x8b, 0x44, 0x2c, 0x68, 0xca, 0x78, 0x1e, 0x66, 0x6c, 0x95, 0xe0, 0x30,
0x5f, 0x16, 0x73, 0x9a, 0x89, 0x70, 0x1b, 0x37, 0xbc, 0x35, 0x67, 0x6c, 0xbe, 0x24, 0xc6, 0xc9,
0x8b, 0xe2, 0xe5, 0x44, 0xd2, 0x15, 0x11, 0x32, 0x59, 0xe5, 0x16, 0x10, 0x58, 0xe2, 0xc4, 0x85,
0x37, 0xe1, 0xcc, 0xc9, 0x60, 0x82, 0xbf, 0xeb, 0xd0, 0x3b, 0x4d, 0x8a, 0x2c, 0x5d, 0x44, 0xe4,
0xe7, 0x82, 0x08, 0x89, 0x06, 0x50, 0x4b, 0x57, 0xd8, 0xf7, 0x46, 0xde, 0xb8, 0x1d, 0xa9, 0x4f,
0x84, 0x60, 0x3f, 0xe1, 0x73, 0xe1, 0xef, 0x8d, 0x6a, 0xe3, 0x76, 0xa4, 0xbf, 0xd1, 0x19, 0xb4,
0x39, 0x11, 0xac, 0xe0, 0x29, 0x11, 0x7e, 0x6d, 0xe4, 0x8d, 0x3b, 0x47, 0x87, 0xe1, 0xbf, 0x25,
0x6e, 0xe3, 0x9b, 0x90, 0x61, 0xe4, 0x78, 0xd1, 0xa5, 0x0b, 0x74, 0x0b, 0x3a, 0x42, 0x62, 0x56,
0xc8, 0x38, 0x4f, 0xe4, 0xc2, 0xdf, 0xd7, 0xd1, 0xc1, 0x98, 0xa6, 0x89, 0x5c, 0x58, 0x00, 0xe1,
0xdc, 0x00, 0xea, 0x25, 0x80, 0x70, 0xae, 0x01, 0x03, 0xa8, 0x91, 0x6c, 0xed, 0x37, 0x74, 0x92,
0xea, 0xa8, 0xf2, 0x2e, 0x04, 0xe1, 0x7e, 0x53, 0x63, 0xf5, 0x19, 0xdd, 0x84, 0x96, 0xc4, 0xe2,
0x22, 0x4e, 0x29, 0xf7, 0x5b, 0xda, 0xde, 0x54, 0xf7, 0x53, 0xca, 0xd1, 0x6d, 0xe8, 0xbb, 0x7c,
0xe2, 0x25, 0x5d, 0x51, 0x29, 0xfc, 0xf6, 0xc8, 0x1b, 0xb7, 0xa2, 0x03, 0x67, 0x3e, 0xd3, 0x56,
0x74, 0x04, 0xef, 0xbf, 0xc0, 0x82, 0x26, 0x71, 0xce, 0x59, 0x42, 0x84, 0x88, 0x93, 0x39, 0x67,
0x45, 0xee, 0x83, 0x46, 0x23, 0xfd, 0xdf, 0xd4, 0xfc, 0x75, 0xa2, 0xff, 0x41, 0xa7, 0xd0, 0x58,
0xb1, 0x22, 0x93, 0xc2, 0xef, 0x8c, 0x6a, 0xe3, 0xce, 0xf1, 0x9d, 0x8a, 0x4f, 0xf5, 0x54, 0x91,
0x22, 0xcb, 0x45, 0xdf, 0x42, 0x33, 0x25, 0x6b, 0xaa, 0x5e, 0xbc, 0xab, 0xdd, 0x7c, 0x56, 0xd1,
0xcd, 0xa9, 0x66, 0x45, 0x8e, 0x8d, 0x16, 0xf0, 0x5e, 0x46, 0xe4, 0x2b, 0xc6, 0x2f, 0x62, 0x2a,
0xd8, 0x12, 0x4b, 0xca, 0x32, 0xbf, 0xa7, 0x9b, 0xf8, 0x45, 0x45, 0x97, 0xe7, 0x86, 0xff, 0xc4,
0xd1, 0x67, 0x39, 0x49, 0xa2, 0x41, 0x76, 0xcd, 0x8a, 0x02, 0xe8, 0x65, 0x2c, 0xce, 0xe9, 0x9a,
0xc9, 0x98, 0x33, 0x26, 0xfd, 0x03, 0xfd, 0x46, 0x9d, 0x8c, 0x4d, 0x95, 0x2d, 0x62, 0x4c, 0xa2,
0x31, 0x0c, 0x52, 0xf2, 0x12, 0x17, 0x4b, 0x19, 0xe7, 0x34, 0x8d, 0x57, 0x2c, 0x25, 0x7e, 0x5f,
0xb7, 0xe6, 0xc0, 0xda, 0xa7, 0x34, 0x7d, 0xca, 0x52, 0xb2, 0x89, 0xa4, 0x79, 0x62, 0x90, 0x83,
0x2d, 0xe4, 0x93, 0x3c, 0x51, 0xc8, 0xe0, 0x27, 0x38, 0x70, 0x53, 0x2d, 0x72, 0x96, 0x09, 0x82,
0xce, 0xa1, 0x69, 0xdb, 0xa5, 0x47, 0xbb, 0x73, 0x7c, 0x2f, 0xac, 0xb6, 0x67, 0xa1, 0x6d, 0xe5,
0x4c, 0x62, 0x49, 0x22, 0xe7, 0x24, 0xe8, 0x41, 0xe7, 0x39, 0xa6, 0xd2, 0x6e, 0x4d, 0xf0, 0x23,
0x74, 0xcd, 0xf5, 0x7f, 0x0a, 0x77, 0x06, 0xfd, 0xd9, 0xa2, 0x90, 0x29, 0x7b, 0x95, 0xb9, 0x45,
0x3d, 0x84, 0x86, 0xa0, 0xf3, 0x0c, 0x2f, 0xed, 0xae, 0xda, 0x1b, 0xfa, 0x08, 0xba, 0x73, 0x8e,
0x13, 0x12, 0xe7, 0x84, 0x53, 0x96, 0xfa, 0x7b, 0x23, 0x6f, 0x5c, 0x8b, 0x3a, 0xda, 0x36, 0xd5,
0xa6, 0x00, 0xc1, 0xe0, 0xca, 0x9b, 0xc9, 0x38, 0x58, 0xc0, 0xe1, 0x77, 0x79, 0xaa, 0x82, 0x96,
0xfb, 0x69, 0x03, 0x6d, 0xed, 0xba, 0xf7, 0x9f, 0x77, 0x3d, 0xb8, 0x09, 0x1f, 0xbc, 0x16, 0xc9,
0x26, 0x31, 0x80, 0x83, 0xef, 0x09, 0x17, 0x94, 0xb9, 0x2a, 0x83, 0x4f, 0xa1, 0x5f, 0x5a, 0xec,
0xdb, 0xfa, 0xd0, 0x5c, 0x1b, 0x93, 0xad, 0xdc, 0x5d, 0x83, 0x4f, 0xa0, 0xab, 0xde, 0xad, 0xcc,
0x7c, 0x08, 0x2d, 0x9a, 0x49, 0xc2, 0xd7, 0xf6, 0x91, 0x6a, 0x51, 0x79, 0x0f, 0x9e, 0x43, 0xcf,
0x62, 0xad, 0xdb, 0x6f, 0xa0, 0x2e, 0x94, 0x61, 0xc7, 0x12, 0x9f, 0x61, 0x71, 0x61, 0x1c, 0x19,
0xea, 0x53, 0xe5, 0x5d, 0x08, 0xc2, 0xfd, 0xa6, 0xc6, 0xea, 0x6f, 0x74, 0x13, 0x5a, 0x32, 0x11,
0xe7, 0x31, 0xa6, 0xdc, 0x6f, 0x69, 0x7b, 0x53, 0x9d, 0x4f, 0x28, 0x47, 0xb7, 0xa1, 0xef, 0xf2,
0x89, 0x97, 0x74, 0x45, 0xa5, 0xf0, 0xdb, 0x23, 0x6f, 0xdc, 0x8a, 0x0e, 0x9c, 0xf9, 0x54, 0x5b,
0xd1, 0x21, 0xbc, 0xf7, 0x22, 0x11, 0x34, 0x8d, 0x73, 0xce, 0x52, 0x22, 0x44, 0x9c, 0xce, 0x39,
0x2b, 0x72, 0x1f, 0x34, 0x1a, 0xe9, 0xff, 0xa6, 0xe6, 0xaf, 0x63, 0xfd, 0x0f, 0x3a, 0x81, 0xc6,
0x8a, 0x15, 0x99, 0x14, 0x7e, 0x67, 0x54, 0x1b, 0x77, 0x8e, 0xee, 0x54, 0xbc, 0xaa, 0xa7, 0x8a,
0x14, 0x59, 0x2e, 0xfa, 0x16, 0x9a, 0x98, 0xac, 0xa9, 0xba, 0xf1, 0xae, 0x76, 0xf3, 0x59, 0x45,
0x37, 0x27, 0x9a, 0x15, 0x39, 0x36, 0x5a, 0xc0, 0xf5, 0x8c, 0xc8, 0x57, 0x8c, 0x9f, 0xc7, 0x54,
0xb0, 0x65, 0x22, 0x29, 0xcb, 0xfc, 0x9e, 0x6e, 0xe2, 0x17, 0x15, 0x5d, 0x9e, 0x19, 0xfe, 0x13,
0x47, 0x9f, 0xe5, 0x24, 0x8d, 0x06, 0xd9, 0x15, 0x2b, 0x0a, 0xa0, 0x97, 0xb1, 0x38, 0xa7, 0x6b,
0x26, 0x63, 0xce, 0x98, 0xf4, 0x0f, 0xf4, 0x1d, 0x75, 0x32, 0x36, 0x55, 0xb6, 0x88, 0x31, 0x89,
0xc6, 0x30, 0xc0, 0xe4, 0x65, 0x52, 0x2c, 0x65, 0x9c, 0x53, 0x1c, 0xaf, 0x18, 0x26, 0x7e, 0x5f,
0xb7, 0xe6, 0xc0, 0xda, 0xa7, 0x14, 0x3f, 0x65, 0x98, 0x6c, 0x22, 0x69, 0x9e, 0x1a, 0xe4, 0x60,
0x0b, 0xf9, 0x24, 0x4f, 0x35, 0xf2, 0x23, 0xe8, 0xa5, 0x79, 0x21, 0x88, 0x74, 0xbd, 0xb9, 0xae,
0x61, 0x5d, 0x63, 0x34, 0x5d, 0x09, 0x7e, 0x82, 0x03, 0x37, 0xfa, 0x22, 0x67, 0x99, 0x20, 0xe8,
0x0c, 0x9a, 0xb6, 0xa7, 0x7a, 0xfe, 0x3b, 0x47, 0xf7, 0xc2, 0x6a, 0xcb, 0x18, 0xda, 0x7e, 0xcf,
0x64, 0x22, 0x49, 0xe4, 0x9c, 0x04, 0x3d, 0xe8, 0x3c, 0x4f, 0xa8, 0xb4, 0xab, 0x15, 0xfc, 0x08,
0x5d, 0x73, 0xfc, 0x9f, 0xc2, 0x9d, 0x42, 0x7f, 0xb6, 0x28, 0x24, 0x66, 0xaf, 0x32, 0xb7, 0xcd,
0x37, 0xa0, 0x21, 0xe8, 0x3c, 0x4b, 0x96, 0x76, 0xa1, 0xed, 0x09, 0x7d, 0x08, 0xdd, 0x39, 0x4f,
0x52, 0x12, 0xe7, 0x84, 0x53, 0x86, 0xfd, 0xbd, 0x91, 0x37, 0xae, 0x45, 0x1d, 0x6d, 0x9b, 0x6a,
0x53, 0x80, 0x60, 0x70, 0xe9, 0xcd, 0x64, 0x1c, 0x2c, 0xe0, 0xc6, 0x77, 0x39, 0x56, 0x41, 0xcb,
0x25, 0xb6, 0x81, 0xb6, 0x04, 0xc1, 0xfb, 0xcf, 0x82, 0x10, 0xdc, 0x84, 0xf7, 0x5f, 0x8b, 0x64,
0x93, 0x18, 0xc0, 0xc1, 0xf7, 0x84, 0x0b, 0xca, 0x5c, 0x95, 0xc1, 0xa7, 0xd0, 0x2f, 0x2d, 0xf6,
0x6e, 0x7d, 0x68, 0xae, 0x8d, 0xc9, 0x56, 0xee, 0x8e, 0xc1, 0x27, 0xd0, 0x55, 0xf7, 0x56, 0x66,
0x3e, 0x84, 0x16, 0xcd, 0x24, 0xe1, 0x6b, 0x7b, 0x49, 0xb5, 0xa8, 0x3c, 0x07, 0xcf, 0xa1, 0x67,
0xb1, 0xd6, 0xed, 0x37, 0x50, 0x17, 0xca, 0xb0, 0x63, 0x89, 0xcf, 0x12, 0x71, 0x6e, 0x1c, 0x19,
0x7a, 0x70, 0x1b, 0x7a, 0x33, 0xdd, 0x89, 0x37, 0x37, 0xaa, 0xee, 0x1a, 0xa5, 0x8a, 0x75, 0x40,
0x5b, 0xfe, 0x05, 0x74, 0x1e, 0x5f, 0x92, 0xc4, 0x11, 0x1f, 0x40, 0x2b, 0x25, 0x38, 0x5d, 0xd2,
0x8c, 0xd8, 0xa4, 0x86, 0xa1, 0x11, 0xfd, 0xd0, 0x89, 0x7e, 0xf8, 0xcc, 0x89, 0x7e, 0x54, 0x62,
0x9d, 0x84, 0xef, 0xbd, 0x2e, 0xe1, 0xb5, 0x2b, 0x09, 0x0f, 0x4e, 0xa0, 0x6b, 0x82, 0xd9, 0xfa,
0x0f, 0xa1, 0xc1, 0x0a, 0x99, 0x17, 0x52, 0xc7, 0xea, 0x46, 0xf6, 0x86, 0x3e, 0x84, 0x36, 0xb9,
0xa4, 0x32, 0x4e, 0xd4, 0xba, 0xed, 0xe9, 0x0a, 0x5a, 0xca, 0x70, 0xa2, 0x16, 0xed, 0x77, 0x0f,
0xba, 0x9b, 0x13, 0xab, 0x62, 0xe7, 0x34, 0xb5, 0x95, 0xaa, 0xe3, 0x5b, 0xf9, 0x1b, 0x6f, 0x53,
0xdb, 0x7c, 0x1b, 0x14, 0xc2, 0xbe, 0xfa, 0x9c, 0xe9, 0x0f, 0xc1, 0xdb, 0xcb, 0xd6, 0xb8, 0xe3,
0x3f, 0xdb, 0xd0, 0x7a, 0x6c, 0x17, 0x09, 0xfd, 0x02, 0x0d, 0xb3, 0xfd, 0xe8, 0x7e, 0xd5, 0xad,
0xdb, 0xfa, 0x06, 0x0e, 0x1f, 0xec, 0x4a, 0xb3, 0xfd, 0xbb, 0x81, 0x04, 0xec, 0x2b, 0x1d, 0x40,
0x77, 0xab, 0x7a, 0xd8, 0x10, 0x91, 0xe1, 0xbd, 0xdd, 0x48, 0x65, 0xd0, 0xdf, 0xa0, 0xe5, 0xd6,
0x19, 0x3d, 0xac, 0xea, 0xe3, 0x9a, 0x9c, 0x0c, 0x3f, 0xdf, 0x9d, 0x58, 0x26, 0xf0, 0x87, 0x07,
0xfd, 0x6b, 0x2b, 0x8d, 0xbe, 0xac, 0xea, 0xef, 0xcd, 0xaa, 0x33, 0x7c, 0xf4, 0xce, 0xfc, 0x32,
0xad, 0x5f, 0xa1, 0x69, 0xb5, 0x03, 0x55, 0xee, 0xe8, 0xb6, 0xfc, 0x0c, 0x1f, 0xee, 0xcc, 0x2b,
0xa3, 0x5f, 0x42, 0x5d, 0xeb, 0x02, 0xaa, 0xdc, 0xd6, 0x4d, 0xed, 0x1a, 0xde, 0xdf, 0x91, 0xe5,
0xe2, 0x1e, 0x79, 0x6a, 0xfe, 0x8d, 0xb0, 0x54, 0x9f, 0xff, 0x2d, 0xc5, 0xaa, 0x3e, 0xff, 0xd7,
0xf4, 0x4b, 0xcf, 0xbf, 0x5a, 0xc3, 0xea, 0xf3, 0xbf, 0xa1, 0x77, 0xd5, 0xe7, 0x7f, 0x53, 0xb7,
0x82, 0x1b, 0xe8, 0x2f, 0x0f, 0x7a, 0xca, 0x34, 0x93, 0x9c, 0xe0, 0x15, 0xcd, 0xe6, 0xe8, 0x51,
0x45, 0xf1, 0x56, 0x2c, 0x23, 0xe0, 0x96, 0xe9, 0x52, 0xf9, 0xea, 0xdd, 0x1d, 0xb8, 0xb4, 0xc6,
0xde, 0x91, 0xf7, 0x75, 0xf3, 0x87, 0xba, 0xd1, 0xac, 0x86, 0xfe, 0xb9, 0xfb, 0x4f, 0x00, 0x00,
0x00, 0xff, 0xff, 0x4a, 0xf7, 0x34, 0xf9, 0x0c, 0x0c, 0x00, 0x00,
0x5b, 0xfe, 0x39, 0x74, 0x1e, 0x5f, 0x90, 0xd4, 0x11, 0x1f, 0x40, 0x0b, 0x93, 0x04, 0x2f, 0x69,
0x46, 0x6c, 0x52, 0xc3, 0xd0, 0xbc, 0x0c, 0xa1, 0x7b, 0x19, 0xc2, 0x67, 0xee, 0x65, 0x88, 0x4a,
0xac, 0xd3, 0xf9, 0xbd, 0xd7, 0x75, 0xbe, 0x76, 0xa9, 0xf3, 0xc1, 0x31, 0x74, 0x4d, 0x30, 0x5b,
0xff, 0x0d, 0x68, 0xb0, 0x42, 0xe6, 0x85, 0xd4, 0xb1, 0xba, 0x91, 0x3d, 0xa1, 0x0f, 0xa0, 0x4d,
0x2e, 0xa8, 0x8c, 0x53, 0xb5, 0x93, 0x7b, 0xba, 0x82, 0x96, 0x32, 0x1c, 0x33, 0x4c, 0x82, 0xdf,
0x3d, 0xe8, 0x6e, 0x4e, 0xac, 0x8a, 0x9d, 0x53, 0x6c, 0x2b, 0x55, 0x9f, 0x6f, 0xe5, 0x6f, 0xdc,
0x4d, 0x6d, 0xf3, 0x6e, 0x50, 0x08, 0xfb, 0xea, 0xcd, 0xd3, 0xaf, 0xc5, 0xdb, 0xcb, 0xd6, 0xb8,
0xa3, 0x3f, 0xdb, 0xd0, 0x7a, 0x6c, 0x17, 0x09, 0xfd, 0x02, 0x0d, 0xb3, 0xfd, 0xe8, 0x7e, 0xd5,
0xad, 0xdb, 0x7a, 0x28, 0x87, 0x0f, 0x76, 0xa5, 0xd9, 0xfe, 0x5d, 0x43, 0x02, 0xf6, 0x95, 0x0e,
0xa0, 0xbb, 0x55, 0x3d, 0x6c, 0x88, 0xc8, 0xf0, 0xde, 0x6e, 0xa4, 0x32, 0xe8, 0x6f, 0xd0, 0x72,
0xeb, 0x8c, 0x1e, 0x56, 0xf5, 0x71, 0x45, 0x4e, 0x86, 0x9f, 0xef, 0x4e, 0x2c, 0x13, 0xf8, 0xc3,
0x83, 0xfe, 0x95, 0x95, 0x46, 0x5f, 0x56, 0xf5, 0xf7, 0x66, 0xd5, 0x19, 0x3e, 0x7a, 0x67, 0x7e,
0x99, 0xd6, 0xaf, 0xd0, 0xb4, 0xda, 0x81, 0x2a, 0x77, 0x74, 0x5b, 0x7e, 0x86, 0x0f, 0x77, 0xe6,
0x95, 0xd1, 0x2f, 0xa0, 0xae, 0x75, 0x01, 0x55, 0x6e, 0xeb, 0xa6, 0x76, 0x0d, 0xef, 0xef, 0xc8,
0x72, 0x71, 0x0f, 0x3d, 0x35, 0xff, 0x46, 0x58, 0xaa, 0xcf, 0xff, 0x96, 0x62, 0x55, 0x9f, 0xff,
0x2b, 0xfa, 0xa5, 0xe7, 0x5f, 0xad, 0x61, 0xf5, 0xf9, 0xdf, 0xd0, 0xbb, 0xea, 0xf3, 0xbf, 0xa9,
0x5b, 0xc1, 0x35, 0xf4, 0x97, 0x07, 0x3d, 0x65, 0x9a, 0x49, 0x4e, 0x92, 0x15, 0xcd, 0xe6, 0xe8,
0x51, 0x45, 0xf1, 0x56, 0x2c, 0x23, 0xe0, 0x96, 0xe9, 0x52, 0xf9, 0xea, 0xdd, 0x1d, 0xb8, 0xb4,
0xc6, 0xde, 0xa1, 0xf7, 0x75, 0xf3, 0x87, 0xba, 0xd1, 0xac, 0x86, 0xfe, 0xb9, 0xfb, 0x4f, 0x00,
0x00, 0x00, 0xff, 0xff, 0x32, 0xbc, 0x95, 0x4b, 0x31, 0x0c, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -44,6 +44,7 @@ message LaunchRequest {
bool no_pivot_root = 14;
string default_pid_mode = 15;
string default_ipc_mode = 16;
string cpuset_cgroup = 17;
}
message LaunchResponse {

1
go.mod
View File

@ -106,6 +106,7 @@ require (
github.com/oklog/run v1.0.1-0.20180308005104-6934b124db28 // indirect
github.com/onsi/gomega v1.9.0 // indirect
github.com/opencontainers/runc v1.0.0-rc93
github.com/opencontainers/runtime-spec v1.0.3-0.20200929063507-e6143ca7d51d
github.com/pkg/errors v0.9.1
github.com/posener/complete v1.2.3
github.com/prometheus/client_golang v1.4.0

View File

@ -368,9 +368,8 @@ type LinuxResources struct {
CPUShares int64
MemoryLimitBytes int64
OOMScoreAdj int64
CpusetCPUs string
CpusetMems string
CpusetCpus string
CpusetCgroupPath string
// PrecentTicks is used to calculate the CPUQuota, currently the docker

View File

@ -2610,9 +2610,10 @@ type LinuxResources struct {
// OOMScoreAdj adjusts the oom-killer score. Default: 0 (not specified)
OomScoreAdj int64 `protobuf:"varint,5,opt,name=oom_score_adj,json=oomScoreAdj,proto3" json:"oom_score_adj,omitempty"`
// CpusetCpus constrains the allowed set of logical CPUs. Default: "" (not specified)
// This field exists to support drivers which can't set a cgroup path.
CpusetCpus string `protobuf:"bytes,6,opt,name=cpuset_cpus,json=cpusetCpus,proto3" json:"cpuset_cpus,omitempty"`
// CpusetMems constrains the allowed set of memory nodes. Default: "" (not specified)
CpusetMems string `protobuf:"bytes,7,opt,name=cpuset_mems,json=cpusetMems,proto3" json:"cpuset_mems,omitempty"`
// CpusetCgroup is the path to the cpuset cgroup managed by the client
CpusetCgroup string `protobuf:"bytes,9,opt,name=cpuset_cgroup,json=cpusetCgroup,proto3" json:"cpuset_cgroup,omitempty"`
// PercentTicks is a compatibility option for docker and should not be used
// buf:lint:ignore FIELD_LOWER_SNAKE_CASE
PercentTicks float64 `protobuf:"fixed64,8,opt,name=PercentTicks,proto3" json:"PercentTicks,omitempty"`
@ -2688,9 +2689,9 @@ func (m *LinuxResources) GetCpusetCpus() string {
return ""
}
func (m *LinuxResources) GetCpusetMems() string {
func (m *LinuxResources) GetCpusetCgroup() string {
if m != nil {
return m.CpusetMems
return m.CpusetCgroup
}
return ""
}
@ -3606,238 +3607,239 @@ func init() {
}
var fileDescriptor_4a8f45747846a74d = []byte{
// 3694 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4f, 0x73, 0xdb, 0x48,
0x76, 0x17, 0x08, 0x92, 0x22, 0x1f, 0x25, 0x0a, 0x6a, 0xcb, 0x1e, 0x9a, 0x93, 0x64, 0xbc, 0xa8,
0x9a, 0x94, 0x6a, 0x77, 0x86, 0x9e, 0xd1, 0x56, 0xc6, 0xe3, 0x59, 0xcf, 0x7a, 0x38, 0x14, 0x6d,
0x69, 0x2c, 0x51, 0x4a, 0x93, 0x2a, 0xaf, 0xe3, 0xec, 0x20, 0x10, 0xd0, 0xa6, 0x60, 0x11, 0x7f,
0x0c, 0x34, 0x65, 0x69, 0x53, 0xa9, 0xa4, 0x36, 0x55, 0xa9, 0x4d, 0x55, 0x52, 0xc9, 0x65, 0xb2,
0x97, 0x9c, 0x36, 0x95, 0x53, 0xbe, 0x40, 0x2a, 0xa9, 0x3d, 0xe7, 0x0b, 0xe4, 0x98, 0x4b, 0x6e,
0xb9, 0xa4, 0x2a, 0xf9, 0x06, 0x5b, 0xfd, 0x07, 0x20, 0x40, 0xd2, 0x6b, 0x90, 0xf2, 0x09, 0x78,
0xaf, 0xbb, 0x7f, 0xfd, 0xf0, 0xde, 0xeb, 0x7e, 0xaf, 0x1b, 0x0f, 0xf4, 0x60, 0x34, 0x1e, 0x3a,
0x5e, 0x74, 0xd7, 0x0e, 0x9d, 0x0b, 0x12, 0x46, 0x77, 0x83, 0xd0, 0xa7, 0xbe, 0xa4, 0x5a, 0x9c,
0x40, 0x1f, 0x9e, 0x99, 0xd1, 0x99, 0x63, 0xf9, 0x61, 0xd0, 0xf2, 0x7c, 0xd7, 0xb4, 0x5b, 0x72,
0x4c, 0x4b, 0x8e, 0x11, 0xdd, 0x9a, 0xbf, 0x37, 0xf4, 0xfd, 0xe1, 0x88, 0x08, 0x84, 0xd3, 0xf1,
0x8b, 0xbb, 0xf6, 0x38, 0x34, 0xa9, 0xe3, 0x7b, 0xb2, 0xfd, 0x83, 0xe9, 0x76, 0xea, 0xb8, 0x24,
0xa2, 0xa6, 0x1b, 0xc8, 0x0e, 0x1f, 0xc6, 0xb2, 0x44, 0x67, 0x66, 0x48, 0xec, 0xbb, 0x67, 0xd6,
0x28, 0x0a, 0x88, 0xc5, 0x9e, 0x06, 0x7b, 0x91, 0xdd, 0x3e, 0x9a, 0xea, 0x16, 0xd1, 0x70, 0x6c,
0xd1, 0x58, 0x72, 0x93, 0xd2, 0xd0, 0x39, 0x1d, 0x53, 0x22, 0x7a, 0xeb, 0xb7, 0xe1, 0xbd, 0x81,
0x19, 0x9d, 0x77, 0x7c, 0xef, 0x85, 0x33, 0xec, 0x5b, 0x67, 0xc4, 0x35, 0x31, 0x79, 0x35, 0x26,
0x11, 0xd5, 0xff, 0x18, 0x1a, 0xb3, 0x4d, 0x51, 0xe0, 0x7b, 0x11, 0x41, 0x5f, 0x41, 0x91, 0x4d,
0xd9, 0x50, 0xee, 0x28, 0xdb, 0xb5, 0x9d, 0x8f, 0x5a, 0x6f, 0x52, 0x81, 0x90, 0xa1, 0x25, 0x45,
0x6d, 0xf5, 0x03, 0x62, 0x61, 0x3e, 0x52, 0xbf, 0x09, 0x37, 0x3a, 0x66, 0x60, 0x9e, 0x3a, 0x23,
0x87, 0x3a, 0x24, 0x8a, 0x27, 0x1d, 0xc3, 0x56, 0x96, 0x2d, 0x27, 0xfc, 0x29, 0xac, 0x59, 0x29,
0xbe, 0x9c, 0xf8, 0x7e, 0x2b, 0x97, 0xee, 0x5b, 0xbb, 0x9c, 0xca, 0x00, 0x67, 0xe0, 0xf4, 0x2d,
0x40, 0x8f, 0x1c, 0x6f, 0x48, 0xc2, 0x20, 0x74, 0x3c, 0x1a, 0x0b, 0xf3, 0x6b, 0x15, 0x6e, 0x64,
0xd8, 0x52, 0x98, 0x97, 0x00, 0x89, 0x1e, 0x99, 0x28, 0xea, 0x76, 0x6d, 0xe7, 0x9b, 0x9c, 0xa2,
0xcc, 0xc1, 0x6b, 0xb5, 0x13, 0xb0, 0xae, 0x47, 0xc3, 0x2b, 0x9c, 0x42, 0x47, 0xdf, 0x42, 0xf9,
0x8c, 0x98, 0x23, 0x7a, 0xd6, 0x28, 0xdc, 0x51, 0xb6, 0xeb, 0x3b, 0x8f, 0xae, 0x31, 0xcf, 0x1e,
0x07, 0xea, 0x53, 0x93, 0x12, 0x2c, 0x51, 0xd1, 0xc7, 0x80, 0xc4, 0x9b, 0x61, 0x93, 0xc8, 0x0a,
0x9d, 0x80, 0xb9, 0x64, 0x43, 0xbd, 0xa3, 0x6c, 0x57, 0xf1, 0xa6, 0x68, 0xd9, 0x9d, 0x34, 0x34,
0x03, 0xd8, 0x98, 0x92, 0x16, 0x69, 0xa0, 0x9e, 0x93, 0x2b, 0x6e, 0x91, 0x2a, 0x66, 0xaf, 0xe8,
0x31, 0x94, 0x2e, 0xcc, 0xd1, 0x98, 0x70, 0x91, 0x6b, 0x3b, 0x9f, 0xbe, 0xcd, 0x3d, 0xa4, 0x8b,
0x4e, 0xf4, 0x80, 0xc5, 0xf8, 0x2f, 0x0a, 0x9f, 0x2b, 0xfa, 0x7d, 0xa8, 0xa5, 0xe4, 0x46, 0x75,
0x80, 0x93, 0xde, 0x6e, 0x77, 0xd0, 0xed, 0x0c, 0xba, 0xbb, 0xda, 0x0a, 0x5a, 0x87, 0xea, 0x49,
0x6f, 0xaf, 0xdb, 0x3e, 0x18, 0xec, 0x3d, 0xd3, 0x14, 0x54, 0x83, 0xd5, 0x98, 0x28, 0xe8, 0x97,
0x80, 0x30, 0xb1, 0xfc, 0x0b, 0x12, 0x32, 0x47, 0x96, 0x56, 0x45, 0xef, 0xc1, 0x2a, 0x35, 0xa3,
0x73, 0xc3, 0xb1, 0xa5, 0xcc, 0x65, 0x46, 0xee, 0xdb, 0x68, 0x1f, 0xca, 0x67, 0xa6, 0x67, 0x8f,
0xde, 0x2e, 0x77, 0x56, 0xd5, 0x0c, 0x7c, 0x8f, 0x0f, 0xc4, 0x12, 0x80, 0x79, 0x77, 0x66, 0x66,
0x61, 0x00, 0xfd, 0x19, 0x68, 0x7d, 0x6a, 0x86, 0x34, 0x2d, 0x4e, 0x17, 0x8a, 0x6c, 0x7e, 0xe9,
0xd1, 0x8b, 0xcc, 0x29, 0x56, 0x26, 0xe6, 0xc3, 0xf5, 0xff, 0x2f, 0xc0, 0x66, 0x0a, 0x5b, 0x7a,
0xea, 0x53, 0x28, 0x87, 0x24, 0x1a, 0x8f, 0x28, 0x87, 0xaf, 0xef, 0x3c, 0xcc, 0x09, 0x3f, 0x83,
0xd4, 0xc2, 0x1c, 0x06, 0x4b, 0x38, 0xb4, 0x0d, 0x9a, 0x18, 0x61, 0x90, 0x30, 0xf4, 0x43, 0xc3,
0x8d, 0x86, 0x5c, 0x6b, 0x55, 0x5c, 0x17, 0xfc, 0x2e, 0x63, 0x1f, 0x46, 0xc3, 0x94, 0x56, 0xd5,
0x6b, 0x6a, 0x15, 0x99, 0xa0, 0x79, 0x84, 0xbe, 0xf6, 0xc3, 0x73, 0x83, 0xa9, 0x36, 0x74, 0x6c,
0xd2, 0x28, 0x72, 0xd0, 0xcf, 0x72, 0x82, 0xf6, 0xc4, 0xf0, 0x23, 0x39, 0x1a, 0x6f, 0x78, 0x59,
0x86, 0xfe, 0x03, 0x28, 0x8b, 0x2f, 0x65, 0x9e, 0xd4, 0x3f, 0xe9, 0x74, 0xba, 0xfd, 0xbe, 0xb6,
0x82, 0xaa, 0x50, 0xc2, 0xdd, 0x01, 0x66, 0x1e, 0x56, 0x85, 0xd2, 0xa3, 0xf6, 0xa0, 0x7d, 0xa0,
0x15, 0xf4, 0xef, 0xc3, 0xc6, 0x53, 0xd3, 0xa1, 0x79, 0x9c, 0x4b, 0xf7, 0x41, 0x9b, 0xf4, 0x95,
0xd6, 0xd9, 0xcf, 0x58, 0x27, 0xbf, 0x6a, 0xba, 0x97, 0x0e, 0x9d, 0xb2, 0x87, 0x06, 0x2a, 0x09,
0x43, 0x69, 0x02, 0xf6, 0xaa, 0xbf, 0x86, 0x8d, 0x3e, 0xf5, 0x83, 0x5c, 0x9e, 0xff, 0x43, 0x58,
0x65, 0xd1, 0xc6, 0x1f, 0x53, 0xe9, 0xfa, 0xb7, 0x5b, 0x22, 0x1a, 0xb5, 0xe2, 0x68, 0xd4, 0xda,
0x95, 0xd1, 0x0a, 0xc7, 0x3d, 0xd1, 0x2d, 0x28, 0x47, 0xce, 0xd0, 0x33, 0x47, 0x72, 0xb7, 0x90,
0x94, 0x8e, 0x98, 0x93, 0xc7, 0x13, 0x4b, 0xc7, 0xef, 0x00, 0xda, 0x25, 0x11, 0x0d, 0xfd, 0xab,
0x5c, 0xf2, 0x6c, 0x41, 0xe9, 0x85, 0x1f, 0x5a, 0x62, 0x21, 0x56, 0xb0, 0x20, 0xd8, 0xa2, 0xca,
0x80, 0x48, 0xec, 0x8f, 0x01, 0xed, 0x7b, 0x2c, 0xa6, 0xe4, 0x33, 0xc4, 0xdf, 0x17, 0xe0, 0x46,
0xa6, 0xbf, 0x34, 0xc6, 0xf2, 0xeb, 0x90, 0x6d, 0x4c, 0xe3, 0x48, 0xac, 0x43, 0x74, 0x04, 0x65,
0xd1, 0x43, 0x6a, 0xf2, 0xde, 0x02, 0x40, 0x22, 0x4c, 0x49, 0x38, 0x09, 0x33, 0xd7, 0xe9, 0xd5,
0x77, 0xeb, 0xf4, 0xaf, 0x41, 0x8b, 0xbf, 0x23, 0x7a, 0xab, 0x6d, 0xbe, 0x81, 0x1b, 0x96, 0x3f,
0x1a, 0x11, 0x8b, 0x79, 0x83, 0xe1, 0x78, 0x94, 0x84, 0x17, 0xe6, 0xe8, 0xed, 0x7e, 0x83, 0x26,
0xa3, 0xf6, 0xe5, 0x20, 0xfd, 0x39, 0x6c, 0xa6, 0x26, 0x96, 0x86, 0x78, 0x04, 0xa5, 0x88, 0x31,
0xa4, 0x25, 0x3e, 0x59, 0xd0, 0x12, 0x11, 0x16, 0xc3, 0xf5, 0x1b, 0x02, 0xbc, 0x7b, 0x41, 0xbc,
0xe4, 0xb3, 0xf4, 0x5d, 0xd8, 0xec, 0x73, 0x37, 0xcd, 0xe5, 0x87, 0x13, 0x17, 0x2f, 0x64, 0x5c,
0x7c, 0x0b, 0x50, 0x1a, 0x45, 0x3a, 0xe2, 0x15, 0x6c, 0x74, 0x2f, 0x89, 0x95, 0x0b, 0xb9, 0x01,
0xab, 0x96, 0xef, 0xba, 0xa6, 0x67, 0x37, 0x0a, 0x77, 0xd4, 0xed, 0x2a, 0x8e, 0xc9, 0xf4, 0x5a,
0x54, 0xf3, 0xae, 0x45, 0xfd, 0x6f, 0x15, 0xd0, 0x26, 0x73, 0x4b, 0x45, 0x32, 0xe9, 0xa9, 0xcd,
0x80, 0xd8, 0xdc, 0x6b, 0x58, 0x52, 0x92, 0x1f, 0x6f, 0x17, 0x82, 0x4f, 0xc2, 0x30, 0xb5, 0x1d,
0xa9, 0xd7, 0xdc, 0x8e, 0xf4, 0x3d, 0xf8, 0x9d, 0x58, 0x9c, 0x3e, 0x0d, 0x89, 0xe9, 0x3a, 0xde,
0x70, 0xff, 0xe8, 0x28, 0x20, 0x42, 0x70, 0x84, 0xa0, 0x68, 0x9b, 0xd4, 0x94, 0x82, 0xf1, 0x77,
0xb6, 0xe8, 0xad, 0x91, 0x1f, 0x25, 0x8b, 0x9e, 0x13, 0xfa, 0x7f, 0xa8, 0xd0, 0x98, 0x81, 0x8a,
0xd5, 0xfb, 0x1c, 0x4a, 0x11, 0xa1, 0xe3, 0x40, 0xba, 0x4a, 0x37, 0xb7, 0xc0, 0xf3, 0xf1, 0x5a,
0x7d, 0x06, 0x86, 0x05, 0x26, 0x1a, 0x42, 0x85, 0xd2, 0x2b, 0x23, 0x72, 0x7e, 0x16, 0x27, 0x04,
0x07, 0xd7, 0xc5, 0x1f, 0x90, 0xd0, 0x75, 0x3c, 0x73, 0xd4, 0x77, 0x7e, 0x46, 0xf0, 0x2a, 0xa5,
0x57, 0xec, 0x05, 0x3d, 0x63, 0x0e, 0x6f, 0x3b, 0x9e, 0x54, 0x7b, 0x67, 0xd9, 0x59, 0x52, 0x0a,
0xc6, 0x02, 0xb1, 0x79, 0x00, 0x25, 0xfe, 0x4d, 0xcb, 0x38, 0xa2, 0x06, 0x2a, 0xa5, 0x57, 0x5c,
0xa8, 0x0a, 0x66, 0xaf, 0xcd, 0x07, 0xb0, 0x96, 0xfe, 0x02, 0xe6, 0x48, 0x67, 0xc4, 0x19, 0x9e,
0x09, 0x07, 0x2b, 0x61, 0x49, 0x31, 0x4b, 0xbe, 0x76, 0x6c, 0x99, 0xb2, 0x96, 0xb0, 0x20, 0xf4,
0x7f, 0x2d, 0xc0, 0xed, 0x39, 0x9a, 0x91, 0xce, 0xfa, 0x3c, 0xe3, 0xac, 0xef, 0x48, 0x0b, 0xb1,
0xc7, 0x3f, 0xcf, 0x78, 0xfc, 0x3b, 0x04, 0x67, 0xcb, 0xe6, 0x16, 0x94, 0xc9, 0xa5, 0x43, 0x89,
0x2d, 0x55, 0x25, 0xa9, 0xd4, 0x72, 0x2a, 0x5e, 0x77, 0x39, 0x7d, 0x0a, 0x5b, 0x9d, 0x90, 0x98,
0x94, 0xc8, 0xad, 0x3c, 0xf6, 0xff, 0xdb, 0x50, 0x31, 0x47, 0x23, 0xdf, 0x9a, 0x98, 0x75, 0x95,
0xd3, 0xfb, 0xb6, 0xfe, 0x9d, 0x02, 0x37, 0xa7, 0xc6, 0x48, 0x4d, 0x9f, 0x42, 0xdd, 0x89, 0xfc,
0x11, 0xff, 0x08, 0x23, 0x75, 0x8a, 0xfb, 0xd1, 0x62, 0xe1, 0x64, 0x3f, 0xc6, 0xe0, 0x87, 0xba,
0x75, 0x27, 0x4d, 0x72, 0xaf, 0xe2, 0x93, 0xdb, 0x72, 0x35, 0xc7, 0xa4, 0xfe, 0x0f, 0x0a, 0xdc,
0x94, 0x51, 0x3c, 0xf7, 0xc7, 0xcc, 0x11, 0xb9, 0xf0, 0xae, 0x45, 0xd6, 0x1b, 0x70, 0x6b, 0x5a,
0x2e, 0xb9, 0xaf, 0xff, 0x67, 0x11, 0xd0, 0xec, 0x09, 0x12, 0x7d, 0x0f, 0xd6, 0x22, 0xe2, 0xd9,
0x86, 0x88, 0x09, 0x22, 0x5c, 0x55, 0x70, 0x8d, 0xf1, 0x44, 0x70, 0x88, 0xd8, 0x36, 0x47, 0x2e,
0xa5, 0xb4, 0x15, 0xcc, 0xdf, 0xd1, 0x19, 0xac, 0xbd, 0x88, 0x8c, 0x64, 0x6e, 0xee, 0x34, 0xf5,
0xdc, 0x5b, 0xd7, 0xac, 0x1c, 0xad, 0x47, 0xfd, 0xe4, 0xbb, 0x70, 0xed, 0x45, 0x94, 0x10, 0xe8,
0x17, 0x0a, 0xbc, 0x17, 0xa7, 0x0e, 0x13, 0xf5, 0xb9, 0xbe, 0x4d, 0xa2, 0x46, 0xf1, 0x8e, 0xba,
0x5d, 0xdf, 0x39, 0xbe, 0x86, 0xfe, 0x66, 0x98, 0x87, 0xbe, 0x4d, 0xf0, 0x4d, 0x6f, 0x0e, 0x37,
0x42, 0x2d, 0xb8, 0xe1, 0x8e, 0x23, 0x6a, 0x08, 0x2f, 0x30, 0x64, 0xa7, 0x46, 0x89, 0xeb, 0x65,
0x93, 0x35, 0x65, 0x7c, 0x15, 0x9d, 0xc3, 0xba, 0xeb, 0x8f, 0x3d, 0x6a, 0x58, 0xfc, 0x8c, 0x13,
0x35, 0xca, 0x0b, 0x1d, 0x7e, 0xe7, 0x68, 0xe9, 0x90, 0xc1, 0x89, 0x13, 0x53, 0x84, 0xd7, 0xdc,
0x14, 0xa5, 0xb7, 0xa0, 0x96, 0xd2, 0x21, 0xaa, 0x40, 0xb1, 0x77, 0xd4, 0xeb, 0x6a, 0x2b, 0x08,
0xa0, 0xdc, 0xd9, 0xc3, 0x47, 0x47, 0x03, 0x91, 0xf6, 0xef, 0x1f, 0xb6, 0x1f, 0x77, 0xb5, 0x82,
0xde, 0x85, 0xb5, 0x34, 0x1a, 0x42, 0x50, 0x3f, 0xe9, 0x3d, 0xe9, 0x1d, 0x3d, 0xed, 0x19, 0x87,
0x47, 0x27, 0xbd, 0x01, 0x3b, 0x30, 0xd4, 0x01, 0xda, 0xbd, 0x67, 0x13, 0x7a, 0x1d, 0xaa, 0xbd,
0xa3, 0x98, 0x54, 0x9a, 0x05, 0x4d, 0xd1, 0xff, 0xb7, 0x00, 0x5b, 0xf3, 0x14, 0x8b, 0x6c, 0x28,
0x32, 0x23, 0xc9, 0x23, 0xdb, 0xbb, 0xb7, 0x11, 0x47, 0x67, 0xbe, 0x19, 0x98, 0x72, 0x8f, 0xae,
0x62, 0xfe, 0x8e, 0x0c, 0x28, 0x8f, 0xcc, 0x53, 0x32, 0x8a, 0x1a, 0x2a, 0xbf, 0xd4, 0x78, 0x7c,
0x9d, 0xb9, 0x0f, 0x38, 0x92, 0xb8, 0xd1, 0x90, 0xb0, 0xcd, 0xfb, 0x50, 0x4b, 0xb1, 0xe7, 0x5c,
0x1d, 0x6c, 0xa5, 0xaf, 0x0e, 0xaa, 0xe9, 0x7b, 0x80, 0x87, 0xb3, 0xda, 0x62, 0x5f, 0xc3, 0xcc,
0xb5, 0x77, 0xd4, 0x1f, 0x88, 0x43, 0xda, 0x63, 0x7c, 0x74, 0x72, 0xac, 0x29, 0x8c, 0x39, 0x68,
0xf7, 0x9f, 0x68, 0x85, 0xc4, 0x9a, 0xaa, 0xfe, 0x1c, 0xaa, 0xbb, 0xbd, 0xbe, 0x30, 0x1a, 0xdb,
0xa0, 0x22, 0x12, 0xb2, 0x4f, 0xe0, 0xf7, 0x37, 0x55, 0x1c, 0x93, 0xa8, 0x09, 0x95, 0x88, 0x98,
0xa1, 0x75, 0x46, 0x22, 0x19, 0x11, 0x13, 0x9a, 0x8d, 0xf2, 0xf9, 0x3d, 0x88, 0x50, 0x50, 0x15,
0xc7, 0xa4, 0xfe, 0x7f, 0xab, 0x00, 0x93, 0x33, 0x39, 0xaa, 0x43, 0x21, 0xd9, 0xc5, 0x0a, 0x8e,
0xcd, 0x94, 0xed, 0x99, 0x6e, 0xfc, 0x55, 0xfc, 0x1d, 0xed, 0xc0, 0x4d, 0x37, 0x1a, 0x06, 0xa6,
0x75, 0x6e, 0xc8, 0xa3, 0xb4, 0x70, 0x76, 0xbe, 0x23, 0xac, 0xe1, 0x1b, 0xb2, 0x51, 0xfa, 0xb2,
0xc0, 0x3d, 0x00, 0x95, 0x78, 0x17, 0x7c, 0xf5, 0xd6, 0x76, 0xbe, 0x58, 0xf8, 0xae, 0xa0, 0xd5,
0xf5, 0x2e, 0x84, 0x41, 0x18, 0x0c, 0x32, 0x00, 0x6c, 0x72, 0xe1, 0x58, 0xc4, 0x60, 0xa0, 0x25,
0x0e, 0xfa, 0xd5, 0xe2, 0xa0, 0xbb, 0x1c, 0x23, 0x81, 0xae, 0xda, 0x31, 0x8d, 0x7a, 0x50, 0x0d,
0x49, 0xe4, 0x8f, 0x43, 0x8b, 0x88, 0x25, 0x9c, 0x3f, 0x9d, 0xc7, 0xf1, 0x38, 0x3c, 0x81, 0x40,
0xbb, 0x50, 0xe6, 0x2b, 0x37, 0x6a, 0xac, 0x72, 0x61, 0x3f, 0xca, 0x09, 0xc6, 0x97, 0x2b, 0x96,
0x63, 0xd1, 0x63, 0x58, 0x15, 0x22, 0x46, 0x8d, 0x0a, 0x87, 0xf9, 0x38, 0xef, 0xb6, 0xc2, 0x47,
0xe1, 0x78, 0x34, 0xb3, 0xea, 0x38, 0x22, 0x61, 0xa3, 0x2a, 0xac, 0xca, 0xde, 0xd1, 0xfb, 0x50,
0x15, 0x51, 0xcc, 0x76, 0xc2, 0x06, 0xf0, 0x06, 0x11, 0xd6, 0x76, 0x9d, 0x10, 0x7d, 0x00, 0x35,
0x91, 0x91, 0x18, 0x7c, 0xe9, 0xd5, 0x78, 0x33, 0x08, 0xd6, 0x31, 0x5b, 0x80, 0xa2, 0x03, 0x09,
0x43, 0xd1, 0x61, 0x2d, 0xe9, 0x40, 0xc2, 0x90, 0x77, 0xf8, 0x7d, 0xd8, 0xe0, 0x79, 0xdc, 0x30,
0xf4, 0xc7, 0x81, 0xc1, 0x7d, 0x6a, 0x9d, 0x77, 0x5a, 0x67, 0xec, 0xc7, 0x8c, 0xdb, 0x63, 0xce,
0x75, 0x1b, 0x2a, 0x2f, 0xfd, 0x53, 0xd1, 0xa1, 0x2e, 0x82, 0xe9, 0x4b, 0xff, 0x34, 0x6e, 0x4a,
0xe2, 0xec, 0x46, 0x36, 0xce, 0xbe, 0x82, 0x5b, 0xb3, 0x01, 0x83, 0xc7, 0x5b, 0xed, 0xfa, 0xf1,
0x76, 0xcb, 0x9b, 0xb7, 0xd9, 0x7d, 0x0d, 0xaa, 0xed, 0x45, 0x8d, 0xcd, 0x85, 0x9c, 0x23, 0x59,
0xc7, 0x98, 0x0d, 0x6e, 0x7e, 0x06, 0x95, 0xd8, 0xfb, 0x16, 0xd9, 0x52, 0x9a, 0x0f, 0xa0, 0x9e,
0xf5, 0xdd, 0x85, 0x36, 0xa4, 0x7f, 0x2e, 0x40, 0x35, 0xf1, 0x52, 0xe4, 0xc1, 0x0d, 0xae, 0x45,
0x96, 0xe4, 0x18, 0x13, 0xa7, 0x17, 0xa9, 0xd5, 0x97, 0x39, 0xbf, 0xab, 0x1d, 0x23, 0xc8, 0x73,
0x9c, 0x5c, 0x01, 0x28, 0x41, 0x9e, 0xcc, 0xf7, 0x2d, 0x6c, 0x8c, 0x1c, 0x6f, 0x7c, 0x99, 0x9a,
0x4b, 0xe4, 0x44, 0x7f, 0x90, 0x73, 0xae, 0x03, 0x36, 0x7a, 0x32, 0x47, 0x7d, 0x94, 0xa1, 0xd1,
0x1e, 0x94, 0x02, 0x3f, 0xa4, 0x71, 0x24, 0xd8, 0xc9, 0x89, 0x7a, 0xec, 0x87, 0xf4, 0xd0, 0x0c,
0x02, 0x96, 0xda, 0x0b, 0x00, 0xfd, 0xbb, 0x02, 0xdc, 0x9a, 0xff, 0x61, 0xa8, 0x07, 0xaa, 0x15,
0x8c, 0xa5, 0x92, 0x1e, 0x2c, 0xaa, 0xa4, 0x4e, 0x30, 0x9e, 0xc8, 0xcf, 0x80, 0xd0, 0x53, 0x28,
0xbb, 0xc4, 0xf5, 0xc3, 0x2b, 0xa9, 0x8b, 0x87, 0x8b, 0x42, 0x1e, 0xf2, 0xd1, 0x13, 0x54, 0x09,
0x87, 0x30, 0x54, 0xa4, 0xf7, 0x46, 0x72, 0x9f, 0x5c, 0xf0, 0xf2, 0x25, 0x86, 0xc4, 0x09, 0x8e,
0xfe, 0x19, 0xdc, 0x9c, 0xfb, 0x29, 0xe8, 0x77, 0x01, 0xac, 0x60, 0x6c, 0xf0, 0xcb, 0x71, 0xe1,
0x41, 0x2a, 0xae, 0x5a, 0xc1, 0xb8, 0xcf, 0x19, 0xfa, 0x73, 0x68, 0xbc, 0x49, 0x5e, 0xb6, 0xfb,
0x08, 0x89, 0x0d, 0xf7, 0x94, 0xeb, 0x40, 0xc5, 0x15, 0xc1, 0x38, 0x3c, 0x45, 0x3a, 0xac, 0xc7,
0x8d, 0xe6, 0x25, 0xeb, 0xa0, 0xf2, 0x0e, 0x35, 0xd9, 0xc1, 0xbc, 0x3c, 0x3c, 0xd5, 0x7f, 0x59,
0x80, 0x8d, 0x29, 0x91, 0xd9, 0x01, 0x47, 0xec, 0x78, 0xf1, 0xd1, 0x51, 0x50, 0x6c, 0xfb, 0xb3,
0x1c, 0x3b, 0xbe, 0x74, 0xe4, 0xef, 0x3c, 0xf0, 0x05, 0xf2, 0x42, 0xb0, 0xe0, 0x04, 0x6c, 0xf9,
0xb8, 0xa7, 0x0e, 0x8d, 0xf8, 0x19, 0xa8, 0x84, 0x05, 0x81, 0x9e, 0x41, 0x3d, 0x24, 0x3c, 0xe0,
0xda, 0x86, 0xf0, 0xb2, 0xd2, 0x42, 0x5e, 0x26, 0x25, 0x64, 0xce, 0x86, 0xd7, 0x63, 0x24, 0x46,
0x45, 0xe8, 0x29, 0xac, 0xdb, 0x57, 0x9e, 0xe9, 0x3a, 0x96, 0x44, 0x2e, 0x2f, 0x8d, 0xbc, 0x26,
0x81, 0x38, 0xb0, 0x7e, 0x1f, 0x6a, 0xa9, 0x46, 0xf6, 0x61, 0x3c, 0xa7, 0x91, 0x3a, 0x11, 0x44,
0x76, 0xb7, 0x28, 0xc9, 0xdd, 0x42, 0x3f, 0x85, 0x5a, 0x6a, 0x5d, 0x2c, 0x32, 0x94, 0xe9, 0x93,
0xfa, 0x5c, 0x9f, 0x25, 0x5c, 0xa0, 0x3e, 0x3b, 0xc7, 0x9f, 0xf9, 0x11, 0x35, 0x9c, 0x80, 0x6b,
0xb4, 0x8a, 0xcb, 0x8c, 0xdc, 0x0f, 0xf4, 0x7f, 0x2a, 0x40, 0x3d, 0xbb, 0xa4, 0x63, 0x3f, 0x0a,
0x48, 0xe8, 0xf8, 0x76, 0xca, 0x8f, 0x8e, 0x39, 0x83, 0xf9, 0x0a, 0x6b, 0x7e, 0x35, 0xf6, 0xa9,
0x19, 0xfb, 0x8a, 0x15, 0x8c, 0xff, 0x90, 0xd1, 0x53, 0x3e, 0xa8, 0x4e, 0xf9, 0x20, 0xfa, 0x08,
0x90, 0x74, 0xa5, 0x91, 0xe3, 0x3a, 0xd4, 0x38, 0xbd, 0xa2, 0x44, 0xd8, 0x58, 0xc5, 0x9a, 0x68,
0x39, 0x60, 0x0d, 0x5f, 0x33, 0x3e, 0x73, 0x3c, 0xdf, 0x77, 0x8d, 0xc8, 0xf2, 0x43, 0x62, 0x98,
0xf6, 0x4b, 0x9e, 0xf7, 0xab, 0xb8, 0xe6, 0xfb, 0x6e, 0x9f, 0xf1, 0xda, 0xf6, 0x4b, 0x16, 0xf9,
0xac, 0x60, 0x1c, 0x11, 0x6a, 0xb0, 0x07, 0x4f, 0x16, 0xaa, 0x18, 0x04, 0xab, 0x13, 0x8c, 0xa3,
0x54, 0x07, 0x97, 0xb8, 0x2c, 0x01, 0x48, 0x75, 0x38, 0x24, 0x2e, 0x9b, 0x65, 0xed, 0x98, 0x84,
0x16, 0xf1, 0xe8, 0xc0, 0xb1, 0xce, 0x59, 0x6c, 0x57, 0xb6, 0x15, 0x9c, 0xe1, 0xe9, 0x3f, 0x85,
0x12, 0xcf, 0x05, 0xd8, 0xc7, 0xf3, 0x38, 0xca, 0xc3, 0xac, 0xb0, 0x43, 0x85, 0x31, 0x78, 0x90,
0x7d, 0x1f, 0xaa, 0x5c, 0xc9, 0xa9, 0xfc, 0xb8, 0xc2, 0x18, 0xbc, 0xb1, 0x09, 0x95, 0x90, 0x98,
0xb6, 0xef, 0x8d, 0xe2, 0xbb, 0x91, 0x84, 0xd6, 0x5f, 0x41, 0x59, 0x04, 0x94, 0x6b, 0xe0, 0x7f,
0x0c, 0xc8, 0x12, 0xd1, 0x3d, 0x20, 0xa1, 0xeb, 0x44, 0x91, 0x4c, 0x37, 0xf9, 0x0f, 0x39, 0xd1,
0x72, 0x3c, 0x69, 0xd0, 0xff, 0x4b, 0x11, 0x89, 0xa7, 0xf8, 0x55, 0xc2, 0x32, 0x54, 0xe6, 0xcd,
0xec, 0x60, 0x29, 0xee, 0x64, 0x62, 0x12, 0xed, 0x43, 0x59, 0xe6, 0x97, 0x85, 0x65, 0xff, 0x34,
0x49, 0x80, 0xf8, 0x86, 0x96, 0xc8, 0xb3, 0xeb, 0xa2, 0x37, 0xb4, 0x44, 0xdc, 0xd0, 0x12, 0x76,
0x82, 0x96, 0x99, 0xaf, 0x80, 0x2b, 0xf2, 0xc4, 0xb7, 0x66, 0x27, 0xd7, 0xe0, 0x44, 0xff, 0x1f,
0x25, 0xd9, 0x8f, 0xe2, 0xeb, 0x6a, 0xf4, 0x2d, 0x54, 0xd8, 0xd2, 0x36, 0x5c, 0x33, 0x90, 0x3f,
0x5f, 0x3b, 0xcb, 0xdd, 0x84, 0xc7, 0xd1, 0x4a, 0xe4, 0xad, 0xab, 0x81, 0xa0, 0xd8, 0xbe, 0x66,
0xda, 0x93, 0x7d, 0x8d, 0xbd, 0xa3, 0x0f, 0xa1, 0x6e, 0x8e, 0xa9, 0x6f, 0x98, 0xf6, 0x05, 0x09,
0xa9, 0x13, 0x11, 0x69, 0xfb, 0x75, 0xc6, 0x6d, 0xc7, 0xcc, 0xe6, 0x17, 0xb0, 0x96, 0xc6, 0x7c,
0x5b, 0x3e, 0x51, 0x4a, 0xe7, 0x13, 0x7f, 0x02, 0x30, 0xb9, 0xfa, 0x61, 0x3e, 0x42, 0x2e, 0x1d,
0x76, 0x00, 0x96, 0x27, 0xc1, 0x12, 0xae, 0x30, 0x46, 0x87, 0x9d, 0x79, 0xb2, 0xf7, 0xd2, 0xa5,
0xf8, 0x5e, 0x9a, 0xad, 0x5a, 0xb6, 0xd0, 0xce, 0x9d, 0xd1, 0x28, 0xb9, 0x8e, 0xaa, 0xfa, 0xbe,
0xfb, 0x84, 0x33, 0xf4, 0x5f, 0x17, 0x84, 0xaf, 0x88, 0x3f, 0x0c, 0xb9, 0x0e, 0x29, 0xef, 0xca,
0xd4, 0xf7, 0x01, 0x22, 0x6a, 0x86, 0x2c, 0x39, 0x32, 0xe3, 0x0b, 0xb1, 0xe6, 0xcc, 0xc5, 0xf6,
0x20, 0x2e, 0x79, 0xc0, 0x55, 0xd9, 0xbb, 0x4d, 0xd1, 0x97, 0xb0, 0x66, 0xf9, 0x6e, 0x30, 0x22,
0x72, 0x70, 0xe9, 0xad, 0x83, 0x6b, 0x49, 0xff, 0x36, 0x4d, 0x5d, 0xc3, 0x95, 0xaf, 0x7b, 0x0d,
0xf7, 0x6f, 0x8a, 0xf8, 0x51, 0x92, 0xfe, 0x4f, 0x83, 0x86, 0x73, 0x8a, 0x01, 0x1e, 0x2f, 0xf9,
0xd3, 0xe7, 0xb7, 0x55, 0x02, 0x34, 0xbf, 0xcc, 0xf3, 0xeb, 0xfd, 0xcd, 0xe9, 0xea, 0xbf, 0xab,
0x50, 0x4d, 0xfe, 0x91, 0xcc, 0xd8, 0xfe, 0x73, 0xa8, 0x26, 0xf5, 0x26, 0x72, 0x83, 0xf8, 0xad,
0xe6, 0x49, 0x3a, 0xa3, 0x17, 0x80, 0xcc, 0xe1, 0x30, 0x49, 0x43, 0x8d, 0x71, 0x64, 0x0e, 0xe3,
0x3f, 0x54, 0x9f, 0x2f, 0xa0, 0x87, 0x38, 0x6e, 0x9d, 0xb0, 0xf1, 0x58, 0x33, 0x87, 0xc3, 0x0c,
0x07, 0xfd, 0x29, 0xdc, 0xcc, 0xce, 0x61, 0x9c, 0x5e, 0x19, 0x81, 0x63, 0xcb, 0xc3, 0xf0, 0xde,
0xa2, 0xbf, 0x89, 0x5a, 0x19, 0xf8, 0xaf, 0xaf, 0x8e, 0x1d, 0x5b, 0xe8, 0x1c, 0x85, 0x33, 0x0d,
0xcd, 0x3f, 0x87, 0xf7, 0xde, 0xd0, 0x7d, 0x8e, 0x0d, 0x7a, 0xd9, 0xf2, 0x87, 0xe5, 0x95, 0x90,
0xb2, 0xde, 0xaf, 0x14, 0xf1, 0x37, 0x2b, 0xab, 0x93, 0x76, 0x3a, 0x7f, 0xbe, 0x9b, 0x73, 0x9e,
0xce, 0xf1, 0x89, 0x80, 0xe7, 0x29, 0xf3, 0x37, 0x53, 0x29, 0x73, 0xde, 0x44, 0x49, 0x64, 0x9e,
0x02, 0x48, 0x22, 0xe8, 0xff, 0xa2, 0x42, 0x25, 0x46, 0xe7, 0x47, 0xd9, 0xab, 0x88, 0x12, 0xd7,
0x48, 0x2e, 0xb3, 0x14, 0x0c, 0x82, 0xc5, 0x2f, 0x6e, 0xde, 0x87, 0x2a, 0x3b, 0x31, 0x8b, 0xe6,
0x02, 0x6f, 0xae, 0x30, 0x06, 0x6f, 0xfc, 0x00, 0x6a, 0xd4, 0xa7, 0xe6, 0xc8, 0xa0, 0x3c, 0x96,
0xab, 0x62, 0x34, 0x67, 0xf1, 0x48, 0x8e, 0x7e, 0x00, 0x9b, 0xf4, 0x2c, 0xf4, 0x29, 0x1d, 0xb1,
0x1c, 0x92, 0x67, 0x34, 0x22, 0x01, 0x29, 0x62, 0x2d, 0x69, 0x10, 0x99, 0x4e, 0xc4, 0x76, 0xef,
0x49, 0x67, 0xe6, 0xba, 0x7c, 0x13, 0x29, 0xe2, 0xf5, 0x84, 0xcb, 0x5c, 0x9b, 0x05, 0xcf, 0x40,
0x64, 0x0b, 0x7c, 0xaf, 0x50, 0x70, 0x4c, 0x22, 0x03, 0x36, 0x5c, 0x62, 0x46, 0xe3, 0x90, 0xd8,
0xc6, 0x0b, 0x87, 0x8c, 0x6c, 0x71, 0x03, 0x51, 0xcf, 0x7d, 0x0c, 0x88, 0xd5, 0xd2, 0x7a, 0xc4,
0x47, 0xe3, 0x7a, 0x0c, 0x27, 0x68, 0x96, 0x39, 0x88, 0x37, 0xb4, 0x01, 0xb5, 0xfe, 0xb3, 0xfe,
0xa0, 0x7b, 0x68, 0x1c, 0x1e, 0xed, 0x76, 0x65, 0x85, 0x4b, 0xbf, 0x8b, 0x05, 0xa9, 0xb0, 0xf6,
0xc1, 0xd1, 0xa0, 0x7d, 0x60, 0x0c, 0xf6, 0x3b, 0x4f, 0xfa, 0x5a, 0x01, 0xdd, 0x84, 0xcd, 0xc1,
0x1e, 0x3e, 0x1a, 0x0c, 0x0e, 0xba, 0xbb, 0xc6, 0x71, 0x17, 0xef, 0x1f, 0xed, 0xf6, 0x35, 0x15,
0x21, 0xa8, 0x4f, 0xd8, 0x83, 0xfd, 0xc3, 0xae, 0x56, 0x44, 0x35, 0x58, 0x3d, 0xee, 0xe2, 0x4e,
0xb7, 0x37, 0xd0, 0x4a, 0xfa, 0x2f, 0x55, 0xa8, 0xa5, 0xac, 0xc8, 0x1c, 0x39, 0x8c, 0xc4, 0x79,
0xa3, 0x88, 0xd9, 0x2b, 0xff, 0x23, 0x67, 0x5a, 0x67, 0xc2, 0x3a, 0x45, 0x2c, 0x08, 0x7e, 0xc6,
0x30, 0x2f, 0x53, 0xeb, 0xbc, 0x88, 0x2b, 0xae, 0x79, 0x29, 0x40, 0xbe, 0x07, 0x6b, 0xe7, 0x24,
0xf4, 0xc8, 0x48, 0xb6, 0x0b, 0x8b, 0xd4, 0x04, 0x4f, 0x74, 0xd9, 0x06, 0x4d, 0x76, 0x99, 0xc0,
0x08, 0x73, 0xd4, 0x05, 0xff, 0x30, 0x06, 0xdb, 0x82, 0x92, 0x68, 0x5e, 0x15, 0xf3, 0x73, 0x82,
0x85, 0xa9, 0xe8, 0xb5, 0x19, 0xf0, 0xfc, 0xae, 0x88, 0xf9, 0x3b, 0x3a, 0x9d, 0xb5, 0x4f, 0x99,
0xdb, 0xe7, 0xfe, 0xe2, 0xee, 0xfc, 0x26, 0x13, 0x9d, 0x25, 0x26, 0x5a, 0x05, 0x15, 0xc7, 0x65,
0x21, 0x9d, 0x76, 0x67, 0x8f, 0x99, 0x65, 0x1d, 0xaa, 0x87, 0xed, 0x9f, 0x18, 0x27, 0x7d, 0x7e,
0x47, 0x8c, 0x34, 0x58, 0x7b, 0xd2, 0xc5, 0xbd, 0xee, 0x81, 0xe4, 0xa8, 0x68, 0x0b, 0x34, 0xc9,
0x99, 0xf4, 0x2b, 0x32, 0x04, 0xf1, 0x5a, 0x42, 0x15, 0x28, 0xf6, 0x9f, 0xb6, 0x8f, 0xb5, 0xb2,
0xfe, 0xdf, 0x05, 0xd8, 0x10, 0x61, 0x21, 0xf9, 0x81, 0xfd, 0xe6, 0x1f, 0x78, 0xe9, 0xeb, 0x9c,
0x42, 0xf6, 0x3a, 0x27, 0x4e, 0x42, 0x79, 0x54, 0x57, 0x27, 0x49, 0x28, 0xbf, 0x06, 0xca, 0xec,
0xf8, 0xc5, 0x45, 0x76, 0xfc, 0x06, 0xac, 0xba, 0x24, 0x4a, 0xec, 0x56, 0xc5, 0x31, 0x89, 0x1c,
0xa8, 0x99, 0x9e, 0xe7, 0x53, 0x53, 0xdc, 0x91, 0x96, 0x17, 0x0a, 0x86, 0x53, 0x5f, 0xdc, 0x6a,
0x4f, 0x90, 0xc4, 0xc6, 0x9c, 0xc6, 0x6e, 0xfe, 0x18, 0xb4, 0xe9, 0x0e, 0x8b, 0x84, 0xc3, 0xef,
0x7f, 0x3a, 0x89, 0x86, 0x84, 0xad, 0x0b, 0x79, 0x83, 0xaf, 0xad, 0x30, 0x02, 0x9f, 0xf4, 0x7a,
0xfb, 0xbd, 0xc7, 0x9a, 0x82, 0x00, 0xca, 0xdd, 0x9f, 0xec, 0x0f, 0xba, 0xbb, 0x5a, 0x61, 0xe7,
0x57, 0x9b, 0x50, 0x16, 0x42, 0xa2, 0xef, 0x64, 0x26, 0x90, 0x2e, 0x8e, 0x44, 0x3f, 0x5e, 0x38,
0xa3, 0xce, 0x14, 0x5c, 0x36, 0x1f, 0x2e, 0x3d, 0x5e, 0xfe, 0xa8, 0x5a, 0x41, 0x7f, 0xad, 0xc0,
0x5a, 0xe6, 0x27, 0x55, 0xde, 0x3b, 0xe2, 0x39, 0xb5, 0x98, 0xcd, 0x1f, 0x2d, 0x35, 0x36, 0x91,
0xe5, 0x17, 0x0a, 0xd4, 0x52, 0x55, 0x88, 0xe8, 0xfe, 0x32, 0x95, 0x8b, 0x42, 0x92, 0x2f, 0x96,
0x2f, 0x7a, 0xd4, 0x57, 0x3e, 0x51, 0xd0, 0x5f, 0x29, 0x50, 0x4b, 0xd5, 0xe3, 0xe5, 0x16, 0x65,
0xb6, 0x7a, 0x30, 0xb7, 0x28, 0xf3, 0xca, 0xff, 0x56, 0xd0, 0x5f, 0x28, 0x50, 0x4d, 0x6a, 0xeb,
0xd0, 0xbd, 0xc5, 0xab, 0xf1, 0x84, 0x10, 0x9f, 0x2f, 0x5b, 0xc6, 0xa7, 0xaf, 0xa0, 0x3f, 0x83,
0x4a, 0x5c, 0x88, 0x86, 0xf2, 0x46, 0xaf, 0xa9, 0x2a, 0xb7, 0xe6, 0xbd, 0x85, 0xc7, 0xa5, 0xa7,
0x8f, 0xab, 0xc3, 0x72, 0x4f, 0x3f, 0x55, 0xc7, 0xd6, 0xbc, 0xb7, 0xf0, 0xb8, 0x64, 0x7a, 0xe6,
0x09, 0xa9, 0x22, 0xb2, 0xdc, 0x9e, 0x30, 0x5b, 0xbd, 0x96, 0xdb, 0x13, 0xe6, 0xd5, 0xac, 0x09,
0x41, 0x52, 0x65, 0x68, 0xb9, 0x05, 0x99, 0x2d, 0x75, 0xcb, 0x2d, 0xc8, 0x9c, 0xaa, 0x37, 0x7d,
0x05, 0xfd, 0x5c, 0x49, 0x9f, 0x0b, 0xee, 0x2d, 0x5c, 0x6d, 0xb5, 0xa0, 0x4b, 0xce, 0xd4, 0x7b,
0xf1, 0x05, 0xfa, 0x73, 0x79, 0x8b, 0x21, 0x8a, 0xb5, 0xd0, 0x22, 0x60, 0x99, 0xfa, 0xae, 0xe6,
0x67, 0xcb, 0x05, 0x1b, 0x2e, 0xc4, 0x5f, 0x2a, 0x00, 0x93, 0xb2, 0xae, 0xdc, 0x42, 0xcc, 0xd4,
0x93, 0x35, 0xef, 0x2f, 0x31, 0x32, 0xbd, 0x40, 0xe2, 0xb2, 0x93, 0xdc, 0x0b, 0x64, 0xaa, 0xec,
0x2c, 0xf7, 0x02, 0x99, 0x2e, 0x19, 0xd3, 0x57, 0xd0, 0x3f, 0x2a, 0xb0, 0x39, 0x53, 0xf6, 0x82,
0x1e, 0x5e, 0xb3, 0xf2, 0xa9, 0xf9, 0xd5, 0xf2, 0x00, 0xb1, 0x68, 0xdb, 0xca, 0x27, 0x0a, 0xfa,
0x1b, 0x05, 0xd6, 0xb3, 0xa5, 0x02, 0xb9, 0xa3, 0xd4, 0x9c, 0x02, 0x9a, 0xe6, 0x83, 0xe5, 0x06,
0x27, 0xda, 0xfa, 0x3b, 0x05, 0xea, 0xd9, 0xaa, 0x11, 0xf4, 0x60, 0xb1, 0x6d, 0x61, 0x4a, 0xa0,
0x2f, 0x97, 0x1c, 0x1d, 0x4b, 0xf4, 0xf5, 0xea, 0x1f, 0x95, 0x44, 0xf6, 0x56, 0xe6, 0x8f, 0x1f,
0xfe, 0x26, 0x00, 0x00, 0xff, 0xff, 0x96, 0x60, 0x21, 0x15, 0xc3, 0x32, 0x00, 0x00,
// 3707 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4f, 0x6f, 0x1b, 0x49,
0x76, 0x57, 0xf3, 0x9f, 0xc8, 0x47, 0x8a, 0x6a, 0x95, 0x65, 0x0f, 0xcd, 0x49, 0x32, 0xde, 0x0e,
0x26, 0x10, 0x76, 0x67, 0xe8, 0x19, 0x2d, 0x32, 0x1e, 0xcf, 0x7a, 0xd6, 0xc3, 0xa1, 0x68, 0x4b,
0x63, 0x89, 0x52, 0x8a, 0x14, 0xbc, 0x8e, 0xb3, 0xd3, 0x69, 0x75, 0x97, 0xc9, 0xb6, 0xd8, 0x7f,
0xdc, 0x5d, 0x94, 0xa5, 0x0d, 0x82, 0x04, 0x1b, 0x20, 0xd8, 0x00, 0x09, 0x92, 0xcb, 0x64, 0x2f,
0x39, 0x2d, 0x90, 0x53, 0xbe, 0x40, 0xb0, 0xc1, 0x9e, 0xf3, 0x05, 0x72, 0xcc, 0x25, 0xb7, 0x5c,
0x02, 0x24, 0xdf, 0x20, 0xa8, 0x3f, 0xdd, 0xec, 0x26, 0xe9, 0x75, 0x93, 0xf2, 0xa9, 0xfb, 0xbd,
0xaa, 0xfa, 0xd5, 0xeb, 0xf7, 0x5e, 0xd5, 0x7b, 0x55, 0xfd, 0x40, 0xf3, 0xc7, 0x93, 0xa1, 0xed,
0x86, 0x77, 0xad, 0xc0, 0xbe, 0x20, 0x41, 0x78, 0xd7, 0x0f, 0x3c, 0xea, 0x49, 0xaa, 0xc5, 0x09,
0xf4, 0xe1, 0xc8, 0x08, 0x47, 0xb6, 0xe9, 0x05, 0x7e, 0xcb, 0xf5, 0x1c, 0xc3, 0x6a, 0xc9, 0x31,
0x2d, 0x39, 0x46, 0x74, 0x6b, 0xfe, 0xde, 0xd0, 0xf3, 0x86, 0x63, 0x22, 0x10, 0xce, 0x26, 0x2f,
0xee, 0x5a, 0x93, 0xc0, 0xa0, 0xb6, 0xe7, 0xca, 0xf6, 0x0f, 0x66, 0xdb, 0xa9, 0xed, 0x90, 0x90,
0x1a, 0x8e, 0x2f, 0x3b, 0x7c, 0x18, 0xc9, 0x12, 0x8e, 0x8c, 0x80, 0x58, 0x77, 0x47, 0xe6, 0x38,
0xf4, 0x89, 0xc9, 0x9e, 0x3a, 0x7b, 0x91, 0xdd, 0x3e, 0x9a, 0xe9, 0x16, 0xd2, 0x60, 0x62, 0xd2,
0x48, 0x72, 0x83, 0xd2, 0xc0, 0x3e, 0x9b, 0x50, 0x22, 0x7a, 0x6b, 0xb7, 0xe1, 0xbd, 0x81, 0x11,
0x9e, 0x77, 0x3c, 0xf7, 0x85, 0x3d, 0xec, 0x9b, 0x23, 0xe2, 0x18, 0x98, 0xbc, 0x9a, 0x90, 0x90,
0x6a, 0x7f, 0x02, 0x8d, 0xf9, 0xa6, 0xd0, 0xf7, 0xdc, 0x90, 0xa0, 0xaf, 0xa0, 0xc0, 0xa6, 0x6c,
0x28, 0x77, 0x94, 0x9d, 0xea, 0xee, 0x47, 0xad, 0x37, 0xa9, 0x40, 0xc8, 0xd0, 0x92, 0xa2, 0xb6,
0xfa, 0x3e, 0x31, 0x31, 0x1f, 0xa9, 0xdd, 0x84, 0x1b, 0x1d, 0xc3, 0x37, 0xce, 0xec, 0xb1, 0x4d,
0x6d, 0x12, 0x46, 0x93, 0x4e, 0x60, 0x3b, 0xcd, 0x96, 0x13, 0xfe, 0x14, 0x6a, 0x66, 0x82, 0x2f,
0x27, 0xbe, 0xdf, 0xca, 0xa4, 0xfb, 0xd6, 0x1e, 0xa7, 0x52, 0xc0, 0x29, 0x38, 0x6d, 0x1b, 0xd0,
0x23, 0xdb, 0x1d, 0x92, 0xc0, 0x0f, 0x6c, 0x97, 0x46, 0xc2, 0xfc, 0x26, 0x0f, 0x37, 0x52, 0x6c,
0x29, 0xcc, 0x4b, 0x80, 0x58, 0x8f, 0x4c, 0x94, 0xfc, 0x4e, 0x75, 0xf7, 0x9b, 0x8c, 0xa2, 0x2c,
0xc0, 0x6b, 0xb5, 0x63, 0xb0, 0xae, 0x4b, 0x83, 0x2b, 0x9c, 0x40, 0x47, 0xdf, 0x42, 0x69, 0x44,
0x8c, 0x31, 0x1d, 0x35, 0x72, 0x77, 0x94, 0x9d, 0xfa, 0xee, 0xa3, 0x6b, 0xcc, 0xb3, 0xcf, 0x81,
0xfa, 0xd4, 0xa0, 0x04, 0x4b, 0x54, 0xf4, 0x31, 0x20, 0xf1, 0xa6, 0x5b, 0x24, 0x34, 0x03, 0xdb,
0x67, 0x2e, 0xd9, 0xc8, 0xdf, 0x51, 0x76, 0x2a, 0x78, 0x4b, 0xb4, 0xec, 0x4d, 0x1b, 0x9a, 0x3e,
0x6c, 0xce, 0x48, 0x8b, 0x54, 0xc8, 0x9f, 0x93, 0x2b, 0x6e, 0x91, 0x0a, 0x66, 0xaf, 0xe8, 0x31,
0x14, 0x2f, 0x8c, 0xf1, 0x84, 0x70, 0x91, 0xab, 0xbb, 0x9f, 0xbe, 0xcd, 0x3d, 0xa4, 0x8b, 0x4e,
0xf5, 0x80, 0xc5, 0xf8, 0x2f, 0x72, 0x9f, 0x2b, 0xda, 0x7d, 0xa8, 0x26, 0xe4, 0x46, 0x75, 0x80,
0xd3, 0xde, 0x5e, 0x77, 0xd0, 0xed, 0x0c, 0xba, 0x7b, 0xea, 0x1a, 0xda, 0x80, 0xca, 0x69, 0x6f,
0xbf, 0xdb, 0x3e, 0x1c, 0xec, 0x3f, 0x53, 0x15, 0x54, 0x85, 0xf5, 0x88, 0xc8, 0x69, 0x97, 0x80,
0x30, 0x31, 0xbd, 0x0b, 0x12, 0x30, 0x47, 0x96, 0x56, 0x45, 0xef, 0xc1, 0x3a, 0x35, 0xc2, 0x73,
0xdd, 0xb6, 0xa4, 0xcc, 0x25, 0x46, 0x1e, 0x58, 0xe8, 0x00, 0x4a, 0x23, 0xc3, 0xb5, 0xc6, 0x6f,
0x97, 0x3b, 0xad, 0x6a, 0x06, 0xbe, 0xcf, 0x07, 0x62, 0x09, 0xc0, 0xbc, 0x3b, 0x35, 0xb3, 0x30,
0x80, 0xf6, 0x0c, 0xd4, 0x3e, 0x35, 0x02, 0x9a, 0x14, 0xa7, 0x0b, 0x05, 0x36, 0xbf, 0xf4, 0xe8,
0x65, 0xe6, 0x14, 0x2b, 0x13, 0xf3, 0xe1, 0xda, 0xff, 0xe5, 0x60, 0x2b, 0x81, 0x2d, 0x3d, 0xf5,
0x29, 0x94, 0x02, 0x12, 0x4e, 0xc6, 0x94, 0xc3, 0xd7, 0x77, 0x1f, 0x66, 0x84, 0x9f, 0x43, 0x6a,
0x61, 0x0e, 0x83, 0x25, 0x1c, 0xda, 0x01, 0x55, 0x8c, 0xd0, 0x49, 0x10, 0x78, 0x81, 0xee, 0x84,
0x43, 0xae, 0xb5, 0x0a, 0xae, 0x0b, 0x7e, 0x97, 0xb1, 0x8f, 0xc2, 0x61, 0x42, 0xab, 0xf9, 0x6b,
0x6a, 0x15, 0x19, 0xa0, 0xba, 0x84, 0xbe, 0xf6, 0x82, 0x73, 0x9d, 0xa9, 0x36, 0xb0, 0x2d, 0xd2,
0x28, 0x70, 0xd0, 0xcf, 0x32, 0x82, 0xf6, 0xc4, 0xf0, 0x63, 0x39, 0x1a, 0x6f, 0xba, 0x69, 0x86,
0xf6, 0x03, 0x28, 0x89, 0x2f, 0x65, 0x9e, 0xd4, 0x3f, 0xed, 0x74, 0xba, 0xfd, 0xbe, 0xba, 0x86,
0x2a, 0x50, 0xc4, 0xdd, 0x01, 0x66, 0x1e, 0x56, 0x81, 0xe2, 0xa3, 0xf6, 0xa0, 0x7d, 0xa8, 0xe6,
0xb4, 0xef, 0xc3, 0xe6, 0x53, 0xc3, 0xa6, 0x59, 0x9c, 0x4b, 0xf3, 0x40, 0x9d, 0xf6, 0x95, 0xd6,
0x39, 0x48, 0x59, 0x27, 0xbb, 0x6a, 0xba, 0x97, 0x36, 0x9d, 0xb1, 0x87, 0x0a, 0x79, 0x12, 0x04,
0xd2, 0x04, 0xec, 0x55, 0x7b, 0x0d, 0x9b, 0x7d, 0xea, 0xf9, 0x99, 0x3c, 0xff, 0x87, 0xb0, 0xce,
0xa2, 0x8d, 0x37, 0xa1, 0xd2, 0xf5, 0x6f, 0xb7, 0x44, 0x34, 0x6a, 0x45, 0xd1, 0xa8, 0xb5, 0x27,
0xa3, 0x15, 0x8e, 0x7a, 0xa2, 0x5b, 0x50, 0x0a, 0xed, 0xa1, 0x6b, 0x8c, 0xe5, 0x6e, 0x21, 0x29,
0x0d, 0x31, 0x27, 0x8f, 0x26, 0x96, 0x8e, 0xdf, 0x01, 0xb4, 0x47, 0x42, 0x1a, 0x78, 0x57, 0x99,
0xe4, 0xd9, 0x86, 0xe2, 0x0b, 0x2f, 0x30, 0xc5, 0x42, 0x2c, 0x63, 0x41, 0xb0, 0x45, 0x95, 0x02,
0x91, 0xd8, 0x1f, 0x03, 0x3a, 0x70, 0x59, 0x4c, 0xc9, 0x66, 0x88, 0x7f, 0xc8, 0xc1, 0x8d, 0x54,
0x7f, 0x69, 0x8c, 0xd5, 0xd7, 0x21, 0xdb, 0x98, 0x26, 0xa1, 0x58, 0x87, 0xe8, 0x18, 0x4a, 0xa2,
0x87, 0xd4, 0xe4, 0xbd, 0x25, 0x80, 0x44, 0x98, 0x92, 0x70, 0x12, 0x66, 0xa1, 0xd3, 0xe7, 0xdf,
0xad, 0xd3, 0xbf, 0x06, 0x35, 0xfa, 0x8e, 0xf0, 0xad, 0xb6, 0xf9, 0x06, 0x6e, 0x98, 0xde, 0x78,
0x4c, 0x4c, 0xe6, 0x0d, 0xba, 0xed, 0x52, 0x12, 0x5c, 0x18, 0xe3, 0xb7, 0xfb, 0x0d, 0x9a, 0x8e,
0x3a, 0x90, 0x83, 0xb4, 0xe7, 0xb0, 0x95, 0x98, 0x58, 0x1a, 0xe2, 0x11, 0x14, 0x43, 0xc6, 0x90,
0x96, 0xf8, 0x64, 0x49, 0x4b, 0x84, 0x58, 0x0c, 0xd7, 0x6e, 0x08, 0xf0, 0xee, 0x05, 0x71, 0xe3,
0xcf, 0xd2, 0xf6, 0x60, 0xab, 0xcf, 0xdd, 0x34, 0x93, 0x1f, 0x4e, 0x5d, 0x3c, 0x97, 0x72, 0xf1,
0x6d, 0x40, 0x49, 0x14, 0xe9, 0x88, 0x57, 0xb0, 0xd9, 0xbd, 0x24, 0x66, 0x26, 0xe4, 0x06, 0xac,
0x9b, 0x9e, 0xe3, 0x18, 0xae, 0xd5, 0xc8, 0xdd, 0xc9, 0xef, 0x54, 0x70, 0x44, 0x26, 0xd7, 0x62,
0x3e, 0xeb, 0x5a, 0xd4, 0xfe, 0x4e, 0x01, 0x75, 0x3a, 0xb7, 0x54, 0x24, 0x93, 0x9e, 0x5a, 0x0c,
0x88, 0xcd, 0x5d, 0xc3, 0x92, 0x92, 0xfc, 0x68, 0xbb, 0x10, 0x7c, 0x12, 0x04, 0x89, 0xed, 0x28,
0x7f, 0xcd, 0xed, 0x48, 0xdb, 0x87, 0xdf, 0x89, 0xc4, 0xe9, 0xd3, 0x80, 0x18, 0x8e, 0xed, 0x0e,
0x0f, 0x8e, 0x8f, 0x7d, 0x22, 0x04, 0x47, 0x08, 0x0a, 0x96, 0x41, 0x0d, 0x29, 0x18, 0x7f, 0x67,
0x8b, 0xde, 0x1c, 0x7b, 0x61, 0xbc, 0xe8, 0x39, 0xa1, 0xfd, 0x7b, 0x1e, 0x1a, 0x73, 0x50, 0x91,
0x7a, 0x9f, 0x43, 0x31, 0x24, 0x74, 0xe2, 0x4b, 0x57, 0xe9, 0x66, 0x16, 0x78, 0x31, 0x5e, 0xab,
0xcf, 0xc0, 0xb0, 0xc0, 0x44, 0x43, 0x28, 0x53, 0x7a, 0xa5, 0x87, 0xf6, 0xcf, 0xa2, 0x84, 0xe0,
0xf0, 0xba, 0xf8, 0x03, 0x12, 0x38, 0xb6, 0x6b, 0x8c, 0xfb, 0xf6, 0xcf, 0x08, 0x5e, 0xa7, 0xf4,
0x8a, 0xbd, 0xa0, 0x67, 0xcc, 0xe1, 0x2d, 0xdb, 0x95, 0x6a, 0xef, 0xac, 0x3a, 0x4b, 0x42, 0xc1,
0x58, 0x20, 0x36, 0x0f, 0xa1, 0xc8, 0xbf, 0x69, 0x15, 0x47, 0x54, 0x21, 0x4f, 0xe9, 0x15, 0x17,
0xaa, 0x8c, 0xd9, 0x6b, 0xf3, 0x01, 0xd4, 0x92, 0x5f, 0xc0, 0x1c, 0x69, 0x44, 0xec, 0xe1, 0x48,
0x38, 0x58, 0x11, 0x4b, 0x8a, 0x59, 0xf2, 0xb5, 0x6d, 0xc9, 0x94, 0xb5, 0x88, 0x05, 0xa1, 0xfd,
0x6b, 0x0e, 0x6e, 0x2f, 0xd0, 0x8c, 0x74, 0xd6, 0xe7, 0x29, 0x67, 0x7d, 0x47, 0x5a, 0x88, 0x3c,
0xfe, 0x79, 0xca, 0xe3, 0xdf, 0x21, 0x38, 0x5b, 0x36, 0xb7, 0xa0, 0x44, 0x2e, 0x6d, 0x4a, 0x2c,
0xa9, 0x2a, 0x49, 0x25, 0x96, 0x53, 0xe1, 0xba, 0xcb, 0xe9, 0x53, 0xd8, 0xee, 0x04, 0xc4, 0xa0,
0x44, 0x6e, 0xe5, 0x91, 0xff, 0xdf, 0x86, 0xb2, 0x31, 0x1e, 0x7b, 0xe6, 0xd4, 0xac, 0xeb, 0x9c,
0x3e, 0xb0, 0xb4, 0xef, 0x14, 0xb8, 0x39, 0x33, 0x46, 0x6a, 0xfa, 0x0c, 0xea, 0x76, 0xe8, 0x8d,
0xf9, 0x47, 0xe8, 0x89, 0x53, 0xdc, 0x8f, 0x96, 0x0b, 0x27, 0x07, 0x11, 0x06, 0x3f, 0xd4, 0x6d,
0xd8, 0x49, 0x92, 0x7b, 0x15, 0x9f, 0xdc, 0x92, 0xab, 0x39, 0x22, 0xb5, 0x7f, 0x54, 0xe0, 0xa6,
0x8c, 0xe2, 0x99, 0x3f, 0x66, 0x81, 0xc8, 0xb9, 0x77, 0x2d, 0xb2, 0xd6, 0x80, 0x5b, 0xb3, 0x72,
0xc9, 0x7d, 0xfd, 0x3f, 0x0a, 0x80, 0xe6, 0x4f, 0x90, 0xe8, 0x7b, 0x50, 0x0b, 0x89, 0x6b, 0xe9,
0x22, 0x26, 0x88, 0x70, 0x55, 0xc6, 0x55, 0xc6, 0x13, 0xc1, 0x21, 0x64, 0xdb, 0x1c, 0xb9, 0x94,
0xd2, 0x96, 0x31, 0x7f, 0x47, 0x23, 0xa8, 0xbd, 0x08, 0xf5, 0x78, 0x6e, 0xee, 0x34, 0xf5, 0xcc,
0x5b, 0xd7, 0xbc, 0x1c, 0xad, 0x47, 0xfd, 0xf8, 0xbb, 0x70, 0xf5, 0x45, 0x18, 0x13, 0xe8, 0x17,
0x0a, 0xbc, 0x17, 0xa5, 0x0e, 0x53, 0xf5, 0x39, 0x9e, 0x45, 0xc2, 0x46, 0xe1, 0x4e, 0x7e, 0xa7,
0xbe, 0x7b, 0x72, 0x0d, 0xfd, 0xcd, 0x31, 0x8f, 0x3c, 0x8b, 0xe0, 0x9b, 0xee, 0x02, 0x6e, 0x88,
0x5a, 0x70, 0xc3, 0x99, 0x84, 0x54, 0x17, 0x5e, 0xa0, 0xcb, 0x4e, 0x8d, 0x22, 0xd7, 0xcb, 0x16,
0x6b, 0x4a, 0xf9, 0x2a, 0x3a, 0x87, 0x0d, 0xc7, 0x9b, 0xb8, 0x54, 0x37, 0xf9, 0x19, 0x27, 0x6c,
0x94, 0x96, 0x3a, 0xfc, 0x2e, 0xd0, 0xd2, 0x11, 0x83, 0x13, 0x27, 0xa6, 0x10, 0xd7, 0x9c, 0x04,
0xa5, 0xb5, 0xa0, 0x9a, 0xd0, 0x21, 0x2a, 0x43, 0xa1, 0x77, 0xdc, 0xeb, 0xaa, 0x6b, 0x08, 0xa0,
0xd4, 0xd9, 0xc7, 0xc7, 0xc7, 0x03, 0x91, 0xf6, 0x1f, 0x1c, 0xb5, 0x1f, 0x77, 0xd5, 0x9c, 0xd6,
0x85, 0x5a, 0x12, 0x0d, 0x21, 0xa8, 0x9f, 0xf6, 0x9e, 0xf4, 0x8e, 0x9f, 0xf6, 0xf4, 0xa3, 0xe3,
0xd3, 0xde, 0x80, 0x1d, 0x18, 0xea, 0x00, 0xed, 0xde, 0xb3, 0x29, 0xbd, 0x01, 0x95, 0xde, 0x71,
0x44, 0x2a, 0xcd, 0x9c, 0xaa, 0x68, 0xff, 0x93, 0x83, 0xed, 0x45, 0x8a, 0x45, 0x16, 0x14, 0x98,
0x91, 0xe4, 0x91, 0xed, 0xdd, 0xdb, 0x88, 0xa3, 0x33, 0xdf, 0xf4, 0x0d, 0xb9, 0x47, 0x57, 0x30,
0x7f, 0x47, 0x3a, 0x94, 0xc6, 0xc6, 0x19, 0x19, 0x87, 0x8d, 0x3c, 0xbf, 0xd4, 0x78, 0x7c, 0x9d,
0xb9, 0x0f, 0x39, 0x92, 0xb8, 0xd1, 0x90, 0xb0, 0xcd, 0xfb, 0x50, 0x4d, 0xb0, 0x17, 0x5c, 0x1d,
0x6c, 0x27, 0xaf, 0x0e, 0x2a, 0xc9, 0x7b, 0x80, 0x87, 0xf3, 0xda, 0x62, 0x5f, 0xc3, 0xcc, 0xb5,
0x7f, 0xdc, 0x1f, 0x88, 0x43, 0xda, 0x63, 0x7c, 0x7c, 0x7a, 0xa2, 0x2a, 0x8c, 0x39, 0x68, 0xf7,
0x9f, 0xa8, 0xb9, 0xd8, 0x9a, 0x79, 0xed, 0x39, 0x54, 0xf6, 0x7a, 0x7d, 0x61, 0x34, 0xb6, 0x41,
0x85, 0x24, 0x60, 0x9f, 0xc0, 0xef, 0x6f, 0x2a, 0x38, 0x22, 0x51, 0x13, 0xca, 0x21, 0x31, 0x02,
0x73, 0x44, 0x42, 0x19, 0x11, 0x63, 0x9a, 0x8d, 0xf2, 0xf8, 0x3d, 0x88, 0x50, 0x50, 0x05, 0x47,
0xa4, 0xf6, 0xbf, 0xeb, 0x00, 0xd3, 0x33, 0x39, 0xaa, 0x43, 0x2e, 0xde, 0xc5, 0x72, 0xb6, 0xc5,
0x94, 0xed, 0x1a, 0x4e, 0xf4, 0x55, 0xfc, 0x1d, 0xed, 0xc2, 0x4d, 0x27, 0x1c, 0xfa, 0x86, 0x79,
0xae, 0xcb, 0xa3, 0xb4, 0x70, 0x76, 0xbe, 0x23, 0xd4, 0xf0, 0x0d, 0xd9, 0x28, 0x7d, 0x59, 0xe0,
0x1e, 0x42, 0x9e, 0xb8, 0x17, 0x7c, 0xf5, 0x56, 0x77, 0xbf, 0x58, 0xfa, 0xae, 0xa0, 0xd5, 0x75,
0x2f, 0x84, 0x41, 0x18, 0x0c, 0xd2, 0x01, 0x2c, 0x72, 0x61, 0x9b, 0x44, 0x67, 0xa0, 0x45, 0x0e,
0xfa, 0xd5, 0xf2, 0xa0, 0x7b, 0x1c, 0x23, 0x86, 0xae, 0x58, 0x11, 0x8d, 0x7a, 0x50, 0x09, 0x48,
0xe8, 0x4d, 0x02, 0x93, 0x88, 0x25, 0x9c, 0x3d, 0x9d, 0xc7, 0xd1, 0x38, 0x3c, 0x85, 0x40, 0x7b,
0x50, 0xe2, 0x2b, 0x37, 0x6c, 0xac, 0x73, 0x61, 0x3f, 0xca, 0x08, 0xc6, 0x97, 0x2b, 0x96, 0x63,
0xd1, 0x63, 0x58, 0x17, 0x22, 0x86, 0x8d, 0x32, 0x87, 0xf9, 0x38, 0xeb, 0xb6, 0xc2, 0x47, 0xe1,
0x68, 0x34, 0xb3, 0xea, 0x24, 0x24, 0x41, 0xa3, 0x22, 0xac, 0xca, 0xde, 0xd1, 0xfb, 0x50, 0x11,
0x51, 0xcc, 0xb2, 0x83, 0x06, 0xf0, 0x06, 0x11, 0xd6, 0xf6, 0xec, 0x00, 0x7d, 0x00, 0x55, 0x91,
0x91, 0xe8, 0x7c, 0xe9, 0x55, 0x79, 0x33, 0x08, 0xd6, 0x09, 0x5b, 0x80, 0xa2, 0x03, 0x09, 0x02,
0xd1, 0xa1, 0x16, 0x77, 0x20, 0x41, 0xc0, 0x3b, 0xfc, 0x01, 0x6c, 0xf2, 0x3c, 0x6e, 0x18, 0x78,
0x13, 0x5f, 0xe7, 0x3e, 0xb5, 0xc1, 0x3b, 0x6d, 0x30, 0xf6, 0x63, 0xc6, 0xed, 0x31, 0xe7, 0xba,
0x0d, 0xe5, 0x97, 0xde, 0x99, 0xe8, 0x50, 0x17, 0xc1, 0xf4, 0xa5, 0x77, 0x16, 0x35, 0xc5, 0x71,
0x76, 0x33, 0x1d, 0x67, 0x5f, 0xc1, 0xad, 0xf9, 0x80, 0xc1, 0xe3, 0xad, 0x7a, 0xfd, 0x78, 0xbb,
0xed, 0x2e, 0xda, 0xec, 0xbe, 0x86, 0xbc, 0xe5, 0x86, 0x8d, 0xad, 0xa5, 0x9c, 0x23, 0x5e, 0xc7,
0x98, 0x0d, 0x6e, 0x7e, 0x06, 0xe5, 0xc8, 0xfb, 0x96, 0xd9, 0x52, 0x9a, 0x0f, 0xa0, 0x9e, 0xf6,
0xdd, 0xa5, 0x36, 0xa4, 0x7f, 0xce, 0x41, 0x25, 0xf6, 0x52, 0xe4, 0xc2, 0x0d, 0xae, 0x45, 0x96,
0xe4, 0xe8, 0x53, 0xa7, 0x17, 0xa9, 0xd5, 0x97, 0x19, 0xbf, 0xab, 0x1d, 0x21, 0xc8, 0x73, 0x9c,
0x5c, 0x01, 0x28, 0x46, 0x9e, 0xce, 0xf7, 0x2d, 0x6c, 0x8e, 0x6d, 0x77, 0x72, 0x99, 0x98, 0x4b,
0xe4, 0x44, 0x7f, 0x98, 0x71, 0xae, 0x43, 0x36, 0x7a, 0x3a, 0x47, 0x7d, 0x9c, 0xa2, 0xd1, 0x3e,
0x14, 0x7d, 0x2f, 0xa0, 0x51, 0x24, 0xd8, 0xcd, 0x88, 0x7a, 0xe2, 0x05, 0xf4, 0xc8, 0xf0, 0x7d,
0x96, 0xda, 0x0b, 0x00, 0xed, 0xbb, 0x1c, 0xdc, 0x5a, 0xfc, 0x61, 0xa8, 0x07, 0x79, 0xd3, 0x9f,
0x48, 0x25, 0x3d, 0x58, 0x56, 0x49, 0x1d, 0x7f, 0x32, 0x95, 0x9f, 0x01, 0xa1, 0xa7, 0x50, 0x72,
0x88, 0xe3, 0x05, 0x57, 0x52, 0x17, 0x0f, 0x97, 0x85, 0x3c, 0xe2, 0xa3, 0xa7, 0xa8, 0x12, 0x0e,
0x61, 0x28, 0x4b, 0xef, 0x0d, 0xe5, 0x3e, 0xb9, 0xe4, 0xe5, 0x4b, 0x04, 0x89, 0x63, 0x1c, 0xed,
0x33, 0xb8, 0xb9, 0xf0, 0x53, 0xd0, 0xef, 0x02, 0x98, 0xfe, 0x44, 0xe7, 0x97, 0xe3, 0xc2, 0x83,
0xf2, 0xb8, 0x62, 0xfa, 0x93, 0x3e, 0x67, 0x68, 0xcf, 0xa1, 0xf1, 0x26, 0x79, 0xd9, 0xee, 0x23,
0x24, 0xd6, 0x9d, 0x33, 0xae, 0x83, 0x3c, 0x2e, 0x0b, 0xc6, 0xd1, 0x19, 0xd2, 0x60, 0x23, 0x6a,
0x34, 0x2e, 0x59, 0x87, 0x3c, 0xef, 0x50, 0x95, 0x1d, 0x8c, 0xcb, 0xa3, 0x33, 0xed, 0x97, 0x39,
0xd8, 0x9c, 0x11, 0x99, 0x1d, 0x70, 0xc4, 0x8e, 0x17, 0x1d, 0x1d, 0x05, 0xc5, 0xb6, 0x3f, 0xd3,
0xb6, 0xa2, 0x4b, 0x47, 0xfe, 0xce, 0x03, 0x9f, 0x2f, 0x2f, 0x04, 0x73, 0xb6, 0xcf, 0x96, 0x8f,
0x73, 0x66, 0xd3, 0x90, 0x9f, 0x81, 0x8a, 0x58, 0x10, 0xe8, 0x19, 0xd4, 0x03, 0xc2, 0x03, 0xae,
0xa5, 0x0b, 0x2f, 0x2b, 0x2e, 0xe5, 0x65, 0x52, 0x42, 0xe6, 0x6c, 0x78, 0x23, 0x42, 0x62, 0x54,
0x88, 0x9e, 0xc2, 0x86, 0x75, 0xe5, 0x1a, 0x8e, 0x6d, 0x4a, 0xe4, 0xd2, 0xca, 0xc8, 0x35, 0x09,
0xc4, 0x81, 0xb5, 0xfb, 0x50, 0x4d, 0x34, 0xb2, 0x0f, 0xe3, 0x39, 0x8d, 0xd4, 0x89, 0x20, 0xd2,
0xbb, 0x45, 0x51, 0xee, 0x16, 0xda, 0x19, 0x54, 0x13, 0xeb, 0x62, 0x99, 0xa1, 0x4c, 0x9f, 0xd4,
0xe3, 0xfa, 0x2c, 0xe2, 0x1c, 0xf5, 0xd8, 0x39, 0x7e, 0xe4, 0x85, 0x54, 0xb7, 0x7d, 0xae, 0xd1,
0x0a, 0x2e, 0x31, 0xf2, 0xc0, 0xd7, 0x7e, 0x9d, 0x83, 0x7a, 0x7a, 0x49, 0x47, 0x7e, 0xe4, 0x93,
0xc0, 0xf6, 0xac, 0x84, 0x1f, 0x9d, 0x70, 0x06, 0xf3, 0x15, 0xd6, 0xfc, 0x6a, 0xe2, 0x51, 0x23,
0xf2, 0x15, 0xd3, 0x9f, 0xfc, 0x11, 0xa3, 0x67, 0x7c, 0x30, 0x3f, 0xe3, 0x83, 0xe8, 0x23, 0x40,
0xd2, 0x95, 0xc6, 0xb6, 0x63, 0x53, 0xfd, 0xec, 0x8a, 0x12, 0x61, 0xe3, 0x3c, 0x56, 0x45, 0xcb,
0x21, 0x6b, 0xf8, 0x9a, 0xf1, 0x99, 0xe3, 0x79, 0x9e, 0xa3, 0x87, 0xa6, 0x17, 0x10, 0xdd, 0xb0,
0x5e, 0xf2, 0xbc, 0x3f, 0x8f, 0xab, 0x9e, 0xe7, 0xf4, 0x19, 0xaf, 0x6d, 0xbd, 0x64, 0x91, 0xcf,
0xf4, 0x27, 0x21, 0xa1, 0x3a, 0x7b, 0xf0, 0x64, 0xa1, 0x82, 0x41, 0xb0, 0x3a, 0xfe, 0x24, 0x44,
0xbf, 0x0f, 0x1b, 0x51, 0x07, 0x1e, 0xfc, 0x64, 0xd4, 0xad, 0xc9, 0x2e, 0x9c, 0x87, 0x34, 0xa8,
0x9d, 0x90, 0xc0, 0x24, 0x2e, 0x1d, 0xd8, 0xe6, 0x39, 0x8b, 0xef, 0xca, 0x8e, 0x82, 0x53, 0xbc,
0x6f, 0x0a, 0xe5, 0x75, 0xb5, 0x8c, 0xa3, 0xd9, 0x1c, 0xe2, 0x84, 0xda, 0x4f, 0xa1, 0xc8, 0x53,
0x04, 0xa6, 0x13, 0x1e, 0x5e, 0x79, 0xf4, 0x15, 0xe6, 0x29, 0x33, 0x06, 0x8f, 0xbd, 0xef, 0x43,
0x85, 0xeb, 0x3e, 0x91, 0x36, 0x97, 0x19, 0x83, 0x37, 0x36, 0xa1, 0x1c, 0x10, 0xc3, 0xf2, 0xdc,
0x71, 0x74, 0x65, 0x12, 0xd3, 0xda, 0x2b, 0x28, 0x89, 0x38, 0x73, 0x0d, 0xfc, 0x8f, 0x01, 0x89,
0xef, 0x66, 0xf6, 0x74, 0xec, 0x30, 0x94, 0x59, 0x28, 0xff, 0x4f, 0x27, 0x5a, 0x4e, 0xa6, 0x0d,
0xda, 0x7f, 0x2a, 0x22, 0x1f, 0x15, 0x7f, 0x50, 0x58, 0xe2, 0xca, 0x9c, 0x9c, 0x9d, 0x37, 0xc5,
0x55, 0x4d, 0x44, 0xa2, 0x03, 0x28, 0xc9, 0xb4, 0x33, 0xb7, 0xea, 0x0f, 0x28, 0x09, 0x10, 0x5d,
0xdc, 0x12, 0x79, 0xa4, 0x5d, 0xf6, 0xe2, 0x96, 0x88, 0x8b, 0x5b, 0xc2, 0x0e, 0xd6, 0x32, 0x21,
0x16, 0x70, 0x05, 0x9e, 0x0f, 0x57, 0xad, 0xf8, 0x76, 0x9c, 0x68, 0xff, 0xad, 0xc4, 0xdb, 0x54,
0x74, 0x8b, 0x8d, 0xbe, 0x85, 0x32, 0x5b, 0xf1, 0xba, 0x63, 0xf8, 0xf2, 0x9f, 0x6c, 0x67, 0xb5,
0x0b, 0xf2, 0x28, 0x88, 0x89, 0x74, 0x76, 0xdd, 0x17, 0x14, 0xdb, 0xee, 0x0c, 0x6b, 0xba, 0xdd,
0xb1, 0x77, 0xf4, 0x21, 0xd4, 0x8d, 0x09, 0xf5, 0x74, 0xc3, 0xba, 0x20, 0x01, 0xb5, 0x43, 0x22,
0x6d, 0xbf, 0xc1, 0xb8, 0xed, 0x88, 0xd9, 0xfc, 0x02, 0x6a, 0x49, 0xcc, 0xb7, 0xa5, 0x19, 0xc5,
0x64, 0x9a, 0xf1, 0xa7, 0x00, 0xd3, 0x1b, 0x21, 0xe6, 0x23, 0xe4, 0xd2, 0x66, 0xe7, 0x62, 0x79,
0x40, 0x2c, 0xe2, 0x32, 0x63, 0x74, 0xd8, 0x51, 0x28, 0x7d, 0x5d, 0x5d, 0x8c, 0xae, 0xab, 0xd9,
0x62, 0x66, 0xeb, 0xef, 0xdc, 0x1e, 0x8f, 0xe3, 0x5b, 0xaa, 0x8a, 0xe7, 0x39, 0x4f, 0x38, 0x43,
0xfb, 0x4d, 0x4e, 0xf8, 0x8a, 0xf8, 0xf1, 0x90, 0xe9, 0xec, 0xf2, 0xae, 0x4c, 0x7d, 0x1f, 0x20,
0xa4, 0x46, 0xc0, 0x72, 0x26, 0x23, 0xba, 0x27, 0x6b, 0xce, 0xdd, 0x77, 0x0f, 0xa2, 0x4a, 0x08,
0x5c, 0x91, 0xbd, 0xdb, 0x14, 0x7d, 0x09, 0x35, 0xd3, 0x73, 0xfc, 0x31, 0x91, 0x83, 0x8b, 0x6f,
0x1d, 0x5c, 0x8d, 0xfb, 0xb7, 0x69, 0xe2, 0x76, 0xae, 0x74, 0xdd, 0xdb, 0xb9, 0x5f, 0x2b, 0xe2,
0xff, 0x49, 0xf2, 0xf7, 0x0d, 0x1a, 0x2e, 0xa8, 0x11, 0x78, 0xbc, 0xe2, 0xbf, 0xa0, 0xdf, 0x56,
0x20, 0xd0, 0xfc, 0x32, 0xcb, 0x1f, 0xf9, 0x37, 0x67, 0xb1, 0xff, 0x96, 0x87, 0x4a, 0xfc, 0xeb,
0x64, 0xce, 0xf6, 0x9f, 0x43, 0x25, 0x2e, 0x43, 0x91, 0x1b, 0xc4, 0x6f, 0x35, 0x4f, 0xdc, 0x19,
0xbd, 0x00, 0x64, 0x0c, 0x87, 0x71, 0x76, 0xaa, 0x4f, 0x42, 0x63, 0x18, 0xfd, 0xb8, 0xfa, 0x7c,
0x09, 0x3d, 0x44, 0xe1, 0xec, 0x94, 0x8d, 0xc7, 0xaa, 0x31, 0x1c, 0xa6, 0x38, 0xe8, 0xcf, 0xe0,
0x66, 0x7a, 0x0e, 0xfd, 0xec, 0x4a, 0xf7, 0x6d, 0x4b, 0x9e, 0x91, 0xf7, 0x97, 0xfd, 0x7b, 0xd4,
0x4a, 0xc1, 0x7f, 0x7d, 0x75, 0x62, 0x5b, 0x42, 0xe7, 0x28, 0x98, 0x6b, 0x68, 0xfe, 0x05, 0xbc,
0xf7, 0x86, 0xee, 0x0b, 0x6c, 0xd0, 0x4b, 0x57, 0x45, 0xac, 0xae, 0x84, 0x84, 0xf5, 0x7e, 0xa5,
0x88, 0x9f, 0x5c, 0x69, 0x9d, 0xb4, 0x93, 0x69, 0xf5, 0xdd, 0x8c, 0xf3, 0x74, 0x4e, 0x4e, 0x05,
0x3c, 0xcf, 0xa4, 0xbf, 0x99, 0xc9, 0xa4, 0xb3, 0xe6, 0x4f, 0x22, 0x21, 0x15, 0x40, 0x12, 0x41,
0xfb, 0x97, 0x3c, 0x94, 0x23, 0x74, 0x7e, 0xc2, 0xbd, 0x0a, 0x29, 0x71, 0xf4, 0xf8, 0x8e, 0x4b,
0xc1, 0x20, 0x58, 0xfc, 0x3e, 0xe7, 0x7d, 0xa8, 0xb0, 0x83, 0xb4, 0x68, 0xce, 0xf1, 0xe6, 0x32,
0x63, 0xf0, 0xc6, 0x0f, 0xa0, 0x4a, 0x3d, 0x6a, 0x8c, 0x75, 0xca, 0xc3, 0x7b, 0x5e, 0x8c, 0xe6,
0x2c, 0x1e, 0xdc, 0xd1, 0x0f, 0x60, 0x8b, 0x8e, 0x02, 0x8f, 0xd2, 0x31, 0x4b, 0x2d, 0x79, 0xa2,
0x23, 0xf2, 0x92, 0x02, 0x56, 0xe3, 0x06, 0x91, 0x00, 0x85, 0x6c, 0xf7, 0x9e, 0x76, 0x66, 0xae,
0xcb, 0x37, 0x91, 0x02, 0xde, 0x88, 0xb9, 0xcc, 0xb5, 0x59, 0xf0, 0xf4, 0x45, 0x02, 0xc1, 0xf7,
0x0a, 0x05, 0x47, 0x24, 0xd2, 0x61, 0xd3, 0x21, 0x46, 0x38, 0x09, 0x88, 0xa5, 0xbf, 0xb0, 0xc9,
0xd8, 0x12, 0x17, 0x13, 0xf5, 0xcc, 0xa7, 0x83, 0x48, 0x2d, 0xad, 0x47, 0x7c, 0x34, 0xae, 0x47,
0x70, 0x82, 0x66, 0x99, 0x83, 0x78, 0x43, 0x9b, 0x50, 0xed, 0x3f, 0xeb, 0x0f, 0xba, 0x47, 0xfa,
0xd1, 0xf1, 0x5e, 0x57, 0x16, 0xbe, 0xf4, 0xbb, 0x58, 0x90, 0x0a, 0x6b, 0x1f, 0x1c, 0x0f, 0xda,
0x87, 0xfa, 0xe0, 0xa0, 0xf3, 0xa4, 0xaf, 0xe6, 0xd0, 0x4d, 0xd8, 0x1a, 0xec, 0xe3, 0xe3, 0xc1,
0xe0, 0xb0, 0xbb, 0xa7, 0x9f, 0x74, 0xf1, 0xc1, 0xf1, 0x5e, 0x5f, 0xcd, 0x23, 0x04, 0xf5, 0x29,
0x7b, 0x70, 0x70, 0xd4, 0x55, 0x0b, 0xa8, 0x0a, 0xeb, 0x27, 0x5d, 0xdc, 0xe9, 0xf6, 0x06, 0x6a,
0x51, 0xfb, 0x65, 0x1e, 0xaa, 0x09, 0x2b, 0x32, 0x47, 0x0e, 0x42, 0x71, 0x0c, 0x29, 0x60, 0xf6,
0xca, 0x7f, 0xd4, 0x19, 0xe6, 0x48, 0x58, 0xa7, 0x80, 0x05, 0xc1, 0x8f, 0x1e, 0xc6, 0x65, 0x62,
0x9d, 0x17, 0x70, 0xd9, 0x31, 0x2e, 0x05, 0xc8, 0xf7, 0xa0, 0x76, 0x4e, 0x02, 0x97, 0x8c, 0x65,
0xbb, 0xb0, 0x48, 0x55, 0xf0, 0x44, 0x97, 0x1d, 0x50, 0x65, 0x97, 0x29, 0x8c, 0x30, 0x47, 0x5d,
0xf0, 0x8f, 0x22, 0xb0, 0x6d, 0x28, 0x8a, 0xe6, 0x75, 0x31, 0x3f, 0x27, 0x58, 0x98, 0x0a, 0x5f,
0x1b, 0x3e, 0x4f, 0xf9, 0x0a, 0x98, 0xbf, 0xa3, 0xb3, 0x79, 0xfb, 0x94, 0xb8, 0x7d, 0xee, 0x2f,
0xef, 0xce, 0x6f, 0x32, 0xd1, 0x28, 0x36, 0xd1, 0x3a, 0xe4, 0x71, 0x54, 0x2d, 0xd2, 0x69, 0x77,
0xf6, 0x99, 0x59, 0x36, 0xa0, 0x72, 0xd4, 0xfe, 0x89, 0x7e, 0xda, 0xe7, 0x57, 0xc7, 0x48, 0x85,
0xda, 0x93, 0x2e, 0xee, 0x75, 0x0f, 0x25, 0x27, 0x8f, 0xb6, 0x41, 0x95, 0x9c, 0x69, 0xbf, 0x02,
0x43, 0x10, 0xaf, 0x45, 0x54, 0x86, 0x42, 0xff, 0x69, 0xfb, 0x44, 0x2d, 0x69, 0xff, 0x95, 0x83,
0x4d, 0x11, 0x16, 0xe2, 0xff, 0xda, 0x6f, 0xfe, 0xaf, 0x97, 0xbc, 0xe5, 0xc9, 0xa5, 0x6f, 0x79,
0xa2, 0x24, 0x94, 0x47, 0xf5, 0xfc, 0x34, 0x09, 0xe5, 0xb7, 0x43, 0xa9, 0x1d, 0xbf, 0xb0, 0xcc,
0x8e, 0xdf, 0x80, 0x75, 0x87, 0x84, 0xb1, 0xdd, 0x2a, 0x38, 0x22, 0x91, 0x0d, 0x55, 0xc3, 0x75,
0x3d, 0x6a, 0x88, 0xab, 0xd3, 0xd2, 0x52, 0xc1, 0x70, 0xe6, 0x8b, 0x5b, 0xed, 0x29, 0x92, 0xd8,
0x98, 0x93, 0xd8, 0xcd, 0x1f, 0x83, 0x3a, 0xdb, 0x61, 0x99, 0x70, 0xf8, 0xfd, 0x4f, 0xa7, 0xd1,
0x90, 0xb0, 0x75, 0x21, 0x2f, 0xf6, 0xd5, 0x35, 0x46, 0xe0, 0xd3, 0x5e, 0xef, 0xa0, 0xf7, 0x58,
0x55, 0x10, 0x40, 0xa9, 0xfb, 0x93, 0x83, 0x41, 0x77, 0x4f, 0xcd, 0xed, 0xfe, 0x6a, 0x0b, 0x4a,
0x42, 0x48, 0xf4, 0x9d, 0xcc, 0x04, 0x92, 0x35, 0x93, 0xe8, 0xc7, 0x4b, 0x67, 0xd4, 0xa9, 0x3a,
0xcc, 0xe6, 0xc3, 0x95, 0xc7, 0xcb, 0xff, 0x57, 0x6b, 0xe8, 0x6f, 0x14, 0xa8, 0xa5, 0xfe, 0x5d,
0x65, 0xbd, 0x3a, 0x5e, 0x50, 0xa2, 0xd9, 0xfc, 0xd1, 0x4a, 0x63, 0x63, 0x59, 0x7e, 0xa1, 0x40,
0x35, 0x51, 0x9c, 0x88, 0xee, 0xaf, 0x52, 0xd0, 0x28, 0x24, 0xf9, 0x62, 0xf5, 0x5a, 0x48, 0x6d,
0xed, 0x13, 0x05, 0xfd, 0xb5, 0x02, 0xd5, 0x44, 0x99, 0x5e, 0x66, 0x51, 0xe6, 0x8b, 0x0a, 0x33,
0x8b, 0xb2, 0xa8, 0x2a, 0x70, 0x0d, 0xfd, 0xa5, 0x02, 0x95, 0xb8, 0xe4, 0x0e, 0xdd, 0x5b, 0xbe,
0x48, 0x4f, 0x08, 0xf1, 0xf9, 0xaa, 0xd5, 0x7d, 0xda, 0x1a, 0xfa, 0x73, 0x28, 0x47, 0xf5, 0x69,
0x28, 0x6b, 0xf4, 0x9a, 0x29, 0x7e, 0x6b, 0xde, 0x5b, 0x7a, 0x5c, 0x72, 0xfa, 0xa8, 0x68, 0x2c,
0xf3, 0xf4, 0x33, 0xe5, 0x6d, 0xcd, 0x7b, 0x4b, 0x8f, 0x8b, 0xa7, 0x67, 0x9e, 0x90, 0xa8, 0x2d,
0xcb, 0xec, 0x09, 0xf3, 0x45, 0x6d, 0x99, 0x3d, 0x61, 0x51, 0x29, 0x9b, 0x10, 0x24, 0x51, 0x9d,
0x96, 0x59, 0x90, 0xf9, 0x0a, 0xb8, 0xcc, 0x82, 0x2c, 0x28, 0x86, 0xd3, 0xd6, 0xd0, 0xcf, 0x95,
0xe4, 0xb9, 0xe0, 0xde, 0xd2, 0x45, 0x58, 0x4b, 0xba, 0xe4, 0x5c, 0x19, 0x18, 0x5f, 0xa0, 0x3f,
0x97, 0xb7, 0x18, 0xa2, 0x86, 0x0b, 0x2d, 0x03, 0x96, 0x2a, 0xfb, 0x6a, 0x7e, 0xb6, 0x5a, 0xb0,
0xe1, 0x42, 0xfc, 0x95, 0x02, 0x30, 0xad, 0xf6, 0xca, 0x2c, 0xc4, 0x5c, 0x99, 0x59, 0xf3, 0xfe,
0x0a, 0x23, 0x93, 0x0b, 0x24, 0xaa, 0x46, 0xc9, 0xbc, 0x40, 0x66, 0xaa, 0xd1, 0x32, 0x2f, 0x90,
0xd9, 0x4a, 0x32, 0x6d, 0x0d, 0xfd, 0x93, 0x02, 0x5b, 0x73, 0xd5, 0x30, 0xe8, 0xe1, 0x35, 0x0b,
0xa2, 0x9a, 0x5f, 0xad, 0x0e, 0x10, 0x89, 0xb6, 0xa3, 0x7c, 0xa2, 0xa0, 0xbf, 0x55, 0x60, 0x23,
0x5d, 0x41, 0x90, 0x39, 0x4a, 0x2d, 0xa8, 0xab, 0x69, 0x3e, 0x58, 0x6d, 0x70, 0xac, 0xad, 0xbf,
0x57, 0xa0, 0x9e, 0x2e, 0x26, 0x41, 0x0f, 0x96, 0xdb, 0x16, 0x66, 0x04, 0xfa, 0x72, 0xc5, 0xd1,
0x91, 0x44, 0x5f, 0xaf, 0xff, 0x71, 0x51, 0x64, 0x6f, 0x25, 0xfe, 0xf8, 0xe1, 0xff, 0x07, 0x00,
0x00, 0xff, 0xff, 0x47, 0xb7, 0xdf, 0xf9, 0xda, 0x32, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -525,10 +525,16 @@ message LinuxResources {
int64 memory_limit_bytes = 4;
// OOMScoreAdj adjusts the oom-killer score. Default: 0 (not specified)
int64 oom_score_adj = 5;
// CpusetCpus constrains the allowed set of logical CPUs. Default: "" (not specified)
// This field exists to support drivers which can't set a cgroup path.
string cpuset_cpus = 6;
// CpusetMems constrains the allowed set of memory nodes. Default: "" (not specified)
string cpuset_mems = 7;
// Previously cpuset_mems fields never set by the Nomad client
reserved 7;
reserved "cpuset_mems";
// CpusetCgroup is the path to the cpuset cgroup managed by the client
string cpuset_cgroup = 9;
// PercentTicks is a compatibility option for docker and should not be used
// buf:lint:ignore FIELD_LOWER_SNAKE_CASE
double PercentTicks = 8;

View File

@ -142,8 +142,8 @@ func ResourcesFromProto(pb *proto.Resources) *Resources {
CPUShares: pb.LinuxResources.CpuShares,
MemoryLimitBytes: pb.LinuxResources.MemoryLimitBytes,
OOMScoreAdj: pb.LinuxResources.OomScoreAdj,
CpusetCPUs: pb.LinuxResources.CpusetCpus,
CpusetMems: pb.LinuxResources.CpusetMems,
CpusetCpus: pb.LinuxResources.CpusetCpus,
CpusetCgroupPath: pb.LinuxResources.CpusetCgroup,
PercentTicks: pb.LinuxResources.PercentTicks,
}
}
@ -212,8 +212,8 @@ func ResourcesToProto(r *Resources) *proto.Resources {
CpuShares: r.LinuxResources.CPUShares,
MemoryLimitBytes: r.LinuxResources.MemoryLimitBytes,
OomScoreAdj: r.LinuxResources.OOMScoreAdj,
CpusetCpus: r.LinuxResources.CpusetCPUs,
CpusetMems: r.LinuxResources.CpusetMems,
CpusetCpus: r.LinuxResources.CpusetCpus,
CpusetCgroup: r.LinuxResources.CpusetCgroupPath,
PercentTicks: r.LinuxResources.PercentTicks,
}
}

1
vendor/modules.txt vendored
View File

@ -649,6 +649,7 @@ github.com/opencontainers/runc/libcontainer/user
github.com/opencontainers/runc/libcontainer/utils
github.com/opencontainers/runc/types
# github.com/opencontainers/runtime-spec v1.0.3-0.20200929063507-e6143ca7d51d
## explicit
github.com/opencontainers/runtime-spec/specs-go
# github.com/opencontainers/selinux v1.8.0
github.com/opencontainers/selinux/go-selinux