diff --git a/grpc.go b/grpc.go index c0711a345e..d646bf5954 100644 --- a/grpc.go +++ b/grpc.go @@ -1328,5 +1328,25 @@ func (a *agentGRPC) GetGuestDetails(ctx context.Context, req *pb.GuestDetailsReq return nil, err } } + + details.AgentDetails = a.getAgentDetails(ctx) + return &details, nil } + +func (a *agentGRPC) getAgentDetails(ctx context.Context) *pb.AgentDetails { + details := pb.AgentDetails{ + Version: version, + InitDaemon: os.Getpid() == 1, + } + + for handler := range deviceHandlerList { + details.DeviceHandlers = append(details.DeviceHandlers, handler) + } + + for handler := range storageHandlerList { + details.StorageHandlers = append(details.StorageHandlers, handler) + } + + return &details +} diff --git a/grpc_test.go b/grpc_test.go index 575ea6a776..0dc885949b 100644 --- a/grpc_test.go +++ b/grpc_test.go @@ -13,16 +13,18 @@ import ( "os" "path/filepath" "reflect" + "sort" "testing" "time" + "strconv" + "sync" + pb "github.com/kata-containers/agent/protocols/grpc" "github.com/opencontainers/runc/libcontainer" "github.com/opencontainers/runc/libcontainer/configs" "github.com/opencontainers/runtime-spec/specs-go" "github.com/stretchr/testify/assert" - "strconv" - "sync" ) var testSharedPidNs = "testSharedPidNs" @@ -622,6 +624,33 @@ func TestMultiWaitProcess(t *testing.T) { wg.Wait() } +func testAgentDetails(assert *assert.Assertions, details *pb.AgentDetails) { + assert.NotNil(details) + + assert.Equal(details.Version, version) + assert.Equal(details.InitDaemon, os.Getpid() == 1) + + var devices []string + var storages []string + + for handler := range deviceHandlerList { + devices = append(devices, handler) + } + + for handler := range storageHandlerList { + storages = append(storages, handler) + } + + sort.Sort(sort.StringSlice(details.DeviceHandlers)) + sort.Sort(sort.StringSlice(details.StorageHandlers)) + + sort.Sort(sort.StringSlice(devices)) + sort.Sort(sort.StringSlice(storages)) + + assert.Equal(details.DeviceHandlers, devices) + assert.Equal(details.StorageHandlers, storages) +} + func TestGetGuestDetails(t *testing.T) { assert := assert.New(t) a := &agentGRPC{ @@ -644,4 +673,19 @@ func TestGetGuestDetails(t *testing.T) { assert.NoError(err) assert.Equal(resp.MemBlockSizeBytes, size) + testAgentDetails(assert, resp.AgentDetails) +} + +func TestGetAgentDetails(t *testing.T) { + assert := assert.New(t) + + a := &agentGRPC{ + sandbox: &sandbox{ + containers: make(map[string]*container), + }, + } + + details := a.getAgentDetails(context.TODO()) + + testAgentDetails(assert, details) } diff --git a/protocols/grpc/agent.pb.go b/protocols/grpc/agent.pb.go index ea680f03d9..0091169497 100644 --- a/protocols/grpc/agent.pb.go +++ b/protocols/grpc/agent.pb.go @@ -55,6 +55,7 @@ ListRoutesRequest OnlineCPUMemRequest ReseedRandomDevRequest + AgentDetails GuestDetailsRequest GuestDetailsResponse Storage @@ -1442,6 +1443,51 @@ func (m *ReseedRandomDevRequest) GetData() []byte { return nil } +// AgentDetails provides information to the client about the running agent. +type AgentDetails struct { + // Semantic version of agent (see https://semver.org). + Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"` + // Set if the agent is running as PID 1. + InitDaemon bool `protobuf:"varint,2,opt,name=init_daemon,json=initDaemon,proto3" json:"init_daemon,omitempty"` + // List of available device handlers. + 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"` +} + +func (m *AgentDetails) Reset() { *m = AgentDetails{} } +func (m *AgentDetails) String() string { return proto.CompactTextString(m) } +func (*AgentDetails) ProtoMessage() {} +func (*AgentDetails) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{45} } + +func (m *AgentDetails) GetVersion() string { + if m != nil { + return m.Version + } + return "" +} + +func (m *AgentDetails) GetInitDaemon() bool { + if m != nil { + return m.InitDaemon + } + return false +} + +func (m *AgentDetails) GetDeviceHandlers() []string { + if m != nil { + return m.DeviceHandlers + } + return nil +} + +func (m *AgentDetails) GetStorageHandlers() []string { + if m != nil { + return m.StorageHandlers + } + return nil +} + 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 @@ -1452,7 +1498,7 @@ type GuestDetailsRequest struct { func (m *GuestDetailsRequest) Reset() { *m = GuestDetailsRequest{} } func (m *GuestDetailsRequest) String() string { return proto.CompactTextString(m) } func (*GuestDetailsRequest) ProtoMessage() {} -func (*GuestDetailsRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{45} } +func (*GuestDetailsRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{46} } func (m *GuestDetailsRequest) GetMemBlockSize() bool { if m != nil { @@ -1463,13 +1509,14 @@ func (m *GuestDetailsRequest) GetMemBlockSize() bool { type GuestDetailsResponse struct { // MemBlockSizeBytes returns the system memory block size in bytes. - MemBlockSizeBytes uint64 `protobuf:"varint,1,opt,name=mem_block_size_bytes,json=memBlockSizeBytes,proto3" json:"mem_block_size_bytes,omitempty"` + MemBlockSizeBytes uint64 `protobuf:"varint,1,opt,name=mem_block_size_bytes,json=memBlockSizeBytes,proto3" json:"mem_block_size_bytes,omitempty"` + AgentDetails *AgentDetails `protobuf:"bytes,2,opt,name=agent_details,json=agentDetails" json:"agent_details,omitempty"` } func (m *GuestDetailsResponse) Reset() { *m = GuestDetailsResponse{} } func (m *GuestDetailsResponse) String() string { return proto.CompactTextString(m) } func (*GuestDetailsResponse) ProtoMessage() {} -func (*GuestDetailsResponse) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{46} } +func (*GuestDetailsResponse) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{47} } func (m *GuestDetailsResponse) GetMemBlockSizeBytes() uint64 { if m != nil { @@ -1478,6 +1525,13 @@ func (m *GuestDetailsResponse) GetMemBlockSizeBytes() uint64 { return 0 } +func (m *GuestDetailsResponse) GetAgentDetails() *AgentDetails { + if m != nil { + return m.AgentDetails + } + return nil +} + // Storage represents both the rootfs of the container, and any volume that // could have been defined through the Mount list of the OCI specification. type Storage struct { @@ -1511,7 +1565,7 @@ type Storage struct { func (m *Storage) Reset() { *m = Storage{} } func (m *Storage) String() string { return proto.CompactTextString(m) } func (*Storage) ProtoMessage() {} -func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{47} } +func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{48} } func (m *Storage) GetDriver() string { if m != nil { @@ -1594,7 +1648,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (m *Device) String() string { return proto.CompactTextString(m) } func (*Device) ProtoMessage() {} -func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{48} } +func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{49} } func (m *Device) GetId() string { if m != nil { @@ -1640,7 +1694,7 @@ type StringUser struct { func (m *StringUser) Reset() { *m = StringUser{} } func (m *StringUser) String() string { return proto.CompactTextString(m) } func (*StringUser) ProtoMessage() {} -func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{49} } +func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{50} } func (m *StringUser) GetUid() string { if m != nil { @@ -1709,6 +1763,7 @@ func init() { proto.RegisterType((*ListRoutesRequest)(nil), "grpc.ListRoutesRequest") proto.RegisterType((*OnlineCPUMemRequest)(nil), "grpc.OnlineCPUMemRequest") proto.RegisterType((*ReseedRandomDevRequest)(nil), "grpc.ReseedRandomDevRequest") + proto.RegisterType((*AgentDetails)(nil), "grpc.AgentDetails") proto.RegisterType((*GuestDetailsRequest)(nil), "grpc.GuestDetailsRequest") proto.RegisterType((*GuestDetailsResponse)(nil), "grpc.GuestDetailsResponse") proto.RegisterType((*Storage)(nil), "grpc.Storage") @@ -4372,6 +4427,70 @@ func (m *ReseedRandomDevRequest) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *AgentDetails) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *AgentDetails) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.Version) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintAgent(dAtA, i, uint64(len(m.Version))) + i += copy(dAtA[i:], m.Version) + } + if m.InitDaemon { + dAtA[i] = 0x10 + i++ + if m.InitDaemon { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } + if len(m.DeviceHandlers) > 0 { + for _, s := range m.DeviceHandlers { + dAtA[i] = 0x1a + i++ + l = len(s) + for l >= 1<<7 { + dAtA[i] = uint8(uint64(l)&0x7f | 0x80) + l >>= 7 + i++ + } + dAtA[i] = uint8(l) + i++ + i += copy(dAtA[i:], s) + } + } + if len(m.StorageHandlers) > 0 { + for _, s := range m.StorageHandlers { + dAtA[i] = 0x22 + i++ + l = len(s) + for l >= 1<<7 { + dAtA[i] = uint8(uint64(l)&0x7f | 0x80) + l >>= 7 + i++ + } + dAtA[i] = uint8(l) + i++ + i += copy(dAtA[i:], s) + } + } + return i, nil +} + func (m *GuestDetailsRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4420,6 +4539,16 @@ func (m *GuestDetailsResponse) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintAgent(dAtA, i, uint64(m.MemBlockSizeBytes)) } + if m.AgentDetails != nil { + dAtA[i] = 0x12 + i++ + i = encodeVarintAgent(dAtA, i, uint64(m.AgentDetails.Size())) + n23, err := m.AgentDetails.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n23 + } return i, nil } @@ -5345,6 +5474,31 @@ func (m *ReseedRandomDevRequest) Size() (n int) { return n } +func (m *AgentDetails) Size() (n int) { + var l int + _ = l + l = len(m.Version) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } + if m.InitDaemon { + n += 2 + } + if len(m.DeviceHandlers) > 0 { + for _, s := range m.DeviceHandlers { + l = len(s) + n += 1 + l + sovAgent(uint64(l)) + } + } + if len(m.StorageHandlers) > 0 { + for _, s := range m.StorageHandlers { + l = len(s) + n += 1 + l + sovAgent(uint64(l)) + } + } + return n +} + func (m *GuestDetailsRequest) Size() (n int) { var l int _ = l @@ -5360,6 +5514,10 @@ func (m *GuestDetailsResponse) Size() (n int) { if m.MemBlockSizeBytes != 0 { n += 1 + sovAgent(uint64(m.MemBlockSizeBytes)) } + if m.AgentDetails != nil { + l = m.AgentDetails.Size() + n += 1 + l + sovAgent(uint64(l)) + } return n } @@ -10986,6 +11144,163 @@ func (m *ReseedRandomDevRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *AgentDetails) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: AgentDetails: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AgentDetails: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Version", 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.Version = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field InitDaemon", 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.InitDaemon = bool(v != 0) + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DeviceHandlers", 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.DeviceHandlers = append(m.DeviceHandlers, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StorageHandlers", 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.StorageHandlers = append(m.StorageHandlers, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAgent(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAgent + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *GuestDetailsRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -11104,6 +11419,39 @@ func (m *GuestDetailsResponse) Unmarshal(dAtA []byte) error { break } } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AgentDetails", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAgent + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AgentDetails == nil { + m.AgentDetails = &AgentDetails{} + } + if err := m.AgentDetails.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAgent(dAtA[iNdEx:]) @@ -11789,159 +12137,164 @@ var ( func init() { proto.RegisterFile("agent.proto", fileDescriptorAgent) } var fileDescriptorAgent = []byte{ - // 2454 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xcd, 0x6e, 0x1b, 0xc9, - 0x11, 0x0e, 0x7f, 0x44, 0x89, 0xc5, 0x1f, 0x89, 0x2d, 0x59, 0xe6, 0xd2, 0x8e, 0x57, 0x3b, 0x4e, - 0xbc, 0xca, 0x6e, 0x2c, 0x63, 0x65, 0x23, 0x59, 0xd8, 0x30, 0x1c, 0xeb, 0x27, 0xb2, 0xb2, 0xeb, - 0x98, 0x19, 0x59, 0x70, 0x80, 0x20, 0x20, 0x46, 0x33, 0x2d, 0xaa, 0xd7, 0x9c, 0xe9, 0xd9, 0xee, - 0x1e, 0x49, 0xdc, 0x05, 0x72, 0xcc, 0x5b, 0xe4, 0x05, 0x82, 0x20, 0x97, 0x9c, 0x72, 0xcf, 0x21, - 0xc7, 0x3c, 0x41, 0x10, 0xf8, 0x11, 0xf2, 0x04, 0x41, 0xff, 0xcd, 0x0f, 0x49, 0xc9, 0x89, 0x56, - 0x40, 0x2e, 0x64, 0x57, 0x75, 0x75, 0xd5, 0x57, 0xd5, 0xdd, 0x35, 0xd5, 0x05, 0x0d, 0x6f, 0x88, - 0x23, 0xb1, 0x11, 0x33, 0x2a, 0x28, 0xaa, 0x0e, 0x59, 0xec, 0xf7, 0xea, 0xd4, 0x27, 0x9a, 0xd1, - 0xbb, 0x35, 0xa4, 0x74, 0x38, 0xc2, 0x0f, 0x14, 0x75, 0x94, 0x1c, 0x3f, 0xc0, 0x61, 0x2c, 0xc6, - 0x7a, 0xd2, 0xf9, 0x43, 0x19, 0x56, 0xb7, 0x19, 0xf6, 0x04, 0xde, 0xa6, 0x91, 0xf0, 0x48, 0x84, - 0x99, 0x8b, 0xbf, 0x4e, 0x30, 0x17, 0xe8, 0x23, 0x68, 0xfa, 0x96, 0x37, 0x20, 0x41, 0xb7, 0xb4, - 0x56, 0x5a, 0xaf, 0xbb, 0x8d, 0x94, 0xb7, 0x1f, 0xa0, 0x9b, 0x30, 0x8f, 0xcf, 0xb1, 0x2f, 0x67, - 0xcb, 0x6a, 0xb6, 0x26, 0xc9, 0xfd, 0x00, 0x7d, 0x06, 0x0d, 0x2e, 0x18, 0x89, 0x86, 0x83, 0x84, - 0x63, 0xd6, 0xad, 0xac, 0x95, 0xd6, 0x1b, 0x9b, 0x4b, 0x1b, 0x12, 0xda, 0xc6, 0x81, 0x9a, 0x38, - 0xe4, 0x98, 0xb9, 0xc0, 0xd3, 0x31, 0xba, 0x07, 0xf3, 0x01, 0x3e, 0x25, 0x3e, 0xe6, 0xdd, 0xea, - 0x5a, 0x65, 0xbd, 0xb1, 0xd9, 0xd4, 0xe2, 0x3b, 0x8a, 0xe9, 0xda, 0x49, 0xf4, 0x23, 0x58, 0xe0, - 0x82, 0x32, 0x6f, 0x88, 0x79, 0x77, 0x4e, 0x09, 0xb6, 0xac, 0x5e, 0xc5, 0x75, 0xd3, 0x69, 0x74, - 0x1b, 0x2a, 0xaf, 0xb6, 0xf7, 0xbb, 0x35, 0x65, 0x1d, 0x8c, 0x54, 0x8c, 0x7d, 0x57, 0xb2, 0xd1, - 0x5d, 0x68, 0x71, 0x2f, 0x0a, 0x8e, 0xe8, 0xf9, 0x20, 0x26, 0x41, 0xc4, 0xbb, 0xf3, 0x6b, 0xa5, - 0xf5, 0x05, 0xb7, 0x69, 0x98, 0x7d, 0xc9, 0x73, 0x1e, 0xc3, 0x8d, 0x03, 0xe1, 0x31, 0x71, 0x85, - 0xe8, 0x38, 0x87, 0xb0, 0xea, 0xe2, 0x90, 0x9e, 0x5e, 0x29, 0xb4, 0x5d, 0x98, 0x17, 0x24, 0xc4, - 0x34, 0x11, 0x2a, 0xb4, 0x2d, 0xd7, 0x92, 0xce, 0x9f, 0x4a, 0x80, 0x76, 0xcf, 0xb1, 0xdf, 0x67, - 0xd4, 0xc7, 0x9c, 0xff, 0x9f, 0xb6, 0xeb, 0x63, 0x98, 0x8f, 0x35, 0x80, 0x6e, 0x55, 0x89, 0x9b, - 0x5d, 0xb0, 0xa8, 0xec, 0xac, 0xf3, 0x15, 0xac, 0x1c, 0x90, 0x61, 0xe4, 0x8d, 0xae, 0x11, 0xef, - 0x2a, 0xd4, 0xb8, 0xd2, 0xa9, 0xa0, 0xb6, 0x5c, 0x43, 0x39, 0x7d, 0x40, 0x6f, 0x3c, 0x22, 0xae, - 0xcf, 0x92, 0x73, 0x1f, 0x96, 0x0b, 0x1a, 0x79, 0x4c, 0x23, 0x8e, 0x15, 0x00, 0xe1, 0x89, 0x84, - 0x2b, 0x65, 0x73, 0xae, 0xa1, 0x1c, 0x0c, 0x2b, 0x5f, 0x12, 0x6e, 0xc5, 0xf1, 0xff, 0x02, 0x61, - 0x15, 0x6a, 0xc7, 0x94, 0x85, 0x9e, 0xb0, 0x08, 0x34, 0x85, 0x10, 0x54, 0x3d, 0x36, 0xe4, 0xdd, - 0xca, 0x5a, 0x65, 0xbd, 0xee, 0xaa, 0xb1, 0x3c, 0x95, 0x13, 0x66, 0x0c, 0xae, 0x8f, 0xa0, 0x69, - 0xe2, 0x3e, 0x18, 0x11, 0x2e, 0x94, 0x9d, 0xa6, 0xdb, 0x30, 0x3c, 0xb9, 0xc6, 0xa1, 0xb0, 0x7a, - 0x18, 0x07, 0x57, 0xbc, 0xf0, 0x9b, 0x50, 0x67, 0x98, 0xd3, 0x84, 0xc9, 0x6b, 0x5a, 0x56, 0xfb, - 0xbe, 0xa2, 0xf7, 0xfd, 0x4b, 0x12, 0x25, 0xe7, 0xae, 0x9d, 0x73, 0x33, 0x31, 0x73, 0x85, 0x04, - 0xbf, 0xca, 0x15, 0x7a, 0x0c, 0x37, 0xfa, 0x5e, 0xc2, 0xaf, 0x82, 0xd5, 0x79, 0x22, 0xaf, 0x1f, - 0x4f, 0xc2, 0x2b, 0x2d, 0xfe, 0x63, 0x09, 0x16, 0xb6, 0xe3, 0xe4, 0x90, 0x7b, 0x43, 0x8c, 0x3e, - 0x84, 0x86, 0xa0, 0xc2, 0x1b, 0x0d, 0x12, 0x49, 0x2a, 0xf1, 0xaa, 0x0b, 0x8a, 0xa5, 0x05, 0x64, - 0xd8, 0x31, 0xf3, 0xe3, 0xc4, 0x48, 0x94, 0xd7, 0x2a, 0xeb, 0x55, 0xb7, 0xa1, 0x79, 0x5a, 0x64, - 0x03, 0x96, 0xd5, 0xdc, 0x80, 0x44, 0x83, 0xb7, 0x98, 0x45, 0x78, 0x14, 0xd2, 0x00, 0xab, 0xf3, - 0x5b, 0x75, 0x3b, 0x6a, 0x6a, 0x3f, 0xfa, 0x22, 0x9d, 0x40, 0x9f, 0x40, 0x27, 0x95, 0x97, 0x97, - 0x52, 0x49, 0x57, 0x95, 0xf4, 0xa2, 0x91, 0x3e, 0x34, 0x6c, 0xe7, 0x77, 0xd0, 0x7e, 0x7d, 0xc2, - 0xa8, 0x10, 0x23, 0x12, 0x0d, 0x77, 0x3c, 0xe1, 0xc9, 0xec, 0x11, 0x63, 0x46, 0x68, 0xc0, 0x0d, - 0x5a, 0x4b, 0xa2, 0x4f, 0xa1, 0x23, 0xb4, 0x2c, 0x0e, 0x06, 0x56, 0xa6, 0xac, 0x64, 0x96, 0xd2, - 0x89, 0xbe, 0x11, 0xfe, 0x21, 0xb4, 0x33, 0x61, 0x99, 0x7f, 0x0c, 0xde, 0x56, 0xca, 0x7d, 0x4d, - 0x42, 0xec, 0x9c, 0xaa, 0x58, 0xa9, 0x4d, 0x46, 0x9f, 0x42, 0x3d, 0x8b, 0x43, 0x49, 0x9d, 0x90, - 0xb6, 0x3e, 0x21, 0x36, 0x9c, 0xee, 0x42, 0x1a, 0x94, 0xa7, 0xb0, 0x28, 0x52, 0xe0, 0x83, 0xc0, - 0x13, 0x5e, 0xf1, 0x50, 0x15, 0xbd, 0x72, 0xdb, 0xa2, 0x40, 0x3b, 0x4f, 0xa0, 0xde, 0x27, 0x01, - 0xd7, 0x86, 0xbb, 0x30, 0xef, 0x27, 0x8c, 0xe1, 0x48, 0x58, 0x97, 0x0d, 0x89, 0x56, 0x60, 0x6e, - 0x44, 0x42, 0x22, 0x8c, 0x9b, 0x9a, 0x70, 0x28, 0xc0, 0x4b, 0x1c, 0x52, 0x36, 0x56, 0x01, 0x5b, - 0x81, 0xb9, 0xfc, 0xe6, 0x6a, 0x02, 0xdd, 0x82, 0x7a, 0xe8, 0x9d, 0xa7, 0x9b, 0x2a, 0x67, 0x16, - 0x42, 0xef, 0x5c, 0x83, 0xef, 0xc2, 0xfc, 0xb1, 0x47, 0x46, 0x7e, 0x24, 0x4c, 0x54, 0x2c, 0x99, - 0x19, 0xac, 0xe6, 0x0d, 0xfe, 0xad, 0x0c, 0x0d, 0x6d, 0x51, 0x03, 0x5e, 0x81, 0x39, 0xdf, 0xf3, - 0x4f, 0x52, 0x93, 0x8a, 0x40, 0xf7, 0x2c, 0x90, 0x72, 0x3e, 0x09, 0x67, 0x48, 0x2d, 0xb4, 0x07, - 0x00, 0xfc, 0xcc, 0x8b, 0x0d, 0xb6, 0xca, 0x05, 0xc2, 0x75, 0x29, 0xa3, 0xe1, 0x3e, 0x84, 0xa6, - 0x3e, 0x77, 0x66, 0x49, 0xf5, 0x82, 0x25, 0x0d, 0x2d, 0xa5, 0x17, 0xdd, 0x85, 0x56, 0xc2, 0xf1, - 0xe0, 0x84, 0x60, 0xe6, 0x31, 0xff, 0x64, 0xdc, 0x9d, 0xd3, 0xdf, 0xc8, 0x84, 0xe3, 0x17, 0x96, - 0x87, 0x36, 0x61, 0x4e, 0xa6, 0x3f, 0xde, 0xad, 0xa9, 0xcf, 0xf1, 0xed, 0xbc, 0x4a, 0xe5, 0xea, - 0x86, 0xfa, 0xdd, 0x8d, 0x04, 0x1b, 0xbb, 0x5a, 0xb4, 0xf7, 0x39, 0x40, 0xc6, 0x44, 0x4b, 0x50, - 0x79, 0x8b, 0xc7, 0xe6, 0x1e, 0xca, 0xa1, 0x0c, 0xce, 0xa9, 0x37, 0x4a, 0x6c, 0xd4, 0x35, 0xf1, - 0xb8, 0xfc, 0x79, 0xc9, 0xf1, 0x61, 0x71, 0x6b, 0xf4, 0x96, 0xd0, 0xdc, 0xf2, 0x15, 0x98, 0x0b, - 0xbd, 0xaf, 0x28, 0xb3, 0x91, 0x54, 0x84, 0xe2, 0x92, 0x88, 0x32, 0xab, 0x42, 0x11, 0xa8, 0x0d, - 0x65, 0x1a, 0xab, 0x78, 0xd5, 0xdd, 0x32, 0x8d, 0x33, 0x43, 0xd5, 0x9c, 0x21, 0xe7, 0x9f, 0x55, - 0x80, 0xcc, 0x0a, 0x72, 0xa1, 0x47, 0xe8, 0x80, 0x63, 0x26, 0x4b, 0x90, 0xc1, 0xd1, 0x58, 0x60, - 0x3e, 0x60, 0xd8, 0x4f, 0x18, 0x27, 0xa7, 0x72, 0xff, 0xa4, 0xdb, 0x37, 0xb4, 0xdb, 0x13, 0xd8, - 0xdc, 0x9b, 0x84, 0x1e, 0xe8, 0x75, 0x5b, 0x72, 0x99, 0x6b, 0x57, 0xa1, 0x7d, 0xb8, 0x91, 0xe9, - 0x0c, 0x72, 0xea, 0xca, 0x97, 0xa9, 0x5b, 0x4e, 0xd5, 0x05, 0x99, 0xaa, 0x5d, 0x58, 0x26, 0x74, - 0xf0, 0x75, 0x82, 0x93, 0x82, 0xa2, 0xca, 0x65, 0x8a, 0x3a, 0x84, 0xfe, 0x4a, 0x2d, 0xc8, 0xd4, - 0xf4, 0xe1, 0x83, 0x9c, 0x97, 0xf2, 0xba, 0xe7, 0x94, 0x55, 0x2f, 0x53, 0xb6, 0x9a, 0xa2, 0x92, - 0xf9, 0x20, 0xd3, 0xf8, 0x0b, 0x58, 0x25, 0x74, 0x70, 0xe6, 0x11, 0x31, 0xa9, 0x6e, 0xee, 0x3d, - 0x4e, 0xca, 0x8f, 0x6e, 0x51, 0x97, 0x76, 0x32, 0xc4, 0x6c, 0x58, 0x70, 0xb2, 0xf6, 0x1e, 0x27, - 0x5f, 0xaa, 0x05, 0x99, 0x9a, 0xe7, 0xd0, 0x21, 0x74, 0x12, 0xcd, 0xfc, 0x65, 0x4a, 0x16, 0x09, - 0x2d, 0x22, 0xd9, 0x82, 0x0e, 0xc7, 0xbe, 0xa0, 0x2c, 0x7f, 0x08, 0x16, 0x2e, 0x53, 0xb1, 0x64, - 0xe4, 0x53, 0x1d, 0xce, 0x6f, 0xa0, 0xf9, 0x22, 0x19, 0x62, 0x31, 0x3a, 0x4a, 0x93, 0xc1, 0xb5, - 0xe5, 0x1f, 0xe7, 0xdf, 0x65, 0x68, 0x6c, 0x0f, 0x19, 0x4d, 0xe2, 0x42, 0x4e, 0xd6, 0x97, 0x74, - 0x32, 0x27, 0x2b, 0x11, 0x95, 0x93, 0xb5, 0xf0, 0x23, 0x68, 0x86, 0xea, 0xea, 0x1a, 0x79, 0x9d, - 0x87, 0x3a, 0x53, 0x97, 0xda, 0x6d, 0x84, 0xb9, 0x64, 0xb6, 0x01, 0x10, 0x93, 0x80, 0x9b, 0x35, - 0x3a, 0x1d, 0x2d, 0x9a, 0x8a, 0xd0, 0xa6, 0x68, 0xb7, 0x1e, 0xa7, 0xd9, 0xfa, 0x33, 0x68, 0x1c, - 0xc9, 0x20, 0x99, 0x05, 0x85, 0x64, 0x94, 0x45, 0xcf, 0x85, 0xa3, 0xec, 0x12, 0xbe, 0x80, 0xd6, - 0x89, 0x0e, 0x99, 0x59, 0xa4, 0xcf, 0xd0, 0x5d, 0xe3, 0x49, 0xe6, 0xef, 0x46, 0x3e, 0xb2, 0x7a, - 0x03, 0x9a, 0x27, 0x39, 0x56, 0xef, 0x00, 0x3a, 0x53, 0x22, 0x33, 0x72, 0xd0, 0x7a, 0x3e, 0x07, - 0x35, 0x36, 0x91, 0x36, 0x94, 0x5f, 0x99, 0xcf, 0x4b, 0xbf, 0x84, 0xd5, 0xc9, 0x32, 0xc7, 0x14, - 0x65, 0x8f, 0xa0, 0xe9, 0x2b, 0x74, 0x85, 0x1d, 0xe8, 0x4c, 0xe1, 0x76, 0x1b, 0x7e, 0x46, 0x38, - 0x01, 0xa0, 0x37, 0x8c, 0x08, 0x7c, 0x20, 0x18, 0xf6, 0xc2, 0xeb, 0xa8, 0x9a, 0x11, 0x54, 0xd5, - 0x27, 0xb6, 0xa2, 0x8a, 0x42, 0x35, 0x76, 0x3e, 0x86, 0xe5, 0x82, 0x15, 0x03, 0x79, 0x09, 0x2a, - 0x23, 0x1c, 0x29, 0xed, 0x2d, 0x57, 0x0e, 0x1d, 0x0f, 0x3a, 0x2e, 0xf6, 0x82, 0xeb, 0x43, 0x63, - 0x4c, 0x54, 0x32, 0x13, 0xeb, 0x80, 0xf2, 0x26, 0x0c, 0x14, 0x8b, 0xba, 0x94, 0x43, 0xfd, 0x0a, - 0x3a, 0xdb, 0x23, 0xca, 0xf1, 0x81, 0x08, 0x48, 0x74, 0x1d, 0x65, 0xfe, 0xb7, 0xb0, 0xfc, 0x5a, - 0x8c, 0xdf, 0x48, 0x65, 0x9c, 0x7c, 0x83, 0xaf, 0xc9, 0x3f, 0x46, 0xcf, 0xac, 0x7f, 0x8c, 0x9e, - 0xc9, 0x0a, 0xdf, 0xa7, 0xa3, 0x24, 0x8c, 0xd4, 0x71, 0x6f, 0xb9, 0x86, 0x72, 0xfe, 0x52, 0x82, - 0x15, 0xfd, 0x06, 0x3f, 0xd0, 0x4f, 0x4f, 0x6b, 0xbe, 0x07, 0x0b, 0x27, 0x94, 0x8b, 0xc8, 0x0b, - 0xb1, 0x31, 0x9d, 0xd2, 0x52, 0xbd, 0x7c, 0xb3, 0x96, 0xd5, 0xab, 0x40, 0x0e, 0x0b, 0x0f, 0xe3, - 0xca, 0xe5, 0x0f, 0xe3, 0xa9, 0xa7, 0x6f, 0x75, 0xfa, 0xe9, 0x8b, 0xbe, 0x0f, 0x60, 0x85, 0x48, - 0xa0, 0x3e, 0xfc, 0x75, 0xb7, 0x6e, 0x38, 0xfb, 0x81, 0x73, 0x13, 0x6e, 0xec, 0x60, 0x2e, 0x18, - 0x1d, 0x17, 0x51, 0x3b, 0x1e, 0xd4, 0xf7, 0xfb, 0xcf, 0x83, 0x80, 0x61, 0xce, 0xd1, 0x3d, 0xa8, - 0x1d, 0x7b, 0x21, 0x19, 0xe9, 0x8b, 0xd5, 0xb6, 0x79, 0x67, 0xbf, 0xff, 0x73, 0xc5, 0x75, 0xcd, - 0xac, 0x4c, 0x66, 0x9e, 0x5e, 0x62, 0xc2, 0x68, 0x49, 0xb9, 0xff, 0xa1, 0xc7, 0xdf, 0x9a, 0x4f, - 0xb6, 0x1a, 0x3b, 0x7f, 0x2e, 0x41, 0x7d, 0x3f, 0x12, 0x98, 0x1d, 0x7b, 0xbe, 0x7a, 0x8c, 0xe9, - 0xe6, 0x80, 0x09, 0x92, 0xa1, 0xe4, 0x4a, 0x15, 0x3a, 0xad, 0x50, 0x8d, 0x65, 0xde, 0x49, 0xc1, - 0xa5, 0x71, 0x5a, 0xb4, 0xa0, 0xcc, 0x84, 0x9b, 0x97, 0x91, 0x91, 0x0e, 0x45, 0x62, 0xea, 0x03, - 0x39, 0x94, 0x06, 0x4f, 0xce, 0xa4, 0x80, 0x89, 0x8a, 0xa1, 0x54, 0xd5, 0xed, 0x13, 0x35, 0x51, - 0xd3, 0x4e, 0x18, 0xd2, 0x79, 0x0a, 0x90, 0xe2, 0xe5, 0xb2, 0x76, 0xcb, 0x28, 0x53, 0x3e, 0x58, - 0x0c, 0x96, 0xef, 0xe6, 0x44, 0x9c, 0x6f, 0x61, 0xce, 0xa5, 0x89, 0xd0, 0x97, 0x01, 0x9b, 0x77, - 0x5d, 0xdd, 0x55, 0x63, 0x69, 0x75, 0xe8, 0x09, 0x7c, 0xe6, 0x8d, 0x6d, 0xe8, 0x0c, 0x99, 0x0b, - 0x4c, 0xa5, 0x10, 0x18, 0xf9, 0x7a, 0x55, 0x8f, 0x33, 0xe5, 0x54, 0xdd, 0x35, 0x94, 0xfc, 0x08, - 0x71, 0x9f, 0xc6, 0x58, 0xb9, 0xd5, 0x72, 0x35, 0xe1, 0xdc, 0x87, 0x9a, 0x32, 0x2e, 0x8f, 0x8d, - 0x19, 0x19, 0xcc, 0x0d, 0x8d, 0x59, 0xf1, 0x5c, 0x33, 0xe5, 0xec, 0xd9, 0xf7, 0x65, 0xe6, 0x8a, - 0x39, 0xce, 0xf7, 0xa1, 0x4e, 0x2c, 0xcf, 0x24, 0xc1, 0x29, 0xaf, 0x33, 0x09, 0x67, 0x07, 0x96, - 0x9f, 0x07, 0xc1, 0x77, 0xd5, 0xb2, 0x67, 0x9b, 0x30, 0xdf, 0x55, 0xd1, 0x13, 0x58, 0xd6, 0x7e, - 0x69, 0x3f, 0xad, 0x96, 0x1f, 0x40, 0x8d, 0xd9, 0x98, 0x94, 0xb2, 0xae, 0x95, 0x11, 0x32, 0x73, - 0xf2, 0xb2, 0xc8, 0xc7, 0x77, 0xb6, 0xa5, 0xf6, 0xb2, 0x2c, 0x43, 0x47, 0x4e, 0x14, 0x74, 0x3a, - 0xbf, 0x85, 0xe5, 0x57, 0xd1, 0x88, 0x44, 0x78, 0xbb, 0x7f, 0xf8, 0x12, 0xa7, 0xd9, 0x16, 0x41, - 0x55, 0x96, 0x52, 0xca, 0xd0, 0x82, 0xab, 0xc6, 0x32, 0xfd, 0x44, 0x47, 0x03, 0x3f, 0x4e, 0xb8, - 0x69, 0x13, 0xd5, 0xa2, 0xa3, 0xed, 0x38, 0xe1, 0xe8, 0x03, 0x90, 0x9f, 0xf4, 0x01, 0x8d, 0x46, - 0x63, 0xb5, 0xfb, 0x0b, 0xee, 0xbc, 0x1f, 0x27, 0xaf, 0xa2, 0xd1, 0xd8, 0xf9, 0xb1, 0x7a, 0x18, - 0x63, 0x1c, 0xb8, 0x5e, 0x14, 0xd0, 0x70, 0x07, 0x9f, 0xe6, 0x2c, 0xa4, 0x8f, 0x30, 0x9b, 0x6b, - 0x9f, 0xc0, 0xf2, 0x9e, 0x9c, 0xdc, 0xc1, 0xc2, 0x23, 0xa3, 0x9c, 0xdf, 0xed, 0x10, 0x87, 0x83, - 0xa3, 0x11, 0xf5, 0xdf, 0x0e, 0x64, 0xce, 0x34, 0xb0, 0x64, 0xf1, 0xb0, 0x25, 0x99, 0x07, 0xe4, - 0x1b, 0x19, 0xfd, 0x95, 0xe2, 0x62, 0x93, 0xd4, 0x1f, 0xc0, 0x4a, 0x71, 0xb5, 0x2e, 0xaa, 0x4d, - 0xf5, 0xd3, 0xc9, 0xeb, 0x50, 0x65, 0xb3, 0xcc, 0x91, 0xf3, 0x26, 0x8f, 0xa9, 0x63, 0xcd, 0xc8, - 0x29, 0x66, 0xe9, 0x7d, 0x57, 0x94, 0x7c, 0xad, 0xea, 0xd1, 0x80, 0xc6, 0x82, 0xd0, 0x34, 0x3b, - 0xb6, 0x34, 0xf7, 0x95, 0x66, 0xe6, 0x4e, 0x7f, 0xa5, 0x70, 0xfa, 0x57, 0xa1, 0x76, 0xcc, 0xc5, - 0x38, 0x4e, 0x6f, 0x85, 0xa6, 0xe4, 0xfd, 0xb2, 0xfa, 0xe6, 0x94, 0x3e, 0x4b, 0xa2, 0x0f, 0xa1, - 0x11, 0xd2, 0x24, 0x12, 0x83, 0x98, 0x92, 0x48, 0x98, 0x3b, 0x0f, 0x8a, 0xd5, 0x97, 0x1c, 0xe7, - 0xf7, 0x25, 0xa8, 0xe9, 0xfe, 0xa5, 0x7c, 0x77, 0xa4, 0x1f, 0x90, 0x32, 0x51, 0x1f, 0x63, 0x65, - 0xcb, 0x24, 0x27, 0x65, 0xe9, 0x26, 0xcc, 0x9f, 0x86, 0x83, 0xd8, 0x13, 0x27, 0x16, 0xda, 0x69, - 0xd8, 0xf7, 0xc4, 0x89, 0xf4, 0x2c, 0xfb, 0x0e, 0xa9, 0x79, 0x0d, 0xb1, 0x95, 0x72, 0x95, 0xd8, - 0x85, 0x48, 0x9d, 0x5f, 0xcb, 0xe7, 0x56, 0xda, 0xbb, 0x5b, 0x82, 0x4a, 0x92, 0x82, 0x91, 0x43, - 0xc9, 0x19, 0xa6, 0x5f, 0x30, 0x39, 0x44, 0xf7, 0xa0, 0xed, 0x05, 0x01, 0x91, 0xcb, 0xbd, 0xd1, - 0x1e, 0x09, 0x6c, 0x03, 0x6a, 0x82, 0xfb, 0x49, 0x0f, 0x16, 0x6c, 0x32, 0x47, 0x35, 0x28, 0x9f, - 0x3e, 0x5a, 0xfa, 0x9e, 0xfa, 0xff, 0xc9, 0x52, 0x69, 0xf3, 0xaf, 0x6d, 0x68, 0x3e, 0x1f, 0xe2, - 0x48, 0x98, 0xc7, 0x01, 0xda, 0x83, 0xc5, 0x89, 0x66, 0x33, 0x32, 0xaf, 0xc5, 0xd9, 0x3d, 0xe8, - 0xde, 0xea, 0x86, 0x6e, 0x5e, 0x6f, 0xd8, 0xe6, 0xf5, 0xc6, 0x6e, 0x18, 0x8b, 0x31, 0xda, 0x85, - 0x76, 0xb1, 0x2d, 0x8b, 0x6e, 0xd9, 0x6f, 0xdd, 0x8c, 0x66, 0xed, 0x85, 0x6a, 0xf6, 0x60, 0x71, - 0xa2, 0x43, 0x6b, 0xf1, 0xcc, 0x6e, 0xdc, 0x5e, 0xa8, 0xe8, 0x19, 0x34, 0x72, 0x2d, 0x59, 0xd4, - 0xd5, 0x4a, 0xa6, 0xbb, 0xb4, 0x17, 0x2a, 0xd8, 0x86, 0x56, 0xa1, 0x4b, 0x8a, 0x7a, 0xc6, 0x9f, - 0x19, 0xad, 0xd3, 0x0b, 0x95, 0x6c, 0x41, 0x23, 0xd7, 0xac, 0xb4, 0x28, 0xa6, 0x3b, 0xa2, 0xbd, - 0x0f, 0x66, 0xcc, 0x98, 0x9b, 0xf9, 0x02, 0x5a, 0x85, 0xd6, 0xa2, 0x05, 0x32, 0xab, 0xad, 0xd9, - 0xbb, 0x35, 0x73, 0xce, 0x68, 0xda, 0x83, 0xc5, 0x89, 0x46, 0xa3, 0x0d, 0xee, 0xec, 0xfe, 0xe3, - 0x85, 0x6e, 0x7d, 0xa1, 0x36, 0x3b, 0x57, 0x59, 0xe7, 0x36, 0x7b, 0xba, 0xad, 0xd8, 0xbb, 0x3d, - 0x7b, 0xd2, 0xa0, 0xda, 0x85, 0x76, 0xb1, 0xa3, 0x68, 0x95, 0xcd, 0xec, 0x33, 0x5e, 0x7e, 0x72, - 0x0a, 0xcd, 0xc5, 0xec, 0xe4, 0xcc, 0xea, 0x39, 0x5e, 0xa8, 0xe8, 0x39, 0x80, 0x29, 0xc0, 0x03, - 0x12, 0xa5, 0x5b, 0x36, 0x55, 0xf8, 0xa7, 0x5b, 0x36, 0xa3, 0x58, 0x7f, 0x06, 0xa0, 0xeb, 0xe6, - 0x80, 0x26, 0x02, 0xdd, 0xb4, 0x30, 0x26, 0x8a, 0xf5, 0x5e, 0x77, 0x7a, 0x62, 0x4a, 0x01, 0x66, - 0xec, 0x2a, 0x0a, 0x9e, 0x02, 0x64, 0xf5, 0xb8, 0x55, 0x30, 0x55, 0xa1, 0x5f, 0x12, 0x83, 0x66, - 0xbe, 0xfa, 0x46, 0xc6, 0xd7, 0x19, 0x15, 0xf9, 0x85, 0x2a, 0x1e, 0x43, 0x33, 0x5f, 0x2c, 0x58, - 0x15, 0x33, 0x0a, 0x88, 0xde, 0xe4, 0x47, 0x1e, 0xfd, 0xcc, 0x1e, 0xd4, 0x8c, 0x55, 0x38, 0xa8, - 0xff, 0x95, 0x86, 0x89, 0x22, 0xa3, 0x98, 0x47, 0xde, 0xaf, 0xe1, 0xa7, 0xd0, 0xcc, 0x57, 0x17, - 0x16, 0xff, 0x8c, 0x8a, 0xa3, 0x57, 0xa8, 0x30, 0xd0, 0x33, 0x68, 0x17, 0x2b, 0x0b, 0x94, 0xbb, - 0x94, 0x53, 0xf5, 0x46, 0x6f, 0x69, 0xc2, 0x30, 0x47, 0x0f, 0x01, 0xb2, 0x0a, 0xc4, 0xee, 0xdd, - 0x54, 0x4d, 0x32, 0x61, 0x75, 0x1b, 0x5a, 0x85, 0x17, 0x8b, 0xcd, 0x12, 0xb3, 0x9e, 0x31, 0x97, - 0x25, 0xf1, 0xe2, 0x0b, 0xc2, 0x42, 0x9f, 0xf9, 0xae, 0xb8, 0xec, 0xf4, 0xe4, 0xab, 0x25, 0x1b, - 0xba, 0x19, 0x15, 0xd4, 0x7b, 0x6e, 0x73, 0xbe, 0x22, 0xca, 0xdd, 0xe6, 0x19, 0x85, 0xd2, 0x85, - 0x8a, 0x5e, 0xc0, 0xe2, 0x1e, 0x16, 0xf9, 0x92, 0xc7, 0xc2, 0x99, 0x51, 0x43, 0xf5, 0x7a, 0xb3, - 0xa6, 0xf4, 0x95, 0xda, 0x6a, 0xfe, 0xfd, 0xdd, 0x9d, 0xd2, 0x3f, 0xde, 0xdd, 0x29, 0xfd, 0xeb, - 0xdd, 0x9d, 0xd2, 0x51, 0x4d, 0xd9, 0x79, 0xf8, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x40, 0x35, - 0xb4, 0xc7, 0xea, 0x1d, 0x00, 0x00, + // 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, } diff --git a/protocols/grpc/agent.proto b/protocols/grpc/agent.proto index 7fc4ddec3c..0ddacca8da 100644 --- a/protocols/grpc/agent.proto +++ b/protocols/grpc/agent.proto @@ -351,6 +351,21 @@ message ReseedRandomDevRequest { bytes data = 2; } +// AgentDetails provides information to the client about the running agent. +message AgentDetails { + // Semantic version of agent (see https://semver.org). + string version = 1; + + // Set if the agent is running as PID 1. + bool init_daemon = 2; + + // List of available device handlers. + repeated string device_handlers = 3; + + // List of available storage handlers. + repeated string storage_handlers = 4; +} + message GuestDetailsRequest { // 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 @@ -361,6 +376,8 @@ message GuestDetailsRequest { message GuestDetailsResponse { // MemBlockSizeBytes returns the system memory block size in bytes. uint64 mem_block_size_bytes = 1; + + AgentDetails agent_details = 2; } // Storage represents both the rootfs of the container, and any volume that