diff --git a/agent.go b/agent.go index d8712a58fc..ecc0e3a57b 100644 --- a/agent.go +++ b/agent.go @@ -29,6 +29,7 @@ import ( "github.com/opencontainers/runc/libcontainer" "github.com/opencontainers/runc/libcontainer/configs" _ "github.com/opencontainers/runc/libcontainer/nsenter" + "github.com/opencontainers/runtime-spec/specs-go" "github.com/sirupsen/logrus" "golang.org/x/net/context" "golang.org/x/sys/unix" @@ -98,25 +99,27 @@ type sandboxStorage struct { type sandbox struct { sync.RWMutex - id string - hostname string - containers map[string]*container - channel channel - network network - wg sync.WaitGroup - sharedPidNs namespace - mounts []string - subreaper reaper - server *grpc.Server - pciDeviceMap map[string]string - deviceWatchers map[string](chan string) - sharedUTSNs namespace - sharedIPCNs namespace - running bool - noPivotRoot bool - enableGrpcTrace bool - sandboxPidNs bool - storages map[string]*sandboxStorage + id string + hostname string + containers map[string]*container + channel channel + network network + wg sync.WaitGroup + sharedPidNs namespace + mounts []string + subreaper reaper + server *grpc.Server + pciDeviceMap map[string]string + deviceWatchers map[string](chan string) + sharedUTSNs namespace + sharedIPCNs namespace + guestHooks *specs.Hooks + guestHooksPresent bool + running bool + noPivotRoot bool + enableGrpcTrace bool + sandboxPidNs bool + storages map[string]*sandboxStorage } var agentFields = logrus.Fields{ @@ -240,6 +243,39 @@ func (s *sandbox) setSandboxStorage(path string) bool { return false } +// scanGuestHooks will search the given guestHookPath +// for any OCI hooks +func (s *sandbox) scanGuestHooks(guestHookPath string) { + fieldLogger := agentLog.WithField("oci-hook-path", guestHookPath) + fieldLogger.Info("Scanning guest filesystem for OCI hooks") + + s.guestHooks.Prestart = findHooks(guestHookPath, "prestart") + s.guestHooks.Poststart = findHooks(guestHookPath, "poststart") + s.guestHooks.Poststop = findHooks(guestHookPath, "poststop") + + if len(s.guestHooks.Prestart) > 0 || len(s.guestHooks.Poststart) > 0 || len(s.guestHooks.Poststop) > 0 { + s.guestHooksPresent = true + } else { + fieldLogger.Warn("Guest hooks were requested but none were found") + } +} + +// addGuestHooks will add any guest OCI hooks that were +// found to the OCI spec +func (s *sandbox) addGuestHooks(spec *specs.Spec) { + if spec == nil { + return + } + + if spec.Hooks == nil { + spec.Hooks = &specs.Hooks{} + } + + spec.Hooks.Prestart = append(spec.Hooks.Prestart, s.guestHooks.Prestart...) + spec.Hooks.Poststart = append(spec.Hooks.Poststart, s.guestHooks.Poststart...) + spec.Hooks.Poststop = append(spec.Hooks.Poststop, s.guestHooks.Poststop...) +} + // unSetSandboxStorage will decrement the sandbox storage // reference counter. If there aren't any containers using // that sandbox storage, this method will remove the diff --git a/agent_test.go b/agent_test.go index 27e225bedc..67bbd0fab9 100644 --- a/agent_test.go +++ b/agent_test.go @@ -9,8 +9,10 @@ package main import ( "io/ioutil" "os" + "path" "path/filepath" "reflect" + "strings" "syscall" "testing" @@ -18,6 +20,7 @@ import ( pb "github.com/kata-containers/agent/protocols/grpc" "github.com/opencontainers/runc/libcontainer" + specs "github.com/opencontainers/runtime-spec/specs-go" "github.com/stretchr/testify/assert" "golang.org/x/net/context" ) @@ -446,3 +449,52 @@ func TestGetCgroupMountsSuccessful(t *testing.T) { err = syscall.Unmount(cgprocDir, 0) assert.Nil(t, err, "%v", err) } + +func TestAddGuestHooks(t *testing.T) { + assert := assert.New(t) + + hookPath, err := ioutil.TempDir("", "hooks") + assert.NoError(err) + defer os.RemoveAll(hookPath) + + poststopPath := path.Join(hookPath, "poststop") + err = os.Mkdir(poststopPath, 0750) + assert.NoError(err) + + dirPath := path.Join(poststopPath, "directory") + err = os.Mkdir(dirPath, 0750) + assert.NoError(err) + + normalPath := path.Join(poststopPath, "normalfile") + f, err := os.OpenFile(normalPath, os.O_RDONLY|os.O_CREATE, 0640) + assert.NoError(err) + f.Close() + + symlinkPath := path.Join(poststopPath, "symlink") + err = os.Link(normalPath, symlinkPath) + assert.NoError(err) + + s := &sandbox{ + guestHooks: &specs.Hooks{}, + guestHooksPresent: false, + } + + s.scanGuestHooks(hookPath) + assert.False(s.guestHooksPresent) + + spec := &specs.Spec{} + s.addGuestHooks(spec) + assert.True(len(spec.Hooks.Poststop) == 0) + + execPath := path.Join(poststopPath, "executable") + f, err = os.OpenFile(execPath, os.O_RDONLY|os.O_CREATE, 0750) + assert.NoError(err) + f.Close() + + s.scanGuestHooks(hookPath) + assert.True(s.guestHooksPresent) + + s.addGuestHooks(spec) + assert.True(len(spec.Hooks.Poststop) == 1) + assert.True(strings.Contains(spec.Hooks.Poststop[0].Path, "executable")) +} diff --git a/grpc.go b/grpc.go index 2924bada2b..709da2d4b6 100644 --- a/grpc.go +++ b/grpc.go @@ -536,6 +536,35 @@ func (a *agentGRPC) rollbackFailingContainerCreation(ctr *container) { } } +func (a *agentGRPC) finishCreateContainer(ctr *container, req *pb.CreateContainerRequest, config *configs.Config) (resp *gpb.Empty, err error) { + containerPath := filepath.Join("/tmp/libcontainer", a.sandbox.id) + factory, err := libcontainer.New(containerPath, libcontainer.Cgroupfs) + if err != nil { + return emptyResp, err + } + + ctr.container, err = factory.Create(req.ContainerId, config) + if err != nil { + return emptyResp, err + } + ctr.config = *config + + ctr.initProcess, err = buildProcess(req.OCI.Process, req.ExecId) + if err != nil { + return emptyResp, err + } + + if err = a.execProcess(ctr, ctr.initProcess, true); err != nil { + return emptyResp, err + } + + if err := a.updateSharedPidNs(ctr); err != nil { + return emptyResp, err + } + + return emptyResp, a.postExecProcess(ctr, ctr.initProcess) +} + func (a *agentGRPC) CreateContainer(ctx context.Context, req *pb.CreateContainerRequest) (resp *gpb.Empty, err error) { if err := a.createContainerChecks(req); err != nil { return emptyResp, err @@ -591,6 +620,25 @@ func (a *agentGRPC) CreateContainer(ctx context.Context, req *pb.CreateContainer return emptyResp, err } + if a.sandbox.guestHooksPresent { + // Add any custom OCI hooks to the spec + a.sandbox.addGuestHooks(ociSpec) + + // write the OCI spec to a file so that hooks can read it + err = writeSpecToFile(ociSpec) + if err != nil { + return emptyResp, err + } + + // Change cwd because libcontainer assumes the bundle path is the cwd: + // https://github.com/opencontainers/runc/blob/v1.0.0-rc5/libcontainer/specconv/spec_linux.go#L157 + oldcwd, err := changeToBundlePath(ociSpec) + if err != nil { + return emptyResp, err + } + defer os.Chdir(oldcwd) + } + // Convert the OCI specification into a libcontainer configuration. config, err := specconv.CreateLibcontainerConfig(&specconv.CreateOpts{ CgroupName: req.ContainerId, @@ -608,32 +656,7 @@ func (a *agentGRPC) CreateContainer(ctx context.Context, req *pb.CreateContainer return emptyResp, err } - containerPath := filepath.Join("/tmp/libcontainer", a.sandbox.id) - factory, err := libcontainer.New(containerPath, libcontainer.Cgroupfs) - if err != nil { - return emptyResp, err - } - - ctr.container, err = factory.Create(req.ContainerId, config) - if err != nil { - return emptyResp, err - } - ctr.config = *config - - ctr.initProcess, err = buildProcess(req.OCI.Process, req.ExecId) - if err != nil { - return emptyResp, err - } - - if err = a.execProcess(ctr, ctr.initProcess, true); err != nil { - return emptyResp, err - } - - if err := a.updateSharedPidNs(ctr); err != nil { - return emptyResp, err - } - - return emptyResp, a.postExecProcess(ctr, ctr.initProcess) + return a.finishCreateContainer(ctr, req, config) } func (a *agentGRPC) createContainerChecks(req *pb.CreateContainerRequest) (err error) { @@ -1193,6 +1216,12 @@ func (a *agentGRPC) CreateSandbox(ctx context.Context, req *pb.CreateSandboxRequ a.sandbox.running = true a.sandbox.sandboxPidNs = req.SandboxPidns a.sandbox.storages = make(map[string]*sandboxStorage) + a.sandbox.guestHooks = &specs.Hooks{} + a.sandbox.guestHooksPresent = false + + if req.GuestHookPath != "" { + a.sandbox.scanGuestHooks(req.GuestHookPath) + } if req.SandboxId != "" { a.sandbox.id = req.SandboxId diff --git a/oci.go b/oci.go new file mode 100644 index 0000000000..7dd849e876 --- /dev/null +++ b/oci.go @@ -0,0 +1,112 @@ +// +// Copyright (c) 2018 NVIDIA CORPORATION +// +// SPDX-License-Identifier: Apache-2.0 +// + +package main + +import ( + "encoding/json" + "errors" + "io/ioutil" + "os" + "path" + "path/filepath" + + "github.com/opencontainers/runtime-spec/specs-go" + "github.com/sirupsen/logrus" +) + +// OCI config file +const ( + ociConfigFile string = "config.json" + ociConfigFileMode os.FileMode = 0444 +) + +// writeSpecToFile writes the container's OCI spec to "dirname(spec.Root.Path)/config.json" +// This effectively makes the parent directory a valid OCI bundle. +func writeSpecToFile(spec *specs.Spec) error { + bundlePath := filepath.Dir(spec.Root.Path) + configPath := filepath.Join(bundlePath, ociConfigFile) + f, err := os.OpenFile(configPath, os.O_WRONLY|os.O_CREATE, ociConfigFileMode) + if err != nil { + return err + } + defer f.Close() + + return json.NewEncoder(f).Encode(spec) +} + +// changeToBundlePath changes the cwd to the OCI bundle path defined as +// dirname(spec.Root.Path) and returns the old cwd. +func changeToBundlePath(spec *specs.Spec) (string, error) { + cwd, err := os.Getwd() + if err != nil { + return cwd, err + } + + if spec == nil || spec.Root == nil || spec.Root.Path == "" { + return cwd, errors.New("invalid OCI spec") + } + + bundlePath := filepath.Dir(spec.Root.Path) + configPath := filepath.Join(bundlePath, ociConfigFile) + + // Verify that config.json is present at the root of the bundle path. + if _, err := os.Stat(configPath); err != nil { + return cwd, errors.New("invalid OCI bundle") + } + + return cwd, os.Chdir(bundlePath) +} + +func isValidHook(file os.FileInfo) (bool, error) { + if file.IsDir() { + return false, errors.New("is a directory") + } + + mode := file.Mode() + if (mode & os.ModeSymlink) != 0 { + return false, errors.New("is a symbolic link") + } + + perm := mode & os.ModePerm + if (perm & 0111) == 0 { + return false, errors.New("is not executable") + } + + return true, nil +} + +// findHooks searches guestHookPath for any OCI hooks for a given hookType +func findHooks(guestHookPath, hookType string) (hooksFound []specs.Hook) { + hooksPath := path.Join(guestHookPath, hookType) + + files, err := ioutil.ReadDir(hooksPath) + if err != nil { + agentLog.WithError(err).WithField("oci-hook-type", hookType).Info("Skipping hook type") + return + } + + for _, file := range files { + name := file.Name() + if ok, err := isValidHook(file); !ok { + agentLog.WithError(err).WithField("oci-hook-name", name).Warn("Skipping hook") + continue + } + + agentLog.WithFields(logrus.Fields{ + "oci-hook-name": name, + "oci-hook-type": hookType, + }).Info("Adding hook") + hooksFound = append(hooksFound, specs.Hook{ + Path: path.Join(hooksPath, name), + Args: []string{name, hookType}, + }) + } + + agentLog.WithField("oci-hook-type", hookType).Infof("Added %d hooks", len(hooksFound)) + + return +} diff --git a/oci_test.go b/oci_test.go new file mode 100644 index 0000000000..e0ccc37027 --- /dev/null +++ b/oci_test.go @@ -0,0 +1,89 @@ +// +// Copyright (c) 2018 NVIDIA CORPORATION +// +// SPDX-License-Identifier: Apache-2.0 +// + +package main + +import ( + "io/ioutil" + "os" + "path" + "testing" + + "github.com/opencontainers/runtime-spec/specs-go" + "github.com/stretchr/testify/assert" +) + +func TestChangeToBundlePath(t *testing.T) { + assert := assert.New(t) + + originalCwd, err := os.Getwd() + assert.NoError(err) + defer os.Chdir(originalCwd) + + bundlePath, err := ioutil.TempDir("", "bundle") + assert.NoError(err) + defer os.RemoveAll(bundlePath) + + rootfsPath := path.Join(bundlePath, "rootfs") + err = os.Mkdir(rootfsPath, 0750) + assert.NoError(err) + + spec := &specs.Spec{} + spec.Root = &specs.Root{ + Path: "", + Readonly: false, + } + + _, err = changeToBundlePath(spec) + assert.Error(err) + + // Write the spec file to create a valid OCI bundle + spec.Root.Path = rootfsPath + err = writeSpecToFile(spec) + assert.NoError(err) + + cwd, err := changeToBundlePath(spec) + assert.NoError(err) + assert.Equal(cwd, originalCwd) + + cwd, err = os.Getwd() + assert.NoError(err) + assert.Equal(bundlePath, cwd) +} + +func TestWriteSpecToFile(t *testing.T) { + assert := assert.New(t) + + bundlePath, err := ioutil.TempDir("", "bundle") + assert.NoError(err) + defer os.RemoveAll(bundlePath) + + originalCwd, err := os.Getwd() + assert.NoError(err) + defer os.Chdir(originalCwd) + + err = os.Chdir(bundlePath) + assert.NoError(err) + + rootfsPath := path.Join(bundlePath, "rootfs") + spec := &specs.Spec{ + Root: &specs.Root{ + Path: rootfsPath, + Readonly: false, + }, + } + err = writeSpecToFile(spec) + assert.NoError(err) + + file, err := os.Open(path.Join(bundlePath, ociConfigFile)) + assert.NoError(err) + defer file.Close() + + stat, err := file.Stat() + assert.NoError(err) + + assert.True(stat.Size() > 0) +} diff --git a/protocols/grpc/agent.pb.go b/protocols/grpc/agent.pb.go index 58c0a680f7..c1b49bf577 100644 --- a/protocols/grpc/agent.pb.go +++ b/protocols/grpc/agent.pb.go @@ -1088,6 +1088,9 @@ type CreateSandboxRequest struct { // one sandbox per agent and implicitly require that CreateSandbox is // called before other sandbox/network calls. SandboxId string `protobuf:"bytes,5,opt,name=sandbox_id,json=sandboxId,proto3" json:"sandbox_id,omitempty"` + // This field, if non-empty, designates an absolute path to a directory + // that the agent will search for OCI hooks to run within the guest. + GuestHookPath string `protobuf:"bytes,6,opt,name=guest_hook_path,json=guestHookPath,proto3" json:"guest_hook_path,omitempty"` } func (m *CreateSandboxRequest) Reset() { *m = CreateSandboxRequest{} } @@ -1130,6 +1133,13 @@ func (m *CreateSandboxRequest) GetSandboxId() string { return "" } +func (m *CreateSandboxRequest) GetGuestHookPath() string { + if m != nil { + return m.GuestHookPath + } + return "" +} + type DestroySandboxRequest struct { } @@ -4000,6 +4010,12 @@ func (m *CreateSandboxRequest) MarshalTo(dAtA []byte) (int, error) { i = encodeVarintAgent(dAtA, i, uint64(len(m.SandboxId))) i += copy(dAtA[i:], m.SandboxId) } + if len(m.GuestHookPath) > 0 { + dAtA[i] = 0x32 + i++ + i = encodeVarintAgent(dAtA, i, uint64(len(m.GuestHookPath))) + i += copy(dAtA[i:], m.GuestHookPath) + } return i, nil } @@ -5311,6 +5327,10 @@ func (m *CreateSandboxRequest) Size() (n int) { if l > 0 { n += 1 + l + sovAgent(uint64(l)) } + l = len(m.GuestHookPath) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } return n } @@ -9784,6 +9804,35 @@ func (m *CreateSandboxRequest) Unmarshal(dAtA []byte) error { } m.SandboxId = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GuestHookPath", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.GuestHookPath = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAgent(dAtA[iNdEx:]) @@ -12180,165 +12229,167 @@ var ( func init() { proto.RegisterFile("agent.proto", fileDescriptorAgent) } var fileDescriptorAgent = []byte{ - // 2558 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x38, 0x5b, 0x6f, 0x1b, 0xc7, - 0xd5, 0x1f, 0x2f, 0xa2, 0xc4, 0xc3, 0x9b, 0x38, 0x92, 0x65, 0x86, 0xf6, 0xe7, 0x2a, 0xeb, 0xd6, - 0x56, 0x92, 0x5a, 0x46, 0x64, 0xa3, 0x09, 0x6c, 0x18, 0xae, 0x75, 0xa9, 0xa4, 0x26, 0xae, 0xd9, - 0x95, 0x05, 0x17, 0x28, 0x8a, 0xc5, 0x6a, 0x77, 0x44, 0x4d, 0xcc, 0xdd, 0xd9, 0xec, 0xcc, 0x4a, - 0x62, 0x02, 0x14, 0x7d, 0xea, 0xbf, 0xe8, 0x1f, 0x28, 0x8a, 0xbe, 0xf4, 0xa9, 0xef, 0x7d, 0xc8, - 0x63, 0x7f, 0x41, 0x51, 0xf8, 0x27, 0xf4, 0x17, 0x14, 0x73, 0xdb, 0x0b, 0x49, 0xc9, 0xad, 0x22, - 0xa0, 0x2f, 0xe4, 0x9e, 0xcb, 0x9c, 0xdb, 0xcc, 0x9c, 0x39, 0xe7, 0x40, 0xc3, 0x1d, 0xe2, 0x90, - 0xaf, 0x47, 0x31, 0xe5, 0x14, 0x55, 0x87, 0x71, 0xe4, 0xf5, 0xeb, 0xd4, 0x23, 0x0a, 0xd1, 0xbf, - 0x35, 0xa4, 0x74, 0x38, 0xc2, 0x0f, 0x25, 0x74, 0x94, 0x1c, 0x3f, 0xc4, 0x41, 0xc4, 0xc7, 0x8a, - 0x68, 0xfd, 0xa1, 0x0c, 0x2b, 0x5b, 0x31, 0x76, 0x39, 0xde, 0xa2, 0x21, 0x77, 0x49, 0x88, 0x63, - 0x1b, 0x7f, 0x9d, 0x60, 0xc6, 0xd1, 0x87, 0xd0, 0xf4, 0x0c, 0xce, 0x21, 0x7e, 0xaf, 0xb4, 0x5a, - 0x5a, 0xab, 0xdb, 0x8d, 0x14, 0xb7, 0xef, 0xa3, 0x9b, 0x30, 0x8f, 0xcf, 0xb1, 0x27, 0xa8, 0x65, - 0x49, 0xad, 0x09, 0x70, 0xdf, 0x47, 0x9f, 0x42, 0x83, 0xf1, 0x98, 0x84, 0x43, 0x27, 0x61, 0x38, - 0xee, 0x55, 0x56, 0x4b, 0x6b, 0x8d, 0x8d, 0xc5, 0x75, 0x61, 0xda, 0xfa, 0x81, 0x24, 0x1c, 0x32, - 0x1c, 0xdb, 0xc0, 0xd2, 0x6f, 0x74, 0x0f, 0xe6, 0x7d, 0x7c, 0x4a, 0x3c, 0xcc, 0x7a, 0xd5, 0xd5, - 0xca, 0x5a, 0x63, 0xa3, 0xa9, 0xd8, 0xb7, 0x25, 0xd2, 0x36, 0x44, 0xf4, 0x11, 0x2c, 0x30, 0x4e, - 0x63, 0x77, 0x88, 0x59, 0x6f, 0x4e, 0x32, 0xb6, 0x8c, 0x5c, 0x89, 0xb5, 0x53, 0x32, 0xba, 0x0d, - 0x95, 0x57, 0x5b, 0xfb, 0xbd, 0x9a, 0xd4, 0x0e, 0x9a, 0x2b, 0xc2, 0x9e, 0x2d, 0xd0, 0xe8, 0x2e, - 0xb4, 0x98, 0x1b, 0xfa, 0x47, 0xf4, 0xdc, 0x89, 0x88, 0x1f, 0xb2, 0xde, 0xfc, 0x6a, 0x69, 0x6d, - 0xc1, 0x6e, 0x6a, 0xe4, 0x40, 0xe0, 0xac, 0x27, 0x70, 0xe3, 0x80, 0xbb, 0x31, 0xbf, 0x42, 0x74, - 0xac, 0x43, 0x58, 0xb1, 0x71, 0x40, 0x4f, 0xaf, 0x14, 0xda, 0x1e, 0xcc, 0x73, 0x12, 0x60, 0x9a, - 0x70, 0x19, 0xda, 0x96, 0x6d, 0x40, 0xeb, 0x4f, 0x25, 0x40, 0x3b, 0xe7, 0xd8, 0x1b, 0xc4, 0xd4, - 0xc3, 0x8c, 0xfd, 0x8f, 0xb6, 0xeb, 0x3e, 0xcc, 0x47, 0xca, 0x80, 0x5e, 0x55, 0xb2, 0xeb, 0x5d, - 0x30, 0x56, 0x19, 0xaa, 0xf5, 0x15, 0x2c, 0x1f, 0x90, 0x61, 0xe8, 0x8e, 0xae, 0xd1, 0xde, 0x15, - 0xa8, 0x31, 0x29, 0x53, 0x9a, 0xda, 0xb2, 0x35, 0x64, 0x0d, 0x00, 0xbd, 0x71, 0x09, 0xbf, 0x3e, - 0x4d, 0xd6, 0x03, 0x58, 0x2a, 0x48, 0x64, 0x11, 0x0d, 0x19, 0x96, 0x06, 0x70, 0x97, 0x27, 0x4c, - 0x0a, 0x9b, 0xb3, 0x35, 0x64, 0x61, 0x58, 0xfe, 0x92, 0x30, 0xc3, 0x8e, 0xff, 0x1b, 0x13, 0x56, - 0xa0, 0x76, 0x4c, 0xe3, 0xc0, 0xe5, 0xc6, 0x02, 0x05, 0x21, 0x04, 0x55, 0x37, 0x1e, 0xb2, 0x5e, - 0x65, 0xb5, 0xb2, 0x56, 0xb7, 0xe5, 0xb7, 0x38, 0x95, 0x13, 0x6a, 0xb4, 0x5d, 0x1f, 0x42, 0x53, - 0xc7, 0xdd, 0x19, 0x11, 0xc6, 0xa5, 0x9e, 0xa6, 0xdd, 0xd0, 0x38, 0xb1, 0xc6, 0xa2, 0xb0, 0x72, - 0x18, 0xf9, 0x57, 0xbc, 0xf0, 0x1b, 0x50, 0x8f, 0x31, 0xa3, 0x49, 0x2c, 0xae, 0x69, 0x59, 0xee, - 0xfb, 0xb2, 0xda, 0xf7, 0x2f, 0x49, 0x98, 0x9c, 0xdb, 0x86, 0x66, 0x67, 0x6c, 0xfa, 0x0a, 0x71, - 0x76, 0x95, 0x2b, 0xf4, 0x04, 0x6e, 0x0c, 0xdc, 0x84, 0x5d, 0xc5, 0x56, 0xeb, 0xa9, 0xb8, 0x7e, - 0x2c, 0x09, 0xae, 0xb4, 0xf8, 0x8f, 0x25, 0x58, 0xd8, 0x8a, 0x92, 0x43, 0xe6, 0x0e, 0x31, 0xfa, - 0x01, 0x34, 0x38, 0xe5, 0xee, 0xc8, 0x49, 0x04, 0x28, 0xd9, 0xab, 0x36, 0x48, 0x94, 0x62, 0x10, - 0x61, 0xc7, 0xb1, 0x17, 0x25, 0x9a, 0xa3, 0xbc, 0x5a, 0x59, 0xab, 0xda, 0x0d, 0x85, 0x53, 0x2c, - 0xeb, 0xb0, 0x24, 0x69, 0x0e, 0x09, 0x9d, 0xb7, 0x38, 0x0e, 0xf1, 0x28, 0xa0, 0x3e, 0x96, 0xe7, - 0xb7, 0x6a, 0x77, 0x25, 0x69, 0x3f, 0xfc, 0x22, 0x25, 0xa0, 0x8f, 0xa1, 0x9b, 0xf2, 0x8b, 0x4b, - 0x29, 0xb9, 0xab, 0x92, 0xbb, 0xa3, 0xb9, 0x0f, 0x35, 0xda, 0xfa, 0x2d, 0xb4, 0x5f, 0x9f, 0xc4, - 0x94, 0xf3, 0x11, 0x09, 0x87, 0xdb, 0x2e, 0x77, 0x45, 0xf6, 0x88, 0x70, 0x4c, 0xa8, 0xcf, 0xb4, - 0xb5, 0x06, 0x44, 0x9f, 0x40, 0x97, 0x2b, 0x5e, 0xec, 0x3b, 0x86, 0xa7, 0x2c, 0x79, 0x16, 0x53, - 0xc2, 0x40, 0x33, 0xff, 0x08, 0xda, 0x19, 0xb3, 0xc8, 0x3f, 0xda, 0xde, 0x56, 0x8a, 0x7d, 0x4d, - 0x02, 0x6c, 0x9d, 0xca, 0x58, 0xc9, 0x4d, 0x46, 0x9f, 0x40, 0x3d, 0x8b, 0x43, 0x49, 0x9e, 0x90, - 0xb6, 0x3a, 0x21, 0x26, 0x9c, 0xf6, 0x42, 0x1a, 0x94, 0x67, 0xd0, 0xe1, 0xa9, 0xe1, 0x8e, 0xef, - 0x72, 0xb7, 0x78, 0xa8, 0x8a, 0x5e, 0xd9, 0x6d, 0x5e, 0x80, 0xad, 0xa7, 0x50, 0x1f, 0x10, 0x9f, - 0x29, 0xc5, 0x3d, 0x98, 0xf7, 0x92, 0x38, 0xc6, 0x21, 0x37, 0x2e, 0x6b, 0x10, 0x2d, 0xc3, 0xdc, - 0x88, 0x04, 0x84, 0x6b, 0x37, 0x15, 0x60, 0x51, 0x80, 0x97, 0x38, 0xa0, 0xf1, 0x58, 0x06, 0x6c, - 0x19, 0xe6, 0xf2, 0x9b, 0xab, 0x00, 0x74, 0x0b, 0xea, 0x81, 0x7b, 0x9e, 0x6e, 0xaa, 0xa0, 0x2c, - 0x04, 0xee, 0xb9, 0x32, 0xbe, 0x07, 0xf3, 0xc7, 0x2e, 0x19, 0x79, 0x21, 0xd7, 0x51, 0x31, 0x60, - 0xa6, 0xb0, 0x9a, 0x57, 0xf8, 0xb7, 0x32, 0x34, 0x94, 0x46, 0x65, 0xf0, 0x32, 0xcc, 0x79, 0xae, - 0x77, 0x92, 0xaa, 0x94, 0x00, 0xba, 0x67, 0x0c, 0x29, 0xe7, 0x93, 0x70, 0x66, 0xa9, 0x31, 0xed, - 0x21, 0x00, 0x3b, 0x73, 0x23, 0x6d, 0x5b, 0xe5, 0x02, 0xe6, 0xba, 0xe0, 0x51, 0xe6, 0x3e, 0x82, - 0xa6, 0x3a, 0x77, 0x7a, 0x49, 0xf5, 0x82, 0x25, 0x0d, 0xc5, 0xa5, 0x16, 0xdd, 0x85, 0x56, 0xc2, - 0xb0, 0x73, 0x42, 0x70, 0xec, 0xc6, 0xde, 0xc9, 0xb8, 0x37, 0xa7, 0xde, 0xc8, 0x84, 0xe1, 0x3d, - 0x83, 0x43, 0x1b, 0x30, 0x27, 0xd2, 0x1f, 0xeb, 0xd5, 0xe4, 0x73, 0x7c, 0x3b, 0x2f, 0x52, 0xba, - 0xba, 0x2e, 0x7f, 0x77, 0x42, 0x1e, 0x8f, 0x6d, 0xc5, 0xda, 0xff, 0x1c, 0x20, 0x43, 0xa2, 0x45, - 0xa8, 0xbc, 0xc5, 0x63, 0x7d, 0x0f, 0xc5, 0xa7, 0x08, 0xce, 0xa9, 0x3b, 0x4a, 0x4c, 0xd4, 0x15, - 0xf0, 0xa4, 0xfc, 0x79, 0xc9, 0xf2, 0xa0, 0xb3, 0x39, 0x7a, 0x4b, 0x68, 0x6e, 0xf9, 0x32, 0xcc, - 0x05, 0xee, 0x57, 0x34, 0x36, 0x91, 0x94, 0x80, 0xc4, 0x92, 0x90, 0xc6, 0x46, 0x84, 0x04, 0x50, - 0x1b, 0xca, 0x34, 0x92, 0xf1, 0xaa, 0xdb, 0x65, 0x1a, 0x65, 0x8a, 0xaa, 0x39, 0x45, 0xd6, 0x3f, - 0xaa, 0x00, 0x99, 0x16, 0x64, 0x43, 0x9f, 0x50, 0x87, 0xe1, 0x58, 0x94, 0x20, 0xce, 0xd1, 0x98, - 0x63, 0xe6, 0xc4, 0xd8, 0x4b, 0x62, 0x46, 0x4e, 0xc5, 0xfe, 0x09, 0xb7, 0x6f, 0x28, 0xb7, 0x27, - 0x6c, 0xb3, 0x6f, 0x12, 0x7a, 0xa0, 0xd6, 0x6d, 0x8a, 0x65, 0xb6, 0x59, 0x85, 0xf6, 0xe1, 0x46, - 0x26, 0xd3, 0xcf, 0x89, 0x2b, 0x5f, 0x26, 0x6e, 0x29, 0x15, 0xe7, 0x67, 0xa2, 0x76, 0x60, 0x89, - 0x50, 0xe7, 0xeb, 0x04, 0x27, 0x05, 0x41, 0x95, 0xcb, 0x04, 0x75, 0x09, 0xfd, 0xa5, 0x5c, 0x90, - 0x89, 0x19, 0xc0, 0x07, 0x39, 0x2f, 0xc5, 0x75, 0xcf, 0x09, 0xab, 0x5e, 0x26, 0x6c, 0x25, 0xb5, - 0x4a, 0xe4, 0x83, 0x4c, 0xe2, 0xcf, 0x61, 0x85, 0x50, 0xe7, 0xcc, 0x25, 0x7c, 0x52, 0xdc, 0xdc, - 0x7b, 0x9c, 0x14, 0x8f, 0x6e, 0x51, 0x96, 0x72, 0x32, 0xc0, 0xf1, 0xb0, 0xe0, 0x64, 0xed, 0x3d, - 0x4e, 0xbe, 0x94, 0x0b, 0x32, 0x31, 0x2f, 0xa0, 0x4b, 0xe8, 0xa4, 0x35, 0xf3, 0x97, 0x09, 0xe9, - 0x10, 0x5a, 0xb4, 0x64, 0x13, 0xba, 0x0c, 0x7b, 0x9c, 0xc6, 0xf9, 0x43, 0xb0, 0x70, 0x99, 0x88, - 0x45, 0xcd, 0x9f, 0xca, 0xb0, 0x7e, 0x0d, 0xcd, 0xbd, 0x64, 0x88, 0xf9, 0xe8, 0x28, 0x4d, 0x06, - 0xd7, 0x96, 0x7f, 0xac, 0x7f, 0x95, 0xa1, 0xb1, 0x35, 0x8c, 0x69, 0x12, 0x15, 0x72, 0xb2, 0xba, - 0xa4, 0x93, 0x39, 0x59, 0xb2, 0xc8, 0x9c, 0xac, 0x98, 0x1f, 0x43, 0x33, 0x90, 0x57, 0x57, 0xf3, - 0xab, 0x3c, 0xd4, 0x9d, 0xba, 0xd4, 0x76, 0x23, 0xc8, 0x25, 0xb3, 0x75, 0x80, 0x88, 0xf8, 0x4c, - 0xaf, 0x51, 0xe9, 0xa8, 0xa3, 0x2b, 0x42, 0x93, 0xa2, 0xed, 0x7a, 0x94, 0x66, 0xeb, 0x4f, 0xa1, - 0x71, 0x24, 0x82, 0xa4, 0x17, 0x14, 0x92, 0x51, 0x16, 0x3d, 0x1b, 0x8e, 0xb2, 0x4b, 0xb8, 0x07, - 0xad, 0x13, 0x15, 0x32, 0xbd, 0x48, 0x9d, 0xa1, 0xbb, 0xda, 0x93, 0xcc, 0xdf, 0xf5, 0x7c, 0x64, - 0xd5, 0x06, 0x34, 0x4f, 0x72, 0xa8, 0xfe, 0x01, 0x74, 0xa7, 0x58, 0x66, 0xe4, 0xa0, 0xb5, 0x7c, - 0x0e, 0x6a, 0x6c, 0x20, 0xa5, 0x28, 0xbf, 0x32, 0x9f, 0x97, 0x7e, 0x01, 0x2b, 0x93, 0x65, 0x8e, - 0x2e, 0xca, 0x1e, 0x43, 0xd3, 0x93, 0xd6, 0x15, 0x76, 0xa0, 0x3b, 0x65, 0xb7, 0xdd, 0xf0, 0x32, - 0xc0, 0xf2, 0x01, 0xbd, 0x89, 0x09, 0xc7, 0x07, 0x3c, 0xc6, 0x6e, 0x70, 0x1d, 0x55, 0x33, 0x82, - 0xaa, 0x7c, 0x62, 0x2b, 0xb2, 0x28, 0x94, 0xdf, 0xd6, 0x7d, 0x58, 0x2a, 0x68, 0xd1, 0x26, 0x2f, - 0x42, 0x65, 0x84, 0x43, 0x29, 0xbd, 0x65, 0x8b, 0x4f, 0xcb, 0x85, 0xae, 0x8d, 0x5d, 0xff, 0xfa, - 0xac, 0xd1, 0x2a, 0x2a, 0x99, 0x8a, 0x35, 0x40, 0x79, 0x15, 0xda, 0x14, 0x63, 0x75, 0x29, 0x67, - 0xf5, 0x2b, 0xe8, 0x6e, 0x8d, 0x28, 0xc3, 0x07, 0xdc, 0x27, 0xe1, 0x75, 0x94, 0xf9, 0xdf, 0xc2, - 0xd2, 0x6b, 0x3e, 0x7e, 0x23, 0x84, 0x31, 0xf2, 0x0d, 0xbe, 0x26, 0xff, 0x62, 0x7a, 0x66, 0xfc, - 0x8b, 0xe9, 0x99, 0xa8, 0xf0, 0x3d, 0x3a, 0x4a, 0x82, 0x50, 0x1e, 0xf7, 0x96, 0xad, 0x21, 0xeb, - 0x2f, 0x25, 0x58, 0x56, 0x3d, 0xf8, 0x81, 0x6a, 0x3d, 0x8d, 0xfa, 0x3e, 0x2c, 0x9c, 0x50, 0xc6, - 0x43, 0x37, 0xc0, 0x5a, 0x75, 0x0a, 0x0b, 0xf1, 0xa2, 0x67, 0x2d, 0xcb, 0xae, 0x40, 0x7c, 0x16, - 0x1a, 0xe3, 0xca, 0xe5, 0x8d, 0xf1, 0x54, 0xeb, 0x5b, 0x9d, 0x6e, 0x7d, 0xd1, 0xff, 0x03, 0x18, - 0x26, 0xe2, 0xcb, 0x87, 0xbf, 0x6e, 0xd7, 0x35, 0x66, 0xdf, 0xb7, 0x6e, 0xc2, 0x8d, 0x6d, 0xcc, - 0x78, 0x4c, 0xc7, 0x45, 0xab, 0x2d, 0x17, 0xea, 0xfb, 0x83, 0x17, 0xbe, 0x1f, 0x63, 0xc6, 0xd0, - 0x3d, 0xa8, 0x1d, 0xbb, 0x01, 0x19, 0xa9, 0x8b, 0xd5, 0x36, 0x79, 0x67, 0x7f, 0xf0, 0x33, 0x89, - 0xb5, 0x35, 0x55, 0x24, 0x33, 0x57, 0x2d, 0xd1, 0x61, 0x34, 0xa0, 0xd8, 0xff, 0xc0, 0x65, 0x6f, - 0xf5, 0x93, 0x2d, 0xbf, 0xad, 0x3f, 0x97, 0xa0, 0xbe, 0x1f, 0x72, 0x1c, 0x1f, 0xbb, 0x9e, 0x6c, - 0xc6, 0xd4, 0x70, 0x40, 0x07, 0x49, 0x43, 0x62, 0xa5, 0x0c, 0x9d, 0x12, 0x28, 0xbf, 0x45, 0xde, - 0x49, 0x8d, 0x4b, 0xe3, 0xd4, 0x31, 0x46, 0x69, 0x82, 0x9d, 0xe7, 0x11, 0x91, 0x0e, 0x78, 0xa2, - 0xeb, 0x03, 0xf1, 0x29, 0x14, 0x9e, 0x9c, 0x09, 0x06, 0x1d, 0x15, 0x0d, 0xc9, 0xaa, 0xdb, 0x23, - 0x92, 0x50, 0x53, 0x4e, 0x68, 0xd0, 0x7a, 0x06, 0x90, 0xda, 0xcb, 0x44, 0xed, 0x96, 0x41, 0xba, - 0x7c, 0x30, 0x36, 0x18, 0xbc, 0x9d, 0x63, 0xb1, 0xbe, 0x85, 0x39, 0x9b, 0x26, 0x5c, 0x5d, 0x06, - 0xac, 0xfb, 0xba, 0xba, 0x2d, 0xbf, 0x85, 0xd6, 0xa1, 0xcb, 0xf1, 0x99, 0x3b, 0x36, 0xa1, 0xd3, - 0x60, 0x2e, 0x30, 0x95, 0x42, 0x60, 0x44, 0xf7, 0x2a, 0x9b, 0x33, 0xe9, 0x54, 0xdd, 0xd6, 0x90, - 0x78, 0x84, 0x98, 0x47, 0x23, 0x2c, 0xdd, 0x6a, 0xd9, 0x0a, 0xb0, 0x1e, 0x40, 0x4d, 0x2a, 0x17, - 0xc7, 0x46, 0x7f, 0x69, 0x9b, 0x1b, 0xca, 0x66, 0x89, 0xb3, 0x35, 0xc9, 0xda, 0x35, 0xfd, 0x65, - 0xe6, 0x8a, 0x3e, 0xce, 0x0f, 0xa0, 0x4e, 0x0c, 0x4e, 0x27, 0xc1, 0x29, 0xaf, 0x33, 0x0e, 0x6b, - 0x1b, 0x96, 0x5e, 0xf8, 0xfe, 0xf7, 0x95, 0xb2, 0x6b, 0x86, 0x30, 0xdf, 0x57, 0xd0, 0x53, 0x58, - 0x52, 0x7e, 0x29, 0x3f, 0x8d, 0x94, 0x1f, 0x42, 0x2d, 0x36, 0x31, 0x29, 0x65, 0x53, 0x2b, 0xcd, - 0xa4, 0x69, 0xe2, 0xb2, 0x88, 0xe6, 0x3b, 0xdb, 0x52, 0x73, 0x59, 0x96, 0xa0, 0x2b, 0x08, 0x05, - 0x99, 0xd6, 0x6f, 0x60, 0xe9, 0x55, 0x38, 0x22, 0x21, 0xde, 0x1a, 0x1c, 0xbe, 0xc4, 0x69, 0xb6, - 0x45, 0x50, 0x15, 0xa5, 0x94, 0x54, 0xb4, 0x60, 0xcb, 0x6f, 0x91, 0x7e, 0xc2, 0x23, 0xc7, 0x8b, - 0x12, 0xa6, 0xc7, 0x44, 0xb5, 0xf0, 0x68, 0x2b, 0x4a, 0x18, 0xfa, 0x00, 0xc4, 0x93, 0xee, 0xd0, - 0x70, 0x34, 0x96, 0xbb, 0xbf, 0x60, 0xcf, 0x7b, 0x51, 0xf2, 0x2a, 0x1c, 0x8d, 0xad, 0x1f, 0xcb, - 0xc6, 0x18, 0x63, 0xdf, 0x76, 0x43, 0x9f, 0x06, 0xdb, 0xf8, 0x34, 0xa7, 0x21, 0x6d, 0xc2, 0x4c, - 0xae, 0xfd, 0xae, 0x04, 0xcd, 0x17, 0x43, 0x1c, 0xf2, 0x6d, 0xcc, 0x5d, 0x32, 0x92, 0x8d, 0xd6, - 0x29, 0x8e, 0x19, 0xa1, 0xa1, 0x3e, 0x86, 0x06, 0x14, 0x7d, 0x32, 0x09, 0x09, 0x77, 0x7c, 0x17, - 0x07, 0x34, 0x94, 0x52, 0x16, 0x6c, 0x10, 0xa8, 0x6d, 0x89, 0x41, 0xf7, 0xa1, 0xa3, 0x8e, 0xa0, - 0x73, 0xe2, 0x86, 0xfe, 0x08, 0xc7, 0x66, 0xac, 0xd1, 0x56, 0xe8, 0x3d, 0x8d, 0x45, 0x1f, 0xc1, - 0xa2, 0x4e, 0x56, 0x19, 0x67, 0x55, 0x72, 0x76, 0x34, 0xbe, 0xc0, 0x9a, 0x44, 0x11, 0x8d, 0x39, - 0x73, 0x18, 0xf6, 0x3c, 0x1a, 0x44, 0xba, 0x4b, 0xe9, 0x18, 0xfc, 0x81, 0x42, 0x8b, 0x2d, 0xdc, - 0x15, 0x7e, 0x6a, 0x4f, 0xb2, 0x2d, 0x6c, 0x07, 0x38, 0x70, 0x8e, 0x46, 0xd4, 0x7b, 0xeb, 0x88, - 0xf4, 0xaf, 0x23, 0x2c, 0xea, 0xa0, 0x4d, 0x81, 0x3c, 0x20, 0xdf, 0x60, 0xeb, 0x77, 0x25, 0x58, - 0x2e, 0xae, 0xd6, 0x0f, 0xd4, 0x43, 0x58, 0x2e, 0x2e, 0x57, 0x0d, 0x82, 0xae, 0xe4, 0xba, 0x79, - 0x21, 0xb2, 0x05, 0x40, 0x9f, 0x41, 0x4b, 0x0e, 0x6c, 0x1d, 0x5f, 0x49, 0x2a, 0xd6, 0x17, 0xf9, - 0x58, 0xdb, 0x4d, 0x37, 0x07, 0x89, 0x87, 0x62, 0x5e, 0x27, 0x73, 0x79, 0xb7, 0x63, 0x72, 0x8a, - 0xe3, 0x34, 0xe9, 0x49, 0x48, 0xb4, 0xec, 0xea, 0xcb, 0xa1, 0x11, 0x27, 0x34, 0x7d, 0x22, 0x5a, - 0x0a, 0xfb, 0x4a, 0x21, 0x73, 0x29, 0xa0, 0x52, 0x48, 0x01, 0x2b, 0x50, 0x3b, 0x66, 0x7c, 0x1c, - 0xa5, 0xa9, 0x41, 0x41, 0x62, 0xd3, 0x8d, 0xbc, 0x39, 0x29, 0xcf, 0x80, 0x62, 0xd3, 0x03, 0x9a, - 0x84, 0xdc, 0x89, 0x28, 0x09, 0xb9, 0x4e, 0x7c, 0x20, 0x51, 0x03, 0x81, 0xb1, 0x7e, 0x5f, 0x82, - 0x9a, 0x1a, 0xe2, 0x8a, 0xe6, 0x2b, 0x7d, 0x45, 0xcb, 0x44, 0x56, 0x24, 0x52, 0x97, 0xce, 0xd0, - 0x52, 0xd3, 0x4d, 0x98, 0x3f, 0x0d, 0x9c, 0xc8, 0xe5, 0x27, 0xc6, 0xb4, 0xd3, 0x60, 0xe0, 0xf2, - 0x13, 0xe1, 0x59, 0xf6, 0x18, 0x4b, 0xba, 0x32, 0xb1, 0x95, 0x62, 0x25, 0xdb, 0x85, 0x96, 0x5a, - 0xbf, 0x12, 0x3d, 0x67, 0x3a, 0xc0, 0x5c, 0x84, 0x4a, 0x92, 0x1a, 0x23, 0x3e, 0x05, 0x66, 0x98, - 0x3e, 0xe3, 0xe2, 0x13, 0xdd, 0x83, 0xb6, 0xeb, 0xfb, 0x44, 0x2c, 0x77, 0x47, 0xbb, 0xc4, 0x4f, - 0x8f, 0x6b, 0x11, 0xfb, 0x71, 0x1f, 0x16, 0xcc, 0x8b, 0x86, 0x6a, 0x50, 0x3e, 0x7d, 0xbc, 0xf8, - 0x7f, 0xf2, 0xff, 0x27, 0x8b, 0xa5, 0x8d, 0xbf, 0xb6, 0xf5, 0xfd, 0xd1, 0x1d, 0x12, 0xda, 0x85, - 0xce, 0xc4, 0xc4, 0x1d, 0xe9, 0x96, 0x79, 0xf6, 0x20, 0xbe, 0xbf, 0xb2, 0xae, 0x26, 0xf8, 0xeb, - 0x66, 0x82, 0xbf, 0xbe, 0x13, 0x44, 0x7c, 0x8c, 0x76, 0xa0, 0x5d, 0x9c, 0x4d, 0xa3, 0x5b, 0xe6, - 0xc1, 0x9f, 0x31, 0xb1, 0xbe, 0x50, 0xcc, 0x2e, 0x74, 0x26, 0xc6, 0xd4, 0xc6, 0x9e, 0xd9, 0xd3, - 0xeb, 0x0b, 0x05, 0x3d, 0x87, 0x46, 0x6e, 0x2e, 0x8d, 0x7a, 0x4a, 0xc8, 0xf4, 0xa8, 0xfa, 0x42, - 0x01, 0x5b, 0xd0, 0x2a, 0x8c, 0x8a, 0x51, 0x5f, 0xfb, 0x33, 0x63, 0x7e, 0x7c, 0xa1, 0x90, 0x4d, - 0x68, 0xe4, 0x26, 0xb6, 0xc6, 0x8a, 0xe9, 0xb1, 0x70, 0xff, 0x83, 0x19, 0x14, 0x7d, 0xa5, 0xf7, - 0xa0, 0x55, 0x98, 0xaf, 0x1a, 0x43, 0x66, 0xcd, 0x76, 0xfb, 0xb7, 0x66, 0xd2, 0xb4, 0xa4, 0x5d, - 0xe8, 0x4c, 0x4c, 0x5b, 0x4d, 0x70, 0x67, 0x0f, 0x61, 0x2f, 0x74, 0xeb, 0x0b, 0xb9, 0xd9, 0xb9, - 0xf6, 0x22, 0xb7, 0xd9, 0xd3, 0xb3, 0xd5, 0xfe, 0xed, 0xd9, 0x44, 0x6d, 0xd5, 0x0e, 0xb4, 0x8b, - 0x63, 0x55, 0x23, 0x6c, 0xe6, 0xb0, 0xf5, 0xf2, 0x93, 0x53, 0x98, 0xb0, 0x66, 0x27, 0x67, 0xd6, - 0xe0, 0xf5, 0x42, 0x41, 0x2f, 0x00, 0x74, 0x17, 0xe2, 0x93, 0x30, 0xdd, 0xb2, 0xa9, 0xee, 0x27, - 0xdd, 0xb2, 0x19, 0x1d, 0xcb, 0x73, 0x00, 0xd5, 0x3c, 0xf8, 0x34, 0xe1, 0xe8, 0xa6, 0x31, 0x63, - 0xa2, 0x63, 0xe9, 0xf7, 0xa6, 0x09, 0x53, 0x02, 0x70, 0x1c, 0x5f, 0x45, 0xc0, 0x33, 0x80, 0xac, - 0x29, 0x31, 0x02, 0xa6, 0xda, 0x94, 0x4b, 0x62, 0xd0, 0xcc, 0xb7, 0x20, 0x48, 0xfb, 0x3a, 0xa3, - 0x2d, 0xb9, 0x50, 0xc4, 0x13, 0x68, 0xe6, 0x2b, 0x26, 0x23, 0x62, 0x46, 0x15, 0xd5, 0x9f, 0xac, - 0x74, 0xd0, 0x4f, 0xcd, 0x41, 0xcd, 0x50, 0x85, 0x83, 0xfa, 0x1f, 0x49, 0x98, 0xa8, 0xb4, 0x8a, - 0x79, 0xe4, 0xfd, 0x12, 0x3e, 0x83, 0x66, 0xbe, 0xc4, 0x32, 0xf6, 0xcf, 0x28, 0xbb, 0xfa, 0x85, - 0x32, 0x0b, 0x3d, 0x87, 0x76, 0xb1, 0xbc, 0x42, 0xb9, 0x4b, 0x39, 0x55, 0x74, 0xf5, 0x17, 0x27, - 0x14, 0x33, 0xf4, 0x08, 0x20, 0x2b, 0xc3, 0xcc, 0xde, 0x4d, 0x15, 0x66, 0x13, 0x5a, 0xb7, 0xa0, - 0x55, 0x68, 0xdb, 0x4c, 0x96, 0x98, 0xd5, 0xcb, 0x5d, 0x96, 0xc4, 0x8b, 0x6d, 0x94, 0x31, 0x7d, - 0x66, 0x73, 0x75, 0xd9, 0xe9, 0xc9, 0x97, 0x8c, 0x26, 0x74, 0x33, 0xca, 0xc8, 0xf7, 0xdc, 0xe6, - 0x7c, 0x59, 0x98, 0xbb, 0xcd, 0x33, 0xaa, 0xc5, 0x0b, 0x05, 0xed, 0x41, 0x67, 0x17, 0xf3, 0x7c, - 0xad, 0x64, 0xcc, 0x99, 0x51, 0x7d, 0xf5, 0xfb, 0xb3, 0x48, 0xea, 0x4a, 0x6d, 0x36, 0xbf, 0x7b, - 0x77, 0xa7, 0xf4, 0xf7, 0x77, 0x77, 0x4a, 0xff, 0x7c, 0x77, 0xa7, 0x74, 0x54, 0x93, 0x7a, 0x1e, - 0xfd, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xf5, 0xf4, 0x8b, 0xe9, 0xef, 0x1e, 0x00, 0x00, + // 2582 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x18, 0xdb, 0x6e, 0x24, 0x47, + 0x95, 0xb9, 0x78, 0xec, 0x39, 0x73, 0xf3, 0x94, 0xbd, 0xde, 0xc9, 0x6c, 0x08, 0x4e, 0x07, 0x36, + 0x4e, 0x42, 0xbc, 0x8a, 0x13, 0x91, 0x68, 0x57, 0xab, 0x65, 0x7d, 0xc1, 0x36, 0xc9, 0xb2, 0x43, + 0x7b, 0xad, 0x45, 0x42, 0xa8, 0xd5, 0xee, 0x2e, 0xcf, 0x54, 0x3c, 0xdd, 0xd5, 0xe9, 0xaa, 0xb6, + 0x3d, 0x89, 0x84, 0x78, 0xe2, 0x2f, 0xf8, 0x01, 0x84, 0x78, 0xe1, 0x89, 0x77, 0x1e, 0xf2, 0xc8, + 0x3b, 0x12, 0x42, 0xfb, 0x09, 0x7c, 0x01, 0xaa, 0x5b, 0x5f, 0x66, 0xc6, 0x5e, 0x70, 0x2c, 0xf1, + 0x32, 0xd3, 0xe7, 0x52, 0xe7, 0x56, 0x55, 0xa7, 0xce, 0x39, 0xd0, 0x70, 0x87, 0x38, 0xe4, 0x9b, + 0x51, 0x4c, 0x39, 0x45, 0xd5, 0x61, 0x1c, 0x79, 0xfd, 0x3a, 0xf5, 0x88, 0x42, 0xf4, 0xef, 0x0d, + 0x29, 0x1d, 0x8e, 0xf1, 0x03, 0x09, 0x9d, 0x24, 0xa7, 0x0f, 0x70, 0x10, 0xf1, 0x89, 0x22, 0x5a, + 0x7f, 0x28, 0xc3, 0xda, 0x4e, 0x8c, 0x5d, 0x8e, 0x77, 0x68, 0xc8, 0x5d, 0x12, 0xe2, 0xd8, 0xc6, + 0x5f, 0x25, 0x98, 0x71, 0xf4, 0x36, 0x34, 0x3d, 0x83, 0x73, 0x88, 0xdf, 0x2b, 0xad, 0x97, 0x36, + 0xea, 0x76, 0x23, 0xc5, 0x1d, 0xfa, 0xe8, 0x2e, 0x2c, 0xe2, 0x4b, 0xec, 0x09, 0x6a, 0x59, 0x52, + 0x6b, 0x02, 0x3c, 0xf4, 0xd1, 0x47, 0xd0, 0x60, 0x3c, 0x26, 0xe1, 0xd0, 0x49, 0x18, 0x8e, 0x7b, + 0x95, 0xf5, 0xd2, 0x46, 0x63, 0x6b, 0x79, 0x53, 0x98, 0xb6, 0x79, 0x24, 0x09, 0xc7, 0x0c, 0xc7, + 0x36, 0xb0, 0xf4, 0x1b, 0xdd, 0x87, 0x45, 0x1f, 0x9f, 0x13, 0x0f, 0xb3, 0x5e, 0x75, 0xbd, 0xb2, + 0xd1, 0xd8, 0x6a, 0x2a, 0xf6, 0x5d, 0x89, 0xb4, 0x0d, 0x11, 0xbd, 0x07, 0x4b, 0x8c, 0xd3, 0xd8, + 0x1d, 0x62, 0xd6, 0x5b, 0x90, 0x8c, 0x2d, 0x23, 0x57, 0x62, 0xed, 0x94, 0x8c, 0xde, 0x84, 0xca, + 0xf3, 0x9d, 0xc3, 0x5e, 0x4d, 0x6a, 0x07, 0xcd, 0x15, 0x61, 0xcf, 0x16, 0x68, 0xf4, 0x0e, 0xb4, + 0x98, 0x1b, 0xfa, 0x27, 0xf4, 0xd2, 0x89, 0x88, 0x1f, 0xb2, 0xde, 0xe2, 0x7a, 0x69, 0x63, 0xc9, + 0x6e, 0x6a, 0xe4, 0x40, 0xe0, 0xac, 0x87, 0x70, 0xe7, 0x88, 0xbb, 0x31, 0xbf, 0x41, 0x74, 0xac, + 0x63, 0x58, 0xb3, 0x71, 0x40, 0xcf, 0x6f, 0x14, 0xda, 0x1e, 0x2c, 0x72, 0x12, 0x60, 0x9a, 0x70, + 0x19, 0xda, 0x96, 0x6d, 0x40, 0xeb, 0x4f, 0x25, 0x40, 0x7b, 0x97, 0xd8, 0x1b, 0xc4, 0xd4, 0xc3, + 0x8c, 0xfd, 0x9f, 0xb6, 0xeb, 0x5d, 0x58, 0x8c, 0x94, 0x01, 0xbd, 0xaa, 0x64, 0xd7, 0xbb, 0x60, + 0xac, 0x32, 0x54, 0xeb, 0x4b, 0x58, 0x3d, 0x22, 0xc3, 0xd0, 0x1d, 0xdf, 0xa2, 0xbd, 0x6b, 0x50, + 0x63, 0x52, 0xa6, 0x34, 0xb5, 0x65, 0x6b, 0xc8, 0x1a, 0x00, 0x7a, 0xe9, 0x12, 0x7e, 0x7b, 0x9a, + 0xac, 0x0f, 0x61, 0xa5, 0x20, 0x91, 0x45, 0x34, 0x64, 0x58, 0x1a, 0xc0, 0x5d, 0x9e, 0x30, 0x29, + 0x6c, 0xc1, 0xd6, 0x90, 0x85, 0x61, 0xf5, 0x0b, 0xc2, 0x0c, 0x3b, 0xfe, 0x5f, 0x4c, 0x58, 0x83, + 0xda, 0x29, 0x8d, 0x03, 0x97, 0x1b, 0x0b, 0x14, 0x84, 0x10, 0x54, 0xdd, 0x78, 0xc8, 0x7a, 0x95, + 0xf5, 0xca, 0x46, 0xdd, 0x96, 0xdf, 0xe2, 0x54, 0x4e, 0xa9, 0xd1, 0x76, 0xbd, 0x0d, 0x4d, 0x1d, + 0x77, 0x67, 0x4c, 0x18, 0x97, 0x7a, 0x9a, 0x76, 0x43, 0xe3, 0xc4, 0x1a, 0x8b, 0xc2, 0xda, 0x71, + 0xe4, 0xdf, 0xf0, 0xc2, 0x6f, 0x41, 0x3d, 0xc6, 0x8c, 0x26, 0xb1, 0xb8, 0xa6, 0x65, 0xb9, 0xef, + 0xab, 0x6a, 0xdf, 0xbf, 0x20, 0x61, 0x72, 0x69, 0x1b, 0x9a, 0x9d, 0xb1, 0xe9, 0x2b, 0xc4, 0xd9, + 0x4d, 0xae, 0xd0, 0x43, 0xb8, 0x33, 0x70, 0x13, 0x76, 0x13, 0x5b, 0xad, 0x47, 0xe2, 0xfa, 0xb1, + 0x24, 0xb8, 0xd1, 0xe2, 0x3f, 0x96, 0x60, 0x69, 0x27, 0x4a, 0x8e, 0x99, 0x3b, 0xc4, 0xe8, 0x07, + 0xd0, 0xe0, 0x94, 0xbb, 0x63, 0x27, 0x11, 0xa0, 0x64, 0xaf, 0xda, 0x20, 0x51, 0x8a, 0x41, 0x84, + 0x1d, 0xc7, 0x5e, 0x94, 0x68, 0x8e, 0xf2, 0x7a, 0x65, 0xa3, 0x6a, 0x37, 0x14, 0x4e, 0xb1, 0x6c, + 0xc2, 0x8a, 0xa4, 0x39, 0x24, 0x74, 0xce, 0x70, 0x1c, 0xe2, 0x71, 0x40, 0x7d, 0x2c, 0xcf, 0x6f, + 0xd5, 0xee, 0x4a, 0xd2, 0x61, 0xf8, 0x79, 0x4a, 0x40, 0xef, 0x43, 0x37, 0xe5, 0x17, 0x97, 0x52, + 0x72, 0x57, 0x25, 0x77, 0x47, 0x73, 0x1f, 0x6b, 0xb4, 0xf5, 0x5b, 0x68, 0xbf, 0x18, 0xc5, 0x94, + 0xf3, 0x31, 0x09, 0x87, 0xbb, 0x2e, 0x77, 0x45, 0xf6, 0x88, 0x70, 0x4c, 0xa8, 0xcf, 0xb4, 0xb5, + 0x06, 0x44, 0x1f, 0x40, 0x97, 0x2b, 0x5e, 0xec, 0x3b, 0x86, 0xa7, 0x2c, 0x79, 0x96, 0x53, 0xc2, + 0x40, 0x33, 0xff, 0x08, 0xda, 0x19, 0xb3, 0xc8, 0x3f, 0xda, 0xde, 0x56, 0x8a, 0x7d, 0x41, 0x02, + 0x6c, 0x9d, 0xcb, 0x58, 0xc9, 0x4d, 0x46, 0x1f, 0x40, 0x3d, 0x8b, 0x43, 0x49, 0x9e, 0x90, 0xb6, + 0x3a, 0x21, 0x26, 0x9c, 0xf6, 0x52, 0x1a, 0x94, 0xc7, 0xd0, 0xe1, 0xa9, 0xe1, 0x8e, 0xef, 0x72, + 0xb7, 0x78, 0xa8, 0x8a, 0x5e, 0xd9, 0x6d, 0x5e, 0x80, 0xad, 0x47, 0x50, 0x1f, 0x10, 0x9f, 0x29, + 0xc5, 0x3d, 0x58, 0xf4, 0x92, 0x38, 0xc6, 0x21, 0x37, 0x2e, 0x6b, 0x10, 0xad, 0xc2, 0xc2, 0x98, + 0x04, 0x84, 0x6b, 0x37, 0x15, 0x60, 0x51, 0x80, 0x67, 0x38, 0xa0, 0xf1, 0x44, 0x06, 0x6c, 0x15, + 0x16, 0xf2, 0x9b, 0xab, 0x00, 0x74, 0x0f, 0xea, 0x81, 0x7b, 0x99, 0x6e, 0xaa, 0xa0, 0x2c, 0x05, + 0xee, 0xa5, 0x32, 0xbe, 0x07, 0x8b, 0xa7, 0x2e, 0x19, 0x7b, 0x21, 0xd7, 0x51, 0x31, 0x60, 0xa6, + 0xb0, 0x9a, 0x57, 0xf8, 0xb7, 0x32, 0x34, 0x94, 0x46, 0x65, 0xf0, 0x2a, 0x2c, 0x78, 0xae, 0x37, + 0x4a, 0x55, 0x4a, 0x00, 0xdd, 0x37, 0x86, 0x94, 0xf3, 0x49, 0x38, 0xb3, 0xd4, 0x98, 0xf6, 0x00, + 0x80, 0x5d, 0xb8, 0x91, 0xb6, 0xad, 0x72, 0x05, 0x73, 0x5d, 0xf0, 0x28, 0x73, 0x3f, 0x86, 0xa6, + 0x3a, 0x77, 0x7a, 0x49, 0xf5, 0x8a, 0x25, 0x0d, 0xc5, 0xa5, 0x16, 0xbd, 0x03, 0xad, 0x84, 0x61, + 0x67, 0x44, 0x70, 0xec, 0xc6, 0xde, 0x68, 0xd2, 0x5b, 0x50, 0x6f, 0x64, 0xc2, 0xf0, 0x81, 0xc1, + 0xa1, 0x2d, 0x58, 0x10, 0xe9, 0x8f, 0xf5, 0x6a, 0xf2, 0x39, 0x7e, 0x33, 0x2f, 0x52, 0xba, 0xba, + 0x29, 0x7f, 0xf7, 0x42, 0x1e, 0x4f, 0x6c, 0xc5, 0xda, 0xff, 0x0c, 0x20, 0x43, 0xa2, 0x65, 0xa8, + 0x9c, 0xe1, 0x89, 0xbe, 0x87, 0xe2, 0x53, 0x04, 0xe7, 0xdc, 0x1d, 0x27, 0x26, 0xea, 0x0a, 0x78, + 0x58, 0xfe, 0xac, 0x64, 0x79, 0xd0, 0xd9, 0x1e, 0x9f, 0x11, 0x9a, 0x5b, 0xbe, 0x0a, 0x0b, 0x81, + 0xfb, 0x25, 0x8d, 0x4d, 0x24, 0x25, 0x20, 0xb1, 0x24, 0xa4, 0xb1, 0x11, 0x21, 0x01, 0xd4, 0x86, + 0x32, 0x8d, 0x64, 0xbc, 0xea, 0x76, 0x99, 0x46, 0x99, 0xa2, 0x6a, 0x4e, 0x91, 0xf5, 0xcf, 0x2a, + 0x40, 0xa6, 0x05, 0xd9, 0xd0, 0x27, 0xd4, 0x61, 0x38, 0x16, 0x25, 0x88, 0x73, 0x32, 0xe1, 0x98, + 0x39, 0x31, 0xf6, 0x92, 0x98, 0x91, 0x73, 0xb1, 0x7f, 0xc2, 0xed, 0x3b, 0xca, 0xed, 0x29, 0xdb, + 0xec, 0xbb, 0x84, 0x1e, 0xa9, 0x75, 0xdb, 0x62, 0x99, 0x6d, 0x56, 0xa1, 0x43, 0xb8, 0x93, 0xc9, + 0xf4, 0x73, 0xe2, 0xca, 0xd7, 0x89, 0x5b, 0x49, 0xc5, 0xf9, 0x99, 0xa8, 0x3d, 0x58, 0x21, 0xd4, + 0xf9, 0x2a, 0xc1, 0x49, 0x41, 0x50, 0xe5, 0x3a, 0x41, 0x5d, 0x42, 0x7f, 0x29, 0x17, 0x64, 0x62, + 0x06, 0xf0, 0x46, 0xce, 0x4b, 0x71, 0xdd, 0x73, 0xc2, 0xaa, 0xd7, 0x09, 0x5b, 0x4b, 0xad, 0x12, + 0xf9, 0x20, 0x93, 0xf8, 0x73, 0x58, 0x23, 0xd4, 0xb9, 0x70, 0x09, 0x9f, 0x16, 0xb7, 0xf0, 0x1a, + 0x27, 0xc5, 0xa3, 0x5b, 0x94, 0xa5, 0x9c, 0x0c, 0x70, 0x3c, 0x2c, 0x38, 0x59, 0x7b, 0x8d, 0x93, + 0xcf, 0xe4, 0x82, 0x4c, 0xcc, 0x53, 0xe8, 0x12, 0x3a, 0x6d, 0xcd, 0xe2, 0x75, 0x42, 0x3a, 0x84, + 0x16, 0x2d, 0xd9, 0x86, 0x2e, 0xc3, 0x1e, 0xa7, 0x71, 0xfe, 0x10, 0x2c, 0x5d, 0x27, 0x62, 0x59, + 0xf3, 0xa7, 0x32, 0xac, 0x5f, 0x43, 0xf3, 0x20, 0x19, 0x62, 0x3e, 0x3e, 0x49, 0x93, 0xc1, 0xad, + 0xe5, 0x1f, 0xeb, 0xdf, 0x65, 0x68, 0xec, 0x0c, 0x63, 0x9a, 0x44, 0x85, 0x9c, 0xac, 0x2e, 0xe9, + 0x74, 0x4e, 0x96, 0x2c, 0x32, 0x27, 0x2b, 0xe6, 0x4f, 0xa0, 0x19, 0xc8, 0xab, 0xab, 0xf9, 0x55, + 0x1e, 0xea, 0xce, 0x5c, 0x6a, 0xbb, 0x11, 0xe4, 0x92, 0xd9, 0x26, 0x40, 0x44, 0x7c, 0xa6, 0xd7, + 0xa8, 0x74, 0xd4, 0xd1, 0x15, 0xa1, 0x49, 0xd1, 0x76, 0x3d, 0x4a, 0xb3, 0xf5, 0x47, 0xd0, 0x38, + 0x11, 0x41, 0xd2, 0x0b, 0x0a, 0xc9, 0x28, 0x8b, 0x9e, 0x0d, 0x27, 0xd9, 0x25, 0x3c, 0x80, 0xd6, + 0x48, 0x85, 0x4c, 0x2f, 0x52, 0x67, 0xe8, 0x1d, 0xed, 0x49, 0xe6, 0xef, 0x66, 0x3e, 0xb2, 0x6a, + 0x03, 0x9a, 0xa3, 0x1c, 0xaa, 0x7f, 0x04, 0xdd, 0x19, 0x96, 0x39, 0x39, 0x68, 0x23, 0x9f, 0x83, + 0x1a, 0x5b, 0x48, 0x29, 0xca, 0xaf, 0xcc, 0xe7, 0xa5, 0x5f, 0xc0, 0xda, 0x74, 0x99, 0xa3, 0x8b, + 0xb2, 0x4f, 0xa0, 0xe9, 0x49, 0xeb, 0x0a, 0x3b, 0xd0, 0x9d, 0xb1, 0xdb, 0x6e, 0x78, 0x19, 0x60, + 0xf9, 0x80, 0x5e, 0xc6, 0x84, 0xe3, 0x23, 0x1e, 0x63, 0x37, 0xb8, 0x8d, 0xaa, 0x19, 0x41, 0x55, + 0x3e, 0xb1, 0x15, 0x59, 0x14, 0xca, 0x6f, 0xeb, 0x5d, 0x58, 0x29, 0x68, 0xd1, 0x26, 0x2f, 0x43, + 0x65, 0x8c, 0x43, 0x29, 0xbd, 0x65, 0x8b, 0x4f, 0xcb, 0x85, 0xae, 0x8d, 0x5d, 0xff, 0xf6, 0xac, + 0xd1, 0x2a, 0x2a, 0x99, 0x8a, 0x0d, 0x40, 0x79, 0x15, 0xda, 0x14, 0x63, 0x75, 0x29, 0x67, 0xf5, + 0x73, 0xe8, 0xee, 0x8c, 0x29, 0xc3, 0x47, 0xdc, 0x27, 0xe1, 0x6d, 0x94, 0xf9, 0xdf, 0xc0, 0xca, + 0x0b, 0x3e, 0x79, 0x29, 0x84, 0x31, 0xf2, 0x35, 0xbe, 0x25, 0xff, 0x62, 0x7a, 0x61, 0xfc, 0x8b, + 0xe9, 0x85, 0xa8, 0xf0, 0x3d, 0x3a, 0x4e, 0x82, 0x50, 0x1e, 0xf7, 0x96, 0xad, 0x21, 0xeb, 0x1f, + 0x25, 0x58, 0x55, 0x3d, 0xf8, 0x91, 0x6a, 0x3d, 0x8d, 0xfa, 0x3e, 0x2c, 0x8d, 0x28, 0xe3, 0xa1, + 0x1b, 0x60, 0xad, 0x3a, 0x85, 0x85, 0x78, 0xd1, 0xb3, 0x96, 0x65, 0x57, 0x20, 0x3e, 0x0b, 0x8d, + 0x71, 0xe5, 0xfa, 0xc6, 0x78, 0xa6, 0xf5, 0xad, 0xce, 0xb6, 0xbe, 0xe8, 0xfb, 0x00, 0x86, 0x89, + 0xf8, 0xf2, 0xe1, 0xaf, 0xdb, 0x75, 0x8d, 0x39, 0xf4, 0xd1, 0x7d, 0xe8, 0x0c, 0x85, 0x95, 0xce, + 0x88, 0xd2, 0x33, 0x27, 0x72, 0xf9, 0x48, 0x36, 0xda, 0x75, 0xbb, 0x25, 0xd1, 0x07, 0x94, 0x9e, + 0x0d, 0x5c, 0x3e, 0xb2, 0xee, 0xc2, 0x9d, 0x5d, 0xcc, 0x78, 0x4c, 0x27, 0x45, 0xef, 0x2c, 0x17, + 0xea, 0x87, 0x83, 0xa7, 0xbe, 0x1f, 0x63, 0xc6, 0xd0, 0x7d, 0xa8, 0x9d, 0xba, 0x01, 0x19, 0xab, + 0x0b, 0xd8, 0x36, 0xf9, 0xe9, 0x70, 0xf0, 0x33, 0x89, 0xb5, 0x35, 0x55, 0x24, 0x3d, 0x57, 0x2d, + 0xd1, 0xe1, 0x36, 0xa0, 0x38, 0x27, 0x81, 0xcb, 0xce, 0xf4, 0xd3, 0x2e, 0xbf, 0xad, 0x3f, 0x97, + 0xa0, 0x7e, 0x18, 0x72, 0x1c, 0x9f, 0xba, 0x9e, 0x6c, 0xda, 0xd4, 0x10, 0x41, 0x07, 0x53, 0x43, + 0x62, 0xa5, 0x0c, 0xb1, 0x12, 0x28, 0xbf, 0x45, 0x7e, 0x4a, 0x8d, 0x4b, 0xe3, 0xd9, 0x31, 0x46, + 0x69, 0x82, 0x9d, 0xe7, 0x11, 0x3b, 0x12, 0xf0, 0x44, 0xd7, 0x11, 0xe2, 0x53, 0x28, 0x1c, 0x5d, + 0x08, 0x06, 0x1d, 0x3d, 0x0d, 0xc9, 0xea, 0xdc, 0x23, 0x92, 0xa0, 0x42, 0x66, 0x40, 0xeb, 0x31, + 0x40, 0x6a, 0x2f, 0x13, 0x35, 0x5e, 0x06, 0xe9, 0x32, 0xc3, 0xd8, 0x60, 0xf0, 0x76, 0x8e, 0xc5, + 0xfa, 0x06, 0x16, 0x6c, 0x9a, 0x70, 0x75, 0x69, 0xb0, 0xee, 0xff, 0xea, 0xb6, 0xfc, 0x16, 0x5a, + 0x87, 0x2e, 0xc7, 0x17, 0xee, 0xc4, 0x84, 0x4e, 0x83, 0xb9, 0xc0, 0x54, 0x0a, 0x81, 0x11, 0x5d, + 0xae, 0x6c, 0xe2, 0xa4, 0x53, 0x75, 0x5b, 0x43, 0xe2, 0xb1, 0x62, 0x1e, 0x8d, 0xb0, 0x74, 0xab, + 0x65, 0x2b, 0xc0, 0xfa, 0x10, 0x6a, 0x52, 0xb9, 0x38, 0x5e, 0xfa, 0x4b, 0xdb, 0xdc, 0x50, 0x36, + 0x4b, 0x9c, 0xad, 0x49, 0xd6, 0xbe, 0xe9, 0x43, 0x33, 0x57, 0xf4, 0xb1, 0xff, 0x10, 0xea, 0xc4, + 0xe0, 0x74, 0xb2, 0x9c, 0xf1, 0x3a, 0xe3, 0xb0, 0x76, 0x61, 0xe5, 0xa9, 0xef, 0x7f, 0x57, 0x29, + 0xfb, 0x66, 0x58, 0xf3, 0x5d, 0x05, 0x3d, 0x82, 0x15, 0xe5, 0x97, 0xf2, 0xd3, 0x48, 0xf9, 0x21, + 0xd4, 0x62, 0x13, 0x93, 0x52, 0x36, 0xdd, 0xd2, 0x4c, 0x9a, 0x26, 0x2e, 0x8b, 0x68, 0xd2, 0xb3, + 0x2d, 0x35, 0x97, 0x65, 0x05, 0xba, 0x82, 0x50, 0x90, 0x69, 0xfd, 0x06, 0x56, 0x9e, 0x87, 0x63, + 0x12, 0xe2, 0x9d, 0xc1, 0xf1, 0x33, 0x9c, 0x66, 0x65, 0x04, 0x55, 0x51, 0x72, 0x49, 0x45, 0x4b, + 0xb6, 0xfc, 0x16, 0x69, 0x2a, 0x3c, 0x71, 0xbc, 0x28, 0x61, 0x7a, 0x9c, 0x54, 0x0b, 0x4f, 0x76, + 0xa2, 0x84, 0xa1, 0x37, 0x40, 0x3c, 0xfd, 0x0e, 0x0d, 0xc7, 0x13, 0xb9, 0xfb, 0x4b, 0xf6, 0xa2, + 0x17, 0x25, 0xcf, 0xc3, 0xf1, 0xc4, 0xfa, 0xb1, 0x6c, 0xa0, 0x31, 0xf6, 0x6d, 0x37, 0xf4, 0x69, + 0xb0, 0x8b, 0xcf, 0x73, 0x1a, 0xd2, 0x66, 0xcd, 0xe4, 0xe4, 0x6f, 0x4b, 0xd0, 0x7c, 0x3a, 0xc4, + 0x21, 0xdf, 0xc5, 0xdc, 0x25, 0x63, 0xd9, 0x90, 0x9d, 0xe3, 0x98, 0x11, 0x1a, 0xea, 0x63, 0x68, + 0x40, 0xd1, 0x4f, 0x93, 0x90, 0x70, 0xc7, 0x77, 0x71, 0x40, 0x43, 0x29, 0x65, 0xc9, 0x06, 0x81, + 0xda, 0x95, 0x18, 0xf4, 0x2e, 0x74, 0xd4, 0x11, 0x74, 0x46, 0x6e, 0xe8, 0x8f, 0x71, 0x6c, 0xc6, + 0x1f, 0x6d, 0x85, 0x3e, 0xd0, 0x58, 0xf4, 0x1e, 0x2c, 0xeb, 0xa4, 0x96, 0x71, 0x56, 0x25, 0x67, + 0x47, 0xe3, 0x0b, 0xac, 0x49, 0x14, 0xd1, 0x98, 0x33, 0x87, 0x61, 0xcf, 0xa3, 0x41, 0xa4, 0xbb, + 0x99, 0x8e, 0xc1, 0x1f, 0x29, 0xb4, 0xd8, 0xc2, 0x7d, 0xe1, 0xa7, 0xf6, 0x24, 0xdb, 0xc2, 0x76, + 0x80, 0x03, 0xe7, 0x64, 0x4c, 0xbd, 0x33, 0x47, 0x3c, 0x13, 0x3a, 0xc2, 0xa2, 0x5e, 0xda, 0x16, + 0xc8, 0x23, 0xf2, 0x35, 0xb6, 0x7e, 0x57, 0x82, 0xd5, 0xe2, 0x6a, 0xfd, 0x90, 0x3d, 0x80, 0xd5, + 0xe2, 0x72, 0xd5, 0x48, 0xe8, 0x8a, 0xaf, 0x9b, 0x17, 0x22, 0x5b, 0x05, 0xf4, 0x29, 0xb4, 0xe4, + 0x60, 0xd7, 0xf1, 0x95, 0xa4, 0x62, 0x1d, 0x92, 0x8f, 0xb5, 0xdd, 0x74, 0x73, 0x90, 0xf5, 0x97, + 0x12, 0x2c, 0xea, 0xa4, 0x2f, 0xef, 0x76, 0x4c, 0xce, 0x71, 0x9c, 0x26, 0x3d, 0x09, 0x89, 0xd6, + 0x5e, 0x7d, 0x39, 0x34, 0xe2, 0x84, 0xa6, 0x4f, 0x49, 0x4b, 0x61, 0x9f, 0x2b, 0x64, 0x2e, 0x05, + 0x54, 0x0a, 0x29, 0x60, 0x0d, 0x6a, 0xa7, 0x8c, 0x4f, 0xa2, 0x34, 0x35, 0x28, 0x48, 0x6c, 0xba, + 0x91, 0xb7, 0x20, 0xe5, 0x19, 0x50, 0x6c, 0x7a, 0x40, 0x93, 0x90, 0x3b, 0x11, 0x25, 0x21, 0xd7, + 0x89, 0x0f, 0x24, 0x6a, 0x20, 0x30, 0xd6, 0xef, 0x4b, 0x50, 0x53, 0xc3, 0x5e, 0xd1, 0xa4, 0xa5, + 0xaf, 0x6d, 0x99, 0xc8, 0xca, 0x45, 0xea, 0xd2, 0x19, 0x5a, 0x6a, 0xba, 0x0b, 0x8b, 0xe7, 0x81, + 0x7a, 0x77, 0xb4, 0x69, 0xe7, 0x81, 0x78, 0x70, 0x84, 0x67, 0xd9, 0xa3, 0x2d, 0xe9, 0xca, 0xc4, + 0x56, 0x8a, 0x95, 0x6c, 0x57, 0x5a, 0x6a, 0xfd, 0x4a, 0xf4, 0xa6, 0xe9, 0xa0, 0x73, 0x19, 0x2a, + 0x49, 0x6a, 0x8c, 0xf8, 0x14, 0x98, 0x61, 0xfa, 0xdc, 0x8b, 0x4f, 0x74, 0x1f, 0xda, 0xae, 0xef, + 0x13, 0xb1, 0xdc, 0x1d, 0xef, 0x13, 0x3f, 0x3d, 0xae, 0x45, 0xec, 0xfb, 0x7d, 0x58, 0x32, 0x2f, + 0x1a, 0xaa, 0x41, 0xf9, 0xfc, 0x93, 0xe5, 0xef, 0xc9, 0xff, 0x9f, 0x2c, 0x97, 0xb6, 0xfe, 0xda, + 0xd6, 0xf7, 0x47, 0x77, 0x52, 0x68, 0x1f, 0x3a, 0x53, 0x93, 0x79, 0xa4, 0x5b, 0xeb, 0xf9, 0x03, + 0xfb, 0xfe, 0xda, 0xa6, 0x9a, 0xf4, 0x6f, 0x9a, 0x49, 0xff, 0xe6, 0x5e, 0x10, 0xf1, 0x09, 0xda, + 0x83, 0x76, 0x71, 0x86, 0x8d, 0xee, 0x99, 0xc2, 0x60, 0xce, 0x64, 0xfb, 0x4a, 0x31, 0xfb, 0xd0, + 0x99, 0x1a, 0x67, 0x1b, 0x7b, 0xe6, 0x4f, 0xb9, 0xaf, 0x14, 0xf4, 0x04, 0x1a, 0xb9, 0xf9, 0x35, + 0xea, 0x29, 0x21, 0xb3, 0x23, 0xed, 0x2b, 0x05, 0xec, 0x40, 0xab, 0x30, 0x52, 0x46, 0x7d, 0xed, + 0xcf, 0x9c, 0x39, 0xf3, 0x95, 0x42, 0xb6, 0xa1, 0x91, 0x9b, 0xec, 0x1a, 0x2b, 0x66, 0xc7, 0xc7, + 0xfd, 0x37, 0xe6, 0x50, 0xf4, 0x95, 0x3e, 0x80, 0x56, 0x61, 0x0e, 0x6b, 0x0c, 0x99, 0x37, 0x03, + 0xee, 0xdf, 0x9b, 0x4b, 0xd3, 0x92, 0xf6, 0xa1, 0x33, 0x35, 0x95, 0x35, 0xc1, 0x9d, 0x3f, 0xac, + 0xbd, 0xd2, 0xad, 0xcf, 0xe5, 0x66, 0xe7, 0xda, 0x90, 0xdc, 0x66, 0xcf, 0xce, 0x60, 0xfb, 0x6f, + 0xce, 0x27, 0x6a, 0xab, 0xf6, 0xa0, 0x5d, 0x1c, 0xbf, 0x1a, 0x61, 0x73, 0x87, 0xb2, 0xd7, 0x9f, + 0x9c, 0xc2, 0x24, 0x36, 0x3b, 0x39, 0xf3, 0x06, 0xb4, 0x57, 0x0a, 0x7a, 0x0a, 0xa0, 0xbb, 0x15, + 0x9f, 0x84, 0xe9, 0x96, 0xcd, 0x74, 0x49, 0xe9, 0x96, 0xcd, 0xe9, 0x6c, 0x9e, 0x00, 0xa8, 0x26, + 0xc3, 0xa7, 0x09, 0x47, 0x77, 0x8d, 0x19, 0x53, 0x9d, 0x4d, 0xbf, 0x37, 0x4b, 0x98, 0x11, 0x80, + 0xe3, 0xf8, 0x26, 0x02, 0x1e, 0x03, 0x64, 0xcd, 0x8b, 0x11, 0x30, 0xd3, 0xce, 0x5c, 0x13, 0x83, + 0x66, 0xbe, 0x55, 0x41, 0xda, 0xd7, 0x39, 0xed, 0xcb, 0x95, 0x22, 0x1e, 0x42, 0x33, 0x5f, 0x31, + 0x19, 0x11, 0x73, 0xaa, 0xa8, 0xfe, 0x74, 0xa5, 0x83, 0x7e, 0x6a, 0x0e, 0x6a, 0x86, 0x2a, 0x1c, + 0xd4, 0xff, 0x4a, 0xc2, 0x54, 0xa5, 0x55, 0xcc, 0x23, 0xaf, 0x97, 0xf0, 0x29, 0x34, 0xf3, 0x25, + 0x96, 0xb1, 0x7f, 0x4e, 0xd9, 0xd5, 0x2f, 0x94, 0x59, 0xe8, 0x09, 0xb4, 0x8b, 0xe5, 0x15, 0xca, + 0x5d, 0xca, 0x99, 0xa2, 0xab, 0xbf, 0x3c, 0xa5, 0x98, 0xa1, 0x8f, 0x01, 0xb2, 0x32, 0xcc, 0xec, + 0xdd, 0x4c, 0x61, 0x36, 0xa5, 0x75, 0x07, 0x5a, 0x85, 0xf6, 0xce, 0x64, 0x89, 0x79, 0x3d, 0xdf, + 0x75, 0x49, 0xbc, 0xd8, 0x46, 0x19, 0xd3, 0xe7, 0x36, 0x57, 0xd7, 0x9d, 0x9e, 0x7c, 0xc9, 0x68, + 0x42, 0x37, 0xa7, 0x8c, 0x7c, 0xcd, 0x6d, 0xce, 0x97, 0x85, 0xb9, 0xdb, 0x3c, 0xa7, 0x5a, 0xbc, + 0x52, 0xd0, 0x01, 0x74, 0xf6, 0x31, 0xcf, 0xd7, 0x4a, 0xc6, 0x9c, 0x39, 0xd5, 0x57, 0xbf, 0x3f, + 0x8f, 0xa4, 0xae, 0xd4, 0x76, 0xf3, 0xdb, 0x57, 0x6f, 0x95, 0xfe, 0xfe, 0xea, 0xad, 0xd2, 0xbf, + 0x5e, 0xbd, 0x55, 0x3a, 0xa9, 0x49, 0x3d, 0x1f, 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0x3d, 0xd4, + 0x0e, 0x85, 0x17, 0x1f, 0x00, 0x00, } diff --git a/protocols/grpc/agent.proto b/protocols/grpc/agent.proto index eca60e18b2..828f02c758 100644 --- a/protocols/grpc/agent.proto +++ b/protocols/grpc/agent.proto @@ -266,6 +266,9 @@ message CreateSandboxRequest { // one sandbox per agent and implicitly require that CreateSandbox is // called before other sandbox/network calls. string sandbox_id = 5; + // This field, if non-empty, designates an absolute path to a directory + // that the agent will search for OCI hooks to run within the guest. + string guest_hook_path = 6; } message DestroySandboxRequest {