forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.pb.go
616 lines (536 loc) · 21.5 KB
/
update.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: update.proto
/*
Package update is a generated protocol buffer package.
It is generated from these files:
update.proto
It has these top-level messages:
Package
ApplyUpdateRequest
ApplyUpdateResponse
UpdateRequest
UpdateResponse
PublishPackageRequest
PublishPackageResponse
ListPackagesRequest
ListPackagesResponse
DeletePackageRequest
DeletePackageResponse
*/
package update
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import tree "github.com/pydio/cells/common/proto/tree"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
type Package_PackageStatus int32
const (
Package_Draft Package_PackageStatus = 0
Package_Pending Package_PackageStatus = 1
Package_Released Package_PackageStatus = 2
)
var Package_PackageStatus_name = map[int32]string{
0: "Draft",
1: "Pending",
2: "Released",
}
var Package_PackageStatus_value = map[string]int32{
"Draft": 0,
"Pending": 1,
"Released": 2,
}
func (x Package_PackageStatus) String() string {
return proto.EnumName(Package_PackageStatus_name, int32(x))
}
func (Package_PackageStatus) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
type Package struct {
// Name of the application
PackageName string `protobuf:"bytes,1,opt,name=PackageName" json:"PackageName,omitempty"`
// Version of this new binary
Version string `protobuf:"bytes,2,opt,name=Version" json:"Version,omitempty"`
// Release date of the binary
ReleaseDate int32 `protobuf:"varint,3,opt,name=ReleaseDate" json:"ReleaseDate,omitempty"`
// Short human-readable description
Label string `protobuf:"bytes,4,opt,name=Label" json:"Label,omitempty"`
// Long human-readable description (markdown)
Description string `protobuf:"bytes,5,opt,name=Description" json:"Description,omitempty"`
// List or public URL of change logs
ChangeLog string `protobuf:"bytes,6,opt,name=ChangeLog" json:"ChangeLog,omitempty"`
// License of this package
License string `protobuf:"bytes,16,opt,name=License" json:"License,omitempty"`
// Https URL where to download the binary
BinaryURL string `protobuf:"bytes,7,opt,name=BinaryURL" json:"BinaryURL,omitempty"`
// Checksum of the binary to verify its integrity
BinaryChecksum string `protobuf:"bytes,8,opt,name=BinaryChecksum" json:"BinaryChecksum,omitempty"`
// Signature of the binary
BinarySignature string `protobuf:"bytes,9,opt,name=BinarySignature" json:"BinarySignature,omitempty"`
// Hash type used for the signature
BinaryHashType string `protobuf:"bytes,10,opt,name=BinaryHashType" json:"BinaryHashType,omitempty"`
// Size of the binary to download
BinarySize int64 `protobuf:"varint,15,opt,name=BinarySize" json:"BinarySize,omitempty"`
// GOOS value used at build time
BinaryOS string `protobuf:"bytes,17,opt,name=BinaryOS" json:"BinaryOS,omitempty"`
// GOARCH value used at build time
BinaryArch string `protobuf:"bytes,18,opt,name=BinaryArch" json:"BinaryArch,omitempty"`
// Not used : if binary is a patch
IsPatch bool `protobuf:"varint,11,opt,name=IsPatch" json:"IsPatch,omitempty"`
// Not used : if a patch, how to patch (bsdiff support)
PatchAlgorithm string `protobuf:"bytes,12,opt,name=PatchAlgorithm" json:"PatchAlgorithm,omitempty"`
// Not used : at a point we may deliver services only updates
ServiceName string `protobuf:"bytes,13,opt,name=ServiceName" json:"ServiceName,omitempty"`
Status Package_PackageStatus `protobuf:"varint,14,opt,name=Status,enum=update.Package_PackageStatus" json:"Status,omitempty"`
}
func (m *Package) Reset() { *m = Package{} }
func (m *Package) String() string { return proto.CompactTextString(m) }
func (*Package) ProtoMessage() {}
func (*Package) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
func (m *Package) GetPackageName() string {
if m != nil {
return m.PackageName
}
return ""
}
func (m *Package) GetVersion() string {
if m != nil {
return m.Version
}
return ""
}
func (m *Package) GetReleaseDate() int32 {
if m != nil {
return m.ReleaseDate
}
return 0
}
func (m *Package) GetLabel() string {
if m != nil {
return m.Label
}
return ""
}
func (m *Package) GetDescription() string {
if m != nil {
return m.Description
}
return ""
}
func (m *Package) GetChangeLog() string {
if m != nil {
return m.ChangeLog
}
return ""
}
func (m *Package) GetLicense() string {
if m != nil {
return m.License
}
return ""
}
func (m *Package) GetBinaryURL() string {
if m != nil {
return m.BinaryURL
}
return ""
}
func (m *Package) GetBinaryChecksum() string {
if m != nil {
return m.BinaryChecksum
}
return ""
}
func (m *Package) GetBinarySignature() string {
if m != nil {
return m.BinarySignature
}
return ""
}
func (m *Package) GetBinaryHashType() string {
if m != nil {
return m.BinaryHashType
}
return ""
}
func (m *Package) GetBinarySize() int64 {
if m != nil {
return m.BinarySize
}
return 0
}
func (m *Package) GetBinaryOS() string {
if m != nil {
return m.BinaryOS
}
return ""
}
func (m *Package) GetBinaryArch() string {
if m != nil {
return m.BinaryArch
}
return ""
}
func (m *Package) GetIsPatch() bool {
if m != nil {
return m.IsPatch
}
return false
}
func (m *Package) GetPatchAlgorithm() string {
if m != nil {
return m.PatchAlgorithm
}
return ""
}
func (m *Package) GetServiceName() string {
if m != nil {
return m.ServiceName
}
return ""
}
func (m *Package) GetStatus() Package_PackageStatus {
if m != nil {
return m.Status
}
return Package_Draft
}
type ApplyUpdateRequest struct {
// Version of the target binary
TargetVersion string `protobuf:"bytes,1,opt,name=TargetVersion" json:"TargetVersion,omitempty"`
// Name of the package if it's not the same as the current binary
PackageName string `protobuf:"bytes,2,opt,name=PackageName" json:"PackageName,omitempty"`
}
func (m *ApplyUpdateRequest) Reset() { *m = ApplyUpdateRequest{} }
func (m *ApplyUpdateRequest) String() string { return proto.CompactTextString(m) }
func (*ApplyUpdateRequest) ProtoMessage() {}
func (*ApplyUpdateRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
func (m *ApplyUpdateRequest) GetTargetVersion() string {
if m != nil {
return m.TargetVersion
}
return ""
}
func (m *ApplyUpdateRequest) GetPackageName() string {
if m != nil {
return m.PackageName
}
return ""
}
type ApplyUpdateResponse struct {
Success bool `protobuf:"varint,1,opt,name=Success" json:"Success,omitempty"`
Message string `protobuf:"bytes,2,opt,name=Message" json:"Message,omitempty"`
}
func (m *ApplyUpdateResponse) Reset() { *m = ApplyUpdateResponse{} }
func (m *ApplyUpdateResponse) String() string { return proto.CompactTextString(m) }
func (*ApplyUpdateResponse) ProtoMessage() {}
func (*ApplyUpdateResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
func (m *ApplyUpdateResponse) GetSuccess() bool {
if m != nil {
return m.Success
}
return false
}
func (m *ApplyUpdateResponse) GetMessage() string {
if m != nil {
return m.Message
}
return ""
}
type UpdateRequest struct {
// Channel name
Channel string `protobuf:"bytes,1,opt,name=Channel" json:"Channel,omitempty"`
// Name of the currently running application
PackageName string `protobuf:"bytes,2,opt,name=PackageName" json:"PackageName,omitempty"`
// Current version of the application
CurrentVersion string `protobuf:"bytes,3,opt,name=CurrentVersion" json:"CurrentVersion,omitempty"`
// Current GOOS
GOOS string `protobuf:"bytes,4,opt,name=GOOS" json:"GOOS,omitempty"`
// Current GOARCH
GOARCH string `protobuf:"bytes,5,opt,name=GOARCH" json:"GOARCH,omitempty"`
// Not Used : specific service to get updates for
ServiceName string `protobuf:"bytes,6,opt,name=ServiceName" json:"ServiceName,omitempty"`
// For enterprise version, info about the current license
LicenseInfo map[string]string `protobuf:"bytes,7,rep,name=LicenseInfo" json:"LicenseInfo,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *UpdateRequest) Reset() { *m = UpdateRequest{} }
func (m *UpdateRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateRequest) ProtoMessage() {}
func (*UpdateRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
func (m *UpdateRequest) GetChannel() string {
if m != nil {
return m.Channel
}
return ""
}
func (m *UpdateRequest) GetPackageName() string {
if m != nil {
return m.PackageName
}
return ""
}
func (m *UpdateRequest) GetCurrentVersion() string {
if m != nil {
return m.CurrentVersion
}
return ""
}
func (m *UpdateRequest) GetGOOS() string {
if m != nil {
return m.GOOS
}
return ""
}
func (m *UpdateRequest) GetGOARCH() string {
if m != nil {
return m.GOARCH
}
return ""
}
func (m *UpdateRequest) GetServiceName() string {
if m != nil {
return m.ServiceName
}
return ""
}
func (m *UpdateRequest) GetLicenseInfo() map[string]string {
if m != nil {
return m.LicenseInfo
}
return nil
}
type UpdateResponse struct {
Channel string `protobuf:"bytes,1,opt,name=Channel" json:"Channel,omitempty"`
// List of available binaries
AvailableBinaries []*Package `protobuf:"bytes,2,rep,name=AvailableBinaries" json:"AvailableBinaries,omitempty"`
}
func (m *UpdateResponse) Reset() { *m = UpdateResponse{} }
func (m *UpdateResponse) String() string { return proto.CompactTextString(m) }
func (*UpdateResponse) ProtoMessage() {}
func (*UpdateResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
func (m *UpdateResponse) GetChannel() string {
if m != nil {
return m.Channel
}
return ""
}
func (m *UpdateResponse) GetAvailableBinaries() []*Package {
if m != nil {
return m.AvailableBinaries
}
return nil
}
type PublishPackageRequest struct {
Channel string `protobuf:"bytes,1,opt,name=Channel" json:"Channel,omitempty"`
Package *Package `protobuf:"bytes,2,opt,name=Package" json:"Package,omitempty"`
// Used internally to map to an existing file
Node *tree.Node `protobuf:"bytes,3,opt,name=Node" json:"Node,omitempty"`
}
func (m *PublishPackageRequest) Reset() { *m = PublishPackageRequest{} }
func (m *PublishPackageRequest) String() string { return proto.CompactTextString(m) }
func (*PublishPackageRequest) ProtoMessage() {}
func (*PublishPackageRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
func (m *PublishPackageRequest) GetChannel() string {
if m != nil {
return m.Channel
}
return ""
}
func (m *PublishPackageRequest) GetPackage() *Package {
if m != nil {
return m.Package
}
return nil
}
func (m *PublishPackageRequest) GetNode() *tree.Node {
if m != nil {
return m.Node
}
return nil
}
type PublishPackageResponse struct {
Success bool `protobuf:"varint,1,opt,name=Success" json:"Success,omitempty"`
Package *Package `protobuf:"bytes,2,opt,name=Package" json:"Package,omitempty"`
}
func (m *PublishPackageResponse) Reset() { *m = PublishPackageResponse{} }
func (m *PublishPackageResponse) String() string { return proto.CompactTextString(m) }
func (*PublishPackageResponse) ProtoMessage() {}
func (*PublishPackageResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
func (m *PublishPackageResponse) GetSuccess() bool {
if m != nil {
return m.Success
}
return false
}
func (m *PublishPackageResponse) GetPackage() *Package {
if m != nil {
return m.Package
}
return nil
}
type ListPackagesRequest struct {
Channel string `protobuf:"bytes,1,opt,name=Channel" json:"Channel,omitempty"`
PackageName string `protobuf:"bytes,2,opt,name=PackageName" json:"PackageName,omitempty"`
}
func (m *ListPackagesRequest) Reset() { *m = ListPackagesRequest{} }
func (m *ListPackagesRequest) String() string { return proto.CompactTextString(m) }
func (*ListPackagesRequest) ProtoMessage() {}
func (*ListPackagesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
func (m *ListPackagesRequest) GetChannel() string {
if m != nil {
return m.Channel
}
return ""
}
func (m *ListPackagesRequest) GetPackageName() string {
if m != nil {
return m.PackageName
}
return ""
}
type ListPackagesResponse struct {
Packages []*Package `protobuf:"bytes,1,rep,name=Packages" json:"Packages,omitempty"`
}
func (m *ListPackagesResponse) Reset() { *m = ListPackagesResponse{} }
func (m *ListPackagesResponse) String() string { return proto.CompactTextString(m) }
func (*ListPackagesResponse) ProtoMessage() {}
func (*ListPackagesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
func (m *ListPackagesResponse) GetPackages() []*Package {
if m != nil {
return m.Packages
}
return nil
}
type DeletePackageRequest struct {
Channel string `protobuf:"bytes,1,opt,name=Channel" json:"Channel,omitempty"`
PackageName string `protobuf:"bytes,2,opt,name=PackageName" json:"PackageName,omitempty"`
Version string `protobuf:"bytes,3,opt,name=Version" json:"Version,omitempty"`
BinaryOS string `protobuf:"bytes,4,opt,name=BinaryOS" json:"BinaryOS,omitempty"`
BinaryArch string `protobuf:"bytes,5,opt,name=BinaryArch" json:"BinaryArch,omitempty"`
}
func (m *DeletePackageRequest) Reset() { *m = DeletePackageRequest{} }
func (m *DeletePackageRequest) String() string { return proto.CompactTextString(m) }
func (*DeletePackageRequest) ProtoMessage() {}
func (*DeletePackageRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
func (m *DeletePackageRequest) GetChannel() string {
if m != nil {
return m.Channel
}
return ""
}
func (m *DeletePackageRequest) GetPackageName() string {
if m != nil {
return m.PackageName
}
return ""
}
func (m *DeletePackageRequest) GetVersion() string {
if m != nil {
return m.Version
}
return ""
}
func (m *DeletePackageRequest) GetBinaryOS() string {
if m != nil {
return m.BinaryOS
}
return ""
}
func (m *DeletePackageRequest) GetBinaryArch() string {
if m != nil {
return m.BinaryArch
}
return ""
}
type DeletePackageResponse struct {
Success bool `protobuf:"varint,2,opt,name=Success" json:"Success,omitempty"`
}
func (m *DeletePackageResponse) Reset() { *m = DeletePackageResponse{} }
func (m *DeletePackageResponse) String() string { return proto.CompactTextString(m) }
func (*DeletePackageResponse) ProtoMessage() {}
func (*DeletePackageResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
func (m *DeletePackageResponse) GetSuccess() bool {
if m != nil {
return m.Success
}
return false
}
func init() {
proto.RegisterType((*Package)(nil), "update.Package")
proto.RegisterType((*ApplyUpdateRequest)(nil), "update.ApplyUpdateRequest")
proto.RegisterType((*ApplyUpdateResponse)(nil), "update.ApplyUpdateResponse")
proto.RegisterType((*UpdateRequest)(nil), "update.UpdateRequest")
proto.RegisterType((*UpdateResponse)(nil), "update.UpdateResponse")
proto.RegisterType((*PublishPackageRequest)(nil), "update.PublishPackageRequest")
proto.RegisterType((*PublishPackageResponse)(nil), "update.PublishPackageResponse")
proto.RegisterType((*ListPackagesRequest)(nil), "update.ListPackagesRequest")
proto.RegisterType((*ListPackagesResponse)(nil), "update.ListPackagesResponse")
proto.RegisterType((*DeletePackageRequest)(nil), "update.DeletePackageRequest")
proto.RegisterType((*DeletePackageResponse)(nil), "update.DeletePackageResponse")
proto.RegisterEnum("update.Package_PackageStatus", Package_PackageStatus_name, Package_PackageStatus_value)
}
func init() { proto.RegisterFile("update.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 895 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xdd, 0x6e, 0xe3, 0x44,
0x14, 0xc6, 0x49, 0xf3, 0xd3, 0x93, 0x26, 0xcd, 0x4e, 0x7f, 0x34, 0x32, 0xbb, 0x55, 0x64, 0xa1,
0x55, 0x10, 0x52, 0x22, 0xb2, 0x5a, 0x09, 0x21, 0x01, 0x0a, 0x29, 0xbb, 0xad, 0x14, 0x36, 0xc5,
0xd9, 0xe5, 0x0a, 0x2e, 0x26, 0xce, 0x59, 0xc7, 0xaa, 0x63, 0x67, 0x3d, 0xe3, 0x4a, 0x41, 0x3c,
0x08, 0x37, 0xdc, 0xf3, 0x18, 0xdc, 0xf3, 0x52, 0xc8, 0x33, 0xe3, 0xc4, 0x76, 0x52, 0x5a, 0xa4,
0xbd, 0x69, 0xe7, 0x7c, 0xe7, 0xd7, 0x73, 0xbe, 0x73, 0x26, 0x70, 0x14, 0xaf, 0xe6, 0x4c, 0x60,
0x6f, 0x15, 0x85, 0x22, 0x24, 0x55, 0x25, 0x99, 0x2f, 0x5c, 0x4f, 0x2c, 0xe2, 0x59, 0xcf, 0x09,
0x97, 0xfd, 0xd5, 0x7a, 0xee, 0x85, 0x7d, 0x07, 0x7d, 0x9f, 0xf7, 0x9d, 0x70, 0xb9, 0x0c, 0x83,
0xbe, 0x34, 0xee, 0x8b, 0x08, 0x51, 0xfe, 0x51, 0xce, 0xd6, 0x9f, 0x15, 0xa8, 0xdd, 0x30, 0xe7,
0x96, 0xb9, 0x48, 0x3a, 0xd0, 0xd0, 0xc7, 0x37, 0x6c, 0x89, 0xd4, 0xe8, 0x18, 0xdd, 0x43, 0x3b,
0x0b, 0x11, 0x0a, 0xb5, 0x9f, 0x31, 0xe2, 0x5e, 0x18, 0xd0, 0x92, 0xd4, 0xa6, 0x62, 0xe2, 0x6b,
0xa3, 0x8f, 0x8c, 0xe3, 0x25, 0x13, 0x48, 0xcb, 0x1d, 0xa3, 0x5b, 0xb1, 0xb3, 0x10, 0x39, 0x85,
0xca, 0x98, 0xcd, 0xd0, 0xa7, 0x07, 0xd2, 0x53, 0x09, 0x89, 0xdf, 0x25, 0x72, 0x27, 0xf2, 0x56,
0x22, 0x89, 0x5a, 0x51, 0x39, 0x33, 0x10, 0x79, 0x0a, 0x87, 0xa3, 0x05, 0x0b, 0x5c, 0x1c, 0x87,
0x2e, 0xad, 0x4a, 0xfd, 0x16, 0x48, 0x2a, 0x1a, 0x7b, 0x0e, 0x06, 0x1c, 0x69, 0x5b, 0x55, 0xa4,
0xc5, 0xc4, 0xef, 0x7b, 0x2f, 0x60, 0xd1, 0xfa, 0x9d, 0x3d, 0xa6, 0x35, 0xe5, 0xb7, 0x01, 0xc8,
0x73, 0x68, 0x29, 0x61, 0xb4, 0x40, 0xe7, 0x96, 0xc7, 0x4b, 0x5a, 0x97, 0x26, 0x05, 0x94, 0x74,
0xe1, 0x58, 0x21, 0x53, 0xcf, 0x0d, 0x98, 0x88, 0x23, 0xa4, 0x87, 0xd2, 0xb0, 0x08, 0x6f, 0x23,
0x5e, 0x31, 0xbe, 0x78, 0xbb, 0x5e, 0x21, 0x85, 0x6c, 0xc4, 0x14, 0x25, 0x17, 0x00, 0xa9, 0xeb,
0x6f, 0x48, 0x8f, 0x3b, 0x46, 0xb7, 0x6c, 0x67, 0x10, 0x62, 0x42, 0x5d, 0x49, 0x93, 0x29, 0x7d,
0x22, 0x23, 0x6c, 0xe4, 0xad, 0xef, 0x30, 0x72, 0x16, 0x94, 0x48, 0x6d, 0x06, 0x49, 0x6e, 0xe3,
0x9a, 0xdf, 0x30, 0xe1, 0x2c, 0x68, 0xa3, 0x63, 0x74, 0xeb, 0x76, 0x2a, 0x26, 0xd5, 0xc9, 0xc3,
0xd0, 0x77, 0xc3, 0xc8, 0x13, 0x8b, 0x25, 0x3d, 0x52, 0xd5, 0xe5, 0xd1, 0xa4, 0x1f, 0x53, 0x8c,
0xee, 0x3c, 0x47, 0x71, 0xa0, 0xa9, 0xfa, 0x91, 0x81, 0xc8, 0x4b, 0xa8, 0x4e, 0x05, 0x13, 0x31,
0xa7, 0xad, 0x8e, 0xd1, 0x6d, 0x0d, 0x9e, 0xf5, 0x34, 0x1b, 0x35, 0x51, 0xd2, 0xff, 0xca, 0xc8,
0xd6, 0xc6, 0xd6, 0x4b, 0x68, 0xe6, 0x14, 0xe4, 0x10, 0x2a, 0x97, 0x11, 0x7b, 0x2f, 0xda, 0x9f,
0x90, 0x06, 0xd4, 0x6e, 0x30, 0x98, 0x7b, 0x81, 0xdb, 0x36, 0xc8, 0x11, 0xd4, 0x35, 0x6d, 0xe6,
0xed, 0x92, 0xf5, 0x0b, 0x90, 0xe1, 0x6a, 0xe5, 0xaf, 0xdf, 0xc9, 0x1c, 0x36, 0x7e, 0x88, 0x91,
0x0b, 0xf2, 0x19, 0x34, 0xdf, 0xb2, 0xc8, 0x45, 0x91, 0xb2, 0x51, 0x71, 0x35, 0x0f, 0x16, 0xf9,
0x5c, 0xda, 0xe1, 0xb3, 0x75, 0x0d, 0x27, 0xb9, 0xe8, 0x7c, 0x15, 0x26, 0xd4, 0xa1, 0x50, 0x9b,
0xc6, 0x8e, 0x83, 0x9c, 0xcb, 0xc0, 0x75, 0x3b, 0x15, 0x13, 0xcd, 0x8f, 0xc8, 0x39, 0x73, 0xd3,
0x70, 0xa9, 0x68, 0xfd, 0x53, 0x82, 0x66, 0xbe, 0x48, 0x0a, 0xb5, 0x84, 0xa7, 0x01, 0xfa, 0xba,
0xbc, 0x54, 0x7c, 0xb8, 0xb0, 0xa4, 0x5d, 0xa3, 0x38, 0x8a, 0x30, 0xd8, 0x7c, 0x61, 0x59, 0xb5,
0x2b, 0x8f, 0x12, 0x02, 0x07, 0xaf, 0x27, 0x93, 0xa9, 0x9e, 0x29, 0x79, 0x26, 0xe7, 0x50, 0x7d,
0x3d, 0x19, 0xda, 0xa3, 0x2b, 0x3d, 0x4d, 0x5a, 0x2a, 0xb6, 0xb6, 0xba, 0xdb, 0xda, 0x2b, 0x68,
0xe8, 0xe9, 0xb9, 0x0e, 0xde, 0x87, 0xb4, 0xd6, 0x29, 0x77, 0x1b, 0x83, 0xe7, 0x69, 0x7f, 0x73,
0x5f, 0xd7, 0xcb, 0x18, 0xfe, 0x10, 0x88, 0x68, 0x6d, 0x67, 0x5d, 0xcd, 0x6f, 0xa1, 0x5d, 0x34,
0x20, 0x6d, 0x28, 0xdf, 0xe2, 0x5a, 0xdf, 0x45, 0x72, 0x4c, 0x56, 0xc2, 0x1d, 0xf3, 0xe3, 0xf4,
0x06, 0x94, 0xf0, 0x75, 0xe9, 0x2b, 0xc3, 0xf2, 0xa0, 0xb5, 0xdb, 0x93, 0x7b, 0x6e, 0xf3, 0x1b,
0x78, 0x32, 0xbc, 0x63, 0x9e, 0xcf, 0x66, 0x3e, 0xca, 0x59, 0xf0, 0x90, 0xd3, 0x92, 0xac, 0xfd,
0xb8, 0xc0, 0x4d, 0x7b, 0xd7, 0xd2, 0xfa, 0x1d, 0xce, 0x6e, 0xe2, 0x99, 0xef, 0xf1, 0x45, 0x6a,
0xf4, 0x60, 0xff, 0x3e, 0xdf, 0xec, 0x4c, 0x59, 0xf9, 0x9e, 0x3c, 0x9b, 0x9d, 0x7a, 0x01, 0x07,
0x6f, 0xc2, 0xb9, 0x5a, 0x88, 0x8d, 0x01, 0xf4, 0xe4, 0xea, 0x4d, 0x10, 0x5b, 0xe2, 0xd6, 0xaf,
0x70, 0x5e, 0xcc, 0xfe, 0x20, 0x09, 0x1f, 0x9f, 0xde, 0xfa, 0x09, 0x4e, 0xc6, 0x1e, 0x17, 0x5a,
0xe4, 0x1f, 0x81, 0x9a, 0xd6, 0x08, 0x4e, 0xf3, 0x21, 0x75, 0xbd, 0x5f, 0x40, 0x3d, 0xc5, 0xa8,
0xb1, 0xff, 0xf6, 0x37, 0x06, 0xd6, 0x5f, 0x06, 0x9c, 0x5e, 0xa2, 0x8f, 0x02, 0x1f, 0x7d, 0xe9,
0x0f, 0x0f, 0x4d, 0xe6, 0x75, 0x2a, 0xe7, 0x5f, 0xa7, 0xec, 0x4e, 0x3d, 0xf8, 0xcf, 0x9d, 0x5a,
0x29, 0xee, 0x54, 0xeb, 0x4b, 0x38, 0x2b, 0x54, 0xba, 0xdb, 0xa0, 0x52, 0xae, 0x41, 0x83, 0x3f,
0x8c, 0x74, 0x17, 0xe8, 0xe9, 0x22, 0xdf, 0x6d, 0xf9, 0xfc, 0x21, 0xf6, 0x22, 0x9c, 0x93, 0xb3,
0xbd, 0x63, 0x65, 0x9e, 0x17, 0x61, 0x9d, 0xec, 0x15, 0x34, 0x32, 0x9b, 0x8a, 0x98, 0xa9, 0xd9,
0xee, 0x72, 0x34, 0x3f, 0xdd, 0xab, 0x53, 0x71, 0x06, 0x7f, 0x97, 0xe0, 0x64, 0x5b, 0x1a, 0x46,
0x99, 0x02, 0xe5, 0x9b, 0xf7, 0x2a, 0x8c, 0x74, 0x8a, 0xff, 0x59, 0xe0, 0x04, 0x5a, 0x79, 0x22,
0x93, 0xed, 0xc3, 0xb0, 0x6f, 0xbc, 0xcc, 0x8b, 0xfb, 0xd4, 0x3a, 0xe0, 0x35, 0x1c, 0x65, 0x79,
0x46, 0x36, 0x9f, 0xb5, 0x87, 0xd0, 0xe6, 0xd3, 0xfd, 0x4a, 0x1d, 0x6a, 0x0c, 0xcd, 0x5c, 0x0b,
0xc9, 0xc6, 0x7c, 0x1f, 0x07, 0xcd, 0x67, 0xf7, 0x68, 0x55, 0xb4, 0x59, 0x55, 0xfe, 0x72, 0x7a,
0xf1, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x43, 0xba, 0xc2, 0x86, 0x09, 0x00, 0x00,
}