From 2b828e94ed4c1c0e6283917fe85a47b252cea9ff Mon Sep 17 00:00:00 2001 From: Giuseppe Lo Presti Date: Thu, 27 May 2021 09:25:09 +0000 Subject: [PATCH] Synced to https://github.com/cs3org/cs3apis/tree/f4588ef747819a7e6effb5ae0b0289945187801b --- cs3/gateway/v1beta1/gateway_api.pb.go | 474 +++++++++++++++++--------- 1 file changed, 313 insertions(+), 161 deletions(-) diff --git a/cs3/gateway/v1beta1/gateway_api.pb.go b/cs3/gateway/v1beta1/gateway_api.pb.go index 8ac0fae..9745441 100644 --- a/cs3/gateway/v1beta1/gateway_api.pb.go +++ b/cs3/gateway/v1beta1/gateway_api.pb.go @@ -41,6 +41,42 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package +// REQUIRED. +// View mode. +type OpenInAppRequest_ViewMode int32 + +const ( + OpenInAppRequest_VIEW_MODE_INVALID OpenInAppRequest_ViewMode = 0 + // The resource can be opened but not downloaded. + OpenInAppRequest_VIEW_MODE_VIEW_ONLY OpenInAppRequest_ViewMode = 1 + // The resource can be downloaded. + OpenInAppRequest_VIEW_MODE_READ_ONLY OpenInAppRequest_ViewMode = 2 + // The resource can be downloaded and updated. + OpenInAppRequest_VIEW_MODE_READ_WRITE OpenInAppRequest_ViewMode = 3 +) + +var OpenInAppRequest_ViewMode_name = map[int32]string{ + 0: "VIEW_MODE_INVALID", + 1: "VIEW_MODE_VIEW_ONLY", + 2: "VIEW_MODE_READ_ONLY", + 3: "VIEW_MODE_READ_WRITE", +} + +var OpenInAppRequest_ViewMode_value = map[string]int32{ + "VIEW_MODE_INVALID": 0, + "VIEW_MODE_VIEW_ONLY": 1, + "VIEW_MODE_READ_ONLY": 2, + "VIEW_MODE_READ_WRITE": 3, +} + +func (x OpenInAppRequest_ViewMode) String() string { + return proto.EnumName(OpenInAppRequest_ViewMode_name, int32(x)) +} + +func (OpenInAppRequest_ViewMode) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_2d35d050f2c88549, []int{11, 0} +} + // REQUIRED. // View mode. type OpenFileInAppProviderRequest_ViewMode int32 @@ -74,7 +110,7 @@ func (x OpenFileInAppProviderRequest_ViewMode) String() string { } func (OpenFileInAppProviderRequest_ViewMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_2d35d050f2c88549, []int{11, 0} + return fileDescriptor_2d35d050f2c88549, []int{12, 0} } type AuthenticateRequest struct { @@ -770,6 +806,78 @@ func (m *ListAuthProvidersResponse) GetTypes() []string { return nil } +type OpenInAppRequest struct { + // OPTIONAL. + // Opaque information. + Opaque *v1beta1.Opaque `protobuf:"bytes,1,opt,name=opaque,proto3" json:"opaque,omitempty"` + // REQUIRED. + // The resource reference. If a path is given, it will be resolved via Stat() to a ResourceInfo + // when a call to the WOPI server is to be issued (cf. the provider grpc message) + Ref *v1beta13.Reference `protobuf:"bytes,2,opt,name=ref,proto3" json:"ref,omitempty"` + ViewMode OpenInAppRequest_ViewMode `protobuf:"varint,3,opt,name=view_mode,json=viewMode,proto3,enum=cs3.gateway.v1beta1.OpenInAppRequest_ViewMode" json:"view_mode,omitempty"` + // OPTIONAL. + // The application to be used to open the resource. Defaults to the primary application + // registered for the mime type of the given resource. + App string `protobuf:"bytes,4,opt,name=app,proto3" json:"app,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *OpenInAppRequest) Reset() { *m = OpenInAppRequest{} } +func (m *OpenInAppRequest) String() string { return proto.CompactTextString(m) } +func (*OpenInAppRequest) ProtoMessage() {} +func (*OpenInAppRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_2d35d050f2c88549, []int{11} +} + +func (m *OpenInAppRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_OpenInAppRequest.Unmarshal(m, b) +} +func (m *OpenInAppRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_OpenInAppRequest.Marshal(b, m, deterministic) +} +func (m *OpenInAppRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_OpenInAppRequest.Merge(m, src) +} +func (m *OpenInAppRequest) XXX_Size() int { + return xxx_messageInfo_OpenInAppRequest.Size(m) +} +func (m *OpenInAppRequest) XXX_DiscardUnknown() { + xxx_messageInfo_OpenInAppRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_OpenInAppRequest proto.InternalMessageInfo + +func (m *OpenInAppRequest) GetOpaque() *v1beta1.Opaque { + if m != nil { + return m.Opaque + } + return nil +} + +func (m *OpenInAppRequest) GetRef() *v1beta13.Reference { + if m != nil { + return m.Ref + } + return nil +} + +func (m *OpenInAppRequest) GetViewMode() OpenInAppRequest_ViewMode { + if m != nil { + return m.ViewMode + } + return OpenInAppRequest_VIEW_MODE_INVALID +} + +func (m *OpenInAppRequest) GetApp() string { + if m != nil { + return m.App + } + return "" +} + +// Deprecated type OpenFileInAppProviderRequest struct { // OPTIONAL. // Opaque information. @@ -788,7 +896,7 @@ func (m *OpenFileInAppProviderRequest) Reset() { *m = OpenFileInAppProvi func (m *OpenFileInAppProviderRequest) String() string { return proto.CompactTextString(m) } func (*OpenFileInAppProviderRequest) ProtoMessage() {} func (*OpenFileInAppProviderRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2d35d050f2c88549, []int{11} + return fileDescriptor_2d35d050f2c88549, []int{12} } func (m *OpenFileInAppProviderRequest) XXX_Unmarshal(b []byte) error { @@ -831,6 +939,7 @@ func (m *OpenFileInAppProviderRequest) GetViewMode() OpenFileInAppProviderReques } func init() { + proto.RegisterEnum("cs3.gateway.v1beta1.OpenInAppRequest_ViewMode", OpenInAppRequest_ViewMode_name, OpenInAppRequest_ViewMode_value) proto.RegisterEnum("cs3.gateway.v1beta1.OpenFileInAppProviderRequest_ViewMode", OpenFileInAppProviderRequest_ViewMode_name, OpenFileInAppProviderRequest_ViewMode_value) proto.RegisterType((*AuthenticateRequest)(nil), "cs3.gateway.v1beta1.AuthenticateRequest") proto.RegisterType((*AuthenticateResponse)(nil), "cs3.gateway.v1beta1.AuthenticateResponse") @@ -843,6 +952,7 @@ func init() { proto.RegisterType((*InitiateFileDownloadResponse)(nil), "cs3.gateway.v1beta1.InitiateFileDownloadResponse") proto.RegisterType((*InitiateFileUploadResponse)(nil), "cs3.gateway.v1beta1.InitiateFileUploadResponse") proto.RegisterType((*ListAuthProvidersResponse)(nil), "cs3.gateway.v1beta1.ListAuthProvidersResponse") + proto.RegisterType((*OpenInAppRequest)(nil), "cs3.gateway.v1beta1.OpenInAppRequest") proto.RegisterType((*OpenFileInAppProviderRequest)(nil), "cs3.gateway.v1beta1.OpenFileInAppProviderRequest") } @@ -851,166 +961,170 @@ func init() { } var fileDescriptor_2d35d050f2c88549 = []byte{ - // 2541 bytes of a gzipped FileDescriptorProto + // 2595 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0x5b, 0x6f, 0x1c, 0xb7, - 0x15, 0xee, 0x48, 0x8a, 0x6c, 0x51, 0x96, 0x6c, 0x53, 0x76, 0xad, 0x28, 0x2e, 0x1a, 0xac, 0xeb, + 0x15, 0xee, 0x48, 0x8a, 0x62, 0x51, 0x96, 0x22, 0x53, 0x76, 0xad, 0x28, 0x2e, 0x1a, 0xac, 0xeb, 0xd8, 0x8e, 0xed, 0x5d, 0x4b, 0xf2, 0x25, 0xb6, 0x93, 0x02, 0xba, 0xd8, 0x9b, 0x85, 0xad, 0x48, 0x59, 0xc9, 0x76, 0x52, 0xa4, 0x50, 0x47, 0xb3, 0x94, 0x34, 0xf0, 0xee, 0xcc, 0x78, 0x86, 0x2b, - 0x79, 0x8b, 0x34, 0x6d, 0x91, 0xa2, 0x17, 0xb4, 0x7d, 0xe8, 0xed, 0xb5, 0x0f, 0x7d, 0x6b, 0xff, - 0x43, 0x1f, 0x8b, 0x02, 0xed, 0x6b, 0x7f, 0x46, 0x9f, 0xfa, 0x0b, 0x0a, 0x92, 0x87, 0x33, 0xe4, - 0x2c, 0x77, 0x87, 0xa3, 0x00, 0x36, 0x90, 0xb7, 0x5d, 0xf2, 0xfb, 0xce, 0xf9, 0x78, 0x78, 0x3b, - 0x1c, 0x12, 0x5d, 0xf4, 0x92, 0xc5, 0xda, 0x9e, 0x4b, 0xc9, 0xa1, 0xdb, 0xab, 0x1d, 0xcc, 0xef, - 0x10, 0xea, 0xce, 0xcb, 0xff, 0xdb, 0x6e, 0xe4, 0x57, 0xa3, 0x38, 0xa4, 0x21, 0x9e, 0xf1, 0x92, - 0xc5, 0x2a, 0x14, 0x57, 0x01, 0x36, 0x77, 0x95, 0x71, 0xdd, 0x28, 0xaa, 0x45, 0x71, 0x78, 0xe0, - 0xb7, 0x48, 0x9c, 0x1a, 0x90, 0x05, 0x99, 0x85, 0x0c, 0x1c, 0x93, 0x3d, 0x3f, 0xa1, 0x71, 0xe6, - 0x4d, 0x16, 0x28, 0xe0, 0x9b, 0x1c, 0xdc, 0xa5, 0xfb, 0x8c, 0xd1, 0xf6, 0x3d, 0x97, 0xfa, 0x61, - 0x90, 0xa4, 0x0c, 0xb5, 0x50, 0x61, 0x5d, 0x4b, 0x59, 0x36, 0x3e, 0x2e, 0x98, 0x5a, 0x1e, 0x93, - 0x24, 0xec, 0xc6, 0x1e, 0x49, 0x00, 0xf4, 0x2e, 0x03, 0xf9, 0x2d, 0x12, 0x50, 0x9f, 0xf6, 0x6a, - 0x7b, 0x71, 0xd8, 0x8d, 0xb2, 0x28, 0xb1, 0x7f, 0x8a, 0xc1, 0x2b, 0x1a, 0xb6, 0x9b, 0x28, 0xf1, - 0xc8, 0x9b, 0xbd, 0x3c, 0x18, 0xca, 0xfe, 0x28, 0x46, 0x2f, 0x31, 0x64, 0xe8, 0x75, 0x6a, 0x5e, - 0x18, 0x93, 0x14, 0x14, 0x7a, 0x9d, 0x6d, 0x56, 0x60, 0x02, 0xfa, 0xc1, 0x81, 0x4f, 0x33, 0xa8, - 0xf8, 0x9b, 0xef, 0x08, 0x06, 0xb4, 0xe9, 0xb5, 0xeb, 0x0c, 0x1c, 0xc5, 0x64, 0x97, 0xc4, 0x24, - 0xf0, 0x48, 0xa2, 0x60, 0xd3, 0x32, 0x05, 0x7e, 0x9e, 0xc1, 0xe3, 0xc8, 0x4b, 0x61, 0x09, 0x75, - 0x69, 0x57, 0xb6, 0xfa, 0x2e, 0xab, 0x4d, 0xf6, 0xdd, 0xd8, 0x0f, 0xf6, 0x6a, 0x5e, 0xd8, 0x6e, - 0xbb, 0x3b, 0x61, 0xcc, 0x7b, 0x31, 0xc5, 0x6b, 0xa5, 0xf9, 0xd6, 0x49, 0x6a, 0xdb, 0x0f, 0x9e, - 0xa7, 0x0c, 0xf6, 0x47, 0x01, 0x5e, 0x54, 0x81, 0xac, 0x95, 0x6a, 0xc8, 0x32, 0x58, 0x8d, 0xc3, - 0x68, 0x18, 0xbb, 0x7b, 0xc4, 0x2a, 0x10, 0xd7, 0x86, 0x12, 0xf2, 0xfd, 0xfb, 0x16, 0x43, 0xd3, - 0x97, 0x69, 0x3d, 0x7d, 0xa9, 0x98, 0xfa, 0x16, 0xaf, 0xec, 0x45, 0x4a, 0x34, 0xf9, 0x3f, 0x51, - 0x5d, 0xf9, 0xb3, 0x83, 0x66, 0x96, 0xba, 0x74, 0x9f, 0x0d, 0x0e, 0xcf, 0xa5, 0xa4, 0x49, 0x5e, - 0x74, 0x49, 0x42, 0xf1, 0x3c, 0x1a, 0x0f, 0x23, 0xf7, 0x45, 0x97, 0xcc, 0x3a, 0x6f, 0x3b, 0x97, - 0x27, 0x17, 0xde, 0xac, 0xb2, 0x39, 0x29, 0x98, 0x60, 0xa7, 0xba, 0xce, 0x01, 0x4d, 0x00, 0x62, - 0x8c, 0xc6, 0x58, 0xfd, 0xec, 0xc8, 0xdb, 0xce, 0xe5, 0x89, 0x26, 0xff, 0x8d, 0xdf, 0x42, 0x13, - 0x5e, 0xdb, 0x27, 0x01, 0xdd, 0xf6, 0x5b, 0xb3, 0xa3, 0xbc, 0xe2, 0xb8, 0x28, 0x68, 0xb4, 0xf0, - 0x05, 0x34, 0x05, 0x95, 0x09, 0xf1, 0x62, 0x42, 0x67, 0xc7, 0x38, 0xe0, 0x84, 0x28, 0xdc, 0xe4, - 0x65, 0x95, 0x7f, 0x38, 0xe8, 0x8c, 0x2e, 0x30, 0x89, 0xc2, 0x20, 0x21, 0xb8, 0x86, 0xc6, 0x45, - 0x7f, 0x83, 0xc2, 0x73, 0x5c, 0x61, 0x1c, 0x79, 0xa9, 0xbe, 0x4d, 0x5e, 0xdd, 0x04, 0x98, 0xd2, - 0xa4, 0x11, 0xdb, 0x26, 0x9d, 0x41, 0x6f, 0xd0, 0xf0, 0x39, 0x09, 0x40, 0xba, 0xf8, 0x83, 0x17, - 0xd1, 0x18, 0x9b, 0x37, 0x5c, 0xee, 0xe4, 0xc2, 0xb7, 0xb9, 0x19, 0x39, 0xbd, 0xaa, 0xac, 0x26, - 0x35, 0xf7, 0x24, 0x21, 0x71, 0x93, 0x83, 0x2b, 0x9f, 0xa0, 0xa9, 0x67, 0xfb, 0xe1, 0x52, 0xa7, - 0xf1, 0x15, 0x22, 0x9c, 0xca, 0x19, 0x51, 0xe4, 0x54, 0xfe, 0xea, 0xa0, 0x69, 0x69, 0xfa, 0x15, - 0xc6, 0x46, 0x46, 0x61, 0xb4, 0x4c, 0x14, 0x7e, 0x8c, 0x4e, 0xd6, 0x09, 0xfd, 0xb8, 0x1b, 0x52, - 0xf7, 0x2b, 0xc4, 0xe1, 0x2e, 0x1a, 0x8d, 0xc9, 0x2e, 0x48, 0xbd, 0xc4, 0xf1, 0x30, 0x59, 0xaa, - 0x72, 0xb2, 0xa4, 0xd4, 0xa6, 0x5c, 0x39, 0x9a, 0x8c, 0x53, 0xf9, 0xaf, 0x83, 0xf0, 0x63, 0x3f, - 0xa1, 0x4d, 0xe2, 0xf5, 0xbc, 0x36, 0x79, 0x2d, 0x22, 0xf0, 0x2d, 0x74, 0x6c, 0x37, 0x0e, 0x3b, - 0xdb, 0x34, 0x81, 0xe8, 0x9d, 0x37, 0xb8, 0xdb, 0xf2, 0x3b, 0x24, 0xa1, 0x6e, 0x27, 0x6a, 0x8e, - 0x33, 0xf0, 0x16, 0xeb, 0xa4, 0x37, 0x68, 0xc8, 0x48, 0x63, 0x16, 0xa4, 0x31, 0x1a, 0x6e, 0x25, - 0x95, 0xff, 0x39, 0x68, 0x56, 0x69, 0xee, 0x26, 0x8d, 0x89, 0xdb, 0xf9, 0xba, 0x37, 0xfa, 0x4b, - 0x07, 0xcd, 0x6c, 0x74, 0xe3, 0x3d, 0xf2, 0x3a, 0x3b, 0xb9, 0xf2, 0x6f, 0x07, 0x9d, 0x6f, 0x04, - 0x3e, 0xf5, 0x5d, 0x4a, 0x1e, 0xfa, 0x6d, 0xb2, 0x1a, 0x1e, 0x06, 0xed, 0xd0, 0x6d, 0xbd, 0xd2, - 0x49, 0x5a, 0x47, 0x13, 0x7c, 0x9d, 0xf7, 0xc2, 0x36, 0x0b, 0xfb, 0xe8, 0xe5, 0xc9, 0x85, 0x2b, - 0x55, 0x43, 0x76, 0x55, 0x55, 0x15, 0x6e, 0x00, 0xa3, 0x99, 0x71, 0x2b, 0xff, 0x74, 0xd0, 0x9c, - 0xda, 0x9a, 0x27, 0xd1, 0x2b, 0x6f, 0xcb, 0x83, 0xfe, 0xb6, 0x5c, 0x1a, 0xd8, 0x16, 0xa1, 0xcf, - 0xd4, 0x92, 0x3f, 0x39, 0xe8, 0x4d, 0x36, 0x25, 0xd8, 0xa6, 0xb2, 0x01, 0x7d, 0x98, 0xbc, 0xf2, - 0x5d, 0x85, 0xd5, 0xf3, 0x46, 0xb0, 0x65, 0x9c, 0xfd, 0xa9, 0xfc, 0x67, 0x04, 0x9d, 0x5f, 0x8f, - 0x48, 0xc0, 0xd4, 0x37, 0x82, 0xa5, 0x28, 0x92, 0xe2, 0x5e, 0xcf, 0x74, 0x7d, 0x86, 0x26, 0x0e, - 0x7c, 0x72, 0xb8, 0xdd, 0x09, 0x5b, 0x84, 0x4f, 0xd8, 0xe9, 0x85, 0x7b, 0xc6, 0x68, 0x0f, 0xd3, - 0x5c, 0x7d, 0xea, 0x93, 0xc3, 0xb5, 0xb0, 0x45, 0x9a, 0xc7, 0x0f, 0xe0, 0x57, 0xa5, 0x83, 0x8e, - 0xcb, 0x52, 0x7c, 0x16, 0x9d, 0x7e, 0xda, 0x78, 0xf0, 0x6c, 0x7b, 0x6d, 0x7d, 0xf5, 0xc1, 0x76, - 0xe3, 0xa3, 0xa7, 0x4b, 0x8f, 0x1b, 0xab, 0xa7, 0xbe, 0x81, 0xcf, 0xa1, 0x99, 0xac, 0x98, 0xff, - 0x5a, 0xff, 0xe8, 0xf1, 0xa7, 0xa7, 0x1c, 0xbd, 0xa2, 0xf9, 0x60, 0x69, 0x55, 0x54, 0x8c, 0xe0, - 0x59, 0x74, 0x26, 0x57, 0xf1, 0xac, 0xd9, 0xd8, 0x7a, 0x70, 0x6a, 0x74, 0xe1, 0xef, 0x8f, 0x10, - 0xaa, 0x0b, 0xc9, 0x4b, 0x1b, 0x0d, 0xec, 0xa1, 0x13, 0x6a, 0x36, 0x81, 0x2f, 0x1b, 0xdb, 0x64, - 0xc8, 0x88, 0xe6, 0xae, 0x58, 0x20, 0x61, 0x10, 0x7d, 0x8c, 0xc6, 0xc5, 0x86, 0x8c, 0x2b, 0x46, - 0x92, 0x96, 0x08, 0xcc, 0x5d, 0x18, 0x8a, 0x01, 0x93, 0xbf, 0x71, 0xd0, 0x4c, 0x9d, 0x04, 0x24, - 0x76, 0x29, 0x61, 0x71, 0x76, 0x93, 0xe4, 0x30, 0x8c, 0x5b, 0xf8, 0x2e, 0x27, 0xb3, 0x63, 0x48, - 0x55, 0x3d, 0xa7, 0xa4, 0x66, 0x0c, 0x1c, 0xe9, 0xf7, 0xde, 0x51, 0xa8, 0x20, 0xe7, 0x4b, 0x07, - 0x9d, 0xe2, 0x93, 0x28, 0xab, 0x4b, 0xf0, 0xed, 0x02, 0x83, 0x79, 0x82, 0x14, 0x72, 0xa7, 0x34, - 0x0f, 0x54, 0xfc, 0xde, 0x41, 0x67, 0x1b, 0xc1, 0x81, 0xdb, 0xf6, 0x5b, 0xb9, 0xb0, 0xdc, 0x2f, - 0x30, 0x69, 0x64, 0x49, 0x3d, 0xef, 0x1f, 0x8d, 0x0c, 0xa2, 0x7e, 0x84, 0xa6, 0xeb, 0x44, 0xd5, - 0x8b, 0x6f, 0x16, 0x06, 0x9a, 0x1a, 0x54, 0xdc, 0x2a, 0xc9, 0x02, 0xf7, 0x5f, 0xa0, 0x93, 0x2b, - 0x31, 0x71, 0x29, 0x59, 0x09, 0x03, 0xea, 0xfa, 0x01, 0x89, 0xc1, 0xff, 0xc0, 0x89, 0x9f, 0x83, - 0xeb, 0xfe, 0xed, 0x59, 0xe0, 0xdf, 0x43, 0xe3, 0xab, 0xa4, 0x4d, 0x28, 0xc1, 0x57, 0x87, 0x1b, - 0x10, 0x28, 0xe9, 0xed, 0x9a, 0x1d, 0x18, 0x9c, 0xec, 0xa2, 0x63, 0x75, 0x42, 0x37, 0x5c, 0xba, - 0x8f, 0x0b, 0x88, 0x00, 0x93, 0x6e, 0xae, 0x5b, 0xa2, 0xc1, 0xcf, 0x0f, 0xd0, 0x71, 0x99, 0xae, - 0xe2, 0xef, 0x18, 0xa7, 0x69, 0x2e, 0x9b, 0x9d, 0xab, 0x16, 0x3a, 0x00, 0x38, 0x78, 0xf8, 0x99, - 0x83, 0xce, 0x98, 0xb2, 0x04, 0x98, 0xd8, 0x03, 0x0d, 0x99, 0x33, 0x0b, 0xa1, 0x61, 0xde, 0xa8, - 0x74, 0x68, 0x2e, 0xf2, 0x05, 0xc2, 0xfd, 0xbb, 0x3b, 0xbe, 0x63, 0xaf, 0x41, 0xe6, 0x03, 0x42, - 0x41, 0xad, 0x50, 0x41, 0x2e, 0x7f, 0x60, 0xcb, 0x1b, 0x9b, 0xe6, 0xe9, 0x78, 0x12, 0x99, 0x2a, - 0x7e, 0x6f, 0xb8, 0x02, 0x03, 0x45, 0x4a, 0xb8, 0x7b, 0x04, 0xa6, 0x10, 0x73, 0xc3, 0xc1, 0x2f, - 0xd1, 0x94, 0x06, 0xc0, 0x0b, 0x25, 0xac, 0x49, 0x05, 0x8b, 0xa5, 0x38, 0x10, 0x88, 0x9f, 0xc2, - 0xc2, 0xca, 0x62, 0xf4, 0x94, 0xc4, 0x09, 0x9b, 0xf2, 0xf8, 0x56, 0xb1, 0x25, 0x15, 0x2f, 0x05, - 0xdc, 0x2e, 0x4b, 0x4b, 0x57, 0xb0, 0xd3, 0x7d, 0x67, 0x06, 0x7c, 0xdd, 0xd8, 0xa5, 0x83, 0xce, - 0x16, 0x73, 0x77, 0x8a, 0x7d, 0xe7, 0x78, 0x69, 0xf0, 0x7d, 0x34, 0xa9, 0x54, 0xe3, 0x4b, 0x45, - 0x8e, 0xf5, 0x61, 0x6f, 0xe3, 0x32, 0x6d, 0xe9, 0xf7, 0xd1, 0xd8, 0x5a, 0x78, 0x40, 0xf0, 0x95, - 0xe1, 0x54, 0x86, 0x91, 0x5e, 0xde, 0xb5, 0x81, 0x82, 0xf9, 0x36, 0x3a, 0xa1, 0x9e, 0x43, 0x06, - 0x24, 0x1b, 0x86, 0xa3, 0xca, 0x5c, 0xc1, 0x78, 0xd3, 0x29, 0xe0, 0xed, 0x17, 0x0e, 0xc2, 0x4d, - 0xc2, 0x38, 0x44, 0xe9, 0xd6, 0xa2, 0x49, 0xdc, 0xcf, 0x90, 0x1a, 0xde, 0x2b, 0x4f, 0xec, 0x57, - 0x02, 0x22, 0x1b, 0x94, 0x74, 0x2c, 0x95, 0x28, 0x8c, 0x72, 0x4a, 0x34, 0x62, 0xd6, 0xc1, 0x2c, - 0x5f, 0x2f, 0xea, 0x60, 0x86, 0xb1, 0xec, 0x60, 0x01, 0x05, 0xf3, 0x2f, 0xd1, 0x94, 0xd8, 0x07, - 0x37, 0x7b, 0x9d, 0xb6, 0x1f, 0x3c, 0x2f, 0x5a, 0x27, 0x34, 0xb0, 0xe5, 0x3a, 0x91, 0xe3, 0x80, - 0xe7, 0xdf, 0x3a, 0xe8, 0xcc, 0x26, 0xa1, 0x4b, 0xf1, 0x8e, 0x4f, 0x63, 0x37, 0xee, 0xad, 0x11, - 0xea, 0xb6, 0x5c, 0xea, 0x16, 0xed, 0x1b, 0x26, 0x8e, 0x9e, 0x10, 0x96, 0xa4, 0x82, 0x9e, 0x3f, - 0x38, 0xe8, 0x9b, 0x4f, 0x82, 0xc4, 0xa4, 0xe8, 0xfe, 0x70, 0xb3, 0x66, 0x96, 0x9e, 0x8b, 0x95, - 0x26, 0x83, 0xaa, 0x10, 0x21, 0x11, 0xbe, 0x0f, 0xc3, 0x0e, 0xc1, 0x35, 0x9b, 0x40, 0x33, 0xa4, - 0x74, 0x7e, 0xc3, 0x9e, 0xa0, 0x8c, 0x7c, 0xe8, 0x30, 0xc1, 0xda, 0x8c, 0x5c, 0x8f, 0x14, 0x8d, - 0xfc, 0x7e, 0x86, 0xe5, 0xc8, 0x37, 0x11, 0xb3, 0xc4, 0x82, 0xaf, 0xe2, 0x6a, 0xa5, 0x4c, 0xd1, - 0x87, 0xae, 0x91, 0x1a, 0xa1, 0xc4, 0x72, 0x9e, 0xe3, 0x29, 0x01, 0x79, 0x12, 0xb5, 0x4a, 0x06, - 0xa4, 0x9f, 0x61, 0x19, 0x10, 0x13, 0x51, 0x51, 0x22, 0xd2, 0xc8, 0x32, 0x4a, 0xfa, 0x19, 0x96, - 0x4a, 0x4c, 0xc4, 0xec, 0xf0, 0x74, 0xd6, 0x78, 0x6a, 0xc6, 0xf3, 0xa5, 0x4f, 0xd8, 0xf2, 0xf0, - 0x14, 0x45, 0xfd, 0x12, 0x06, 0xf0, 0x40, 0xc5, 0xe7, 0x68, 0x12, 0x86, 0xcf, 0xbe, 0x1b, 0x13, - 0x99, 0x63, 0x88, 0xbb, 0x8c, 0xaa, 0x76, 0x33, 0x92, 0x1f, 0x6e, 0x0c, 0x9f, 0xcb, 0x31, 0xec, - 0x69, 0x99, 0xf7, 0x26, 0xe9, 0x84, 0x07, 0x25, 0xbc, 0x2b, 0xf8, 0x32, 0xde, 0x35, 0x1a, 0x78, - 0x4f, 0x78, 0x5e, 0x2f, 0x5c, 0x2f, 0x58, 0xd8, 0x90, 0xe0, 0xdc, 0x92, 0x6d, 0xc9, 0x01, 0xa7, - 0x3d, 0x84, 0xf8, 0x3c, 0x61, 0x85, 0x89, 0x3c, 0x94, 0x0d, 0x35, 0x91, 0xc1, 0x73, 0x87, 0x32, - 0x6b, 0x56, 0x16, 0x6d, 0x98, 0x19, 0xd6, 0xd1, 0x56, 0xf0, 0x65, 0xa2, 0xad, 0xd1, 0xc0, 0xfb, - 0xef, 0xb2, 0x6f, 0xee, 0xc4, 0x3f, 0x20, 0x2d, 0x88, 0xc0, 0xfb, 0x96, 0x6d, 0xd1, 0x69, 0x52, - 0xcc, 0x07, 0x47, 0x64, 0x83, 0xa6, 0x3f, 0x3a, 0x68, 0x46, 0x68, 0xd5, 0x00, 0xf8, 0x03, 0xeb, - 0x36, 0x6a, 0x3c, 0xa9, 0xea, 0xbb, 0x47, 0xa5, 0x83, 0xac, 0x5f, 0x3b, 0xe8, 0x54, 0x9d, 0xe8, - 0xa2, 0xf1, 0x3d, 0xbb, 0xd1, 0x66, 0x14, 0x74, 0xff, 0x48, 0x5c, 0x50, 0xf3, 0x29, 0x1a, 0xdf, - 0x24, 0xf4, 0x11, 0xe9, 0xe1, 0x77, 0xb8, 0x19, 0xe5, 0x1a, 0x56, 0xcd, 0x0a, 0x1e, 0x91, 0x9e, - 0x74, 0x77, 0xa9, 0x10, 0x97, 0x99, 0xae, 0x17, 0x99, 0xae, 0x5b, 0x9a, 0xae, 0xeb, 0xa6, 0x3f, - 0x47, 0xa7, 0xc5, 0x8a, 0xb3, 0xd1, 0xdd, 0x69, 0xfb, 0x9e, 0x69, 0x96, 0xb3, 0x54, 0x2a, 0xb7, - 0x3c, 0x29, 0x60, 0xf3, 0x2c, 0x2f, 0xe2, 0x64, 0xde, 0xc5, 0x8a, 0x63, 0xe9, 0xbd, 0x0f, 0x6c, - 0xe1, 0xdd, 0xc0, 0x49, 0x17, 0xb6, 0xe9, 0x3a, 0xa1, 0xaa, 0xeb, 0xda, 0x60, 0x33, 0x3a, 0x32, - 0x97, 0xf4, 0xd8, 0x10, 0xc0, 0xe9, 0x2f, 0x1d, 0x74, 0x56, 0xaf, 0x5a, 0xee, 0x6d, 0xf1, 0x9b, - 0xd2, 0xdb, 0xb6, 0xb6, 0x80, 0x90, 0x4b, 0x37, 0x4a, 0xf0, 0xd2, 0x35, 0x96, 0x9f, 0x9e, 0x15, - 0x44, 0x02, 0x9b, 0xaa, 0xd1, 0x58, 0x1e, 0x9b, 0x3b, 0x7e, 0xd9, 0x51, 0xb2, 0x8e, 0x17, 0x33, - 0xdb, 0xb2, 0xe3, 0xfb, 0xc0, 0x16, 0x1d, 0x6f, 0xe0, 0x80, 0xf7, 0x17, 0x68, 0x5a, 0x8c, 0xc9, - 0xf5, 0x95, 0x35, 0xe1, 0xba, 0xaa, 0x99, 0x09, 0xbd, 0x4e, 0x6e, 0xf0, 0x4a, 0xa0, 0xfe, 0xcd, - 0xc6, 0x06, 0x9f, 0xb9, 0x14, 0x03, 0xd1, 0xc2, 0xa5, 0x0e, 0x2c, 0x76, 0x99, 0xc7, 0x83, 0xcb, - 0x7d, 0x34, 0x59, 0x27, 0x34, 0xf5, 0x77, 0x75, 0x20, 0x5f, 0x41, 0xe5, 0xbe, 0x30, 0x16, 0x81, - 0xc1, 0x53, 0x20, 0xbe, 0x00, 0xc9, 0xf2, 0x04, 0xbe, 0x7f, 0x98, 0xe8, 0x1a, 0x2e, 0xf7, 0x1d, - 0xb0, 0x18, 0x9e, 0x05, 0x53, 0x74, 0xae, 0x45, 0x30, 0x75, 0x60, 0x71, 0x30, 0xf3, 0x78, 0x70, - 0xf9, 0x73, 0x07, 0x9d, 0x55, 0x77, 0xc8, 0xac, 0xad, 0xb7, 0x86, 0x8a, 0xef, 0xc3, 0x9b, 0xf3, - 0x03, 0x0b, 0x1a, 0x08, 0xf9, 0x15, 0x3b, 0x3b, 0x6a, 0x9b, 0x62, 0x1a, 0x84, 0xdb, 0x05, 0x8d, - 0xca, 0x13, 0xcc, 0x0b, 0x88, 0x0d, 0x0f, 0xb4, 0xfc, 0x84, 0xdf, 0xb3, 0xf4, 0x89, 0xc5, 0x8b, - 0xc3, 0x46, 0xcf, 0x20, 0x15, 0x37, 0xcb, 0x91, 0x40, 0xc2, 0x01, 0x7f, 0x23, 0xa1, 0xa4, 0xec, - 0x09, 0xbe, 0x91, 0x26, 0xf9, 0xf2, 0x69, 0x59, 0xfe, 0x1a, 0x20, 0xbb, 0xc8, 0x54, 0x3f, 0x86, - 0xd9, 0x31, 0xf4, 0xb5, 0x53, 0x73, 0x3c, 0xc4, 0x4c, 0x1e, 0xab, 0xaf, 0x9d, 0x96, 0x94, 0xf4, - 0x3b, 0xfb, 0xb1, 0x3a, 0xa1, 0x4f, 0x12, 0x12, 0xc3, 0x97, 0x1a, 0xf3, 0x43, 0x12, 0xc0, 0xe8, - 0x5f, 0x6a, 0x0a, 0xa0, 0xe0, 0xa1, 0xcb, 0x37, 0x46, 0x56, 0xb4, 0xdc, 0x5b, 0x69, 0xbb, 0x7e, - 0x07, 0x62, 0x3a, 0x94, 0x0d, 0x50, 0x3d, 0xa6, 0x76, 0x0c, 0x70, 0x1b, 0xa3, 0x29, 0xa8, 0xa9, - 0xc7, 0x61, 0x37, 0x4a, 0x60, 0x3b, 0x1e, 0x6a, 0x43, 0x20, 0xf5, 0xed, 0xd8, 0x8a, 0x90, 0x5e, - 0x8e, 0x4c, 0x3c, 0xf4, 0x83, 0x16, 0xab, 0x49, 0x60, 0x89, 0x34, 0xd3, 0x53, 0x94, 0xbe, 0x44, - 0x16, 0x82, 0xc1, 0x0f, 0xe1, 0x87, 0x28, 0xee, 0x3c, 0xef, 0x86, 0x3f, 0x56, 0x54, 0x65, 0x72, - 0xd4, 0x00, 0x37, 0x83, 0xc0, 0xe0, 0xe6, 0x87, 0x7c, 0x3a, 0xf0, 0x32, 0xd9, 0x75, 0x0b, 0x36, - 0x06, 0x72, 0x9d, 0xb7, 0x58, 0x8a, 0x03, 0xbe, 0x9f, 0x23, 0x54, 0x27, 0x74, 0x8d, 0x74, 0x76, - 0x58, 0x2c, 0xaf, 0x17, 0x98, 0x00, 0x9c, 0xbe, 0x05, 0x58, 0xc0, 0xd3, 0xcd, 0x6d, 0xe2, 0x43, - 0x37, 0x11, 0xa5, 0x78, 0x68, 0x8c, 0x52, 0x98, 0x7e, 0xad, 0x55, 0x8c, 0xce, 0x9a, 0xc5, 0xba, - 0x13, 0x86, 0xe4, 0x50, 0x72, 0x86, 0xb3, 0x6a, 0x96, 0x0a, 0x4f, 0xbf, 0x91, 0x9e, 0xee, 0x7b, - 0x6e, 0x01, 0xcb, 0x29, 0xbf, 0xdc, 0x34, 0xaf, 0x12, 0xfa, 0xe3, 0x0c, 0xd5, 0xb3, 0xe9, 0x26, - 0xc0, 0xfc, 0x96, 0x43, 0xdc, 0x12, 0xf2, 0x4f, 0x7f, 0xc5, 0xb7, 0x84, 0xea, 0x77, 0xbf, 0xeb, - 0x96, 0xe8, 0xf4, 0xf2, 0x2c, 0xbd, 0x9a, 0x6f, 0xf0, 0xf7, 0xaf, 0x22, 0xf9, 0x15, 0xa3, 0x94, - 0xad, 0xfa, 0xe2, 0x55, 0x6c, 0xdf, 0xc5, 0xba, 0x02, 0xd6, 0x47, 0xa9, 0x2d, 0x27, 0xbd, 0x66, - 0x98, 0x7a, 0x18, 0xc6, 0x87, 0x6e, 0xdc, 0x12, 0xb5, 0xd0, 0x5a, 0x83, 0x15, 0x0d, 0xa6, 0xb7, - 0xb6, 0x18, 0x0d, 0xde, 0x7c, 0x74, 0x62, 0xc9, 0xf3, 0x48, 0x44, 0xc1, 0xd9, 0xd5, 0x41, 0x74, - 0x15, 0xa5, 0x4f, 0xfd, 0x42, 0x70, 0xba, 0x7a, 0xf2, 0x9d, 0x90, 0x57, 0x11, 0xbe, 0xfa, 0x40, - 0x56, 0x64, 0x0c, 0x90, 0x06, 0xd4, 0xb3, 0x22, 0x1b, 0x7c, 0x36, 0x5c, 0xd9, 0x20, 0x56, 0xeb, - 0xe4, 0xfe, 0x6b, 0x0a, 0x51, 0x1e, 0xaa, 0xef, 0x15, 0x76, 0x8c, 0xec, 0x00, 0xd1, 0x48, 0xe4, - 0x28, 0x5e, 0x6a, 0xb7, 0xc3, 0x43, 0xd2, 0x52, 0x06, 0x51, 0xff, 0xf5, 0x6b, 0x1e, 0xdc, 0x3f, - 0x88, 0x6c, 0x38, 0x5a, 0xd6, 0xd1, 0x08, 0x76, 0xc3, 0xe5, 0xde, 0x6a, 0xd8, 0x71, 0xfd, 0x40, - 0x69, 0xb5, 0x69, 0x0a, 0xa8, 0xd0, 0xfe, 0x56, 0x17, 0x33, 0x72, 0x59, 0x47, 0xbb, 0x9d, 0xcf, - 0x3a, 0x8c, 0x66, 0xf2, 0x58, 0x3d, 0xeb, 0xb0, 0xa4, 0x80, 0xeb, 0x43, 0xf9, 0xad, 0x7e, 0x7d, - 0x65, 0x6d, 0x25, 0x8c, 0x89, 0x7a, 0x60, 0x66, 0x96, 0xbc, 0x30, 0x26, 0xfd, 0x87, 0xa0, 0x14, - 0xa9, 0xef, 0xd0, 0x56, 0x04, 0x70, 0xbc, 0x2d, 0x0f, 0x6b, 0x5b, 0xb1, 0x1b, 0x24, 0xbb, 0x24, - 0xc6, 0x17, 0xc5, 0x5b, 0xae, 0x97, 0x39, 0xb6, 0xac, 0x97, 0xae, 0xde, 0x29, 0x82, 0xa5, 0x5b, - 0xc9, 0xe9, 0x3a, 0xa1, 0xb2, 0x58, 0xbc, 0x58, 0x83, 0xdb, 0x47, 0x85, 0xdc, 0x07, 0xd1, 0x9f, - 0x3a, 0x0d, 0x47, 0x2a, 0x4d, 0x71, 0x03, 0x8f, 0xb4, 0x87, 0x34, 0x45, 0xab, 0x1f, 0xdc, 0x94, - 0x1c, 0x4c, 0x38, 0x58, 0x0e, 0xd0, 0x39, 0x2f, 0xec, 0x98, 0x56, 0xfe, 0xe5, 0x93, 0xf2, 0x5d, - 0x57, 0xe4, 0xf3, 0x87, 0x7e, 0x1b, 0xce, 0xf7, 0xa6, 0x01, 0x03, 0x90, 0xbf, 0x8c, 0x8c, 0xae, - 0xd4, 0x3f, 0xf9, 0xdb, 0xc8, 0xcc, 0x4a, 0xb2, 0x58, 0x05, 0x74, 0xf5, 0xe9, 0xfc, 0x32, 0xab, - 0xfb, 0x17, 0x2f, 0xfd, 0x0c, 0x4a, 0x3f, 0x83, 0xd2, 0x9d, 0x71, 0xfe, 0x52, 0x70, 0xf1, 0xff, - 0x01, 0x00, 0x00, 0xff, 0xff, 0xe6, 0xcd, 0x71, 0x27, 0xab, 0x32, 0x00, 0x00, + 0x79, 0x8b, 0x34, 0x6d, 0x91, 0xa2, 0x17, 0xb4, 0x7d, 0xe8, 0xed, 0x35, 0x0f, 0x7d, 0x6b, 0xff, + 0x47, 0x51, 0xa0, 0x05, 0xfa, 0xd4, 0x9f, 0xd1, 0xa7, 0xfe, 0x82, 0x82, 0xe4, 0xe1, 0x0c, 0x39, + 0xc3, 0xdd, 0xe1, 0x2a, 0x80, 0x0d, 0xf4, 0x6d, 0x97, 0xfc, 0xbe, 0x73, 0x3e, 0x1e, 0xde, 0x0e, + 0xc9, 0x41, 0x17, 0xbc, 0x64, 0xa9, 0xb6, 0xef, 0x52, 0x72, 0xe4, 0xf6, 0x6a, 0x87, 0x0b, 0xbb, + 0x84, 0xba, 0x0b, 0xf2, 0xff, 0x8e, 0x1b, 0xf9, 0xd5, 0x28, 0x0e, 0x69, 0x88, 0x67, 0xbd, 0x64, + 0xa9, 0x0a, 0xc5, 0x55, 0x80, 0xcd, 0x5f, 0x61, 0x5c, 0x37, 0x8a, 0x6a, 0x51, 0x1c, 0x1e, 0xfa, + 0x2d, 0x12, 0xa7, 0x06, 0x64, 0x41, 0x66, 0x21, 0x03, 0xc7, 0x64, 0xdf, 0x4f, 0x68, 0x9c, 0x79, + 0x93, 0x05, 0x0a, 0xf8, 0x06, 0x07, 0x77, 0xe9, 0x01, 0x63, 0xb4, 0x7d, 0xcf, 0xa5, 0x7e, 0x18, + 0x24, 0x29, 0x43, 0x2d, 0x54, 0x58, 0x57, 0x53, 0x96, 0x8d, 0x8f, 0xf3, 0xa6, 0x96, 0xc7, 0x24, + 0x09, 0xbb, 0xb1, 0x47, 0x12, 0x00, 0xbd, 0xcb, 0x40, 0x7e, 0x8b, 0x04, 0xd4, 0xa7, 0xbd, 0xda, + 0x7e, 0x1c, 0x76, 0xa3, 0x2c, 0x4a, 0xec, 0x9f, 0x62, 0xf0, 0xb2, 0x86, 0xed, 0x26, 0x4a, 0x3c, + 0xf2, 0x66, 0x2f, 0xf5, 0x87, 0xb2, 0x3f, 0x8a, 0xd1, 0x8b, 0x0c, 0x19, 0x7a, 0x9d, 0x9a, 0x17, + 0xc6, 0x24, 0x05, 0x85, 0x5e, 0x67, 0x87, 0x15, 0x98, 0x80, 0x7e, 0x70, 0xe8, 0xd3, 0x0c, 0x2a, + 0xfe, 0xe6, 0x3b, 0x82, 0x01, 0x6d, 0x7a, 0xed, 0x1a, 0x03, 0x47, 0x31, 0xd9, 0x23, 0x31, 0x09, + 0x3c, 0x92, 0x28, 0xd8, 0xb4, 0x4c, 0x81, 0x9f, 0x63, 0xf0, 0x38, 0xf2, 0x52, 0x58, 0x42, 0x5d, + 0xda, 0x95, 0xad, 0xbe, 0xc3, 0x6a, 0x93, 0x03, 0x37, 0xf6, 0x83, 0xfd, 0x9a, 0x17, 0xb6, 0xdb, + 0xee, 0x6e, 0x18, 0xf3, 0x5e, 0x4c, 0xf1, 0x5a, 0x69, 0xbe, 0x75, 0x92, 0xda, 0xf6, 0x83, 0x67, + 0x29, 0x83, 0xfd, 0x51, 0x80, 0x17, 0x54, 0x20, 0x6b, 0xa5, 0x1a, 0xb2, 0x0c, 0x56, 0xe3, 0x30, + 0x1a, 0xc6, 0xee, 0x3e, 0xb1, 0x0a, 0xc4, 0xd5, 0x81, 0x84, 0x7c, 0xff, 0xbe, 0xc5, 0xd0, 0xf4, + 0x45, 0x5a, 0x4f, 0x5f, 0x28, 0xa6, 0xbe, 0xc5, 0x2b, 0x7b, 0x91, 0x12, 0x4d, 0xfe, 0x4f, 0x54, + 0x57, 0xbe, 0x72, 0xd0, 0xec, 0x72, 0x97, 0x1e, 0xb0, 0xc1, 0xe1, 0xb9, 0x94, 0x34, 0xc9, 0xf3, + 0x2e, 0x49, 0x28, 0x5e, 0x40, 0xe3, 0x61, 0xe4, 0x3e, 0xef, 0x92, 0x39, 0xe7, 0x6d, 0xe7, 0xd2, + 0xe4, 0xe2, 0x9b, 0x55, 0x36, 0x27, 0x05, 0x13, 0xec, 0x54, 0x37, 0x38, 0xa0, 0x09, 0x40, 0x8c, + 0xd1, 0x18, 0xab, 0x9f, 0x1b, 0x79, 0xdb, 0xb9, 0x34, 0xd1, 0xe4, 0xbf, 0xf1, 0x5b, 0x68, 0xc2, + 0x6b, 0xfb, 0x24, 0xa0, 0x3b, 0x7e, 0x6b, 0x6e, 0x94, 0x57, 0x9c, 0x10, 0x05, 0x8d, 0x16, 0x3e, + 0x8f, 0xa6, 0xa0, 0x32, 0x21, 0x5e, 0x4c, 0xe8, 0xdc, 0x18, 0x07, 0x9c, 0x14, 0x85, 0x5b, 0xbc, + 0xac, 0xf2, 0x37, 0x07, 0x9d, 0xd6, 0x05, 0x26, 0x51, 0x18, 0x24, 0x04, 0xd7, 0xd0, 0xb8, 0xe8, + 0x6f, 0x50, 0x78, 0x96, 0x2b, 0x8c, 0x23, 0x2f, 0xd5, 0xb7, 0xc5, 0xab, 0x9b, 0x00, 0x53, 0x9a, + 0x34, 0x62, 0xdb, 0xa4, 0xd3, 0xe8, 0x35, 0x1a, 0x3e, 0x23, 0x01, 0x48, 0x17, 0x7f, 0xf0, 0x12, + 0x1a, 0x63, 0xf3, 0x86, 0xcb, 0x9d, 0x5c, 0xfc, 0x36, 0x37, 0x23, 0xa7, 0x57, 0x95, 0xd5, 0xa4, + 0xe6, 0x1e, 0x27, 0x24, 0x6e, 0x72, 0x70, 0xe5, 0x13, 0x34, 0xf5, 0xf4, 0x20, 0x5c, 0xee, 0x34, + 0xbe, 0x46, 0x84, 0x53, 0x39, 0x23, 0x8a, 0x9c, 0xca, 0x5f, 0x1c, 0x34, 0x2d, 0x4d, 0xbf, 0xc4, + 0xd8, 0xc8, 0x28, 0x8c, 0x0e, 0x13, 0x85, 0x1f, 0xa3, 0x37, 0xea, 0x84, 0x7e, 0xdc, 0x0d, 0xa9, + 0xfb, 0x35, 0xe2, 0x70, 0x07, 0x8d, 0xc6, 0x64, 0x0f, 0xa4, 0x5e, 0xe4, 0x78, 0x98, 0x2c, 0x55, + 0x39, 0x59, 0x52, 0x6a, 0x53, 0xae, 0x1c, 0x4d, 0xc6, 0xa9, 0xfc, 0xc7, 0x41, 0xf8, 0x91, 0x9f, + 0xd0, 0x26, 0xf1, 0x7a, 0x5e, 0x9b, 0xbc, 0x12, 0x11, 0xf8, 0x26, 0x7a, 0x7d, 0x2f, 0x0e, 0x3b, + 0x3b, 0x34, 0x81, 0xe8, 0x9d, 0x33, 0xb8, 0xdb, 0xf6, 0x3b, 0x24, 0xa1, 0x6e, 0x27, 0x6a, 0x8e, + 0x33, 0xf0, 0x36, 0xeb, 0xa4, 0xd7, 0x68, 0xc8, 0x48, 0x63, 0x16, 0xa4, 0x31, 0x1a, 0x6e, 0x27, + 0x95, 0xff, 0x3a, 0x68, 0x4e, 0x69, 0xee, 0x16, 0x8d, 0x89, 0xdb, 0xf9, 0x7f, 0x6f, 0xf4, 0x97, + 0x0e, 0x9a, 0xdd, 0xec, 0xc6, 0xfb, 0xe4, 0x55, 0x76, 0x72, 0xe5, 0x9f, 0x0e, 0x3a, 0xd7, 0x08, + 0x7c, 0xea, 0xbb, 0x94, 0x3c, 0xf0, 0xdb, 0x64, 0x2d, 0x3c, 0x0a, 0xda, 0xa1, 0xdb, 0x7a, 0xa9, + 0x93, 0xb4, 0x8e, 0x26, 0xf8, 0x3a, 0xef, 0x85, 0x6d, 0x16, 0xf6, 0xd1, 0x4b, 0x93, 0x8b, 0x97, + 0xab, 0x86, 0xec, 0xaa, 0xaa, 0x2a, 0xdc, 0x04, 0x46, 0x33, 0xe3, 0x56, 0xfe, 0xee, 0xa0, 0x79, + 0xb5, 0x35, 0x8f, 0xa3, 0x97, 0xde, 0x96, 0xfb, 0xc5, 0xb6, 0x5c, 0xec, 0xdb, 0x16, 0xa1, 0xcf, + 0xd4, 0x92, 0x3f, 0x39, 0xe8, 0x4d, 0x36, 0x25, 0xd8, 0xa6, 0xb2, 0x09, 0x7d, 0x98, 0xbc, 0xf4, + 0x5d, 0x85, 0xd5, 0xf3, 0x46, 0xb0, 0x65, 0x9c, 0xfd, 0xa9, 0xfc, 0x6b, 0x04, 0xcd, 0x6c, 0x44, + 0x24, 0x68, 0x04, 0xcb, 0x51, 0xf4, 0x6a, 0xa6, 0xe8, 0x43, 0x34, 0x71, 0xe8, 0x93, 0xa3, 0x9d, + 0x4e, 0xd8, 0x22, 0x7c, 0x92, 0x4e, 0x2f, 0x56, 0x8d, 0x11, 0xce, 0xeb, 0xac, 0x3e, 0xf1, 0xc9, + 0xd1, 0x7a, 0xd8, 0x22, 0xcd, 0x13, 0x87, 0xf0, 0x0b, 0xcf, 0xa0, 0x51, 0x37, 0x8a, 0x60, 0x4f, + 0x67, 0x3f, 0x2b, 0x1d, 0x74, 0x42, 0xe2, 0xf0, 0x19, 0x74, 0xea, 0x49, 0xe3, 0xfe, 0xd3, 0x9d, + 0xf5, 0x8d, 0xb5, 0xfb, 0x3b, 0x8d, 0x8f, 0x9e, 0x2c, 0x3f, 0x6a, 0xac, 0xcd, 0x7c, 0x03, 0x9f, + 0x45, 0xb3, 0x59, 0x31, 0xff, 0xb5, 0xf1, 0xd1, 0xa3, 0x4f, 0x67, 0x1c, 0xbd, 0xa2, 0x79, 0x7f, + 0x79, 0x4d, 0x54, 0x8c, 0xe0, 0x39, 0x74, 0x3a, 0x57, 0xf1, 0xb4, 0xd9, 0xd8, 0xbe, 0x3f, 0x33, + 0x5a, 0xf9, 0xf7, 0x08, 0x3a, 0xc7, 0x84, 0xb2, 0xe1, 0xc0, 0xc5, 0xca, 0xde, 0x7e, 0x35, 0xc1, + 0x7d, 0x5a, 0x0c, 0xee, 0xdd, 0xbe, 0xc1, 0xed, 0xa7, 0xd9, 0x10, 0xe8, 0x97, 0x1c, 0xd6, 0xc5, + 0xaf, 0x1e, 0x21, 0x54, 0x17, 0x92, 0x97, 0x37, 0x1b, 0xd8, 0x43, 0x27, 0xd5, 0xf4, 0x0c, 0x5f, + 0x32, 0xb6, 0xc9, 0x90, 0x62, 0xce, 0x5f, 0xb6, 0x40, 0xc2, 0xac, 0xfc, 0x18, 0x8d, 0x8b, 0x0c, + 0x07, 0x57, 0x8c, 0x24, 0x2d, 0xb3, 0x9a, 0x3f, 0x3f, 0x10, 0x03, 0x26, 0x7f, 0xe3, 0xa0, 0xd9, + 0x3a, 0x09, 0x48, 0xec, 0x52, 0xc2, 0xe2, 0xec, 0x26, 0xc9, 0x51, 0x18, 0xb7, 0xf0, 0x1d, 0x4e, + 0x66, 0xe7, 0xba, 0xaa, 0x7a, 0xf0, 0x4b, 0xcd, 0x18, 0x38, 0xd2, 0xef, 0xdd, 0xe3, 0x50, 0x41, + 0xce, 0x97, 0x0e, 0x9a, 0xe1, 0xab, 0x52, 0x56, 0x97, 0xe0, 0x5b, 0x25, 0x06, 0xf3, 0x04, 0x29, + 0xe4, 0xf6, 0xd0, 0x3c, 0x50, 0xf1, 0x7b, 0x07, 0x9d, 0x69, 0x04, 0x87, 0x6e, 0xdb, 0x6f, 0xe5, + 0xc2, 0x72, 0xaf, 0xc4, 0xa4, 0x91, 0x25, 0xf5, 0xbc, 0x7f, 0x3c, 0x32, 0x88, 0xfa, 0x11, 0x9a, + 0xae, 0x13, 0x55, 0x2f, 0xbe, 0x51, 0x1a, 0x68, 0x6a, 0x50, 0x71, 0x73, 0x48, 0x16, 0xb8, 0xff, + 0x02, 0xbd, 0xb1, 0x1a, 0x13, 0x97, 0x92, 0xd5, 0x30, 0xa0, 0xae, 0x1f, 0x90, 0x18, 0xfc, 0xf7, + 0x9d, 0xf8, 0x39, 0xb8, 0xee, 0xdf, 0x9e, 0x05, 0xfe, 0x3d, 0x34, 0xbe, 0x46, 0xda, 0x84, 0x12, + 0x7c, 0x65, 0xb0, 0x01, 0x81, 0x92, 0xde, 0xae, 0xda, 0x81, 0xc1, 0xc9, 0x1e, 0x7a, 0xbd, 0x4e, + 0xe8, 0xa6, 0x4b, 0x0f, 0x70, 0x09, 0x11, 0x60, 0xd2, 0xcd, 0x35, 0x4b, 0x34, 0xf8, 0xf9, 0x01, + 0x3a, 0x21, 0xf3, 0x7f, 0xfc, 0x1d, 0xe3, 0x34, 0xcd, 0x1d, 0x0f, 0xe6, 0xab, 0xa5, 0x0e, 0x00, + 0x0e, 0x1e, 0x7e, 0xe6, 0xa0, 0xd3, 0xa6, 0xb4, 0x0b, 0x26, 0x76, 0x5f, 0x43, 0xe6, 0x54, 0x4d, + 0x68, 0x58, 0x30, 0x2a, 0x1d, 0x98, 0xdc, 0x7d, 0x81, 0x70, 0x31, 0x5d, 0xc2, 0xb7, 0xed, 0x35, + 0xc8, 0x04, 0x4b, 0x28, 0xa8, 0x95, 0x2a, 0xc8, 0x25, 0x64, 0x6c, 0x79, 0x63, 0xd3, 0x3c, 0x1d, + 0x4f, 0x22, 0xf5, 0xc7, 0xef, 0x0d, 0x56, 0x60, 0xa0, 0x48, 0x09, 0x77, 0x8e, 0xc1, 0x14, 0x62, + 0xae, 0x3b, 0xf8, 0x05, 0x9a, 0xd2, 0x00, 0x78, 0x71, 0x08, 0x6b, 0x52, 0xc1, 0xd2, 0x50, 0x1c, + 0x08, 0xc4, 0x4f, 0x61, 0x61, 0x65, 0x31, 0x7a, 0x42, 0xe2, 0x84, 0x4d, 0x79, 0x7c, 0xb3, 0xdc, + 0x92, 0x8a, 0x97, 0x02, 0x6e, 0x0d, 0x4b, 0x4b, 0x57, 0xb0, 0x53, 0x85, 0x43, 0x18, 0xbe, 0x66, + 0xec, 0xd2, 0x7e, 0x87, 0xb5, 0xf9, 0xdb, 0xe5, 0xbe, 0x73, 0xbc, 0x34, 0xf8, 0x3e, 0x9a, 0x54, + 0xaa, 0xf1, 0xc5, 0x32, 0xc7, 0xfa, 0xb0, 0xb7, 0x71, 0x99, 0xb6, 0xf4, 0xfb, 0x68, 0x6c, 0x3d, + 0x3c, 0x24, 0xf8, 0xf2, 0x60, 0x2a, 0xc3, 0x48, 0x2f, 0xef, 0xda, 0x40, 0xc1, 0x7c, 0x1b, 0x9d, + 0x54, 0x0f, 0x76, 0x7d, 0x92, 0x0d, 0xc3, 0xd9, 0x6f, 0xbe, 0x64, 0xbc, 0xe9, 0x14, 0xf0, 0xf6, + 0x0b, 0x07, 0xe1, 0x26, 0x61, 0x1c, 0xa2, 0x74, 0x6b, 0xd9, 0x24, 0x2e, 0x32, 0xa4, 0x86, 0xf7, + 0x86, 0x27, 0x16, 0x95, 0x80, 0xc8, 0x06, 0x25, 0x1d, 0x4b, 0x25, 0x0a, 0x63, 0x38, 0x25, 0x1a, + 0x31, 0xeb, 0x60, 0x76, 0x00, 0x2a, 0xeb, 0x60, 0x86, 0xb1, 0xec, 0x60, 0x01, 0x05, 0xf3, 0x2f, + 0xd0, 0x94, 0xd8, 0x07, 0xb7, 0x7a, 0x9d, 0xb6, 0x1f, 0x3c, 0x2b, 0x5b, 0x27, 0x34, 0xb0, 0xe5, + 0x3a, 0x91, 0xe3, 0x80, 0xe7, 0xdf, 0x3a, 0xe8, 0xf4, 0x16, 0xa1, 0xcb, 0xf1, 0xae, 0x4f, 0x63, + 0x37, 0xee, 0xad, 0x13, 0xea, 0xb6, 0x5c, 0xea, 0x96, 0xed, 0x1b, 0x26, 0x8e, 0x9e, 0x10, 0x0e, + 0x49, 0x05, 0x3d, 0x7f, 0x70, 0xd0, 0x37, 0x1f, 0x07, 0x89, 0x49, 0xd1, 0xbd, 0xc1, 0x66, 0xcd, + 0x2c, 0x3d, 0x17, 0x1b, 0x9a, 0x0c, 0xaa, 0x42, 0x84, 0x44, 0xf8, 0x3e, 0x0c, 0x3b, 0x04, 0xd7, + 0x6c, 0x02, 0xcd, 0x90, 0xd2, 0xf9, 0x75, 0x7b, 0x82, 0x32, 0xf2, 0xa1, 0xc3, 0x04, 0x6b, 0x2b, + 0x72, 0x3d, 0x52, 0x36, 0xf2, 0x8b, 0x0c, 0xcb, 0x91, 0x6f, 0x22, 0x66, 0x89, 0x05, 0x5f, 0xc5, + 0xd5, 0x4a, 0x99, 0xa2, 0x0f, 0x5c, 0x23, 0x35, 0xc2, 0x10, 0xcb, 0x79, 0x8e, 0xa7, 0x04, 0xe4, + 0x71, 0xd4, 0x1a, 0x32, 0x20, 0x45, 0x86, 0x65, 0x40, 0x4c, 0x44, 0x45, 0x89, 0x48, 0x23, 0x87, + 0x51, 0x52, 0x64, 0x58, 0x2a, 0x31, 0x11, 0x41, 0xc9, 0x0e, 0x9a, 0x48, 0x6f, 0x24, 0xf0, 0x05, + 0xab, 0x1b, 0x8b, 0x79, 0x91, 0x4c, 0xbb, 0x51, 0x54, 0xf4, 0xa4, 0x60, 0xb3, 0xd3, 0xd9, 0x19, + 0xe3, 0xb1, 0x1c, 0x2f, 0x0c, 0x7d, 0x84, 0x97, 0xa7, 0xb3, 0x7e, 0x9e, 0x0d, 0x3c, 0x50, 0xf1, + 0x39, 0x9a, 0x84, 0xf1, 0x79, 0xe0, 0xc6, 0x44, 0x26, 0x31, 0xe2, 0xf5, 0xa9, 0xaa, 0xbd, 0x65, + 0xe5, 0xc7, 0x33, 0xc3, 0xe7, 0x92, 0x18, 0x7b, 0x5a, 0xe6, 0xbd, 0x49, 0x3a, 0xe1, 0xe1, 0x10, + 0xde, 0x15, 0xfc, 0x30, 0xde, 0x35, 0x1a, 0x78, 0x4f, 0xf8, 0xc1, 0x41, 0xb8, 0x5e, 0xb4, 0xb0, + 0x21, 0xc1, 0xb9, 0x3d, 0xc1, 0x92, 0x03, 0x4e, 0x7b, 0x08, 0xf1, 0x89, 0xc8, 0x0a, 0x13, 0x79, + 0xea, 0x1b, 0x68, 0x22, 0x83, 0xe7, 0x4e, 0x7d, 0xd6, 0xac, 0x2c, 0xda, 0x30, 0xf5, 0xac, 0xa3, + 0xad, 0xe0, 0x87, 0x89, 0xb6, 0x46, 0x03, 0xef, 0xbf, 0xcb, 0x5e, 0x49, 0x88, 0x7f, 0x48, 0x5a, + 0x10, 0x81, 0xf7, 0x2d, 0xdb, 0xa2, 0xd3, 0xa4, 0x98, 0x0f, 0x8e, 0xc9, 0x06, 0x4d, 0x7f, 0x74, + 0xd0, 0xac, 0xd0, 0xaa, 0x01, 0xf0, 0x07, 0xd6, 0x6d, 0xd4, 0x78, 0x52, 0xd5, 0x77, 0x8f, 0x4b, + 0x07, 0x59, 0xbf, 0x76, 0xd0, 0x4c, 0x9d, 0xe8, 0xa2, 0xf1, 0x5d, 0xbb, 0xd1, 0x66, 0x14, 0x74, + 0xef, 0x58, 0x5c, 0x50, 0xf3, 0x29, 0x1a, 0xdf, 0x22, 0xf4, 0x21, 0xe9, 0xe1, 0x77, 0xb8, 0x19, + 0xe5, 0xe1, 0x5c, 0x4d, 0x3b, 0x1e, 0x92, 0x9e, 0x74, 0x77, 0xb1, 0x14, 0x97, 0x99, 0xae, 0x97, + 0x99, 0xae, 0x5b, 0x9a, 0xae, 0xeb, 0xa6, 0x3f, 0x47, 0xa7, 0xc4, 0x8a, 0xb3, 0xd9, 0xdd, 0x6d, + 0xfb, 0x9e, 0x69, 0x96, 0xb3, 0x5c, 0x2d, 0xb7, 0x3c, 0x29, 0x60, 0xf3, 0x2c, 0x2f, 0xe3, 0x64, + 0xde, 0xc5, 0x8a, 0x63, 0xe9, 0xbd, 0x00, 0xb6, 0xf0, 0x6e, 0xe0, 0xa4, 0x0b, 0xdb, 0x74, 0x9d, + 0x50, 0xd5, 0x75, 0xad, 0xbf, 0x19, 0x1d, 0x99, 0xcb, 0xaa, 0x6c, 0x08, 0xe0, 0xf4, 0x97, 0x0e, + 0x3a, 0xa3, 0x57, 0xad, 0xf4, 0xb6, 0xf9, 0xdb, 0xf6, 0x2d, 0x5b, 0x5b, 0x40, 0xc8, 0xe5, 0x33, + 0x43, 0xf0, 0xd2, 0x35, 0x96, 0x1f, 0xcf, 0x15, 0x44, 0x02, 0x9b, 0xaa, 0xd1, 0x58, 0x1e, 0x9b, + 0x3b, 0xdf, 0xd9, 0x51, 0xb2, 0x8e, 0x17, 0x33, 0xdb, 0xb2, 0xe3, 0x0b, 0x60, 0x8b, 0x8e, 0x37, + 0x70, 0xc0, 0xfb, 0x73, 0x34, 0x2d, 0xc6, 0xe4, 0xc6, 0xea, 0xba, 0x70, 0x5d, 0xd5, 0xcc, 0x84, + 0x5e, 0x27, 0x37, 0x78, 0x25, 0x50, 0xbf, 0x14, 0xb2, 0xc1, 0x67, 0x2e, 0xc5, 0x40, 0xb4, 0x70, + 0xa9, 0x03, 0xcb, 0x5d, 0xe6, 0xf1, 0xe0, 0xf2, 0x00, 0x4d, 0xd6, 0x09, 0x4d, 0xfd, 0x5d, 0xe9, + 0xcb, 0x57, 0x50, 0xb9, 0x2b, 0xcc, 0x32, 0x30, 0x78, 0x0a, 0xc4, 0x15, 0x93, 0x2c, 0x4f, 0xe0, + 0x82, 0xc5, 0x44, 0xd7, 0x70, 0xb9, 0x8b, 0xc6, 0x72, 0x78, 0x16, 0x4c, 0xd1, 0xb9, 0x16, 0xc1, + 0xd4, 0x81, 0xe5, 0xc1, 0xcc, 0xe3, 0xc1, 0xe5, 0xcf, 0x1d, 0x74, 0x46, 0xdd, 0x21, 0xb3, 0xb6, + 0xde, 0x1c, 0x28, 0xbe, 0x80, 0x37, 0xe7, 0x07, 0x16, 0x34, 0x10, 0xf2, 0x2b, 0x76, 0x38, 0xd5, + 0x36, 0xc5, 0x34, 0x08, 0xb7, 0x4a, 0x1a, 0x95, 0x27, 0x98, 0x17, 0x10, 0x1b, 0x1e, 0x68, 0xf9, + 0x09, 0x7f, 0xc8, 0x29, 0x88, 0xc5, 0x4b, 0x83, 0x46, 0x4f, 0x3f, 0x15, 0x37, 0x86, 0x23, 0x81, + 0x84, 0x43, 0xfe, 0x55, 0x8b, 0x92, 0xb2, 0x27, 0xf8, 0x7a, 0x9a, 0xe4, 0xcb, 0x8f, 0x01, 0xf3, + 0xef, 0x0c, 0xd9, 0xd3, 0xb3, 0x7a, 0xdb, 0x66, 0xc7, 0xd0, 0xd7, 0x4e, 0xcd, 0xf1, 0x00, 0x33, + 0x79, 0xac, 0xbe, 0x76, 0x5a, 0x52, 0xd2, 0x8b, 0xfc, 0xd7, 0xeb, 0x84, 0x3e, 0x4e, 0x48, 0x0c, + 0x57, 0x41, 0xe6, 0x4f, 0x7f, 0x00, 0xa3, 0x5f, 0x05, 0x95, 0x40, 0xc1, 0x43, 0x97, 0x6f, 0x8c, + 0xac, 0x68, 0xa5, 0xb7, 0xda, 0x76, 0xfd, 0x0e, 0xc4, 0x74, 0x20, 0x1b, 0xa0, 0x7a, 0x4c, 0xed, + 0x18, 0xe0, 0x36, 0x46, 0x53, 0x50, 0x53, 0x8f, 0xc3, 0x6e, 0x94, 0xc0, 0x76, 0x3c, 0xd0, 0x86, + 0x40, 0xea, 0xdb, 0xb1, 0x15, 0x21, 0x7d, 0x7d, 0x99, 0x78, 0xe0, 0x07, 0x2d, 0x56, 0x93, 0xc0, + 0x12, 0x69, 0xa6, 0xa7, 0x28, 0x7d, 0x89, 0x2c, 0x05, 0x83, 0x1f, 0xc2, 0x0f, 0x51, 0xdc, 0x79, + 0xde, 0x0d, 0xff, 0xbc, 0x54, 0x95, 0xc9, 0x51, 0x7d, 0xdc, 0xf4, 0x03, 0x83, 0x9b, 0x1f, 0xf2, + 0xe9, 0xc0, 0xcb, 0x64, 0xd7, 0x2d, 0xda, 0x18, 0xc8, 0x75, 0xde, 0xd2, 0x50, 0x1c, 0xf0, 0xfd, + 0x0c, 0xa1, 0x3a, 0xa1, 0xeb, 0xa4, 0xb3, 0xcb, 0x62, 0x79, 0xad, 0xc4, 0x04, 0xe0, 0xf4, 0x2d, + 0xc0, 0x02, 0x9e, 0x6e, 0x6e, 0x13, 0x1f, 0xba, 0x89, 0x28, 0xc5, 0x03, 0x63, 0x94, 0xc2, 0xf4, + 0x77, 0xb3, 0x72, 0x74, 0xd6, 0x2c, 0xd6, 0x9d, 0x30, 0x24, 0x07, 0x92, 0x33, 0x9c, 0x55, 0xb3, + 0x54, 0x78, 0x7a, 0x09, 0x7b, 0xaa, 0xf0, 0x81, 0x0c, 0x2c, 0xa7, 0xfc, 0xf5, 0xd4, 0xbc, 0x4a, + 0xe8, 0x9f, 0xd3, 0xa8, 0x9e, 0x4d, 0x4f, 0x0d, 0xe6, 0xaf, 0x6f, 0xc4, 0x33, 0x24, 0xbf, 0x5b, + 0x2c, 0x7f, 0x86, 0x54, 0x2f, 0x16, 0xaf, 0x59, 0xa2, 0xd3, 0xd7, 0xb9, 0xf4, 0xed, 0xbf, 0xc1, + 0xbf, 0x58, 0x16, 0xc9, 0xaf, 0x18, 0xa5, 0x6c, 0xd5, 0x17, 0xdf, 0x31, 0x17, 0x5e, 0xee, 0x15, + 0xb0, 0x3e, 0x4a, 0x6d, 0x39, 0xe9, 0x3b, 0xc6, 0xd4, 0x83, 0x30, 0x3e, 0x72, 0xe3, 0x96, 0xa8, + 0x85, 0xd6, 0x1a, 0xac, 0x68, 0x30, 0xbd, 0xb5, 0xe5, 0x68, 0xf0, 0xe6, 0xa3, 0x93, 0xcb, 0x9e, + 0x47, 0x22, 0x0a, 0xce, 0xae, 0xf4, 0xa3, 0xab, 0x28, 0x7d, 0xea, 0x97, 0x82, 0xd3, 0xd5, 0x93, + 0xef, 0x84, 0xbc, 0x8a, 0xf0, 0xd5, 0x07, 0xb2, 0x22, 0x63, 0x80, 0x34, 0xa0, 0x9e, 0x15, 0xd9, + 0xe0, 0xb3, 0xe1, 0xca, 0x06, 0xb1, 0x5a, 0x27, 0xf7, 0x5f, 0x53, 0x88, 0xf2, 0x50, 0x7d, 0xaf, + 0xb0, 0x63, 0x64, 0x07, 0x88, 0x46, 0x22, 0x47, 0xf1, 0x72, 0xbb, 0x1d, 0x1e, 0x91, 0x96, 0x32, + 0x88, 0x8a, 0xef, 0xbb, 0x79, 0x70, 0x71, 0x10, 0xd9, 0x70, 0xb4, 0xac, 0xa3, 0x11, 0xec, 0x85, + 0x2b, 0xbd, 0xb5, 0xb0, 0xe3, 0xfa, 0x81, 0xd2, 0x6a, 0xd3, 0x14, 0x50, 0xa1, 0xc5, 0x56, 0x97, + 0x33, 0x72, 0x59, 0x47, 0xbb, 0x9d, 0xcf, 0x3a, 0x8c, 0x66, 0xf2, 0x58, 0x3d, 0xeb, 0xb0, 0xa4, + 0x80, 0xeb, 0x23, 0xf9, 0x18, 0xb0, 0xb1, 0xba, 0xbe, 0x1a, 0xc6, 0x44, 0x3d, 0x30, 0x33, 0x4b, + 0x5e, 0x18, 0x93, 0xe2, 0x21, 0x28, 0x45, 0xea, 0x3b, 0xb4, 0x15, 0x21, 0xbd, 0x61, 0x86, 0xc3, + 0xda, 0x76, 0xec, 0x06, 0xc9, 0x1e, 0x89, 0xe1, 0x9a, 0x99, 0xbe, 0xc8, 0xb1, 0x65, 0xbd, 0x74, + 0xf5, 0x4e, 0x19, 0x2c, 0xdd, 0x4a, 0x4e, 0xd5, 0x09, 0x95, 0xc5, 0xe2, 0x1b, 0x43, 0x78, 0xde, + 0x54, 0xc8, 0x05, 0x88, 0xfe, 0x2d, 0xd5, 0x60, 0xa4, 0xd2, 0x14, 0x37, 0xf0, 0x48, 0x7b, 0x40, + 0x53, 0xb4, 0xfa, 0xfe, 0x4d, 0xc9, 0xc1, 0x84, 0x83, 0x95, 0x00, 0x9d, 0xf5, 0xc2, 0x8e, 0x69, + 0xe5, 0x5f, 0x79, 0x43, 0x7e, 0x38, 0x16, 0xf9, 0xfc, 0xd3, 0xcc, 0x4d, 0xe7, 0x7b, 0xd3, 0x80, + 0x01, 0xc8, 0x9f, 0x47, 0x46, 0x57, 0xeb, 0x9f, 0xfc, 0x75, 0x64, 0x76, 0x35, 0x59, 0xaa, 0x02, + 0xba, 0xfa, 0x64, 0x61, 0x85, 0xd5, 0xfd, 0x83, 0x97, 0x7e, 0x06, 0xa5, 0x9f, 0x41, 0xe9, 0xee, + 0x38, 0xff, 0xb6, 0x73, 0xe9, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6d, 0x95, 0x31, 0x4f, 0x5d, + 0x34, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1121,7 +1235,9 @@ type GatewayAPIClient interface { UpdateStorageSpace(ctx context.Context, in *v1beta13.UpdateStorageSpaceRequest, opts ...grpc.CallOption) (*v1beta13.UpdateStorageSpaceResponse, error) // Deletes a storage space. DeleteStorageSpace(ctx context.Context, in *v1beta13.DeleteStorageSpaceRequest, opts ...grpc.CallOption) (*v1beta13.DeleteStorageSpaceResponse, error) - // Returns the App provider URL, which lets the user open a file in the correct online document editor. + // Returns the App provider URL, which allows the user to open a resource in an online editor. + OpenInApp(ctx context.Context, in *OpenInAppRequest, opts ...grpc.CallOption) (*v1beta15.OpenInAppResponse, error) + // Deprecated. OpenFileInAppProvider(ctx context.Context, in *OpenFileInAppProviderRequest, opts ...grpc.CallOption) (*v1beta15.OpenFileInAppProviderResponse, error) // Creates a new share. // MUST return CODE_NOT_FOUND if the resource reference does not exist. @@ -1586,6 +1702,15 @@ func (c *gatewayAPIClient) DeleteStorageSpace(ctx context.Context, in *v1beta13. return out, nil } +func (c *gatewayAPIClient) OpenInApp(ctx context.Context, in *OpenInAppRequest, opts ...grpc.CallOption) (*v1beta15.OpenInAppResponse, error) { + out := new(v1beta15.OpenInAppResponse) + err := c.cc.Invoke(ctx, "/cs3.gateway.v1beta1.GatewayAPI/OpenInApp", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *gatewayAPIClient) OpenFileInAppProvider(ctx context.Context, in *OpenFileInAppProviderRequest, opts ...grpc.CallOption) (*v1beta15.OpenFileInAppProviderResponse, error) { out := new(v1beta15.OpenFileInAppProviderResponse) err := c.cc.Invoke(ctx, "/cs3.gateway.v1beta1.GatewayAPI/OpenFileInAppProvider", in, out, opts...) @@ -2134,7 +2259,9 @@ type GatewayAPIServer interface { UpdateStorageSpace(context.Context, *v1beta13.UpdateStorageSpaceRequest) (*v1beta13.UpdateStorageSpaceResponse, error) // Deletes a storage space. DeleteStorageSpace(context.Context, *v1beta13.DeleteStorageSpaceRequest) (*v1beta13.DeleteStorageSpaceResponse, error) - // Returns the App provider URL, which lets the user open a file in the correct online document editor. + // Returns the App provider URL, which allows the user to open a resource in an online editor. + OpenInApp(context.Context, *OpenInAppRequest) (*v1beta15.OpenInAppResponse, error) + // Deprecated. OpenFileInAppProvider(context.Context, *OpenFileInAppProviderRequest) (*v1beta15.OpenFileInAppProviderResponse, error) // Creates a new share. // MUST return CODE_NOT_FOUND if the resource reference does not exist. @@ -2369,6 +2496,9 @@ func (*UnimplementedGatewayAPIServer) UpdateStorageSpace(ctx context.Context, re func (*UnimplementedGatewayAPIServer) DeleteStorageSpace(ctx context.Context, req *v1beta13.DeleteStorageSpaceRequest) (*v1beta13.DeleteStorageSpaceResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method DeleteStorageSpace not implemented") } +func (*UnimplementedGatewayAPIServer) OpenInApp(ctx context.Context, req *OpenInAppRequest) (*v1beta15.OpenInAppResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method OpenInApp not implemented") +} func (*UnimplementedGatewayAPIServer) OpenFileInAppProvider(ctx context.Context, req *OpenFileInAppProviderRequest) (*v1beta15.OpenFileInAppProviderResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method OpenFileInAppProvider not implemented") } @@ -3070,6 +3200,24 @@ func _GatewayAPI_DeleteStorageSpace_Handler(srv interface{}, ctx context.Context return interceptor(ctx, in, info, handler) } +func _GatewayAPI_OpenInApp_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(OpenInAppRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(GatewayAPIServer).OpenInApp(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cs3.gateway.v1beta1.GatewayAPI/OpenInApp", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(GatewayAPIServer).OpenInApp(ctx, req.(*OpenInAppRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _GatewayAPI_OpenFileInAppProvider_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(OpenFileInAppProviderRequest) if err := dec(in); err != nil { @@ -4086,6 +4234,10 @@ var _GatewayAPI_serviceDesc = grpc.ServiceDesc{ MethodName: "DeleteStorageSpace", Handler: _GatewayAPI_DeleteStorageSpace_Handler, }, + { + MethodName: "OpenInApp", + Handler: _GatewayAPI_OpenInApp_Handler, + }, { MethodName: "OpenFileInAppProvider", Handler: _GatewayAPI_OpenFileInAppProvider_Handler,