saas-smartAi通信协议标准库
gongshangguo
2022-02-24 165375777462156242c191d517a2660664e47e8a
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
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: aiot_common.proto
 
package aiot
 
import (
    fmt "fmt"
    proto "github.com/golang/protobuf/proto"
    math "math"
)
 
// 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.ProtoPackageIsVersion3 // please upgrade the proto package
 
// 协议格式:
// |  int32  | | enum int32 | |    int32   | |                      []byte                     | |  enum int32  | |  enum int32  | |        []byte        | |  []byte   |
// ----------- -------------- -------------- --------------------------------------------------- ---------------- ---------------- ------------------------ --------------
//   length      receiver        senderId                        deviceProto                           msgType          reqType            msgIdProto            data
//  数据包长度     接受者身份        发送者ID                           设备信息                             消息类型           请求类型               消息ID             消息体
//    4byte
//                                          {|    string    | |     string     | |    string   |}                                 {|  string  | | string  |}
//                                           ---------------- ------------------ ---------------                                   ------------ -----------
//                                               clusterId       masterDeviceId      DeviceIds                                         msgId     PreMsgId
//                                                 集群ID        集群Master设备ID    消息指向的设备ID                                       消息ID     原始消息ID
// 消息接收者
type RECEIVER int32
 
const (
    // 发送给saas
    RECEIVER_TO_SAAS RECEIVER = 0
    // 发送给集群master
    RECEIVER_TO_MASTER RECEIVER = 1
    // 发送给集群全部成员
    RECEIVER_TO_CLUSTER RECEIVER = 2
    // 发送给集群某一个节点
    RECEIVER_TO_NODE RECEIVER = 3
    // 发送给集群中部分节点
    RECEIVER_TO_NODE_LIST RECEIVER = 4
)
 
var RECEIVER_name = map[int32]string{
    0: "TO_SAAS",
    1: "TO_MASTER",
    2: "TO_CLUSTER",
    3: "TO_NODE",
    4: "TO_NODE_LIST",
}
 
var RECEIVER_value = map[string]int32{
    "TO_SAAS":      0,
    "TO_MASTER":    1,
    "TO_CLUSTER":   2,
    "TO_NODE":      3,
    "TO_NODE_LIST": 4,
}
 
func (x RECEIVER) String() string {
    return proto.EnumName(RECEIVER_name, int32(x))
}
 
func (RECEIVER) EnumDescriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{0}
}
 
// 消息类型
type MSG_TYPE int32
 
const (
    // 心跳
    MSG_TYPE_HEART_BEAT MSG_TYPE = 0
    // 注册
    MSG_TYPE_REGISTER MSG_TYPE = 1
    // 数据上报
    MSG_TYPE_DATA_REPORT MSG_TYPE = 2
    // 设备控制
    MSG_TYPE_CONTROL MSG_TYPE = 3
    // 业务消息
    MSG_TYPE_BUSINESS MSG_TYPE = 9
)
 
var MSG_TYPE_name = map[int32]string{
    0: "HEART_BEAT",
    1: "REGISTER",
    2: "DATA_REPORT",
    3: "CONTROL",
    9: "BUSINESS",
}
 
var MSG_TYPE_value = map[string]int32{
    "HEART_BEAT":  0,
    "REGISTER":    1,
    "DATA_REPORT": 2,
    "CONTROL":     3,
    "BUSINESS":    9,
}
 
func (x MSG_TYPE) String() string {
    return proto.EnumName(MSG_TYPE_name, int32(x))
}
 
func (MSG_TYPE) EnumDescriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{1}
}
 
// 请求类型
type REQ_TYPE int32
 
const (
    // 收到请求
    REQ_TYPE_REQUEST REQ_TYPE = 0
    // 收到应答
    REQ_TYPE_RESPONSE REQ_TYPE = 1
)
 
var REQ_TYPE_name = map[int32]string{
    0: "REQUEST",
    1: "RESPONSE",
}
 
var REQ_TYPE_value = map[string]int32{
    "REQUEST":  0,
    "RESPONSE": 1,
}
 
func (x REQ_TYPE) String() string {
    return proto.EnumName(REQ_TYPE_name, int32(x))
}
 
func (REQ_TYPE) EnumDescriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{2}
}
 
// 设备信息组成
type DeviceProto struct {
    // 集群ID
    ClusterId string `protobuf:"bytes,1,opt,name=clusterId,proto3" json:"clusterId,omitempty"`
    // 主节点ID
    MasterDeviceId string `protobuf:"bytes,2,opt,name=masterDeviceId,proto3" json:"masterDeviceId,omitempty"`
    // 消息接收者
    DeviceIds            []string `protobuf:"bytes,3,rep,name=deviceIds,proto3" json:"deviceIds,omitempty"`
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *DeviceProto) Reset()         { *m = DeviceProto{} }
func (m *DeviceProto) String() string { return proto.CompactTextString(m) }
func (*DeviceProto) ProtoMessage()    {}
func (*DeviceProto) Descriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{0}
}
 
func (m *DeviceProto) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_DeviceProto.Unmarshal(m, b)
}
func (m *DeviceProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_DeviceProto.Marshal(b, m, deterministic)
}
func (m *DeviceProto) XXX_Merge(src proto.Message) {
    xxx_messageInfo_DeviceProto.Merge(m, src)
}
func (m *DeviceProto) XXX_Size() int {
    return xxx_messageInfo_DeviceProto.Size(m)
}
func (m *DeviceProto) XXX_DiscardUnknown() {
    xxx_messageInfo_DeviceProto.DiscardUnknown(m)
}
 
var xxx_messageInfo_DeviceProto proto.InternalMessageInfo
 
func (m *DeviceProto) GetClusterId() string {
    if m != nil {
        return m.ClusterId
    }
    return ""
}
 
func (m *DeviceProto) GetMasterDeviceId() string {
    if m != nil {
        return m.MasterDeviceId
    }
    return ""
}
 
func (m *DeviceProto) GetDeviceIds() []string {
    if m != nil {
        return m.DeviceIds
    }
    return nil
}
 
// 消息ID
type MsgIdProto struct {
    MsgId                string   `protobuf:"bytes,1,opt,name=msgId,proto3" json:"msgId,omitempty"`
    PreMsgId             string   `protobuf:"bytes,2,opt,name=preMsgId,proto3" json:"preMsgId,omitempty"`
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *MsgIdProto) Reset()         { *m = MsgIdProto{} }
func (m *MsgIdProto) String() string { return proto.CompactTextString(m) }
func (*MsgIdProto) ProtoMessage()    {}
func (*MsgIdProto) Descriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{1}
}
 
func (m *MsgIdProto) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_MsgIdProto.Unmarshal(m, b)
}
func (m *MsgIdProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_MsgIdProto.Marshal(b, m, deterministic)
}
func (m *MsgIdProto) XXX_Merge(src proto.Message) {
    xxx_messageInfo_MsgIdProto.Merge(m, src)
}
func (m *MsgIdProto) XXX_Size() int {
    return xxx_messageInfo_MsgIdProto.Size(m)
}
func (m *MsgIdProto) XXX_DiscardUnknown() {
    xxx_messageInfo_MsgIdProto.DiscardUnknown(m)
}
 
var xxx_messageInfo_MsgIdProto proto.InternalMessageInfo
 
func (m *MsgIdProto) GetMsgId() string {
    if m != nil {
        return m.MsgId
    }
    return ""
}
 
func (m *MsgIdProto) GetPreMsgId() string {
    if m != nil {
        return m.PreMsgId
    }
    return ""
}
 
// 消息体
type BusinessProto struct {
    Topic                string   `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
    Request              []byte   `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
    Authorization        string   `protobuf:"bytes,3,opt,name=authorization,proto3" json:"authorization,omitempty"`
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *BusinessProto) Reset()         { *m = BusinessProto{} }
func (m *BusinessProto) String() string { return proto.CompactTextString(m) }
func (*BusinessProto) ProtoMessage()    {}
func (*BusinessProto) Descriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{2}
}
 
func (m *BusinessProto) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_BusinessProto.Unmarshal(m, b)
}
func (m *BusinessProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_BusinessProto.Marshal(b, m, deterministic)
}
func (m *BusinessProto) XXX_Merge(src proto.Message) {
    xxx_messageInfo_BusinessProto.Merge(m, src)
}
func (m *BusinessProto) XXX_Size() int {
    return xxx_messageInfo_BusinessProto.Size(m)
}
func (m *BusinessProto) XXX_DiscardUnknown() {
    xxx_messageInfo_BusinessProto.DiscardUnknown(m)
}
 
var xxx_messageInfo_BusinessProto proto.InternalMessageInfo
 
func (m *BusinessProto) GetTopic() string {
    if m != nil {
        return m.Topic
    }
    return ""
}
 
func (m *BusinessProto) GetRequest() []byte {
    if m != nil {
        return m.Request
    }
    return nil
}
 
func (m *BusinessProto) GetAuthorization() string {
    if m != nil {
        return m.Authorization
    }
    return ""
}
 
// 消息体组成
type Protocol struct {
    Receiver             RECEIVER     `protobuf:"varint,1,opt,name=receiver,proto3,enum=aiot.RECEIVER" json:"receiver,omitempty"`
    SenderId             string       `protobuf:"bytes,2,opt,name=senderId,proto3" json:"senderId,omitempty"`
    DeviceProto          *DeviceProto `protobuf:"bytes,3,opt,name=deviceProto,proto3" json:"deviceProto,omitempty"`
    MsgType              MSG_TYPE     `protobuf:"varint,4,opt,name=msgType,proto3,enum=aiot.MSG_TYPE" json:"msgType,omitempty"`
    ReqType              REQ_TYPE     `protobuf:"varint,5,opt,name=reqType,proto3,enum=aiot.REQ_TYPE" json:"reqType,omitempty"`
    MsgProto             *MsgIdProto  `protobuf:"bytes,6,opt,name=msgProto,proto3" json:"msgProto,omitempty"`
    Data                 []byte       `protobuf:"bytes,7,opt,name=data,proto3" json:"data,omitempty"`
    XXX_NoUnkeyedLiteral struct{}     `json:"-"`
    XXX_unrecognized     []byte       `json:"-"`
    XXX_sizecache        int32        `json:"-"`
}
 
func (m *Protocol) Reset()         { *m = Protocol{} }
func (m *Protocol) String() string { return proto.CompactTextString(m) }
func (*Protocol) ProtoMessage()    {}
func (*Protocol) Descriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{3}
}
 
func (m *Protocol) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_Protocol.Unmarshal(m, b)
}
func (m *Protocol) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_Protocol.Marshal(b, m, deterministic)
}
func (m *Protocol) XXX_Merge(src proto.Message) {
    xxx_messageInfo_Protocol.Merge(m, src)
}
func (m *Protocol) XXX_Size() int {
    return xxx_messageInfo_Protocol.Size(m)
}
func (m *Protocol) XXX_DiscardUnknown() {
    xxx_messageInfo_Protocol.DiscardUnknown(m)
}
 
var xxx_messageInfo_Protocol proto.InternalMessageInfo
 
func (m *Protocol) GetReceiver() RECEIVER {
    if m != nil {
        return m.Receiver
    }
    return RECEIVER_TO_SAAS
}
 
func (m *Protocol) GetSenderId() string {
    if m != nil {
        return m.SenderId
    }
    return ""
}
 
func (m *Protocol) GetDeviceProto() *DeviceProto {
    if m != nil {
        return m.DeviceProto
    }
    return nil
}
 
func (m *Protocol) GetMsgType() MSG_TYPE {
    if m != nil {
        return m.MsgType
    }
    return MSG_TYPE_HEART_BEAT
}
 
func (m *Protocol) GetReqType() REQ_TYPE {
    if m != nil {
        return m.ReqType
    }
    return REQ_TYPE_REQUEST
}
 
func (m *Protocol) GetMsgProto() *MsgIdProto {
    if m != nil {
        return m.MsgProto
    }
    return nil
}
 
func (m *Protocol) GetData() []byte {
    if m != nil {
        return m.Data
    }
    return nil
}
 
// 心跳包
type HeartBeatProto struct {
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *HeartBeatProto) Reset()         { *m = HeartBeatProto{} }
func (m *HeartBeatProto) String() string { return proto.CompactTextString(m) }
func (*HeartBeatProto) ProtoMessage()    {}
func (*HeartBeatProto) Descriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{4}
}
 
func (m *HeartBeatProto) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_HeartBeatProto.Unmarshal(m, b)
}
func (m *HeartBeatProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_HeartBeatProto.Marshal(b, m, deterministic)
}
func (m *HeartBeatProto) XXX_Merge(src proto.Message) {
    xxx_messageInfo_HeartBeatProto.Merge(m, src)
}
func (m *HeartBeatProto) XXX_Size() int {
    return xxx_messageInfo_HeartBeatProto.Size(m)
}
func (m *HeartBeatProto) XXX_DiscardUnknown() {
    xxx_messageInfo_HeartBeatProto.DiscardUnknown(m)
}
 
var xxx_messageInfo_HeartBeatProto proto.InternalMessageInfo
 
// 注册节点ID
type DeviceNode struct {
    DeviceId             string   `protobuf:"bytes,1,opt,name=deviceId,proto3" json:"deviceId,omitempty"`
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *DeviceNode) Reset()         { *m = DeviceNode{} }
func (m *DeviceNode) String() string { return proto.CompactTextString(m) }
func (*DeviceNode) ProtoMessage()    {}
func (*DeviceNode) Descriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{5}
}
 
func (m *DeviceNode) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_DeviceNode.Unmarshal(m, b)
}
func (m *DeviceNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_DeviceNode.Marshal(b, m, deterministic)
}
func (m *DeviceNode) XXX_Merge(src proto.Message) {
    xxx_messageInfo_DeviceNode.Merge(m, src)
}
func (m *DeviceNode) XXX_Size() int {
    return xxx_messageInfo_DeviceNode.Size(m)
}
func (m *DeviceNode) XXX_DiscardUnknown() {
    xxx_messageInfo_DeviceNode.DiscardUnknown(m)
}
 
var xxx_messageInfo_DeviceNode proto.InternalMessageInfo
 
func (m *DeviceNode) GetDeviceId() string {
    if m != nil {
        return m.DeviceId
    }
    return ""
}
 
// 设备注册包
type DeviceRegister struct {
    // 设备ID
    DeviceId string `protobuf:"bytes,1,opt,name=deviceId,proto3" json:"deviceId,omitempty"`
    //设备名称
    ServerName string `protobuf:"bytes,2,opt,name=serverName,proto3" json:"serverName,omitempty"`
    // 集群ID
    ClusterId string `protobuf:"bytes,3,opt,name=clusterId,proto3" json:"clusterId,omitempty"`
    // 集群名称
    ClusterName string `protobuf:"bytes,4,opt,name=clusterName,proto3" json:"clusterName,omitempty"`
    // 漂移IP
    VirtualIp string `protobuf:"bytes,5,opt,name=virtualIp,proto3" json:"virtualIp,omitempty"`
    // 集群节点列表
    DeviceList           []*DeviceNode `protobuf:"bytes,6,rep,name=deviceList,proto3" json:"deviceList,omitempty"`
    XXX_NoUnkeyedLiteral struct{}      `json:"-"`
    XXX_unrecognized     []byte        `json:"-"`
    XXX_sizecache        int32         `json:"-"`
}
 
func (m *DeviceRegister) Reset()         { *m = DeviceRegister{} }
func (m *DeviceRegister) String() string { return proto.CompactTextString(m) }
func (*DeviceRegister) ProtoMessage()    {}
func (*DeviceRegister) Descriptor() ([]byte, []int) {
    return fileDescriptor_828c587c973bbaf3, []int{6}
}
 
func (m *DeviceRegister) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_DeviceRegister.Unmarshal(m, b)
}
func (m *DeviceRegister) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_DeviceRegister.Marshal(b, m, deterministic)
}
func (m *DeviceRegister) XXX_Merge(src proto.Message) {
    xxx_messageInfo_DeviceRegister.Merge(m, src)
}
func (m *DeviceRegister) XXX_Size() int {
    return xxx_messageInfo_DeviceRegister.Size(m)
}
func (m *DeviceRegister) XXX_DiscardUnknown() {
    xxx_messageInfo_DeviceRegister.DiscardUnknown(m)
}
 
var xxx_messageInfo_DeviceRegister proto.InternalMessageInfo
 
func (m *DeviceRegister) GetDeviceId() string {
    if m != nil {
        return m.DeviceId
    }
    return ""
}
 
func (m *DeviceRegister) GetServerName() string {
    if m != nil {
        return m.ServerName
    }
    return ""
}
 
func (m *DeviceRegister) GetClusterId() string {
    if m != nil {
        return m.ClusterId
    }
    return ""
}
 
func (m *DeviceRegister) GetClusterName() string {
    if m != nil {
        return m.ClusterName
    }
    return ""
}
 
func (m *DeviceRegister) GetVirtualIp() string {
    if m != nil {
        return m.VirtualIp
    }
    return ""
}
 
func (m *DeviceRegister) GetDeviceList() []*DeviceNode {
    if m != nil {
        return m.DeviceList
    }
    return nil
}
 
func init() {
    proto.RegisterEnum("aiot.RECEIVER", RECEIVER_name, RECEIVER_value)
    proto.RegisterEnum("aiot.MSG_TYPE", MSG_TYPE_name, MSG_TYPE_value)
    proto.RegisterEnum("aiot.REQ_TYPE", REQ_TYPE_name, REQ_TYPE_value)
    proto.RegisterType((*DeviceProto)(nil), "aiot.DeviceProto")
    proto.RegisterType((*MsgIdProto)(nil), "aiot.MsgIdProto")
    proto.RegisterType((*BusinessProto)(nil), "aiot.BusinessProto")
    proto.RegisterType((*Protocol)(nil), "aiot.Protocol")
    proto.RegisterType((*HeartBeatProto)(nil), "aiot.HeartBeatProto")
    proto.RegisterType((*DeviceNode)(nil), "aiot.DeviceNode")
    proto.RegisterType((*DeviceRegister)(nil), "aiot.DeviceRegister")
}
 
func init() {
    proto.RegisterFile("aiot_common.proto", fileDescriptor_828c587c973bbaf3)
}
 
var fileDescriptor_828c587c973bbaf3 = []byte{
    // 584 bytes of a gzipped FileDescriptorProto
    0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0x41, 0x6b, 0xdb, 0x4c,
    0x10, 0x8d, 0x23, 0x27, 0xb6, 0xc7, 0x89, 0x3e, 0x65, 0xf9, 0x0e, 0xa2, 0x94, 0x62, 0x44, 0x5b,
    0x82, 0x29, 0xa1, 0x24, 0xf7, 0x82, 0x9c, 0x2c, 0x89, 0xc0, 0x91, 0x9c, 0xd5, 0xba, 0xd0, 0x93,
    0x50, 0xa5, 0xc5, 0x15, 0x44, 0x96, 0xb3, 0xbb, 0x36, 0xb4, 0xff, 0xa5, 0xff, 0xac, 0x3f, 0xa6,
    0xec, 0x6a, 0x25, 0xcb, 0x39, 0xf4, 0xb6, 0xef, 0xcd, 0x9b, 0x37, 0xa3, 0x99, 0x41, 0x70, 0x91,
    0x16, 0x95, 0x4c, 0xb2, 0xaa, 0x2c, 0xab, 0xf5, 0xd5, 0x86, 0x57, 0xb2, 0x42, 0x7d, 0x45, 0x79,
    0x2f, 0x30, 0xbe, 0x63, 0xbb, 0x22, 0x63, 0x0b, 0x4d, 0xbe, 0x85, 0x51, 0xf6, 0xbc, 0x15, 0x92,
    0xf1, 0x20, 0x77, 0x7b, 0x93, 0xde, 0xe5, 0x88, 0xec, 0x09, 0xf4, 0x11, 0xec, 0x32, 0x55, 0xef,
    0x3a, 0x25, 0xc8, 0xdd, 0x63, 0x2d, 0x79, 0xc5, 0x2a, 0x97, 0xdc, 0xbc, 0x85, 0x6b, 0x4d, 0x2c,
    0xe5, 0xd2, 0x12, 0xde, 0x17, 0x80, 0x47, 0xb1, 0x0a, 0xf2, 0xba, 0xe2, 0xff, 0x70, 0x52, 0x2a,
    0x64, 0xaa, 0xd5, 0x00, 0xbd, 0x81, 0xe1, 0x86, 0x33, 0x2d, 0x33, 0x35, 0x5a, 0xec, 0x31, 0x38,
    0x9f, 0x6d, 0x45, 0xb1, 0x66, 0x42, 0xb4, 0x16, 0xb2, 0xda, 0x14, 0x59, 0x63, 0xa1, 0x01, 0x72,
    0x61, 0xc0, 0xd9, 0xcb, 0x96, 0x09, 0xa9, 0x1d, 0xce, 0x48, 0x03, 0xd1, 0x7b, 0x38, 0x4f, 0xb7,
    0xf2, 0x47, 0xc5, 0x8b, 0x5f, 0xa9, 0x2c, 0xaa, 0xb5, 0x6b, 0xe9, 0xbc, 0x43, 0xd2, 0xfb, 0x7d,
    0x0c, 0x43, 0xed, 0x9f, 0x55, 0xcf, 0x68, 0x0a, 0x43, 0xce, 0x32, 0x56, 0xec, 0x18, 0xd7, 0x55,
    0xec, 0x6b, 0xfb, 0x4a, 0xcd, 0xef, 0x8a, 0xe0, 0x5b, 0x1c, 0x7c, 0xc5, 0x84, 0xb4, 0x71, 0xd5,
    0xbb, 0x60, 0xeb, 0x5c, 0x8f, 0xd0, 0xf4, 0xde, 0x60, 0x74, 0x03, 0xe3, 0x7c, 0x3f, 0x6e, 0x5d,
    0x78, 0x7c, 0x7d, 0x51, 0x5b, 0x75, 0xf6, 0x40, 0xba, 0x2a, 0x74, 0x09, 0x83, 0x52, 0xac, 0xe8,
    0xcf, 0x0d, 0x73, 0xfb, 0xdd, 0xda, 0x8f, 0xf1, 0x7d, 0x42, 0xbf, 0x2d, 0x30, 0x69, 0xc2, 0x4a,
    0xc9, 0xd9, 0x8b, 0x56, 0x9e, 0x1c, 0x76, 0xf9, 0x64, 0x94, 0x26, 0x8c, 0x3e, 0xc1, 0xb0, 0x14,
    0xab, 0xba, 0x8b, 0x53, 0xdd, 0x85, 0x63, 0x4c, 0xdb, 0xd5, 0x90, 0x56, 0x81, 0x10, 0xf4, 0xf3,
    0x54, 0xa6, 0xee, 0x40, 0x0f, 0x52, 0xbf, 0x3d, 0x07, 0xec, 0x07, 0x96, 0x72, 0x39, 0x63, 0xa9,
    0xd4, 0x2a, 0xef, 0x12, 0xa0, 0xfe, 0x86, 0xb0, 0xca, 0x99, 0x1a, 0x43, 0xb3, 0x73, 0xb3, 0x98,
    0x16, 0x7b, 0x7f, 0x7a, 0x60, 0xd7, 0x52, 0xc2, 0x56, 0x85, 0xba, 0x9d, 0x7f, 0xc9, 0xd1, 0x3b,
    0x00, 0xc1, 0xf8, 0x8e, 0xf1, 0x30, 0x2d, 0x99, 0x99, 0x69, 0x87, 0x39, 0xbc, 0x5a, 0xeb, 0xf5,
    0xd5, 0x4e, 0x60, 0x6c, 0x80, 0x4e, 0xef, 0xeb, 0x78, 0x97, 0x52, 0xf9, 0xbb, 0x82, 0xcb, 0x6d,
    0xfa, 0x1c, 0x6c, 0xf4, 0xe0, 0x46, 0x64, 0x4f, 0xa0, 0xcf, 0x00, 0x75, 0x27, 0xf3, 0x42, 0x48,
    0xf7, 0x74, 0x62, 0xed, 0x87, 0xb5, 0xff, 0x5c, 0xd2, 0xd1, 0x4c, 0x97, 0x30, 0x6c, 0xee, 0x02,
    0x8d, 0x61, 0x40, 0xa3, 0x24, 0xf6, 0xfd, 0xd8, 0x39, 0x42, 0xe7, 0x30, 0xa2, 0x51, 0xf2, 0xe8,
    0xc7, 0x14, 0x13, 0xa7, 0x87, 0x6c, 0x00, 0x1a, 0x25, 0xb7, 0xf3, 0xa5, 0xc6, 0xc7, 0x46, 0x1b,
    0x46, 0x77, 0xd8, 0xb1, 0x90, 0x03, 0x67, 0x06, 0x24, 0xf3, 0x20, 0xa6, 0x4e, 0x7f, 0x4a, 0x61,
    0xd8, 0xac, 0x5c, 0xa5, 0x3e, 0x60, 0x9f, 0xd0, 0x64, 0x86, 0x7d, 0xea, 0x1c, 0xa1, 0x33, 0x55,
    0xf2, 0x3e, 0x30, 0xc6, 0xff, 0xc1, 0xf8, 0xce, 0xa7, 0x7e, 0x42, 0xf0, 0x22, 0x22, 0xb4, 0x76,
    0xbe, 0x8d, 0x42, 0x4a, 0xa2, 0xb9, 0x63, 0x29, 0xed, 0x6c, 0x19, 0x07, 0x21, 0x8e, 0x63, 0x67,
    0x34, 0xfd, 0xa0, 0x32, 0xeb, 0xf3, 0x50, 0x32, 0x82, 0x9f, 0x96, 0x38, 0x6e, 0x2d, 0xe3, 0x45,
    0x14, 0xc6, 0xd8, 0xe9, 0x7d, 0x3f, 0xd5, 0x7f, 0x8d, 0x9b, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff,
    0xbf, 0xdc, 0xf0, 0xd5, 0x4a, 0x04, 0x00, 0x00,
}