hello.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: hello.proto
  3. /*
  4. Package testproto is a generated protocol buffer package.
  5. It is generated from these files:
  6. hello.proto
  7. It has these top-level messages:
  8. HelloRequest
  9. HelloReply
  10. */
  11. package testproto
  12. import proto "github.com/golang/protobuf/proto"
  13. import fmt "fmt"
  14. import math "math"
  15. import _ "github.com/gogo/protobuf/gogoproto"
  16. import context "golang.org/x/net/context"
  17. import grpc "google.golang.org/grpc"
  18. import io "io"
  19. // Reference imports to suppress errors if they are not otherwise used.
  20. var _ = proto.Marshal
  21. var _ = fmt.Errorf
  22. var _ = math.Inf
  23. // This is a compile-time assertion to ensure that this generated file
  24. // is compatible with the proto package it is being compiled against.
  25. // A compilation error at this line likely means your copy of the
  26. // proto package needs to be updated.
  27. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  28. // The request message containing the user's name.
  29. type HelloRequest struct {
  30. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name" validate:"required"`
  31. Age int32 `protobuf:"varint,2,opt,name=age,proto3" json:"age" validate:"min=0"`
  32. }
  33. func (m *HelloRequest) Reset() { *m = HelloRequest{} }
  34. func (m *HelloRequest) String() string { return proto.CompactTextString(m) }
  35. func (*HelloRequest) ProtoMessage() {}
  36. func (*HelloRequest) Descriptor() ([]byte, []int) { return fileDescriptorHello, []int{0} }
  37. // The response message containing the greetings
  38. type HelloReply struct {
  39. Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
  40. Success bool `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
  41. }
  42. func (m *HelloReply) Reset() { *m = HelloReply{} }
  43. func (m *HelloReply) String() string { return proto.CompactTextString(m) }
  44. func (*HelloReply) ProtoMessage() {}
  45. func (*HelloReply) Descriptor() ([]byte, []int) { return fileDescriptorHello, []int{1} }
  46. func init() {
  47. proto.RegisterType((*HelloRequest)(nil), "testproto.HelloRequest")
  48. proto.RegisterType((*HelloReply)(nil), "testproto.HelloReply")
  49. }
  50. // Reference imports to suppress errors if they are not otherwise used.
  51. var _ context.Context
  52. var _ grpc.ClientConn
  53. // This is a compile-time assertion to ensure that this generated file
  54. // is compatible with the grpc package it is being compiled against.
  55. const _ = grpc.SupportPackageIsVersion4
  56. // Client API for Greeter service
  57. type GreeterClient interface {
  58. // Sends a greeting
  59. SayHello(ctx context.Context, in *HelloRequest, opts ...grpc.CallOption) (*HelloReply, error)
  60. // A bidirectional streaming RPC call recvice HelloRequest return HelloReply
  61. StreamHello(ctx context.Context, opts ...grpc.CallOption) (Greeter_StreamHelloClient, error)
  62. }
  63. type greeterClient struct {
  64. cc *grpc.ClientConn
  65. }
  66. func NewGreeterClient(cc *grpc.ClientConn) GreeterClient {
  67. return &greeterClient{cc}
  68. }
  69. func (c *greeterClient) SayHello(ctx context.Context, in *HelloRequest, opts ...grpc.CallOption) (*HelloReply, error) {
  70. out := new(HelloReply)
  71. err := grpc.Invoke(ctx, "/testproto.Greeter/SayHello", in, out, c.cc, opts...)
  72. if err != nil {
  73. return nil, err
  74. }
  75. return out, nil
  76. }
  77. func (c *greeterClient) StreamHello(ctx context.Context, opts ...grpc.CallOption) (Greeter_StreamHelloClient, error) {
  78. stream, err := grpc.NewClientStream(ctx, &_Greeter_serviceDesc.Streams[0], c.cc, "/testproto.Greeter/StreamHello", opts...)
  79. if err != nil {
  80. return nil, err
  81. }
  82. x := &greeterStreamHelloClient{stream}
  83. return x, nil
  84. }
  85. type Greeter_StreamHelloClient interface {
  86. Send(*HelloRequest) error
  87. Recv() (*HelloReply, error)
  88. grpc.ClientStream
  89. }
  90. type greeterStreamHelloClient struct {
  91. grpc.ClientStream
  92. }
  93. func (x *greeterStreamHelloClient) Send(m *HelloRequest) error {
  94. return x.ClientStream.SendMsg(m)
  95. }
  96. func (x *greeterStreamHelloClient) Recv() (*HelloReply, error) {
  97. m := new(HelloReply)
  98. if err := x.ClientStream.RecvMsg(m); err != nil {
  99. return nil, err
  100. }
  101. return m, nil
  102. }
  103. // Server API for Greeter service
  104. type GreeterServer interface {
  105. // Sends a greeting
  106. SayHello(context.Context, *HelloRequest) (*HelloReply, error)
  107. // A bidirectional streaming RPC call recvice HelloRequest return HelloReply
  108. StreamHello(Greeter_StreamHelloServer) error
  109. }
  110. func RegisterGreeterServer(s *grpc.Server, srv GreeterServer) {
  111. s.RegisterService(&_Greeter_serviceDesc, srv)
  112. }
  113. func _Greeter_SayHello_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  114. in := new(HelloRequest)
  115. if err := dec(in); err != nil {
  116. return nil, err
  117. }
  118. if interceptor == nil {
  119. return srv.(GreeterServer).SayHello(ctx, in)
  120. }
  121. info := &grpc.UnaryServerInfo{
  122. Server: srv,
  123. FullMethod: "/testproto.Greeter/SayHello",
  124. }
  125. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  126. return srv.(GreeterServer).SayHello(ctx, req.(*HelloRequest))
  127. }
  128. return interceptor(ctx, in, info, handler)
  129. }
  130. func _Greeter_StreamHello_Handler(srv interface{}, stream grpc.ServerStream) error {
  131. return srv.(GreeterServer).StreamHello(&greeterStreamHelloServer{stream})
  132. }
  133. type Greeter_StreamHelloServer interface {
  134. Send(*HelloReply) error
  135. Recv() (*HelloRequest, error)
  136. grpc.ServerStream
  137. }
  138. type greeterStreamHelloServer struct {
  139. grpc.ServerStream
  140. }
  141. func (x *greeterStreamHelloServer) Send(m *HelloReply) error {
  142. return x.ServerStream.SendMsg(m)
  143. }
  144. func (x *greeterStreamHelloServer) Recv() (*HelloRequest, error) {
  145. m := new(HelloRequest)
  146. if err := x.ServerStream.RecvMsg(m); err != nil {
  147. return nil, err
  148. }
  149. return m, nil
  150. }
  151. var _Greeter_serviceDesc = grpc.ServiceDesc{
  152. ServiceName: "testproto.Greeter",
  153. HandlerType: (*GreeterServer)(nil),
  154. Methods: []grpc.MethodDesc{
  155. {
  156. MethodName: "SayHello",
  157. Handler: _Greeter_SayHello_Handler,
  158. },
  159. },
  160. Streams: []grpc.StreamDesc{
  161. {
  162. StreamName: "StreamHello",
  163. Handler: _Greeter_StreamHello_Handler,
  164. ServerStreams: true,
  165. ClientStreams: true,
  166. },
  167. },
  168. Metadata: "hello.proto",
  169. }
  170. func (m *HelloRequest) Marshal() (dAtA []byte, err error) {
  171. size := m.Size()
  172. dAtA = make([]byte, size)
  173. n, err := m.MarshalTo(dAtA)
  174. if err != nil {
  175. return nil, err
  176. }
  177. return dAtA[:n], nil
  178. }
  179. func (m *HelloRequest) MarshalTo(dAtA []byte) (int, error) {
  180. var i int
  181. _ = i
  182. var l int
  183. _ = l
  184. if len(m.Name) > 0 {
  185. dAtA[i] = 0xa
  186. i++
  187. i = encodeVarintHello(dAtA, i, uint64(len(m.Name)))
  188. i += copy(dAtA[i:], m.Name)
  189. }
  190. if m.Age != 0 {
  191. dAtA[i] = 0x10
  192. i++
  193. i = encodeVarintHello(dAtA, i, uint64(m.Age))
  194. }
  195. return i, nil
  196. }
  197. func (m *HelloReply) Marshal() (dAtA []byte, err error) {
  198. size := m.Size()
  199. dAtA = make([]byte, size)
  200. n, err := m.MarshalTo(dAtA)
  201. if err != nil {
  202. return nil, err
  203. }
  204. return dAtA[:n], nil
  205. }
  206. func (m *HelloReply) MarshalTo(dAtA []byte) (int, error) {
  207. var i int
  208. _ = i
  209. var l int
  210. _ = l
  211. if len(m.Message) > 0 {
  212. dAtA[i] = 0xa
  213. i++
  214. i = encodeVarintHello(dAtA, i, uint64(len(m.Message)))
  215. i += copy(dAtA[i:], m.Message)
  216. }
  217. if m.Success {
  218. dAtA[i] = 0x10
  219. i++
  220. if m.Success {
  221. dAtA[i] = 1
  222. } else {
  223. dAtA[i] = 0
  224. }
  225. i++
  226. }
  227. return i, nil
  228. }
  229. func encodeVarintHello(dAtA []byte, offset int, v uint64) int {
  230. for v >= 1<<7 {
  231. dAtA[offset] = uint8(v&0x7f | 0x80)
  232. v >>= 7
  233. offset++
  234. }
  235. dAtA[offset] = uint8(v)
  236. return offset + 1
  237. }
  238. func (m *HelloRequest) Size() (n int) {
  239. var l int
  240. _ = l
  241. l = len(m.Name)
  242. if l > 0 {
  243. n += 1 + l + sovHello(uint64(l))
  244. }
  245. if m.Age != 0 {
  246. n += 1 + sovHello(uint64(m.Age))
  247. }
  248. return n
  249. }
  250. func (m *HelloReply) Size() (n int) {
  251. var l int
  252. _ = l
  253. l = len(m.Message)
  254. if l > 0 {
  255. n += 1 + l + sovHello(uint64(l))
  256. }
  257. if m.Success {
  258. n += 2
  259. }
  260. return n
  261. }
  262. func sovHello(x uint64) (n int) {
  263. for {
  264. n++
  265. x >>= 7
  266. if x == 0 {
  267. break
  268. }
  269. }
  270. return n
  271. }
  272. func sozHello(x uint64) (n int) {
  273. return sovHello(uint64((x << 1) ^ uint64((int64(x) >> 63))))
  274. }
  275. func (m *HelloRequest) Unmarshal(dAtA []byte) error {
  276. l := len(dAtA)
  277. iNdEx := 0
  278. for iNdEx < l {
  279. preIndex := iNdEx
  280. var wire uint64
  281. for shift := uint(0); ; shift += 7 {
  282. if shift >= 64 {
  283. return ErrIntOverflowHello
  284. }
  285. if iNdEx >= l {
  286. return io.ErrUnexpectedEOF
  287. }
  288. b := dAtA[iNdEx]
  289. iNdEx++
  290. wire |= (uint64(b) & 0x7F) << shift
  291. if b < 0x80 {
  292. break
  293. }
  294. }
  295. fieldNum := int32(wire >> 3)
  296. wireType := int(wire & 0x7)
  297. if wireType == 4 {
  298. return fmt.Errorf("proto: HelloRequest: wiretype end group for non-group")
  299. }
  300. if fieldNum <= 0 {
  301. return fmt.Errorf("proto: HelloRequest: illegal tag %d (wire type %d)", fieldNum, wire)
  302. }
  303. switch fieldNum {
  304. case 1:
  305. if wireType != 2 {
  306. return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
  307. }
  308. var stringLen uint64
  309. for shift := uint(0); ; shift += 7 {
  310. if shift >= 64 {
  311. return ErrIntOverflowHello
  312. }
  313. if iNdEx >= l {
  314. return io.ErrUnexpectedEOF
  315. }
  316. b := dAtA[iNdEx]
  317. iNdEx++
  318. stringLen |= (uint64(b) & 0x7F) << shift
  319. if b < 0x80 {
  320. break
  321. }
  322. }
  323. intStringLen := int(stringLen)
  324. if intStringLen < 0 {
  325. return ErrInvalidLengthHello
  326. }
  327. postIndex := iNdEx + intStringLen
  328. if postIndex > l {
  329. return io.ErrUnexpectedEOF
  330. }
  331. m.Name = string(dAtA[iNdEx:postIndex])
  332. iNdEx = postIndex
  333. case 2:
  334. if wireType != 0 {
  335. return fmt.Errorf("proto: wrong wireType = %d for field Age", wireType)
  336. }
  337. m.Age = 0
  338. for shift := uint(0); ; shift += 7 {
  339. if shift >= 64 {
  340. return ErrIntOverflowHello
  341. }
  342. if iNdEx >= l {
  343. return io.ErrUnexpectedEOF
  344. }
  345. b := dAtA[iNdEx]
  346. iNdEx++
  347. m.Age |= (int32(b) & 0x7F) << shift
  348. if b < 0x80 {
  349. break
  350. }
  351. }
  352. default:
  353. iNdEx = preIndex
  354. skippy, err := skipHello(dAtA[iNdEx:])
  355. if err != nil {
  356. return err
  357. }
  358. if skippy < 0 {
  359. return ErrInvalidLengthHello
  360. }
  361. if (iNdEx + skippy) > l {
  362. return io.ErrUnexpectedEOF
  363. }
  364. iNdEx += skippy
  365. }
  366. }
  367. if iNdEx > l {
  368. return io.ErrUnexpectedEOF
  369. }
  370. return nil
  371. }
  372. func (m *HelloReply) Unmarshal(dAtA []byte) error {
  373. l := len(dAtA)
  374. iNdEx := 0
  375. for iNdEx < l {
  376. preIndex := iNdEx
  377. var wire uint64
  378. for shift := uint(0); ; shift += 7 {
  379. if shift >= 64 {
  380. return ErrIntOverflowHello
  381. }
  382. if iNdEx >= l {
  383. return io.ErrUnexpectedEOF
  384. }
  385. b := dAtA[iNdEx]
  386. iNdEx++
  387. wire |= (uint64(b) & 0x7F) << shift
  388. if b < 0x80 {
  389. break
  390. }
  391. }
  392. fieldNum := int32(wire >> 3)
  393. wireType := int(wire & 0x7)
  394. if wireType == 4 {
  395. return fmt.Errorf("proto: HelloReply: wiretype end group for non-group")
  396. }
  397. if fieldNum <= 0 {
  398. return fmt.Errorf("proto: HelloReply: illegal tag %d (wire type %d)", fieldNum, wire)
  399. }
  400. switch fieldNum {
  401. case 1:
  402. if wireType != 2 {
  403. return fmt.Errorf("proto: wrong wireType = %d for field Message", wireType)
  404. }
  405. var stringLen uint64
  406. for shift := uint(0); ; shift += 7 {
  407. if shift >= 64 {
  408. return ErrIntOverflowHello
  409. }
  410. if iNdEx >= l {
  411. return io.ErrUnexpectedEOF
  412. }
  413. b := dAtA[iNdEx]
  414. iNdEx++
  415. stringLen |= (uint64(b) & 0x7F) << shift
  416. if b < 0x80 {
  417. break
  418. }
  419. }
  420. intStringLen := int(stringLen)
  421. if intStringLen < 0 {
  422. return ErrInvalidLengthHello
  423. }
  424. postIndex := iNdEx + intStringLen
  425. if postIndex > l {
  426. return io.ErrUnexpectedEOF
  427. }
  428. m.Message = string(dAtA[iNdEx:postIndex])
  429. iNdEx = postIndex
  430. case 2:
  431. if wireType != 0 {
  432. return fmt.Errorf("proto: wrong wireType = %d for field Success", wireType)
  433. }
  434. var v int
  435. for shift := uint(0); ; shift += 7 {
  436. if shift >= 64 {
  437. return ErrIntOverflowHello
  438. }
  439. if iNdEx >= l {
  440. return io.ErrUnexpectedEOF
  441. }
  442. b := dAtA[iNdEx]
  443. iNdEx++
  444. v |= (int(b) & 0x7F) << shift
  445. if b < 0x80 {
  446. break
  447. }
  448. }
  449. m.Success = bool(v != 0)
  450. default:
  451. iNdEx = preIndex
  452. skippy, err := skipHello(dAtA[iNdEx:])
  453. if err != nil {
  454. return err
  455. }
  456. if skippy < 0 {
  457. return ErrInvalidLengthHello
  458. }
  459. if (iNdEx + skippy) > l {
  460. return io.ErrUnexpectedEOF
  461. }
  462. iNdEx += skippy
  463. }
  464. }
  465. if iNdEx > l {
  466. return io.ErrUnexpectedEOF
  467. }
  468. return nil
  469. }
  470. func skipHello(dAtA []byte) (n int, err error) {
  471. l := len(dAtA)
  472. iNdEx := 0
  473. for iNdEx < l {
  474. var wire uint64
  475. for shift := uint(0); ; shift += 7 {
  476. if shift >= 64 {
  477. return 0, ErrIntOverflowHello
  478. }
  479. if iNdEx >= l {
  480. return 0, io.ErrUnexpectedEOF
  481. }
  482. b := dAtA[iNdEx]
  483. iNdEx++
  484. wire |= (uint64(b) & 0x7F) << shift
  485. if b < 0x80 {
  486. break
  487. }
  488. }
  489. wireType := int(wire & 0x7)
  490. switch wireType {
  491. case 0:
  492. for shift := uint(0); ; shift += 7 {
  493. if shift >= 64 {
  494. return 0, ErrIntOverflowHello
  495. }
  496. if iNdEx >= l {
  497. return 0, io.ErrUnexpectedEOF
  498. }
  499. iNdEx++
  500. if dAtA[iNdEx-1] < 0x80 {
  501. break
  502. }
  503. }
  504. return iNdEx, nil
  505. case 1:
  506. iNdEx += 8
  507. return iNdEx, nil
  508. case 2:
  509. var length int
  510. for shift := uint(0); ; shift += 7 {
  511. if shift >= 64 {
  512. return 0, ErrIntOverflowHello
  513. }
  514. if iNdEx >= l {
  515. return 0, io.ErrUnexpectedEOF
  516. }
  517. b := dAtA[iNdEx]
  518. iNdEx++
  519. length |= (int(b) & 0x7F) << shift
  520. if b < 0x80 {
  521. break
  522. }
  523. }
  524. iNdEx += length
  525. if length < 0 {
  526. return 0, ErrInvalidLengthHello
  527. }
  528. return iNdEx, nil
  529. case 3:
  530. for {
  531. var innerWire uint64
  532. var start int = iNdEx
  533. for shift := uint(0); ; shift += 7 {
  534. if shift >= 64 {
  535. return 0, ErrIntOverflowHello
  536. }
  537. if iNdEx >= l {
  538. return 0, io.ErrUnexpectedEOF
  539. }
  540. b := dAtA[iNdEx]
  541. iNdEx++
  542. innerWire |= (uint64(b) & 0x7F) << shift
  543. if b < 0x80 {
  544. break
  545. }
  546. }
  547. innerWireType := int(innerWire & 0x7)
  548. if innerWireType == 4 {
  549. break
  550. }
  551. next, err := skipHello(dAtA[start:])
  552. if err != nil {
  553. return 0, err
  554. }
  555. iNdEx = start + next
  556. }
  557. return iNdEx, nil
  558. case 4:
  559. return iNdEx, nil
  560. case 5:
  561. iNdEx += 4
  562. return iNdEx, nil
  563. default:
  564. return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
  565. }
  566. }
  567. panic("unreachable")
  568. }
  569. var (
  570. ErrInvalidLengthHello = fmt.Errorf("proto: negative length found during unmarshaling")
  571. ErrIntOverflowHello = fmt.Errorf("proto: integer overflow")
  572. )
  573. func init() { proto.RegisterFile("hello.proto", fileDescriptorHello) }
  574. var fileDescriptorHello = []byte{
  575. // 296 bytes of a gzipped FileDescriptorProto
  576. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x90, 0x3f, 0x4e, 0xc3, 0x30,
  577. 0x14, 0xc6, 0x63, 0xfe, 0xb5, 0x75, 0x19, 0x90, 0x11, 0x22, 0x2a, 0x92, 0x53, 0x79, 0xca, 0xd2,
  578. 0xb4, 0xa2, 0x1b, 0x02, 0x09, 0x85, 0x01, 0xe6, 0xf4, 0x04, 0x4e, 0xfa, 0x48, 0x23, 0x25, 0x75,
  579. 0x6a, 0x3b, 0x48, 0xb9, 0x03, 0x07, 0xe0, 0x48, 0x1d, 0x7b, 0x82, 0x88, 0x86, 0xad, 0x63, 0x4f,
  580. 0x80, 0x62, 0x28, 0x20, 0xb1, 0x75, 0x7b, 0x3f, 0x7f, 0xfa, 0x7e, 0x4f, 0x7e, 0xb8, 0x3b, 0x83,
  581. 0x34, 0x15, 0x5e, 0x2e, 0x85, 0x16, 0xa4, 0xa3, 0x41, 0x69, 0x33, 0xf6, 0x06, 0x71, 0xa2, 0x67,
  582. 0x45, 0xe8, 0x45, 0x22, 0x1b, 0xc6, 0x22, 0x16, 0x43, 0xf3, 0x1c, 0x16, 0xcf, 0x86, 0x0c, 0x98,
  583. 0xe9, 0xab, 0xc9, 0x24, 0x3e, 0x7d, 0x6a, 0x44, 0x01, 0x2c, 0x0a, 0x50, 0x9a, 0x8c, 0xf1, 0xd1,
  584. 0x9c, 0x67, 0x60, 0xa3, 0x3e, 0x72, 0x3b, 0xbe, 0xb3, 0xa9, 0x1c, 0xc3, 0xdb, 0xca, 0x39, 0x7f,
  585. 0xe1, 0x69, 0x32, 0xe5, 0x1a, 0x6e, 0x98, 0x84, 0x45, 0x91, 0x48, 0x98, 0xb2, 0xc0, 0x84, 0x64,
  586. 0x80, 0x0f, 0x79, 0x0c, 0xf6, 0x41, 0x1f, 0xb9, 0xc7, 0xfe, 0xd5, 0xa6, 0x72, 0x1a, 0xdc, 0x56,
  587. 0xce, 0xd9, 0x6f, 0x25, 0x4b, 0xe6, 0x77, 0x23, 0x16, 0x34, 0x01, 0xbb, 0xc7, 0xf8, 0x7b, 0x67,
  588. 0x9e, 0x96, 0xc4, 0xc6, 0xad, 0x0c, 0x94, 0x6a, 0x04, 0x66, 0x69, 0xb0, 0xc3, 0x26, 0x51, 0x45,
  589. 0x14, 0x81, 0x52, 0x46, 0xdd, 0x0e, 0x76, 0x78, 0xfd, 0x8a, 0x70, 0xeb, 0x51, 0x02, 0x68, 0x90,
  590. 0xe4, 0x16, 0xb7, 0x27, 0xbc, 0x34, 0x42, 0x72, 0xe9, 0xfd, 0x1c, 0xc2, 0xfb, 0xfb, 0xad, 0xde,
  591. 0xc5, 0xff, 0x20, 0x4f, 0x4b, 0x66, 0x91, 0x07, 0xdc, 0x9d, 0x68, 0x09, 0x3c, 0xdb, 0x53, 0xe0,
  592. 0xa2, 0x11, 0xf2, 0xed, 0xe5, 0x9a, 0x5a, 0xab, 0x35, 0xb5, 0x96, 0x35, 0x45, 0xab, 0x9a, 0xa2,
  593. 0xf7, 0x9a, 0xa2, 0xb7, 0x0f, 0x6a, 0x85, 0x27, 0xa6, 0x31, 0xfe, 0x0c, 0x00, 0x00, 0xff, 0xff,
  594. 0x13, 0x57, 0x88, 0x03, 0xae, 0x01, 0x00, 0x00,
  595. }