You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1062 lines
39 KiB

  1. // Code generated by protoc-gen-go.
  2. // source: filer.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package filer_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. filer.proto
  8. It has these top-level messages:
  9. LookupDirectoryEntryRequest
  10. LookupDirectoryEntryResponse
  11. ListEntriesRequest
  12. ListEntriesResponse
  13. Entry
  14. FileChunk
  15. FuseAttributes
  16. GetEntryAttributesRequest
  17. GetEntryAttributesResponse
  18. GetFileContentRequest
  19. GetFileContentResponse
  20. CreateEntryRequest
  21. CreateEntryResponse
  22. UpdateEntryRequest
  23. UpdateEntryResponse
  24. DeleteEntryRequest
  25. DeleteEntryResponse
  26. AssignVolumeRequest
  27. AssignVolumeResponse
  28. LookupVolumeRequest
  29. Locations
  30. Location
  31. LookupVolumeResponse
  32. */
  33. package filer_pb
  34. import proto "github.com/golang/protobuf/proto"
  35. import fmt "fmt"
  36. import math "math"
  37. import (
  38. context "golang.org/x/net/context"
  39. grpc "google.golang.org/grpc"
  40. )
  41. // Reference imports to suppress errors if they are not otherwise used.
  42. var _ = proto.Marshal
  43. var _ = fmt.Errorf
  44. var _ = math.Inf
  45. // This is a compile-time assertion to ensure that this generated file
  46. // is compatible with the proto package it is being compiled against.
  47. // A compilation error at this line likely means your copy of the
  48. // proto package needs to be updated.
  49. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  50. type LookupDirectoryEntryRequest struct {
  51. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  52. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  53. }
  54. func (m *LookupDirectoryEntryRequest) Reset() { *m = LookupDirectoryEntryRequest{} }
  55. func (m *LookupDirectoryEntryRequest) String() string { return proto.CompactTextString(m) }
  56. func (*LookupDirectoryEntryRequest) ProtoMessage() {}
  57. func (*LookupDirectoryEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  58. func (m *LookupDirectoryEntryRequest) GetDirectory() string {
  59. if m != nil {
  60. return m.Directory
  61. }
  62. return ""
  63. }
  64. func (m *LookupDirectoryEntryRequest) GetName() string {
  65. if m != nil {
  66. return m.Name
  67. }
  68. return ""
  69. }
  70. type LookupDirectoryEntryResponse struct {
  71. Entry *Entry `protobuf:"bytes,1,opt,name=entry" json:"entry,omitempty"`
  72. }
  73. func (m *LookupDirectoryEntryResponse) Reset() { *m = LookupDirectoryEntryResponse{} }
  74. func (m *LookupDirectoryEntryResponse) String() string { return proto.CompactTextString(m) }
  75. func (*LookupDirectoryEntryResponse) ProtoMessage() {}
  76. func (*LookupDirectoryEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  77. func (m *LookupDirectoryEntryResponse) GetEntry() *Entry {
  78. if m != nil {
  79. return m.Entry
  80. }
  81. return nil
  82. }
  83. type ListEntriesRequest struct {
  84. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  85. }
  86. func (m *ListEntriesRequest) Reset() { *m = ListEntriesRequest{} }
  87. func (m *ListEntriesRequest) String() string { return proto.CompactTextString(m) }
  88. func (*ListEntriesRequest) ProtoMessage() {}
  89. func (*ListEntriesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  90. func (m *ListEntriesRequest) GetDirectory() string {
  91. if m != nil {
  92. return m.Directory
  93. }
  94. return ""
  95. }
  96. type ListEntriesResponse struct {
  97. Entries []*Entry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"`
  98. }
  99. func (m *ListEntriesResponse) Reset() { *m = ListEntriesResponse{} }
  100. func (m *ListEntriesResponse) String() string { return proto.CompactTextString(m) }
  101. func (*ListEntriesResponse) ProtoMessage() {}
  102. func (*ListEntriesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  103. func (m *ListEntriesResponse) GetEntries() []*Entry {
  104. if m != nil {
  105. return m.Entries
  106. }
  107. return nil
  108. }
  109. type Entry struct {
  110. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  111. IsDirectory bool `protobuf:"varint,2,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  112. Chunks []*FileChunk `protobuf:"bytes,3,rep,name=chunks" json:"chunks,omitempty"`
  113. Attributes *FuseAttributes `protobuf:"bytes,4,opt,name=attributes" json:"attributes,omitempty"`
  114. }
  115. func (m *Entry) Reset() { *m = Entry{} }
  116. func (m *Entry) String() string { return proto.CompactTextString(m) }
  117. func (*Entry) ProtoMessage() {}
  118. func (*Entry) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  119. func (m *Entry) GetName() string {
  120. if m != nil {
  121. return m.Name
  122. }
  123. return ""
  124. }
  125. func (m *Entry) GetIsDirectory() bool {
  126. if m != nil {
  127. return m.IsDirectory
  128. }
  129. return false
  130. }
  131. func (m *Entry) GetChunks() []*FileChunk {
  132. if m != nil {
  133. return m.Chunks
  134. }
  135. return nil
  136. }
  137. func (m *Entry) GetAttributes() *FuseAttributes {
  138. if m != nil {
  139. return m.Attributes
  140. }
  141. return nil
  142. }
  143. type FileChunk struct {
  144. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  145. Offset int64 `protobuf:"varint,2,opt,name=offset" json:"offset,omitempty"`
  146. Size uint64 `protobuf:"varint,3,opt,name=size" json:"size,omitempty"`
  147. Mtime int64 `protobuf:"varint,4,opt,name=mtime" json:"mtime,omitempty"`
  148. }
  149. func (m *FileChunk) Reset() { *m = FileChunk{} }
  150. func (m *FileChunk) String() string { return proto.CompactTextString(m) }
  151. func (*FileChunk) ProtoMessage() {}
  152. func (*FileChunk) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  153. func (m *FileChunk) GetFileId() string {
  154. if m != nil {
  155. return m.FileId
  156. }
  157. return ""
  158. }
  159. func (m *FileChunk) GetOffset() int64 {
  160. if m != nil {
  161. return m.Offset
  162. }
  163. return 0
  164. }
  165. func (m *FileChunk) GetSize() uint64 {
  166. if m != nil {
  167. return m.Size
  168. }
  169. return 0
  170. }
  171. func (m *FileChunk) GetMtime() int64 {
  172. if m != nil {
  173. return m.Mtime
  174. }
  175. return 0
  176. }
  177. type FuseAttributes struct {
  178. FileSize uint64 `protobuf:"varint,1,opt,name=file_size,json=fileSize" json:"file_size,omitempty"`
  179. Mtime int64 `protobuf:"varint,2,opt,name=mtime" json:"mtime,omitempty"`
  180. FileMode uint32 `protobuf:"varint,3,opt,name=file_mode,json=fileMode" json:"file_mode,omitempty"`
  181. Uid uint32 `protobuf:"varint,4,opt,name=uid" json:"uid,omitempty"`
  182. Gid uint32 `protobuf:"varint,5,opt,name=gid" json:"gid,omitempty"`
  183. Crtime int64 `protobuf:"varint,6,opt,name=crtime" json:"crtime,omitempty"`
  184. Mime string `protobuf:"bytes,7,opt,name=mime" json:"mime,omitempty"`
  185. Replication string `protobuf:"bytes,8,opt,name=replication" json:"replication,omitempty"`
  186. Collection string `protobuf:"bytes,9,opt,name=collection" json:"collection,omitempty"`
  187. TtlSec int32 `protobuf:"varint,10,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  188. }
  189. func (m *FuseAttributes) Reset() { *m = FuseAttributes{} }
  190. func (m *FuseAttributes) String() string { return proto.CompactTextString(m) }
  191. func (*FuseAttributes) ProtoMessage() {}
  192. func (*FuseAttributes) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  193. func (m *FuseAttributes) GetFileSize() uint64 {
  194. if m != nil {
  195. return m.FileSize
  196. }
  197. return 0
  198. }
  199. func (m *FuseAttributes) GetMtime() int64 {
  200. if m != nil {
  201. return m.Mtime
  202. }
  203. return 0
  204. }
  205. func (m *FuseAttributes) GetFileMode() uint32 {
  206. if m != nil {
  207. return m.FileMode
  208. }
  209. return 0
  210. }
  211. func (m *FuseAttributes) GetUid() uint32 {
  212. if m != nil {
  213. return m.Uid
  214. }
  215. return 0
  216. }
  217. func (m *FuseAttributes) GetGid() uint32 {
  218. if m != nil {
  219. return m.Gid
  220. }
  221. return 0
  222. }
  223. func (m *FuseAttributes) GetCrtime() int64 {
  224. if m != nil {
  225. return m.Crtime
  226. }
  227. return 0
  228. }
  229. func (m *FuseAttributes) GetMime() string {
  230. if m != nil {
  231. return m.Mime
  232. }
  233. return ""
  234. }
  235. func (m *FuseAttributes) GetReplication() string {
  236. if m != nil {
  237. return m.Replication
  238. }
  239. return ""
  240. }
  241. func (m *FuseAttributes) GetCollection() string {
  242. if m != nil {
  243. return m.Collection
  244. }
  245. return ""
  246. }
  247. func (m *FuseAttributes) GetTtlSec() int32 {
  248. if m != nil {
  249. return m.TtlSec
  250. }
  251. return 0
  252. }
  253. type GetEntryAttributesRequest struct {
  254. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  255. ParentDir string `protobuf:"bytes,2,opt,name=parent_dir,json=parentDir" json:"parent_dir,omitempty"`
  256. FileId string `protobuf:"bytes,3,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  257. }
  258. func (m *GetEntryAttributesRequest) Reset() { *m = GetEntryAttributesRequest{} }
  259. func (m *GetEntryAttributesRequest) String() string { return proto.CompactTextString(m) }
  260. func (*GetEntryAttributesRequest) ProtoMessage() {}
  261. func (*GetEntryAttributesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  262. func (m *GetEntryAttributesRequest) GetName() string {
  263. if m != nil {
  264. return m.Name
  265. }
  266. return ""
  267. }
  268. func (m *GetEntryAttributesRequest) GetParentDir() string {
  269. if m != nil {
  270. return m.ParentDir
  271. }
  272. return ""
  273. }
  274. func (m *GetEntryAttributesRequest) GetFileId() string {
  275. if m != nil {
  276. return m.FileId
  277. }
  278. return ""
  279. }
  280. type GetEntryAttributesResponse struct {
  281. Attributes *FuseAttributes `protobuf:"bytes,1,opt,name=attributes" json:"attributes,omitempty"`
  282. Chunks []*FileChunk `protobuf:"bytes,2,rep,name=chunks" json:"chunks,omitempty"`
  283. }
  284. func (m *GetEntryAttributesResponse) Reset() { *m = GetEntryAttributesResponse{} }
  285. func (m *GetEntryAttributesResponse) String() string { return proto.CompactTextString(m) }
  286. func (*GetEntryAttributesResponse) ProtoMessage() {}
  287. func (*GetEntryAttributesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  288. func (m *GetEntryAttributesResponse) GetAttributes() *FuseAttributes {
  289. if m != nil {
  290. return m.Attributes
  291. }
  292. return nil
  293. }
  294. func (m *GetEntryAttributesResponse) GetChunks() []*FileChunk {
  295. if m != nil {
  296. return m.Chunks
  297. }
  298. return nil
  299. }
  300. type GetFileContentRequest struct {
  301. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  302. }
  303. func (m *GetFileContentRequest) Reset() { *m = GetFileContentRequest{} }
  304. func (m *GetFileContentRequest) String() string { return proto.CompactTextString(m) }
  305. func (*GetFileContentRequest) ProtoMessage() {}
  306. func (*GetFileContentRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  307. func (m *GetFileContentRequest) GetFileId() string {
  308. if m != nil {
  309. return m.FileId
  310. }
  311. return ""
  312. }
  313. type GetFileContentResponse struct {
  314. Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  315. }
  316. func (m *GetFileContentResponse) Reset() { *m = GetFileContentResponse{} }
  317. func (m *GetFileContentResponse) String() string { return proto.CompactTextString(m) }
  318. func (*GetFileContentResponse) ProtoMessage() {}
  319. func (*GetFileContentResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  320. func (m *GetFileContentResponse) GetContent() []byte {
  321. if m != nil {
  322. return m.Content
  323. }
  324. return nil
  325. }
  326. type CreateEntryRequest struct {
  327. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  328. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  329. }
  330. func (m *CreateEntryRequest) Reset() { *m = CreateEntryRequest{} }
  331. func (m *CreateEntryRequest) String() string { return proto.CompactTextString(m) }
  332. func (*CreateEntryRequest) ProtoMessage() {}
  333. func (*CreateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  334. func (m *CreateEntryRequest) GetDirectory() string {
  335. if m != nil {
  336. return m.Directory
  337. }
  338. return ""
  339. }
  340. func (m *CreateEntryRequest) GetEntry() *Entry {
  341. if m != nil {
  342. return m.Entry
  343. }
  344. return nil
  345. }
  346. type CreateEntryResponse struct {
  347. }
  348. func (m *CreateEntryResponse) Reset() { *m = CreateEntryResponse{} }
  349. func (m *CreateEntryResponse) String() string { return proto.CompactTextString(m) }
  350. func (*CreateEntryResponse) ProtoMessage() {}
  351. func (*CreateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  352. type UpdateEntryRequest struct {
  353. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  354. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  355. }
  356. func (m *UpdateEntryRequest) Reset() { *m = UpdateEntryRequest{} }
  357. func (m *UpdateEntryRequest) String() string { return proto.CompactTextString(m) }
  358. func (*UpdateEntryRequest) ProtoMessage() {}
  359. func (*UpdateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  360. func (m *UpdateEntryRequest) GetDirectory() string {
  361. if m != nil {
  362. return m.Directory
  363. }
  364. return ""
  365. }
  366. func (m *UpdateEntryRequest) GetEntry() *Entry {
  367. if m != nil {
  368. return m.Entry
  369. }
  370. return nil
  371. }
  372. type UpdateEntryResponse struct {
  373. }
  374. func (m *UpdateEntryResponse) Reset() { *m = UpdateEntryResponse{} }
  375. func (m *UpdateEntryResponse) String() string { return proto.CompactTextString(m) }
  376. func (*UpdateEntryResponse) ProtoMessage() {}
  377. func (*UpdateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  378. type DeleteEntryRequest struct {
  379. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  380. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  381. IsDirectory bool `protobuf:"varint,3,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  382. IsDeleteData bool `protobuf:"varint,4,opt,name=is_delete_data,json=isDeleteData" json:"is_delete_data,omitempty"`
  383. IsRecursive bool `protobuf:"varint,5,opt,name=is_recursive,json=isRecursive" json:"is_recursive,omitempty"`
  384. }
  385. func (m *DeleteEntryRequest) Reset() { *m = DeleteEntryRequest{} }
  386. func (m *DeleteEntryRequest) String() string { return proto.CompactTextString(m) }
  387. func (*DeleteEntryRequest) ProtoMessage() {}
  388. func (*DeleteEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  389. func (m *DeleteEntryRequest) GetDirectory() string {
  390. if m != nil {
  391. return m.Directory
  392. }
  393. return ""
  394. }
  395. func (m *DeleteEntryRequest) GetName() string {
  396. if m != nil {
  397. return m.Name
  398. }
  399. return ""
  400. }
  401. func (m *DeleteEntryRequest) GetIsDirectory() bool {
  402. if m != nil {
  403. return m.IsDirectory
  404. }
  405. return false
  406. }
  407. func (m *DeleteEntryRequest) GetIsDeleteData() bool {
  408. if m != nil {
  409. return m.IsDeleteData
  410. }
  411. return false
  412. }
  413. func (m *DeleteEntryRequest) GetIsRecursive() bool {
  414. if m != nil {
  415. return m.IsRecursive
  416. }
  417. return false
  418. }
  419. type DeleteEntryResponse struct {
  420. }
  421. func (m *DeleteEntryResponse) Reset() { *m = DeleteEntryResponse{} }
  422. func (m *DeleteEntryResponse) String() string { return proto.CompactTextString(m) }
  423. func (*DeleteEntryResponse) ProtoMessage() {}
  424. func (*DeleteEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  425. type AssignVolumeRequest struct {
  426. Count int32 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  427. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  428. Replication string `protobuf:"bytes,3,opt,name=replication" json:"replication,omitempty"`
  429. TtlSec int32 `protobuf:"varint,4,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  430. DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  431. }
  432. func (m *AssignVolumeRequest) Reset() { *m = AssignVolumeRequest{} }
  433. func (m *AssignVolumeRequest) String() string { return proto.CompactTextString(m) }
  434. func (*AssignVolumeRequest) ProtoMessage() {}
  435. func (*AssignVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  436. func (m *AssignVolumeRequest) GetCount() int32 {
  437. if m != nil {
  438. return m.Count
  439. }
  440. return 0
  441. }
  442. func (m *AssignVolumeRequest) GetCollection() string {
  443. if m != nil {
  444. return m.Collection
  445. }
  446. return ""
  447. }
  448. func (m *AssignVolumeRequest) GetReplication() string {
  449. if m != nil {
  450. return m.Replication
  451. }
  452. return ""
  453. }
  454. func (m *AssignVolumeRequest) GetTtlSec() int32 {
  455. if m != nil {
  456. return m.TtlSec
  457. }
  458. return 0
  459. }
  460. func (m *AssignVolumeRequest) GetDataCenter() string {
  461. if m != nil {
  462. return m.DataCenter
  463. }
  464. return ""
  465. }
  466. type AssignVolumeResponse struct {
  467. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  468. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  469. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  470. Count int32 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  471. }
  472. func (m *AssignVolumeResponse) Reset() { *m = AssignVolumeResponse{} }
  473. func (m *AssignVolumeResponse) String() string { return proto.CompactTextString(m) }
  474. func (*AssignVolumeResponse) ProtoMessage() {}
  475. func (*AssignVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  476. func (m *AssignVolumeResponse) GetFileId() string {
  477. if m != nil {
  478. return m.FileId
  479. }
  480. return ""
  481. }
  482. func (m *AssignVolumeResponse) GetUrl() string {
  483. if m != nil {
  484. return m.Url
  485. }
  486. return ""
  487. }
  488. func (m *AssignVolumeResponse) GetPublicUrl() string {
  489. if m != nil {
  490. return m.PublicUrl
  491. }
  492. return ""
  493. }
  494. func (m *AssignVolumeResponse) GetCount() int32 {
  495. if m != nil {
  496. return m.Count
  497. }
  498. return 0
  499. }
  500. type LookupVolumeRequest struct {
  501. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  502. }
  503. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  504. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  505. func (*LookupVolumeRequest) ProtoMessage() {}
  506. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  507. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  508. if m != nil {
  509. return m.VolumeIds
  510. }
  511. return nil
  512. }
  513. type Locations struct {
  514. Locations []*Location `protobuf:"bytes,1,rep,name=locations" json:"locations,omitempty"`
  515. }
  516. func (m *Locations) Reset() { *m = Locations{} }
  517. func (m *Locations) String() string { return proto.CompactTextString(m) }
  518. func (*Locations) ProtoMessage() {}
  519. func (*Locations) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  520. func (m *Locations) GetLocations() []*Location {
  521. if m != nil {
  522. return m.Locations
  523. }
  524. return nil
  525. }
  526. type Location struct {
  527. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  528. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  529. }
  530. func (m *Location) Reset() { *m = Location{} }
  531. func (m *Location) String() string { return proto.CompactTextString(m) }
  532. func (*Location) ProtoMessage() {}
  533. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  534. func (m *Location) GetUrl() string {
  535. if m != nil {
  536. return m.Url
  537. }
  538. return ""
  539. }
  540. func (m *Location) GetPublicUrl() string {
  541. if m != nil {
  542. return m.PublicUrl
  543. }
  544. return ""
  545. }
  546. type LookupVolumeResponse struct {
  547. LocationsMap map[string]*Locations `protobuf:"bytes,1,rep,name=locations_map,json=locationsMap" json:"locations_map,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  548. }
  549. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  550. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  551. func (*LookupVolumeResponse) ProtoMessage() {}
  552. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  553. func (m *LookupVolumeResponse) GetLocationsMap() map[string]*Locations {
  554. if m != nil {
  555. return m.LocationsMap
  556. }
  557. return nil
  558. }
  559. func init() {
  560. proto.RegisterType((*LookupDirectoryEntryRequest)(nil), "filer_pb.LookupDirectoryEntryRequest")
  561. proto.RegisterType((*LookupDirectoryEntryResponse)(nil), "filer_pb.LookupDirectoryEntryResponse")
  562. proto.RegisterType((*ListEntriesRequest)(nil), "filer_pb.ListEntriesRequest")
  563. proto.RegisterType((*ListEntriesResponse)(nil), "filer_pb.ListEntriesResponse")
  564. proto.RegisterType((*Entry)(nil), "filer_pb.Entry")
  565. proto.RegisterType((*FileChunk)(nil), "filer_pb.FileChunk")
  566. proto.RegisterType((*FuseAttributes)(nil), "filer_pb.FuseAttributes")
  567. proto.RegisterType((*GetEntryAttributesRequest)(nil), "filer_pb.GetEntryAttributesRequest")
  568. proto.RegisterType((*GetEntryAttributesResponse)(nil), "filer_pb.GetEntryAttributesResponse")
  569. proto.RegisterType((*GetFileContentRequest)(nil), "filer_pb.GetFileContentRequest")
  570. proto.RegisterType((*GetFileContentResponse)(nil), "filer_pb.GetFileContentResponse")
  571. proto.RegisterType((*CreateEntryRequest)(nil), "filer_pb.CreateEntryRequest")
  572. proto.RegisterType((*CreateEntryResponse)(nil), "filer_pb.CreateEntryResponse")
  573. proto.RegisterType((*UpdateEntryRequest)(nil), "filer_pb.UpdateEntryRequest")
  574. proto.RegisterType((*UpdateEntryResponse)(nil), "filer_pb.UpdateEntryResponse")
  575. proto.RegisterType((*DeleteEntryRequest)(nil), "filer_pb.DeleteEntryRequest")
  576. proto.RegisterType((*DeleteEntryResponse)(nil), "filer_pb.DeleteEntryResponse")
  577. proto.RegisterType((*AssignVolumeRequest)(nil), "filer_pb.AssignVolumeRequest")
  578. proto.RegisterType((*AssignVolumeResponse)(nil), "filer_pb.AssignVolumeResponse")
  579. proto.RegisterType((*LookupVolumeRequest)(nil), "filer_pb.LookupVolumeRequest")
  580. proto.RegisterType((*Locations)(nil), "filer_pb.Locations")
  581. proto.RegisterType((*Location)(nil), "filer_pb.Location")
  582. proto.RegisterType((*LookupVolumeResponse)(nil), "filer_pb.LookupVolumeResponse")
  583. }
  584. // Reference imports to suppress errors if they are not otherwise used.
  585. var _ context.Context
  586. var _ grpc.ClientConn
  587. // This is a compile-time assertion to ensure that this generated file
  588. // is compatible with the grpc package it is being compiled against.
  589. const _ = grpc.SupportPackageIsVersion4
  590. // Client API for SeaweedFiler service
  591. type SeaweedFilerClient interface {
  592. LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error)
  593. ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (*ListEntriesResponse, error)
  594. GetEntryAttributes(ctx context.Context, in *GetEntryAttributesRequest, opts ...grpc.CallOption) (*GetEntryAttributesResponse, error)
  595. CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error)
  596. UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error)
  597. DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error)
  598. AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error)
  599. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  600. }
  601. type seaweedFilerClient struct {
  602. cc *grpc.ClientConn
  603. }
  604. func NewSeaweedFilerClient(cc *grpc.ClientConn) SeaweedFilerClient {
  605. return &seaweedFilerClient{cc}
  606. }
  607. func (c *seaweedFilerClient) LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error) {
  608. out := new(LookupDirectoryEntryResponse)
  609. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupDirectoryEntry", in, out, c.cc, opts...)
  610. if err != nil {
  611. return nil, err
  612. }
  613. return out, nil
  614. }
  615. func (c *seaweedFilerClient) ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (*ListEntriesResponse, error) {
  616. out := new(ListEntriesResponse)
  617. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/ListEntries", in, out, c.cc, opts...)
  618. if err != nil {
  619. return nil, err
  620. }
  621. return out, nil
  622. }
  623. func (c *seaweedFilerClient) GetEntryAttributes(ctx context.Context, in *GetEntryAttributesRequest, opts ...grpc.CallOption) (*GetEntryAttributesResponse, error) {
  624. out := new(GetEntryAttributesResponse)
  625. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/GetEntryAttributes", in, out, c.cc, opts...)
  626. if err != nil {
  627. return nil, err
  628. }
  629. return out, nil
  630. }
  631. func (c *seaweedFilerClient) CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error) {
  632. out := new(CreateEntryResponse)
  633. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/CreateEntry", in, out, c.cc, opts...)
  634. if err != nil {
  635. return nil, err
  636. }
  637. return out, nil
  638. }
  639. func (c *seaweedFilerClient) UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error) {
  640. out := new(UpdateEntryResponse)
  641. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/UpdateEntry", in, out, c.cc, opts...)
  642. if err != nil {
  643. return nil, err
  644. }
  645. return out, nil
  646. }
  647. func (c *seaweedFilerClient) DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error) {
  648. out := new(DeleteEntryResponse)
  649. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteEntry", in, out, c.cc, opts...)
  650. if err != nil {
  651. return nil, err
  652. }
  653. return out, nil
  654. }
  655. func (c *seaweedFilerClient) AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error) {
  656. out := new(AssignVolumeResponse)
  657. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/AssignVolume", in, out, c.cc, opts...)
  658. if err != nil {
  659. return nil, err
  660. }
  661. return out, nil
  662. }
  663. func (c *seaweedFilerClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  664. out := new(LookupVolumeResponse)
  665. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupVolume", in, out, c.cc, opts...)
  666. if err != nil {
  667. return nil, err
  668. }
  669. return out, nil
  670. }
  671. // Server API for SeaweedFiler service
  672. type SeaweedFilerServer interface {
  673. LookupDirectoryEntry(context.Context, *LookupDirectoryEntryRequest) (*LookupDirectoryEntryResponse, error)
  674. ListEntries(context.Context, *ListEntriesRequest) (*ListEntriesResponse, error)
  675. GetEntryAttributes(context.Context, *GetEntryAttributesRequest) (*GetEntryAttributesResponse, error)
  676. CreateEntry(context.Context, *CreateEntryRequest) (*CreateEntryResponse, error)
  677. UpdateEntry(context.Context, *UpdateEntryRequest) (*UpdateEntryResponse, error)
  678. DeleteEntry(context.Context, *DeleteEntryRequest) (*DeleteEntryResponse, error)
  679. AssignVolume(context.Context, *AssignVolumeRequest) (*AssignVolumeResponse, error)
  680. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  681. }
  682. func RegisterSeaweedFilerServer(s *grpc.Server, srv SeaweedFilerServer) {
  683. s.RegisterService(&_SeaweedFiler_serviceDesc, srv)
  684. }
  685. func _SeaweedFiler_LookupDirectoryEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  686. in := new(LookupDirectoryEntryRequest)
  687. if err := dec(in); err != nil {
  688. return nil, err
  689. }
  690. if interceptor == nil {
  691. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, in)
  692. }
  693. info := &grpc.UnaryServerInfo{
  694. Server: srv,
  695. FullMethod: "/filer_pb.SeaweedFiler/LookupDirectoryEntry",
  696. }
  697. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  698. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, req.(*LookupDirectoryEntryRequest))
  699. }
  700. return interceptor(ctx, in, info, handler)
  701. }
  702. func _SeaweedFiler_ListEntries_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  703. in := new(ListEntriesRequest)
  704. if err := dec(in); err != nil {
  705. return nil, err
  706. }
  707. if interceptor == nil {
  708. return srv.(SeaweedFilerServer).ListEntries(ctx, in)
  709. }
  710. info := &grpc.UnaryServerInfo{
  711. Server: srv,
  712. FullMethod: "/filer_pb.SeaweedFiler/ListEntries",
  713. }
  714. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  715. return srv.(SeaweedFilerServer).ListEntries(ctx, req.(*ListEntriesRequest))
  716. }
  717. return interceptor(ctx, in, info, handler)
  718. }
  719. func _SeaweedFiler_GetEntryAttributes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  720. in := new(GetEntryAttributesRequest)
  721. if err := dec(in); err != nil {
  722. return nil, err
  723. }
  724. if interceptor == nil {
  725. return srv.(SeaweedFilerServer).GetEntryAttributes(ctx, in)
  726. }
  727. info := &grpc.UnaryServerInfo{
  728. Server: srv,
  729. FullMethod: "/filer_pb.SeaweedFiler/GetEntryAttributes",
  730. }
  731. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  732. return srv.(SeaweedFilerServer).GetEntryAttributes(ctx, req.(*GetEntryAttributesRequest))
  733. }
  734. return interceptor(ctx, in, info, handler)
  735. }
  736. func _SeaweedFiler_CreateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  737. in := new(CreateEntryRequest)
  738. if err := dec(in); err != nil {
  739. return nil, err
  740. }
  741. if interceptor == nil {
  742. return srv.(SeaweedFilerServer).CreateEntry(ctx, in)
  743. }
  744. info := &grpc.UnaryServerInfo{
  745. Server: srv,
  746. FullMethod: "/filer_pb.SeaweedFiler/CreateEntry",
  747. }
  748. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  749. return srv.(SeaweedFilerServer).CreateEntry(ctx, req.(*CreateEntryRequest))
  750. }
  751. return interceptor(ctx, in, info, handler)
  752. }
  753. func _SeaweedFiler_UpdateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  754. in := new(UpdateEntryRequest)
  755. if err := dec(in); err != nil {
  756. return nil, err
  757. }
  758. if interceptor == nil {
  759. return srv.(SeaweedFilerServer).UpdateEntry(ctx, in)
  760. }
  761. info := &grpc.UnaryServerInfo{
  762. Server: srv,
  763. FullMethod: "/filer_pb.SeaweedFiler/UpdateEntry",
  764. }
  765. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  766. return srv.(SeaweedFilerServer).UpdateEntry(ctx, req.(*UpdateEntryRequest))
  767. }
  768. return interceptor(ctx, in, info, handler)
  769. }
  770. func _SeaweedFiler_DeleteEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  771. in := new(DeleteEntryRequest)
  772. if err := dec(in); err != nil {
  773. return nil, err
  774. }
  775. if interceptor == nil {
  776. return srv.(SeaweedFilerServer).DeleteEntry(ctx, in)
  777. }
  778. info := &grpc.UnaryServerInfo{
  779. Server: srv,
  780. FullMethod: "/filer_pb.SeaweedFiler/DeleteEntry",
  781. }
  782. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  783. return srv.(SeaweedFilerServer).DeleteEntry(ctx, req.(*DeleteEntryRequest))
  784. }
  785. return interceptor(ctx, in, info, handler)
  786. }
  787. func _SeaweedFiler_AssignVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  788. in := new(AssignVolumeRequest)
  789. if err := dec(in); err != nil {
  790. return nil, err
  791. }
  792. if interceptor == nil {
  793. return srv.(SeaweedFilerServer).AssignVolume(ctx, in)
  794. }
  795. info := &grpc.UnaryServerInfo{
  796. Server: srv,
  797. FullMethod: "/filer_pb.SeaweedFiler/AssignVolume",
  798. }
  799. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  800. return srv.(SeaweedFilerServer).AssignVolume(ctx, req.(*AssignVolumeRequest))
  801. }
  802. return interceptor(ctx, in, info, handler)
  803. }
  804. func _SeaweedFiler_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  805. in := new(LookupVolumeRequest)
  806. if err := dec(in); err != nil {
  807. return nil, err
  808. }
  809. if interceptor == nil {
  810. return srv.(SeaweedFilerServer).LookupVolume(ctx, in)
  811. }
  812. info := &grpc.UnaryServerInfo{
  813. Server: srv,
  814. FullMethod: "/filer_pb.SeaweedFiler/LookupVolume",
  815. }
  816. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  817. return srv.(SeaweedFilerServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  818. }
  819. return interceptor(ctx, in, info, handler)
  820. }
  821. var _SeaweedFiler_serviceDesc = grpc.ServiceDesc{
  822. ServiceName: "filer_pb.SeaweedFiler",
  823. HandlerType: (*SeaweedFilerServer)(nil),
  824. Methods: []grpc.MethodDesc{
  825. {
  826. MethodName: "LookupDirectoryEntry",
  827. Handler: _SeaweedFiler_LookupDirectoryEntry_Handler,
  828. },
  829. {
  830. MethodName: "ListEntries",
  831. Handler: _SeaweedFiler_ListEntries_Handler,
  832. },
  833. {
  834. MethodName: "GetEntryAttributes",
  835. Handler: _SeaweedFiler_GetEntryAttributes_Handler,
  836. },
  837. {
  838. MethodName: "CreateEntry",
  839. Handler: _SeaweedFiler_CreateEntry_Handler,
  840. },
  841. {
  842. MethodName: "UpdateEntry",
  843. Handler: _SeaweedFiler_UpdateEntry_Handler,
  844. },
  845. {
  846. MethodName: "DeleteEntry",
  847. Handler: _SeaweedFiler_DeleteEntry_Handler,
  848. },
  849. {
  850. MethodName: "AssignVolume",
  851. Handler: _SeaweedFiler_AssignVolume_Handler,
  852. },
  853. {
  854. MethodName: "LookupVolume",
  855. Handler: _SeaweedFiler_LookupVolume_Handler,
  856. },
  857. },
  858. Streams: []grpc.StreamDesc{},
  859. Metadata: "filer.proto",
  860. }
  861. func init() { proto.RegisterFile("filer.proto", fileDescriptor0) }
  862. var fileDescriptor0 = []byte{
  863. // 1004 bytes of a gzipped FileDescriptorProto
  864. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x56, 0x5d, 0x6f, 0xdc, 0x44,
  865. 0x14, 0x8d, 0xd7, 0xbb, 0x9b, 0xf5, 0xdd, 0x4d, 0x81, 0xd9, 0xb4, 0x98, 0x6d, 0x52, 0x16, 0xd3,
  866. 0xa2, 0x54, 0x48, 0x51, 0x14, 0x78, 0xa8, 0x40, 0x48, 0x54, 0x49, 0xa9, 0x2a, 0xa5, 0xaa, 0x34,
  867. 0x21, 0x48, 0x3c, 0xad, 0x1c, 0xfb, 0x66, 0x19, 0xc5, 0x6b, 0x2f, 0x9e, 0x71, 0x50, 0x78, 0xe5,
  868. 0x91, 0xdf, 0x81, 0x78, 0x47, 0xfc, 0x03, 0xfe, 0x18, 0x9a, 0x0f, 0x7b, 0xc7, 0x6b, 0x6f, 0x3f,
  869. 0x1e, 0xfa, 0x36, 0x73, 0xe7, 0xce, 0xb9, 0xe7, 0xd8, 0xf7, 0x1e, 0x1b, 0x86, 0x57, 0x2c, 0xc1,
  870. 0xfc, 0x70, 0x99, 0x67, 0x22, 0x23, 0x03, 0xb5, 0x99, 0x2d, 0x2f, 0x83, 0x57, 0x70, 0xff, 0x2c,
  871. 0xcb, 0xae, 0x8b, 0xe5, 0x29, 0xcb, 0x31, 0x12, 0x59, 0x7e, 0xfb, 0x2c, 0x15, 0xf9, 0x2d, 0xc5,
  872. 0x5f, 0x0b, 0xe4, 0x82, 0xec, 0x81, 0x17, 0x97, 0x07, 0xbe, 0x33, 0x75, 0x0e, 0x3c, 0xba, 0x0a,
  873. 0x10, 0x02, 0xdd, 0x34, 0x5c, 0xa0, 0xdf, 0x51, 0x07, 0x6a, 0x1d, 0x3c, 0x83, 0xbd, 0x76, 0x40,
  874. 0xbe, 0xcc, 0x52, 0x8e, 0xe4, 0x11, 0xf4, 0x50, 0x06, 0x14, 0xda, 0xf0, 0xf8, 0x83, 0xc3, 0x92,
  875. 0xca, 0xa1, 0xce, 0xd3, 0xa7, 0xc1, 0x31, 0x90, 0x33, 0xc6, 0x85, 0x8c, 0x31, 0xe4, 0x6f, 0x45,
  876. 0x27, 0xf8, 0x1e, 0xc6, 0xb5, 0x3b, 0xa6, 0xe2, 0x63, 0xd8, 0x46, 0x1d, 0xf2, 0x9d, 0xa9, 0xdb,
  877. 0x56, 0xb3, 0x3c, 0x0f, 0xfe, 0x72, 0xa0, 0xa7, 0x42, 0x95, 0x34, 0x67, 0x25, 0x8d, 0x7c, 0x06,
  878. 0x23, 0xc6, 0x67, 0x2b, 0x02, 0x52, 0xf6, 0x80, 0x0e, 0x19, 0xaf, 0xa4, 0x92, 0x2f, 0xa1, 0x1f,
  879. 0xfd, 0x52, 0xa4, 0xd7, 0xdc, 0x77, 0x55, 0xa9, 0xf1, 0xaa, 0xd4, 0x0f, 0x2c, 0xc1, 0x13, 0x79,
  880. 0x46, 0x4d, 0x0a, 0x79, 0x02, 0x10, 0x0a, 0x91, 0xb3, 0xcb, 0x42, 0x20, 0xf7, 0xbb, 0xea, 0x79,
  881. 0xf8, 0xd6, 0x85, 0x82, 0xe3, 0xd3, 0xea, 0x9c, 0x5a, 0xb9, 0xc1, 0x15, 0x78, 0x15, 0x1c, 0xf9,
  882. 0x18, 0xb6, 0xe5, 0x9d, 0x19, 0x8b, 0x0d, 0xdb, 0xbe, 0xdc, 0xbe, 0x88, 0xc9, 0x3d, 0xe8, 0x67,
  883. 0x57, 0x57, 0x1c, 0x85, 0x62, 0xea, 0x52, 0xb3, 0x93, 0xda, 0x38, 0xfb, 0x1d, 0x7d, 0x77, 0xea,
  884. 0x1c, 0x74, 0xa9, 0x5a, 0x93, 0x5d, 0xe8, 0x2d, 0x04, 0x5b, 0xa0, 0xa2, 0xe1, 0x52, 0xbd, 0x09,
  885. 0xfe, 0xec, 0xc0, 0x9d, 0x3a, 0x0d, 0x72, 0x1f, 0x3c, 0x55, 0x4d, 0x21, 0x38, 0x0a, 0x41, 0x75,
  886. 0xd3, 0x79, 0x0d, 0xa5, 0x63, 0xa1, 0x54, 0x57, 0x16, 0x59, 0xac, 0x8b, 0xee, 0xe8, 0x2b, 0x2f,
  887. 0xb3, 0x18, 0xc9, 0x87, 0xe0, 0x16, 0x2c, 0x56, 0x65, 0x77, 0xa8, 0x5c, 0xca, 0xc8, 0x9c, 0xc5,
  888. 0x7e, 0x4f, 0x47, 0xe6, 0x4c, 0x09, 0x89, 0x72, 0x85, 0xdb, 0xd7, 0x42, 0xf4, 0x4e, 0x0a, 0x59,
  889. 0xc8, 0xe8, 0xb6, 0x7e, 0x49, 0x72, 0x4d, 0xa6, 0x30, 0xcc, 0x71, 0x99, 0xb0, 0x28, 0x14, 0x2c,
  890. 0x4b, 0xfd, 0x81, 0x3a, 0xb2, 0x43, 0xe4, 0x01, 0x40, 0x94, 0x25, 0x09, 0x46, 0x2a, 0xc1, 0x53,
  891. 0x09, 0x56, 0x44, 0x3e, 0x4f, 0x21, 0x92, 0x19, 0xc7, 0xc8, 0x87, 0xa9, 0x73, 0xd0, 0xa3, 0x7d,
  892. 0x21, 0x92, 0x73, 0x8c, 0x82, 0x39, 0x7c, 0xf2, 0x1c, 0x55, 0x7b, 0xdd, 0x5a, 0xef, 0xc5, 0xb4,
  893. 0x66, 0x5b, 0xc3, 0xec, 0x03, 0x2c, 0xc3, 0x1c, 0x53, 0x21, 0x9b, 0xc6, 0x4c, 0x89, 0xa7, 0x23,
  894. 0xa7, 0x2c, 0xb7, 0x5f, 0x9c, 0x6b, 0xbf, 0xb8, 0xe0, 0x0f, 0x07, 0x26, 0x6d, 0x95, 0x4c, 0x43,
  895. 0xd7, 0xfb, 0xc6, 0x79, 0xfb, 0xbe, 0xb1, 0xda, 0xb3, 0xf3, 0xc6, 0xf6, 0x0c, 0x8e, 0xe0, 0xee,
  896. 0x73, 0x14, 0x2a, 0x9e, 0xa5, 0x02, 0x53, 0x51, 0x4a, 0xdd, 0xd4, 0x70, 0xc1, 0x31, 0xdc, 0x5b,
  897. 0xbf, 0x61, 0x28, 0xfb, 0xb0, 0x1d, 0xe9, 0x90, 0xba, 0x32, 0xa2, 0xe5, 0x36, 0xf8, 0x19, 0xc8,
  898. 0x49, 0x8e, 0xa1, 0xc0, 0x77, 0xf0, 0x9d, 0xca, 0x43, 0x3a, 0xaf, 0xf5, 0x90, 0xbb, 0x30, 0xae,
  899. 0x41, 0x6b, 0x2e, 0xb2, 0xe2, 0xc5, 0x32, 0x7e, 0x5f, 0x15, 0x6b, 0xd0, 0xa6, 0xe2, 0x3f, 0x0e,
  900. 0x90, 0x53, 0x4c, 0xf0, 0x9d, 0x4a, 0xb6, 0x98, 0x6b, 0xc3, 0x81, 0xdc, 0xa6, 0x03, 0x3d, 0x84,
  901. 0x3b, 0x32, 0x45, 0x55, 0x9b, 0xc5, 0xa1, 0x08, 0xd5, 0x68, 0x0d, 0xe8, 0x88, 0x71, 0x4d, 0xe1,
  902. 0x34, 0x14, 0xa1, 0x01, 0xca, 0x31, 0x2a, 0x72, 0xce, 0x6e, 0x50, 0x0d, 0x9b, 0x02, 0xa2, 0x65,
  903. 0x48, 0x6a, 0xa9, 0x71, 0x36, 0x5a, 0xfe, 0x76, 0x60, 0xfc, 0x94, 0x73, 0x36, 0x4f, 0x7f, 0xca,
  904. 0x92, 0x62, 0x81, 0xa5, 0x98, 0x5d, 0xe8, 0x45, 0x59, 0x61, 0xde, 0x6f, 0x8f, 0xea, 0xcd, 0xda,
  905. 0xac, 0x75, 0x1a, 0xb3, 0xb6, 0x36, 0xad, 0x6e, 0x73, 0x5a, 0xad, 0x69, 0xec, 0xda, 0xd3, 0x48,
  906. 0x3e, 0x85, 0xa1, 0x94, 0x37, 0x8b, 0x30, 0x15, 0x98, 0x2b, 0x05, 0x1e, 0x05, 0x19, 0x3a, 0x51,
  907. 0x91, 0xe0, 0x06, 0x76, 0xeb, 0x44, 0x4d, 0x2f, 0x6e, 0xf4, 0x4b, 0x69, 0x45, 0x79, 0x62, 0x58,
  908. 0xca, 0xa5, 0x1a, 0xe0, 0xe2, 0x32, 0x61, 0xd1, 0x4c, 0x1e, 0xb8, 0x66, 0x80, 0x55, 0xe4, 0x22,
  909. 0x4f, 0x56, 0x9a, 0xbb, 0x96, 0xe6, 0xe0, 0x6b, 0x18, 0xeb, 0x2f, 0x60, 0xfd, 0x01, 0xed, 0x03,
  910. 0xdc, 0xa8, 0xc0, 0x8c, 0xc5, 0xfa, 0x4b, 0xe4, 0x51, 0x4f, 0x47, 0x5e, 0xc4, 0x3c, 0xf8, 0x0e,
  911. 0xbc, 0xb3, 0x4c, 0x6b, 0xe6, 0xe4, 0x08, 0xbc, 0xa4, 0xdc, 0x98, 0x8f, 0x16, 0x59, 0xb5, 0x5c,
  912. 0x99, 0x47, 0x57, 0x49, 0xc1, 0xb7, 0x30, 0x28, 0xc3, 0xa5, 0x0e, 0x67, 0x93, 0x8e, 0xce, 0x9a,
  913. 0x8e, 0xe0, 0x3f, 0x07, 0x76, 0xeb, 0x94, 0xcd, 0xa3, 0xba, 0x80, 0x9d, 0xaa, 0xc4, 0x6c, 0x11,
  914. 0x2e, 0x0d, 0x97, 0x23, 0x9b, 0x4b, 0xf3, 0x5a, 0x45, 0x90, 0xbf, 0x0c, 0x97, 0xba, 0x7b, 0x46,
  915. 0x89, 0x15, 0x9a, 0xfc, 0x08, 0x1f, 0x35, 0x52, 0x24, 0xeb, 0x6b, 0x2c, 0xe7, 0x40, 0x2e, 0xc9,
  916. 0x63, 0xe8, 0xdd, 0x84, 0x49, 0x81, 0x66, 0xe8, 0xc6, 0xcd, 0x27, 0xc0, 0xa9, 0xce, 0xf8, 0xa6,
  917. 0xf3, 0xc4, 0x39, 0xfe, 0xb7, 0x07, 0xa3, 0x73, 0x0c, 0x7f, 0x43, 0x8c, 0xa5, 0x05, 0xe5, 0x64,
  918. 0x5e, 0xaa, 0xaa, 0xff, 0x8a, 0x90, 0x47, 0xeb, 0xf4, 0x5b, 0xff, 0x7d, 0x26, 0x5f, 0xbc, 0x29,
  919. 0xcd, 0x4c, 0xc4, 0x16, 0x39, 0x83, 0xa1, 0xf5, 0xe3, 0x41, 0xf6, 0xac, 0x8b, 0x8d, 0x7f, 0x98,
  920. 0xc9, 0xfe, 0x86, 0xd3, 0x0a, 0x2d, 0x04, 0xd2, 0x34, 0x7f, 0xf2, 0xf9, 0xea, 0xda, 0xc6, 0x8f,
  921. 0xd0, 0xe4, 0xe1, 0xeb, 0x93, 0x6c, 0xc2, 0x96, 0x33, 0xda, 0x84, 0x9b, 0x5e, 0x6c, 0x13, 0x6e,
  922. 0xb3, 0x53, 0x85, 0x66, 0xb9, 0x9e, 0x8d, 0xd6, 0xf4, 0x59, 0x1b, 0xad, 0xcd, 0x2a, 0x15, 0x9a,
  923. 0xe5, 0x3b, 0x36, 0x5a, 0xd3, 0x42, 0x6d, 0xb4, 0x36, 0xb3, 0xda, 0x22, 0xaf, 0x60, 0x64, 0x9b,
  924. 0x00, 0xb1, 0x2e, 0xb4, 0xb8, 0xd8, 0xe4, 0xc1, 0xa6, 0x63, 0x1b, 0xd0, 0xee, 0x79, 0x1b, 0xb0,
  925. 0x65, 0xea, 0x6d, 0xc0, 0xb6, 0x51, 0x09, 0xb6, 0x2e, 0xfb, 0xea, 0x97, 0xfc, 0xab, 0xff, 0x03,
  926. 0x00, 0x00, 0xff, 0xff, 0x27, 0x89, 0x58, 0x67, 0xa1, 0x0b, 0x00, 0x00,
  927. }