From a396a23b588f9f4cd612091a6184aacf04052581 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Wed, 26 Sep 2018 12:07:39 +0100 Subject: [PATCH] grpc: Add seccomp status to guest details Add a boolean showing whether seccomp support is available to the `AgentDetails` message returned by `GetGuestDetails()`. If set, it indicates that full seccomp support [*] is available. Fixes #381. [*] - Both the agent and the environment it is running in support seccomp. Signed-off-by: James O. D. Hunt --- Makefile | 3 +- agent.go | 3 + grpc.go | 14 +- grpc_test.go | 36 +++- protocols/grpc/agent.pb.go | 364 +++++++++++++++++++++---------------- protocols/grpc/agent.proto | 4 + 6 files changed, 258 insertions(+), 166 deletions(-) diff --git a/Makefile b/Makefile index 393838d045..bfe9bfb5a8 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,8 @@ AGENT_IMAGE := katacontainers/agent-dev AGENT_TAG := $(if $(COMMIT_NO_SHORT),$(COMMIT_NO_SHORT),dev) $(TARGET): $(GENERATED_FILES) $(SOURCES) $(VERSION_FILE) - go build -tags "$(BUILDTAGS)" -o $@ -ldflags "-X main.version=$(VERSION_COMMIT)" + go build -tags "$(BUILDTAGS)" -o $@ \ + -ldflags "-X main.version=$(VERSION_COMMIT) -X main.seccompSupport=$(SECCOMP)" install: install -D $(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET) diff --git a/agent.go b/agent.go index d05364c6a1..d10fefb9b2 100644 --- a/agent.go +++ b/agent.go @@ -49,6 +49,9 @@ var ( cgroupMemoryPath = cgroupPath + "/memory" cgroupMemoryUseHierarchyPath = cgroupMemoryPath + "/memory.use_hierarchy" cgroupMemoryUseHierarchyMode = os.FileMode(0400) + + // Set by the build + seccompSupport string ) var initRootfsMounts = []initMount{ diff --git a/grpc.go b/grpc.go index d646bf5954..2924bada2b 100644 --- a/grpc.go +++ b/grpc.go @@ -24,6 +24,7 @@ import ( pb "github.com/kata-containers/agent/protocols/grpc" "github.com/opencontainers/runc/libcontainer" "github.com/opencontainers/runc/libcontainer/configs" + "github.com/opencontainers/runc/libcontainer/seccomp" "github.com/opencontainers/runc/libcontainer/specconv" "github.com/opencontainers/runc/libcontainer/utils" "github.com/opencontainers/runtime-spec/specs-go" @@ -1334,10 +1335,19 @@ func (a *agentGRPC) GetGuestDetails(ctx context.Context, req *pb.GuestDetailsReq return &details, nil } +func (a *agentGRPC) haveSeccomp() bool { + if seccompSupport == "yes" && seccomp.IsEnabled() { + return true + } + + return false +} + func (a *agentGRPC) getAgentDetails(ctx context.Context) *pb.AgentDetails { details := pb.AgentDetails{ - Version: version, - InitDaemon: os.Getpid() == 1, + Version: version, + InitDaemon: os.Getpid() == 1, + SupportsSeccomp: a.haveSeccomp(), } for handler := range deviceHandlerList { diff --git a/grpc_test.go b/grpc_test.go index 0dc885949b..f3bb5edba8 100644 --- a/grpc_test.go +++ b/grpc_test.go @@ -23,6 +23,7 @@ import ( pb "github.com/kata-containers/agent/protocols/grpc" "github.com/opencontainers/runc/libcontainer" "github.com/opencontainers/runc/libcontainer/configs" + "github.com/opencontainers/runc/libcontainer/seccomp" "github.com/opencontainers/runtime-spec/specs-go" "github.com/stretchr/testify/assert" ) @@ -624,7 +625,7 @@ func TestMultiWaitProcess(t *testing.T) { wg.Wait() } -func testAgentDetails(assert *assert.Assertions, details *pb.AgentDetails) { +func testAgentDetails(assert *assert.Assertions, details *pb.AgentDetails, haveSeccomp bool) { assert.NotNil(details) assert.Equal(details.Version, version) @@ -649,6 +650,8 @@ func testAgentDetails(assert *assert.Assertions, details *pb.AgentDetails) { assert.Equal(details.DeviceHandlers, devices) assert.Equal(details.StorageHandlers, storages) + + assert.Equal(details.SupportsSeccomp, haveSeccomp) } func TestGetGuestDetails(t *testing.T) { @@ -673,7 +676,9 @@ func TestGetGuestDetails(t *testing.T) { assert.NoError(err) assert.Equal(resp.MemBlockSizeBytes, size) - testAgentDetails(assert, resp.AgentDetails) + + seccompSupport := a.haveSeccomp() + testAgentDetails(assert, resp.AgentDetails, seccompSupport) } func TestGetAgentDetails(t *testing.T) { @@ -687,5 +692,30 @@ func TestGetAgentDetails(t *testing.T) { details := a.getAgentDetails(context.TODO()) - testAgentDetails(assert, details) + seccompSupport := a.haveSeccomp() + testAgentDetails(assert, details, seccompSupport) +} + +func TestHaveSeccomp(t *testing.T) { + assert := assert.New(t) + + a := &agentGRPC{ + sandbox: &sandbox{ + containers: make(map[string]*container), + }, + } + + savedSeccompSupport := seccompSupport + + defer func() { + seccompSupport = savedSeccompSupport + }() + + for _, seccompSupport := range []string{"yes", "no"} { + if seccompSupport == "yes" { + assert.Equal(a.haveSeccomp(), seccomp.IsEnabled()) + } else { + assert.Equal(a.haveSeccomp(), false) + } + } } diff --git a/protocols/grpc/agent.pb.go b/protocols/grpc/agent.pb.go index 0091169497..58c0a680f7 100644 --- a/protocols/grpc/agent.pb.go +++ b/protocols/grpc/agent.pb.go @@ -1453,6 +1453,9 @@ type AgentDetails struct { DeviceHandlers []string `protobuf:"bytes,3,rep,name=device_handlers,json=deviceHandlers" json:"device_handlers,omitempty"` // List of available storage handlers. StorageHandlers []string `protobuf:"bytes,4,rep,name=storage_handlers,json=storageHandlers" json:"storage_handlers,omitempty"` + // Set only if the agent is built with seccomp support and the guest + // environment supports seccomp. + SupportsSeccomp bool `protobuf:"varint,5,opt,name=supports_seccomp,json=supportsSeccomp,proto3" json:"supports_seccomp,omitempty"` } func (m *AgentDetails) Reset() { *m = AgentDetails{} } @@ -1488,6 +1491,13 @@ func (m *AgentDetails) GetStorageHandlers() []string { return nil } +func (m *AgentDetails) GetSupportsSeccomp() bool { + if m != nil { + return m.SupportsSeccomp + } + return false +} + type GuestDetailsRequest struct { // MemBlockSize asks server to return the system memory block size that can be used // for memory hotplug alignment. Typically the server returns what's in @@ -4488,6 +4498,16 @@ func (m *AgentDetails) MarshalTo(dAtA []byte) (int, error) { i += copy(dAtA[i:], s) } } + if m.SupportsSeccomp { + dAtA[i] = 0x28 + i++ + if m.SupportsSeccomp { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } return i, nil } @@ -5496,6 +5516,9 @@ func (m *AgentDetails) Size() (n int) { n += 1 + l + sovAgent(uint64(l)) } } + if m.SupportsSeccomp { + n += 2 + } return n } @@ -11280,6 +11303,26 @@ func (m *AgentDetails) Unmarshal(dAtA []byte) error { } m.StorageHandlers = append(m.StorageHandlers, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SupportsSeccomp", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.SupportsSeccomp = bool(v != 0) default: iNdEx = preIndex skippy, err := skipAgent(dAtA[iNdEx:]) @@ -12137,164 +12180,165 @@ var ( func init() { proto.RegisterFile("agent.proto", fileDescriptorAgent) } var fileDescriptorAgent = []byte{ - // 2543 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xdb, 0x6e, 0x1c, 0xc7, - 0xd1, 0xfe, 0xf7, 0xc0, 0x25, 0xb7, 0xf6, 0xc4, 0x6d, 0x52, 0xd4, 0x7a, 0xa5, 0x5f, 0xa1, 0x47, - 0x89, 0x44, 0xdb, 0x11, 0x05, 0x53, 0x42, 0x6c, 0x48, 0x10, 0x14, 0xf1, 0x10, 0x92, 0xb1, 0x15, - 0x6d, 0x86, 0x22, 0x14, 0x20, 0x08, 0x06, 0xc3, 0x99, 0xe6, 0xb2, 0xad, 0x9d, 0xe9, 0xf1, 0x74, - 0x0f, 0xc9, 0xb5, 0x81, 0x20, 0x57, 0x79, 0x0b, 0xbf, 0x40, 0x10, 0xe4, 0x26, 0x57, 0xb9, 0xcf, - 0x45, 0x2e, 0xf3, 0x04, 0x41, 0xa0, 0x47, 0xc8, 0x13, 0x04, 0x7d, 0x9a, 0xc3, 0xee, 0x92, 0x4a, - 0x68, 0x02, 0xb9, 0xd9, 0xed, 0xaa, 0xae, 0xae, 0xfa, 0xba, 0xba, 0xbb, 0xa6, 0xaa, 0xa0, 0xe1, - 0x0e, 0x71, 0xc8, 0xd7, 0xa3, 0x98, 0x72, 0x8a, 0xaa, 0xc3, 0x38, 0xf2, 0xfa, 0x75, 0xea, 0x11, - 0xc5, 0xe8, 0xdf, 0x1a, 0x52, 0x3a, 0x1c, 0xe1, 0x87, 0x92, 0x3a, 0x4a, 0x8e, 0x1f, 0xe2, 0x20, - 0xe2, 0x63, 0x35, 0x69, 0x7d, 0x57, 0x86, 0x95, 0xad, 0x18, 0xbb, 0x1c, 0x6f, 0xd1, 0x90, 0xbb, - 0x24, 0xc4, 0xb1, 0x8d, 0xbf, 0x4e, 0x30, 0xe3, 0xe8, 0x43, 0x68, 0x7a, 0x86, 0xe7, 0x10, 0xbf, - 0x57, 0x5a, 0x2d, 0xad, 0xd5, 0xed, 0x46, 0xca, 0xdb, 0xf7, 0xd1, 0x4d, 0x98, 0xc7, 0xe7, 0xd8, - 0x13, 0xb3, 0x65, 0x39, 0x5b, 0x13, 0xe4, 0xbe, 0x8f, 0x3e, 0x85, 0x06, 0xe3, 0x31, 0x09, 0x87, - 0x4e, 0xc2, 0x70, 0xdc, 0xab, 0xac, 0x96, 0xd6, 0x1a, 0x1b, 0x8b, 0xeb, 0x02, 0xda, 0xfa, 0x81, - 0x9c, 0x38, 0x64, 0x38, 0xb6, 0x81, 0xa5, 0x63, 0x74, 0x0f, 0xe6, 0x7d, 0x7c, 0x4a, 0x3c, 0xcc, - 0x7a, 0xd5, 0xd5, 0xca, 0x5a, 0x63, 0xa3, 0xa9, 0xc4, 0xb7, 0x25, 0xd3, 0x36, 0x93, 0xe8, 0x23, - 0x58, 0x60, 0x9c, 0xc6, 0xee, 0x10, 0xb3, 0xde, 0x9c, 0x14, 0x6c, 0x19, 0xbd, 0x92, 0x6b, 0xa7, - 0xd3, 0xe8, 0x36, 0x54, 0x5e, 0x6d, 0xed, 0xf7, 0x6a, 0xd2, 0x3a, 0x68, 0xa9, 0x08, 0x7b, 0xb6, - 0x60, 0xa3, 0xbb, 0xd0, 0x62, 0x6e, 0xe8, 0x1f, 0xd1, 0x73, 0x27, 0x22, 0x7e, 0xc8, 0x7a, 0xf3, - 0xab, 0xa5, 0xb5, 0x05, 0xbb, 0xa9, 0x99, 0x03, 0xc1, 0xb3, 0x9e, 0xc0, 0x8d, 0x03, 0xee, 0xc6, - 0xfc, 0x0a, 0xde, 0xb1, 0x0e, 0x61, 0xc5, 0xc6, 0x01, 0x3d, 0xbd, 0x92, 0x6b, 0x7b, 0x30, 0xcf, - 0x49, 0x80, 0x69, 0xc2, 0xa5, 0x6b, 0x5b, 0xb6, 0x21, 0xad, 0x3f, 0x96, 0x00, 0xed, 0x9c, 0x63, - 0x6f, 0x10, 0x53, 0x0f, 0x33, 0xf6, 0x3f, 0x3a, 0xae, 0xfb, 0x30, 0x1f, 0x29, 0x00, 0xbd, 0xaa, - 0x14, 0xd7, 0xa7, 0x60, 0x50, 0x99, 0x59, 0xeb, 0x2b, 0x58, 0x3e, 0x20, 0xc3, 0xd0, 0x1d, 0x5d, - 0x23, 0xde, 0x15, 0xa8, 0x31, 0xa9, 0x53, 0x42, 0x6d, 0xd9, 0x9a, 0xb2, 0x06, 0x80, 0xde, 0xb8, - 0x84, 0x5f, 0x9f, 0x25, 0xeb, 0x01, 0x2c, 0x15, 0x34, 0xb2, 0x88, 0x86, 0x0c, 0x4b, 0x00, 0xdc, - 0xe5, 0x09, 0x93, 0xca, 0xe6, 0x6c, 0x4d, 0x59, 0x18, 0x96, 0xbf, 0x24, 0xcc, 0x88, 0xe3, 0xff, - 0x06, 0xc2, 0x0a, 0xd4, 0x8e, 0x69, 0x1c, 0xb8, 0xdc, 0x20, 0x50, 0x14, 0x42, 0x50, 0x75, 0xe3, - 0x21, 0xeb, 0x55, 0x56, 0x2b, 0x6b, 0x75, 0x5b, 0x8e, 0xc5, 0xad, 0x9c, 0x30, 0xa3, 0x71, 0x7d, - 0x08, 0x4d, 0xed, 0x77, 0x67, 0x44, 0x18, 0x97, 0x76, 0x9a, 0x76, 0x43, 0xf3, 0xc4, 0x1a, 0x8b, - 0xc2, 0xca, 0x61, 0xe4, 0x5f, 0xf1, 0xc1, 0x6f, 0x40, 0x3d, 0xc6, 0x8c, 0x26, 0xb1, 0x78, 0xa6, - 0x65, 0x79, 0xee, 0xcb, 0xea, 0xdc, 0xbf, 0x24, 0x61, 0x72, 0x6e, 0x9b, 0x39, 0x3b, 0x13, 0xd3, - 0x4f, 0x88, 0xb3, 0xab, 0x3c, 0xa1, 0x27, 0x70, 0x63, 0xe0, 0x26, 0xec, 0x2a, 0x58, 0xad, 0xa7, - 0xe2, 0xf9, 0xb1, 0x24, 0xb8, 0xd2, 0xe2, 0x3f, 0x94, 0x60, 0x61, 0x2b, 0x4a, 0x0e, 0x99, 0x3b, - 0xc4, 0xe8, 0x07, 0xd0, 0xe0, 0x94, 0xbb, 0x23, 0x27, 0x11, 0xa4, 0x14, 0xaf, 0xda, 0x20, 0x59, - 0x4a, 0x40, 0xb8, 0x1d, 0xc7, 0x5e, 0x94, 0x68, 0x89, 0xf2, 0x6a, 0x65, 0xad, 0x6a, 0x37, 0x14, - 0x4f, 0x89, 0xac, 0xc3, 0x92, 0x9c, 0x73, 0x48, 0xe8, 0xbc, 0xc5, 0x71, 0x88, 0x47, 0x01, 0xf5, - 0xb1, 0xbc, 0xbf, 0x55, 0xbb, 0x2b, 0xa7, 0xf6, 0xc3, 0x2f, 0xd2, 0x09, 0xf4, 0x31, 0x74, 0x53, - 0x79, 0xf1, 0x28, 0xa5, 0x74, 0x55, 0x4a, 0x77, 0xb4, 0xf4, 0xa1, 0x66, 0x5b, 0xbf, 0x85, 0xf6, - 0xeb, 0x93, 0x98, 0x72, 0x3e, 0x22, 0xe1, 0x70, 0xdb, 0xe5, 0xae, 0x88, 0x1e, 0x11, 0x8e, 0x09, - 0xf5, 0x99, 0x46, 0x6b, 0x48, 0xf4, 0x09, 0x74, 0xb9, 0x92, 0xc5, 0xbe, 0x63, 0x64, 0xca, 0x52, - 0x66, 0x31, 0x9d, 0x18, 0x68, 0xe1, 0x1f, 0x41, 0x3b, 0x13, 0x16, 0xf1, 0x47, 0xe3, 0x6d, 0xa5, - 0xdc, 0xd7, 0x24, 0xc0, 0xd6, 0xa9, 0xf4, 0x95, 0x3c, 0x64, 0xf4, 0x09, 0xd4, 0x33, 0x3f, 0x94, - 0xe4, 0x0d, 0x69, 0xab, 0x1b, 0x62, 0xdc, 0x69, 0x2f, 0xa4, 0x4e, 0x79, 0x06, 0x1d, 0x9e, 0x02, - 0x77, 0x7c, 0x97, 0xbb, 0xc5, 0x4b, 0x55, 0xdc, 0x95, 0xdd, 0xe6, 0x05, 0xda, 0x7a, 0x0a, 0xf5, - 0x01, 0xf1, 0x99, 0x32, 0xdc, 0x83, 0x79, 0x2f, 0x89, 0x63, 0x1c, 0x72, 0xb3, 0x65, 0x4d, 0xa2, - 0x65, 0x98, 0x1b, 0x91, 0x80, 0x70, 0xbd, 0x4d, 0x45, 0x58, 0x14, 0xe0, 0x25, 0x0e, 0x68, 0x3c, - 0x96, 0x0e, 0x5b, 0x86, 0xb9, 0xfc, 0xe1, 0x2a, 0x02, 0xdd, 0x82, 0x7a, 0xe0, 0x9e, 0xa7, 0x87, - 0x2a, 0x66, 0x16, 0x02, 0xf7, 0x5c, 0x81, 0xef, 0xc1, 0xfc, 0xb1, 0x4b, 0x46, 0x5e, 0xc8, 0xb5, - 0x57, 0x0c, 0x99, 0x19, 0xac, 0xe6, 0x0d, 0xfe, 0xb5, 0x0c, 0x0d, 0x65, 0x51, 0x01, 0x5e, 0x86, - 0x39, 0xcf, 0xf5, 0x4e, 0x52, 0x93, 0x92, 0x40, 0xf7, 0x0c, 0x90, 0x72, 0x3e, 0x08, 0x67, 0x48, - 0x0d, 0xb4, 0x87, 0x00, 0xec, 0xcc, 0x8d, 0x34, 0xb6, 0xca, 0x05, 0xc2, 0x75, 0x21, 0xa3, 0xe0, - 0x3e, 0x82, 0xa6, 0xba, 0x77, 0x7a, 0x49, 0xf5, 0x82, 0x25, 0x0d, 0x25, 0xa5, 0x16, 0xdd, 0x85, - 0x56, 0xc2, 0xb0, 0x73, 0x42, 0x70, 0xec, 0xc6, 0xde, 0xc9, 0xb8, 0x37, 0xa7, 0xbe, 0x91, 0x09, - 0xc3, 0x7b, 0x86, 0x87, 0x36, 0x60, 0x4e, 0x84, 0x3f, 0xd6, 0xab, 0xc9, 0xcf, 0xf1, 0xed, 0xbc, - 0x4a, 0xb9, 0xd5, 0x75, 0xf9, 0xbb, 0x13, 0xf2, 0x78, 0x6c, 0x2b, 0xd1, 0xfe, 0xe7, 0x00, 0x19, - 0x13, 0x2d, 0x42, 0xe5, 0x2d, 0x1e, 0xeb, 0x77, 0x28, 0x86, 0xc2, 0x39, 0xa7, 0xee, 0x28, 0x31, - 0x5e, 0x57, 0xc4, 0x93, 0xf2, 0xe7, 0x25, 0xcb, 0x83, 0xce, 0xe6, 0xe8, 0x2d, 0xa1, 0xb9, 0xe5, - 0xcb, 0x30, 0x17, 0xb8, 0x5f, 0xd1, 0xd8, 0x78, 0x52, 0x12, 0x92, 0x4b, 0x42, 0x1a, 0x1b, 0x15, - 0x92, 0x40, 0x6d, 0x28, 0xd3, 0x48, 0xfa, 0xab, 0x6e, 0x97, 0x69, 0x94, 0x19, 0xaa, 0xe6, 0x0c, - 0x59, 0xff, 0xa8, 0x02, 0x64, 0x56, 0x90, 0x0d, 0x7d, 0x42, 0x1d, 0x86, 0x63, 0x91, 0x82, 0x38, - 0x47, 0x63, 0x8e, 0x99, 0x13, 0x63, 0x2f, 0x89, 0x19, 0x39, 0x15, 0xe7, 0x27, 0xb6, 0x7d, 0x43, - 0x6d, 0x7b, 0x02, 0x9b, 0x7d, 0x93, 0xd0, 0x03, 0xb5, 0x6e, 0x53, 0x2c, 0xb3, 0xcd, 0x2a, 0xb4, - 0x0f, 0x37, 0x32, 0x9d, 0x7e, 0x4e, 0x5d, 0xf9, 0x32, 0x75, 0x4b, 0xa9, 0x3a, 0x3f, 0x53, 0xb5, - 0x03, 0x4b, 0x84, 0x3a, 0x5f, 0x27, 0x38, 0x29, 0x28, 0xaa, 0x5c, 0xa6, 0xa8, 0x4b, 0xe8, 0x2f, - 0xe5, 0x82, 0x4c, 0xcd, 0x00, 0x3e, 0xc8, 0xed, 0x52, 0x3c, 0xf7, 0x9c, 0xb2, 0xea, 0x65, 0xca, - 0x56, 0x52, 0x54, 0x22, 0x1e, 0x64, 0x1a, 0x7f, 0x0e, 0x2b, 0x84, 0x3a, 0x67, 0x2e, 0xe1, 0x93, - 0xea, 0xe6, 0xde, 0xb3, 0x49, 0xf1, 0xd1, 0x2d, 0xea, 0x52, 0x9b, 0x0c, 0x70, 0x3c, 0x2c, 0x6c, - 0xb2, 0xf6, 0x9e, 0x4d, 0xbe, 0x94, 0x0b, 0x32, 0x35, 0x2f, 0xa0, 0x4b, 0xe8, 0x24, 0x9a, 0xf9, - 0xcb, 0x94, 0x74, 0x08, 0x2d, 0x22, 0xd9, 0x84, 0x2e, 0xc3, 0x1e, 0xa7, 0x71, 0xfe, 0x12, 0x2c, - 0x5c, 0xa6, 0x62, 0x51, 0xcb, 0xa7, 0x3a, 0xac, 0x5f, 0x43, 0x73, 0x2f, 0x19, 0x62, 0x3e, 0x3a, - 0x4a, 0x83, 0xc1, 0xb5, 0xc5, 0x1f, 0xeb, 0x5f, 0x65, 0x68, 0x6c, 0x0d, 0x63, 0x9a, 0x44, 0x85, - 0x98, 0xac, 0x1e, 0xe9, 0x64, 0x4c, 0x96, 0x22, 0x32, 0x26, 0x2b, 0xe1, 0xc7, 0xd0, 0x0c, 0xe4, - 0xd3, 0xd5, 0xf2, 0x2a, 0x0e, 0x75, 0xa7, 0x1e, 0xb5, 0xdd, 0x08, 0x72, 0xc1, 0x6c, 0x1d, 0x20, - 0x22, 0x3e, 0xd3, 0x6b, 0x54, 0x38, 0xea, 0xe8, 0x8c, 0xd0, 0x84, 0x68, 0xbb, 0x1e, 0xa5, 0xd1, - 0xfa, 0x53, 0x68, 0x1c, 0x09, 0x27, 0xe9, 0x05, 0x85, 0x60, 0x94, 0x79, 0xcf, 0x86, 0xa3, 0xec, - 0x11, 0xee, 0x41, 0xeb, 0x44, 0xb9, 0x4c, 0x2f, 0x52, 0x77, 0xe8, 0xae, 0xde, 0x49, 0xb6, 0xdf, - 0xf5, 0xbc, 0x67, 0xd5, 0x01, 0x34, 0x4f, 0x72, 0xac, 0xfe, 0x01, 0x74, 0xa7, 0x44, 0x66, 0xc4, - 0xa0, 0xb5, 0x7c, 0x0c, 0x6a, 0x6c, 0x20, 0x65, 0x28, 0xbf, 0x32, 0x1f, 0x97, 0x7e, 0x01, 0x2b, - 0x93, 0x69, 0x8e, 0x4e, 0xca, 0x1e, 0x43, 0xd3, 0x93, 0xe8, 0x0a, 0x27, 0xd0, 0x9d, 0xc2, 0x6d, - 0x37, 0xbc, 0x8c, 0xb0, 0x7c, 0x40, 0x6f, 0x62, 0xc2, 0xf1, 0x01, 0x8f, 0xb1, 0x1b, 0x5c, 0x47, - 0xd6, 0x8c, 0xa0, 0x2a, 0x3f, 0xb1, 0x15, 0x99, 0x14, 0xca, 0xb1, 0x75, 0x1f, 0x96, 0x0a, 0x56, - 0x34, 0xe4, 0x45, 0xa8, 0x8c, 0x70, 0x28, 0xb5, 0xb7, 0x6c, 0x31, 0xb4, 0x5c, 0xe8, 0xda, 0xd8, - 0xf5, 0xaf, 0x0f, 0x8d, 0x36, 0x51, 0xc9, 0x4c, 0xac, 0x01, 0xca, 0x9b, 0xd0, 0x50, 0x0c, 0xea, - 0x52, 0x0e, 0xf5, 0x2b, 0xe8, 0x6e, 0x8d, 0x28, 0xc3, 0x07, 0xdc, 0x27, 0xe1, 0x75, 0xa4, 0xf9, - 0xdf, 0xc2, 0xd2, 0x6b, 0x3e, 0x7e, 0x23, 0x94, 0x31, 0xf2, 0x0d, 0xbe, 0xa6, 0xfd, 0xc5, 0xf4, - 0xcc, 0xec, 0x2f, 0xa6, 0x67, 0x22, 0xc3, 0xf7, 0xe8, 0x28, 0x09, 0x42, 0x79, 0xdd, 0x5b, 0xb6, - 0xa6, 0xac, 0x3f, 0x97, 0x60, 0x59, 0xd5, 0xe0, 0x07, 0xaa, 0xf4, 0x34, 0xe6, 0xfb, 0xb0, 0x70, - 0x42, 0x19, 0x0f, 0xdd, 0x00, 0x6b, 0xd3, 0x29, 0x2d, 0xd4, 0x8b, 0x9a, 0xb5, 0x2c, 0xab, 0x02, - 0x31, 0x2c, 0x14, 0xc6, 0x95, 0xcb, 0x0b, 0xe3, 0xa9, 0xd2, 0xb7, 0x3a, 0x5d, 0xfa, 0xa2, 0xff, - 0x07, 0x30, 0x42, 0xc4, 0x97, 0x1f, 0xfe, 0xba, 0x5d, 0xd7, 0x9c, 0x7d, 0xdf, 0xba, 0x09, 0x37, - 0xb6, 0x31, 0xe3, 0x31, 0x1d, 0x17, 0x51, 0x5b, 0x2e, 0xd4, 0xf7, 0x07, 0x2f, 0x7c, 0x3f, 0xc6, - 0x8c, 0xa1, 0x7b, 0x50, 0x3b, 0x76, 0x03, 0x32, 0x52, 0x0f, 0xab, 0x6d, 0xe2, 0xce, 0xfe, 0xe0, - 0x67, 0x92, 0x6b, 0xeb, 0x59, 0x11, 0xcc, 0x5c, 0xb5, 0x44, 0xbb, 0xd1, 0x90, 0xe2, 0xfc, 0x03, - 0x97, 0xbd, 0xd5, 0x9f, 0x6c, 0x39, 0xb6, 0xfe, 0x54, 0x82, 0xfa, 0x7e, 0xc8, 0x71, 0x7c, 0xec, - 0x7a, 0xb2, 0x18, 0x53, 0xcd, 0x01, 0xed, 0x24, 0x4d, 0x89, 0x95, 0xd2, 0x75, 0x4a, 0xa1, 0x1c, - 0x8b, 0xb8, 0x93, 0x82, 0x4b, 0xfd, 0xd4, 0x31, 0xa0, 0xf4, 0x84, 0x9d, 0x97, 0x11, 0x9e, 0x0e, - 0x78, 0xa2, 0xf3, 0x03, 0x31, 0x14, 0x06, 0x4f, 0xce, 0x84, 0x80, 0xf6, 0x8a, 0xa6, 0x64, 0xd6, - 0xed, 0x11, 0x39, 0x51, 0x53, 0x9b, 0xd0, 0xa4, 0xf5, 0x0c, 0x20, 0xc5, 0xcb, 0x44, 0xee, 0x96, - 0x51, 0x3a, 0x7d, 0x30, 0x18, 0x0c, 0xdf, 0xce, 0x89, 0x58, 0xdf, 0xc2, 0x9c, 0x4d, 0x13, 0xae, - 0x1e, 0x03, 0xd6, 0x75, 0x5d, 0xdd, 0x96, 0x63, 0x61, 0x75, 0xe8, 0x72, 0x7c, 0xe6, 0x8e, 0x8d, - 0xeb, 0x34, 0x99, 0x73, 0x4c, 0xa5, 0xe0, 0x18, 0x51, 0xbd, 0xca, 0xe2, 0x4c, 0x6e, 0xaa, 0x6e, - 0x6b, 0x4a, 0x7c, 0x84, 0x98, 0x47, 0x23, 0x2c, 0xb7, 0xd5, 0xb2, 0x15, 0x61, 0x3d, 0x80, 0x9a, - 0x34, 0x2e, 0xae, 0x8d, 0x1e, 0x69, 0xcc, 0x0d, 0x85, 0x59, 0xf2, 0x6c, 0x3d, 0x65, 0xed, 0x9a, - 0xfa, 0x32, 0xdb, 0x8a, 0xbe, 0xce, 0x0f, 0xa0, 0x4e, 0x0c, 0x4f, 0x07, 0xc1, 0xa9, 0x5d, 0x67, - 0x12, 0xd6, 0x36, 0x2c, 0xbd, 0xf0, 0xfd, 0xef, 0xab, 0x65, 0xd7, 0x34, 0x61, 0xbe, 0xaf, 0xa2, - 0xa7, 0xb0, 0xa4, 0xf6, 0xa5, 0xf6, 0x69, 0xb4, 0xfc, 0x10, 0x6a, 0xb1, 0xf1, 0x49, 0x29, 0xeb, - 0x5a, 0x69, 0x21, 0x3d, 0x27, 0x1e, 0x8b, 0x28, 0xbe, 0xb3, 0x23, 0x35, 0x8f, 0x65, 0x09, 0xba, - 0x62, 0xa2, 0xa0, 0xd3, 0xfa, 0x0d, 0x2c, 0xbd, 0x0a, 0x47, 0x24, 0xc4, 0x5b, 0x83, 0xc3, 0x97, - 0x38, 0x8d, 0xb6, 0x08, 0xaa, 0x22, 0x95, 0x92, 0x86, 0x16, 0x6c, 0x39, 0x16, 0xe1, 0x27, 0x3c, - 0x72, 0xbc, 0x28, 0x61, 0xba, 0x4d, 0x54, 0x0b, 0x8f, 0xb6, 0xa2, 0x84, 0xa1, 0x0f, 0x40, 0x7c, - 0xd2, 0x1d, 0x1a, 0x8e, 0xc6, 0xf2, 0xf4, 0x17, 0xec, 0x79, 0x2f, 0x4a, 0x5e, 0x85, 0xa3, 0xb1, - 0xf5, 0x63, 0x59, 0x18, 0x63, 0xec, 0xdb, 0x6e, 0xe8, 0xd3, 0x60, 0x1b, 0x9f, 0xe6, 0x2c, 0xa4, - 0x45, 0x98, 0x89, 0xb5, 0xdf, 0x95, 0xa0, 0xf9, 0x62, 0x88, 0x43, 0xbe, 0x8d, 0xb9, 0x4b, 0x46, - 0xb2, 0xd0, 0x3a, 0xc5, 0x31, 0x23, 0x34, 0xd4, 0xd7, 0xd0, 0x90, 0xa2, 0x4e, 0x26, 0x21, 0xe1, - 0x8e, 0xef, 0xe2, 0x80, 0x86, 0x52, 0xcb, 0x82, 0x0d, 0x82, 0xb5, 0x2d, 0x39, 0xe8, 0x3e, 0x74, - 0xd4, 0x15, 0x74, 0x4e, 0xdc, 0xd0, 0x1f, 0xe1, 0xd8, 0xb4, 0x35, 0xda, 0x8a, 0xbd, 0xa7, 0xb9, - 0xe8, 0x23, 0x58, 0xd4, 0xc1, 0x2a, 0x93, 0xac, 0x4a, 0xc9, 0x8e, 0xe6, 0x1b, 0x51, 0x71, 0x2e, - 0xbb, 0x02, 0xbc, 0x86, 0x97, 0x9d, 0x4b, 0x3b, 0xc0, 0x81, 0x73, 0x34, 0xa2, 0xde, 0x5b, 0x47, - 0xc4, 0x74, 0xed, 0x36, 0x91, 0xdc, 0x6c, 0x0a, 0xe6, 0x01, 0xf9, 0x06, 0x5b, 0xbf, 0x2b, 0xc1, - 0x72, 0x71, 0xb5, 0xfe, 0xea, 0x3c, 0x84, 0xe5, 0xe2, 0x72, 0x95, 0xf5, 0xeb, 0xf4, 0xac, 0x9b, - 0x57, 0x22, 0xf3, 0x7a, 0xf4, 0x19, 0xb4, 0x64, 0x17, 0xd6, 0xf1, 0x95, 0xa6, 0x62, 0xd2, 0x90, - 0x77, 0xa0, 0xdd, 0x74, 0x73, 0x94, 0x88, 0xfe, 0xf3, 0x3a, 0x42, 0xcb, 0x07, 0x1b, 0x93, 0x53, - 0x1c, 0xa7, 0x91, 0x4c, 0x52, 0xa2, 0x0e, 0x57, 0x23, 0x87, 0x46, 0x9c, 0xd0, 0x34, 0xee, 0xb7, - 0x14, 0xf7, 0x95, 0x62, 0xe6, 0xde, 0x75, 0xa5, 0xf0, 0xae, 0x57, 0xa0, 0x76, 0xcc, 0xf8, 0x38, - 0x4a, 0xdf, 0xbb, 0xa2, 0xc4, 0x49, 0x1a, 0x7d, 0x73, 0x52, 0x9f, 0x21, 0xc5, 0x49, 0x06, 0x34, - 0x09, 0xb9, 0x13, 0x51, 0x12, 0x72, 0x1d, 0xcd, 0x40, 0xb2, 0x06, 0x82, 0x63, 0xfd, 0xbe, 0x04, - 0x35, 0xd5, 0x99, 0x15, 0x15, 0x55, 0xfa, 0x69, 0x2c, 0x13, 0x99, 0x66, 0x48, 0x5b, 0x3a, 0xec, - 0x4a, 0x4b, 0x37, 0x61, 0xfe, 0x34, 0x70, 0x22, 0x97, 0x9f, 0x18, 0x68, 0xa7, 0xc1, 0xc0, 0xe5, - 0x27, 0x62, 0x67, 0xd9, 0x17, 0x56, 0xce, 0x2b, 0x88, 0xad, 0x94, 0x2b, 0xc5, 0x2e, 0x44, 0x6a, - 0xfd, 0x4a, 0x14, 0x92, 0x69, 0x57, 0x72, 0x11, 0x2a, 0x49, 0x0a, 0x46, 0x0c, 0x05, 0x67, 0x98, - 0x7e, 0x9b, 0xc5, 0x10, 0xdd, 0x83, 0xb6, 0xeb, 0xfb, 0x44, 0x2c, 0x77, 0x47, 0xbb, 0xc4, 0x4f, - 0xef, 0x60, 0x91, 0xfb, 0x71, 0x1f, 0x16, 0xcc, 0x67, 0x0a, 0xd5, 0xa0, 0x7c, 0xfa, 0x78, 0xf1, - 0xff, 0xe4, 0xff, 0x4f, 0x16, 0x4b, 0x1b, 0x7f, 0x69, 0xeb, 0x47, 0xa1, 0xcb, 0x1e, 0xb4, 0x0b, - 0x9d, 0x89, 0x36, 0x3a, 0xd2, 0x75, 0xf0, 0xec, 0xee, 0x7a, 0x7f, 0x65, 0x5d, 0xb5, 0xe5, 0xd7, - 0x4d, 0x5b, 0x7e, 0x7d, 0x27, 0x88, 0xf8, 0x18, 0xed, 0x40, 0xbb, 0xd8, 0x70, 0x46, 0xb7, 0xcc, - 0x57, 0x7c, 0x46, 0x1b, 0xfa, 0x42, 0x35, 0xbb, 0xd0, 0x99, 0xe8, 0x3d, 0x1b, 0x3c, 0xb3, 0x5b, - 0xd2, 0x17, 0x2a, 0x7a, 0x0e, 0x8d, 0x5c, 0xb3, 0x19, 0xf5, 0x94, 0x92, 0xe9, 0xfe, 0xf3, 0x85, - 0x0a, 0xb6, 0xa0, 0x55, 0xe8, 0xff, 0xa2, 0xbe, 0xde, 0xcf, 0x8c, 0xa6, 0xf0, 0x85, 0x4a, 0x36, - 0xa1, 0x91, 0x6b, 0xc3, 0x1a, 0x14, 0xd3, 0xbd, 0xde, 0xfe, 0x07, 0x33, 0x66, 0xf4, 0x93, 0xde, - 0x83, 0x56, 0xa1, 0x69, 0x6a, 0x80, 0xcc, 0x6a, 0xd8, 0xf6, 0x6f, 0xcd, 0x9c, 0xd3, 0x9a, 0x76, - 0xa1, 0x33, 0xd1, 0x42, 0x35, 0xce, 0x9d, 0xdd, 0x59, 0xbd, 0x70, 0x5b, 0x5f, 0xc8, 0xc3, 0xce, - 0xd5, 0x0c, 0xb9, 0xc3, 0x9e, 0x6e, 0x98, 0xf6, 0x6f, 0xcf, 0x9e, 0xd4, 0xa8, 0x76, 0xa0, 0x5d, - 0xec, 0x95, 0x1a, 0x65, 0x33, 0x3b, 0xa8, 0x97, 0xdf, 0x9c, 0x42, 0xdb, 0x34, 0xbb, 0x39, 0xb3, - 0xba, 0xa9, 0x17, 0x2a, 0x7a, 0x01, 0xa0, 0x4b, 0x0b, 0x9f, 0x84, 0xe9, 0x91, 0x4d, 0x95, 0x34, - 0xe9, 0x91, 0xcd, 0x28, 0x43, 0x9e, 0x03, 0xa8, 0x8a, 0xc0, 0xa7, 0x09, 0x47, 0x37, 0x0d, 0x8c, - 0x89, 0x32, 0xa4, 0xdf, 0x9b, 0x9e, 0x98, 0x52, 0x80, 0xe3, 0xf8, 0x2a, 0x0a, 0x9e, 0x01, 0x64, - 0x95, 0x86, 0x51, 0x30, 0x55, 0x7b, 0x5c, 0xe2, 0x83, 0x66, 0xbe, 0xae, 0x40, 0x7a, 0xaf, 0x33, - 0x6a, 0x8d, 0x0b, 0x55, 0x3c, 0x81, 0x66, 0x3e, 0x0d, 0x32, 0x2a, 0x66, 0xa4, 0x46, 0xfd, 0xc9, - 0xf4, 0x05, 0xfd, 0xd4, 0x5c, 0xd4, 0x8c, 0x55, 0xb8, 0xa8, 0xff, 0x91, 0x86, 0x89, 0xf4, 0xa9, - 0x18, 0x47, 0xde, 0xaf, 0xe1, 0x33, 0x68, 0xe6, 0xf3, 0x26, 0x83, 0x7f, 0x46, 0x2e, 0xd5, 0x2f, - 0xe4, 0x4e, 0xe8, 0x39, 0xb4, 0x8b, 0x39, 0x13, 0xca, 0x3d, 0xca, 0xa9, 0x4c, 0xaa, 0xbf, 0x38, - 0x61, 0x98, 0xa1, 0x47, 0x00, 0x59, 0x6e, 0x65, 0xce, 0x6e, 0x2a, 0xdb, 0x9a, 0xb0, 0xba, 0x05, - 0xad, 0x42, 0x2d, 0x66, 0xa2, 0xc4, 0xac, 0x02, 0xed, 0xb2, 0x20, 0x5e, 0xac, 0x8d, 0x0c, 0xf4, - 0x99, 0x15, 0xd3, 0x65, 0xb7, 0x27, 0x9f, 0x07, 0x1a, 0xd7, 0xcd, 0xc8, 0x0d, 0xdf, 0xf3, 0x9a, - 0xf3, 0xb9, 0x5e, 0xee, 0x35, 0xcf, 0x48, 0x01, 0x2f, 0x54, 0xb4, 0x07, 0x9d, 0x5d, 0xcc, 0xf3, - 0xb9, 0x92, 0x81, 0x33, 0x23, 0xfb, 0xea, 0xf7, 0x67, 0x4d, 0xa9, 0x27, 0xb5, 0xd9, 0xfc, 0xdb, - 0xbb, 0x3b, 0xa5, 0xbf, 0xbf, 0xbb, 0x53, 0xfa, 0xe7, 0xbb, 0x3b, 0xa5, 0xa3, 0x9a, 0xb4, 0xf3, - 0xe8, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xce, 0x3f, 0xae, 0x47, 0xc4, 0x1e, 0x00, 0x00, + // 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, } diff --git a/protocols/grpc/agent.proto b/protocols/grpc/agent.proto index 0ddacca8da..eca60e18b2 100644 --- a/protocols/grpc/agent.proto +++ b/protocols/grpc/agent.proto @@ -364,6 +364,10 @@ message AgentDetails { // List of available storage handlers. repeated string storage_handlers = 4; + + // Set only if the agent is built with seccomp support and the guest + // environment supports seccomp. + bool supports_seccomp = 5; } message GuestDetailsRequest {