5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 10:12:31 +00:00
matterbridge/vendor/github.com/Philipp15b/go-steam/protocol/protobuf/unified/cloud.pb.go
2017-06-22 01:00:27 +02:00

1425 lines
63 KiB
Go

// Code generated by protoc-gen-go.
// source: steammessages_cloud.steamclient.proto
// DO NOT EDIT!
package unified
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
type CCloud_GetUploadServerInfo_Request struct {
Appid *uint32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_GetUploadServerInfo_Request) Reset() { *m = CCloud_GetUploadServerInfo_Request{} }
func (m *CCloud_GetUploadServerInfo_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_GetUploadServerInfo_Request) ProtoMessage() {}
func (*CCloud_GetUploadServerInfo_Request) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{0}
}
func (m *CCloud_GetUploadServerInfo_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
type CCloud_GetUploadServerInfo_Response struct {
ServerUrl *string `protobuf:"bytes,1,opt,name=server_url" json:"server_url,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_GetUploadServerInfo_Response) Reset() { *m = CCloud_GetUploadServerInfo_Response{} }
func (m *CCloud_GetUploadServerInfo_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_GetUploadServerInfo_Response) ProtoMessage() {}
func (*CCloud_GetUploadServerInfo_Response) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{1}
}
func (m *CCloud_GetUploadServerInfo_Response) GetServerUrl() string {
if m != nil && m.ServerUrl != nil {
return *m.ServerUrl
}
return ""
}
type CCloud_BeginHTTPUpload_Request struct {
Appid *uint32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
FileSize *uint32 `protobuf:"varint,2,opt,name=file_size" json:"file_size,omitempty"`
Filename *string `protobuf:"bytes,3,opt,name=filename" json:"filename,omitempty"`
FileSha *string `protobuf:"bytes,4,opt,name=file_sha" json:"file_sha,omitempty"`
IsPublic *bool `protobuf:"varint,5,opt,name=is_public" json:"is_public,omitempty"`
PlatformsToSync []string `protobuf:"bytes,6,rep,name=platforms_to_sync" json:"platforms_to_sync,omitempty"`
RequestHeadersNames []string `protobuf:"bytes,7,rep,name=request_headers_names" json:"request_headers_names,omitempty"`
RequestHeadersValues []string `protobuf:"bytes,8,rep,name=request_headers_values" json:"request_headers_values,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_BeginHTTPUpload_Request) Reset() { *m = CCloud_BeginHTTPUpload_Request{} }
func (m *CCloud_BeginHTTPUpload_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_BeginHTTPUpload_Request) ProtoMessage() {}
func (*CCloud_BeginHTTPUpload_Request) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{2} }
func (m *CCloud_BeginHTTPUpload_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_BeginHTTPUpload_Request) GetFileSize() uint32 {
if m != nil && m.FileSize != nil {
return *m.FileSize
}
return 0
}
func (m *CCloud_BeginHTTPUpload_Request) GetFilename() string {
if m != nil && m.Filename != nil {
return *m.Filename
}
return ""
}
func (m *CCloud_BeginHTTPUpload_Request) GetFileSha() string {
if m != nil && m.FileSha != nil {
return *m.FileSha
}
return ""
}
func (m *CCloud_BeginHTTPUpload_Request) GetIsPublic() bool {
if m != nil && m.IsPublic != nil {
return *m.IsPublic
}
return false
}
func (m *CCloud_BeginHTTPUpload_Request) GetPlatformsToSync() []string {
if m != nil {
return m.PlatformsToSync
}
return nil
}
func (m *CCloud_BeginHTTPUpload_Request) GetRequestHeadersNames() []string {
if m != nil {
return m.RequestHeadersNames
}
return nil
}
func (m *CCloud_BeginHTTPUpload_Request) GetRequestHeadersValues() []string {
if m != nil {
return m.RequestHeadersValues
}
return nil
}
type CCloud_BeginHTTPUpload_Response struct {
Ugcid *uint64 `protobuf:"fixed64,1,opt,name=ugcid" json:"ugcid,omitempty"`
Timestamp *uint32 `protobuf:"fixed32,2,opt,name=timestamp" json:"timestamp,omitempty"`
UrlHost *string `protobuf:"bytes,3,opt,name=url_host" json:"url_host,omitempty"`
UrlPath *string `protobuf:"bytes,4,opt,name=url_path" json:"url_path,omitempty"`
UseHttps *bool `protobuf:"varint,5,opt,name=use_https" json:"use_https,omitempty"`
RequestHeaders []*CCloud_BeginHTTPUpload_Response_HTTPHeaders `protobuf:"bytes,6,rep,name=request_headers" json:"request_headers,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_BeginHTTPUpload_Response) Reset() { *m = CCloud_BeginHTTPUpload_Response{} }
func (m *CCloud_BeginHTTPUpload_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_BeginHTTPUpload_Response) ProtoMessage() {}
func (*CCloud_BeginHTTPUpload_Response) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{3} }
func (m *CCloud_BeginHTTPUpload_Response) GetUgcid() uint64 {
if m != nil && m.Ugcid != nil {
return *m.Ugcid
}
return 0
}
func (m *CCloud_BeginHTTPUpload_Response) GetTimestamp() uint32 {
if m != nil && m.Timestamp != nil {
return *m.Timestamp
}
return 0
}
func (m *CCloud_BeginHTTPUpload_Response) GetUrlHost() string {
if m != nil && m.UrlHost != nil {
return *m.UrlHost
}
return ""
}
func (m *CCloud_BeginHTTPUpload_Response) GetUrlPath() string {
if m != nil && m.UrlPath != nil {
return *m.UrlPath
}
return ""
}
func (m *CCloud_BeginHTTPUpload_Response) GetUseHttps() bool {
if m != nil && m.UseHttps != nil {
return *m.UseHttps
}
return false
}
func (m *CCloud_BeginHTTPUpload_Response) GetRequestHeaders() []*CCloud_BeginHTTPUpload_Response_HTTPHeaders {
if m != nil {
return m.RequestHeaders
}
return nil
}
type CCloud_BeginHTTPUpload_Response_HTTPHeaders struct {
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_BeginHTTPUpload_Response_HTTPHeaders) Reset() {
*m = CCloud_BeginHTTPUpload_Response_HTTPHeaders{}
}
func (m *CCloud_BeginHTTPUpload_Response_HTTPHeaders) String() string {
return proto.CompactTextString(m)
}
func (*CCloud_BeginHTTPUpload_Response_HTTPHeaders) ProtoMessage() {}
func (*CCloud_BeginHTTPUpload_Response_HTTPHeaders) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{3, 0}
}
func (m *CCloud_BeginHTTPUpload_Response_HTTPHeaders) GetName() string {
if m != nil && m.Name != nil {
return *m.Name
}
return ""
}
func (m *CCloud_BeginHTTPUpload_Response_HTTPHeaders) GetValue() string {
if m != nil && m.Value != nil {
return *m.Value
}
return ""
}
type CCloud_CommitHTTPUpload_Request struct {
TransferSucceeded *bool `protobuf:"varint,1,opt,name=transfer_succeeded" json:"transfer_succeeded,omitempty"`
Appid *uint32 `protobuf:"varint,2,opt,name=appid" json:"appid,omitempty"`
FileSha *string `protobuf:"bytes,3,opt,name=file_sha" json:"file_sha,omitempty"`
Filename *string `protobuf:"bytes,4,opt,name=filename" json:"filename,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_CommitHTTPUpload_Request) Reset() { *m = CCloud_CommitHTTPUpload_Request{} }
func (m *CCloud_CommitHTTPUpload_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_CommitHTTPUpload_Request) ProtoMessage() {}
func (*CCloud_CommitHTTPUpload_Request) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{4} }
func (m *CCloud_CommitHTTPUpload_Request) GetTransferSucceeded() bool {
if m != nil && m.TransferSucceeded != nil {
return *m.TransferSucceeded
}
return false
}
func (m *CCloud_CommitHTTPUpload_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_CommitHTTPUpload_Request) GetFileSha() string {
if m != nil && m.FileSha != nil {
return *m.FileSha
}
return ""
}
func (m *CCloud_CommitHTTPUpload_Request) GetFilename() string {
if m != nil && m.Filename != nil {
return *m.Filename
}
return ""
}
type CCloud_CommitHTTPUpload_Response struct {
FileCommitted *bool `protobuf:"varint,1,opt,name=file_committed" json:"file_committed,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_CommitHTTPUpload_Response) Reset() { *m = CCloud_CommitHTTPUpload_Response{} }
func (m *CCloud_CommitHTTPUpload_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_CommitHTTPUpload_Response) ProtoMessage() {}
func (*CCloud_CommitHTTPUpload_Response) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{5}
}
func (m *CCloud_CommitHTTPUpload_Response) GetFileCommitted() bool {
if m != nil && m.FileCommitted != nil {
return *m.FileCommitted
}
return false
}
type CCloud_GetFileDetails_Request struct {
Ugcid *uint64 `protobuf:"varint,1,opt,name=ugcid" json:"ugcid,omitempty"`
Appid *uint32 `protobuf:"varint,2,opt,name=appid" json:"appid,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_GetFileDetails_Request) Reset() { *m = CCloud_GetFileDetails_Request{} }
func (m *CCloud_GetFileDetails_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_GetFileDetails_Request) ProtoMessage() {}
func (*CCloud_GetFileDetails_Request) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{6} }
func (m *CCloud_GetFileDetails_Request) GetUgcid() uint64 {
if m != nil && m.Ugcid != nil {
return *m.Ugcid
}
return 0
}
func (m *CCloud_GetFileDetails_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
type CCloud_UserFile struct {
Appid *uint32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
Ugcid *uint64 `protobuf:"varint,2,opt,name=ugcid" json:"ugcid,omitempty"`
Filename *string `protobuf:"bytes,3,opt,name=filename" json:"filename,omitempty"`
Timestamp *uint64 `protobuf:"varint,4,opt,name=timestamp" json:"timestamp,omitempty"`
FileSize *uint32 `protobuf:"varint,5,opt,name=file_size" json:"file_size,omitempty"`
Url *string `protobuf:"bytes,6,opt,name=url" json:"url,omitempty"`
SteamidCreator *uint64 `protobuf:"fixed64,7,opt,name=steamid_creator" json:"steamid_creator,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_UserFile) Reset() { *m = CCloud_UserFile{} }
func (m *CCloud_UserFile) String() string { return proto.CompactTextString(m) }
func (*CCloud_UserFile) ProtoMessage() {}
func (*CCloud_UserFile) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{7} }
func (m *CCloud_UserFile) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_UserFile) GetUgcid() uint64 {
if m != nil && m.Ugcid != nil {
return *m.Ugcid
}
return 0
}
func (m *CCloud_UserFile) GetFilename() string {
if m != nil && m.Filename != nil {
return *m.Filename
}
return ""
}
func (m *CCloud_UserFile) GetTimestamp() uint64 {
if m != nil && m.Timestamp != nil {
return *m.Timestamp
}
return 0
}
func (m *CCloud_UserFile) GetFileSize() uint32 {
if m != nil && m.FileSize != nil {
return *m.FileSize
}
return 0
}
func (m *CCloud_UserFile) GetUrl() string {
if m != nil && m.Url != nil {
return *m.Url
}
return ""
}
func (m *CCloud_UserFile) GetSteamidCreator() uint64 {
if m != nil && m.SteamidCreator != nil {
return *m.SteamidCreator
}
return 0
}
type CCloud_GetFileDetails_Response struct {
Details *CCloud_UserFile `protobuf:"bytes,1,opt,name=details" json:"details,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_GetFileDetails_Response) Reset() { *m = CCloud_GetFileDetails_Response{} }
func (m *CCloud_GetFileDetails_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_GetFileDetails_Response) ProtoMessage() {}
func (*CCloud_GetFileDetails_Response) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{8} }
func (m *CCloud_GetFileDetails_Response) GetDetails() *CCloud_UserFile {
if m != nil {
return m.Details
}
return nil
}
type CCloud_EnumerateUserFiles_Request struct {
Appid *uint32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
ExtendedDetails *bool `protobuf:"varint,2,opt,name=extended_details" json:"extended_details,omitempty"`
Count *uint32 `protobuf:"varint,3,opt,name=count" json:"count,omitempty"`
StartIndex *uint32 `protobuf:"varint,4,opt,name=start_index" json:"start_index,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_EnumerateUserFiles_Request) Reset() { *m = CCloud_EnumerateUserFiles_Request{} }
func (m *CCloud_EnumerateUserFiles_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_EnumerateUserFiles_Request) ProtoMessage() {}
func (*CCloud_EnumerateUserFiles_Request) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{9}
}
func (m *CCloud_EnumerateUserFiles_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_EnumerateUserFiles_Request) GetExtendedDetails() bool {
if m != nil && m.ExtendedDetails != nil {
return *m.ExtendedDetails
}
return false
}
func (m *CCloud_EnumerateUserFiles_Request) GetCount() uint32 {
if m != nil && m.Count != nil {
return *m.Count
}
return 0
}
func (m *CCloud_EnumerateUserFiles_Request) GetStartIndex() uint32 {
if m != nil && m.StartIndex != nil {
return *m.StartIndex
}
return 0
}
type CCloud_EnumerateUserFiles_Response struct {
Files []*CCloud_UserFile `protobuf:"bytes,1,rep,name=files" json:"files,omitempty"`
TotalFiles *uint32 `protobuf:"varint,2,opt,name=total_files" json:"total_files,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_EnumerateUserFiles_Response) Reset() { *m = CCloud_EnumerateUserFiles_Response{} }
func (m *CCloud_EnumerateUserFiles_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_EnumerateUserFiles_Response) ProtoMessage() {}
func (*CCloud_EnumerateUserFiles_Response) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{10}
}
func (m *CCloud_EnumerateUserFiles_Response) GetFiles() []*CCloud_UserFile {
if m != nil {
return m.Files
}
return nil
}
func (m *CCloud_EnumerateUserFiles_Response) GetTotalFiles() uint32 {
if m != nil && m.TotalFiles != nil {
return *m.TotalFiles
}
return 0
}
type CCloud_Delete_Request struct {
Filename *string `protobuf:"bytes,1,opt,name=filename" json:"filename,omitempty"`
Appid *uint32 `protobuf:"varint,2,opt,name=appid" json:"appid,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_Delete_Request) Reset() { *m = CCloud_Delete_Request{} }
func (m *CCloud_Delete_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_Delete_Request) ProtoMessage() {}
func (*CCloud_Delete_Request) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{11} }
func (m *CCloud_Delete_Request) GetFilename() string {
if m != nil && m.Filename != nil {
return *m.Filename
}
return ""
}
func (m *CCloud_Delete_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
type CCloud_Delete_Response struct {
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_Delete_Response) Reset() { *m = CCloud_Delete_Response{} }
func (m *CCloud_Delete_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_Delete_Response) ProtoMessage() {}
func (*CCloud_Delete_Response) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{12} }
type CCloud_GetClientEncryptionKey_Request struct {
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_GetClientEncryptionKey_Request) Reset() { *m = CCloud_GetClientEncryptionKey_Request{} }
func (m *CCloud_GetClientEncryptionKey_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_GetClientEncryptionKey_Request) ProtoMessage() {}
func (*CCloud_GetClientEncryptionKey_Request) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{13}
}
type CCloud_GetClientEncryptionKey_Response struct {
Key []byte `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
Crc *int32 `protobuf:"varint,2,opt,name=crc" json:"crc,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_GetClientEncryptionKey_Response) Reset() {
*m = CCloud_GetClientEncryptionKey_Response{}
}
func (m *CCloud_GetClientEncryptionKey_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_GetClientEncryptionKey_Response) ProtoMessage() {}
func (*CCloud_GetClientEncryptionKey_Response) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{14}
}
func (m *CCloud_GetClientEncryptionKey_Response) GetKey() []byte {
if m != nil {
return m.Key
}
return nil
}
func (m *CCloud_GetClientEncryptionKey_Response) GetCrc() int32 {
if m != nil && m.Crc != nil {
return *m.Crc
}
return 0
}
type CCloud_CDNReport_Notification struct {
Steamid *uint64 `protobuf:"fixed64,1,opt,name=steamid" json:"steamid,omitempty"`
Url *string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
Success *bool `protobuf:"varint,3,opt,name=success" json:"success,omitempty"`
HttpStatusCode *uint32 `protobuf:"varint,4,opt,name=http_status_code" json:"http_status_code,omitempty"`
ExpectedBytes *uint64 `protobuf:"varint,5,opt,name=expected_bytes" json:"expected_bytes,omitempty"`
ReceivedBytes *uint64 `protobuf:"varint,6,opt,name=received_bytes" json:"received_bytes,omitempty"`
Duration *uint32 `protobuf:"varint,7,opt,name=duration" json:"duration,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_CDNReport_Notification) Reset() { *m = CCloud_CDNReport_Notification{} }
func (m *CCloud_CDNReport_Notification) String() string { return proto.CompactTextString(m) }
func (*CCloud_CDNReport_Notification) ProtoMessage() {}
func (*CCloud_CDNReport_Notification) Descriptor() ([]byte, []int) { return cloud_fileDescriptor0, []int{15} }
func (m *CCloud_CDNReport_Notification) GetSteamid() uint64 {
if m != nil && m.Steamid != nil {
return *m.Steamid
}
return 0
}
func (m *CCloud_CDNReport_Notification) GetUrl() string {
if m != nil && m.Url != nil {
return *m.Url
}
return ""
}
func (m *CCloud_CDNReport_Notification) GetSuccess() bool {
if m != nil && m.Success != nil {
return *m.Success
}
return false
}
func (m *CCloud_CDNReport_Notification) GetHttpStatusCode() uint32 {
if m != nil && m.HttpStatusCode != nil {
return *m.HttpStatusCode
}
return 0
}
func (m *CCloud_CDNReport_Notification) GetExpectedBytes() uint64 {
if m != nil && m.ExpectedBytes != nil {
return *m.ExpectedBytes
}
return 0
}
func (m *CCloud_CDNReport_Notification) GetReceivedBytes() uint64 {
if m != nil && m.ReceivedBytes != nil {
return *m.ReceivedBytes
}
return 0
}
func (m *CCloud_CDNReport_Notification) GetDuration() uint32 {
if m != nil && m.Duration != nil {
return *m.Duration
}
return 0
}
type CCloud_ExternalStorageTransferReport_Notification struct {
Host *string `protobuf:"bytes,1,opt,name=host" json:"host,omitempty"`
Path *string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"`
IsUpload *bool `protobuf:"varint,3,opt,name=is_upload" json:"is_upload,omitempty"`
Success *bool `protobuf:"varint,4,opt,name=success" json:"success,omitempty"`
HttpStatusCode *uint32 `protobuf:"varint,5,opt,name=http_status_code" json:"http_status_code,omitempty"`
BytesExpected *uint64 `protobuf:"varint,6,opt,name=bytes_expected" json:"bytes_expected,omitempty"`
BytesActual *uint64 `protobuf:"varint,7,opt,name=bytes_actual" json:"bytes_actual,omitempty"`
DurationMs *uint32 `protobuf:"varint,8,opt,name=duration_ms" json:"duration_ms,omitempty"`
Cellid *uint32 `protobuf:"varint,9,opt,name=cellid" json:"cellid,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ExternalStorageTransferReport_Notification) Reset() {
*m = CCloud_ExternalStorageTransferReport_Notification{}
}
func (m *CCloud_ExternalStorageTransferReport_Notification) String() string {
return proto.CompactTextString(m)
}
func (*CCloud_ExternalStorageTransferReport_Notification) ProtoMessage() {}
func (*CCloud_ExternalStorageTransferReport_Notification) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{16}
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetHost() string {
if m != nil && m.Host != nil {
return *m.Host
}
return ""
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetPath() string {
if m != nil && m.Path != nil {
return *m.Path
}
return ""
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetIsUpload() bool {
if m != nil && m.IsUpload != nil {
return *m.IsUpload
}
return false
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetSuccess() bool {
if m != nil && m.Success != nil {
return *m.Success
}
return false
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetHttpStatusCode() uint32 {
if m != nil && m.HttpStatusCode != nil {
return *m.HttpStatusCode
}
return 0
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetBytesExpected() uint64 {
if m != nil && m.BytesExpected != nil {
return *m.BytesExpected
}
return 0
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetBytesActual() uint64 {
if m != nil && m.BytesActual != nil {
return *m.BytesActual
}
return 0
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetDurationMs() uint32 {
if m != nil && m.DurationMs != nil {
return *m.DurationMs
}
return 0
}
func (m *CCloud_ExternalStorageTransferReport_Notification) GetCellid() uint32 {
if m != nil && m.Cellid != nil {
return *m.Cellid
}
return 0
}
type CCloud_ClientBeginFileUpload_Request struct {
Appid *uint32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
FileSize *uint32 `protobuf:"varint,2,opt,name=file_size" json:"file_size,omitempty"`
RawFileSize *uint32 `protobuf:"varint,3,opt,name=raw_file_size" json:"raw_file_size,omitempty"`
FileSha []byte `protobuf:"bytes,4,opt,name=file_sha" json:"file_sha,omitempty"`
TimeStamp *uint64 `protobuf:"varint,5,opt,name=time_stamp" json:"time_stamp,omitempty"`
Filename *string `protobuf:"bytes,6,opt,name=filename" json:"filename,omitempty"`
PlatformsToSync *uint32 `protobuf:"varint,7,opt,name=platforms_to_sync,def=4294967295" json:"platforms_to_sync,omitempty"`
CellId *uint32 `protobuf:"varint,9,opt,name=cell_id" json:"cell_id,omitempty"`
CanEncrypt *bool `protobuf:"varint,10,opt,name=can_encrypt" json:"can_encrypt,omitempty"`
IsSharedFile *bool `protobuf:"varint,11,opt,name=is_shared_file" json:"is_shared_file,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientBeginFileUpload_Request) Reset() { *m = CCloud_ClientBeginFileUpload_Request{} }
func (m *CCloud_ClientBeginFileUpload_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_ClientBeginFileUpload_Request) ProtoMessage() {}
func (*CCloud_ClientBeginFileUpload_Request) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{17}
}
const Default_CCloud_ClientBeginFileUpload_Request_PlatformsToSync uint32 = 4294967295
func (m *CCloud_ClientBeginFileUpload_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_ClientBeginFileUpload_Request) GetFileSize() uint32 {
if m != nil && m.FileSize != nil {
return *m.FileSize
}
return 0
}
func (m *CCloud_ClientBeginFileUpload_Request) GetRawFileSize() uint32 {
if m != nil && m.RawFileSize != nil {
return *m.RawFileSize
}
return 0
}
func (m *CCloud_ClientBeginFileUpload_Request) GetFileSha() []byte {
if m != nil {
return m.FileSha
}
return nil
}
func (m *CCloud_ClientBeginFileUpload_Request) GetTimeStamp() uint64 {
if m != nil && m.TimeStamp != nil {
return *m.TimeStamp
}
return 0
}
func (m *CCloud_ClientBeginFileUpload_Request) GetFilename() string {
if m != nil && m.Filename != nil {
return *m.Filename
}
return ""
}
func (m *CCloud_ClientBeginFileUpload_Request) GetPlatformsToSync() uint32 {
if m != nil && m.PlatformsToSync != nil {
return *m.PlatformsToSync
}
return Default_CCloud_ClientBeginFileUpload_Request_PlatformsToSync
}
func (m *CCloud_ClientBeginFileUpload_Request) GetCellId() uint32 {
if m != nil && m.CellId != nil {
return *m.CellId
}
return 0
}
func (m *CCloud_ClientBeginFileUpload_Request) GetCanEncrypt() bool {
if m != nil && m.CanEncrypt != nil {
return *m.CanEncrypt
}
return false
}
func (m *CCloud_ClientBeginFileUpload_Request) GetIsSharedFile() bool {
if m != nil && m.IsSharedFile != nil {
return *m.IsSharedFile
}
return false
}
type ClientCloudFileUploadBlockDetails struct {
UrlHost *string `protobuf:"bytes,1,opt,name=url_host" json:"url_host,omitempty"`
UrlPath *string `protobuf:"bytes,2,opt,name=url_path" json:"url_path,omitempty"`
UseHttps *bool `protobuf:"varint,3,opt,name=use_https" json:"use_https,omitempty"`
HttpMethod *int32 `protobuf:"varint,4,opt,name=http_method" json:"http_method,omitempty"`
RequestHeaders []*ClientCloudFileUploadBlockDetails_HTTPHeaders `protobuf:"bytes,5,rep,name=request_headers" json:"request_headers,omitempty"`
BlockOffset *uint64 `protobuf:"varint,6,opt,name=block_offset" json:"block_offset,omitempty"`
BlockLength *uint32 `protobuf:"varint,7,opt,name=block_length" json:"block_length,omitempty"`
ExplicitBodyData []byte `protobuf:"bytes,8,opt,name=explicit_body_data" json:"explicit_body_data,omitempty"`
MayParallelize *bool `protobuf:"varint,9,opt,name=may_parallelize" json:"may_parallelize,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *ClientCloudFileUploadBlockDetails) Reset() { *m = ClientCloudFileUploadBlockDetails{} }
func (m *ClientCloudFileUploadBlockDetails) String() string { return proto.CompactTextString(m) }
func (*ClientCloudFileUploadBlockDetails) ProtoMessage() {}
func (*ClientCloudFileUploadBlockDetails) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{18}
}
func (m *ClientCloudFileUploadBlockDetails) GetUrlHost() string {
if m != nil && m.UrlHost != nil {
return *m.UrlHost
}
return ""
}
func (m *ClientCloudFileUploadBlockDetails) GetUrlPath() string {
if m != nil && m.UrlPath != nil {
return *m.UrlPath
}
return ""
}
func (m *ClientCloudFileUploadBlockDetails) GetUseHttps() bool {
if m != nil && m.UseHttps != nil {
return *m.UseHttps
}
return false
}
func (m *ClientCloudFileUploadBlockDetails) GetHttpMethod() int32 {
if m != nil && m.HttpMethod != nil {
return *m.HttpMethod
}
return 0
}
func (m *ClientCloudFileUploadBlockDetails) GetRequestHeaders() []*ClientCloudFileUploadBlockDetails_HTTPHeaders {
if m != nil {
return m.RequestHeaders
}
return nil
}
func (m *ClientCloudFileUploadBlockDetails) GetBlockOffset() uint64 {
if m != nil && m.BlockOffset != nil {
return *m.BlockOffset
}
return 0
}
func (m *ClientCloudFileUploadBlockDetails) GetBlockLength() uint32 {
if m != nil && m.BlockLength != nil {
return *m.BlockLength
}
return 0
}
func (m *ClientCloudFileUploadBlockDetails) GetExplicitBodyData() []byte {
if m != nil {
return m.ExplicitBodyData
}
return nil
}
func (m *ClientCloudFileUploadBlockDetails) GetMayParallelize() bool {
if m != nil && m.MayParallelize != nil {
return *m.MayParallelize
}
return false
}
type ClientCloudFileUploadBlockDetails_HTTPHeaders struct {
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *ClientCloudFileUploadBlockDetails_HTTPHeaders) Reset() {
*m = ClientCloudFileUploadBlockDetails_HTTPHeaders{}
}
func (m *ClientCloudFileUploadBlockDetails_HTTPHeaders) String() string {
return proto.CompactTextString(m)
}
func (*ClientCloudFileUploadBlockDetails_HTTPHeaders) ProtoMessage() {}
func (*ClientCloudFileUploadBlockDetails_HTTPHeaders) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{18, 0}
}
func (m *ClientCloudFileUploadBlockDetails_HTTPHeaders) GetName() string {
if m != nil && m.Name != nil {
return *m.Name
}
return ""
}
func (m *ClientCloudFileUploadBlockDetails_HTTPHeaders) GetValue() string {
if m != nil && m.Value != nil {
return *m.Value
}
return ""
}
type CCloud_ClientBeginFileUpload_Response struct {
EncryptFile *bool `protobuf:"varint,1,opt,name=encrypt_file" json:"encrypt_file,omitempty"`
BlockRequests []*ClientCloudFileUploadBlockDetails `protobuf:"bytes,2,rep,name=block_requests" json:"block_requests,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientBeginFileUpload_Response) Reset() { *m = CCloud_ClientBeginFileUpload_Response{} }
func (m *CCloud_ClientBeginFileUpload_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_ClientBeginFileUpload_Response) ProtoMessage() {}
func (*CCloud_ClientBeginFileUpload_Response) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{19}
}
func (m *CCloud_ClientBeginFileUpload_Response) GetEncryptFile() bool {
if m != nil && m.EncryptFile != nil {
return *m.EncryptFile
}
return false
}
func (m *CCloud_ClientBeginFileUpload_Response) GetBlockRequests() []*ClientCloudFileUploadBlockDetails {
if m != nil {
return m.BlockRequests
}
return nil
}
type CCloud_ClientCommitFileUpload_Request struct {
TransferSucceeded *bool `protobuf:"varint,1,opt,name=transfer_succeeded" json:"transfer_succeeded,omitempty"`
Appid *uint32 `protobuf:"varint,2,opt,name=appid" json:"appid,omitempty"`
FileSha []byte `protobuf:"bytes,3,opt,name=file_sha" json:"file_sha,omitempty"`
Filename *string `protobuf:"bytes,4,opt,name=filename" json:"filename,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientCommitFileUpload_Request) Reset() { *m = CCloud_ClientCommitFileUpload_Request{} }
func (m *CCloud_ClientCommitFileUpload_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_ClientCommitFileUpload_Request) ProtoMessage() {}
func (*CCloud_ClientCommitFileUpload_Request) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{20}
}
func (m *CCloud_ClientCommitFileUpload_Request) GetTransferSucceeded() bool {
if m != nil && m.TransferSucceeded != nil {
return *m.TransferSucceeded
}
return false
}
func (m *CCloud_ClientCommitFileUpload_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_ClientCommitFileUpload_Request) GetFileSha() []byte {
if m != nil {
return m.FileSha
}
return nil
}
func (m *CCloud_ClientCommitFileUpload_Request) GetFilename() string {
if m != nil && m.Filename != nil {
return *m.Filename
}
return ""
}
type CCloud_ClientCommitFileUpload_Response struct {
FileCommitted *bool `protobuf:"varint,1,opt,name=file_committed" json:"file_committed,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientCommitFileUpload_Response) Reset() {
*m = CCloud_ClientCommitFileUpload_Response{}
}
func (m *CCloud_ClientCommitFileUpload_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_ClientCommitFileUpload_Response) ProtoMessage() {}
func (*CCloud_ClientCommitFileUpload_Response) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{21}
}
func (m *CCloud_ClientCommitFileUpload_Response) GetFileCommitted() bool {
if m != nil && m.FileCommitted != nil {
return *m.FileCommitted
}
return false
}
type CCloud_ClientFileDownload_Request struct {
Appid *uint32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
Filename *string `protobuf:"bytes,2,opt,name=filename" json:"filename,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientFileDownload_Request) Reset() { *m = CCloud_ClientFileDownload_Request{} }
func (m *CCloud_ClientFileDownload_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_ClientFileDownload_Request) ProtoMessage() {}
func (*CCloud_ClientFileDownload_Request) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{22}
}
func (m *CCloud_ClientFileDownload_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_ClientFileDownload_Request) GetFilename() string {
if m != nil && m.Filename != nil {
return *m.Filename
}
return ""
}
type CCloud_ClientFileDownload_Response struct {
Appid *uint32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
FileSize *uint32 `protobuf:"varint,2,opt,name=file_size" json:"file_size,omitempty"`
RawFileSize *uint32 `protobuf:"varint,3,opt,name=raw_file_size" json:"raw_file_size,omitempty"`
ShaFile []byte `protobuf:"bytes,4,opt,name=sha_file" json:"sha_file,omitempty"`
TimeStamp *uint64 `protobuf:"varint,5,opt,name=time_stamp" json:"time_stamp,omitempty"`
IsExplicitDelete *bool `protobuf:"varint,6,opt,name=is_explicit_delete" json:"is_explicit_delete,omitempty"`
UrlHost *string `protobuf:"bytes,7,opt,name=url_host" json:"url_host,omitempty"`
UrlPath *string `protobuf:"bytes,8,opt,name=url_path" json:"url_path,omitempty"`
UseHttps *bool `protobuf:"varint,9,opt,name=use_https" json:"use_https,omitempty"`
RequestHeaders []*CCloud_ClientFileDownload_Response_HTTPHeaders `protobuf:"bytes,10,rep,name=request_headers" json:"request_headers,omitempty"`
Encrypted *bool `protobuf:"varint,11,opt,name=encrypted" json:"encrypted,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientFileDownload_Response) Reset() { *m = CCloud_ClientFileDownload_Response{} }
func (m *CCloud_ClientFileDownload_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_ClientFileDownload_Response) ProtoMessage() {}
func (*CCloud_ClientFileDownload_Response) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{23}
}
func (m *CCloud_ClientFileDownload_Response) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_ClientFileDownload_Response) GetFileSize() uint32 {
if m != nil && m.FileSize != nil {
return *m.FileSize
}
return 0
}
func (m *CCloud_ClientFileDownload_Response) GetRawFileSize() uint32 {
if m != nil && m.RawFileSize != nil {
return *m.RawFileSize
}
return 0
}
func (m *CCloud_ClientFileDownload_Response) GetShaFile() []byte {
if m != nil {
return m.ShaFile
}
return nil
}
func (m *CCloud_ClientFileDownload_Response) GetTimeStamp() uint64 {
if m != nil && m.TimeStamp != nil {
return *m.TimeStamp
}
return 0
}
func (m *CCloud_ClientFileDownload_Response) GetIsExplicitDelete() bool {
if m != nil && m.IsExplicitDelete != nil {
return *m.IsExplicitDelete
}
return false
}
func (m *CCloud_ClientFileDownload_Response) GetUrlHost() string {
if m != nil && m.UrlHost != nil {
return *m.UrlHost
}
return ""
}
func (m *CCloud_ClientFileDownload_Response) GetUrlPath() string {
if m != nil && m.UrlPath != nil {
return *m.UrlPath
}
return ""
}
func (m *CCloud_ClientFileDownload_Response) GetUseHttps() bool {
if m != nil && m.UseHttps != nil {
return *m.UseHttps
}
return false
}
func (m *CCloud_ClientFileDownload_Response) GetRequestHeaders() []*CCloud_ClientFileDownload_Response_HTTPHeaders {
if m != nil {
return m.RequestHeaders
}
return nil
}
func (m *CCloud_ClientFileDownload_Response) GetEncrypted() bool {
if m != nil && m.Encrypted != nil {
return *m.Encrypted
}
return false
}
type CCloud_ClientFileDownload_Response_HTTPHeaders struct {
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientFileDownload_Response_HTTPHeaders) Reset() {
*m = CCloud_ClientFileDownload_Response_HTTPHeaders{}
}
func (m *CCloud_ClientFileDownload_Response_HTTPHeaders) String() string {
return proto.CompactTextString(m)
}
func (*CCloud_ClientFileDownload_Response_HTTPHeaders) ProtoMessage() {}
func (*CCloud_ClientFileDownload_Response_HTTPHeaders) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{23, 0}
}
func (m *CCloud_ClientFileDownload_Response_HTTPHeaders) GetName() string {
if m != nil && m.Name != nil {
return *m.Name
}
return ""
}
func (m *CCloud_ClientFileDownload_Response_HTTPHeaders) GetValue() string {
if m != nil && m.Value != nil {
return *m.Value
}
return ""
}
type CCloud_ClientDeleteFile_Request struct {
Appid *uint32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
Filename *string `protobuf:"bytes,2,opt,name=filename" json:"filename,omitempty"`
IsExplicitDelete *bool `protobuf:"varint,3,opt,name=is_explicit_delete" json:"is_explicit_delete,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientDeleteFile_Request) Reset() { *m = CCloud_ClientDeleteFile_Request{} }
func (m *CCloud_ClientDeleteFile_Request) String() string { return proto.CompactTextString(m) }
func (*CCloud_ClientDeleteFile_Request) ProtoMessage() {}
func (*CCloud_ClientDeleteFile_Request) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{24}
}
func (m *CCloud_ClientDeleteFile_Request) GetAppid() uint32 {
if m != nil && m.Appid != nil {
return *m.Appid
}
return 0
}
func (m *CCloud_ClientDeleteFile_Request) GetFilename() string {
if m != nil && m.Filename != nil {
return *m.Filename
}
return ""
}
func (m *CCloud_ClientDeleteFile_Request) GetIsExplicitDelete() bool {
if m != nil && m.IsExplicitDelete != nil {
return *m.IsExplicitDelete
}
return false
}
type CCloud_ClientDeleteFile_Response struct {
XXX_unrecognized []byte `json:"-"`
}
func (m *CCloud_ClientDeleteFile_Response) Reset() { *m = CCloud_ClientDeleteFile_Response{} }
func (m *CCloud_ClientDeleteFile_Response) String() string { return proto.CompactTextString(m) }
func (*CCloud_ClientDeleteFile_Response) ProtoMessage() {}
func (*CCloud_ClientDeleteFile_Response) Descriptor() ([]byte, []int) {
return cloud_fileDescriptor0, []int{25}
}
func init() {
proto.RegisterType((*CCloud_GetUploadServerInfo_Request)(nil), "CCloud_GetUploadServerInfo_Request")
proto.RegisterType((*CCloud_GetUploadServerInfo_Response)(nil), "CCloud_GetUploadServerInfo_Response")
proto.RegisterType((*CCloud_BeginHTTPUpload_Request)(nil), "CCloud_BeginHTTPUpload_Request")
proto.RegisterType((*CCloud_BeginHTTPUpload_Response)(nil), "CCloud_BeginHTTPUpload_Response")
proto.RegisterType((*CCloud_BeginHTTPUpload_Response_HTTPHeaders)(nil), "CCloud_BeginHTTPUpload_Response.HTTPHeaders")
proto.RegisterType((*CCloud_CommitHTTPUpload_Request)(nil), "CCloud_CommitHTTPUpload_Request")
proto.RegisterType((*CCloud_CommitHTTPUpload_Response)(nil), "CCloud_CommitHTTPUpload_Response")
proto.RegisterType((*CCloud_GetFileDetails_Request)(nil), "CCloud_GetFileDetails_Request")
proto.RegisterType((*CCloud_UserFile)(nil), "CCloud_UserFile")
proto.RegisterType((*CCloud_GetFileDetails_Response)(nil), "CCloud_GetFileDetails_Response")
proto.RegisterType((*CCloud_EnumerateUserFiles_Request)(nil), "CCloud_EnumerateUserFiles_Request")
proto.RegisterType((*CCloud_EnumerateUserFiles_Response)(nil), "CCloud_EnumerateUserFiles_Response")
proto.RegisterType((*CCloud_Delete_Request)(nil), "CCloud_Delete_Request")
proto.RegisterType((*CCloud_Delete_Response)(nil), "CCloud_Delete_Response")
proto.RegisterType((*CCloud_GetClientEncryptionKey_Request)(nil), "CCloud_GetClientEncryptionKey_Request")
proto.RegisterType((*CCloud_GetClientEncryptionKey_Response)(nil), "CCloud_GetClientEncryptionKey_Response")
proto.RegisterType((*CCloud_CDNReport_Notification)(nil), "CCloud_CDNReport_Notification")
proto.RegisterType((*CCloud_ExternalStorageTransferReport_Notification)(nil), "CCloud_ExternalStorageTransferReport_Notification")
proto.RegisterType((*CCloud_ClientBeginFileUpload_Request)(nil), "CCloud_ClientBeginFileUpload_Request")
proto.RegisterType((*ClientCloudFileUploadBlockDetails)(nil), "ClientCloudFileUploadBlockDetails")
proto.RegisterType((*ClientCloudFileUploadBlockDetails_HTTPHeaders)(nil), "ClientCloudFileUploadBlockDetails.HTTPHeaders")
proto.RegisterType((*CCloud_ClientBeginFileUpload_Response)(nil), "CCloud_ClientBeginFileUpload_Response")
proto.RegisterType((*CCloud_ClientCommitFileUpload_Request)(nil), "CCloud_ClientCommitFileUpload_Request")
proto.RegisterType((*CCloud_ClientCommitFileUpload_Response)(nil), "CCloud_ClientCommitFileUpload_Response")
proto.RegisterType((*CCloud_ClientFileDownload_Request)(nil), "CCloud_ClientFileDownload_Request")
proto.RegisterType((*CCloud_ClientFileDownload_Response)(nil), "CCloud_ClientFileDownload_Response")
proto.RegisterType((*CCloud_ClientFileDownload_Response_HTTPHeaders)(nil), "CCloud_ClientFileDownload_Response.HTTPHeaders")
proto.RegisterType((*CCloud_ClientDeleteFile_Request)(nil), "CCloud_ClientDeleteFile_Request")
proto.RegisterType((*CCloud_ClientDeleteFile_Response)(nil), "CCloud_ClientDeleteFile_Response")
}
var cloud_fileDescriptor0 = []byte{
// 3368 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xbc, 0x59, 0x4b, 0x6f, 0x1c, 0xc7,
0xb5, 0xc6, 0x88, 0x1c, 0x8a, 0x2c, 0x8a, 0xa2, 0x54, 0xbe, 0xa2, 0xc7, 0xf4, 0x43, 0xa5, 0x96,
0x25, 0x4a, 0xf6, 0xa8, 0x24, 0xd1, 0x92, 0x65, 0x59, 0xd7, 0xd7, 0x97, 0x43, 0x52, 0x12, 0x7d,
0xaf, 0x1e, 0x21, 0x29, 0x3b, 0xb6, 0x93, 0x34, 0x8a, 0x33, 0x35, 0x64, 0x43, 0x3d, 0xdd, 0x93,
0xee, 0x1e, 0x91, 0xe3, 0xd8, 0x86, 0xe1, 0x2c, 0xe2, 0x45, 0xb2, 0x4b, 0x82, 0xbc, 0x80, 0x6c,
0xb2, 0x08, 0x02, 0x78, 0x99, 0x4d, 0x90, 0x3f, 0x10, 0x20, 0x9b, 0xfc, 0x83, 0x00, 0x59, 0x65,
0x91, 0x45, 0xfe, 0x40, 0x90, 0x73, 0x4e, 0x55, 0x3f, 0xe6, 0xc1, 0x97, 0x1f, 0x01, 0x04, 0x81,
0x53, 0x55, 0xe7, 0xd4, 0xa9, 0xf3, 0xfc, 0xce, 0x69, 0x76, 0x2e, 0x4e, 0xb4, 0x6a, 0xb5, 0x74,
0x1c, 0xab, 0x4d, 0x1d, 0xbb, 0x75, 0x3f, 0xec, 0x34, 0x24, 0xad, 0xd5, 0x7d, 0x4f, 0x07, 0x89,
0x6c, 0x47, 0x61, 0x12, 0xce, 0x56, 0x7b, 0x8f, 0x75, 0x02, 0xaf, 0xe9, 0xe9, 0x86, 0xbb, 0xa1,
0x62, 0x3d, 0x78, 0xda, 0x69, 0x30, 0x67, 0x71, 0x11, 0x39, 0xb9, 0x77, 0x74, 0xf2, 0xa8, 0xed,
0x87, 0xaa, 0xb1, 0xa6, 0xa3, 0x27, 0x3a, 0x5a, 0x09, 0x9a, 0xa1, 0xbb, 0xaa, 0xbf, 0xdb, 0xd1,
0x71, 0xc2, 0xff, 0x87, 0x95, 0x55, 0xbb, 0xed, 0x35, 0x2a, 0x25, 0x51, 0xba, 0x30, 0x55, 0xbb,
0xfc, 0xe9, 0xef, 0x2b, 0x2f, 0x2f, 0xb4, 0xdb, 0x62, 0x65, 0x49, 0x24, 0xa1, 0xd8, 0xde, 0xf2,
0xea, 0x5b, 0x42, 0x89, 0xa6, 0xe7, 0x6b, 0xb1, 0xed, 0xf9, 0xbe, 0xd8, 0xd0, 0xa2, 0x43, 0xbc,
0x74, 0x03, 0x0e, 0x48, 0xe7, 0x26, 0x3b, 0xbb, 0xe7, 0x2d, 0x71, 0x3b, 0x0c, 0x62, 0xcd, 0x39,
0x63, 0x31, 0x2d, 0xbb, 0x9d, 0xc8, 0xa7, 0xbb, 0x26, 0x9c, 0x1f, 0x8f, 0xb1, 0x17, 0x2c, 0x6d,
0x4d, 0x6f, 0x7a, 0xc1, 0xdd, 0xf5, 0xf5, 0x87, 0x86, 0x43, 0x26, 0xdd, 0x9b, 0xbd, 0xd2, 0x5d,
0x01, 0xe9, 0xaa, 0x56, 0xba, 0x66, 0x18, 0x59, 0xf1, 0x92, 0x2d, 0x6d, 0x04, 0xf4, 0x62, 0x10,
0xcf, 0x0b, 0x36, 0x33, 0x09, 0x25, 0x7f, 0x85, 0x4d, 0xe0, 0x96, 0x1b, 0x7b, 0x1f, 0xe8, 0xca,
0x11, 0x62, 0x22, 0x80, 0xc9, 0x73, 0x0f, 0x22, 0x0f, 0x6e, 0x54, 0xbe, 0x21, 0xc4, 0x5d, 0xe1,
0x05, 0x62, 0xa3, 0x9b, 0xe8, 0x58, 0xf2, 0x37, 0xd8, 0x38, 0x2e, 0x07, 0xaa, 0xa5, 0x2b, 0x23,
0x28, 0x6a, 0xed, 0x65, 0xa0, 0x99, 0xbb, 0x0f, 0xbf, 0x45, 0xd8, 0xcc, 0xef, 0x03, 0x05, 0xc5,
0x49, 0x18, 0x11, 0x29, 0x2e, 0x1a, 0xbb, 0xf1, 0xb7, 0x0d, 0xb9, 0x1b, 0x6f, 0xa9, 0xca, 0x28,
0x91, 0x2f, 0x01, 0xf9, 0xff, 0xde, 0xd5, 0x3b, 0x70, 0x3c, 0x42, 0xf9, 0x2e, 0x5c, 0xbb, 0x22,
0x1a, 0x20, 0x40, 0x12, 0x5f, 0x14, 0x91, 0x6e, 0x47, 0x3a, 0x06, 0xb3, 0xe1, 0x06, 0x72, 0x59,
0xbb, 0xbb, 0x70, 0x15, 0x77, 0xe1, 0xfd, 0xc5, 0xdb, 0x24, 0xff, 0x16, 0x9b, 0xf0, 0x62, 0xb7,
0xdd, 0xd9, 0xf0, 0xbd, 0x7a, 0xa5, 0x0c, 0x8c, 0xc7, 0x6b, 0x2b, 0xc0, 0x78, 0x79, 0x3d, 0xea,
0x80, 0x08, 0x05, 0xb9, 0xe2, 0xad, 0xb0, 0xe3, 0x37, 0xd0, 0x54, 0x2d, 0x15, 0x3d, 0x06, 0x43,
0x19, 0x1a, 0x11, 0x1a, 0x31, 0x1f, 0xdd, 0x5e, 0xab, 0x8a, 0xa6, 0xf2, 0x63, 0x78, 0x0d, 0xfc,
0x8e, 0xb6, 0x3d, 0xf0, 0x1f, 0xfe, 0x01, 0x3b, 0xd9, 0xf6, 0x55, 0x02, 0x6a, 0x6d, 0xc5, 0x6e,
0x12, 0xba, 0x71, 0x37, 0xa8, 0x57, 0xc6, 0xc4, 0x08, 0x88, 0xef, 0xc2, 0x2d, 0xef, 0x2f, 0x44,
0x91, 0xea, 0xa2, 0x40, 0xf6, 0x0d, 0x71, 0x5b, 0xd7, 0xbd, 0x66, 0x17, 0xff, 0x34, 0x66, 0xc8,
0xa8, 0x49, 0x2f, 0x40, 0x7d, 0x4b, 0x3c, 0x51, 0x3e, 0x88, 0x46, 0xff, 0xc7, 0xaf, 0x0b, 0xe5,
0xfb, 0x55, 0x70, 0xa2, 0xa0, 0x11, 0x6e, 0xc7, 0x55, 0x11, 0xc6, 0x3b, 0x55, 0xe1, 0x7b, 0x41,
0x67, 0x47, 0xf2, 0x88, 0x9d, 0x8a, 0x8c, 0xc5, 0xdd, 0x2d, 0x0d, 0x86, 0x8b, 0x62, 0x17, 0x95,
0x1f, 0x57, 0x8e, 0xd2, 0xfd, 0x6b, 0x70, 0xff, 0x03, 0xd4, 0x7e, 0x4c, 0x56, 0xb7, 0x47, 0x44,
0x37, 0xec, 0xcc, 0x81, 0x47, 0x6e, 0xab, 0x20, 0xa1, 0x2b, 0x75, 0x82, 0x2f, 0x84, 0xd5, 0xc8,
0x3a, 0x80, 0xb0, 0x4c, 0xa5, 0xb8, 0x07, 0xa2, 0x83, 0x3a, 0x7c, 0xdd, 0x4c, 0xc4, 0x86, 0xaf,
0x82, 0xc7, 0x92, 0xff, 0xb4, 0xc4, 0x66, 0xfa, 0x2f, 0x35, 0x92, 0x56, 0xc6, 0xe9, 0xd6, 0x27,
0x70, 0x6b, 0xf4, 0x36, 0xad, 0x7c, 0xd1, 0x6b, 0xd7, 0x41, 0xdb, 0x41, 0xa7, 0xb5, 0xa1, 0x23,
0x54, 0x1c, 0x3d, 0x49, 0xb4, 0x3a, 0x60, 0x57, 0x38, 0x00, 0xbe, 0x97, 0xf4, 0x6c, 0x9b, 0xcb,
0xa5, 0xf3, 0xb3, 0x51, 0x76, 0x7a, 0xd7, 0xb0, 0xb0, 0xe1, 0x74, 0x99, 0x95, 0x3b, 0x9b, 0x75,
0x1b, 0x17, 0x63, 0xc6, 0xa5, 0x1f, 0xdd, 0x59, 0xc4, 0xb8, 0xb0, 0x2e, 0x93, 0x05, 0xa9, 0xf1,
0x9d, 0x2b, 0x6c, 0x22, 0xf1, 0xe0, 0xfa, 0x44, 0xb5, 0xda, 0x14, 0x07, 0x47, 0x6b, 0xcf, 0x03,
0xd1, 0x33, 0x26, 0x56, 0x45, 0xb6, 0x87, 0xe4, 0x86, 0xe2, 0x9b, 0x6c, 0x1c, 0x42, 0xd5, 0xdd,
0x0a, 0xe3, 0xc4, 0x06, 0xc1, 0x6d, 0x20, 0xa8, 0xdd, 0x85, 0xdf, 0xf4, 0x12, 0x72, 0x05, 0x4b,
0x9d, 0x26, 0x8a, 0x3e, 0xef, 0xcb, 0x64, 0x78, 0xe2, 0x29, 0x81, 0xcf, 0x10, 0x0f, 0x1f, 0xad,
0x4b, 0xfe, 0xc0, 0x70, 0x6e, 0xab, 0x64, 0xcb, 0xc6, 0xc7, 0x1b, 0xc0, 0xf9, 0xe6, 0xaa, 0x06,
0x07, 0xf2, 0x9e, 0x68, 0x81, 0x1b, 0xa8, 0xd2, 0x03, 0x72, 0x97, 0x90, 0xc3, 0x26, 0x3a, 0xb1,
0x76, 0xb7, 0x92, 0xa4, 0x1d, 0xdb, 0xc0, 0xa0, 0x80, 0x5d, 0x01, 0x55, 0x40, 0x6c, 0x54, 0x05,
0xec, 0x0a, 0xda, 0xad, 0xe6, 0x1e, 0x9f, 0x2d, 0x4a, 0xfe, 0x3d, 0x36, 0xdd, 0xe7, 0x09, 0xe4,
0xf8, 0x93, 0xf3, 0x55, 0xb9, 0x8f, 0x21, 0x24, 0xae, 0xdd, 0x35, 0x34, 0xb5, 0x6b, 0x70, 0xe7,
0x15, 0x74, 0xd3, 0x4b, 0xc6, 0xef, 0xdb, 0xca, 0x8b, 0x28, 0x18, 0x40, 0x58, 0x0c, 0x70, 0x4c,
0x13, 0xa9, 0x16, 0x32, 0x1f, 0x99, 0x7d, 0x89, 0x4d, 0x16, 0x98, 0xf0, 0x63, 0x6c, 0x94, 0xf2,
0x0e, 0xa5, 0x48, 0x3e, 0xc5, 0xca, 0xc4, 0x8b, 0x4c, 0x36, 0xe1, 0x7c, 0x9e, 0xbb, 0xc6, 0x62,
0xd8, 0x6a, 0x79, 0xc9, 0x90, 0x94, 0xf9, 0x9b, 0x12, 0xe3, 0x49, 0xa4, 0x82, 0xb8, 0x09, 0xc9,
0x36, 0xee, 0xd4, 0xeb, 0x5a, 0x83, 0x92, 0x88, 0xdf, 0x78, 0xed, 0x07, 0x25, 0x90, 0xf1, 0xd3,
0x52, 0x31, 0x63, 0x64, 0x12, 0x81, 0xa0, 0xb9, 0xe3, 0x88, 0x47, 0xab, 0xff, 0x2f, 0x32, 0x6a,
0x71, 0x01, 0x7f, 0x42, 0x59, 0x79, 0xe2, 0xe1, 0x2f, 0x78, 0x47, 0x64, 0x15, 0x80, 0x54, 0x24,
0x90, 0xec, 0x53, 0xd1, 0xc5, 0x34, 0xc5, 0xc0, 0x35, 0x50, 0x3f, 0x94, 0xe7, 0x77, 0x20, 0x51,
0x86, 0xf5, 0x7a, 0x27, 0x8a, 0xd0, 0x66, 0x3b, 0x69, 0x66, 0x37, 0x49, 0xd9, 0x03, 0xb9, 0xf4,
0x61, 0x32, 0xbb, 0xb8, 0x87, 0x71, 0xd4, 0x52, 0x89, 0x3d, 0xa6, 0x0c, 0x6d, 0x26, 0xe3, 0x6e,
0x72, 0x49, 0xfe, 0x93, 0x52, 0x21, 0x3f, 0x1b, 0xcf, 0xfe, 0x14, 0xd5, 0xf2, 0xf1, 0x97, 0x4d,
0xd0, 0xfd, 0x22, 0x15, 0xcf, 0x1d, 0x40, 0xae, 0x6f, 0x14, 0xaa, 0x8e, 0x09, 0x8b, 0x37, 0x41,
0xaa, 0x5b, 0xb7, 0xed, 0x9a, 0x50, 0xb1, 0xcd, 0xb9, 0x9e, 0x31, 0x01, 0x5e, 0x31, 0x94, 0x55,
0xe6, 0x5b, 0xce, 0x47, 0x4c, 0xec, 0xee, 0x2e, 0x36, 0x95, 0xbc, 0xcb, 0x8e, 0x93, 0x36, 0xea,
0x74, 0x22, 0xc9, 0x5c, 0x65, 0x01, 0x2e, 0x7f, 0x63, 0xa0, 0xb4, 0x6c, 0xa3, 0x14, 0xe8, 0x16,
0x71, 0xdc, 0xec, 0xf8, 0x7e, 0x57, 0x64, 0x64, 0x83, 0x25, 0xc5, 0xf9, 0x61, 0x89, 0x3d, 0x9f,
0x83, 0x03, 0x7c, 0xc8, 0x92, 0x4e, 0xc0, 0x13, 0xe2, 0xcc, 0x59, 0x6f, 0x15, 0xf3, 0xd8, 0x68,
0xad, 0x0a, 0x77, 0x5e, 0xc8, 0x73, 0x18, 0x91, 0x66, 0xa5, 0x76, 0x13, 0x12, 0x6d, 0xc3, 0xd0,
0xa3, 0x8b, 0x48, 0x2e, 0x7b, 0x5d, 0xe8, 0x34, 0x10, 0x3f, 0x9b, 0x42, 0x97, 0x54, 0xde, 0x0d,
0xed, 0x87, 0xc1, 0x66, 0x4c, 0x50, 0xe5, 0x47, 0x25, 0x36, 0x6d, 0xc5, 0x79, 0x04, 0xb9, 0x05,
0xe5, 0xc1, 0x00, 0x2b, 0x00, 0x0c, 0xfc, 0x69, 0xe4, 0x41, 0x96, 0xa3, 0xfc, 0x44, 0x3f, 0x10,
0xe0, 0x27, 0x8b, 0x79, 0x74, 0x94, 0x0e, 0x9d, 0x2c, 0x42, 0x8c, 0x32, 0xb1, 0x99, 0x64, 0x23,
0x08, 0x73, 0xc6, 0x88, 0xe4, 0x69, 0x36, 0x4d, 0xe0, 0xcc, 0x6b, 0xb8, 0xf5, 0x48, 0x2b, 0x00,
0x0c, 0x50, 0xd6, 0x20, 0x6b, 0x3b, 0x8b, 0x19, 0xfc, 0x19, 0xd0, 0x8e, 0xb5, 0xcd, 0x19, 0x76,
0xd4, 0xbe, 0x98, 0xe4, 0x9b, 0x9c, 0x3f, 0x21, 0xfb, 0x1e, 0xe0, 0xfc, 0x7d, 0x84, 0x9d, 0xb1,
0x6b, 0xcb, 0x50, 0x4b, 0x74, 0xa4, 0x12, 0x9d, 0x6e, 0xe6, 0x7a, 0xbe, 0xd6, 0x8b, 0xa3, 0xce,
0x81, 0xaa, 0xce, 0xe4, 0x28, 0x4f, 0xa7, 0x84, 0x99, 0xde, 0x62, 0x30, 0x81, 0xe4, 0xbf, 0x2c,
0xb1, 0x13, 0x7a, 0x27, 0xd1, 0x01, 0x38, 0xae, 0x9b, 0x0a, 0x72, 0x84, 0xbc, 0xe3, 0x13, 0x8c,
0x98, 0x0f, 0x2f, 0x3c, 0x68, 0x27, 0x5e, 0x08, 0x30, 0xea, 0xa2, 0x80, 0x27, 0x88, 0xf4, 0x6c,
0x66, 0xa6, 0x0d, 0x55, 0x7f, 0x9c, 0xa2, 0x0e, 0xc3, 0xb6, 0x19, 0x76, 0x02, 0x08, 0xde, 0x25,
0xdd, 0x54, 0x1d, 0x3f, 0xa1, 0xec, 0x18, 0x06, 0xe0, 0x46, 0x91, 0x4e, 0x3a, 0x51, 0x80, 0xf1,
0x91, 0xc6, 0x72, 0x43, 0xa8, 0x00, 0xd2, 0x10, 0x16, 0xb5, 0x46, 0x31, 0xcc, 0x52, 0x1e, 0xfc,
0x43, 0x56, 0xae, 0xc3, 0x5f, 0xa6, 0x3a, 0x4d, 0xd5, 0x5a, 0x20, 0x90, 0x57, 0x10, 0xe8, 0x9e,
0xda, 0xf1, 0x5a, 0x9d, 0x56, 0xa1, 0xc0, 0x42, 0x14, 0xa7, 0x77, 0x9a, 0xeb, 0x8c, 0x68, 0x90,
0x5b, 0xea, 0x00, 0x4d, 0x7a, 0x85, 0x52, 0x10, 0xc7, 0x86, 0x1e, 0x08, 0xaf, 0x5f, 0xb9, 0x62,
0xaf, 0x4e, 0xc5, 0x44, 0xc8, 0x32, 0x09, 0x4e, 0x10, 0x25, 0x2e, 0xe0, 0x19, 0xbd, 0x43, 0xae,
0x30, 0x55, 0xfb, 0x36, 0xc8, 0xf0, 0x6e, 0x41, 0x86, 0x35, 0x3c, 0x81, 0x69, 0x83, 0x0e, 0x99,
0x52, 0x00, 0xa1, 0x9a, 0x29, 0x1c, 0x8e, 0x09, 0x95, 0xf4, 0xde, 0x8c, 0xef, 0xa4, 0x53, 0x01,
0x12, 0xda, 0x87, 0xfb, 0x1e, 0x86, 0xf3, 0x7b, 0x19, 0xa2, 0x1f, 0x6a, 0x6a, 0xeb, 0x34, 0xa7,
0x59, 0x99, 0x84, 0x05, 0x5b, 0x8f, 0x0c, 0x73, 0x19, 0xfe, 0x14, 0x9b, 0x4c, 0xc2, 0x44, 0xf9,
0xae, 0x39, 0x46, 0xd1, 0xe3, 0xbc, 0xcb, 0x4e, 0xd9, 0x73, 0x4b, 0xda, 0xd7, 0x89, 0xce, 0x5c,
0xa7, 0x18, 0x03, 0xa6, 0x28, 0x1d, 0x36, 0xee, 0x2a, 0x6c, 0xa6, 0x9f, 0xb5, 0x11, 0xd5, 0x99,
0x63, 0xe7, 0xf2, 0x08, 0x58, 0xa4, 0xe6, 0x65, 0x39, 0xa8, 0x47, 0x5d, 0x52, 0xe0, 0xff, 0xe9,
0x6e, 0x2a, 0x84, 0x13, 0xb0, 0xf3, 0xfb, 0x1d, 0xb4, 0xaf, 0x9f, 0x63, 0x23, 0x8f, 0x75, 0x97,
0x24, 0x3d, 0x56, 0x9b, 0x05, 0xd1, 0x66, 0x16, 0x96, 0xd7, 0x2e, 0xcd, 0x5f, 0x7f, 0x15, 0x94,
0x9e, 0x12, 0x08, 0x38, 0xc1, 0x9f, 0x65, 0x23, 0xf5, 0xa8, 0x4e, 0x6f, 0x28, 0xd7, 0x8e, 0xc3,
0x41, 0xb6, 0xb8, 0xba, 0x88, 0xfa, 0x86, 0x4d, 0xe7, 0x77, 0x79, 0xe6, 0x5a, 0x5c, 0xba, 0xbf,
0xaa, 0xdb, 0x21, 0x58, 0xfa, 0x7e, 0x98, 0x40, 0xf2, 0xad, 0x93, 0xd9, 0xf8, 0x34, 0x3b, 0x6a,
0xa3, 0xda, 0x60, 0xb0, 0x34, 0xe6, 0xa9, 0x50, 0xd3, 0xae, 0xc9, 0x92, 0xe4, 0x9d, 0xe3, 0xbc,
0xc2, 0x4e, 0x20, 0xd6, 0x70, 0xc1, 0x67, 0x92, 0x0e, 0x74, 0x78, 0x61, 0xc3, 0x24, 0xf9, 0x29,
0x3e, 0xc3, 0x8e, 0xeb, 0x1d, 0xc8, 0xeb, 0x09, 0x76, 0x72, 0xd8, 0x7f, 0x50, 0x0e, 0x19, 0xc5,
0xf5, 0x48, 0xd7, 0x35, 0x00, 0xa2, 0x74, 0x7d, 0x2c, 0xcd, 0x49, 0x8d, 0x8e, 0xf1, 0x1d, 0xca,
0x23, 0x53, 0xce, 0x5f, 0x4b, 0xec, 0x6a, 0xea, 0x17, 0x10, 0x81, 0x11, 0xb8, 0xde, 0x1a, 0x64,
0x19, 0xe8, 0x11, 0xd7, 0x2d, 0x0e, 0x18, 0xf6, 0x00, 0x00, 0x1a, 0x84, 0xed, 0x8c, 0x4d, 0xe1,
0x17, 0xe1, 0xb1, 0x23, 0x69, 0x96, 0x83, 0x4e, 0xc3, 0xd4, 0x5a, 0xfb, 0x80, 0xc2, 0x8b, 0x46,
0x77, 0x7d, 0x51, 0x39, 0x7d, 0x11, 0x09, 0xec, 0xa6, 0xef, 0xb2, 0x92, 0xff, 0x17, 0x3b, 0x66,
0xd6, 0x55, 0x3d, 0x01, 0xf8, 0x4b, 0xd2, 0x8f, 0xa2, 0x37, 0xa6, 0xef, 0x71, 0x5b, 0x88, 0xbd,
0x91, 0xc5, 0x71, 0x36, 0x56, 0xd7, 0xbe, 0x0f, 0xca, 0x9d, 0xa0, 0x27, 0xfe, 0xb1, 0xcc, 0x5e,
0x4c, 0xed, 0x41, 0xd6, 0xa7, 0x92, 0x87, 0xde, 0xfc, 0x55, 0x37, 0x8c, 0x4b, 0x83, 0x0d, 0xe3,
0x55, 0x60, 0x72, 0x29, 0xef, 0x13, 0xa1, 0x02, 0x12, 0xbe, 0x32, 0x65, 0x8f, 0xb2, 0x14, 0x75,
0x81, 0x54, 0x94, 0x4d, 0x41, 0xe6, 0xf7, 0xd9, 0x54, 0xa4, 0xb6, 0xdd, 0x9c, 0x93, 0xc9, 0x51,
0x37, 0x80, 0xd3, 0x2b, 0x39, 0xa7, 0x0d, 0xdd, 0xc4, 0xee, 0x51, 0x05, 0x54, 0x46, 0x11, 0x65,
0xc4, 0x94, 0x11, 0x82, 0xc6, 0x65, 0x90, 0x35, 0xf7, 0x57, 0xc9, 0x2f, 0xf4, 0xb5, 0x94, 0xc7,
0x6a, 0x33, 0xc0, 0x8a, 0x03, 0xc2, 0xb8, 0x74, 0x95, 0x52, 0x9b, 0xda, 0xb6, 0xb0, 0xfd, 0x25,
0xc6, 0xb0, 0x40, 0xb9, 0xa6, 0x42, 0x91, 0x2b, 0x99, 0xb3, 0xeb, 0x83, 0x10, 0xbf, 0xd8, 0xe7,
0x8e, 0x1d, 0xbe, 0xcf, 0x3d, 0x37, 0xac, 0x63, 0x24, 0x97, 0x7c, 0x9d, 0x5d, 0x9b, 0xbf, 0x79,
0xed, 0xe6, 0xab, 0x37, 0xe6, 0x6f, 0x5e, 0xe7, 0xb7, 0xd9, 0x51, 0xb4, 0xa5, 0x9b, 0x1a, 0xb3,
0x76, 0x1d, 0x2e, 0xb9, 0x6a, 0xcc, 0x38, 0x07, 0xb9, 0x17, 0xf6, 0xd0, 0x3c, 0x31, 0xc0, 0x7c,
0x60, 0xad, 0x02, 0xd1, 0xf6, 0xa0, 0x6a, 0xc4, 0xc6, 0x83, 0x85, 0x1f, 0x1a, 0x7f, 0x45, 0x7c,
0x34, 0x09, 0xbb, 0xae, 0x55, 0x4b, 0x85, 0x51, 0x1d, 0xfa, 0x6f, 0xe0, 0xf5, 0x9a, 0x97, 0xe2,
0x7c, 0x33, 0xff, 0x20, 0x26, 0xf6, 0x58, 0x31, 0x23, 0x91, 0xb2, 0x8d, 0xa5, 0x29, 0x27, 0x27,
0xbc, 0xc9, 0x8e, 0x83, 0x9f, 0x83, 0x52, 0xc1, 0x7a, 0x64, 0xac, 0xca, 0x24, 0x71, 0xbd, 0x0f,
0x5c, 0xdf, 0xca, 0xb8, 0x52, 0x89, 0x80, 0x7f, 0x9b, 0x21, 0x21, 0x40, 0xc2, 0xf3, 0x58, 0x97,
0xc0, 0x46, 0x4a, 0xc4, 0x50, 0xd3, 0x75, 0x00, 0x5d, 0x49, 0x82, 0xbf, 0xe3, 0xb0, 0x65, 0x11,
0x90, 0x30, 0x5c, 0xe9, 0x6e, 0xe7, 0x9f, 0x63, 0x50, 0xa4, 0x49, 0x36, 0xf2, 0x8f, 0xdc, 0x6f,
0x6b, 0xf0, 0xbc, 0xc7, 0xb6, 0xec, 0xf7, 0x74, 0x5c, 0xa5, 0xaf, 0xad, 0xe3, 0x3a, 0xf2, 0x95,
0x77, 0x5c, 0x23, 0x87, 0xef, 0xb8, 0x6e, 0xb1, 0x49, 0x4a, 0x1e, 0x2d, 0x9d, 0x6c, 0x85, 0x0d,
0x72, 0xe9, 0x72, 0xed, 0x3c, 0x70, 0x70, 0x96, 0x51, 0xea, 0x7b, 0xb4, 0x8c, 0x72, 0x20, 0x09,
0x06, 0x2e, 0xd9, 0x60, 0x03, 0xb5, 0x25, 0xf9, 0x47, 0x83, 0xed, 0x5a, 0x99, 0x4a, 0x9d, 0x94,
0xfb, 0x2a, 0xf9, 0xcb, 0x37, 0x6c, 0xfc, 0x35, 0x48, 0x63, 0xc8, 0xd1, 0x0d, 0x9b, 0x4d, 0x68,
0xfe, 0x4d, 0x72, 0xab, 0x39, 0xc0, 0xeb, 0x05, 0xb3, 0x92, 0x06, 0x98, 0x91, 0x97, 0x5e, 0x41,
0x72, 0xf0, 0x56, 0x4a, 0x09, 0x31, 0xb7, 0x09, 0xa6, 0xa0, 0x58, 0xa9, 0xbd, 0x03, 0x94, 0x6b,
0x66, 0x65, 0x37, 0x4a, 0x71, 0x09, 0x41, 0xf8, 0x07, 0x3a, 0x0a, 0xab, 0x22, 0x08, 0x41, 0xce,
0xa8, 0xa7, 0xf3, 0x40, 0xe7, 0xcc, 0xd7, 0x52, 0x45, 0x71, 0x97, 0x71, 0xc8, 0xc0, 0xbe, 0x57,
0xf7, 0x12, 0x77, 0x23, 0x6c, 0x74, 0xdd, 0x86, 0x4a, 0x14, 0x25, 0xd8, 0x63, 0xb5, 0x45, 0xb8,
0xf4, 0xcd, 0x74, 0x57, 0xe0, 0xae, 0xc0, 0x5d, 0xab, 0xf2, 0x2a, 0xbc, 0x1c, 0xab, 0x5b, 0x23,
0x13, 0x08, 0x37, 0xab, 0x7d, 0x96, 0xe0, 0x21, 0x9b, 0x6e, 0xa9, 0x2e, 0xb8, 0x55, 0x04, 0xf8,
0x49, 0xfb, 0x98, 0xe7, 0x26, 0xc8, 0x17, 0xde, 0x06, 0xee, 0xab, 0xbd, 0xf1, 0x63, 0xd5, 0x07,
0xb0, 0x8a, 0x26, 0x31, 0x8d, 0x30, 0xa0, 0x74, 0x92, 0xd2, 0x8a, 0x6d, 0x0f, 0x9f, 0x6f, 0x22,
0xc7, 0x6b, 0x79, 0xbe, 0x8a, 0xfc, 0xee, 0x25, 0x3b, 0xbe, 0xb2, 0xb4, 0xf1, 0xa1, 0x7a, 0xe5,
0x7f, 0x94, 0x32, 0x70, 0xb1, 0x5b, 0xc9, 0xb0, 0x90, 0xe1, 0x7d, 0x76, 0xcc, 0x66, 0x0b, 0x93,
0x03, 0x4c, 0xff, 0xb3, 0x0c, 0x6f, 0x58, 0x58, 0xc9, 0xdf, 0x30, 0x30, 0x5b, 0xb3, 0x34, 0x20,
0xdf, 0x46, 0xd7, 0xa6, 0x45, 0xca, 0x3e, 0x3d, 0x89, 0x86, 0x6f, 0x42, 0x31, 0x24, 0x9b, 0xa7,
0x8f, 0x00, 0xf1, 0xd0, 0x57, 0x9d, 0xfd, 0x7d, 0xd5, 0x84, 0x14, 0x39, 0x60, 0x4a, 0x8c, 0xf6,
0x69, 0xa9, 0xc7, 0x94, 0x92, 0xdb, 0x3a, 0xc2, 0xd4, 0x6b, 0x2f, 0x72, 0xfe, 0x34, 0xd2, 0xf7,
0x5e, 0xd3, 0xf2, 0x0d, 0xa9, 0x91, 0x6a, 0x8f, 0x01, 0x01, 0xbd, 0x3a, 0xed, 0xfa, 0x14, 0xce,
0x7b, 0xc9, 0x13, 0xcd, 0x1d, 0x71, 0x3e, 0x11, 0x28, 0x76, 0xf7, 0x41, 0xd7, 0x3a, 0x63, 0x8b,
0xfa, 0xfc, 0xff, 0x7c, 0x77, 0x9f, 0xbf, 0x51, 0xf2, 0x76, 0x5f, 0x73, 0x7f, 0xac, 0xf6, 0x1d,
0xb8, 0xfc, 0xbd, 0x21, 0x3d, 0x7b, 0x56, 0x33, 0xbf, 0x40, 0xdf, 0x5e, 0xbc, 0xf1, 0x4b, 0xf6,
0xed, 0x39, 0xab, 0xbc, 0x6f, 0xff, 0x7e, 0x29, 0xc3, 0xbb, 0xbb, 0xda, 0xf2, 0xeb, 0x6f, 0xdf,
0x3f, 0x29, 0x65, 0xad, 0xa5, 0x91, 0x82, 0x7a, 0xd4, 0x70, 0x3b, 0xe8, 0xf1, 0x26, 0xd9, 0x8b,
0xb8, 0x86, 0x76, 0x03, 0x79, 0x7e, 0x92, 0xfc, 0xe5, 0x82, 0xba, 0x4c, 0x2d, 0x7a, 0x06, 0x48,
0x4e, 0x65, 0xea, 0x2a, 0x4e, 0x54, 0x9c, 0x7f, 0x95, 0xb3, 0x96, 0x67, 0xa8, 0x08, 0x56, 0x09,
0xf3, 0xbd, 0x32, 0x9c, 0x05, 0x86, 0xa7, 0x41, 0x06, 0xdf, 0x62, 0xdd, 0x61, 0x6d, 0x09, 0xbf,
0x33, 0x08, 0xf4, 0xa8, 0x1e, 0x1c, 0x10, 0xe8, 0x65, 0x56, 0x04, 0x46, 0x43, 0xb1, 0x1e, 0x41,
0xcf, 0x9c, 0xd9, 0xf6, 0x96, 0x0e, 0xa0, 0x2f, 0x4e, 0x71, 0x9e, 0xe1, 0x87, 0x30, 0x0f, 0xd6,
0x4c, 0x1a, 0x81, 0x6e, 0x7f, 0x1c, 0xbc, 0xd6, 0xe4, 0x20, 0x03, 0xf2, 0xa6, 0x81, 0xc7, 0x24,
0xb8, 0x63, 0x9a, 0x86, 0xf9, 0xc5, 0x21, 0xe8, 0xee, 0x14, 0x1c, 0x3a, 0x39, 0x80, 0xee, 0xf8,
0x5b, 0x8c, 0x7b, 0x04, 0xc1, 0x4d, 0x01, 0x68, 0x50, 0xeb, 0x45, 0xc5, 0x6a, 0xbc, 0x26, 0x81,
0xe4, 0xa5, 0xdc, 0x39, 0x0c, 0xbc, 0x41, 0xd0, 0x64, 0x4f, 0x83, 0x63, 0x98, 0xf3, 0x06, 0xbf,
0xf0, 0xcb, 0x05, 0x64, 0x72, 0x94, 0x6c, 0x46, 0xc3, 0x63, 0x42, 0x26, 0x10, 0x18, 0x77, 0x96,
0xd7, 0x73, 0x15, 0x37, 0xa3, 0xb0, 0xd5, 0x03, 0x38, 0xc6, 0x73, 0xc0, 0xf1, 0xd0, 0xe2, 0x8c,
0x64, 0x4b, 0x25, 0x62, 0xcb, 0x52, 0xdb, 0x7a, 0x53, 0xf7, 0x3b, 0x04, 0xcb, 0x68, 0xd2, 0x08,
0x55, 0x01, 0xa0, 0x01, 0x4e, 0xdb, 0x4d, 0x82, 0xe1, 0x37, 0x8a, 0x80, 0xc3, 0x14, 0x99, 0x17,
0x81, 0xa3, 0x58, 0x41, 0x48, 0x94, 0x18, 0xbc, 0x81, 0x99, 0x72, 0xad, 0x2a, 0xb4, 0x6f, 0xa1,
0x06, 0xfe, 0xe6, 0x1f, 0x0f, 0x82, 0x05, 0x46, 0x09, 0xf8, 0xb2, 0xdc, 0xdf, 0xb1, 0xbe, 0x18,
0x5a, 0x40, 0x75, 0x64, 0x68, 0x01, 0x5a, 0xa9, 0xac, 0x50, 0x18, 0x74, 0x79, 0xa8, 0x2a, 0xf6,
0xb7, 0x52, 0x3e, 0xf1, 0x25, 0x39, 0x4d, 0x0b, 0x8d, 0xd2, 0x1e, 0xe4, 0x13, 0xde, 0x5e, 0xc9,
0xd6, 0x5a, 0x58, 0x42, 0xcb, 0xdc, 0x1f, 0x91, 0xe4, 0x52, 0xc5, 0x88, 0x34, 0xfd, 0xc2, 0x3b,
0x43, 0x5d, 0xca, 0xc0, 0xbf, 0x5b, 0x40, 0x72, 0x63, 0xa5, 0x1f, 0x32, 0x2b, 0x31, 0x67, 0x4e,
0xcd, 0xdd, 0x42, 0x4b, 0x52, 0x8a, 0x01, 0x63, 0x27, 0x76, 0x0f, 0xc4, 0xdb, 0xd4, 0xc9, 0x9c,
0xe3, 0xe4, 0x73, 0xca, 0xc1, 0x47, 0x1a, 0x53, 0xcc, 0x7f, 0x76, 0x82, 0x95, 0x4d, 0xc0, 0xfd,
0xaa, 0xc4, 0x9e, 0x1a, 0xf2, 0xb1, 0x91, 0x9f, 0x95, 0xfb, 0x7f, 0xef, 0x9c, 0x7d, 0x51, 0x1e,
0xe0, 0x73, 0xa5, 0xf3, 0x3a, 0xbc, 0xe6, 0xd5, 0x55, 0x1a, 0xf6, 0xc4, 0xe6, 0x9b, 0x19, 0x78,
0xa5, 0xcd, 0x4c, 0x50, 0x12, 0xa0, 0xf4, 0x9a, 0x26, 0x28, 0x45, 0xcc, 0x4d, 0xea, 0x05, 0xc0,
0xe9, 0x22, 0xc9, 0x7f, 0x7b, 0x84, 0x4d, 0xf7, 0x4d, 0x64, 0xf9, 0x69, 0xb9, 0xf7, 0x87, 0xce,
0x59, 0xb1, 0xdf, 0x97, 0x06, 0xe7, 0x2f, 0x38, 0x71, 0xfb, 0x73, 0x89, 0xf6, 0xe3, 0x54, 0x10,
0x4c, 0xe4, 0x28, 0x57, 0xde, 0xd5, 0xa8, 0xac, 0x65, 0x5b, 0xc3, 0xf1, 0x04, 0xcd, 0xe4, 0x70,
0x22, 0x90, 0x35, 0x54, 0x28, 0xb1, 0x07, 0x74, 0x52, 0xdc, 0x3e, 0x40, 0xef, 0x90, 0x4e, 0xa4,
0xb2, 0xf9, 0x1c, 0x28, 0xa2, 0x2a, 0x54, 0x13, 0x98, 0x16, 0x1c, 0xcb, 0xa2, 0x54, 0xfa, 0xb4,
0xb5, 0x81, 0x7e, 0x06, 0x17, 0x42, 0xd2, 0x23, 0x64, 0xa4, 0x68, 0xba, 0x46, 0xf5, 0xb3, 0x6f,
0x06, 0x2d, 0xf9, 0xe7, 0x25, 0x76, 0xa2, 0x7f, 0x95, 0x67, 0xaa, 0xd8, 0xed, 0x13, 0xc7, 0xec,
0x19, 0xb9, 0xdf, 0x54, 0xdb, 0x59, 0x07, 0x65, 0x3d, 0x34, 0xdb, 0x71, 0xaa, 0x13, 0x2b, 0xa5,
0x17, 0x78, 0x89, 0xa7, 0x2c, 0x6e, 0xeb, 0x1f, 0x9d, 0x63, 0x92, 0x4f, 0xc1, 0x51, 0x34, 0xd0,
0x47, 0x6d, 0xb3, 0xe3, 0xbd, 0xa3, 0x5a, 0xfe, 0x82, 0xdc, 0x73, 0xc0, 0x3d, 0x7b, 0x5a, 0xee,
0x3d, 0xe2, 0x75, 0x28, 0x8b, 0xa5, 0x9e, 0x96, 0xce, 0x4d, 0x71, 0x08, 0x50, 0x98, 0x7e, 0x4b,
0xfe, 0x87, 0x12, 0xe3, 0x83, 0x33, 0x3f, 0xee, 0xc8, 0x7d, 0x47, 0xbf, 0xb3, 0x67, 0xe5, 0xfe,
0x33, 0x43, 0xe7, 0x7d, 0x90, 0xe2, 0x9d, 0xec, 0x40, 0x5c, 0xb8, 0x3b, 0x2e, 0xf8, 0x36, 0x7a,
0x9a, 0x12, 0x9b, 0xd0, 0x31, 0x06, 0x16, 0x91, 0xc9, 0x4c, 0xf4, 0x4e, 0x1b, 0x4d, 0x9c, 0x4f,
0x4a, 0x21, 0xc1, 0x2b, 0xfa, 0xac, 0x28, 0x79, 0x83, 0x8d, 0x99, 0x80, 0xe6, 0x33, 0x72, 0xe8,
0x8c, 0x71, 0xf6, 0x69, 0xb9, 0xcb, 0x80, 0xf0, 0x22, 0xc8, 0x75, 0xce, 0x2c, 0x66, 0x66, 0xc4,
0x02, 0x63, 0xbc, 0x0e, 0x44, 0xc2, 0x01, 0x82, 0x99, 0x46, 0xfc, 0xbc, 0xc4, 0x66, 0x86, 0x0f,
0x07, 0xf9, 0x79, 0x79, 0xa0, 0x29, 0xe3, 0xec, 0x9c, 0x3c, 0xd8, 0x90, 0xd1, 0xa1, 0xfa, 0x09,
0x87, 0xe2, 0xa2, 0x1c, 0x85, 0xaf, 0x15, 0xbd, 0xa3, 0x46, 0xc9, 0xeb, 0x6c, 0x22, 0x1b, 0x23,
0xe6, 0x2e, 0x33, 0x7c, 0xb2, 0x38, 0x3b, 0x29, 0xef, 0x87, 0xbd, 0x0a, 0x30, 0xa7, 0x62, 0x1b,
0x88, 0x38, 0xc4, 0x36, 0x96, 0x00, 0x06, 0x99, 0xb3, 0x4a, 0xfe, 0xeb, 0x12, 0x7b, 0x7e, 0xcf,
0xf9, 0x1f, 0x9f, 0x97, 0x87, 0x1e, 0x13, 0xf6, 0x4a, 0x63, 0xa7, 0x06, 0x43, 0xa5, 0x09, 0xf2,
0x54, 0x63, 0x34, 0x91, 0x26, 0x9c, 0x5c, 0xc2, 0xcf, 0x4a, 0xec, 0xd4, 0xd0, 0x5e, 0x8c, 0x9f,
0x93, 0x07, 0x99, 0xee, 0xcd, 0x9e, 0x97, 0x07, 0xea, 0xe8, 0x1c, 0xfa, 0x1e, 0xbe, 0x62, 0xe3,
0x1c, 0x45, 0xb3, 0xa1, 0x9f, 0x81, 0x78, 0xfe, 0x0b, 0xf0, 0x96, 0xe1, 0xd0, 0x9a, 0xf7, 0x5d,
0xb2, 0x5b, 0x1b, 0x95, 0x7b, 0xcb, 0x3e, 0x10, 0xdd, 0xa1, 0x82, 0x6c, 0xb6, 0xf3, 0x32, 0x6c,
0x25, 0x82, 0xd8, 0xf2, 0x82, 0x06, 0x2a, 0x5b, 0xa7, 0x1f, 0x49, 0xf1, 0xcb, 0x06, 0x1f, 0x04,
0x25, 0x79, 0xb0, 0xef, 0x0e, 0xc6, 0xf3, 0x60, 0xdf, 0x03, 0xd4, 0x38, 0x84, 0xdd, 0x72, 0xed,
0xd8, 0x06, 0xdf, 0x1e, 0x93, 0xbc, 0x03, 0x39, 0xb9, 0xaf, 0x0a, 0x17, 0x72, 0xf2, 0x2e, 0x20,
0xa4, 0x90, 0x93, 0x77, 0xab, 0xe0, 0xce, 0x73, 0x70, 0x6f, 0xc5, 0x6c, 0xe0, 0xbb, 0x4d, 0xf1,
0xb7, 0xf7, 0xcb, 0x59, 0xf2, 0xf4, 0x85, 0xb4, 0x3c, 0x51, 0xd6, 0x31, 0x15, 0xcc, 0x78, 0x13,
0xd6, 0x5c, 0xf2, 0xc8, 0x58, 0xd6, 0x46, 0x3e, 0x29, 0x95, 0xfe, 0x1d, 0x00, 0x00, 0xff, 0xff,
0x89, 0xc7, 0x62, 0x6f, 0x34, 0x25, 0x00, 0x00,
}