enumstringer.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585
  1. // Code generated by protoc-gen-gogo. DO NOT EDIT.
  2. // source: enumstringer.proto
  3. /*
  4. Package enumstringer is a generated protocol buffer package.
  5. It is generated from these files:
  6. enumstringer.proto
  7. It has these top-level messages:
  8. NidOptEnum
  9. NinOptEnum
  10. NidRepEnum
  11. NinRepEnum
  12. */
  13. package enumstringer
  14. import proto "github.com/gogo/protobuf/proto"
  15. import fmt "fmt"
  16. import math "math"
  17. import _ "github.com/gogo/protobuf/gogoproto"
  18. import bytes "bytes"
  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.GoGoProtoPackageIsVersion2 // please upgrade the proto package
  28. type TheTestEnum int32
  29. const (
  30. TheTestEnum_A TheTestEnum = 0
  31. TheTestEnum_B TheTestEnum = 1
  32. TheTestEnum_C TheTestEnum = 2
  33. )
  34. var TheTestEnum_name = map[int32]string{
  35. 0: "A",
  36. 1: "B",
  37. 2: "C",
  38. }
  39. var TheTestEnum_value = map[string]int32{
  40. "A": 0,
  41. "B": 1,
  42. "C": 2,
  43. }
  44. func (x TheTestEnum) Enum() *TheTestEnum {
  45. p := new(TheTestEnum)
  46. *p = x
  47. return p
  48. }
  49. func (x TheTestEnum) MarshalJSON() ([]byte, error) {
  50. return proto.MarshalJSONEnum(TheTestEnum_name, int32(x))
  51. }
  52. func (x *TheTestEnum) UnmarshalJSON(data []byte) error {
  53. value, err := proto.UnmarshalJSONEnum(TheTestEnum_value, data, "TheTestEnum")
  54. if err != nil {
  55. return err
  56. }
  57. *x = TheTestEnum(value)
  58. return nil
  59. }
  60. func (TheTestEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{0} }
  61. type NidOptEnum struct {
  62. Field1 TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=enumstringer.TheTestEnum" json:"Field1"`
  63. XXX_unrecognized []byte `json:"-"`
  64. }
  65. func (m *NidOptEnum) Reset() { *m = NidOptEnum{} }
  66. func (m *NidOptEnum) String() string { return proto.CompactTextString(m) }
  67. func (*NidOptEnum) ProtoMessage() {}
  68. func (*NidOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{0} }
  69. func (m *NidOptEnum) GetField1() TheTestEnum {
  70. if m != nil {
  71. return m.Field1
  72. }
  73. return TheTestEnum_A
  74. }
  75. type NinOptEnum struct {
  76. Field1 *TheTestEnum `protobuf:"varint,1,opt,name=Field1,enum=enumstringer.TheTestEnum" json:"Field1,omitempty"`
  77. XXX_unrecognized []byte `json:"-"`
  78. }
  79. func (m *NinOptEnum) Reset() { *m = NinOptEnum{} }
  80. func (m *NinOptEnum) String() string { return proto.CompactTextString(m) }
  81. func (*NinOptEnum) ProtoMessage() {}
  82. func (*NinOptEnum) Descriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{1} }
  83. func (m *NinOptEnum) GetField1() TheTestEnum {
  84. if m != nil && m.Field1 != nil {
  85. return *m.Field1
  86. }
  87. return TheTestEnum_A
  88. }
  89. type NidRepEnum struct {
  90. Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=enumstringer.TheTestEnum" json:"Field1,omitempty"`
  91. XXX_unrecognized []byte `json:"-"`
  92. }
  93. func (m *NidRepEnum) Reset() { *m = NidRepEnum{} }
  94. func (m *NidRepEnum) String() string { return proto.CompactTextString(m) }
  95. func (*NidRepEnum) ProtoMessage() {}
  96. func (*NidRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{2} }
  97. func (m *NidRepEnum) GetField1() []TheTestEnum {
  98. if m != nil {
  99. return m.Field1
  100. }
  101. return nil
  102. }
  103. type NinRepEnum struct {
  104. Field1 []TheTestEnum `protobuf:"varint,1,rep,name=Field1,enum=enumstringer.TheTestEnum" json:"Field1,omitempty"`
  105. XXX_unrecognized []byte `json:"-"`
  106. }
  107. func (m *NinRepEnum) Reset() { *m = NinRepEnum{} }
  108. func (m *NinRepEnum) String() string { return proto.CompactTextString(m) }
  109. func (*NinRepEnum) ProtoMessage() {}
  110. func (*NinRepEnum) Descriptor() ([]byte, []int) { return fileDescriptorEnumstringer, []int{3} }
  111. func (m *NinRepEnum) GetField1() []TheTestEnum {
  112. if m != nil {
  113. return m.Field1
  114. }
  115. return nil
  116. }
  117. func init() {
  118. proto.RegisterType((*NidOptEnum)(nil), "enumstringer.NidOptEnum")
  119. proto.RegisterType((*NinOptEnum)(nil), "enumstringer.NinOptEnum")
  120. proto.RegisterType((*NidRepEnum)(nil), "enumstringer.NidRepEnum")
  121. proto.RegisterType((*NinRepEnum)(nil), "enumstringer.NinRepEnum")
  122. proto.RegisterEnum("enumstringer.TheTestEnum", TheTestEnum_name, TheTestEnum_value)
  123. }
  124. func (this *NidOptEnum) VerboseEqual(that interface{}) error {
  125. if that == nil {
  126. if this == nil {
  127. return nil
  128. }
  129. return fmt.Errorf("that == nil && this != nil")
  130. }
  131. that1, ok := that.(*NidOptEnum)
  132. if !ok {
  133. that2, ok := that.(NidOptEnum)
  134. if ok {
  135. that1 = &that2
  136. } else {
  137. return fmt.Errorf("that is not of type *NidOptEnum")
  138. }
  139. }
  140. if that1 == nil {
  141. if this == nil {
  142. return nil
  143. }
  144. return fmt.Errorf("that is type *NidOptEnum but is nil && this != nil")
  145. } else if this == nil {
  146. return fmt.Errorf("that is type *NidOptEnum but is not nil && this == nil")
  147. }
  148. if this.Field1 != that1.Field1 {
  149. return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1)
  150. }
  151. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  152. return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
  153. }
  154. return nil
  155. }
  156. func (this *NidOptEnum) Equal(that interface{}) bool {
  157. if that == nil {
  158. if this == nil {
  159. return true
  160. }
  161. return false
  162. }
  163. that1, ok := that.(*NidOptEnum)
  164. if !ok {
  165. that2, ok := that.(NidOptEnum)
  166. if ok {
  167. that1 = &that2
  168. } else {
  169. return false
  170. }
  171. }
  172. if that1 == nil {
  173. if this == nil {
  174. return true
  175. }
  176. return false
  177. } else if this == nil {
  178. return false
  179. }
  180. if this.Field1 != that1.Field1 {
  181. return false
  182. }
  183. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  184. return false
  185. }
  186. return true
  187. }
  188. func (this *NinOptEnum) VerboseEqual(that interface{}) error {
  189. if that == nil {
  190. if this == nil {
  191. return nil
  192. }
  193. return fmt.Errorf("that == nil && this != nil")
  194. }
  195. that1, ok := that.(*NinOptEnum)
  196. if !ok {
  197. that2, ok := that.(NinOptEnum)
  198. if ok {
  199. that1 = &that2
  200. } else {
  201. return fmt.Errorf("that is not of type *NinOptEnum")
  202. }
  203. }
  204. if that1 == nil {
  205. if this == nil {
  206. return nil
  207. }
  208. return fmt.Errorf("that is type *NinOptEnum but is nil && this != nil")
  209. } else if this == nil {
  210. return fmt.Errorf("that is type *NinOptEnum but is not nil && this == nil")
  211. }
  212. if this.Field1 != nil && that1.Field1 != nil {
  213. if *this.Field1 != *that1.Field1 {
  214. return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", *this.Field1, *that1.Field1)
  215. }
  216. } else if this.Field1 != nil {
  217. return fmt.Errorf("this.Field1 == nil && that.Field1 != nil")
  218. } else if that1.Field1 != nil {
  219. return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", this.Field1, that1.Field1)
  220. }
  221. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  222. return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
  223. }
  224. return nil
  225. }
  226. func (this *NinOptEnum) Equal(that interface{}) bool {
  227. if that == nil {
  228. if this == nil {
  229. return true
  230. }
  231. return false
  232. }
  233. that1, ok := that.(*NinOptEnum)
  234. if !ok {
  235. that2, ok := that.(NinOptEnum)
  236. if ok {
  237. that1 = &that2
  238. } else {
  239. return false
  240. }
  241. }
  242. if that1 == nil {
  243. if this == nil {
  244. return true
  245. }
  246. return false
  247. } else if this == nil {
  248. return false
  249. }
  250. if this.Field1 != nil && that1.Field1 != nil {
  251. if *this.Field1 != *that1.Field1 {
  252. return false
  253. }
  254. } else if this.Field1 != nil {
  255. return false
  256. } else if that1.Field1 != nil {
  257. return false
  258. }
  259. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  260. return false
  261. }
  262. return true
  263. }
  264. func (this *NidRepEnum) VerboseEqual(that interface{}) error {
  265. if that == nil {
  266. if this == nil {
  267. return nil
  268. }
  269. return fmt.Errorf("that == nil && this != nil")
  270. }
  271. that1, ok := that.(*NidRepEnum)
  272. if !ok {
  273. that2, ok := that.(NidRepEnum)
  274. if ok {
  275. that1 = &that2
  276. } else {
  277. return fmt.Errorf("that is not of type *NidRepEnum")
  278. }
  279. }
  280. if that1 == nil {
  281. if this == nil {
  282. return nil
  283. }
  284. return fmt.Errorf("that is type *NidRepEnum but is nil && this != nil")
  285. } else if this == nil {
  286. return fmt.Errorf("that is type *NidRepEnum but is not nil && this == nil")
  287. }
  288. if len(this.Field1) != len(that1.Field1) {
  289. return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1))
  290. }
  291. for i := range this.Field1 {
  292. if this.Field1[i] != that1.Field1[i] {
  293. return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i])
  294. }
  295. }
  296. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  297. return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
  298. }
  299. return nil
  300. }
  301. func (this *NidRepEnum) Equal(that interface{}) bool {
  302. if that == nil {
  303. if this == nil {
  304. return true
  305. }
  306. return false
  307. }
  308. that1, ok := that.(*NidRepEnum)
  309. if !ok {
  310. that2, ok := that.(NidRepEnum)
  311. if ok {
  312. that1 = &that2
  313. } else {
  314. return false
  315. }
  316. }
  317. if that1 == nil {
  318. if this == nil {
  319. return true
  320. }
  321. return false
  322. } else if this == nil {
  323. return false
  324. }
  325. if len(this.Field1) != len(that1.Field1) {
  326. return false
  327. }
  328. for i := range this.Field1 {
  329. if this.Field1[i] != that1.Field1[i] {
  330. return false
  331. }
  332. }
  333. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  334. return false
  335. }
  336. return true
  337. }
  338. func (this *NinRepEnum) VerboseEqual(that interface{}) error {
  339. if that == nil {
  340. if this == nil {
  341. return nil
  342. }
  343. return fmt.Errorf("that == nil && this != nil")
  344. }
  345. that1, ok := that.(*NinRepEnum)
  346. if !ok {
  347. that2, ok := that.(NinRepEnum)
  348. if ok {
  349. that1 = &that2
  350. } else {
  351. return fmt.Errorf("that is not of type *NinRepEnum")
  352. }
  353. }
  354. if that1 == nil {
  355. if this == nil {
  356. return nil
  357. }
  358. return fmt.Errorf("that is type *NinRepEnum but is nil && this != nil")
  359. } else if this == nil {
  360. return fmt.Errorf("that is type *NinRepEnum but is not nil && this == nil")
  361. }
  362. if len(this.Field1) != len(that1.Field1) {
  363. return fmt.Errorf("Field1 this(%v) Not Equal that(%v)", len(this.Field1), len(that1.Field1))
  364. }
  365. for i := range this.Field1 {
  366. if this.Field1[i] != that1.Field1[i] {
  367. return fmt.Errorf("Field1 this[%v](%v) Not Equal that[%v](%v)", i, this.Field1[i], i, that1.Field1[i])
  368. }
  369. }
  370. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  371. return fmt.Errorf("XXX_unrecognized this(%v) Not Equal that(%v)", this.XXX_unrecognized, that1.XXX_unrecognized)
  372. }
  373. return nil
  374. }
  375. func (this *NinRepEnum) Equal(that interface{}) bool {
  376. if that == nil {
  377. if this == nil {
  378. return true
  379. }
  380. return false
  381. }
  382. that1, ok := that.(*NinRepEnum)
  383. if !ok {
  384. that2, ok := that.(NinRepEnum)
  385. if ok {
  386. that1 = &that2
  387. } else {
  388. return false
  389. }
  390. }
  391. if that1 == nil {
  392. if this == nil {
  393. return true
  394. }
  395. return false
  396. } else if this == nil {
  397. return false
  398. }
  399. if len(this.Field1) != len(that1.Field1) {
  400. return false
  401. }
  402. for i := range this.Field1 {
  403. if this.Field1[i] != that1.Field1[i] {
  404. return false
  405. }
  406. }
  407. if !bytes.Equal(this.XXX_unrecognized, that1.XXX_unrecognized) {
  408. return false
  409. }
  410. return true
  411. }
  412. func NewPopulatedNidOptEnum(r randyEnumstringer, easy bool) *NidOptEnum {
  413. this := &NidOptEnum{}
  414. this.Field1 = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)])
  415. if !easy && r.Intn(10) != 0 {
  416. this.XXX_unrecognized = randUnrecognizedEnumstringer(r, 2)
  417. }
  418. return this
  419. }
  420. func NewPopulatedNinOptEnum(r randyEnumstringer, easy bool) *NinOptEnum {
  421. this := &NinOptEnum{}
  422. if r.Intn(10) != 0 {
  423. v1 := TheTestEnum([]int32{0, 1, 2}[r.Intn(3)])
  424. this.Field1 = &v1
  425. }
  426. if !easy && r.Intn(10) != 0 {
  427. this.XXX_unrecognized = randUnrecognizedEnumstringer(r, 2)
  428. }
  429. return this
  430. }
  431. func NewPopulatedNidRepEnum(r randyEnumstringer, easy bool) *NidRepEnum {
  432. this := &NidRepEnum{}
  433. if r.Intn(10) != 0 {
  434. v2 := r.Intn(10)
  435. this.Field1 = make([]TheTestEnum, v2)
  436. for i := 0; i < v2; i++ {
  437. this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)])
  438. }
  439. }
  440. if !easy && r.Intn(10) != 0 {
  441. this.XXX_unrecognized = randUnrecognizedEnumstringer(r, 2)
  442. }
  443. return this
  444. }
  445. func NewPopulatedNinRepEnum(r randyEnumstringer, easy bool) *NinRepEnum {
  446. this := &NinRepEnum{}
  447. if r.Intn(10) != 0 {
  448. v3 := r.Intn(10)
  449. this.Field1 = make([]TheTestEnum, v3)
  450. for i := 0; i < v3; i++ {
  451. this.Field1[i] = TheTestEnum([]int32{0, 1, 2}[r.Intn(3)])
  452. }
  453. }
  454. if !easy && r.Intn(10) != 0 {
  455. this.XXX_unrecognized = randUnrecognizedEnumstringer(r, 2)
  456. }
  457. return this
  458. }
  459. type randyEnumstringer interface {
  460. Float32() float32
  461. Float64() float64
  462. Int63() int64
  463. Int31() int32
  464. Uint32() uint32
  465. Intn(n int) int
  466. }
  467. func randUTF8RuneEnumstringer(r randyEnumstringer) rune {
  468. ru := r.Intn(62)
  469. if ru < 10 {
  470. return rune(ru + 48)
  471. } else if ru < 36 {
  472. return rune(ru + 55)
  473. }
  474. return rune(ru + 61)
  475. }
  476. func randStringEnumstringer(r randyEnumstringer) string {
  477. v4 := r.Intn(100)
  478. tmps := make([]rune, v4)
  479. for i := 0; i < v4; i++ {
  480. tmps[i] = randUTF8RuneEnumstringer(r)
  481. }
  482. return string(tmps)
  483. }
  484. func randUnrecognizedEnumstringer(r randyEnumstringer, maxFieldNumber int) (dAtA []byte) {
  485. l := r.Intn(5)
  486. for i := 0; i < l; i++ {
  487. wire := r.Intn(4)
  488. if wire == 3 {
  489. wire = 5
  490. }
  491. fieldNumber := maxFieldNumber + r.Intn(100)
  492. dAtA = randFieldEnumstringer(dAtA, r, fieldNumber, wire)
  493. }
  494. return dAtA
  495. }
  496. func randFieldEnumstringer(dAtA []byte, r randyEnumstringer, fieldNumber int, wire int) []byte {
  497. key := uint32(fieldNumber)<<3 | uint32(wire)
  498. switch wire {
  499. case 0:
  500. dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(key))
  501. v5 := r.Int63()
  502. if r.Intn(2) == 0 {
  503. v5 *= -1
  504. }
  505. dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(v5))
  506. case 1:
  507. dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(key))
  508. dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)))
  509. case 2:
  510. dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(key))
  511. ll := r.Intn(100)
  512. dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(ll))
  513. for j := 0; j < ll; j++ {
  514. dAtA = append(dAtA, byte(r.Intn(256)))
  515. }
  516. default:
  517. dAtA = encodeVarintPopulateEnumstringer(dAtA, uint64(key))
  518. dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)))
  519. }
  520. return dAtA
  521. }
  522. func encodeVarintPopulateEnumstringer(dAtA []byte, v uint64) []byte {
  523. for v >= 1<<7 {
  524. dAtA = append(dAtA, uint8(uint64(v)&0x7f|0x80))
  525. v >>= 7
  526. }
  527. dAtA = append(dAtA, uint8(v))
  528. return dAtA
  529. }
  530. func init() { proto.RegisterFile("enumstringer.proto", fileDescriptorEnumstringer) }
  531. var fileDescriptorEnumstringer = []byte{
  532. // 208 bytes of a gzipped FileDescriptorProto
  533. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4a, 0xcd, 0x2b, 0xcd,
  534. 0x2d, 0x2e, 0x29, 0xca, 0xcc, 0x4b, 0x4f, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2,
  535. 0x41, 0x16, 0x93, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f,
  536. 0xcf, 0x4f, 0xcf, 0xd7, 0x07, 0x2b, 0x4a, 0x2a, 0x4d, 0x03, 0xf3, 0xc0, 0x1c, 0x30, 0x0b, 0xa2,
  537. 0x59, 0xc9, 0x95, 0x8b, 0xcb, 0x2f, 0x33, 0xc5, 0xbf, 0xa0, 0xc4, 0x35, 0xaf, 0x34, 0x57, 0xc8,
  538. 0x9c, 0x8b, 0xcd, 0x2d, 0x33, 0x35, 0x27, 0xc5, 0x50, 0x82, 0x51, 0x81, 0x51, 0x83, 0xcf, 0x48,
  539. 0x52, 0x0f, 0xc5, 0xbe, 0x90, 0x8c, 0xd4, 0x90, 0xd4, 0x62, 0xb0, 0x52, 0x27, 0x96, 0x13, 0xf7,
  540. 0xe4, 0x19, 0x82, 0xa0, 0xca, 0x95, 0xec, 0x41, 0xc6, 0xe4, 0xc1, 0x8c, 0x31, 0x24, 0xda, 0x18,
  541. 0xb8, 0x01, 0x10, 0x77, 0x04, 0xa5, 0x16, 0x60, 0xb8, 0x83, 0x99, 0x74, 0x77, 0xc0, 0x8c, 0x31,
  542. 0x24, 0xda, 0x18, 0x98, 0x01, 0x5a, 0x4a, 0x5c, 0xdc, 0x48, 0xc2, 0x42, 0xac, 0x5c, 0x8c, 0x8e,
  543. 0x02, 0x0c, 0x20, 0xca, 0x49, 0x80, 0x11, 0x44, 0x39, 0x0b, 0x30, 0x39, 0x89, 0x3c, 0x78, 0x28,
  544. 0xc7, 0xf8, 0xe3, 0xa1, 0x1c, 0xe3, 0x8a, 0x47, 0x72, 0x8c, 0x3b, 0x1e, 0xc9, 0x31, 0xbe, 0x78,
  545. 0x24, 0xc7, 0x00, 0x08, 0x00, 0x00, 0xff, 0xff, 0x2c, 0xb2, 0x8f, 0xc2, 0x9b, 0x01, 0x00, 0x00,
  546. }