您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

642 行
21 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/protobuf/type.proto
  3. package ptype // import "google.golang.org/genproto/protobuf/ptype"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import any "github.com/golang/protobuf/ptypes/any"
  8. import source_context "google.golang.org/genproto/protobuf/source_context"
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  18. // The syntax in which a protocol buffer element is defined.
  19. type Syntax int32
  20. const (
  21. // Syntax `proto2`.
  22. Syntax_SYNTAX_PROTO2 Syntax = 0
  23. // Syntax `proto3`.
  24. Syntax_SYNTAX_PROTO3 Syntax = 1
  25. )
  26. var Syntax_name = map[int32]string{
  27. 0: "SYNTAX_PROTO2",
  28. 1: "SYNTAX_PROTO3",
  29. }
  30. var Syntax_value = map[string]int32{
  31. "SYNTAX_PROTO2": 0,
  32. "SYNTAX_PROTO3": 1,
  33. }
  34. func (x Syntax) String() string {
  35. return proto.EnumName(Syntax_name, int32(x))
  36. }
  37. func (Syntax) EnumDescriptor() ([]byte, []int) {
  38. return fileDescriptor_type_de958d9f8682c896, []int{0}
  39. }
  40. // Basic field types.
  41. type Field_Kind int32
  42. const (
  43. // Field type unknown.
  44. Field_TYPE_UNKNOWN Field_Kind = 0
  45. // Field type double.
  46. Field_TYPE_DOUBLE Field_Kind = 1
  47. // Field type float.
  48. Field_TYPE_FLOAT Field_Kind = 2
  49. // Field type int64.
  50. Field_TYPE_INT64 Field_Kind = 3
  51. // Field type uint64.
  52. Field_TYPE_UINT64 Field_Kind = 4
  53. // Field type int32.
  54. Field_TYPE_INT32 Field_Kind = 5
  55. // Field type fixed64.
  56. Field_TYPE_FIXED64 Field_Kind = 6
  57. // Field type fixed32.
  58. Field_TYPE_FIXED32 Field_Kind = 7
  59. // Field type bool.
  60. Field_TYPE_BOOL Field_Kind = 8
  61. // Field type string.
  62. Field_TYPE_STRING Field_Kind = 9
  63. // Field type group. Proto2 syntax only, and deprecated.
  64. Field_TYPE_GROUP Field_Kind = 10
  65. // Field type message.
  66. Field_TYPE_MESSAGE Field_Kind = 11
  67. // Field type bytes.
  68. Field_TYPE_BYTES Field_Kind = 12
  69. // Field type uint32.
  70. Field_TYPE_UINT32 Field_Kind = 13
  71. // Field type enum.
  72. Field_TYPE_ENUM Field_Kind = 14
  73. // Field type sfixed32.
  74. Field_TYPE_SFIXED32 Field_Kind = 15
  75. // Field type sfixed64.
  76. Field_TYPE_SFIXED64 Field_Kind = 16
  77. // Field type sint32.
  78. Field_TYPE_SINT32 Field_Kind = 17
  79. // Field type sint64.
  80. Field_TYPE_SINT64 Field_Kind = 18
  81. )
  82. var Field_Kind_name = map[int32]string{
  83. 0: "TYPE_UNKNOWN",
  84. 1: "TYPE_DOUBLE",
  85. 2: "TYPE_FLOAT",
  86. 3: "TYPE_INT64",
  87. 4: "TYPE_UINT64",
  88. 5: "TYPE_INT32",
  89. 6: "TYPE_FIXED64",
  90. 7: "TYPE_FIXED32",
  91. 8: "TYPE_BOOL",
  92. 9: "TYPE_STRING",
  93. 10: "TYPE_GROUP",
  94. 11: "TYPE_MESSAGE",
  95. 12: "TYPE_BYTES",
  96. 13: "TYPE_UINT32",
  97. 14: "TYPE_ENUM",
  98. 15: "TYPE_SFIXED32",
  99. 16: "TYPE_SFIXED64",
  100. 17: "TYPE_SINT32",
  101. 18: "TYPE_SINT64",
  102. }
  103. var Field_Kind_value = map[string]int32{
  104. "TYPE_UNKNOWN": 0,
  105. "TYPE_DOUBLE": 1,
  106. "TYPE_FLOAT": 2,
  107. "TYPE_INT64": 3,
  108. "TYPE_UINT64": 4,
  109. "TYPE_INT32": 5,
  110. "TYPE_FIXED64": 6,
  111. "TYPE_FIXED32": 7,
  112. "TYPE_BOOL": 8,
  113. "TYPE_STRING": 9,
  114. "TYPE_GROUP": 10,
  115. "TYPE_MESSAGE": 11,
  116. "TYPE_BYTES": 12,
  117. "TYPE_UINT32": 13,
  118. "TYPE_ENUM": 14,
  119. "TYPE_SFIXED32": 15,
  120. "TYPE_SFIXED64": 16,
  121. "TYPE_SINT32": 17,
  122. "TYPE_SINT64": 18,
  123. }
  124. func (x Field_Kind) String() string {
  125. return proto.EnumName(Field_Kind_name, int32(x))
  126. }
  127. func (Field_Kind) EnumDescriptor() ([]byte, []int) {
  128. return fileDescriptor_type_de958d9f8682c896, []int{1, 0}
  129. }
  130. // Whether a field is optional, required, or repeated.
  131. type Field_Cardinality int32
  132. const (
  133. // For fields with unknown cardinality.
  134. Field_CARDINALITY_UNKNOWN Field_Cardinality = 0
  135. // For optional fields.
  136. Field_CARDINALITY_OPTIONAL Field_Cardinality = 1
  137. // For required fields. Proto2 syntax only.
  138. Field_CARDINALITY_REQUIRED Field_Cardinality = 2
  139. // For repeated fields.
  140. Field_CARDINALITY_REPEATED Field_Cardinality = 3
  141. )
  142. var Field_Cardinality_name = map[int32]string{
  143. 0: "CARDINALITY_UNKNOWN",
  144. 1: "CARDINALITY_OPTIONAL",
  145. 2: "CARDINALITY_REQUIRED",
  146. 3: "CARDINALITY_REPEATED",
  147. }
  148. var Field_Cardinality_value = map[string]int32{
  149. "CARDINALITY_UNKNOWN": 0,
  150. "CARDINALITY_OPTIONAL": 1,
  151. "CARDINALITY_REQUIRED": 2,
  152. "CARDINALITY_REPEATED": 3,
  153. }
  154. func (x Field_Cardinality) String() string {
  155. return proto.EnumName(Field_Cardinality_name, int32(x))
  156. }
  157. func (Field_Cardinality) EnumDescriptor() ([]byte, []int) {
  158. return fileDescriptor_type_de958d9f8682c896, []int{1, 1}
  159. }
  160. // A protocol buffer message type.
  161. type Type struct {
  162. // The fully qualified message name.
  163. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  164. // The list of fields.
  165. Fields []*Field `protobuf:"bytes,2,rep,name=fields,proto3" json:"fields,omitempty"`
  166. // The list of types appearing in `oneof` definitions in this type.
  167. Oneofs []string `protobuf:"bytes,3,rep,name=oneofs,proto3" json:"oneofs,omitempty"`
  168. // The protocol buffer options.
  169. Options []*Option `protobuf:"bytes,4,rep,name=options,proto3" json:"options,omitempty"`
  170. // The source context.
  171. SourceContext *source_context.SourceContext `protobuf:"bytes,5,opt,name=source_context,json=sourceContext,proto3" json:"source_context,omitempty"`
  172. // The source syntax.
  173. Syntax Syntax `protobuf:"varint,6,opt,name=syntax,proto3,enum=google.protobuf.Syntax" json:"syntax,omitempty"`
  174. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  175. XXX_unrecognized []byte `json:"-"`
  176. XXX_sizecache int32 `json:"-"`
  177. }
  178. func (m *Type) Reset() { *m = Type{} }
  179. func (m *Type) String() string { return proto.CompactTextString(m) }
  180. func (*Type) ProtoMessage() {}
  181. func (*Type) Descriptor() ([]byte, []int) {
  182. return fileDescriptor_type_de958d9f8682c896, []int{0}
  183. }
  184. func (m *Type) XXX_Unmarshal(b []byte) error {
  185. return xxx_messageInfo_Type.Unmarshal(m, b)
  186. }
  187. func (m *Type) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  188. return xxx_messageInfo_Type.Marshal(b, m, deterministic)
  189. }
  190. func (dst *Type) XXX_Merge(src proto.Message) {
  191. xxx_messageInfo_Type.Merge(dst, src)
  192. }
  193. func (m *Type) XXX_Size() int {
  194. return xxx_messageInfo_Type.Size(m)
  195. }
  196. func (m *Type) XXX_DiscardUnknown() {
  197. xxx_messageInfo_Type.DiscardUnknown(m)
  198. }
  199. var xxx_messageInfo_Type proto.InternalMessageInfo
  200. func (m *Type) GetName() string {
  201. if m != nil {
  202. return m.Name
  203. }
  204. return ""
  205. }
  206. func (m *Type) GetFields() []*Field {
  207. if m != nil {
  208. return m.Fields
  209. }
  210. return nil
  211. }
  212. func (m *Type) GetOneofs() []string {
  213. if m != nil {
  214. return m.Oneofs
  215. }
  216. return nil
  217. }
  218. func (m *Type) GetOptions() []*Option {
  219. if m != nil {
  220. return m.Options
  221. }
  222. return nil
  223. }
  224. func (m *Type) GetSourceContext() *source_context.SourceContext {
  225. if m != nil {
  226. return m.SourceContext
  227. }
  228. return nil
  229. }
  230. func (m *Type) GetSyntax() Syntax {
  231. if m != nil {
  232. return m.Syntax
  233. }
  234. return Syntax_SYNTAX_PROTO2
  235. }
  236. // A single field of a message type.
  237. type Field struct {
  238. // The field type.
  239. Kind Field_Kind `protobuf:"varint,1,opt,name=kind,proto3,enum=google.protobuf.Field_Kind" json:"kind,omitempty"`
  240. // The field cardinality.
  241. Cardinality Field_Cardinality `protobuf:"varint,2,opt,name=cardinality,proto3,enum=google.protobuf.Field_Cardinality" json:"cardinality,omitempty"`
  242. // The field number.
  243. Number int32 `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
  244. // The field name.
  245. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  246. // The field type URL, without the scheme, for message or enumeration
  247. // types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
  248. TypeUrl string `protobuf:"bytes,6,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
  249. // The index of the field type in `Type.oneofs`, for message or enumeration
  250. // types. The first type has index 1; zero means the type is not in the list.
  251. OneofIndex int32 `protobuf:"varint,7,opt,name=oneof_index,json=oneofIndex,proto3" json:"oneof_index,omitempty"`
  252. // Whether to use alternative packed wire representation.
  253. Packed bool `protobuf:"varint,8,opt,name=packed,proto3" json:"packed,omitempty"`
  254. // The protocol buffer options.
  255. Options []*Option `protobuf:"bytes,9,rep,name=options,proto3" json:"options,omitempty"`
  256. // The field JSON name.
  257. JsonName string `protobuf:"bytes,10,opt,name=json_name,json=jsonName,proto3" json:"json_name,omitempty"`
  258. // The string value of the default value of this field. Proto2 syntax only.
  259. DefaultValue string `protobuf:"bytes,11,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
  260. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  261. XXX_unrecognized []byte `json:"-"`
  262. XXX_sizecache int32 `json:"-"`
  263. }
  264. func (m *Field) Reset() { *m = Field{} }
  265. func (m *Field) String() string { return proto.CompactTextString(m) }
  266. func (*Field) ProtoMessage() {}
  267. func (*Field) Descriptor() ([]byte, []int) {
  268. return fileDescriptor_type_de958d9f8682c896, []int{1}
  269. }
  270. func (m *Field) XXX_Unmarshal(b []byte) error {
  271. return xxx_messageInfo_Field.Unmarshal(m, b)
  272. }
  273. func (m *Field) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  274. return xxx_messageInfo_Field.Marshal(b, m, deterministic)
  275. }
  276. func (dst *Field) XXX_Merge(src proto.Message) {
  277. xxx_messageInfo_Field.Merge(dst, src)
  278. }
  279. func (m *Field) XXX_Size() int {
  280. return xxx_messageInfo_Field.Size(m)
  281. }
  282. func (m *Field) XXX_DiscardUnknown() {
  283. xxx_messageInfo_Field.DiscardUnknown(m)
  284. }
  285. var xxx_messageInfo_Field proto.InternalMessageInfo
  286. func (m *Field) GetKind() Field_Kind {
  287. if m != nil {
  288. return m.Kind
  289. }
  290. return Field_TYPE_UNKNOWN
  291. }
  292. func (m *Field) GetCardinality() Field_Cardinality {
  293. if m != nil {
  294. return m.Cardinality
  295. }
  296. return Field_CARDINALITY_UNKNOWN
  297. }
  298. func (m *Field) GetNumber() int32 {
  299. if m != nil {
  300. return m.Number
  301. }
  302. return 0
  303. }
  304. func (m *Field) GetName() string {
  305. if m != nil {
  306. return m.Name
  307. }
  308. return ""
  309. }
  310. func (m *Field) GetTypeUrl() string {
  311. if m != nil {
  312. return m.TypeUrl
  313. }
  314. return ""
  315. }
  316. func (m *Field) GetOneofIndex() int32 {
  317. if m != nil {
  318. return m.OneofIndex
  319. }
  320. return 0
  321. }
  322. func (m *Field) GetPacked() bool {
  323. if m != nil {
  324. return m.Packed
  325. }
  326. return false
  327. }
  328. func (m *Field) GetOptions() []*Option {
  329. if m != nil {
  330. return m.Options
  331. }
  332. return nil
  333. }
  334. func (m *Field) GetJsonName() string {
  335. if m != nil {
  336. return m.JsonName
  337. }
  338. return ""
  339. }
  340. func (m *Field) GetDefaultValue() string {
  341. if m != nil {
  342. return m.DefaultValue
  343. }
  344. return ""
  345. }
  346. // Enum type definition.
  347. type Enum struct {
  348. // Enum type name.
  349. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  350. // Enum value definitions.
  351. Enumvalue []*EnumValue `protobuf:"bytes,2,rep,name=enumvalue,proto3" json:"enumvalue,omitempty"`
  352. // Protocol buffer options.
  353. Options []*Option `protobuf:"bytes,3,rep,name=options,proto3" json:"options,omitempty"`
  354. // The source context.
  355. SourceContext *source_context.SourceContext `protobuf:"bytes,4,opt,name=source_context,json=sourceContext,proto3" json:"source_context,omitempty"`
  356. // The source syntax.
  357. Syntax Syntax `protobuf:"varint,5,opt,name=syntax,proto3,enum=google.protobuf.Syntax" json:"syntax,omitempty"`
  358. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  359. XXX_unrecognized []byte `json:"-"`
  360. XXX_sizecache int32 `json:"-"`
  361. }
  362. func (m *Enum) Reset() { *m = Enum{} }
  363. func (m *Enum) String() string { return proto.CompactTextString(m) }
  364. func (*Enum) ProtoMessage() {}
  365. func (*Enum) Descriptor() ([]byte, []int) {
  366. return fileDescriptor_type_de958d9f8682c896, []int{2}
  367. }
  368. func (m *Enum) XXX_Unmarshal(b []byte) error {
  369. return xxx_messageInfo_Enum.Unmarshal(m, b)
  370. }
  371. func (m *Enum) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  372. return xxx_messageInfo_Enum.Marshal(b, m, deterministic)
  373. }
  374. func (dst *Enum) XXX_Merge(src proto.Message) {
  375. xxx_messageInfo_Enum.Merge(dst, src)
  376. }
  377. func (m *Enum) XXX_Size() int {
  378. return xxx_messageInfo_Enum.Size(m)
  379. }
  380. func (m *Enum) XXX_DiscardUnknown() {
  381. xxx_messageInfo_Enum.DiscardUnknown(m)
  382. }
  383. var xxx_messageInfo_Enum proto.InternalMessageInfo
  384. func (m *Enum) GetName() string {
  385. if m != nil {
  386. return m.Name
  387. }
  388. return ""
  389. }
  390. func (m *Enum) GetEnumvalue() []*EnumValue {
  391. if m != nil {
  392. return m.Enumvalue
  393. }
  394. return nil
  395. }
  396. func (m *Enum) GetOptions() []*Option {
  397. if m != nil {
  398. return m.Options
  399. }
  400. return nil
  401. }
  402. func (m *Enum) GetSourceContext() *source_context.SourceContext {
  403. if m != nil {
  404. return m.SourceContext
  405. }
  406. return nil
  407. }
  408. func (m *Enum) GetSyntax() Syntax {
  409. if m != nil {
  410. return m.Syntax
  411. }
  412. return Syntax_SYNTAX_PROTO2
  413. }
  414. // Enum value definition.
  415. type EnumValue struct {
  416. // Enum value name.
  417. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  418. // Enum value number.
  419. Number int32 `protobuf:"varint,2,opt,name=number,proto3" json:"number,omitempty"`
  420. // Protocol buffer options.
  421. Options []*Option `protobuf:"bytes,3,rep,name=options,proto3" json:"options,omitempty"`
  422. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  423. XXX_unrecognized []byte `json:"-"`
  424. XXX_sizecache int32 `json:"-"`
  425. }
  426. func (m *EnumValue) Reset() { *m = EnumValue{} }
  427. func (m *EnumValue) String() string { return proto.CompactTextString(m) }
  428. func (*EnumValue) ProtoMessage() {}
  429. func (*EnumValue) Descriptor() ([]byte, []int) {
  430. return fileDescriptor_type_de958d9f8682c896, []int{3}
  431. }
  432. func (m *EnumValue) XXX_Unmarshal(b []byte) error {
  433. return xxx_messageInfo_EnumValue.Unmarshal(m, b)
  434. }
  435. func (m *EnumValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  436. return xxx_messageInfo_EnumValue.Marshal(b, m, deterministic)
  437. }
  438. func (dst *EnumValue) XXX_Merge(src proto.Message) {
  439. xxx_messageInfo_EnumValue.Merge(dst, src)
  440. }
  441. func (m *EnumValue) XXX_Size() int {
  442. return xxx_messageInfo_EnumValue.Size(m)
  443. }
  444. func (m *EnumValue) XXX_DiscardUnknown() {
  445. xxx_messageInfo_EnumValue.DiscardUnknown(m)
  446. }
  447. var xxx_messageInfo_EnumValue proto.InternalMessageInfo
  448. func (m *EnumValue) GetName() string {
  449. if m != nil {
  450. return m.Name
  451. }
  452. return ""
  453. }
  454. func (m *EnumValue) GetNumber() int32 {
  455. if m != nil {
  456. return m.Number
  457. }
  458. return 0
  459. }
  460. func (m *EnumValue) GetOptions() []*Option {
  461. if m != nil {
  462. return m.Options
  463. }
  464. return nil
  465. }
  466. // A protocol buffer option, which can be attached to a message, field,
  467. // enumeration, etc.
  468. type Option struct {
  469. // The option's name. For protobuf built-in options (options defined in
  470. // descriptor.proto), this is the short name. For example, `"map_entry"`.
  471. // For custom options, it should be the fully-qualified name. For example,
  472. // `"google.api.http"`.
  473. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  474. // The option's value packed in an Any message. If the value is a primitive,
  475. // the corresponding wrapper type defined in google/protobuf/wrappers.proto
  476. // should be used. If the value is an enum, it should be stored as an int32
  477. // value using the google.protobuf.Int32Value type.
  478. Value *any.Any `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  479. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  480. XXX_unrecognized []byte `json:"-"`
  481. XXX_sizecache int32 `json:"-"`
  482. }
  483. func (m *Option) Reset() { *m = Option{} }
  484. func (m *Option) String() string { return proto.CompactTextString(m) }
  485. func (*Option) ProtoMessage() {}
  486. func (*Option) Descriptor() ([]byte, []int) {
  487. return fileDescriptor_type_de958d9f8682c896, []int{4}
  488. }
  489. func (m *Option) XXX_Unmarshal(b []byte) error {
  490. return xxx_messageInfo_Option.Unmarshal(m, b)
  491. }
  492. func (m *Option) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  493. return xxx_messageInfo_Option.Marshal(b, m, deterministic)
  494. }
  495. func (dst *Option) XXX_Merge(src proto.Message) {
  496. xxx_messageInfo_Option.Merge(dst, src)
  497. }
  498. func (m *Option) XXX_Size() int {
  499. return xxx_messageInfo_Option.Size(m)
  500. }
  501. func (m *Option) XXX_DiscardUnknown() {
  502. xxx_messageInfo_Option.DiscardUnknown(m)
  503. }
  504. var xxx_messageInfo_Option proto.InternalMessageInfo
  505. func (m *Option) GetName() string {
  506. if m != nil {
  507. return m.Name
  508. }
  509. return ""
  510. }
  511. func (m *Option) GetValue() *any.Any {
  512. if m != nil {
  513. return m.Value
  514. }
  515. return nil
  516. }
  517. func init() {
  518. proto.RegisterType((*Type)(nil), "google.protobuf.Type")
  519. proto.RegisterType((*Field)(nil), "google.protobuf.Field")
  520. proto.RegisterType((*Enum)(nil), "google.protobuf.Enum")
  521. proto.RegisterType((*EnumValue)(nil), "google.protobuf.EnumValue")
  522. proto.RegisterType((*Option)(nil), "google.protobuf.Option")
  523. proto.RegisterEnum("google.protobuf.Syntax", Syntax_name, Syntax_value)
  524. proto.RegisterEnum("google.protobuf.Field_Kind", Field_Kind_name, Field_Kind_value)
  525. proto.RegisterEnum("google.protobuf.Field_Cardinality", Field_Cardinality_name, Field_Cardinality_value)
  526. }
  527. func init() { proto.RegisterFile("google/protobuf/type.proto", fileDescriptor_type_de958d9f8682c896) }
  528. var fileDescriptor_type_de958d9f8682c896 = []byte{
  529. // 810 bytes of a gzipped FileDescriptorProto
  530. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xcd, 0x8e, 0xda, 0x56,
  531. 0x14, 0x8e, 0x8d, 0xf1, 0xe0, 0xc3, 0xc0, 0xdc, 0xdc, 0x44, 0x89, 0x33, 0x91, 0x52, 0x44, 0xbb,
  532. 0x40, 0x59, 0x80, 0x0a, 0xa3, 0x51, 0xa5, 0xae, 0x60, 0xf0, 0x50, 0x6b, 0x88, 0xed, 0x5e, 0x4c,
  533. 0x93, 0xe9, 0x06, 0x79, 0xe0, 0x0e, 0x22, 0x31, 0xd7, 0x08, 0xdb, 0xed, 0xb0, 0xe8, 0x23, 0xf4,
  534. 0x25, 0xba, 0xec, 0xba, 0x0f, 0xd1, 0x47, 0xea, 0xae, 0xd5, 0xbd, 0x06, 0x63, 0x7e, 0x2a, 0x4d,
  535. 0x9b, 0xcd, 0x68, 0xce, 0xf7, 0x7d, 0xe7, 0xf7, 0x1e, 0x8e, 0xe1, 0x7c, 0x1a, 0x04, 0x53, 0x9f,
  536. 0x36, 0x16, 0xcb, 0x20, 0x0a, 0xee, 0xe2, 0xfb, 0x46, 0xb4, 0x5a, 0xd0, 0xba, 0xb0, 0xf0, 0x59,
  537. 0xc2, 0xd5, 0x37, 0xdc, 0xf9, 0xab, 0x7d, 0xb1, 0xc7, 0x56, 0x09, 0x7b, 0xfe, 0xd5, 0x3e, 0x15,
  538. 0x06, 0xf1, 0x72, 0x4c, 0x47, 0xe3, 0x80, 0x45, 0xf4, 0x21, 0x4a, 0x54, 0xd5, 0x5f, 0x65, 0x50,
  539. 0xdc, 0xd5, 0x82, 0x62, 0x0c, 0x0a, 0xf3, 0xe6, 0x54, 0x97, 0x2a, 0x52, 0x4d, 0x23, 0xe2, 0x7f,
  540. 0x5c, 0x07, 0xf5, 0x7e, 0x46, 0xfd, 0x49, 0xa8, 0xcb, 0x95, 0x5c, 0xad, 0xd8, 0x7c, 0x51, 0xdf,
  541. 0xcb, 0x5f, 0xbf, 0xe6, 0x34, 0x59, 0xab, 0xf0, 0x0b, 0x50, 0x03, 0x46, 0x83, 0xfb, 0x50, 0xcf,
  542. 0x55, 0x72, 0x35, 0x8d, 0xac, 0x2d, 0xfc, 0x35, 0x9c, 0x04, 0x8b, 0x68, 0x16, 0xb0, 0x50, 0x57,
  543. 0x44, 0xa0, 0x97, 0x07, 0x81, 0x6c, 0xc1, 0x93, 0x8d, 0x0e, 0x1b, 0x50, 0xde, 0xad, 0x57, 0xcf,
  544. 0x57, 0xa4, 0x5a, 0xb1, 0xf9, 0xe6, 0xc0, 0x73, 0x20, 0x64, 0x57, 0x89, 0x8a, 0x94, 0xc2, 0xac,
  545. 0x89, 0x1b, 0xa0, 0x86, 0x2b, 0x16, 0x79, 0x0f, 0xba, 0x5a, 0x91, 0x6a, 0xe5, 0x23, 0x89, 0x07,
  546. 0x82, 0x26, 0x6b, 0x59, 0xf5, 0x0f, 0x15, 0xf2, 0xa2, 0x29, 0xdc, 0x00, 0xe5, 0xd3, 0x8c, 0x4d,
  547. 0xc4, 0x40, 0xca, 0xcd, 0xd7, 0xc7, 0x5b, 0xaf, 0xdf, 0xcc, 0xd8, 0x84, 0x08, 0x21, 0xee, 0x42,
  548. 0x71, 0xec, 0x2d, 0x27, 0x33, 0xe6, 0xf9, 0xb3, 0x68, 0xa5, 0xcb, 0xc2, 0xaf, 0xfa, 0x2f, 0x7e,
  549. 0x57, 0x5b, 0x25, 0xc9, 0xba, 0xf1, 0x19, 0xb2, 0x78, 0x7e, 0x47, 0x97, 0x7a, 0xae, 0x22, 0xd5,
  550. 0xf2, 0x64, 0x6d, 0xa5, 0xef, 0xa3, 0x64, 0xde, 0xe7, 0x15, 0x14, 0xf8, 0x72, 0x8c, 0xe2, 0xa5,
  551. 0x2f, 0xfa, 0xd3, 0xc8, 0x09, 0xb7, 0x87, 0x4b, 0x1f, 0x7f, 0x01, 0x45, 0x31, 0xfc, 0xd1, 0x8c,
  552. 0x4d, 0xe8, 0x83, 0x7e, 0x22, 0x62, 0x81, 0x80, 0x4c, 0x8e, 0xf0, 0x3c, 0x0b, 0x6f, 0xfc, 0x89,
  553. 0x4e, 0xf4, 0x42, 0x45, 0xaa, 0x15, 0xc8, 0xda, 0xca, 0xbe, 0x95, 0xf6, 0xc8, 0xb7, 0x7a, 0x0d,
  554. 0xda, 0xc7, 0x30, 0x60, 0x23, 0x51, 0x1f, 0x88, 0x3a, 0x0a, 0x1c, 0xb0, 0x78, 0x8d, 0x5f, 0x42,
  555. 0x69, 0x42, 0xef, 0xbd, 0xd8, 0x8f, 0x46, 0x3f, 0x79, 0x7e, 0x4c, 0xf5, 0xa2, 0x10, 0x9c, 0xae,
  556. 0xc1, 0x1f, 0x38, 0x56, 0xfd, 0x53, 0x06, 0x85, 0x4f, 0x12, 0x23, 0x38, 0x75, 0x6f, 0x1d, 0x63,
  557. 0x34, 0xb4, 0x6e, 0x2c, 0xfb, 0xbd, 0x85, 0x9e, 0xe0, 0x33, 0x28, 0x0a, 0xa4, 0x6b, 0x0f, 0x3b,
  558. 0x7d, 0x03, 0x49, 0xb8, 0x0c, 0x20, 0x80, 0xeb, 0xbe, 0xdd, 0x76, 0x91, 0x9c, 0xda, 0xa6, 0xe5,
  559. 0x5e, 0x5e, 0xa0, 0x5c, 0xea, 0x30, 0x4c, 0x00, 0x25, 0x2b, 0x68, 0x35, 0x51, 0x3e, 0xcd, 0x71,
  560. 0x6d, 0x7e, 0x30, 0xba, 0x97, 0x17, 0x48, 0xdd, 0x45, 0x5a, 0x4d, 0x74, 0x82, 0x4b, 0xa0, 0x09,
  561. 0xa4, 0x63, 0xdb, 0x7d, 0x54, 0x48, 0x63, 0x0e, 0x5c, 0x62, 0x5a, 0x3d, 0xa4, 0xa5, 0x31, 0x7b,
  562. 0xc4, 0x1e, 0x3a, 0x08, 0xd2, 0x08, 0xef, 0x8c, 0xc1, 0xa0, 0xdd, 0x33, 0x50, 0x31, 0x55, 0x74,
  563. 0x6e, 0x5d, 0x63, 0x80, 0x4e, 0x77, 0xca, 0x6a, 0x35, 0x51, 0x29, 0x4d, 0x61, 0x58, 0xc3, 0x77,
  564. 0xa8, 0x8c, 0x9f, 0x42, 0x29, 0x49, 0xb1, 0x29, 0xe2, 0x6c, 0x0f, 0xba, 0xbc, 0x40, 0x68, 0x5b,
  565. 0x48, 0x12, 0xe5, 0xe9, 0x0e, 0x70, 0x79, 0x81, 0x70, 0x35, 0x82, 0x62, 0x66, 0xb7, 0xf0, 0x4b,
  566. 0x78, 0x76, 0xd5, 0x26, 0x5d, 0xd3, 0x6a, 0xf7, 0x4d, 0xf7, 0x36, 0x33, 0x57, 0x1d, 0x9e, 0x67,
  567. 0x09, 0xdb, 0x71, 0x4d, 0xdb, 0x6a, 0xf7, 0x91, 0xb4, 0xcf, 0x10, 0xe3, 0xfb, 0xa1, 0x49, 0x8c,
  568. 0x2e, 0x92, 0x0f, 0x19, 0xc7, 0x68, 0xbb, 0x46, 0x17, 0xe5, 0xaa, 0x7f, 0x4b, 0xa0, 0x18, 0x2c,
  569. 0x9e, 0x1f, 0x3d, 0x23, 0xdf, 0x80, 0x46, 0x59, 0x3c, 0x4f, 0x9e, 0x3f, 0xb9, 0x24, 0xe7, 0x07,
  570. 0x4b, 0xc5, 0xbd, 0xc5, 0x32, 0x90, 0xad, 0x38, 0xbb, 0x8c, 0xb9, 0xff, 0x7d, 0x38, 0x94, 0xcf,
  571. 0x3b, 0x1c, 0xf9, 0xc7, 0x1d, 0x8e, 0x8f, 0xa0, 0xa5, 0x2d, 0x1c, 0x9d, 0xc2, 0xf6, 0x87, 0x2d,
  572. 0xef, 0xfc, 0xb0, 0xff, 0x7b, 0x8f, 0xd5, 0xef, 0x40, 0x4d, 0xa0, 0xa3, 0x89, 0xde, 0x42, 0x7e,
  573. 0x33, 0x6a, 0xde, 0xf8, 0xf3, 0x83, 0x70, 0x6d, 0xb6, 0x22, 0x89, 0xe4, 0x6d, 0x1d, 0xd4, 0xa4,
  574. 0x0f, 0xbe, 0x6c, 0x83, 0x5b, 0xcb, 0x6d, 0x7f, 0x18, 0x39, 0xc4, 0x76, 0xed, 0x26, 0x7a, 0xb2,
  575. 0x0f, 0xb5, 0x90, 0xd4, 0xf9, 0x05, 0x9e, 0x8d, 0x83, 0xf9, 0x7e, 0xc4, 0x8e, 0xc6, 0x3f, 0x21,
  576. 0x0e, 0xb7, 0x1c, 0xe9, 0xc7, 0xc6, 0x9a, 0x9d, 0x06, 0xbe, 0xc7, 0xa6, 0xf5, 0x60, 0x39, 0x6d,
  577. 0x4c, 0x29, 0x13, 0xda, 0xed, 0xc7, 0x68, 0xc1, 0x0f, 0xd5, 0xb7, 0xe2, 0xef, 0x5f, 0x92, 0xf4,
  578. 0x9b, 0x9c, 0xeb, 0x39, 0x9d, 0xdf, 0xe5, 0x37, 0xbd, 0xc4, 0xd5, 0xd9, 0x94, 0xfa, 0x9e, 0xfa,
  579. 0xfe, 0x0d, 0x0b, 0x7e, 0x66, 0x3c, 0x41, 0x78, 0xa7, 0x0a, 0xff, 0xd6, 0x3f, 0x01, 0x00, 0x00,
  580. 0xff, 0xff, 0x6d, 0x2b, 0xc0, 0xd8, 0x24, 0x07, 0x00, 0x00,
  581. }