vendor: update agent dependency

To include ReseedRandomDev grpc.

Full commits:
e398fd4 agent: add ReseedRandomDev rpc
8a51909 codecov: remove codecov.yml

Signed-off-by: Peng Tao <bergwolf@gmail.com>
This commit is contained in:
Peng Tao 2018-08-02 09:26:04 +08:00
parent fc0142ec8e
commit d43a4350a6
3 changed files with 316 additions and 147 deletions

4
Gopkg.lock generated
View File

@ -100,7 +100,7 @@
"protocols/client",
"protocols/grpc"
]
revision = "061f7a6154344c07b7e3c337c2dac33082fe51ec"
revision = "eec68398287d9491fe648a8e54fb942cf6b6d934"
[[projects]]
name = "github.com/kubernetes-incubator/cri-o"
@ -264,6 +264,6 @@
[solve-meta]
analyzer-name = "dep"
analyzer-version = 1
inputs-digest = "50ac161303ae5e6cb2a559d4f027bdfd86d45ee5825efd1d323d8c6d432d1b2f"
inputs-digest = "ea1297c4bd6bd805ba2ebf07375ba0fd37e1e55a65df361e484934d690ee829e"
solver-name = "gps-cdcl"
solver-version = 1

View File

@ -60,7 +60,7 @@
[[constraint]]
name = "github.com/kata-containers/agent"
revision = "061f7a6154344c07b7e3c337c2dac33082fe51ec"
revision = "eec68398287d9491fe648a8e54fb942cf6b6d934"
[[constraint]]
name = "github.com/containerd/cri-containerd"

View File

@ -51,6 +51,7 @@
RemoveInterfaceRequest
UpdateRoutesRequest
OnlineCPUMemRequest
ReseedRandomDevRequest
Storage
Device
StringUser
@ -1367,6 +1368,23 @@ func (m *OnlineCPUMemRequest) GetNbCpus() uint32 {
return 0
}
type ReseedRandomDevRequest struct {
// Data specifies the random data used to reseed the guest crng.
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
}
func (m *ReseedRandomDevRequest) Reset() { *m = ReseedRandomDevRequest{} }
func (m *ReseedRandomDevRequest) String() string { return proto.CompactTextString(m) }
func (*ReseedRandomDevRequest) ProtoMessage() {}
func (*ReseedRandomDevRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{41} }
func (m *ReseedRandomDevRequest) GetData() []byte {
if m != nil {
return m.Data
}
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 {
@ -1400,7 +1418,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{41} }
func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{42} }
func (m *Storage) GetDriver() string {
if m != nil {
@ -1483,7 +1501,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{42} }
func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{43} }
func (m *Device) GetId() string {
if m != nil {
@ -1529,7 +1547,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{43} }
func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{44} }
func (m *StringUser) GetUid() string {
if m != nil {
@ -1594,6 +1612,7 @@ func init() {
proto.RegisterType((*RemoveInterfaceRequest)(nil), "grpc.RemoveInterfaceRequest")
proto.RegisterType((*UpdateRoutesRequest)(nil), "grpc.UpdateRoutesRequest")
proto.RegisterType((*OnlineCPUMemRequest)(nil), "grpc.OnlineCPUMemRequest")
proto.RegisterType((*ReseedRandomDevRequest)(nil), "grpc.ReseedRandomDevRequest")
proto.RegisterType((*Storage)(nil), "grpc.Storage")
proto.RegisterType((*Device)(nil), "grpc.Device")
proto.RegisterType((*StringUser)(nil), "grpc.StringUser")
@ -1644,6 +1663,7 @@ type AgentServiceClient interface {
CreateSandbox(ctx context.Context, in *CreateSandboxRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error)
DestroySandbox(ctx context.Context, in *DestroySandboxRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error)
OnlineCPUMem(ctx context.Context, in *OnlineCPUMemRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error)
ReseedRandomDev(ctx context.Context, in *ReseedRandomDevRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error)
}
type agentServiceClient struct {
@ -1861,6 +1881,15 @@ func (c *agentServiceClient) OnlineCPUMem(ctx context.Context, in *OnlineCPUMemR
return out, nil
}
func (c *agentServiceClient) ReseedRandomDev(ctx context.Context, in *ReseedRandomDevRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) {
out := new(google_protobuf2.Empty)
err := grpc1.Invoke(ctx, "/grpc.AgentService/ReseedRandomDev", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for AgentService service
type AgentServiceServer interface {
@ -1897,6 +1926,7 @@ type AgentServiceServer interface {
CreateSandbox(context.Context, *CreateSandboxRequest) (*google_protobuf2.Empty, error)
DestroySandbox(context.Context, *DestroySandboxRequest) (*google_protobuf2.Empty, error)
OnlineCPUMem(context.Context, *OnlineCPUMemRequest) (*google_protobuf2.Empty, error)
ReseedRandomDev(context.Context, *ReseedRandomDevRequest) (*google_protobuf2.Empty, error)
}
func RegisterAgentServiceServer(s *grpc1.Server, srv AgentServiceServer) {
@ -2317,6 +2347,24 @@ func _AgentService_OnlineCPUMem_Handler(srv interface{}, ctx context.Context, de
return interceptor(ctx, in, info, handler)
}
func _AgentService_ReseedRandomDev_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) {
in := new(ReseedRandomDevRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AgentServiceServer).ReseedRandomDev(ctx, in)
}
info := &grpc1.UnaryServerInfo{
Server: srv,
FullMethod: "/grpc.AgentService/ReseedRandomDev",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AgentServiceServer).ReseedRandomDev(ctx, req.(*ReseedRandomDevRequest))
}
return interceptor(ctx, in, info, handler)
}
var _AgentService_serviceDesc = grpc1.ServiceDesc{
ServiceName: "grpc.AgentService",
HandlerType: (*AgentServiceServer)(nil),
@ -2413,6 +2461,10 @@ var _AgentService_serviceDesc = grpc1.ServiceDesc{
MethodName: "OnlineCPUMem",
Handler: _AgentService_OnlineCPUMem_Handler,
},
{
MethodName: "ReseedRandomDev",
Handler: _AgentService_ReseedRandomDev_Handler,
},
},
Streams: []grpc1.StreamDesc{},
Metadata: "agent.proto",
@ -4017,6 +4069,30 @@ func (m *OnlineCPUMemRequest) MarshalTo(dAtA []byte) (int, error) {
return i, nil
}
func (m *ReseedRandomDevRequest) 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 *ReseedRandomDevRequest) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.Data) > 0 {
dAtA[i] = 0x12
i++
i = encodeVarintAgent(dAtA, i, uint64(len(m.Data)))
i += copy(dAtA[i:], m.Data)
}
return i, nil
}
func (m *Storage) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
@ -4898,6 +4974,16 @@ func (m *OnlineCPUMemRequest) Size() (n int) {
return n
}
func (m *ReseedRandomDevRequest) Size() (n int) {
var l int
_ = l
l = len(m.Data)
if l > 0 {
n += 1 + l + sovAgent(uint64(l))
}
return n
}
func (m *Storage) Size() (n int) {
var l int
_ = l
@ -10210,6 +10296,87 @@ func (m *OnlineCPUMemRequest) Unmarshal(dAtA []byte) error {
}
return nil
}
func (m *ReseedRandomDevRequest) 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: ReseedRandomDevRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ReseedRandomDevRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 2:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowAgent
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
byteLen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if byteLen < 0 {
return ErrInvalidLengthAgent
}
postIndex := iNdEx + byteLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
if m.Data == nil {
m.Data = []byte{}
}
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 *Storage) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
@ -10874,147 +11041,149 @@ var (
func init() { proto.RegisterFile("agent.proto", fileDescriptorAgent) }
var fileDescriptorAgent = []byte{
// 2258 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xdd, 0x6e, 0x1c, 0x49,
0x15, 0x66, 0x7e, 0xed, 0x39, 0x33, 0x63, 0x7b, 0xda, 0x8e, 0x33, 0x3b, 0x59, 0x82, 0xb7, 0x03,
0x59, 0xb3, 0xab, 0x38, 0x5a, 0x6f, 0x04, 0xab, 0x44, 0xab, 0x25, 0x76, 0x8c, 0x63, 0x76, 0x43,
0x86, 0x76, 0xac, 0x20, 0x71, 0x31, 0x2a, 0x77, 0x97, 0xc7, 0xb5, 0x99, 0xee, 0xea, 0xad, 0xaa,
0xb6, 0x3d, 0xac, 0xc4, 0x25, 0x4f, 0xc0, 0x2d, 0x2f, 0x80, 0xb8, 0x40, 0xe2, 0x15, 0xb8, 0xe0,
0x92, 0x27, 0x40, 0x28, 0x8f, 0xc0, 0x13, 0xa0, 0xfa, 0xeb, 0x9f, 0xf9, 0x0b, 0x78, 0x2d, 0x71,
0x33, 0xd3, 0xe7, 0xd4, 0xa9, 0xef, 0xfc, 0x54, 0xd5, 0xa9, 0x53, 0x07, 0x9a, 0x68, 0x88, 0x23,
0xb1, 0x13, 0x33, 0x2a, 0xa8, 0x53, 0x1d, 0xb2, 0xd8, 0xef, 0x35, 0xa8, 0x4f, 0x34, 0xa3, 0x77,
0x67, 0x48, 0xe9, 0x70, 0x84, 0x1f, 0x2a, 0xea, 0x34, 0x39, 0x7b, 0x88, 0xc3, 0x58, 0x8c, 0xf5,
0xa0, 0xfb, 0xc7, 0x32, 0x6c, 0xee, 0x33, 0x8c, 0x04, 0xde, 0xa7, 0x91, 0x40, 0x24, 0xc2, 0xcc,
0xc3, 0xdf, 0x24, 0x98, 0x0b, 0xe7, 0x03, 0x68, 0xf9, 0x96, 0x37, 0x20, 0x41, 0xb7, 0xb4, 0x55,
0xda, 0x6e, 0x78, 0xcd, 0x94, 0x77, 0x14, 0x38, 0xb7, 0x61, 0x09, 0x5f, 0x61, 0x5f, 0x8e, 0x96,
0xd5, 0x68, 0x5d, 0x92, 0x47, 0x81, 0xf3, 0x09, 0x34, 0xb9, 0x60, 0x24, 0x1a, 0x0e, 0x12, 0x8e,
0x59, 0xb7, 0xb2, 0x55, 0xda, 0x6e, 0xee, 0xae, 0xed, 0x48, 0xd3, 0x76, 0x8e, 0xd5, 0xc0, 0x09,
0xc7, 0xcc, 0x03, 0x9e, 0x7e, 0x3b, 0xf7, 0x61, 0x29, 0xc0, 0x17, 0xc4, 0xc7, 0xbc, 0x5b, 0xdd,
0xaa, 0x6c, 0x37, 0x77, 0x5b, 0x5a, 0xfc, 0x99, 0x62, 0x7a, 0x76, 0xd0, 0xf9, 0x31, 0x2c, 0x73,
0x41, 0x19, 0x1a, 0x62, 0xde, 0xad, 0x29, 0xc1, 0xb6, 0xc5, 0x55, 0x5c, 0x2f, 0x1d, 0x76, 0xde,
0x87, 0xca, 0xcb, 0xfd, 0xa3, 0x6e, 0x5d, 0x69, 0x07, 0x23, 0x15, 0x63, 0xdf, 0x93, 0x6c, 0xe7,
0x1e, 0xb4, 0x39, 0x8a, 0x82, 0x53, 0x7a, 0x35, 0x88, 0x49, 0x10, 0xf1, 0xee, 0xd2, 0x56, 0x69,
0x7b, 0xd9, 0x6b, 0x19, 0x66, 0x5f, 0xf2, 0xdc, 0xc7, 0x70, 0xeb, 0x58, 0x20, 0x26, 0xae, 0x11,
0x1d, 0xf7, 0x04, 0x36, 0x3d, 0x1c, 0xd2, 0x8b, 0x6b, 0x85, 0xb6, 0x0b, 0x4b, 0x82, 0x84, 0x98,
0x26, 0x42, 0x85, 0xb6, 0xed, 0x59, 0xd2, 0xfd, 0x73, 0x09, 0x9c, 0x83, 0x2b, 0xec, 0xf7, 0x19,
0xf5, 0x31, 0xe7, 0xff, 0xa7, 0xe5, 0xfa, 0x10, 0x96, 0x62, 0x6d, 0x40, 0xb7, 0xaa, 0xc4, 0xcd,
0x2a, 0x58, 0xab, 0xec, 0xa8, 0xfb, 0x35, 0x6c, 0x1c, 0x93, 0x61, 0x84, 0x46, 0x37, 0x68, 0xef,
0x26, 0xd4, 0xb9, 0xc2, 0x54, 0xa6, 0xb6, 0x3d, 0x43, 0xb9, 0x7d, 0x70, 0x5e, 0x23, 0x22, 0x6e,
0x4e, 0x93, 0xfb, 0x00, 0xd6, 0x0b, 0x88, 0x3c, 0xa6, 0x11, 0xc7, 0xca, 0x00, 0x81, 0x44, 0xc2,
0x15, 0x58, 0xcd, 0x33, 0x94, 0x8b, 0x61, 0xe3, 0x2b, 0xc2, 0xad, 0x38, 0xfe, 0x5f, 0x4c, 0xd8,
0x84, 0xfa, 0x19, 0x65, 0x21, 0x12, 0xd6, 0x02, 0x4d, 0x39, 0x0e, 0x54, 0x11, 0x1b, 0xf2, 0x6e,
0x65, 0xab, 0xb2, 0xdd, 0xf0, 0xd4, 0xb7, 0xdc, 0x95, 0x13, 0x6a, 0x8c, 0x5d, 0x1f, 0x40, 0xcb,
0xc4, 0x7d, 0x30, 0x22, 0x5c, 0x28, 0x3d, 0x2d, 0xaf, 0x69, 0x78, 0x72, 0x8e, 0x4b, 0x61, 0xf3,
0x24, 0x0e, 0xae, 0x79, 0xe0, 0x77, 0xa1, 0xc1, 0x30, 0xa7, 0x09, 0x93, 0xc7, 0xb4, 0xac, 0xd6,
0x7d, 0x43, 0xaf, 0xfb, 0x57, 0x24, 0x4a, 0xae, 0x3c, 0x3b, 0xe6, 0x65, 0x62, 0xe6, 0x08, 0x09,
0x7e, 0x9d, 0x23, 0xf4, 0x18, 0x6e, 0xf5, 0x51, 0xc2, 0xaf, 0x63, 0xab, 0xfb, 0x44, 0x1e, 0x3f,
0x9e, 0x84, 0xd7, 0x9a, 0xfc, 0xa7, 0x12, 0x2c, 0xef, 0xc7, 0xc9, 0x09, 0x47, 0x43, 0xec, 0xfc,
0x00, 0x9a, 0x82, 0x0a, 0x34, 0x1a, 0x24, 0x92, 0x54, 0xe2, 0x55, 0x0f, 0x14, 0x4b, 0x0b, 0xc8,
0xb0, 0x63, 0xe6, 0xc7, 0x89, 0x91, 0x28, 0x6f, 0x55, 0xb6, 0xab, 0x5e, 0x53, 0xf3, 0xb4, 0xc8,
0x0e, 0xac, 0xab, 0xb1, 0x01, 0x89, 0x06, 0x6f, 0x30, 0x8b, 0xf0, 0x28, 0xa4, 0x01, 0x56, 0xfb,
0xb7, 0xea, 0x75, 0xd4, 0xd0, 0x51, 0xf4, 0x65, 0x3a, 0xe0, 0x7c, 0x04, 0x9d, 0x54, 0x5e, 0x1e,
0x4a, 0x25, 0x5d, 0x55, 0xd2, 0xab, 0x46, 0xfa, 0xc4, 0xb0, 0xdd, 0xdf, 0xc1, 0xca, 0xab, 0x73,
0x46, 0x85, 0x18, 0x91, 0x68, 0xf8, 0x0c, 0x09, 0x24, 0xb3, 0x47, 0x8c, 0x19, 0xa1, 0x01, 0x37,
0xd6, 0x5a, 0xd2, 0xf9, 0x18, 0x3a, 0x42, 0xcb, 0xe2, 0x60, 0x60, 0x65, 0xca, 0x4a, 0x66, 0x2d,
0x1d, 0xe8, 0x1b, 0xe1, 0x1f, 0xc1, 0x4a, 0x26, 0x2c, 0xf3, 0x8f, 0xb1, 0xb7, 0x9d, 0x72, 0x5f,
0x91, 0x10, 0xbb, 0x17, 0x2a, 0x56, 0x6a, 0x91, 0x9d, 0x8f, 0xa1, 0x91, 0xc5, 0xa1, 0xa4, 0x76,
0xc8, 0x8a, 0xde, 0x21, 0x36, 0x9c, 0xde, 0x72, 0x1a, 0x94, 0xcf, 0x61, 0x55, 0xa4, 0x86, 0x0f,
0x02, 0x24, 0x50, 0x71, 0x53, 0x15, 0xbd, 0xf2, 0x56, 0x44, 0x81, 0x76, 0x9f, 0x40, 0xa3, 0x4f,
0x02, 0xae, 0x15, 0x77, 0x61, 0xc9, 0x4f, 0x18, 0xc3, 0x91, 0xb0, 0x2e, 0x1b, 0xd2, 0xd9, 0x80,
0xda, 0x88, 0x84, 0x44, 0x18, 0x37, 0x35, 0xe1, 0x52, 0x80, 0x17, 0x38, 0xa4, 0x6c, 0xac, 0x02,
0xb6, 0x01, 0xb5, 0xfc, 0xe2, 0x6a, 0xc2, 0xb9, 0x03, 0x8d, 0x10, 0x5d, 0xa5, 0x8b, 0x2a, 0x47,
0x96, 0x43, 0x74, 0xa5, 0x8d, 0xef, 0xc2, 0xd2, 0x19, 0x22, 0x23, 0x3f, 0x12, 0x26, 0x2a, 0x96,
0xcc, 0x14, 0x56, 0xf3, 0x0a, 0xff, 0x56, 0x86, 0xa6, 0xd6, 0xa8, 0x0d, 0xde, 0x80, 0x9a, 0x8f,
0xfc, 0xf3, 0x54, 0xa5, 0x22, 0x9c, 0xfb, 0xd6, 0x90, 0x72, 0x3e, 0x09, 0x67, 0x96, 0x5a, 0xd3,
0x1e, 0x02, 0xf0, 0x4b, 0x14, 0x1b, 0xdb, 0x2a, 0x73, 0x84, 0x1b, 0x52, 0x46, 0x9b, 0xfb, 0x29,
0xb4, 0xf4, 0xbe, 0x33, 0x53, 0xaa, 0x73, 0xa6, 0x34, 0xb5, 0x94, 0x9e, 0x74, 0x0f, 0xda, 0x09,
0xc7, 0x83, 0x73, 0x82, 0x19, 0x62, 0xfe, 0xf9, 0xb8, 0x5b, 0xd3, 0x77, 0x64, 0xc2, 0xf1, 0x73,
0xcb, 0x73, 0x76, 0xa1, 0x26, 0xd3, 0x1f, 0xef, 0xd6, 0xd5, 0x75, 0xfc, 0x7e, 0x1e, 0x52, 0xb9,
0xba, 0xa3, 0x7e, 0x0f, 0x22, 0xc1, 0xc6, 0x9e, 0x16, 0xed, 0x7d, 0x06, 0x90, 0x31, 0x9d, 0x35,
0xa8, 0xbc, 0xc1, 0x63, 0x73, 0x0e, 0xe5, 0xa7, 0x0c, 0xce, 0x05, 0x1a, 0x25, 0x36, 0xea, 0x9a,
0x78, 0x5c, 0xfe, 0xac, 0xe4, 0xfa, 0xb0, 0xba, 0x37, 0x7a, 0x43, 0x68, 0x6e, 0xfa, 0x06, 0xd4,
0x42, 0xf4, 0x35, 0x65, 0x36, 0x92, 0x8a, 0x50, 0x5c, 0x12, 0x51, 0x66, 0x21, 0x14, 0xe1, 0xac,
0x40, 0x99, 0xc6, 0x2a, 0x5e, 0x0d, 0xaf, 0x4c, 0xe3, 0x4c, 0x51, 0x35, 0xa7, 0xc8, 0xfd, 0x67,
0x15, 0x20, 0xd3, 0xe2, 0x78, 0xd0, 0x23, 0x74, 0xc0, 0x31, 0x93, 0x25, 0xc8, 0xe0, 0x74, 0x2c,
0x30, 0x1f, 0x30, 0xec, 0x27, 0x8c, 0x93, 0x0b, 0xb9, 0x7e, 0xd2, 0xed, 0x5b, 0xda, 0xed, 0x09,
0xdb, 0xbc, 0xdb, 0x84, 0x1e, 0xeb, 0x79, 0x7b, 0x72, 0x9a, 0x67, 0x67, 0x39, 0x47, 0x70, 0x2b,
0xc3, 0x0c, 0x72, 0x70, 0xe5, 0x45, 0x70, 0xeb, 0x29, 0x5c, 0x90, 0x41, 0x1d, 0xc0, 0x3a, 0xa1,
0x83, 0x6f, 0x12, 0x9c, 0x14, 0x80, 0x2a, 0x8b, 0x80, 0x3a, 0x84, 0xfe, 0x4a, 0x4d, 0xc8, 0x60,
0xfa, 0xf0, 0x5e, 0xce, 0x4b, 0x79, 0xdc, 0x73, 0x60, 0xd5, 0x45, 0x60, 0x9b, 0xa9, 0x55, 0x32,
0x1f, 0x64, 0x88, 0xbf, 0x80, 0x4d, 0x42, 0x07, 0x97, 0x88, 0x88, 0x49, 0xb8, 0xda, 0x3b, 0x9c,
0x94, 0x97, 0x6e, 0x11, 0x4b, 0x3b, 0x19, 0x62, 0x36, 0x2c, 0x38, 0x59, 0x7f, 0x87, 0x93, 0x2f,
0xd4, 0x84, 0x0c, 0xe6, 0x29, 0x74, 0x08, 0x9d, 0xb4, 0x66, 0x69, 0x11, 0xc8, 0x2a, 0xa1, 0x45,
0x4b, 0xf6, 0xa0, 0xc3, 0xb1, 0x2f, 0x28, 0xcb, 0x6f, 0x82, 0xe5, 0x45, 0x10, 0x6b, 0x46, 0x3e,
0xc5, 0x70, 0x7f, 0x03, 0xad, 0xe7, 0xc9, 0x10, 0x8b, 0xd1, 0x69, 0x9a, 0x0c, 0x6e, 0x2c, 0xff,
0xb8, 0xff, 0x2e, 0x43, 0x73, 0x7f, 0xc8, 0x68, 0x12, 0x17, 0x72, 0xb2, 0x3e, 0xa4, 0x93, 0x39,
0x59, 0x89, 0xa8, 0x9c, 0xac, 0x85, 0x1f, 0x41, 0x2b, 0x54, 0x47, 0xd7, 0xc8, 0xeb, 0x3c, 0xd4,
0x99, 0x3a, 0xd4, 0x5e, 0x33, 0xcc, 0x25, 0xb3, 0x1d, 0x80, 0x98, 0x04, 0xdc, 0xcc, 0xd1, 0xe9,
0x68, 0xd5, 0x54, 0x84, 0x36, 0x45, 0x7b, 0x8d, 0x38, 0xcd, 0xd6, 0x9f, 0x40, 0xf3, 0x54, 0x06,
0xc9, 0x4c, 0x28, 0x24, 0xa3, 0x2c, 0x7a, 0x1e, 0x9c, 0x66, 0x87, 0xf0, 0x39, 0xb4, 0xcf, 0x75,
0xc8, 0xcc, 0x24, 0xbd, 0x87, 0xee, 0x19, 0x4f, 0x32, 0x7f, 0x77, 0xf2, 0x91, 0xd5, 0x0b, 0xd0,
0x3a, 0xcf, 0xb1, 0x7a, 0xc7, 0xd0, 0x99, 0x12, 0x99, 0x91, 0x83, 0xb6, 0xf3, 0x39, 0xa8, 0xb9,
0xeb, 0x68, 0x45, 0xf9, 0x99, 0xf9, 0xbc, 0xf4, 0x4b, 0xd8, 0x9c, 0x2c, 0x73, 0x4c, 0x51, 0xf6,
0x08, 0x5a, 0xbe, 0xb2, 0xae, 0xb0, 0x02, 0x9d, 0x29, 0xbb, 0xbd, 0xa6, 0x9f, 0x11, 0x6e, 0x00,
0xce, 0x6b, 0x46, 0x04, 0x3e, 0x16, 0x0c, 0xa3, 0xf0, 0x26, 0xaa, 0x66, 0x07, 0xaa, 0xea, 0x8a,
0xad, 0xa8, 0xa2, 0x50, 0x7d, 0xbb, 0x1f, 0xc2, 0x7a, 0x41, 0x8b, 0x31, 0x79, 0x0d, 0x2a, 0x23,
// 2290 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0x5b, 0x73, 0x1c, 0x47,
0x15, 0x66, 0xaf, 0xd2, 0x9e, 0xdd, 0x95, 0xb4, 0x23, 0x59, 0xde, 0xac, 0x8d, 0x51, 0xc6, 0xe0,
0x88, 0x04, 0xcb, 0x15, 0xc5, 0x05, 0x29, 0xbb, 0x52, 0xc1, 0xba, 0x20, 0x8b, 0xc4, 0x78, 0x19,
0x59, 0x65, 0xaa, 0x78, 0xd8, 0x6a, 0xcd, 0xb4, 0x56, 0x1d, 0xef, 0x4c, 0x4f, 0xba, 0x7b, 0x24,
0x2d, 0xa9, 0xe2, 0x91, 0x5f, 0xc0, 0x2b, 0x7f, 0x80, 0xe2, 0x2d, 0x7f, 0x81, 0x07, 0x1e, 0xf9,
0x05, 0x14, 0xe5, 0x9f, 0xc0, 0x1b, 0x6f, 0x54, 0xdf, 0xe6, 0xb2, 0x17, 0x19, 0x14, 0x55, 0xf1,
0xb2, 0x3b, 0xe7, 0xf4, 0xe9, 0xef, 0x5c, 0xba, 0xfb, 0xf4, 0xe9, 0x03, 0x4d, 0x34, 0xc4, 0x91,
0xd8, 0x8a, 0x19, 0x15, 0xd4, 0xa9, 0x0e, 0x59, 0xec, 0xf7, 0x1a, 0xd4, 0x27, 0x9a, 0xd1, 0xbb,
0x33, 0xa4, 0x74, 0x38, 0xc2, 0x8f, 0x14, 0x75, 0x92, 0x9c, 0x3e, 0xc2, 0x61, 0x2c, 0xc6, 0x7a,
0xd0, 0xfd, 0x53, 0x19, 0xd6, 0x77, 0x19, 0x46, 0x02, 0xef, 0xd2, 0x48, 0x20, 0x12, 0x61, 0xe6,
0xe1, 0xaf, 0x13, 0xcc, 0x85, 0xf3, 0x3e, 0xb4, 0x7c, 0xcb, 0x1b, 0x90, 0xa0, 0x5b, 0xda, 0x28,
0x6d, 0x36, 0xbc, 0x66, 0xca, 0x3b, 0x0c, 0x9c, 0xdb, 0xb0, 0x80, 0x2f, 0xb1, 0x2f, 0x47, 0xcb,
0x6a, 0xb4, 0x2e, 0xc9, 0xc3, 0xc0, 0xf9, 0x18, 0x9a, 0x5c, 0x30, 0x12, 0x0d, 0x07, 0x09, 0xc7,
0xac, 0x5b, 0xd9, 0x28, 0x6d, 0x36, 0xb7, 0x57, 0xb6, 0xa4, 0x69, 0x5b, 0x47, 0x6a, 0xe0, 0x98,
0x63, 0xe6, 0x01, 0x4f, 0xbf, 0x9d, 0x07, 0xb0, 0x10, 0xe0, 0x73, 0xe2, 0x63, 0xde, 0xad, 0x6e,
0x54, 0x36, 0x9b, 0xdb, 0x2d, 0x2d, 0xbe, 0xa7, 0x98, 0x9e, 0x1d, 0x74, 0x7e, 0x0c, 0x8b, 0x5c,
0x50, 0x86, 0x86, 0x98, 0x77, 0x6b, 0x4a, 0xb0, 0x6d, 0x71, 0x15, 0xd7, 0x4b, 0x87, 0x9d, 0xbb,
0x50, 0x79, 0xb9, 0x7b, 0xd8, 0xad, 0x2b, 0xed, 0x60, 0xa4, 0x62, 0xec, 0x7b, 0x92, 0xed, 0xdc,
0x87, 0x36, 0x47, 0x51, 0x70, 0x42, 0x2f, 0x07, 0x31, 0x09, 0x22, 0xde, 0x5d, 0xd8, 0x28, 0x6d,
0x2e, 0x7a, 0x2d, 0xc3, 0xec, 0x4b, 0x9e, 0xfb, 0x04, 0x6e, 0x1d, 0x09, 0xc4, 0xc4, 0x35, 0xa2,
0xe3, 0x1e, 0xc3, 0xba, 0x87, 0x43, 0x7a, 0x7e, 0xad, 0xd0, 0x76, 0x61, 0x41, 0x90, 0x10, 0xd3,
0x44, 0xa8, 0xd0, 0xb6, 0x3d, 0x4b, 0xba, 0x7f, 0x29, 0x81, 0xb3, 0x7f, 0x89, 0xfd, 0x3e, 0xa3,
0x3e, 0xe6, 0xfc, 0xff, 0xb4, 0x5c, 0x1f, 0xc0, 0x42, 0xac, 0x0d, 0xe8, 0x56, 0x95, 0xb8, 0x59,
0x05, 0x6b, 0x95, 0x1d, 0x75, 0xbf, 0x82, 0xb5, 0x23, 0x32, 0x8c, 0xd0, 0xe8, 0x06, 0xed, 0x5d,
0x87, 0x3a, 0x57, 0x98, 0xca, 0xd4, 0xb6, 0x67, 0x28, 0xb7, 0x0f, 0xce, 0x6b, 0x44, 0xc4, 0xcd,
0x69, 0x72, 0x1f, 0xc2, 0x6a, 0x01, 0x91, 0xc7, 0x34, 0xe2, 0x58, 0x19, 0x20, 0x90, 0x48, 0xb8,
0x02, 0xab, 0x79, 0x86, 0x72, 0x31, 0xac, 0x7d, 0x49, 0xb8, 0x15, 0xc7, 0xff, 0x8b, 0x09, 0xeb,
0x50, 0x3f, 0xa5, 0x2c, 0x44, 0xc2, 0x5a, 0xa0, 0x29, 0xc7, 0x81, 0x2a, 0x62, 0x43, 0xde, 0xad,
0x6c, 0x54, 0x36, 0x1b, 0x9e, 0xfa, 0x96, 0xbb, 0x72, 0x42, 0x8d, 0xb1, 0xeb, 0x7d, 0x68, 0x99,
0xb8, 0x0f, 0x46, 0x84, 0x0b, 0xa5, 0xa7, 0xe5, 0x35, 0x0d, 0x4f, 0xce, 0x71, 0x29, 0xac, 0x1f,
0xc7, 0xc1, 0x35, 0x0f, 0xfc, 0x36, 0x34, 0x18, 0xe6, 0x34, 0x61, 0xf2, 0x98, 0x96, 0xd5, 0xba,
0xaf, 0xe9, 0x75, 0xff, 0x92, 0x44, 0xc9, 0xa5, 0x67, 0xc7, 0xbc, 0x4c, 0xcc, 0x1c, 0x21, 0xc1,
0xaf, 0x73, 0x84, 0x9e, 0xc0, 0xad, 0x3e, 0x4a, 0xf8, 0x75, 0x6c, 0x75, 0x9f, 0xca, 0xe3, 0xc7,
0x93, 0xf0, 0x5a, 0x93, 0xff, 0x5c, 0x82, 0xc5, 0xdd, 0x38, 0x39, 0xe6, 0x68, 0x88, 0x9d, 0x1f,
0x40, 0x53, 0x50, 0x81, 0x46, 0x83, 0x44, 0x92, 0x4a, 0xbc, 0xea, 0x81, 0x62, 0x69, 0x01, 0x19,
0x76, 0xcc, 0xfc, 0x38, 0x31, 0x12, 0xe5, 0x8d, 0xca, 0x66, 0xd5, 0x6b, 0x6a, 0x9e, 0x16, 0xd9,
0x82, 0x55, 0x35, 0x36, 0x20, 0xd1, 0xe0, 0x0d, 0x66, 0x11, 0x1e, 0x85, 0x34, 0xc0, 0x6a, 0xff,
0x56, 0xbd, 0x8e, 0x1a, 0x3a, 0x8c, 0xbe, 0x48, 0x07, 0x9c, 0x0f, 0xa1, 0x93, 0xca, 0xcb, 0x43,
0xa9, 0xa4, 0xab, 0x4a, 0x7a, 0xd9, 0x48, 0x1f, 0x1b, 0xb6, 0xfb, 0x7b, 0x58, 0x7a, 0x75, 0xc6,
0xa8, 0x10, 0x23, 0x12, 0x0d, 0xf7, 0x90, 0x40, 0x32, 0x7b, 0xc4, 0x98, 0x11, 0x1a, 0x70, 0x63,
0xad, 0x25, 0x9d, 0x8f, 0xa0, 0x23, 0xb4, 0x2c, 0x0e, 0x06, 0x56, 0xa6, 0xac, 0x64, 0x56, 0xd2,
0x81, 0xbe, 0x11, 0xfe, 0x11, 0x2c, 0x65, 0xc2, 0x32, 0xff, 0x18, 0x7b, 0xdb, 0x29, 0xf7, 0x15,
0x09, 0xb1, 0x7b, 0xae, 0x62, 0xa5, 0x16, 0xd9, 0xf9, 0x08, 0x1a, 0x59, 0x1c, 0x4a, 0x6a, 0x87,
0x2c, 0xe9, 0x1d, 0x62, 0xc3, 0xe9, 0x2d, 0xa6, 0x41, 0xf9, 0x0c, 0x96, 0x45, 0x6a, 0xf8, 0x20,
0x40, 0x02, 0x15, 0x37, 0x55, 0xd1, 0x2b, 0x6f, 0x49, 0x14, 0x68, 0xf7, 0x29, 0x34, 0xfa, 0x24,
0xe0, 0x5a, 0x71, 0x17, 0x16, 0xfc, 0x84, 0x31, 0x1c, 0x09, 0xeb, 0xb2, 0x21, 0x9d, 0x35, 0xa8,
0x8d, 0x48, 0x48, 0x84, 0x71, 0x53, 0x13, 0x2e, 0x05, 0x78, 0x81, 0x43, 0xca, 0xc6, 0x2a, 0x60,
0x6b, 0x50, 0xcb, 0x2f, 0xae, 0x26, 0x9c, 0x3b, 0xd0, 0x08, 0xd1, 0x65, 0xba, 0xa8, 0x72, 0x64,
0x31, 0x44, 0x97, 0xda, 0xf8, 0x2e, 0x2c, 0x9c, 0x22, 0x32, 0xf2, 0x23, 0x61, 0xa2, 0x62, 0xc9,
0x4c, 0x61, 0x35, 0xaf, 0xf0, 0xaf, 0x65, 0x68, 0x6a, 0x8d, 0xda, 0xe0, 0x35, 0xa8, 0xf9, 0xc8,
0x3f, 0x4b, 0x55, 0x2a, 0xc2, 0x79, 0x60, 0x0d, 0x29, 0xe7, 0x93, 0x70, 0x66, 0xa9, 0x35, 0xed,
0x11, 0x00, 0xbf, 0x40, 0xb1, 0xb1, 0xad, 0x32, 0x47, 0xb8, 0x21, 0x65, 0xb4, 0xb9, 0x9f, 0x40,
0x4b, 0xef, 0x3b, 0x33, 0xa5, 0x3a, 0x67, 0x4a, 0x53, 0x4b, 0xe9, 0x49, 0xf7, 0xa1, 0x9d, 0x70,
0x3c, 0x38, 0x23, 0x98, 0x21, 0xe6, 0x9f, 0x8d, 0xbb, 0x35, 0x7d, 0x47, 0x26, 0x1c, 0x3f, 0xb7,
0x3c, 0x67, 0x1b, 0x6a, 0x32, 0xfd, 0xf1, 0x6e, 0x5d, 0x5d, 0xc7, 0x77, 0xf3, 0x90, 0xca, 0xd5,
0x2d, 0xf5, 0xbb, 0x1f, 0x09, 0x36, 0xf6, 0xb4, 0x68, 0xef, 0x53, 0x80, 0x8c, 0xe9, 0xac, 0x40,
0xe5, 0x0d, 0x1e, 0x9b, 0x73, 0x28, 0x3f, 0x65, 0x70, 0xce, 0xd1, 0x28, 0xb1, 0x51, 0xd7, 0xc4,
0x93, 0xf2, 0xa7, 0x25, 0xd7, 0x87, 0xe5, 0x9d, 0xd1, 0x1b, 0x42, 0x73, 0xd3, 0xd7, 0xa0, 0x16,
0xa2, 0xaf, 0x28, 0xb3, 0x91, 0x54, 0x84, 0xe2, 0x92, 0x88, 0x32, 0x0b, 0xa1, 0x08, 0x67, 0x09,
0xca, 0x34, 0x56, 0xf1, 0x6a, 0x78, 0x65, 0x1a, 0x67, 0x8a, 0xaa, 0x39, 0x45, 0xee, 0x3f, 0xaa,
0x00, 0x99, 0x16, 0xc7, 0x83, 0x1e, 0xa1, 0x03, 0x8e, 0x99, 0x2c, 0x41, 0x06, 0x27, 0x63, 0x81,
0xf9, 0x80, 0x61, 0x3f, 0x61, 0x9c, 0x9c, 0xcb, 0xf5, 0x93, 0x6e, 0xdf, 0xd2, 0x6e, 0x4f, 0xd8,
0xe6, 0xdd, 0x26, 0xf4, 0x48, 0xcf, 0xdb, 0x91, 0xd3, 0x3c, 0x3b, 0xcb, 0x39, 0x84, 0x5b, 0x19,
0x66, 0x90, 0x83, 0x2b, 0x5f, 0x05, 0xb7, 0x9a, 0xc2, 0x05, 0x19, 0xd4, 0x3e, 0xac, 0x12, 0x3a,
0xf8, 0x3a, 0xc1, 0x49, 0x01, 0xa8, 0x72, 0x15, 0x50, 0x87, 0xd0, 0x5f, 0xab, 0x09, 0x19, 0x4c,
0x1f, 0xde, 0xcb, 0x79, 0x29, 0x8f, 0x7b, 0x0e, 0xac, 0x7a, 0x15, 0xd8, 0x7a, 0x6a, 0x95, 0xcc,
0x07, 0x19, 0xe2, 0x2f, 0x61, 0x9d, 0xd0, 0xc1, 0x05, 0x22, 0x62, 0x12, 0xae, 0xf6, 0x0e, 0x27,
0xe5, 0xa5, 0x5b, 0xc4, 0xd2, 0x4e, 0x86, 0x98, 0x0d, 0x0b, 0x4e, 0xd6, 0xdf, 0xe1, 0xe4, 0x0b,
0x35, 0x21, 0x83, 0x79, 0x06, 0x1d, 0x42, 0x27, 0xad, 0x59, 0xb8, 0x0a, 0x64, 0x99, 0xd0, 0xa2,
0x25, 0x3b, 0xd0, 0xe1, 0xd8, 0x17, 0x94, 0xe5, 0x37, 0xc1, 0xe2, 0x55, 0x10, 0x2b, 0x46, 0x3e,
0xc5, 0x70, 0x7f, 0x0b, 0xad, 0xe7, 0xc9, 0x10, 0x8b, 0xd1, 0x49, 0x9a, 0x0c, 0x6e, 0x2c, 0xff,
0xb8, 0xff, 0x2a, 0x43, 0x73, 0x77, 0xc8, 0x68, 0x12, 0x17, 0x72, 0xb2, 0x3e, 0xa4, 0x93, 0x39,
0x59, 0x89, 0xa8, 0x9c, 0xac, 0x85, 0x1f, 0x43, 0x2b, 0x54, 0x47, 0xd7, 0xc8, 0xeb, 0x3c, 0xd4,
0x99, 0x3a, 0xd4, 0x5e, 0x33, 0xcc, 0x25, 0xb3, 0x2d, 0x80, 0x98, 0x04, 0xdc, 0xcc, 0xd1, 0xe9,
0x68, 0xd9, 0x54, 0x84, 0x36, 0x45, 0x7b, 0x8d, 0x38, 0xcd, 0xd6, 0x1f, 0x43, 0xf3, 0x44, 0x06,
0xc9, 0x4c, 0x28, 0x24, 0xa3, 0x2c, 0x7a, 0x1e, 0x9c, 0x64, 0x87, 0xf0, 0x39, 0xb4, 0xcf, 0x74,
0xc8, 0xcc, 0x24, 0xbd, 0x87, 0xee, 0x1b, 0x4f, 0x32, 0x7f, 0xb7, 0xf2, 0x91, 0xd5, 0x0b, 0xd0,
0x3a, 0xcb, 0xb1, 0x7a, 0x47, 0xd0, 0x99, 0x12, 0x99, 0x91, 0x83, 0x36, 0xf3, 0x39, 0xa8, 0xb9,
0xed, 0x68, 0x45, 0xf9, 0x99, 0xf9, 0xbc, 0xf4, 0x2b, 0x58, 0x9f, 0x2c, 0x73, 0x4c, 0x51, 0xf6,
0x18, 0x5a, 0xbe, 0xb2, 0xae, 0xb0, 0x02, 0x9d, 0x29, 0xbb, 0xbd, 0xa6, 0x9f, 0x11, 0x6e, 0x00,
0xce, 0x6b, 0x46, 0x04, 0x3e, 0x12, 0x0c, 0xa3, 0xf0, 0x26, 0xaa, 0x66, 0x07, 0xaa, 0xea, 0x8a,
0xad, 0xa8, 0xa2, 0x50, 0x7d, 0xbb, 0x1f, 0xc0, 0x6a, 0x41, 0x8b, 0x31, 0x79, 0x05, 0x2a, 0x23,
0x1c, 0x29, 0xf4, 0xb6, 0x27, 0x3f, 0x5d, 0x04, 0x1d, 0x0f, 0xa3, 0xe0, 0xe6, 0xac, 0x31, 0x2a,
0x2a, 0x99, 0x8a, 0x6d, 0x70, 0xf2, 0x2a, 0x8c, 0x29, 0xd6, 0xea, 0x52, 0xce, 0xea, 0x97, 0xd0,
0xd9, 0x1f, 0x51, 0x8e, 0x8f, 0x45, 0x40, 0xa2, 0x9b, 0x28, 0xf3, 0xbf, 0x85, 0xf5, 0x57, 0x62,
0xfc, 0x5a, 0x82, 0x71, 0xf2, 0x5b, 0x7c, 0x43, 0xfe, 0x31, 0x7a, 0x69, 0xfd, 0x63, 0xf4, 0x52,
0x56, 0xf8, 0x3e, 0x1d, 0x25, 0x61, 0xa4, 0xb6, 0x7b, 0xdb, 0x33, 0x94, 0xfb, 0xd7, 0x12, 0x6c,
0xe8, 0x37, 0xf8, 0xb1, 0x7e, 0x7a, 0x5a, 0xf5, 0x3d, 0x58, 0x3e, 0xa7, 0x5c, 0x44, 0x28, 0xc4,
0x46, 0x75, 0x4a, 0x4b, 0x78, 0xf9, 0x66, 0x2d, 0xab, 0x57, 0x81, 0xfc, 0x2c, 0x3c, 0x8c, 0x2b,
0x8b, 0x1f, 0xc6, 0x53, 0x4f, 0xdf, 0xea, 0xf4, 0xd3, 0xd7, 0xf9, 0x3e, 0x80, 0x15, 0x22, 0x81,
0xba, 0xf8, 0x1b, 0x5e, 0xc3, 0x70, 0x8e, 0x02, 0xf7, 0x36, 0xdc, 0x7a, 0x86, 0xb9, 0x60, 0x74,
0x5c, 0xb4, 0xda, 0x45, 0xd0, 0x38, 0xea, 0x3f, 0x0d, 0x02, 0x86, 0x39, 0x77, 0xee, 0x43, 0xfd,
0x0c, 0x85, 0x64, 0xa4, 0x0f, 0xd6, 0x8a, 0xcd, 0x3b, 0x47, 0xfd, 0x9f, 0x2b, 0xae, 0x67, 0x46,
0x65, 0x32, 0x43, 0x7a, 0x8a, 0x09, 0xa3, 0x25, 0xe5, 0xfa, 0x87, 0x88, 0xbf, 0x31, 0x57, 0xb6,
0xfa, 0x76, 0xff, 0x50, 0x82, 0xc6, 0x51, 0x24, 0x30, 0x3b, 0x43, 0xbe, 0x7a, 0x8c, 0xe9, 0xe6,
0x80, 0x09, 0x92, 0xa1, 0xe4, 0x4c, 0x15, 0x3a, 0x0d, 0xa8, 0xbe, 0x65, 0xde, 0x49, 0x8d, 0x4b,
0xe3, 0xb4, 0x6a, 0x8d, 0x32, 0x03, 0x5e, 0x5e, 0x46, 0x46, 0x3a, 0x14, 0x89, 0xa9, 0x0f, 0xe4,
0xa7, 0x54, 0x78, 0x7e, 0x29, 0x05, 0x4c, 0x54, 0x0c, 0xe5, 0x7e, 0x0b, 0x35, 0x8f, 0x26, 0x42,
0xef, 0x59, 0x6c, 0x9e, 0x5f, 0x0d, 0x4f, 0x7d, 0x4b, 0x0f, 0x87, 0x48, 0xe0, 0x4b, 0x34, 0xb6,
0x1e, 0x1a, 0x32, 0x67, 0x7f, 0xa5, 0x60, 0xbf, 0x7c, 0x64, 0xaa, 0x37, 0x94, 0xd2, 0xdd, 0xf0,
0x0c, 0x25, 0xef, 0x0a, 0xee, 0xd3, 0x18, 0x2b, 0xed, 0x6d, 0x4f, 0x13, 0xee, 0x03, 0xa8, 0x2b,
0xe5, 0x72, 0x75, 0xcd, 0x97, 0xa9, 0x4c, 0x9a, 0xda, 0x3d, 0xc5, 0xf3, 0xcc, 0x90, 0x7b, 0x68,
0x9f, 0x81, 0x69, 0x1c, 0xed, 0xae, 0x7b, 0x00, 0x0d, 0x62, 0x79, 0x26, 0x57, 0xd9, 0x00, 0xa5,
0xa2, 0x99, 0x84, 0xfb, 0x0c, 0xd6, 0x9f, 0x06, 0xc1, 0x77, 0x45, 0x39, 0xb4, 0xbd, 0x92, 0xef,
0x0a, 0xf4, 0x04, 0xd6, 0xb5, 0x5f, 0xda, 0x4f, 0x8b, 0xf2, 0x43, 0xa8, 0x33, 0x1b, 0x93, 0x52,
0xd6, 0x5c, 0x32, 0x42, 0x66, 0xcc, 0xdd, 0x83, 0xf5, 0x97, 0xd1, 0x88, 0x44, 0x78, 0xbf, 0x7f,
0xf2, 0x02, 0xa7, 0x69, 0xce, 0x81, 0xaa, 0xac, 0x61, 0xd4, 0xd4, 0x65, 0x4f, 0x7d, 0xcb, 0x73,
0x1f, 0x9d, 0x0e, 0xfc, 0x38, 0xe1, 0xa6, 0x3f, 0x53, 0x8f, 0x4e, 0xf7, 0xe3, 0x84, 0xcb, 0xd3,
0xbc, 0x64, 0x4e, 0x9c, 0x5a, 0x59, 0x46, 0x2e, 0x30, 0x4b, 0x77, 0xa6, 0xa2, 0xe4, 0xbb, 0x4a,
0x7f, 0x0d, 0x68, 0x2c, 0x08, 0x4d, 0xcf, 0x71, 0x5b, 0x73, 0x5f, 0x6a, 0x66, 0x6e, 0x03, 0x54,
0x0a, 0x1b, 0x60, 0x13, 0xea, 0x67, 0x5c, 0x8c, 0xe3, 0x74, 0x63, 0x68, 0x4a, 0x6e, 0x31, 0x8b,
0x57, 0x53, 0x78, 0x96, 0x94, 0x2f, 0xd8, 0x90, 0x26, 0x91, 0x18, 0xc4, 0x94, 0x44, 0x42, 0x75,
0xc4, 0x1a, 0x1e, 0x28, 0x56, 0x5f, 0x72, 0xdc, 0xdf, 0x97, 0xa0, 0xae, 0x3b, 0x6d, 0xb2, 0x42,
0x4e, 0x53, 0x5d, 0x99, 0xa8, 0x6b, 0x43, 0xe9, 0x32, 0xc7, 0x48, 0x69, 0xba, 0x0d, 0x4b, 0x17,
0xe1, 0x20, 0x46, 0xe2, 0xdc, 0x9a, 0x76, 0x11, 0xf6, 0x91, 0x38, 0x97, 0x9e, 0x65, 0x19, 0x53,
0x8d, 0x6b, 0x13, 0xdb, 0x29, 0x57, 0x89, 0xcd, 0xb5, 0xd4, 0xfd, 0xb5, 0x7c, 0x18, 0xa4, 0x5d,
0xa6, 0x35, 0xa8, 0x24, 0xa9, 0x31, 0xf2, 0x53, 0x72, 0x86, 0x69, 0xae, 0x95, 0x9f, 0xce, 0x7d,
0x58, 0x41, 0x41, 0x40, 0xe4, 0x74, 0x34, 0x3a, 0x24, 0x81, 0x6d, 0x95, 0x4c, 0x70, 0x3f, 0xea,
0xc1, 0xb2, 0x4d, 0x3b, 0x4e, 0x1d, 0xca, 0x17, 0x8f, 0xd6, 0xbe, 0xa7, 0xfe, 0x7f, 0xb2, 0x56,
0xda, 0xfd, 0x4b, 0x0b, 0x5a, 0x4f, 0x87, 0x38, 0x12, 0xa6, 0x8c, 0x75, 0x0e, 0x61, 0x75, 0xa2,
0x2d, 0xea, 0x98, 0x77, 0xcd, 0xec, 0x6e, 0x69, 0x6f, 0x73, 0x47, 0xb7, 0x59, 0x77, 0x6c, 0x9b,
0x75, 0xe7, 0x20, 0x8c, 0xc5, 0xd8, 0x39, 0x80, 0x95, 0x62, 0x03, 0xd1, 0xb9, 0x63, 0xb3, 0xf2,
0x8c, 0xb6, 0xe2, 0x5c, 0x98, 0x43, 0x58, 0x9d, 0xe8, 0x25, 0x5a, 0x7b, 0x66, 0xb7, 0x18, 0xe7,
0x02, 0x7d, 0x01, 0xcd, 0x5c, 0xf3, 0xd0, 0xe9, 0x6a, 0x90, 0xe9, 0x7e, 0xe2, 0x5c, 0x80, 0x7d,
0x68, 0x17, 0xfa, 0x79, 0x4e, 0xcf, 0xf8, 0x33, 0xa3, 0xc9, 0x37, 0x17, 0x64, 0x0f, 0x9a, 0xb9,
0xb6, 0x9a, 0xb5, 0x62, 0xba, 0x77, 0xd7, 0x7b, 0x6f, 0xc6, 0x88, 0x29, 0x0c, 0x9e, 0x43, 0xbb,
0xd0, 0x04, 0xb3, 0x86, 0xcc, 0x6a, 0xc0, 0xf5, 0xee, 0xcc, 0x1c, 0x33, 0x48, 0x87, 0xb0, 0x3a,
0xd1, 0x12, 0xb3, 0xc1, 0x9d, 0xdd, 0x29, 0x9b, 0xeb, 0xd6, 0x97, 0x6a, 0xb1, 0x73, 0x35, 0x60,
0x6e, 0xb1, 0xa7, 0x1b, 0x60, 0xbd, 0xf7, 0x67, 0x0f, 0x1a, 0xab, 0x0e, 0x60, 0xa5, 0xd8, 0xfb,
0xb2, 0x60, 0x33, 0x3b, 0x62, 0x8b, 0x77, 0x4e, 0xa1, 0x0d, 0x96, 0xed, 0x9c, 0x59, 0xdd, 0xb1,
0xb9, 0x40, 0x4f, 0x01, 0x4c, 0xa9, 0x18, 0x90, 0x28, 0x5d, 0xb2, 0xa9, 0x12, 0x35, 0x5d, 0xb2,
0x19, 0x65, 0xe5, 0x17, 0x00, 0xba, 0xc2, 0x0b, 0x68, 0x22, 0x9c, 0xdb, 0xd6, 0x8c, 0x89, 0xb2,
0xb2, 0xd7, 0x9d, 0x1e, 0x98, 0x02, 0xc0, 0x8c, 0x5d, 0x07, 0xe0, 0x73, 0x80, 0xac, 0x72, 0xb4,
0x00, 0x53, 0xb5, 0xe4, 0x82, 0x18, 0xb4, 0xf2, 0x75, 0xa2, 0x63, 0x7c, 0x9d, 0x51, 0x3b, 0xce,
0x85, 0x78, 0x0c, 0xad, 0xfc, 0x7d, 0x69, 0x21, 0x66, 0xdc, 0xa1, 0xbd, 0xc9, 0x7b, 0xce, 0xf9,
0x99, 0xdd, 0xa8, 0x19, 0xab, 0xb0, 0x51, 0xff, 0x2b, 0x84, 0x89, 0x7b, 0xb6, 0x98, 0x47, 0xde,
0x8d, 0xf0, 0x53, 0x68, 0xe5, 0x2f, 0x58, 0x6b, 0xff, 0x8c, 0x4b, 0xb7, 0x57, 0xb8, 0x64, 0x65,
0xe2, 0x28, 0x54, 0xb9, 0xf6, 0xbc, 0xce, 0x2a, 0x7d, 0x17, 0xa5, 0xd3, 0x62, 0xd5, 0x69, 0x0f,
0xc5, 0xcc, 0x5a, 0x74, 0xd1, 0x3a, 0xe6, 0x2f, 0x7a, 0xeb, 0xc4, 0x8c, 0xcb, 0x7f, 0x1e, 0xc4,
0x5e, 0xeb, 0xef, 0x6f, 0xef, 0x96, 0xfe, 0xf1, 0xf6, 0x6e, 0xe9, 0x5f, 0x6f, 0xef, 0x96, 0x4e,
0xeb, 0x6a, 0xf4, 0xd3, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xc0, 0xbf, 0x6f, 0x42, 0x8b, 0x1b,
0x2a, 0x99, 0x8a, 0x4d, 0x70, 0xf2, 0x2a, 0x8c, 0x29, 0xd6, 0xea, 0x52, 0xce, 0xea, 0x97, 0xd0,
0xd9, 0x1d, 0x51, 0x8e, 0x8f, 0x44, 0x40, 0xa2, 0x9b, 0x28, 0xf3, 0xbf, 0x81, 0xd5, 0x57, 0x62,
0xfc, 0x5a, 0x82, 0x71, 0xf2, 0x3b, 0x7c, 0x43, 0xfe, 0x31, 0x7a, 0x61, 0xfd, 0x63, 0xf4, 0x42,
0x56, 0xf8, 0x3e, 0x1d, 0x25, 0x61, 0xa4, 0xb6, 0x7b, 0xdb, 0x33, 0x94, 0xfb, 0x6d, 0x09, 0xd6,
0xf4, 0x1b, 0xfc, 0x48, 0x3f, 0x3d, 0xad, 0xfa, 0x1e, 0x2c, 0x9e, 0x51, 0x2e, 0x22, 0x14, 0x62,
0xa3, 0x3a, 0xa5, 0x25, 0xbc, 0x7c, 0xb3, 0x96, 0xd5, 0xab, 0x40, 0x7e, 0x16, 0x1e, 0xc6, 0x95,
0xab, 0x1f, 0xc6, 0x53, 0x4f, 0xdf, 0xea, 0xf4, 0xd3, 0xd7, 0xf9, 0x3e, 0x80, 0x15, 0x22, 0x81,
0xba, 0xf8, 0x1b, 0x5e, 0xc3, 0x70, 0x0e, 0x03, 0xf7, 0x36, 0xdc, 0xda, 0xc3, 0x5c, 0x30, 0x3a,
0x2e, 0x5a, 0xed, 0x22, 0x68, 0x1c, 0xf6, 0x9f, 0x05, 0x01, 0xc3, 0x9c, 0x3b, 0x0f, 0xa0, 0x7e,
0x8a, 0x42, 0x32, 0xd2, 0x07, 0x6b, 0xc9, 0xe6, 0x9d, 0xc3, 0xfe, 0x2f, 0x14, 0xd7, 0x33, 0xa3,
0x32, 0x99, 0x21, 0x3d, 0xc5, 0x84, 0xd1, 0x92, 0x72, 0xfd, 0x43, 0xc4, 0xdf, 0x98, 0x2b, 0x5b,
0x7d, 0xbb, 0x7f, 0x2c, 0x41, 0xe3, 0x30, 0x12, 0x98, 0x9d, 0x22, 0x5f, 0x3d, 0xc6, 0x74, 0x73,
0xc0, 0x04, 0xc9, 0x50, 0x72, 0xa6, 0x0a, 0x9d, 0x06, 0x54, 0xdf, 0x32, 0xef, 0xa4, 0xc6, 0xa5,
0x71, 0x5a, 0xb6, 0x46, 0x99, 0x01, 0x2f, 0x2f, 0x23, 0x23, 0x1d, 0x8a, 0xc4, 0xd4, 0x07, 0xf2,
0x53, 0x2a, 0x3c, 0xbb, 0x90, 0x02, 0x26, 0x2a, 0x86, 0x72, 0xbf, 0x81, 0x9a, 0x47, 0x13, 0xa1,
0xf7, 0x2c, 0x36, 0xcf, 0xaf, 0x86, 0xa7, 0xbe, 0xa5, 0x87, 0x43, 0x24, 0xf0, 0x05, 0x1a, 0x5b,
0x0f, 0x0d, 0x99, 0xb3, 0xbf, 0x52, 0xb0, 0x5f, 0x3e, 0x32, 0xd5, 0x1b, 0x4a, 0xe9, 0x6e, 0x78,
0x86, 0x92, 0x77, 0x05, 0xf7, 0x69, 0x8c, 0x95, 0xf6, 0xb6, 0xa7, 0x09, 0xf7, 0x21, 0xd4, 0x95,
0x72, 0xb9, 0xba, 0xe6, 0xcb, 0x54, 0x26, 0x4d, 0xed, 0x9e, 0xe2, 0x79, 0x66, 0xc8, 0x3d, 0xb0,
0xcf, 0xc0, 0x34, 0x8e, 0x76, 0xd7, 0x3d, 0x84, 0x06, 0xb1, 0x3c, 0x93, 0xab, 0x6c, 0x80, 0x52,
0xd1, 0x4c, 0xc2, 0xdd, 0x83, 0xd5, 0x67, 0x41, 0xf0, 0x5d, 0x51, 0x0e, 0x6c, 0xaf, 0xe4, 0xbb,
0x02, 0x3d, 0x85, 0x55, 0xed, 0x97, 0xf6, 0xd3, 0xa2, 0xfc, 0x10, 0xea, 0xcc, 0xc6, 0xa4, 0x94,
0x35, 0x97, 0x8c, 0x90, 0x19, 0x73, 0x77, 0x60, 0xf5, 0x65, 0x34, 0x22, 0x11, 0xde, 0xed, 0x1f,
0xbf, 0xc0, 0x69, 0x9a, 0x73, 0xa0, 0x2a, 0x6b, 0x18, 0x35, 0x75, 0xd1, 0x53, 0xdf, 0xf2, 0xdc,
0x47, 0x27, 0x03, 0x3f, 0x4e, 0xb8, 0xe9, 0xcf, 0xd4, 0xa3, 0x93, 0xdd, 0x38, 0xe1, 0xee, 0x4f,
0xd4, 0xb3, 0x13, 0xe3, 0xc0, 0x43, 0x51, 0x40, 0xc3, 0x3d, 0x7c, 0x9e, 0x83, 0x49, 0x9f, 0x38,
0x36, 0x93, 0x7d, 0x5b, 0x82, 0x05, 0x73, 0x3e, 0xd5, 0x3e, 0x60, 0xe4, 0x1c, 0xb3, 0x74, 0x1f,
0x2b, 0x4a, 0xbe, 0xc2, 0xf4, 0xd7, 0x80, 0xc6, 0x82, 0xd0, 0xf4, 0xd4, 0xb7, 0x35, 0xf7, 0xa5,
0x66, 0xe6, 0xb6, 0x4b, 0xa5, 0xb0, 0x5d, 0xd6, 0xa1, 0x7e, 0xca, 0xc5, 0x38, 0x4e, 0xb7, 0x91,
0xa6, 0xe4, 0x86, 0xb4, 0x78, 0x35, 0x85, 0x67, 0x49, 0xf9, 0xde, 0x0d, 0x69, 0x12, 0x89, 0x41,
0x4c, 0x49, 0x24, 0x54, 0xff, 0xac, 0xe1, 0x81, 0x62, 0xf5, 0x25, 0xc7, 0xfd, 0x43, 0x09, 0xea,
0xba, 0x2f, 0x27, 0xeb, 0xe9, 0x34, 0x31, 0x96, 0x89, 0xba, 0x64, 0x94, 0x2e, 0x73, 0xe8, 0x94,
0xa6, 0xdb, 0xb0, 0x70, 0x1e, 0x0e, 0x62, 0x24, 0xce, 0xac, 0x69, 0xe7, 0x61, 0x1f, 0x89, 0x33,
0xe9, 0x59, 0x96, 0x5f, 0xd5, 0xb8, 0x36, 0xb1, 0x9d, 0x72, 0x95, 0xd8, 0x5c, 0x4b, 0xdd, 0xdf,
0xc8, 0x67, 0x44, 0xda, 0x93, 0x5a, 0x81, 0x4a, 0x92, 0x1a, 0x23, 0x3f, 0x25, 0x67, 0x98, 0x66,
0x66, 0xf9, 0xe9, 0x3c, 0x80, 0x25, 0x14, 0x04, 0x44, 0x4e, 0x47, 0xa3, 0x03, 0x12, 0xd8, 0xc6,
0xca, 0x04, 0xf7, 0xc3, 0x1e, 0x2c, 0xda, 0x24, 0xe5, 0xd4, 0xa1, 0x7c, 0xfe, 0x78, 0xe5, 0x7b,
0xea, 0xff, 0xa7, 0x2b, 0xa5, 0xed, 0x7f, 0xb7, 0xa0, 0xf5, 0x6c, 0x88, 0x23, 0x61, 0x8a, 0x5e,
0xe7, 0x00, 0x96, 0x27, 0x9a, 0xa8, 0x8e, 0x79, 0x05, 0xcd, 0xee, 0xad, 0xf6, 0xd6, 0xb7, 0x74,
0x53, 0x76, 0xcb, 0x36, 0x65, 0xb7, 0xf6, 0xc3, 0x58, 0x8c, 0x9d, 0x7d, 0x58, 0x2a, 0xb6, 0x1b,
0x9d, 0x3b, 0x36, 0x87, 0xcf, 0x68, 0x42, 0xce, 0x85, 0x39, 0x80, 0xe5, 0x89, 0xce, 0xa3, 0xb5,
0x67, 0x76, 0x43, 0x72, 0x2e, 0xd0, 0xe7, 0xd0, 0xcc, 0xb5, 0x1a, 0x9d, 0xae, 0x06, 0x99, 0xee,
0x3e, 0xce, 0x05, 0xd8, 0x85, 0x76, 0xa1, 0xfb, 0xe7, 0xf4, 0x8c, 0x3f, 0x33, 0x5a, 0x82, 0x73,
0x41, 0x76, 0xa0, 0x99, 0x6b, 0xc2, 0x59, 0x2b, 0xa6, 0x3b, 0x7d, 0xbd, 0xf7, 0x66, 0x8c, 0x98,
0x32, 0xe2, 0x39, 0xb4, 0x0b, 0x2d, 0x33, 0x6b, 0xc8, 0xac, 0x76, 0x5d, 0xef, 0xce, 0xcc, 0x31,
0x83, 0x74, 0x00, 0xcb, 0x13, 0x0d, 0x34, 0x1b, 0xdc, 0xd9, 0x7d, 0xb5, 0xb9, 0x6e, 0x7d, 0xa1,
0x16, 0x3b, 0x57, 0x31, 0xe6, 0x16, 0x7b, 0xba, 0x5d, 0xd6, 0xbb, 0x3b, 0x7b, 0xd0, 0x58, 0xb5,
0x0f, 0x4b, 0xc5, 0x4e, 0x99, 0x05, 0x9b, 0xd9, 0x3f, 0xbb, 0x7a, 0xe7, 0x14, 0x9a, 0x66, 0xd9,
0xce, 0x99, 0xd5, 0x4b, 0x9b, 0x0b, 0xf4, 0x0c, 0xc0, 0x14, 0x96, 0x01, 0x89, 0xd2, 0x25, 0x9b,
0x2a, 0x68, 0xd3, 0x25, 0x9b, 0x51, 0x84, 0x7e, 0x0e, 0xa0, 0xeb, 0xc1, 0x80, 0x26, 0xc2, 0xb9,
0x6d, 0xcd, 0x98, 0x28, 0x42, 0x7b, 0xdd, 0xe9, 0x81, 0x29, 0x00, 0xcc, 0xd8, 0x75, 0x00, 0x3e,
0x03, 0xc8, 0xea, 0x4c, 0x0b, 0x30, 0x55, 0x79, 0x5e, 0x11, 0x83, 0x56, 0xbe, 0xaa, 0x74, 0x8c,
0xaf, 0x33, 0x2a, 0xcd, 0xb9, 0x10, 0x4f, 0xa0, 0x95, 0xbf, 0x5d, 0x2d, 0xc4, 0x8c, 0x1b, 0xb7,
0x37, 0x79, 0x2b, 0x3a, 0x3f, 0xb7, 0x1b, 0x35, 0x63, 0x15, 0x36, 0xea, 0x7f, 0x85, 0x30, 0x71,
0x2b, 0x17, 0xf3, 0xc8, 0xbb, 0x11, 0x7e, 0x06, 0xad, 0xfc, 0x75, 0x6c, 0xed, 0x9f, 0x71, 0x45,
0xf7, 0x0a, 0x57, 0xb2, 0x4c, 0x1c, 0x85, 0x9a, 0xd8, 0x9e, 0xd7, 0x59, 0x85, 0xf2, 0x55, 0xe9,
0xb4, 0x58, 0xa3, 0xda, 0x43, 0x31, 0xb3, 0x72, 0xbd, 0x6a, 0x1d, 0xf3, 0x65, 0x81, 0x75, 0x62,
0x46, 0xa9, 0xf0, 0x8e, 0x73, 0x95, 0xaf, 0x0a, 0x72, 0xe7, 0x6a, 0x46, 0xb1, 0x30, 0x0f, 0x68,
0xa7, 0xf5, 0xb7, 0xb7, 0xf7, 0x4a, 0x7f, 0x7f, 0x7b, 0xaf, 0xf4, 0xcf, 0xb7, 0xf7, 0x4a, 0x27,
0x75, 0x35, 0xfa, 0xc9, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x4b, 0xe9, 0x79, 0x55, 0x02, 0x1c,
0x00, 0x00,
}