diff --git a/agent.go b/agent.go index 2d2c2932a2..838a372f03 100644 --- a/agent.go +++ b/agent.go @@ -144,6 +144,7 @@ type sandbox struct { sandboxPidNs bool storages map[string]*sandboxStorage stopServer chan struct{} + oomEvents chan string } var agentFields = logrus.Fields{ @@ -814,6 +815,19 @@ func (s *sandbox) listenToUdevEvents() { } } +func (s *sandbox) runOOMEventMonitor(ch <-chan struct{}, containerID string) { + go func() { + for { + _, ok := <-ch + if !ok { + return + } + agentLog.WithField("container-id", containerID).Info("Received OOM event") + s.oomEvents <- containerID + } + }() +} + // This loop is meant to be run inside a separate Go routine. func (s *sandbox) signalHandlerLoop(sigCh chan os.Signal, errCh chan error) { // Lock OS thread as subreaper is a thread local capability @@ -1537,6 +1551,7 @@ func realMain() error { deviceWatchers: make(map[string](chan string)), storages: make(map[string]*sandboxStorage), stopServer: make(chan struct{}), + oomEvents: make(chan string), } rootSpan, rootContext, err = setupTracing(agentName) diff --git a/agent_test.go b/agent_test.go index 6044d179fc..0cd73763cd 100644 --- a/agent_test.go +++ b/agent_test.go @@ -971,3 +971,21 @@ func TestSetupDebugConsole(t *testing.T) { assert.NoError(err, msg) } } + +func TestRunOOMEventMonitor(t *testing.T) { + assert := assert.New(t) + + cid := "foo" + eventChan := make(chan struct{}) + s := &sandbox{ + oomEvents: make(chan string), + } + + s.runOOMEventMonitor(eventChan, cid) + + eventChan <- struct{}{} + oomEvent := <-s.oomEvents + assert.Equal(cid, oomEvent) + + close(eventChan) +} diff --git a/grpc.go b/grpc.go index 59572314cd..6fc7bef1b2 100644 --- a/grpc.go +++ b/grpc.go @@ -861,6 +861,13 @@ func (a *agentGRPC) StartContainer(ctx context.Context, req *pb.StartContainerRe return emptyResp, err } + // Add the container to the OOM event monitor + oomCh, err := ctr.container.NotifyOOM() + if err != nil { + return emptyResp, err + } + a.sandbox.runOOMEventMonitor(oomCh, req.ContainerId) + return emptyResp, nil } @@ -1792,6 +1799,11 @@ func (a *agentGRPC) StopTracing(ctx context.Context, req *pb.StopTracingRequest) return emptyResp, nil } +func (a *agentGRPC) GetOOMEvent(ctx context.Context, req *pb.GetOOMEventRequest) (*pb.OOMEvent, error) { + containerID := <-a.sandbox.oomEvents + return &pb.OOMEvent{ContainerId: containerID}, nil +} + // createExtendedPipe creates a pipe. // Optionally extends the pipe if containerPipeSize is positive. func createExtendedPipe() (*os.File, *os.File, error) { diff --git a/grpc_test.go b/grpc_test.go index e69102b059..0c8c5e507e 100644 --- a/grpc_test.go +++ b/grpc_test.go @@ -1821,6 +1821,53 @@ func TestCreateExtendedPipe(t *testing.T) { assert.Equal(containerPipeSize, size) } +func TestGetOOMEvent(t *testing.T) { + assert := assert.New(t) + + a := &agentGRPC{ + sandbox: &sandbox{ + oomEvents: make(chan string), + }, + } + + cid1 := "foo" + cid2 := "bar" + + cid1EventChan := make(chan struct{}) + cid2EventChan := make(chan struct{}) + + // Start the oom monitors + a.sandbox.runOOMEventMonitor(cid1EventChan, cid1) + a.sandbox.runOOMEventMonitor(cid2EventChan, cid2) + + // Test sending two oom events + cid1EventChan <- struct{}{} + + req := &pb.GetOOMEventRequest{} + + // Retrieve both events + oomEventRes, err := a.GetOOMEvent(context.Background(), req) + assert.NoError(err) + assert.Equal(cid1, oomEventRes.ContainerId) + + cid2EventChan <- struct{}{} + + oomEventRes, err = a.GetOOMEvent(context.Background(), req) + assert.NoError(err) + assert.Equal(cid2, oomEventRes.ContainerId) + + close(cid1EventChan) + + cid2EventChan <- struct{}{} + + // Ensure that cid2 still works + oomEventRes, err = a.GetOOMEvent(context.Background(), req) + assert.NoError(err) + assert.Equal(cid2, oomEventRes.ContainerId) + + close(cid2EventChan) +} + func getPipeSize(f *os.File) (uint32, error) { r1, _, err := syscall.Syscall(syscall.SYS_FCNTL, f.Fd(), syscall.F_GETPIPE_SZ, 0) return uint32(r1), err diff --git a/protocols/grpc/agent.pb.go b/protocols/grpc/agent.pb.go index 77e6d1bc97..bf48f7407f 100644 --- a/protocols/grpc/agent.pb.go +++ b/protocols/grpc/agent.pb.go @@ -63,6 +63,8 @@ CopyFileRequest StartTracingRequest StopTracingRequest + GetOOMEventRequest + OOMEvent CheckRequest HealthCheckResponse VersionCheckResponse @@ -1834,6 +1836,30 @@ func (m *StopTracingRequest) String() string { return proto.CompactTe func (*StopTracingRequest) ProtoMessage() {} func (*StopTracingRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{52} } +type GetOOMEventRequest struct { +} + +func (m *GetOOMEventRequest) Reset() { *m = GetOOMEventRequest{} } +func (m *GetOOMEventRequest) String() string { return proto.CompactTextString(m) } +func (*GetOOMEventRequest) ProtoMessage() {} +func (*GetOOMEventRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{53} } + +type OOMEvent struct { + ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"` +} + +func (m *OOMEvent) Reset() { *m = OOMEvent{} } +func (m *OOMEvent) String() string { return proto.CompactTextString(m) } +func (*OOMEvent) ProtoMessage() {} +func (*OOMEvent) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{54} } + +func (m *OOMEvent) GetContainerId() string { + if m != nil { + return m.ContainerId + } + return "" +} + func init() { proto.RegisterType((*CreateContainerRequest)(nil), "grpc.CreateContainerRequest") proto.RegisterType((*StartContainerRequest)(nil), "grpc.StartContainerRequest") @@ -1888,6 +1914,8 @@ func init() { proto.RegisterType((*CopyFileRequest)(nil), "grpc.CopyFileRequest") proto.RegisterType((*StartTracingRequest)(nil), "grpc.StartTracingRequest") proto.RegisterType((*StopTracingRequest)(nil), "grpc.StopTracingRequest") + proto.RegisterType((*GetOOMEventRequest)(nil), "grpc.GetOOMEventRequest") + proto.RegisterType((*OOMEvent)(nil), "grpc.OOMEvent") } // Reference imports to suppress errors if they are not otherwise used. @@ -1942,6 +1970,7 @@ type AgentServiceClient interface { MemHotplugByProbe(ctx context.Context, in *MemHotplugByProbeRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) SetGuestDateTime(ctx context.Context, in *SetGuestDateTimeRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) + GetOOMEvent(ctx context.Context, in *GetOOMEventRequest, opts ...grpc1.CallOption) (*OOMEvent, error) } type agentServiceClient struct { @@ -2222,6 +2251,15 @@ func (c *agentServiceClient) CopyFile(ctx context.Context, in *CopyFileRequest, return out, nil } +func (c *agentServiceClient) GetOOMEvent(ctx context.Context, in *GetOOMEventRequest, opts ...grpc1.CallOption) (*OOMEvent, error) { + out := new(OOMEvent) + err := grpc1.Invoke(ctx, "/grpc.AgentService/GetOOMEvent", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // Server API for AgentService service type AgentServiceServer interface { @@ -2266,6 +2304,7 @@ type AgentServiceServer interface { MemHotplugByProbe(context.Context, *MemHotplugByProbeRequest) (*google_protobuf2.Empty, error) SetGuestDateTime(context.Context, *SetGuestDateTimeRequest) (*google_protobuf2.Empty, error) CopyFile(context.Context, *CopyFileRequest) (*google_protobuf2.Empty, error) + GetOOMEvent(context.Context, *GetOOMEventRequest) (*OOMEvent, error) } func RegisterAgentServiceServer(s *grpc1.Server, srv AgentServiceServer) { @@ -2812,6 +2851,24 @@ func _AgentService_CopyFile_Handler(srv interface{}, ctx context.Context, dec fu return interceptor(ctx, in, info, handler) } +func _AgentService_GetOOMEvent_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) { + in := new(GetOOMEventRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AgentServiceServer).GetOOMEvent(ctx, in) + } + info := &grpc1.UnaryServerInfo{ + Server: srv, + FullMethod: "/grpc.AgentService/GetOOMEvent", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AgentServiceServer).GetOOMEvent(ctx, req.(*GetOOMEventRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _AgentService_serviceDesc = grpc1.ServiceDesc{ ServiceName: "grpc.AgentService", HandlerType: (*AgentServiceServer)(nil), @@ -2936,6 +2993,10 @@ var _AgentService_serviceDesc = grpc1.ServiceDesc{ MethodName: "CopyFile", Handler: _AgentService_CopyFile_Handler, }, + { + MethodName: "GetOOMEvent", + Handler: _AgentService_GetOOMEvent_Handler, + }, }, Streams: []grpc1.StreamDesc{}, Metadata: "agent.proto", @@ -5070,6 +5131,48 @@ func (m *StopTracingRequest) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *GetOOMEventRequest) 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 *GetOOMEventRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + return i, nil +} + +func (m *OOMEvent) 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 *OOMEvent) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.ContainerId) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintAgent(dAtA, i, uint64(len(m.ContainerId))) + i += copy(dAtA[i:], m.ContainerId) + } + return i, nil +} + func encodeVarintAgent(dAtA []byte, offset int, v uint64) int { for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) @@ -5998,6 +6101,22 @@ func (m *StopTracingRequest) Size() (n int) { return n } +func (m *GetOOMEventRequest) Size() (n int) { + var l int + _ = l + return n +} + +func (m *OOMEvent) Size() (n int) { + var l int + _ = l + l = len(m.ContainerId) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } + return n +} + func sovAgent(x uint64) (n int) { for { n++ @@ -12744,6 +12863,135 @@ func (m *StopTracingRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *GetOOMEventRequest) 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: GetOOMEventRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GetOOMEventRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + 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 *OOMEvent) 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: OOMEvent: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: OOMEvent: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ContainerId", 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.ContainerId = 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 skipAgent(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 @@ -12852,184 +13100,186 @@ var ( func init() { proto.RegisterFile("agent.proto", fileDescriptorAgent) } var fileDescriptorAgent = []byte{ - // 2862 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x39, 0x4b, 0x6f, 0x1c, 0xc7, - 0xd1, 0xd8, 0x07, 0x97, 0xbb, 0xb5, 0x2f, 0x6e, 0x93, 0xa2, 0x56, 0x2b, 0x5b, 0x9f, 0x3c, 0xb6, - 0x65, 0xfa, 0x73, 0xbc, 0xb4, 0x65, 0x23, 0x7e, 0xc1, 0x11, 0xc4, 0x47, 0x44, 0xc6, 0x56, 0xc4, - 0x0c, 0x45, 0x38, 0x40, 0x10, 0x0c, 0x86, 0x33, 0xcd, 0x65, 0x9b, 0x3b, 0xd3, 0xe3, 0x9e, 0x1e, - 0x8a, 0xeb, 0x00, 0x39, 0x26, 0xb7, 0x5c, 0x02, 0xe4, 0x96, 0x3f, 0x10, 0xe4, 0x96, 0x63, 0xae, - 0x39, 0x18, 0x39, 0xe5, 0x17, 0x04, 0x81, 0x7f, 0x42, 0x7e, 0x41, 0xd0, 0xaf, 0x79, 0xec, 0x0e, - 0x29, 0x84, 0x20, 0x90, 0xcb, 0xa2, 0xab, 0xba, 0xba, 0x5e, 0xdd, 0x55, 0x53, 0x55, 0x0b, 0x6d, - 0x77, 0x82, 0x43, 0x3e, 0x8e, 0x18, 0xe5, 0x14, 0xd5, 0x27, 0x2c, 0xf2, 0x46, 0x2d, 0xea, 0x11, - 0x85, 0x18, 0xfd, 0x70, 0x42, 0xf8, 0x69, 0x72, 0x3c, 0xf6, 0x68, 0xb0, 0x79, 0xe6, 0x72, 0xf7, - 0x5d, 0x8f, 0x86, 0xdc, 0x25, 0x21, 0x66, 0xf1, 0xa6, 0x3c, 0xb8, 0x19, 0x9d, 0x4d, 0x36, 0xf9, - 0x2c, 0xc2, 0xb1, 0xfa, 0xd5, 0xe7, 0xee, 0x4e, 0x28, 0x9d, 0x4c, 0xf1, 0xa6, 0x84, 0x8e, 0x93, - 0x93, 0x4d, 0x1c, 0x44, 0x7c, 0xa6, 0x36, 0xad, 0x3f, 0x56, 0x61, 0x7d, 0x9b, 0x61, 0x97, 0xe3, - 0x6d, 0xc3, 0xcd, 0xc6, 0xdf, 0x24, 0x38, 0xe6, 0xe8, 0x35, 0xe8, 0xa4, 0x12, 0x1c, 0xe2, 0x0f, - 0x2b, 0xf7, 0x2b, 0x1b, 0x2d, 0xbb, 0x9d, 0xe2, 0xf6, 0x7d, 0x74, 0x1b, 0x96, 0xf1, 0x05, 0xf6, - 0xc4, 0x6e, 0x55, 0xee, 0x36, 0x04, 0xb8, 0xef, 0xa3, 0xf7, 0xa1, 0x1d, 0x73, 0x46, 0xc2, 0x89, - 0x93, 0xc4, 0x98, 0x0d, 0x6b, 0xf7, 0x2b, 0x1b, 0xed, 0x87, 0x2b, 0x63, 0x61, 0xd2, 0xf8, 0x50, - 0x6e, 0x1c, 0xc5, 0x98, 0xd9, 0x10, 0xa7, 0x6b, 0xf4, 0x00, 0x96, 0x7d, 0x7c, 0x4e, 0x3c, 0x1c, - 0x0f, 0xeb, 0xf7, 0x6b, 0x1b, 0xed, 0x87, 0x1d, 0x45, 0xbe, 0x23, 0x91, 0xb6, 0xd9, 0x44, 0x6f, - 0x43, 0x33, 0xe6, 0x94, 0xb9, 0x13, 0x1c, 0x0f, 0x97, 0x24, 0x61, 0xd7, 0xf0, 0x95, 0x58, 0x3b, - 0xdd, 0x46, 0xaf, 0x40, 0xed, 0xd9, 0xf6, 0xfe, 0xb0, 0x21, 0xa5, 0x83, 0xa6, 0x8a, 0xb0, 0x67, - 0x0b, 0x34, 0x7a, 0x1d, 0xba, 0xb1, 0x1b, 0xfa, 0xc7, 0xf4, 0xc2, 0x89, 0x88, 0x1f, 0xc6, 0xc3, - 0xe5, 0xfb, 0x95, 0x8d, 0xa6, 0xdd, 0xd1, 0xc8, 0x03, 0x81, 0xb3, 0x3e, 0x85, 0x5b, 0x87, 0xdc, - 0x65, 0xfc, 0x1a, 0xde, 0xb1, 0x8e, 0x60, 0xdd, 0xc6, 0x01, 0x3d, 0xbf, 0x96, 0x6b, 0x87, 0xb0, - 0xcc, 0x49, 0x80, 0x69, 0xc2, 0xa5, 0x6b, 0xbb, 0xb6, 0x01, 0xad, 0x3f, 0x57, 0x00, 0xed, 0x5e, - 0x60, 0xef, 0x80, 0x51, 0x0f, 0xc7, 0xf1, 0xff, 0xe8, 0xba, 0xde, 0x82, 0xe5, 0x48, 0x29, 0x30, - 0xac, 0x4b, 0x72, 0x7d, 0x0b, 0x46, 0x2b, 0xb3, 0x6b, 0x7d, 0x0d, 0x6b, 0x87, 0x64, 0x12, 0xba, - 0xd3, 0x1b, 0xd4, 0x77, 0x1d, 0x1a, 0xb1, 0xe4, 0x29, 0x55, 0xed, 0xda, 0x1a, 0xb2, 0x0e, 0x00, - 0x7d, 0xe5, 0x12, 0x7e, 0x73, 0x92, 0xac, 0x77, 0x61, 0xb5, 0xc0, 0x31, 0x8e, 0x68, 0x18, 0x63, - 0xa9, 0x00, 0x77, 0x79, 0x12, 0x4b, 0x66, 0x4b, 0xb6, 0x86, 0x2c, 0x0c, 0x6b, 0x5f, 0x92, 0xd8, - 0x90, 0xe3, 0xff, 0x46, 0x85, 0x75, 0x68, 0x9c, 0x50, 0x16, 0xb8, 0xdc, 0x68, 0xa0, 0x20, 0x84, - 0xa0, 0xee, 0xb2, 0x49, 0x3c, 0xac, 0xdd, 0xaf, 0x6d, 0xb4, 0x6c, 0xb9, 0x16, 0xaf, 0x72, 0x4e, - 0x8c, 0xd6, 0xeb, 0x35, 0xe8, 0x68, 0xbf, 0x3b, 0x53, 0x12, 0x73, 0x29, 0xa7, 0x63, 0xb7, 0x35, - 0x4e, 0x9c, 0xb1, 0x28, 0xac, 0x1f, 0x45, 0xfe, 0x35, 0x03, 0xfe, 0x21, 0xb4, 0x18, 0x8e, 0x69, - 0xc2, 0x44, 0x98, 0x56, 0xe5, 0xbd, 0xaf, 0xa9, 0x7b, 0xff, 0x92, 0x84, 0xc9, 0x85, 0x6d, 0xf6, - 0xec, 0x8c, 0x4c, 0x87, 0x10, 0x8f, 0xaf, 0x13, 0x42, 0x9f, 0xc2, 0xad, 0x03, 0x37, 0x89, 0xaf, - 0xa3, 0xab, 0xf5, 0x99, 0x08, 0xbf, 0x38, 0x09, 0xae, 0x75, 0xf8, 0x4f, 0x15, 0x68, 0x6e, 0x47, - 0xc9, 0x51, 0xec, 0x4e, 0x30, 0xfa, 0x3f, 0x68, 0x73, 0xca, 0xdd, 0xa9, 0x93, 0x08, 0x50, 0x92, - 0xd7, 0x6d, 0x90, 0x28, 0x45, 0x20, 0xdc, 0x8e, 0x99, 0x17, 0x25, 0x9a, 0xa2, 0x7a, 0xbf, 0xb6, - 0x51, 0xb7, 0xdb, 0x0a, 0xa7, 0x48, 0xc6, 0xb0, 0x2a, 0xf7, 0x1c, 0x12, 0x3a, 0x67, 0x98, 0x85, - 0x78, 0x1a, 0x50, 0x1f, 0xcb, 0xf7, 0x5b, 0xb7, 0x07, 0x72, 0x6b, 0x3f, 0xfc, 0x22, 0xdd, 0x40, - 0xff, 0x0f, 0x83, 0x94, 0x5e, 0x04, 0xa5, 0xa4, 0xae, 0x4b, 0xea, 0xbe, 0xa6, 0x3e, 0xd2, 0x68, - 0xeb, 0xd7, 0xd0, 0x7b, 0x7e, 0xca, 0x28, 0xe7, 0x53, 0x12, 0x4e, 0x76, 0x5c, 0xee, 0x8a, 0xec, - 0x11, 0x61, 0x46, 0xa8, 0x1f, 0x6b, 0x6d, 0x0d, 0x88, 0xde, 0x81, 0x01, 0x57, 0xb4, 0xd8, 0x77, - 0x0c, 0x4d, 0x55, 0xd2, 0xac, 0xa4, 0x1b, 0x07, 0x9a, 0xf8, 0x4d, 0xe8, 0x65, 0xc4, 0x22, 0xff, - 0x68, 0x7d, 0xbb, 0x29, 0xf6, 0x39, 0x09, 0xb0, 0x75, 0x2e, 0x7d, 0x25, 0x2f, 0x19, 0xbd, 0x03, - 0xad, 0xcc, 0x0f, 0x15, 0xf9, 0x42, 0x7a, 0xea, 0x85, 0x18, 0x77, 0xda, 0xcd, 0xd4, 0x29, 0x9f, - 0x43, 0x9f, 0xa7, 0x8a, 0x3b, 0xbe, 0xcb, 0xdd, 0xe2, 0xa3, 0x2a, 0x5a, 0x65, 0xf7, 0x78, 0x01, - 0xb6, 0x3e, 0x83, 0xd6, 0x01, 0xf1, 0x63, 0x25, 0x78, 0x08, 0xcb, 0x5e, 0xc2, 0x18, 0x0e, 0xb9, - 0x31, 0x59, 0x83, 0x68, 0x0d, 0x96, 0xa6, 0x24, 0x20, 0x5c, 0x9b, 0xa9, 0x00, 0x8b, 0x02, 0x3c, - 0xc5, 0x01, 0x65, 0x33, 0xe9, 0xb0, 0x35, 0x58, 0xca, 0x5f, 0xae, 0x02, 0xd0, 0x5d, 0x68, 0x05, - 0xee, 0x45, 0x7a, 0xa9, 0x62, 0xa7, 0x19, 0xb8, 0x17, 0x4a, 0xf9, 0x21, 0x2c, 0x9f, 0xb8, 0x64, - 0xea, 0x85, 0x5c, 0x7b, 0xc5, 0x80, 0x99, 0xc0, 0x7a, 0x5e, 0xe0, 0xdf, 0xaa, 0xd0, 0x56, 0x12, - 0x95, 0xc2, 0x6b, 0xb0, 0xe4, 0xb9, 0xde, 0x69, 0x2a, 0x52, 0x02, 0xe8, 0x81, 0x51, 0xa4, 0x9a, - 0x4f, 0xc2, 0x99, 0xa6, 0x46, 0xb5, 0x4d, 0x80, 0xf8, 0x85, 0x1b, 0x69, 0xdd, 0x6a, 0x97, 0x10, - 0xb7, 0x04, 0x8d, 0x52, 0xf7, 0x03, 0xe8, 0xa8, 0x77, 0xa7, 0x8f, 0xd4, 0x2f, 0x39, 0xd2, 0x56, - 0x54, 0xea, 0xd0, 0xeb, 0xd0, 0x4d, 0x62, 0xec, 0x9c, 0x12, 0xcc, 0x5c, 0xe6, 0x9d, 0xce, 0x86, - 0x4b, 0xea, 0x1b, 0x99, 0xc4, 0x78, 0xcf, 0xe0, 0xd0, 0x43, 0x58, 0x12, 0xe9, 0x2f, 0x1e, 0x36, - 0xe4, 0xe7, 0xf8, 0x95, 0x3c, 0x4b, 0x69, 0xea, 0x58, 0xfe, 0xee, 0x86, 0x9c, 0xcd, 0x6c, 0x45, - 0x3a, 0xfa, 0x18, 0x20, 0x43, 0xa2, 0x15, 0xa8, 0x9d, 0xe1, 0x99, 0x8e, 0x43, 0xb1, 0x14, 0xce, - 0x39, 0x77, 0xa7, 0x89, 0xf1, 0xba, 0x02, 0x3e, 0xad, 0x7e, 0x5c, 0xb1, 0x3c, 0xe8, 0x6f, 0x4d, - 0xcf, 0x08, 0xcd, 0x1d, 0x5f, 0x83, 0xa5, 0xc0, 0xfd, 0x9a, 0x32, 0xe3, 0x49, 0x09, 0x48, 0x2c, - 0x09, 0x29, 0x33, 0x2c, 0x24, 0x80, 0x7a, 0x50, 0xa5, 0x91, 0xf4, 0x57, 0xcb, 0xae, 0xd2, 0x28, - 0x13, 0x54, 0xcf, 0x09, 0xb2, 0xfe, 0x59, 0x07, 0xc8, 0xa4, 0x20, 0x1b, 0x46, 0x84, 0x3a, 0x31, - 0x66, 0xa2, 0x04, 0x71, 0x8e, 0x67, 0x1c, 0xc7, 0x0e, 0xc3, 0x5e, 0xc2, 0x62, 0x72, 0x2e, 0xee, - 0x4f, 0x98, 0x7d, 0x4b, 0x99, 0x3d, 0xa7, 0x9b, 0x7d, 0x9b, 0xd0, 0x43, 0x75, 0x6e, 0x4b, 0x1c, - 0xb3, 0xcd, 0x29, 0xb4, 0x0f, 0xb7, 0x32, 0x9e, 0x7e, 0x8e, 0x5d, 0xf5, 0x2a, 0x76, 0xab, 0x29, - 0x3b, 0x3f, 0x63, 0xb5, 0x0b, 0xab, 0x84, 0x3a, 0xdf, 0x24, 0x38, 0x29, 0x30, 0xaa, 0x5d, 0xc5, - 0x68, 0x40, 0xe8, 0xcf, 0xe4, 0x81, 0x8c, 0xcd, 0x01, 0xdc, 0xc9, 0x59, 0x29, 0xc2, 0x3d, 0xc7, - 0xac, 0x7e, 0x15, 0xb3, 0xf5, 0x54, 0x2b, 0x91, 0x0f, 0x32, 0x8e, 0x3f, 0x81, 0x75, 0x42, 0x9d, - 0x17, 0x2e, 0xe1, 0xf3, 0xec, 0x96, 0x5e, 0x62, 0xa4, 0xf8, 0xe8, 0x16, 0x79, 0x29, 0x23, 0x03, - 0xcc, 0x26, 0x05, 0x23, 0x1b, 0x2f, 0x31, 0xf2, 0xa9, 0x3c, 0x90, 0xb1, 0x79, 0x0c, 0x03, 0x42, - 0xe7, 0xb5, 0x59, 0xbe, 0x8a, 0x49, 0x9f, 0xd0, 0xa2, 0x26, 0x5b, 0x30, 0x88, 0xb1, 0xc7, 0x29, - 0xcb, 0x3f, 0x82, 0xe6, 0x55, 0x2c, 0x56, 0x34, 0x7d, 0xca, 0xc3, 0xfa, 0x05, 0x74, 0xf6, 0x92, - 0x09, 0xe6, 0xd3, 0xe3, 0x34, 0x19, 0xdc, 0x58, 0xfe, 0xb1, 0xfe, 0x5d, 0x85, 0xf6, 0xf6, 0x84, - 0xd1, 0x24, 0x2a, 0xe4, 0x64, 0x15, 0xa4, 0xf3, 0x39, 0x59, 0x92, 0xc8, 0x9c, 0xac, 0x88, 0x3f, - 0x84, 0x4e, 0x20, 0x43, 0x57, 0xd3, 0xab, 0x3c, 0x34, 0x58, 0x08, 0x6a, 0xbb, 0x1d, 0xe4, 0x92, - 0xd9, 0x18, 0x20, 0x22, 0x7e, 0xac, 0xcf, 0xa8, 0x74, 0xd4, 0xd7, 0x15, 0xa1, 0x49, 0xd1, 0x76, - 0x2b, 0x4a, 0xb3, 0xf5, 0xfb, 0xd0, 0x3e, 0x16, 0x4e, 0xd2, 0x07, 0x0a, 0xc9, 0x28, 0xf3, 0x9e, - 0x0d, 0xc7, 0x59, 0x10, 0xee, 0x41, 0xf7, 0x54, 0xb9, 0x4c, 0x1f, 0x52, 0x6f, 0xe8, 0x75, 0x6d, - 0x49, 0x66, 0xef, 0x38, 0xef, 0x59, 0x75, 0x01, 0x9d, 0xd3, 0x1c, 0x6a, 0x74, 0x08, 0x83, 0x05, - 0x92, 0x92, 0x1c, 0xb4, 0x91, 0xcf, 0x41, 0xed, 0x87, 0x48, 0x09, 0xca, 0x9f, 0xcc, 0xe7, 0xa5, - 0xdf, 0x55, 0xa1, 0xf3, 0x53, 0xcc, 0x5f, 0x50, 0x76, 0xa6, 0xf4, 0x45, 0x50, 0x0f, 0xdd, 0x00, - 0x6b, 0x8e, 0x72, 0x8d, 0xee, 0x40, 0x93, 0x5d, 0xa8, 0x04, 0xa2, 0xef, 0x73, 0x99, 0x5d, 0xc8, - 0xc4, 0x80, 0x5e, 0x05, 0x60, 0x17, 0x4e, 0xe4, 0x7a, 0x67, 0x58, 0x7b, 0xb0, 0x6e, 0xb7, 0xd8, - 0xc5, 0x81, 0x42, 0x88, 0xa7, 0xc0, 0x2e, 0x1c, 0xcc, 0x18, 0x65, 0xb1, 0xce, 0x55, 0x4d, 0x76, - 0xb1, 0x2b, 0x61, 0x7d, 0xd6, 0x67, 0x34, 0x8a, 0xb0, 0x2f, 0x73, 0xb4, 0x3c, 0xbb, 0xa3, 0x10, - 0x42, 0x2a, 0x37, 0x52, 0x1b, 0x4a, 0x2a, 0xcf, 0xa4, 0xf2, 0x4c, 0xea, 0xb2, 0x3a, 0xc9, 0xf3, - 0x52, 0x79, 0x2a, 0xb5, 0xa9, 0xa4, 0xf2, 0x9c, 0x54, 0x9e, 0x49, 0x6d, 0x99, 0xb3, 0x5a, 0xaa, - 0xf5, 0xdb, 0x0a, 0xac, 0xcf, 0x17, 0x7e, 0xba, 0x4c, 0xfd, 0x10, 0x3a, 0x9e, 0xbc, 0xaf, 0xc2, - 0x9b, 0x1c, 0x2c, 0xdc, 0xa4, 0xdd, 0xf6, 0x72, 0xcf, 0xf8, 0x23, 0xe8, 0x86, 0xca, 0xc1, 0xe9, - 0xd3, 0xac, 0x65, 0xf7, 0x92, 0xf7, 0xbd, 0xdd, 0x09, 0x73, 0x90, 0xe5, 0x03, 0xfa, 0x8a, 0x11, - 0x8e, 0x0f, 0x39, 0xc3, 0x6e, 0x70, 0x13, 0x0d, 0x08, 0x82, 0xba, 0xac, 0x56, 0x6a, 0xb2, 0xbe, - 0x96, 0x6b, 0xeb, 0x2d, 0x58, 0x2d, 0x48, 0xd1, 0xb6, 0xae, 0x40, 0x6d, 0x8a, 0x43, 0xc9, 0xbd, - 0x6b, 0x8b, 0xa5, 0xe5, 0xc2, 0xc0, 0xc6, 0xae, 0x7f, 0x73, 0xda, 0x68, 0x11, 0xb5, 0x4c, 0xc4, - 0x06, 0xa0, 0xbc, 0x08, 0xad, 0x8a, 0xd1, 0xba, 0x92, 0xd3, 0xfa, 0x19, 0x0c, 0xb6, 0xa7, 0x34, - 0xc6, 0x87, 0xdc, 0x27, 0xe1, 0x4d, 0x74, 0x4c, 0xbf, 0x82, 0xd5, 0xe7, 0x7c, 0xf6, 0x95, 0x60, - 0x16, 0x93, 0x6f, 0xf1, 0x0d, 0xd9, 0xc7, 0xe8, 0x0b, 0x63, 0x1f, 0xa3, 0x2f, 0x44, 0xb3, 0xe4, - 0xd1, 0x69, 0x12, 0x84, 0x32, 0x14, 0xba, 0xb6, 0x86, 0xac, 0x2d, 0xe8, 0xa8, 0x1a, 0xfa, 0x29, - 0xf5, 0x93, 0x29, 0x2e, 0x8d, 0xc1, 0x7b, 0x00, 0x91, 0xcb, 0xdc, 0x00, 0x73, 0xcc, 0xd4, 0x1b, - 0x6a, 0xd9, 0x39, 0x8c, 0xf5, 0x87, 0x2a, 0xac, 0xa9, 0x91, 0xc8, 0xa1, 0x9a, 0x04, 0x18, 0x13, - 0x46, 0xd0, 0x3c, 0xa5, 0x31, 0xcf, 0x31, 0x4c, 0x61, 0xa1, 0xa2, 0x1f, 0x1a, 0x6e, 0x62, 0x59, - 0x98, 0x53, 0xd4, 0xae, 0x9e, 0x53, 0x2c, 0x4c, 0x22, 0xea, 0x8b, 0x93, 0x08, 0x11, 0x6d, 0x86, - 0x88, 0xa8, 0x18, 0x6f, 0xd9, 0x2d, 0x8d, 0xd9, 0xf7, 0xd1, 0x03, 0xe8, 0x4f, 0x84, 0x96, 0xce, - 0x29, 0xa5, 0x67, 0x4e, 0xe4, 0xf2, 0x53, 0x19, 0xea, 0x2d, 0xbb, 0x2b, 0xd1, 0x7b, 0x94, 0x9e, - 0x1d, 0xb8, 0xfc, 0x14, 0x7d, 0x02, 0x3d, 0x5d, 0x06, 0x06, 0xd2, 0x45, 0xb1, 0xfe, 0xf8, 0xe9, - 0x28, 0xca, 0x7b, 0xcf, 0xee, 0x9e, 0xe5, 0xa0, 0xd8, 0xba, 0x0d, 0xb7, 0x76, 0x70, 0xcc, 0x19, - 0x9d, 0x15, 0x1d, 0x63, 0xfd, 0x08, 0x60, 0x3f, 0xe4, 0x98, 0x9d, 0xb8, 0x1e, 0x8e, 0xd1, 0x7b, - 0x79, 0x48, 0x17, 0x47, 0x2b, 0x63, 0x35, 0x91, 0x4a, 0x37, 0xec, 0x1c, 0x8d, 0x35, 0x86, 0x86, - 0x4d, 0x13, 0x91, 0x8e, 0xde, 0x30, 0x2b, 0x7d, 0xae, 0xa3, 0xcf, 0x49, 0xa4, 0xad, 0xf7, 0xac, - 0x3d, 0xd3, 0xc2, 0x66, 0xec, 0xf4, 0x15, 0x8d, 0xa1, 0x45, 0x0c, 0x4e, 0x67, 0x95, 0x45, 0xd1, - 0x19, 0x89, 0xf5, 0x19, 0xac, 0x2a, 0x4e, 0x8a, 0xb3, 0x61, 0xf3, 0x06, 0x34, 0x98, 0x51, 0xa3, - 0x92, 0x8d, 0xa2, 0x34, 0x91, 0xde, 0x13, 0xfe, 0x10, 0x1d, 0x75, 0x66, 0x88, 0xf1, 0xc7, 0x2a, - 0x0c, 0xc4, 0x46, 0x81, 0xa7, 0xf5, 0x4b, 0x58, 0x7d, 0x16, 0x4e, 0x49, 0x88, 0xb7, 0x0f, 0x8e, - 0x9e, 0xe2, 0x34, 0xee, 0x11, 0xd4, 0x45, 0x7d, 0x24, 0x05, 0x35, 0x6d, 0xb9, 0x16, 0x81, 0x10, - 0x1e, 0x3b, 0x5e, 0x94, 0xc4, 0x7a, 0xf6, 0xd3, 0x08, 0x8f, 0xb7, 0xa3, 0x24, 0x16, 0x89, 0x5c, - 0x7c, 0xc8, 0x69, 0x38, 0x9d, 0xc9, 0x68, 0x68, 0xda, 0xcb, 0x5e, 0x94, 0x3c, 0x0b, 0xa7, 0x33, - 0xeb, 0x07, 0xb2, 0xdb, 0xc5, 0xd8, 0xb7, 0xdd, 0xd0, 0xa7, 0xc1, 0x0e, 0x3e, 0xcf, 0x49, 0x48, - 0x3b, 0x2b, 0x13, 0xf5, 0xdf, 0x55, 0xa0, 0xf3, 0x78, 0x82, 0x43, 0xbe, 0x83, 0xb9, 0x4b, 0xa6, - 0xb2, 0x7b, 0x3a, 0xc7, 0x2c, 0x26, 0x34, 0xd4, 0x4f, 0xdb, 0x80, 0xa2, 0xf9, 0x25, 0x21, 0xe1, - 0x8e, 0xef, 0xe2, 0x80, 0x86, 0x92, 0x4b, 0xd3, 0x06, 0x81, 0xda, 0x91, 0x18, 0xf4, 0x16, 0xf4, - 0xd5, 0x6c, 0xce, 0x39, 0x75, 0x43, 0x7f, 0x2a, 0x82, 0x4a, 0xcd, 0x2a, 0x7a, 0x0a, 0xbd, 0xa7, - 0xb1, 0xe8, 0x6d, 0x58, 0xd1, 0x4f, 0x3e, 0xa3, 0xac, 0x4b, 0xca, 0xbe, 0xc6, 0x17, 0x48, 0x93, - 0x28, 0xa2, 0x8c, 0xc7, 0x4e, 0x8c, 0x3d, 0x8f, 0x06, 0x91, 0x6e, 0x3d, 0xfa, 0x06, 0x7f, 0xa8, - 0xd0, 0xd6, 0x04, 0x56, 0x9f, 0x08, 0x3b, 0xb5, 0x25, 0xd9, 0x15, 0xf6, 0x02, 0x1c, 0x38, 0xc7, - 0x53, 0xea, 0x9d, 0x39, 0x22, 0x11, 0x69, 0x0f, 0x8b, 0xe2, 0x66, 0x4b, 0x20, 0x0f, 0xc9, 0xb7, - 0xb2, 0xcb, 0x16, 0x54, 0xa7, 0x94, 0x47, 0xd3, 0x64, 0xe2, 0x44, 0x8c, 0x1e, 0x63, 0x6d, 0x62, - 0x3f, 0xc0, 0xc1, 0x9e, 0xc2, 0x1f, 0x08, 0xb4, 0xf5, 0xd7, 0x0a, 0xac, 0x15, 0x25, 0xe9, 0xb4, - 0xba, 0x09, 0x6b, 0x45, 0x51, 0xfa, 0x53, 0xab, 0x4a, 0xb9, 0x41, 0x5e, 0xa0, 0xfa, 0xe8, 0x7e, - 0x04, 0x5d, 0x39, 0xb0, 0x75, 0x7c, 0xc5, 0xa9, 0x58, 0x60, 0xe4, 0xef, 0xc5, 0xee, 0xb8, 0xf9, - 0x5b, 0xfa, 0x04, 0xee, 0x68, 0xf3, 0x9d, 0x45, 0xb5, 0xd5, 0x83, 0x58, 0xd7, 0x04, 0x4f, 0xe7, - 0xb4, 0xff, 0x12, 0x86, 0x19, 0x6a, 0x6b, 0x26, 0x91, 0xc6, 0x57, 0xef, 0xc1, 0xea, 0x9c, 0xb1, - 0x8f, 0x7d, 0x9f, 0xc9, 0x10, 0xac, 0xdb, 0x65, 0x5b, 0xd6, 0x23, 0xb8, 0x7d, 0x88, 0xb9, 0xf2, - 0x86, 0xcb, 0x75, 0xd5, 0xaf, 0x98, 0xad, 0x40, 0xed, 0x10, 0x7b, 0xd2, 0xf8, 0x9a, 0x2d, 0x96, - 0xe2, 0x01, 0x1e, 0xc5, 0xd8, 0x93, 0x56, 0xd6, 0x6c, 0xb9, 0xb6, 0xfe, 0x52, 0x81, 0x65, 0x9d, - 0x08, 0x45, 0x32, 0xf7, 0x19, 0x39, 0xc7, 0x4c, 0x3f, 0x3d, 0x0d, 0xa1, 0x37, 0xa1, 0xa7, 0x56, - 0x0e, 0x8d, 0x38, 0xa1, 0x69, 0x7a, 0xed, 0x2a, 0xec, 0x33, 0x85, 0x94, 0xb3, 0x38, 0x39, 0x6a, - 0xd2, 0x5d, 0x9d, 0x86, 0xe4, 0x40, 0x2d, 0x16, 0xb1, 0x2f, 0xd3, 0x69, 0xcb, 0xd6, 0x90, 0x78, - 0xea, 0x86, 0xdf, 0x92, 0xe4, 0x67, 0x40, 0xf1, 0xd4, 0x03, 0x9a, 0x84, 0xdc, 0x89, 0x28, 0x09, - 0xb9, 0xce, 0x9f, 0x20, 0x51, 0x07, 0x02, 0x63, 0xfd, 0xa6, 0x02, 0x0d, 0x35, 0x8f, 0x16, 0x7d, - 0x64, 0xfa, 0x15, 0xab, 0x12, 0x59, 0x11, 0x48, 0x59, 0xea, 0xcb, 0x25, 0xd7, 0x22, 0x8e, 0xcf, - 0x03, 0x95, 0x8b, 0xb5, 0x6a, 0xe7, 0x81, 0x4c, 0xc2, 0x6f, 0x42, 0x2f, 0xfb, 0x18, 0xca, 0x7d, - 0xa5, 0x62, 0x37, 0xc5, 0x4a, 0xb2, 0x4b, 0x35, 0xb5, 0x7e, 0x2e, 0xda, 0xe7, 0x74, 0x16, 0xbb, - 0x02, 0xb5, 0x24, 0x55, 0x46, 0x2c, 0x05, 0x66, 0x92, 0x7e, 0x46, 0xc5, 0x12, 0x3d, 0x80, 0x9e, - 0xeb, 0xfb, 0x44, 0x1c, 0x77, 0xa7, 0x4f, 0x88, 0x9f, 0x06, 0x69, 0x11, 0x6b, 0xfd, 0xbd, 0x02, - 0xfd, 0x6d, 0x1a, 0xcd, 0x7e, 0x4c, 0xa6, 0x38, 0x97, 0x41, 0xa4, 0x92, 0xfa, 0x2b, 0x2a, 0xd6, - 0xa2, 0x32, 0x3c, 0x21, 0x53, 0xac, 0x42, 0x4b, 0xdd, 0x6c, 0x53, 0x20, 0x64, 0x58, 0x99, 0xcd, - 0x74, 0xc4, 0xd5, 0x55, 0x9b, 0x4f, 0xa9, 0x2f, 0x6b, 0x60, 0x9f, 0x30, 0x27, 0x1d, 0x68, 0x75, - 0xed, 0x65, 0x9f, 0x30, 0xb9, 0xa5, 0x0d, 0x59, 0x92, 0x33, 0xd5, 0xbc, 0x21, 0x0d, 0x85, 0x11, - 0x86, 0xac, 0x43, 0x83, 0x9e, 0x9c, 0xc4, 0x98, 0xcb, 0x6a, 0xb5, 0x66, 0x6b, 0x28, 0x4d, 0x73, - 0xcd, 0x5c, 0x9a, 0xbb, 0x05, 0xab, 0x72, 0x7a, 0xff, 0x9c, 0xb9, 0x1e, 0x09, 0x27, 0x26, 0x15, - 0xaf, 0x01, 0x3a, 0xe4, 0x34, 0x2a, 0x62, 0x1f, 0xfe, 0x7e, 0x45, 0xe7, 0x44, 0xdd, 0xca, 0xa2, - 0x27, 0xd0, 0x9f, 0xfb, 0x6b, 0x04, 0xe9, 0xd9, 0x46, 0xf9, 0x3f, 0x26, 0xa3, 0xf5, 0xb1, 0xfa, - 0xab, 0x65, 0x6c, 0xfe, 0x6a, 0x19, 0xef, 0x06, 0x11, 0x9f, 0xa1, 0x5d, 0xe8, 0x15, 0xff, 0x44, - 0x40, 0x77, 0x4d, 0x29, 0x50, 0xf2, 0xd7, 0xc2, 0xa5, 0x6c, 0x9e, 0x40, 0x7f, 0xee, 0xff, 0x04, - 0xa3, 0x4f, 0xf9, 0xdf, 0x0c, 0x97, 0x32, 0x7a, 0x04, 0xed, 0xdc, 0x1f, 0x08, 0x68, 0xa8, 0x98, - 0x2c, 0xfe, 0xa7, 0x70, 0x29, 0x83, 0x6d, 0xe8, 0x16, 0x66, 0xfa, 0x68, 0xa4, 0xed, 0x29, 0x19, - 0xf4, 0x5f, 0xca, 0x64, 0x0b, 0xda, 0xb9, 0xd1, 0xba, 0xd1, 0x62, 0x71, 0x7e, 0x3f, 0xba, 0x53, - 0xb2, 0xa3, 0x53, 0xef, 0x1e, 0x74, 0x0b, 0x83, 0x70, 0xa3, 0x48, 0xd9, 0x10, 0x7e, 0x74, 0xb7, - 0x74, 0x4f, 0x73, 0x7a, 0x02, 0xfd, 0xb9, 0xb1, 0xb8, 0x71, 0x6e, 0xf9, 0xb4, 0xfc, 0x52, 0xb3, - 0xbe, 0x90, 0x97, 0x9d, 0xeb, 0x7a, 0x72, 0x97, 0xbd, 0x38, 0x04, 0x1f, 0xbd, 0x52, 0xbe, 0xa9, - 0xb5, 0xda, 0x85, 0x5e, 0x71, 0xfe, 0x6d, 0x98, 0x95, 0x4e, 0xc5, 0xaf, 0x7e, 0x39, 0x85, 0x51, - 0x78, 0xf6, 0x72, 0xca, 0x26, 0xe4, 0x97, 0x32, 0x7a, 0x0c, 0xa0, 0x7b, 0x1c, 0x9f, 0x84, 0xe9, - 0x95, 0x2d, 0xf4, 0x56, 0xe9, 0x95, 0x95, 0xf4, 0x43, 0x8f, 0x00, 0x54, 0x6b, 0xe2, 0xd3, 0x84, - 0xa3, 0xdb, 0x46, 0x8d, 0xb9, 0x7e, 0x68, 0x34, 0x5c, 0xdc, 0x58, 0x60, 0x80, 0x19, 0xbb, 0x0e, - 0x83, 0xcf, 0x01, 0xb2, 0x96, 0xc7, 0x30, 0x58, 0x68, 0x82, 0xae, 0xf0, 0x41, 0x27, 0xdf, 0xe0, - 0x20, 0x6d, 0x6b, 0x49, 0xd3, 0x73, 0x05, 0x8b, 0xfe, 0x5c, 0x01, 0x5b, 0x7c, 0x6c, 0xf3, 0x75, - 0xed, 0x68, 0xa1, 0x88, 0x45, 0x1f, 0x41, 0x27, 0x5f, 0xb9, 0x1a, 0x2d, 0x4a, 0xaa, 0xd9, 0x51, - 0xa1, 0x7a, 0x45, 0x8f, 0xa0, 0x57, 0xac, 0x5a, 0x51, 0x2e, 0x2e, 0x16, 0x6a, 0xd9, 0x91, 0x9e, - 0xc9, 0xe4, 0xc8, 0x3f, 0x00, 0xc8, 0xaa, 0x5b, 0xe3, 0xbe, 0x85, 0x7a, 0x77, 0x4e, 0xea, 0x63, - 0xe8, 0xe4, 0x33, 0xb1, 0x51, 0xb7, 0x24, 0x3b, 0x5f, 0x95, 0xb5, 0x72, 0x59, 0xdb, 0x3c, 0xbe, - 0xc5, 0x44, 0x7e, 0x55, 0xd6, 0x2a, 0xf4, 0x75, 0x26, 0x59, 0x94, 0x35, 0x7b, 0x57, 0xe5, 0xf2, - 0x62, 0x13, 0x64, 0xdc, 0x57, 0xda, 0x1a, 0x5d, 0xf5, 0x88, 0xf2, 0xdd, 0x80, 0xf1, 0x47, 0x49, - 0x87, 0xf0, 0x92, 0xa0, 0xce, 0x57, 0xfc, 0xb9, 0xa0, 0x2e, 0x69, 0x04, 0x2e, 0x65, 0xb4, 0x07, - 0xfd, 0x27, 0xa6, 0x98, 0xd3, 0x85, 0xa6, 0x56, 0xa7, 0xa4, 0xb0, 0x1e, 0x8d, 0xca, 0xb6, 0x74, - 0x64, 0x7d, 0x01, 0x83, 0x85, 0x22, 0x13, 0xdd, 0x4b, 0x47, 0x87, 0xa5, 0xd5, 0xe7, 0xa5, 0x6a, - 0xed, 0xc3, 0xca, 0x7c, 0x8d, 0x89, 0x5e, 0xd5, 0x97, 0x5e, 0x5e, 0x7b, 0x5e, 0xca, 0xea, 0x13, - 0x68, 0x9a, 0x9a, 0x06, 0xe9, 0x11, 0xed, 0x5c, 0x8d, 0x73, 0xd9, 0xd1, 0xad, 0xce, 0x77, 0xdf, - 0xdf, 0xab, 0xfc, 0xe3, 0xfb, 0x7b, 0x95, 0x7f, 0x7d, 0x7f, 0xaf, 0x72, 0xdc, 0x90, 0xbb, 0x1f, - 0xfc, 0x27, 0x00, 0x00, 0xff, 0xff, 0xa5, 0xac, 0x85, 0x1d, 0xaa, 0x21, 0x00, 0x00, + // 2896 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x19, 0xcb, 0x6e, 0x23, 0xc7, + 0x11, 0x7c, 0x88, 0x22, 0x8b, 0x2f, 0xb1, 0xa5, 0xd5, 0x72, 0xb9, 0xf6, 0x66, 0x3d, 0xb6, 0xd7, + 0x72, 0x1c, 0x53, 0xf6, 0xda, 0xc8, 0xfa, 0x01, 0x67, 0xb1, 0x7a, 0x44, 0x52, 0x6c, 0x45, 0xca, + 0x68, 0x05, 0x07, 0x08, 0x82, 0xc1, 0x68, 0xa6, 0x45, 0xb5, 0xc5, 0x99, 0x1e, 0xf7, 0xf4, 0x68, + 0x45, 0x07, 0xc8, 0x31, 0xb9, 0xe5, 0x98, 0x5b, 0x7e, 0x20, 0xc8, 0x2d, 0xc7, 0x5c, 0x73, 0x30, + 0x82, 0x1c, 0xf2, 0x05, 0x41, 0xe0, 0x4f, 0xc8, 0x17, 0x04, 0xfd, 0x9a, 0x07, 0x49, 0x69, 0x13, + 0x41, 0x40, 0x2e, 0x44, 0x57, 0x75, 0x75, 0xbd, 0xba, 0xab, 0x58, 0x55, 0x03, 0x4d, 0x77, 0x84, + 0x43, 0x3e, 0x8c, 0x18, 0xe5, 0x14, 0x55, 0x47, 0x2c, 0xf2, 0x06, 0x0d, 0xea, 0x11, 0x85, 0x18, + 0xfc, 0x70, 0x44, 0xf8, 0x59, 0x72, 0x32, 0xf4, 0x68, 0xb0, 0x7e, 0xee, 0x72, 0xf7, 0x5d, 0x8f, + 0x86, 0xdc, 0x25, 0x21, 0x66, 0xf1, 0xba, 0x3c, 0xb8, 0x1e, 0x9d, 0x8f, 0xd6, 0xf9, 0x24, 0xc2, + 0xb1, 0xfa, 0xd5, 0xe7, 0xee, 0x8f, 0x28, 0x1d, 0x8d, 0xf1, 0xba, 0x84, 0x4e, 0x92, 0xd3, 0x75, + 0x1c, 0x44, 0x7c, 0xa2, 0x36, 0xad, 0x3f, 0x94, 0x61, 0x75, 0x93, 0x61, 0x97, 0xe3, 0x4d, 0xc3, + 0xcd, 0xc6, 0x5f, 0x27, 0x38, 0xe6, 0xe8, 0x35, 0x68, 0xa5, 0x12, 0x1c, 0xe2, 0xf7, 0x4b, 0x0f, + 0x4b, 0x6b, 0x0d, 0xbb, 0x99, 0xe2, 0xf6, 0x7c, 0x74, 0x17, 0x16, 0xf1, 0x25, 0xf6, 0xc4, 0x6e, + 0x59, 0xee, 0xd6, 0x04, 0xb8, 0xe7, 0xa3, 0xf7, 0xa1, 0x19, 0x73, 0x46, 0xc2, 0x91, 0x93, 0xc4, + 0x98, 0xf5, 0x2b, 0x0f, 0x4b, 0x6b, 0xcd, 0xc7, 0x4b, 0x43, 0x61, 0xd2, 0xf0, 0x48, 0x6e, 0x1c, + 0xc7, 0x98, 0xd9, 0x10, 0xa7, 0x6b, 0xf4, 0x08, 0x16, 0x7d, 0x7c, 0x41, 0x3c, 0x1c, 0xf7, 0xab, + 0x0f, 0x2b, 0x6b, 0xcd, 0xc7, 0x2d, 0x45, 0xbe, 0x25, 0x91, 0xb6, 0xd9, 0x44, 0x6f, 0x43, 0x3d, + 0xe6, 0x94, 0xb9, 0x23, 0x1c, 0xf7, 0x17, 0x24, 0x61, 0xdb, 0xf0, 0x95, 0x58, 0x3b, 0xdd, 0x46, + 0xaf, 0x40, 0xe5, 0x60, 0x73, 0xaf, 0x5f, 0x93, 0xd2, 0x41, 0x53, 0x45, 0xd8, 0xb3, 0x05, 0x1a, + 0xbd, 0x0e, 0xed, 0xd8, 0x0d, 0xfd, 0x13, 0x7a, 0xe9, 0x44, 0xc4, 0x0f, 0xe3, 0xfe, 0xe2, 0xc3, + 0xd2, 0x5a, 0xdd, 0x6e, 0x69, 0xe4, 0xa1, 0xc0, 0x59, 0x9f, 0xc0, 0x9d, 0x23, 0xee, 0x32, 0x7e, + 0x03, 0xef, 0x58, 0xc7, 0xb0, 0x6a, 0xe3, 0x80, 0x5e, 0xdc, 0xc8, 0xb5, 0x7d, 0x58, 0xe4, 0x24, + 0xc0, 0x34, 0xe1, 0xd2, 0xb5, 0x6d, 0xdb, 0x80, 0xd6, 0x9f, 0x4a, 0x80, 0xb6, 0x2f, 0xb1, 0x77, + 0xc8, 0xa8, 0x87, 0xe3, 0xf8, 0xff, 0x74, 0x5d, 0x6f, 0xc1, 0x62, 0xa4, 0x14, 0xe8, 0x57, 0x25, + 0xb9, 0xbe, 0x05, 0xa3, 0x95, 0xd9, 0xb5, 0xbe, 0x82, 0x95, 0x23, 0x32, 0x0a, 0xdd, 0xf1, 0x2d, + 0xea, 0xbb, 0x0a, 0xb5, 0x58, 0xf2, 0x94, 0xaa, 0xb6, 0x6d, 0x0d, 0x59, 0x87, 0x80, 0xbe, 0x74, + 0x09, 0xbf, 0x3d, 0x49, 0xd6, 0xbb, 0xb0, 0x5c, 0xe0, 0x18, 0x47, 0x34, 0x8c, 0xb1, 0x54, 0x80, + 0xbb, 0x3c, 0x89, 0x25, 0xb3, 0x05, 0x5b, 0x43, 0x16, 0x86, 0x95, 0x2f, 0x48, 0x6c, 0xc8, 0xf1, + 0xff, 0xa2, 0xc2, 0x2a, 0xd4, 0x4e, 0x29, 0x0b, 0x5c, 0x6e, 0x34, 0x50, 0x10, 0x42, 0x50, 0x75, + 0xd9, 0x28, 0xee, 0x57, 0x1e, 0x56, 0xd6, 0x1a, 0xb6, 0x5c, 0x8b, 0x57, 0x39, 0x25, 0x46, 0xeb, + 0xf5, 0x1a, 0xb4, 0xb4, 0xdf, 0x9d, 0x31, 0x89, 0xb9, 0x94, 0xd3, 0xb2, 0x9b, 0x1a, 0x27, 0xce, + 0x58, 0x14, 0x56, 0x8f, 0x23, 0xff, 0x86, 0x01, 0xff, 0x18, 0x1a, 0x0c, 0xc7, 0x34, 0x61, 0x22, + 0x4c, 0xcb, 0xf2, 0xde, 0x57, 0xd4, 0xbd, 0x7f, 0x41, 0xc2, 0xe4, 0xd2, 0x36, 0x7b, 0x76, 0x46, + 0xa6, 0x43, 0x88, 0xc7, 0x37, 0x09, 0xa1, 0x4f, 0xe0, 0xce, 0xa1, 0x9b, 0xc4, 0x37, 0xd1, 0xd5, + 0xfa, 0x54, 0x84, 0x5f, 0x9c, 0x04, 0x37, 0x3a, 0xfc, 0xc7, 0x12, 0xd4, 0x37, 0xa3, 0xe4, 0x38, + 0x76, 0x47, 0x18, 0x7d, 0x0f, 0x9a, 0x9c, 0x72, 0x77, 0xec, 0x24, 0x02, 0x94, 0xe4, 0x55, 0x1b, + 0x24, 0x4a, 0x11, 0x08, 0xb7, 0x63, 0xe6, 0x45, 0x89, 0xa6, 0x28, 0x3f, 0xac, 0xac, 0x55, 0xed, + 0xa6, 0xc2, 0x29, 0x92, 0x21, 0x2c, 0xcb, 0x3d, 0x87, 0x84, 0xce, 0x39, 0x66, 0x21, 0x1e, 0x07, + 0xd4, 0xc7, 0xf2, 0xfd, 0x56, 0xed, 0x9e, 0xdc, 0xda, 0x0b, 0x3f, 0x4f, 0x37, 0xd0, 0xf7, 0xa1, + 0x97, 0xd2, 0x8b, 0xa0, 0x94, 0xd4, 0x55, 0x49, 0xdd, 0xd5, 0xd4, 0xc7, 0x1a, 0x6d, 0xfd, 0x1a, + 0x3a, 0xcf, 0xcf, 0x18, 0xe5, 0x7c, 0x4c, 0xc2, 0xd1, 0x96, 0xcb, 0x5d, 0x91, 0x3d, 0x22, 0xcc, + 0x08, 0xf5, 0x63, 0xad, 0xad, 0x01, 0xd1, 0x3b, 0xd0, 0xe3, 0x8a, 0x16, 0xfb, 0x8e, 0xa1, 0x29, + 0x4b, 0x9a, 0xa5, 0x74, 0xe3, 0x50, 0x13, 0xbf, 0x09, 0x9d, 0x8c, 0x58, 0xe4, 0x1f, 0xad, 0x6f, + 0x3b, 0xc5, 0x3e, 0x27, 0x01, 0xb6, 0x2e, 0xa4, 0xaf, 0xe4, 0x25, 0xa3, 0x77, 0xa0, 0x91, 0xf9, + 0xa1, 0x24, 0x5f, 0x48, 0x47, 0xbd, 0x10, 0xe3, 0x4e, 0xbb, 0x9e, 0x3a, 0xe5, 0x33, 0xe8, 0xf2, + 0x54, 0x71, 0xc7, 0x77, 0xb9, 0x5b, 0x7c, 0x54, 0x45, 0xab, 0xec, 0x0e, 0x2f, 0xc0, 0xd6, 0xa7, + 0xd0, 0x38, 0x24, 0x7e, 0xac, 0x04, 0xf7, 0x61, 0xd1, 0x4b, 0x18, 0xc3, 0x21, 0x37, 0x26, 0x6b, + 0x10, 0xad, 0xc0, 0xc2, 0x98, 0x04, 0x84, 0x6b, 0x33, 0x15, 0x60, 0x51, 0x80, 0x7d, 0x1c, 0x50, + 0x36, 0x91, 0x0e, 0x5b, 0x81, 0x85, 0xfc, 0xe5, 0x2a, 0x00, 0xdd, 0x87, 0x46, 0xe0, 0x5e, 0xa6, + 0x97, 0x2a, 0x76, 0xea, 0x81, 0x7b, 0xa9, 0x94, 0xef, 0xc3, 0xe2, 0xa9, 0x4b, 0xc6, 0x5e, 0xc8, + 0xb5, 0x57, 0x0c, 0x98, 0x09, 0xac, 0xe6, 0x05, 0xfe, 0xb5, 0x0c, 0x4d, 0x25, 0x51, 0x29, 0xbc, + 0x02, 0x0b, 0x9e, 0xeb, 0x9d, 0xa5, 0x22, 0x25, 0x80, 0x1e, 0x19, 0x45, 0xca, 0xf9, 0x24, 0x9c, + 0x69, 0x6a, 0x54, 0x5b, 0x07, 0x88, 0x5f, 0xb8, 0x91, 0xd6, 0xad, 0x72, 0x05, 0x71, 0x43, 0xd0, + 0x28, 0x75, 0x3f, 0x80, 0x96, 0x7a, 0x77, 0xfa, 0x48, 0xf5, 0x8a, 0x23, 0x4d, 0x45, 0xa5, 0x0e, + 0xbd, 0x0e, 0xed, 0x24, 0xc6, 0xce, 0x19, 0xc1, 0xcc, 0x65, 0xde, 0xd9, 0xa4, 0xbf, 0xa0, 0xfe, + 0x23, 0x93, 0x18, 0xef, 0x1a, 0x1c, 0x7a, 0x0c, 0x0b, 0x22, 0xfd, 0xc5, 0xfd, 0x9a, 0xfc, 0x3b, + 0x7e, 0x25, 0xcf, 0x52, 0x9a, 0x3a, 0x94, 0xbf, 0xdb, 0x21, 0x67, 0x13, 0x5b, 0x91, 0x0e, 0x3e, + 0x02, 0xc8, 0x90, 0x68, 0x09, 0x2a, 0xe7, 0x78, 0xa2, 0xe3, 0x50, 0x2c, 0x85, 0x73, 0x2e, 0xdc, + 0x71, 0x62, 0xbc, 0xae, 0x80, 0x4f, 0xca, 0x1f, 0x95, 0x2c, 0x0f, 0xba, 0x1b, 0xe3, 0x73, 0x42, + 0x73, 0xc7, 0x57, 0x60, 0x21, 0x70, 0xbf, 0xa2, 0xcc, 0x78, 0x52, 0x02, 0x12, 0x4b, 0x42, 0xca, + 0x0c, 0x0b, 0x09, 0xa0, 0x0e, 0x94, 0x69, 0x24, 0xfd, 0xd5, 0xb0, 0xcb, 0x34, 0xca, 0x04, 0x55, + 0x73, 0x82, 0xac, 0x7f, 0x56, 0x01, 0x32, 0x29, 0xc8, 0x86, 0x01, 0xa1, 0x4e, 0x8c, 0x99, 0x28, + 0x41, 0x9c, 0x93, 0x09, 0xc7, 0xb1, 0xc3, 0xb0, 0x97, 0xb0, 0x98, 0x5c, 0x88, 0xfb, 0x13, 0x66, + 0xdf, 0x51, 0x66, 0x4f, 0xe9, 0x66, 0xdf, 0x25, 0xf4, 0x48, 0x9d, 0xdb, 0x10, 0xc7, 0x6c, 0x73, + 0x0a, 0xed, 0xc1, 0x9d, 0x8c, 0xa7, 0x9f, 0x63, 0x57, 0xbe, 0x8e, 0xdd, 0x72, 0xca, 0xce, 0xcf, + 0x58, 0x6d, 0xc3, 0x32, 0xa1, 0xce, 0xd7, 0x09, 0x4e, 0x0a, 0x8c, 0x2a, 0xd7, 0x31, 0xea, 0x11, + 0xfa, 0x33, 0x79, 0x20, 0x63, 0x73, 0x08, 0xf7, 0x72, 0x56, 0x8a, 0x70, 0xcf, 0x31, 0xab, 0x5e, + 0xc7, 0x6c, 0x35, 0xd5, 0x4a, 0xe4, 0x83, 0x8c, 0xe3, 0x4f, 0x60, 0x95, 0x50, 0xe7, 0x85, 0x4b, + 0xf8, 0x34, 0xbb, 0x85, 0x97, 0x18, 0x29, 0xfe, 0x74, 0x8b, 0xbc, 0x94, 0x91, 0x01, 0x66, 0xa3, + 0x82, 0x91, 0xb5, 0x97, 0x18, 0xb9, 0x2f, 0x0f, 0x64, 0x6c, 0x9e, 0x41, 0x8f, 0xd0, 0x69, 0x6d, + 0x16, 0xaf, 0x63, 0xd2, 0x25, 0xb4, 0xa8, 0xc9, 0x06, 0xf4, 0x62, 0xec, 0x71, 0xca, 0xf2, 0x8f, + 0xa0, 0x7e, 0x1d, 0x8b, 0x25, 0x4d, 0x9f, 0xf2, 0xb0, 0x7e, 0x01, 0xad, 0xdd, 0x64, 0x84, 0xf9, + 0xf8, 0x24, 0x4d, 0x06, 0xb7, 0x96, 0x7f, 0xac, 0x7f, 0x97, 0xa1, 0xb9, 0x39, 0x62, 0x34, 0x89, + 0x0a, 0x39, 0x59, 0x05, 0xe9, 0x74, 0x4e, 0x96, 0x24, 0x32, 0x27, 0x2b, 0xe2, 0x0f, 0xa1, 0x15, + 0xc8, 0xd0, 0xd5, 0xf4, 0x2a, 0x0f, 0xf5, 0x66, 0x82, 0xda, 0x6e, 0x06, 0xb9, 0x64, 0x36, 0x04, + 0x88, 0x88, 0x1f, 0xeb, 0x33, 0x2a, 0x1d, 0x75, 0x75, 0x45, 0x68, 0x52, 0xb4, 0xdd, 0x88, 0xd2, + 0x6c, 0xfd, 0x3e, 0x34, 0x4f, 0x84, 0x93, 0xf4, 0x81, 0x42, 0x32, 0xca, 0xbc, 0x67, 0xc3, 0x49, + 0x16, 0x84, 0xbb, 0xd0, 0x3e, 0x53, 0x2e, 0xd3, 0x87, 0xd4, 0x1b, 0x7a, 0x5d, 0x5b, 0x92, 0xd9, + 0x3b, 0xcc, 0x7b, 0x56, 0x5d, 0x40, 0xeb, 0x2c, 0x87, 0x1a, 0x1c, 0x41, 0x6f, 0x86, 0x64, 0x4e, + 0x0e, 0x5a, 0xcb, 0xe7, 0xa0, 0xe6, 0x63, 0xa4, 0x04, 0xe5, 0x4f, 0xe6, 0xf3, 0xd2, 0xef, 0xca, + 0xd0, 0xfa, 0x29, 0xe6, 0x2f, 0x28, 0x3b, 0x57, 0xfa, 0x22, 0xa8, 0x86, 0x6e, 0x80, 0x35, 0x47, + 0xb9, 0x46, 0xf7, 0xa0, 0xce, 0x2e, 0x55, 0x02, 0xd1, 0xf7, 0xb9, 0xc8, 0x2e, 0x65, 0x62, 0x40, + 0xaf, 0x02, 0xb0, 0x4b, 0x27, 0x72, 0xbd, 0x73, 0xac, 0x3d, 0x58, 0xb5, 0x1b, 0xec, 0xf2, 0x50, + 0x21, 0xc4, 0x53, 0x60, 0x97, 0x0e, 0x66, 0x8c, 0xb2, 0x58, 0xe7, 0xaa, 0x3a, 0xbb, 0xdc, 0x96, + 0xb0, 0x3e, 0xeb, 0x33, 0x1a, 0x45, 0xd8, 0x97, 0x39, 0x5a, 0x9e, 0xdd, 0x52, 0x08, 0x21, 0x95, + 0x1b, 0xa9, 0x35, 0x25, 0x95, 0x67, 0x52, 0x79, 0x26, 0x75, 0x51, 0x9d, 0xe4, 0x79, 0xa9, 0x3c, + 0x95, 0x5a, 0x57, 0x52, 0x79, 0x4e, 0x2a, 0xcf, 0xa4, 0x36, 0xcc, 0x59, 0x2d, 0xd5, 0xfa, 0x6d, + 0x09, 0x56, 0xa7, 0x0b, 0x3f, 0x5d, 0xa6, 0x7e, 0x08, 0x2d, 0x4f, 0xde, 0x57, 0xe1, 0x4d, 0xf6, + 0x66, 0x6e, 0xd2, 0x6e, 0x7a, 0xb9, 0x67, 0xfc, 0x04, 0xda, 0xa1, 0x72, 0x70, 0xfa, 0x34, 0x2b, + 0xd9, 0xbd, 0xe4, 0x7d, 0x6f, 0xb7, 0xc2, 0x1c, 0x64, 0xf9, 0x80, 0xbe, 0x64, 0x84, 0xe3, 0x23, + 0xce, 0xb0, 0x1b, 0xdc, 0x46, 0x03, 0x82, 0xa0, 0x2a, 0xab, 0x95, 0x8a, 0xac, 0xaf, 0xe5, 0xda, + 0x7a, 0x0b, 0x96, 0x0b, 0x52, 0xb4, 0xad, 0x4b, 0x50, 0x19, 0xe3, 0x50, 0x72, 0x6f, 0xdb, 0x62, + 0x69, 0xb9, 0xd0, 0xb3, 0xb1, 0xeb, 0xdf, 0x9e, 0x36, 0x5a, 0x44, 0x25, 0x13, 0xb1, 0x06, 0x28, + 0x2f, 0x42, 0xab, 0x62, 0xb4, 0x2e, 0xe5, 0xb4, 0x3e, 0x80, 0xde, 0xe6, 0x98, 0xc6, 0xf8, 0x88, + 0xfb, 0x24, 0xbc, 0x8d, 0x8e, 0xe9, 0x57, 0xb0, 0xfc, 0x9c, 0x4f, 0xbe, 0x14, 0xcc, 0x62, 0xf2, + 0x0d, 0xbe, 0x25, 0xfb, 0x18, 0x7d, 0x61, 0xec, 0x63, 0xf4, 0x85, 0x68, 0x96, 0x3c, 0x3a, 0x4e, + 0x82, 0x50, 0x86, 0x42, 0xdb, 0xd6, 0x90, 0xb5, 0x01, 0x2d, 0x55, 0x43, 0xef, 0x53, 0x3f, 0x19, + 0xe3, 0xb9, 0x31, 0xf8, 0x00, 0x20, 0x72, 0x99, 0x1b, 0x60, 0x8e, 0x99, 0x7a, 0x43, 0x0d, 0x3b, + 0x87, 0xb1, 0x7e, 0x5f, 0x86, 0x15, 0x35, 0x12, 0x39, 0x52, 0x93, 0x00, 0x63, 0xc2, 0x00, 0xea, + 0x67, 0x34, 0xe6, 0x39, 0x86, 0x29, 0x2c, 0x54, 0xf4, 0x43, 0xc3, 0x4d, 0x2c, 0x0b, 0x73, 0x8a, + 0xca, 0xf5, 0x73, 0x8a, 0x99, 0x49, 0x44, 0x75, 0x76, 0x12, 0x21, 0xa2, 0xcd, 0x10, 0x11, 0x15, + 0xe3, 0x0d, 0xbb, 0xa1, 0x31, 0x7b, 0x3e, 0x7a, 0x04, 0xdd, 0x91, 0xd0, 0xd2, 0x39, 0xa3, 0xf4, + 0xdc, 0x89, 0x5c, 0x7e, 0x26, 0x43, 0xbd, 0x61, 0xb7, 0x25, 0x7a, 0x97, 0xd2, 0xf3, 0x43, 0x97, + 0x9f, 0xa1, 0x8f, 0xa1, 0xa3, 0xcb, 0xc0, 0x40, 0xba, 0x28, 0xd6, 0x7f, 0x7e, 0x3a, 0x8a, 0xf2, + 0xde, 0xb3, 0xdb, 0xe7, 0x39, 0x28, 0xb6, 0xee, 0xc2, 0x9d, 0x2d, 0x1c, 0x73, 0x46, 0x27, 0x45, + 0xc7, 0x58, 0x3f, 0x02, 0xd8, 0x0b, 0x39, 0x66, 0xa7, 0xae, 0x87, 0x63, 0xf4, 0x5e, 0x1e, 0xd2, + 0xc5, 0xd1, 0xd2, 0x50, 0x4d, 0xa4, 0xd2, 0x0d, 0x3b, 0x47, 0x63, 0x0d, 0xa1, 0x66, 0xd3, 0x44, + 0xa4, 0xa3, 0x37, 0xcc, 0x4a, 0x9f, 0x6b, 0xe9, 0x73, 0x12, 0x69, 0xeb, 0x3d, 0x6b, 0xd7, 0xb4, + 0xb0, 0x19, 0x3b, 0x7d, 0x45, 0x43, 0x68, 0x10, 0x83, 0xd3, 0x59, 0x65, 0x56, 0x74, 0x46, 0x62, + 0x7d, 0x0a, 0xcb, 0x8a, 0x93, 0xe2, 0x6c, 0xd8, 0xbc, 0x01, 0x35, 0x66, 0xd4, 0x28, 0x65, 0xa3, + 0x28, 0x4d, 0xa4, 0xf7, 0x84, 0x3f, 0x44, 0x47, 0x9d, 0x19, 0x62, 0xfc, 0xb1, 0x0c, 0x3d, 0xb1, + 0x51, 0xe0, 0x69, 0xfd, 0x12, 0x96, 0x0f, 0xc2, 0x31, 0x09, 0xf1, 0xe6, 0xe1, 0xf1, 0x3e, 0x4e, + 0xe3, 0x1e, 0x41, 0x55, 0xd4, 0x47, 0x52, 0x50, 0xdd, 0x96, 0x6b, 0x11, 0x08, 0xe1, 0x89, 0xe3, + 0x45, 0x49, 0xac, 0x67, 0x3f, 0xb5, 0xf0, 0x64, 0x33, 0x4a, 0x62, 0x91, 0xc8, 0xc5, 0x1f, 0x39, + 0x0d, 0xc7, 0x13, 0x19, 0x0d, 0x75, 0x7b, 0xd1, 0x8b, 0x92, 0x83, 0x70, 0x3c, 0xb1, 0x7e, 0x20, + 0xbb, 0x5d, 0x8c, 0x7d, 0xdb, 0x0d, 0x7d, 0x1a, 0x6c, 0xe1, 0x8b, 0x9c, 0x84, 0xb4, 0xb3, 0x32, + 0x51, 0xff, 0x6d, 0x09, 0x5a, 0xcf, 0x46, 0x38, 0xe4, 0x5b, 0x98, 0xbb, 0x64, 0x2c, 0xbb, 0xa7, + 0x0b, 0xcc, 0x62, 0x42, 0x43, 0xfd, 0xb4, 0x0d, 0x28, 0x9a, 0x5f, 0x12, 0x12, 0xee, 0xf8, 0x2e, + 0x0e, 0x68, 0x28, 0xb9, 0xd4, 0x6d, 0x10, 0xa8, 0x2d, 0x89, 0x41, 0x6f, 0x41, 0x57, 0xcd, 0xe6, + 0x9c, 0x33, 0x37, 0xf4, 0xc7, 0x22, 0xa8, 0xd4, 0xac, 0xa2, 0xa3, 0xd0, 0xbb, 0x1a, 0x8b, 0xde, + 0x86, 0x25, 0xfd, 0xe4, 0x33, 0xca, 0xaa, 0xa4, 0xec, 0x6a, 0x7c, 0x81, 0x34, 0x89, 0x22, 0xca, + 0x78, 0xec, 0xc4, 0xd8, 0xf3, 0x68, 0x10, 0xe9, 0xd6, 0xa3, 0x6b, 0xf0, 0x47, 0x0a, 0x6d, 0x8d, + 0x60, 0x79, 0x47, 0xd8, 0xa9, 0x2d, 0xc9, 0xae, 0xb0, 0x13, 0xe0, 0xc0, 0x39, 0x19, 0x53, 0xef, + 0xdc, 0x11, 0x89, 0x48, 0x7b, 0x58, 0x14, 0x37, 0x1b, 0x02, 0x79, 0x44, 0xbe, 0x91, 0x5d, 0xb6, + 0xa0, 0x3a, 0xa3, 0x3c, 0x1a, 0x27, 0x23, 0x27, 0x62, 0xf4, 0x04, 0x6b, 0x13, 0xbb, 0x01, 0x0e, + 0x76, 0x15, 0xfe, 0x50, 0xa0, 0xad, 0xbf, 0x94, 0x60, 0xa5, 0x28, 0x49, 0xa7, 0xd5, 0x75, 0x58, + 0x29, 0x8a, 0xd2, 0x7f, 0xb5, 0xaa, 0x94, 0xeb, 0xe5, 0x05, 0xaa, 0x3f, 0xdd, 0x27, 0xd0, 0x96, + 0x03, 0x5b, 0xc7, 0x57, 0x9c, 0x8a, 0x05, 0x46, 0xfe, 0x5e, 0xec, 0x96, 0x9b, 0xbf, 0xa5, 0x8f, + 0xe1, 0x9e, 0x36, 0xdf, 0x99, 0x55, 0x5b, 0x3d, 0x88, 0x55, 0x4d, 0xb0, 0x3f, 0xa5, 0xfd, 0x17, + 0xd0, 0xcf, 0x50, 0x1b, 0x13, 0x89, 0x34, 0xbe, 0x7a, 0x0f, 0x96, 0xa7, 0x8c, 0x7d, 0xe6, 0xfb, + 0x4c, 0x86, 0x60, 0xd5, 0x9e, 0xb7, 0x65, 0x3d, 0x85, 0xbb, 0x47, 0x98, 0x2b, 0x6f, 0xb8, 0x5c, + 0x57, 0xfd, 0x8a, 0xd9, 0x12, 0x54, 0x8e, 0xb0, 0x27, 0x8d, 0xaf, 0xd8, 0x62, 0x29, 0x1e, 0xe0, + 0x71, 0x8c, 0x3d, 0x69, 0x65, 0xc5, 0x96, 0x6b, 0xeb, 0xcf, 0x25, 0x58, 0xd4, 0x89, 0x50, 0x24, + 0x73, 0x9f, 0x91, 0x0b, 0xcc, 0xf4, 0xd3, 0xd3, 0x10, 0x7a, 0x13, 0x3a, 0x6a, 0xe5, 0xd0, 0x88, + 0x13, 0x9a, 0xa6, 0xd7, 0xb6, 0xc2, 0x1e, 0x28, 0xa4, 0x9c, 0xc5, 0xc9, 0x51, 0x93, 0xee, 0xea, + 0x34, 0x24, 0x07, 0x6a, 0xb1, 0x88, 0x7d, 0x99, 0x4e, 0x1b, 0xb6, 0x86, 0xc4, 0x53, 0x37, 0xfc, + 0x16, 0x24, 0x3f, 0x03, 0x8a, 0xa7, 0x1e, 0xd0, 0x24, 0xe4, 0x4e, 0x44, 0x49, 0xc8, 0x75, 0xfe, + 0x04, 0x89, 0x3a, 0x14, 0x18, 0xeb, 0x37, 0x25, 0xa8, 0xa9, 0x79, 0xb4, 0xe8, 0x23, 0xd3, 0x7f, + 0xb1, 0x32, 0x91, 0x15, 0x81, 0x94, 0xa5, 0xfe, 0xb9, 0xe4, 0x5a, 0xc4, 0xf1, 0x45, 0xa0, 0x72, + 0xb1, 0x56, 0xed, 0x22, 0x90, 0x49, 0xf8, 0x4d, 0xe8, 0x64, 0x7f, 0x86, 0x72, 0x5f, 0xa9, 0xd8, + 0x4e, 0xb1, 0x92, 0xec, 0x4a, 0x4d, 0xad, 0x9f, 0x8b, 0xf6, 0x39, 0x9d, 0xc5, 0x2e, 0x41, 0x25, + 0x49, 0x95, 0x11, 0x4b, 0x81, 0x19, 0xa5, 0x7f, 0xa3, 0x62, 0x89, 0x1e, 0x41, 0xc7, 0xf5, 0x7d, + 0x22, 0x8e, 0xbb, 0xe3, 0x1d, 0xe2, 0xa7, 0x41, 0x5a, 0xc4, 0x5a, 0x7f, 0x2b, 0x41, 0x77, 0x93, + 0x46, 0x93, 0x1f, 0x93, 0x31, 0xce, 0x65, 0x10, 0xa9, 0xa4, 0xfe, 0x17, 0x15, 0x6b, 0x51, 0x19, + 0x9e, 0x92, 0x31, 0x56, 0xa1, 0xa5, 0x6e, 0xb6, 0x2e, 0x10, 0x32, 0xac, 0xcc, 0x66, 0x3a, 0xe2, + 0x6a, 0xab, 0xcd, 0x7d, 0xea, 0xcb, 0x1a, 0xd8, 0x27, 0xcc, 0x49, 0x07, 0x5a, 0x6d, 0x7b, 0xd1, + 0x27, 0x4c, 0x6e, 0x69, 0x43, 0x16, 0xe4, 0x4c, 0x35, 0x6f, 0x48, 0x4d, 0x61, 0x84, 0x21, 0xab, + 0x50, 0xa3, 0xa7, 0xa7, 0x31, 0xe6, 0xb2, 0x5a, 0xad, 0xd8, 0x1a, 0x4a, 0xd3, 0x5c, 0x3d, 0x97, + 0xe6, 0xee, 0xc0, 0xb2, 0x9c, 0xde, 0x3f, 0x67, 0xae, 0x47, 0xc2, 0x91, 0x49, 0xc5, 0x2b, 0x80, + 0x8e, 0x38, 0x8d, 0x66, 0xb1, 0x3b, 0x98, 0x1f, 0x1c, 0xec, 0x6f, 0x5f, 0xe0, 0x90, 0x1b, 0xec, + 0xbb, 0x50, 0x37, 0xa8, 0xff, 0xa2, 0x86, 0x79, 0xfc, 0xf7, 0x25, 0x9d, 0x58, 0x75, 0x3f, 0x8c, + 0x76, 0xa0, 0x3b, 0xf5, 0x7d, 0x05, 0xe9, 0x01, 0xc9, 0xfc, 0xcf, 0x2e, 0x83, 0xd5, 0xa1, 0xfa, + 0x5e, 0x33, 0x34, 0xdf, 0x6b, 0x86, 0xdb, 0x41, 0xc4, 0x27, 0x68, 0x1b, 0x3a, 0xc5, 0x2f, 0x11, + 0xe8, 0xbe, 0xa9, 0x27, 0xe6, 0x7c, 0x9f, 0xb8, 0x92, 0xcd, 0x0e, 0x74, 0xa7, 0x3e, 0x4a, 0x18, + 0x7d, 0xe6, 0x7f, 0xab, 0xb8, 0x92, 0xd1, 0x53, 0x68, 0xe6, 0xbe, 0x42, 0xa0, 0xbe, 0x62, 0x32, + 0xfb, 0x61, 0xe2, 0x4a, 0x06, 0x9b, 0xd0, 0x2e, 0x7c, 0x18, 0x40, 0x03, 0x6d, 0xcf, 0x9c, 0xaf, + 0x05, 0x57, 0x32, 0xd9, 0x80, 0x66, 0x6e, 0x3e, 0x6f, 0xb4, 0x98, 0xfd, 0x08, 0x30, 0xb8, 0x37, + 0x67, 0x47, 0xe7, 0xef, 0x5d, 0x68, 0x17, 0xa6, 0xe9, 0x46, 0x91, 0x79, 0x93, 0xfc, 0xc1, 0xfd, + 0xb9, 0x7b, 0x9a, 0xd3, 0x0e, 0x74, 0xa7, 0x66, 0xeb, 0xc6, 0xb9, 0xf3, 0x47, 0xee, 0x57, 0x9a, + 0xf5, 0xb9, 0xbc, 0xec, 0x5c, 0xeb, 0x94, 0xbb, 0xec, 0xd9, 0x49, 0xfa, 0xe0, 0x95, 0xf9, 0x9b, + 0x5a, 0xab, 0x6d, 0xe8, 0x14, 0x87, 0xe8, 0x86, 0xd9, 0xdc, 0xd1, 0xfa, 0xf5, 0x2f, 0xa7, 0x30, + 0x4f, 0xcf, 0x5e, 0xce, 0xbc, 0x31, 0xfb, 0x95, 0x8c, 0x9e, 0x01, 0xe8, 0x46, 0xc9, 0x27, 0x61, + 0x7a, 0x65, 0x33, 0x0d, 0x5a, 0x7a, 0x65, 0x73, 0x9a, 0xaa, 0xa7, 0x00, 0xaa, 0xbf, 0xf1, 0x69, + 0xc2, 0xd1, 0x5d, 0xa3, 0xc6, 0x54, 0x53, 0x35, 0xe8, 0xcf, 0x6e, 0xcc, 0x30, 0xc0, 0x8c, 0xdd, + 0x84, 0xc1, 0x67, 0x00, 0x59, 0xdf, 0x64, 0x18, 0xcc, 0x74, 0x52, 0xd7, 0xf8, 0xa0, 0x95, 0xef, + 0x92, 0x90, 0xb6, 0x75, 0x4e, 0xe7, 0x74, 0x0d, 0x8b, 0xee, 0x54, 0x15, 0x5c, 0x7c, 0x6c, 0xd3, + 0xc5, 0xf1, 0x60, 0xa6, 0x12, 0x46, 0x4f, 0xa0, 0x95, 0x2f, 0x7f, 0x8d, 0x16, 0x73, 0x4a, 0xe2, + 0x41, 0xa1, 0x04, 0x46, 0x4f, 0xa1, 0x53, 0x2c, 0x7d, 0x51, 0x2e, 0x2e, 0x66, 0x0a, 0xe2, 0x81, + 0x1e, 0xec, 0xe4, 0xc8, 0x3f, 0x00, 0xc8, 0x4a, 0x64, 0xe3, 0xbe, 0x99, 0xa2, 0x79, 0x4a, 0xea, + 0x33, 0x68, 0xe5, 0xd3, 0xb9, 0x51, 0x77, 0x4e, 0x8a, 0xbf, 0x2e, 0x6b, 0xe5, 0x52, 0xbf, 0x79, + 0x7c, 0xb3, 0xff, 0x06, 0xd7, 0x65, 0xad, 0x42, 0x73, 0x68, 0x92, 0xc5, 0xbc, 0x8e, 0xf1, 0xba, + 0x5c, 0x5e, 0xec, 0xa4, 0x8c, 0xfb, 0xe6, 0xf6, 0x57, 0xd7, 0x3d, 0xa2, 0x7c, 0x4b, 0x61, 0xfc, + 0x31, 0xa7, 0xcd, 0x78, 0x49, 0x50, 0xe7, 0xdb, 0x86, 0x5c, 0x50, 0xcf, 0xe9, 0x26, 0xae, 0x64, + 0xb4, 0x0b, 0xdd, 0x1d, 0x53, 0x11, 0xea, 0x6a, 0x55, 0xab, 0x33, 0xa7, 0x3a, 0x1f, 0x0c, 0xe6, + 0x6d, 0xe9, 0xc8, 0xfa, 0x1c, 0x7a, 0x33, 0x95, 0x2a, 0x7a, 0x90, 0xce, 0x1f, 0xe7, 0x96, 0xb0, + 0x57, 0xaa, 0xb5, 0x07, 0x4b, 0xd3, 0x85, 0x2a, 0x7a, 0x55, 0x5f, 0xfa, 0xfc, 0x02, 0xf6, 0x4a, + 0x56, 0x1f, 0x43, 0xdd, 0x14, 0x46, 0x48, 0xcf, 0x79, 0xa7, 0x0a, 0xa5, 0x2b, 0x8f, 0x3e, 0x81, + 0x66, 0xae, 0xb4, 0x30, 0xaf, 0x6e, 0xb6, 0xda, 0x18, 0xe8, 0xb1, 0xac, 0x41, 0x6f, 0xb4, 0xbe, + 0xfd, 0xee, 0x41, 0xe9, 0x1f, 0xdf, 0x3d, 0x28, 0xfd, 0xeb, 0xbb, 0x07, 0xa5, 0x93, 0x9a, 0x64, + 0xfb, 0xc1, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xe5, 0xd5, 0xba, 0x65, 0x28, 0x22, 0x00, 0x00, } diff --git a/protocols/grpc/agent.proto b/protocols/grpc/agent.proto index 348d792889..2dae78ac07 100644 --- a/protocols/grpc/agent.proto +++ b/protocols/grpc/agent.proto @@ -60,6 +60,7 @@ service AgentService { rpc MemHotplugByProbe(MemHotplugByProbeRequest) returns (google.protobuf.Empty); rpc SetGuestDateTime(SetGuestDateTimeRequest) returns (google.protobuf.Empty); rpc CopyFile(CopyFileRequest) returns (google.protobuf.Empty); + rpc GetOOMEvent(GetOOMEventRequest) returns (OOMEvent); } message CreateContainerRequest { @@ -494,3 +495,9 @@ message StartTracingRequest { message StopTracingRequest { } + +message GetOOMEventRequest {} + +message OOMEvent { + string container_id = 1; +} diff --git a/protocols/mockserver/mockserver.go b/protocols/mockserver/mockserver.go index eb8c707082..1b79411412 100644 --- a/protocols/mockserver/mockserver.go +++ b/protocols/mockserver/mockserver.go @@ -428,3 +428,7 @@ func (m *mockServer) StartTracing(ctx context.Context, req *pb.StartTracingReque func (m *mockServer) StopTracing(ctx context.Context, req *pb.StopTracingRequest) (*types.Empty, error) { return nil, nil } + +func (m *mockServer) GetOOMEvent(ctx context.Context, req *pb.GetOOMEventRequest) (*pb.OOMEvent, error) { + return nil, nil +}