// Code generated by protoc-gen-go. DO NOT EDIT. // source: google/ads/googleads/v0/services/shared_criterion_service.proto package services // import "google.golang.org/genproto/googleapis/ads/googleads/v0/services" import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" import _ "github.com/golang/protobuf/ptypes/wrappers" import resources "google.golang.org/genproto/googleapis/ads/googleads/v0/resources" import _ "google.golang.org/genproto/googleapis/api/annotations" import status "google.golang.org/genproto/googleapis/rpc/status" import ( context "golang.org/x/net/context" grpc "google.golang.org/grpc" ) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package // Request message for // [SharedCriterionService.GetSharedCriterion][google.ads.googleads.v0.services.SharedCriterionService.GetSharedCriterion]. type GetSharedCriterionRequest struct { // The resource name of the shared criterion to fetch. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *GetSharedCriterionRequest) Reset() { *m = GetSharedCriterionRequest{} } func (m *GetSharedCriterionRequest) String() string { return proto.CompactTextString(m) } func (*GetSharedCriterionRequest) ProtoMessage() {} func (*GetSharedCriterionRequest) Descriptor() ([]byte, []int) { return fileDescriptor_shared_criterion_service_eb7666e13a33cd20, []int{0} } func (m *GetSharedCriterionRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GetSharedCriterionRequest.Unmarshal(m, b) } func (m *GetSharedCriterionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_GetSharedCriterionRequest.Marshal(b, m, deterministic) } func (dst *GetSharedCriterionRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_GetSharedCriterionRequest.Merge(dst, src) } func (m *GetSharedCriterionRequest) XXX_Size() int { return xxx_messageInfo_GetSharedCriterionRequest.Size(m) } func (m *GetSharedCriterionRequest) XXX_DiscardUnknown() { xxx_messageInfo_GetSharedCriterionRequest.DiscardUnknown(m) } var xxx_messageInfo_GetSharedCriterionRequest proto.InternalMessageInfo func (m *GetSharedCriterionRequest) GetResourceName() string { if m != nil { return m.ResourceName } return "" } // Request message for // [SharedCriterionService.MutateSharedCriteria][google.ads.googleads.v0.services.SharedCriterionService.MutateSharedCriteria]. type MutateSharedCriteriaRequest struct { // The ID of the customer whose shared criteria are being modified. CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` // The list of operations to perform on individual shared criteria. Operations []*SharedCriterionOperation `protobuf:"bytes,2,rep,name=operations,proto3" json:"operations,omitempty"` // If true, successful operations will be carried out and invalid // operations will return errors. If false, all operations will be carried // out in one transaction if and only if they are all valid. // Default is false. PartialFailure bool `protobuf:"varint,3,opt,name=partial_failure,json=partialFailure,proto3" json:"partial_failure,omitempty"` // If true, the request is validated but not executed. Only errors are // returned, not results. ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *MutateSharedCriteriaRequest) Reset() { *m = MutateSharedCriteriaRequest{} } func (m *MutateSharedCriteriaRequest) String() string { return proto.CompactTextString(m) } func (*MutateSharedCriteriaRequest) ProtoMessage() {} func (*MutateSharedCriteriaRequest) Descriptor() ([]byte, []int) { return fileDescriptor_shared_criterion_service_eb7666e13a33cd20, []int{1} } func (m *MutateSharedCriteriaRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MutateSharedCriteriaRequest.Unmarshal(m, b) } func (m *MutateSharedCriteriaRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_MutateSharedCriteriaRequest.Marshal(b, m, deterministic) } func (dst *MutateSharedCriteriaRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_MutateSharedCriteriaRequest.Merge(dst, src) } func (m *MutateSharedCriteriaRequest) XXX_Size() int { return xxx_messageInfo_MutateSharedCriteriaRequest.Size(m) } func (m *MutateSharedCriteriaRequest) XXX_DiscardUnknown() { xxx_messageInfo_MutateSharedCriteriaRequest.DiscardUnknown(m) } var xxx_messageInfo_MutateSharedCriteriaRequest proto.InternalMessageInfo func (m *MutateSharedCriteriaRequest) GetCustomerId() string { if m != nil { return m.CustomerId } return "" } func (m *MutateSharedCriteriaRequest) GetOperations() []*SharedCriterionOperation { if m != nil { return m.Operations } return nil } func (m *MutateSharedCriteriaRequest) GetPartialFailure() bool { if m != nil { return m.PartialFailure } return false } func (m *MutateSharedCriteriaRequest) GetValidateOnly() bool { if m != nil { return m.ValidateOnly } return false } // A single operation (create, remove) on an shared criterion. type SharedCriterionOperation struct { // The mutate operation. // // Types that are valid to be assigned to Operation: // *SharedCriterionOperation_Create // *SharedCriterionOperation_Remove Operation isSharedCriterionOperation_Operation `protobuf_oneof:"operation"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *SharedCriterionOperation) Reset() { *m = SharedCriterionOperation{} } func (m *SharedCriterionOperation) String() string { return proto.CompactTextString(m) } func (*SharedCriterionOperation) ProtoMessage() {} func (*SharedCriterionOperation) Descriptor() ([]byte, []int) { return fileDescriptor_shared_criterion_service_eb7666e13a33cd20, []int{2} } func (m *SharedCriterionOperation) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SharedCriterionOperation.Unmarshal(m, b) } func (m *SharedCriterionOperation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_SharedCriterionOperation.Marshal(b, m, deterministic) } func (dst *SharedCriterionOperation) XXX_Merge(src proto.Message) { xxx_messageInfo_SharedCriterionOperation.Merge(dst, src) } func (m *SharedCriterionOperation) XXX_Size() int { return xxx_messageInfo_SharedCriterionOperation.Size(m) } func (m *SharedCriterionOperation) XXX_DiscardUnknown() { xxx_messageInfo_SharedCriterionOperation.DiscardUnknown(m) } var xxx_messageInfo_SharedCriterionOperation proto.InternalMessageInfo type isSharedCriterionOperation_Operation interface { isSharedCriterionOperation_Operation() } type SharedCriterionOperation_Create struct { Create *resources.SharedCriterion `protobuf:"bytes,1,opt,name=create,proto3,oneof"` } type SharedCriterionOperation_Remove struct { Remove string `protobuf:"bytes,3,opt,name=remove,proto3,oneof"` } func (*SharedCriterionOperation_Create) isSharedCriterionOperation_Operation() {} func (*SharedCriterionOperation_Remove) isSharedCriterionOperation_Operation() {} func (m *SharedCriterionOperation) GetOperation() isSharedCriterionOperation_Operation { if m != nil { return m.Operation } return nil } func (m *SharedCriterionOperation) GetCreate() *resources.SharedCriterion { if x, ok := m.GetOperation().(*SharedCriterionOperation_Create); ok { return x.Create } return nil } func (m *SharedCriterionOperation) GetRemove() string { if x, ok := m.GetOperation().(*SharedCriterionOperation_Remove); ok { return x.Remove } return "" } // XXX_OneofFuncs is for the internal use of the proto package. func (*SharedCriterionOperation) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _SharedCriterionOperation_OneofMarshaler, _SharedCriterionOperation_OneofUnmarshaler, _SharedCriterionOperation_OneofSizer, []interface{}{ (*SharedCriterionOperation_Create)(nil), (*SharedCriterionOperation_Remove)(nil), } } func _SharedCriterionOperation_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { m := msg.(*SharedCriterionOperation) // operation switch x := m.Operation.(type) { case *SharedCriterionOperation_Create: b.EncodeVarint(1<<3 | proto.WireBytes) if err := b.EncodeMessage(x.Create); err != nil { return err } case *SharedCriterionOperation_Remove: b.EncodeVarint(3<<3 | proto.WireBytes) b.EncodeStringBytes(x.Remove) case nil: default: return fmt.Errorf("SharedCriterionOperation.Operation has unexpected type %T", x) } return nil } func _SharedCriterionOperation_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*SharedCriterionOperation) switch tag { case 1: // operation.create if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } msg := new(resources.SharedCriterion) err := b.DecodeMessage(msg) m.Operation = &SharedCriterionOperation_Create{msg} return true, err case 3: // operation.remove if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } x, err := b.DecodeStringBytes() m.Operation = &SharedCriterionOperation_Remove{x} return true, err default: return false, nil } } func _SharedCriterionOperation_OneofSizer(msg proto.Message) (n int) { m := msg.(*SharedCriterionOperation) // operation switch x := m.Operation.(type) { case *SharedCriterionOperation_Create: s := proto.Size(x.Create) n += 1 // tag and wire n += proto.SizeVarint(uint64(s)) n += s case *SharedCriterionOperation_Remove: n += 1 // tag and wire n += proto.SizeVarint(uint64(len(x.Remove))) n += len(x.Remove) case nil: default: panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) } return n } // Response message for a shared criterion mutate. type MutateSharedCriteriaResponse struct { // Errors that pertain to operation failures in the partial failure mode. // Returned only when partial_failure = true and all errors occur inside the // operations. If any errors occur outside the operations (e.g. auth errors), // we return an RPC level error. PartialFailureError *status.Status `protobuf:"bytes,3,opt,name=partial_failure_error,json=partialFailureError,proto3" json:"partial_failure_error,omitempty"` // All results for the mutate. Results []*MutateSharedCriterionResult `protobuf:"bytes,2,rep,name=results,proto3" json:"results,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *MutateSharedCriteriaResponse) Reset() { *m = MutateSharedCriteriaResponse{} } func (m *MutateSharedCriteriaResponse) String() string { return proto.CompactTextString(m) } func (*MutateSharedCriteriaResponse) ProtoMessage() {} func (*MutateSharedCriteriaResponse) Descriptor() ([]byte, []int) { return fileDescriptor_shared_criterion_service_eb7666e13a33cd20, []int{3} } func (m *MutateSharedCriteriaResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MutateSharedCriteriaResponse.Unmarshal(m, b) } func (m *MutateSharedCriteriaResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_MutateSharedCriteriaResponse.Marshal(b, m, deterministic) } func (dst *MutateSharedCriteriaResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_MutateSharedCriteriaResponse.Merge(dst, src) } func (m *MutateSharedCriteriaResponse) XXX_Size() int { return xxx_messageInfo_MutateSharedCriteriaResponse.Size(m) } func (m *MutateSharedCriteriaResponse) XXX_DiscardUnknown() { xxx_messageInfo_MutateSharedCriteriaResponse.DiscardUnknown(m) } var xxx_messageInfo_MutateSharedCriteriaResponse proto.InternalMessageInfo func (m *MutateSharedCriteriaResponse) GetPartialFailureError() *status.Status { if m != nil { return m.PartialFailureError } return nil } func (m *MutateSharedCriteriaResponse) GetResults() []*MutateSharedCriterionResult { if m != nil { return m.Results } return nil } // The result for the shared criterion mutate. type MutateSharedCriterionResult struct { // Returned for successful operations. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *MutateSharedCriterionResult) Reset() { *m = MutateSharedCriterionResult{} } func (m *MutateSharedCriterionResult) String() string { return proto.CompactTextString(m) } func (*MutateSharedCriterionResult) ProtoMessage() {} func (*MutateSharedCriterionResult) Descriptor() ([]byte, []int) { return fileDescriptor_shared_criterion_service_eb7666e13a33cd20, []int{4} } func (m *MutateSharedCriterionResult) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MutateSharedCriterionResult.Unmarshal(m, b) } func (m *MutateSharedCriterionResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_MutateSharedCriterionResult.Marshal(b, m, deterministic) } func (dst *MutateSharedCriterionResult) XXX_Merge(src proto.Message) { xxx_messageInfo_MutateSharedCriterionResult.Merge(dst, src) } func (m *MutateSharedCriterionResult) XXX_Size() int { return xxx_messageInfo_MutateSharedCriterionResult.Size(m) } func (m *MutateSharedCriterionResult) XXX_DiscardUnknown() { xxx_messageInfo_MutateSharedCriterionResult.DiscardUnknown(m) } var xxx_messageInfo_MutateSharedCriterionResult proto.InternalMessageInfo func (m *MutateSharedCriterionResult) GetResourceName() string { if m != nil { return m.ResourceName } return "" } func init() { proto.RegisterType((*GetSharedCriterionRequest)(nil), "google.ads.googleads.v0.services.GetSharedCriterionRequest") proto.RegisterType((*MutateSharedCriteriaRequest)(nil), "google.ads.googleads.v0.services.MutateSharedCriteriaRequest") proto.RegisterType((*SharedCriterionOperation)(nil), "google.ads.googleads.v0.services.SharedCriterionOperation") proto.RegisterType((*MutateSharedCriteriaResponse)(nil), "google.ads.googleads.v0.services.MutateSharedCriteriaResponse") proto.RegisterType((*MutateSharedCriterionResult)(nil), "google.ads.googleads.v0.services.MutateSharedCriterionResult") } // Reference imports to suppress errors if they are not otherwise used. var _ context.Context var _ grpc.ClientConn // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. const _ = grpc.SupportPackageIsVersion4 // SharedCriterionServiceClient is the client API for SharedCriterionService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type SharedCriterionServiceClient interface { // Returns the requested shared criterion in full detail. GetSharedCriterion(ctx context.Context, in *GetSharedCriterionRequest, opts ...grpc.CallOption) (*resources.SharedCriterion, error) // Creates or removes shared criteria. Operation statuses are returned. MutateSharedCriteria(ctx context.Context, in *MutateSharedCriteriaRequest, opts ...grpc.CallOption) (*MutateSharedCriteriaResponse, error) } type sharedCriterionServiceClient struct { cc *grpc.ClientConn } func NewSharedCriterionServiceClient(cc *grpc.ClientConn) SharedCriterionServiceClient { return &sharedCriterionServiceClient{cc} } func (c *sharedCriterionServiceClient) GetSharedCriterion(ctx context.Context, in *GetSharedCriterionRequest, opts ...grpc.CallOption) (*resources.SharedCriterion, error) { out := new(resources.SharedCriterion) err := c.cc.Invoke(ctx, "/google.ads.googleads.v0.services.SharedCriterionService/GetSharedCriterion", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *sharedCriterionServiceClient) MutateSharedCriteria(ctx context.Context, in *MutateSharedCriteriaRequest, opts ...grpc.CallOption) (*MutateSharedCriteriaResponse, error) { out := new(MutateSharedCriteriaResponse) err := c.cc.Invoke(ctx, "/google.ads.googleads.v0.services.SharedCriterionService/MutateSharedCriteria", in, out, opts...) if err != nil { return nil, err } return out, nil } // SharedCriterionServiceServer is the server API for SharedCriterionService service. type SharedCriterionServiceServer interface { // Returns the requested shared criterion in full detail. GetSharedCriterion(context.Context, *GetSharedCriterionRequest) (*resources.SharedCriterion, error) // Creates or removes shared criteria. Operation statuses are returned. MutateSharedCriteria(context.Context, *MutateSharedCriteriaRequest) (*MutateSharedCriteriaResponse, error) } func RegisterSharedCriterionServiceServer(s *grpc.Server, srv SharedCriterionServiceServer) { s.RegisterService(&_SharedCriterionService_serviceDesc, srv) } func _SharedCriterionService_GetSharedCriterion_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetSharedCriterionRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(SharedCriterionServiceServer).GetSharedCriterion(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/google.ads.googleads.v0.services.SharedCriterionService/GetSharedCriterion", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(SharedCriterionServiceServer).GetSharedCriterion(ctx, req.(*GetSharedCriterionRequest)) } return interceptor(ctx, in, info, handler) } func _SharedCriterionService_MutateSharedCriteria_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(MutateSharedCriteriaRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(SharedCriterionServiceServer).MutateSharedCriteria(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/google.ads.googleads.v0.services.SharedCriterionService/MutateSharedCriteria", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(SharedCriterionServiceServer).MutateSharedCriteria(ctx, req.(*MutateSharedCriteriaRequest)) } return interceptor(ctx, in, info, handler) } var _SharedCriterionService_serviceDesc = grpc.ServiceDesc{ ServiceName: "google.ads.googleads.v0.services.SharedCriterionService", HandlerType: (*SharedCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GetSharedCriterion", Handler: _SharedCriterionService_GetSharedCriterion_Handler, }, { MethodName: "MutateSharedCriteria", Handler: _SharedCriterionService_MutateSharedCriteria_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "google/ads/googleads/v0/services/shared_criterion_service.proto", } func init() { proto.RegisterFile("google/ads/googleads/v0/services/shared_criterion_service.proto", fileDescriptor_shared_criterion_service_eb7666e13a33cd20) } var fileDescriptor_shared_criterion_service_eb7666e13a33cd20 = []byte{ // 664 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcf, 0x6a, 0xd4, 0x40, 0x18, 0x37, 0x59, 0xa9, 0x76, 0xb6, 0x2a, 0x8c, 0xff, 0xe2, 0xb6, 0xe8, 0x12, 0x0b, 0x96, 0x3d, 0x24, 0x21, 0xbd, 0x94, 0x94, 0x56, 0x77, 0xc5, 0xb6, 0x82, 0xda, 0x92, 0x42, 0x85, 0xb2, 0x10, 0xa6, 0xc9, 0x34, 0x06, 0x92, 0x4c, 0x9c, 0x99, 0xac, 0x94, 0xd2, 0x4b, 0x5f, 0xc0, 0x83, 0x6f, 0xe0, 0xd1, 0xa3, 0x2f, 0xd0, 0xbb, 0x57, 0xf1, 0x0d, 0x3c, 0x88, 0x4f, 0x21, 0xc9, 0x64, 0xd6, 0xee, 0x9a, 0x65, 0x65, 0x6f, 0x33, 0xdf, 0xf7, 0xcd, 0xef, 0xfb, 0xfd, 0xbe, 0x3f, 0x03, 0x9e, 0x86, 0x84, 0x84, 0x31, 0x36, 0x51, 0xc0, 0x4c, 0x71, 0x2c, 0x4e, 0x03, 0xcb, 0x64, 0x98, 0x0e, 0x22, 0x1f, 0x33, 0x93, 0xbd, 0x43, 0x14, 0x07, 0x9e, 0x4f, 0x23, 0x8e, 0x69, 0x44, 0x52, 0xaf, 0xf2, 0x18, 0x19, 0x25, 0x9c, 0xc0, 0xb6, 0x78, 0x65, 0xa0, 0x80, 0x19, 0x43, 0x00, 0x63, 0x60, 0x19, 0x12, 0xa0, 0xb5, 0x36, 0x29, 0x05, 0xc5, 0x8c, 0xe4, 0xb4, 0x2e, 0x87, 0xc0, 0x6e, 0x2d, 0xc9, 0x97, 0x59, 0x64, 0xa2, 0x34, 0x25, 0x1c, 0xf1, 0x88, 0xa4, 0xac, 0xf2, 0x3e, 0xac, 0xbc, 0xe5, 0xed, 0x28, 0x3f, 0x36, 0x3f, 0x50, 0x94, 0x65, 0x98, 0x4a, 0xff, 0xfd, 0xca, 0x4f, 0x33, 0xdf, 0x64, 0x1c, 0xf1, 0xbc, 0x72, 0xe8, 0xcf, 0xc0, 0x83, 0x6d, 0xcc, 0xf7, 0xcb, 0x9c, 0xcf, 0x65, 0x4a, 0x17, 0xbf, 0xcf, 0x31, 0xe3, 0xf0, 0x31, 0xb8, 0x21, 0x79, 0x79, 0x29, 0x4a, 0xb0, 0xa6, 0xb4, 0x95, 0x95, 0x79, 0x77, 0x41, 0x1a, 0xdf, 0xa0, 0x04, 0xeb, 0xbf, 0x14, 0xb0, 0xf8, 0x3a, 0xe7, 0x88, 0xe3, 0x11, 0x14, 0x24, 0x41, 0x1e, 0x81, 0xa6, 0x9f, 0x33, 0x4e, 0x12, 0x4c, 0xbd, 0x28, 0xa8, 0x20, 0x80, 0x34, 0xbd, 0x0c, 0xe0, 0x21, 0x00, 0x24, 0xc3, 0x54, 0xe8, 0xd1, 0xd4, 0x76, 0x63, 0xa5, 0x69, 0x3b, 0xc6, 0xb4, 0x52, 0x1a, 0x63, 0x9c, 0x77, 0x25, 0x84, 0x7b, 0x09, 0x0d, 0x3e, 0x01, 0xb7, 0x32, 0x44, 0x79, 0x84, 0x62, 0xef, 0x18, 0x45, 0x71, 0x4e, 0xb1, 0xd6, 0x68, 0x2b, 0x2b, 0xd7, 0xdd, 0x9b, 0x95, 0x79, 0x4b, 0x58, 0x0b, 0xa9, 0x03, 0x14, 0x47, 0x01, 0xe2, 0xd8, 0x23, 0x69, 0x7c, 0xa2, 0x5d, 0x2d, 0xc3, 0x16, 0xa4, 0x71, 0x37, 0x8d, 0x4f, 0xf4, 0x8f, 0x0a, 0xd0, 0x26, 0xa5, 0x85, 0xaf, 0xc0, 0x9c, 0x4f, 0x31, 0xe2, 0xa2, 0x4a, 0x4d, 0xdb, 0x9e, 0x28, 0x61, 0xd8, 0xeb, 0x71, 0x0d, 0x3b, 0x57, 0xdc, 0x0a, 0x03, 0x6a, 0x60, 0x8e, 0xe2, 0x84, 0x0c, 0x04, 0xdf, 0xf9, 0xc2, 0x23, 0xee, 0xbd, 0x26, 0x98, 0x1f, 0x0a, 0xd4, 0x2f, 0x14, 0xb0, 0x54, 0x5f, 0x7c, 0x96, 0x91, 0x94, 0x61, 0xb8, 0x05, 0xee, 0x8e, 0x15, 0xc0, 0xc3, 0x94, 0x12, 0x5a, 0xc2, 0x36, 0x6d, 0x28, 0x49, 0xd2, 0xcc, 0x37, 0xf6, 0xcb, 0xc1, 0x70, 0x6f, 0x8f, 0x96, 0xe6, 0x45, 0x11, 0x0e, 0xdf, 0x82, 0x6b, 0x14, 0xb3, 0x3c, 0xe6, 0xb2, 0x43, 0x1b, 0xd3, 0x3b, 0x54, 0x43, 0xac, 0x98, 0xad, 0x02, 0xc5, 0x95, 0x68, 0x7a, 0xaf, 0x76, 0x7a, 0x64, 0xdc, 0x7f, 0x8d, 0xa0, 0xfd, 0xb5, 0x01, 0xee, 0x8d, 0x3d, 0xdf, 0x17, 0x24, 0xe0, 0x85, 0x02, 0xe0, 0xbf, 0x03, 0x0e, 0xd7, 0xa7, 0xb3, 0x9f, 0xb8, 0x16, 0xad, 0x19, 0x3a, 0xab, 0xaf, 0x9d, 0x7f, 0xff, 0xf9, 0x49, 0xb5, 0xa1, 0x55, 0x2c, 0xfb, 0xe9, 0x88, 0xa4, 0x0d, 0xb9, 0x0b, 0xcc, 0xec, 0x54, 0xdb, 0x2f, 0xdb, 0x68, 0x76, 0xce, 0xe0, 0x0f, 0x05, 0xdc, 0xa9, 0x6b, 0x31, 0x9c, 0xad, 0x03, 0x72, 0x2f, 0x5b, 0x9b, 0xb3, 0x3e, 0x17, 0x93, 0xa5, 0x6f, 0x96, 0x8a, 0xd6, 0xf4, 0xd5, 0x42, 0xd1, 0x5f, 0x09, 0xa7, 0x97, 0x96, 0x7d, 0xa3, 0x73, 0x36, 0x26, 0xc8, 0x49, 0x4a, 0x48, 0x47, 0xe9, 0xf4, 0xce, 0x55, 0xb0, 0xec, 0x93, 0x64, 0x2a, 0x8b, 0xde, 0x62, 0x7d, 0x6b, 0xf7, 0x8a, 0xff, 0x6b, 0x4f, 0x39, 0xdc, 0xa9, 0x00, 0x42, 0x12, 0xa3, 0x34, 0x34, 0x08, 0x0d, 0xcd, 0x10, 0xa7, 0xe5, 0xef, 0x26, 0xbf, 0xd8, 0x2c, 0x62, 0x93, 0x3f, 0xf5, 0x75, 0x79, 0xf8, 0xac, 0x36, 0xb6, 0xbb, 0xdd, 0x2f, 0x6a, 0x7b, 0x5b, 0x00, 0x76, 0x03, 0x66, 0x88, 0x63, 0x71, 0x3a, 0xb0, 0x8c, 0x2a, 0x31, 0xfb, 0x26, 0x43, 0xfa, 0xdd, 0x80, 0xf5, 0x87, 0x21, 0xfd, 0x03, 0xab, 0x2f, 0x43, 0x7e, 0xab, 0xcb, 0xc2, 0xee, 0x38, 0xdd, 0x80, 0x39, 0xce, 0x30, 0xc8, 0x71, 0x0e, 0x2c, 0xc7, 0x91, 0x61, 0x47, 0x73, 0x25, 0xcf, 0xd5, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x3d, 0x7f, 0xcc, 0x3d, 0x7b, 0x06, 0x00, 0x00, }