You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

3116 lines
116 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/cloud/language/v1/language_service.proto
  3. package language // import "google.golang.org/genproto/googleapis/cloud/language/v1"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "google.golang.org/genproto/googleapis/api/annotations"
  8. import (
  9. context "golang.org/x/net/context"
  10. grpc "google.golang.org/grpc"
  11. )
  12. // Reference imports to suppress errors if they are not otherwise used.
  13. var _ = proto.Marshal
  14. var _ = fmt.Errorf
  15. var _ = math.Inf
  16. // This is a compile-time assertion to ensure that this generated file
  17. // is compatible with the proto package it is being compiled against.
  18. // A compilation error at this line likely means your copy of the
  19. // proto package needs to be updated.
  20. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  21. // Represents the text encoding that the caller uses to process the output.
  22. // Providing an `EncodingType` is recommended because the API provides the
  23. // beginning offsets for various outputs, such as tokens and mentions, and
  24. // languages that natively use different text encodings may access offsets
  25. // differently.
  26. type EncodingType int32
  27. const (
  28. // If `EncodingType` is not specified, encoding-dependent information (such as
  29. // `begin_offset`) will be set at `-1`.
  30. EncodingType_NONE EncodingType = 0
  31. // Encoding-dependent information (such as `begin_offset`) is calculated based
  32. // on the UTF-8 encoding of the input. C++ and Go are examples of languages
  33. // that use this encoding natively.
  34. EncodingType_UTF8 EncodingType = 1
  35. // Encoding-dependent information (such as `begin_offset`) is calculated based
  36. // on the UTF-16 encoding of the input. Java and Javascript are examples of
  37. // languages that use this encoding natively.
  38. EncodingType_UTF16 EncodingType = 2
  39. // Encoding-dependent information (such as `begin_offset`) is calculated based
  40. // on the UTF-32 encoding of the input. Python is an example of a language
  41. // that uses this encoding natively.
  42. EncodingType_UTF32 EncodingType = 3
  43. )
  44. var EncodingType_name = map[int32]string{
  45. 0: "NONE",
  46. 1: "UTF8",
  47. 2: "UTF16",
  48. 3: "UTF32",
  49. }
  50. var EncodingType_value = map[string]int32{
  51. "NONE": 0,
  52. "UTF8": 1,
  53. "UTF16": 2,
  54. "UTF32": 3,
  55. }
  56. func (x EncodingType) String() string {
  57. return proto.EnumName(EncodingType_name, int32(x))
  58. }
  59. func (EncodingType) EnumDescriptor() ([]byte, []int) {
  60. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{0}
  61. }
  62. // The document types enum.
  63. type Document_Type int32
  64. const (
  65. // The content type is not specified.
  66. Document_TYPE_UNSPECIFIED Document_Type = 0
  67. // Plain text
  68. Document_PLAIN_TEXT Document_Type = 1
  69. // HTML
  70. Document_HTML Document_Type = 2
  71. )
  72. var Document_Type_name = map[int32]string{
  73. 0: "TYPE_UNSPECIFIED",
  74. 1: "PLAIN_TEXT",
  75. 2: "HTML",
  76. }
  77. var Document_Type_value = map[string]int32{
  78. "TYPE_UNSPECIFIED": 0,
  79. "PLAIN_TEXT": 1,
  80. "HTML": 2,
  81. }
  82. func (x Document_Type) String() string {
  83. return proto.EnumName(Document_Type_name, int32(x))
  84. }
  85. func (Document_Type) EnumDescriptor() ([]byte, []int) {
  86. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{0, 0}
  87. }
  88. // The type of the entity.
  89. type Entity_Type int32
  90. const (
  91. // Unknown
  92. Entity_UNKNOWN Entity_Type = 0
  93. // Person
  94. Entity_PERSON Entity_Type = 1
  95. // Location
  96. Entity_LOCATION Entity_Type = 2
  97. // Organization
  98. Entity_ORGANIZATION Entity_Type = 3
  99. // Event
  100. Entity_EVENT Entity_Type = 4
  101. // Work of art
  102. Entity_WORK_OF_ART Entity_Type = 5
  103. // Consumer goods
  104. Entity_CONSUMER_GOOD Entity_Type = 6
  105. // Other types
  106. Entity_OTHER Entity_Type = 7
  107. )
  108. var Entity_Type_name = map[int32]string{
  109. 0: "UNKNOWN",
  110. 1: "PERSON",
  111. 2: "LOCATION",
  112. 3: "ORGANIZATION",
  113. 4: "EVENT",
  114. 5: "WORK_OF_ART",
  115. 6: "CONSUMER_GOOD",
  116. 7: "OTHER",
  117. }
  118. var Entity_Type_value = map[string]int32{
  119. "UNKNOWN": 0,
  120. "PERSON": 1,
  121. "LOCATION": 2,
  122. "ORGANIZATION": 3,
  123. "EVENT": 4,
  124. "WORK_OF_ART": 5,
  125. "CONSUMER_GOOD": 6,
  126. "OTHER": 7,
  127. }
  128. func (x Entity_Type) String() string {
  129. return proto.EnumName(Entity_Type_name, int32(x))
  130. }
  131. func (Entity_Type) EnumDescriptor() ([]byte, []int) {
  132. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{2, 0}
  133. }
  134. // The part of speech tags enum.
  135. type PartOfSpeech_Tag int32
  136. const (
  137. // Unknown
  138. PartOfSpeech_UNKNOWN PartOfSpeech_Tag = 0
  139. // Adjective
  140. PartOfSpeech_ADJ PartOfSpeech_Tag = 1
  141. // Adposition (preposition and postposition)
  142. PartOfSpeech_ADP PartOfSpeech_Tag = 2
  143. // Adverb
  144. PartOfSpeech_ADV PartOfSpeech_Tag = 3
  145. // Conjunction
  146. PartOfSpeech_CONJ PartOfSpeech_Tag = 4
  147. // Determiner
  148. PartOfSpeech_DET PartOfSpeech_Tag = 5
  149. // Noun (common and proper)
  150. PartOfSpeech_NOUN PartOfSpeech_Tag = 6
  151. // Cardinal number
  152. PartOfSpeech_NUM PartOfSpeech_Tag = 7
  153. // Pronoun
  154. PartOfSpeech_PRON PartOfSpeech_Tag = 8
  155. // Particle or other function word
  156. PartOfSpeech_PRT PartOfSpeech_Tag = 9
  157. // Punctuation
  158. PartOfSpeech_PUNCT PartOfSpeech_Tag = 10
  159. // Verb (all tenses and modes)
  160. PartOfSpeech_VERB PartOfSpeech_Tag = 11
  161. // Other: foreign words, typos, abbreviations
  162. PartOfSpeech_X PartOfSpeech_Tag = 12
  163. // Affix
  164. PartOfSpeech_AFFIX PartOfSpeech_Tag = 13
  165. )
  166. var PartOfSpeech_Tag_name = map[int32]string{
  167. 0: "UNKNOWN",
  168. 1: "ADJ",
  169. 2: "ADP",
  170. 3: "ADV",
  171. 4: "CONJ",
  172. 5: "DET",
  173. 6: "NOUN",
  174. 7: "NUM",
  175. 8: "PRON",
  176. 9: "PRT",
  177. 10: "PUNCT",
  178. 11: "VERB",
  179. 12: "X",
  180. 13: "AFFIX",
  181. }
  182. var PartOfSpeech_Tag_value = map[string]int32{
  183. "UNKNOWN": 0,
  184. "ADJ": 1,
  185. "ADP": 2,
  186. "ADV": 3,
  187. "CONJ": 4,
  188. "DET": 5,
  189. "NOUN": 6,
  190. "NUM": 7,
  191. "PRON": 8,
  192. "PRT": 9,
  193. "PUNCT": 10,
  194. "VERB": 11,
  195. "X": 12,
  196. "AFFIX": 13,
  197. }
  198. func (x PartOfSpeech_Tag) String() string {
  199. return proto.EnumName(PartOfSpeech_Tag_name, int32(x))
  200. }
  201. func (PartOfSpeech_Tag) EnumDescriptor() ([]byte, []int) {
  202. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 0}
  203. }
  204. // The characteristic of a verb that expresses time flow during an event.
  205. type PartOfSpeech_Aspect int32
  206. const (
  207. // Aspect is not applicable in the analyzed language or is not predicted.
  208. PartOfSpeech_ASPECT_UNKNOWN PartOfSpeech_Aspect = 0
  209. // Perfective
  210. PartOfSpeech_PERFECTIVE PartOfSpeech_Aspect = 1
  211. // Imperfective
  212. PartOfSpeech_IMPERFECTIVE PartOfSpeech_Aspect = 2
  213. // Progressive
  214. PartOfSpeech_PROGRESSIVE PartOfSpeech_Aspect = 3
  215. )
  216. var PartOfSpeech_Aspect_name = map[int32]string{
  217. 0: "ASPECT_UNKNOWN",
  218. 1: "PERFECTIVE",
  219. 2: "IMPERFECTIVE",
  220. 3: "PROGRESSIVE",
  221. }
  222. var PartOfSpeech_Aspect_value = map[string]int32{
  223. "ASPECT_UNKNOWN": 0,
  224. "PERFECTIVE": 1,
  225. "IMPERFECTIVE": 2,
  226. "PROGRESSIVE": 3,
  227. }
  228. func (x PartOfSpeech_Aspect) String() string {
  229. return proto.EnumName(PartOfSpeech_Aspect_name, int32(x))
  230. }
  231. func (PartOfSpeech_Aspect) EnumDescriptor() ([]byte, []int) {
  232. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 1}
  233. }
  234. // The grammatical function performed by a noun or pronoun in a phrase,
  235. // clause, or sentence. In some languages, other parts of speech, such as
  236. // adjective and determiner, take case inflection in agreement with the noun.
  237. type PartOfSpeech_Case int32
  238. const (
  239. // Case is not applicable in the analyzed language or is not predicted.
  240. PartOfSpeech_CASE_UNKNOWN PartOfSpeech_Case = 0
  241. // Accusative
  242. PartOfSpeech_ACCUSATIVE PartOfSpeech_Case = 1
  243. // Adverbial
  244. PartOfSpeech_ADVERBIAL PartOfSpeech_Case = 2
  245. // Complementive
  246. PartOfSpeech_COMPLEMENTIVE PartOfSpeech_Case = 3
  247. // Dative
  248. PartOfSpeech_DATIVE PartOfSpeech_Case = 4
  249. // Genitive
  250. PartOfSpeech_GENITIVE PartOfSpeech_Case = 5
  251. // Instrumental
  252. PartOfSpeech_INSTRUMENTAL PartOfSpeech_Case = 6
  253. // Locative
  254. PartOfSpeech_LOCATIVE PartOfSpeech_Case = 7
  255. // Nominative
  256. PartOfSpeech_NOMINATIVE PartOfSpeech_Case = 8
  257. // Oblique
  258. PartOfSpeech_OBLIQUE PartOfSpeech_Case = 9
  259. // Partitive
  260. PartOfSpeech_PARTITIVE PartOfSpeech_Case = 10
  261. // Prepositional
  262. PartOfSpeech_PREPOSITIONAL PartOfSpeech_Case = 11
  263. // Reflexive
  264. PartOfSpeech_REFLEXIVE_CASE PartOfSpeech_Case = 12
  265. // Relative
  266. PartOfSpeech_RELATIVE_CASE PartOfSpeech_Case = 13
  267. // Vocative
  268. PartOfSpeech_VOCATIVE PartOfSpeech_Case = 14
  269. )
  270. var PartOfSpeech_Case_name = map[int32]string{
  271. 0: "CASE_UNKNOWN",
  272. 1: "ACCUSATIVE",
  273. 2: "ADVERBIAL",
  274. 3: "COMPLEMENTIVE",
  275. 4: "DATIVE",
  276. 5: "GENITIVE",
  277. 6: "INSTRUMENTAL",
  278. 7: "LOCATIVE",
  279. 8: "NOMINATIVE",
  280. 9: "OBLIQUE",
  281. 10: "PARTITIVE",
  282. 11: "PREPOSITIONAL",
  283. 12: "REFLEXIVE_CASE",
  284. 13: "RELATIVE_CASE",
  285. 14: "VOCATIVE",
  286. }
  287. var PartOfSpeech_Case_value = map[string]int32{
  288. "CASE_UNKNOWN": 0,
  289. "ACCUSATIVE": 1,
  290. "ADVERBIAL": 2,
  291. "COMPLEMENTIVE": 3,
  292. "DATIVE": 4,
  293. "GENITIVE": 5,
  294. "INSTRUMENTAL": 6,
  295. "LOCATIVE": 7,
  296. "NOMINATIVE": 8,
  297. "OBLIQUE": 9,
  298. "PARTITIVE": 10,
  299. "PREPOSITIONAL": 11,
  300. "REFLEXIVE_CASE": 12,
  301. "RELATIVE_CASE": 13,
  302. "VOCATIVE": 14,
  303. }
  304. func (x PartOfSpeech_Case) String() string {
  305. return proto.EnumName(PartOfSpeech_Case_name, int32(x))
  306. }
  307. func (PartOfSpeech_Case) EnumDescriptor() ([]byte, []int) {
  308. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 2}
  309. }
  310. // Depending on the language, Form can be categorizing different forms of
  311. // verbs, adjectives, adverbs, etc. For example, categorizing inflected
  312. // endings of verbs and adjectives or distinguishing between short and long
  313. // forms of adjectives and participles
  314. type PartOfSpeech_Form int32
  315. const (
  316. // Form is not applicable in the analyzed language or is not predicted.
  317. PartOfSpeech_FORM_UNKNOWN PartOfSpeech_Form = 0
  318. // Adnomial
  319. PartOfSpeech_ADNOMIAL PartOfSpeech_Form = 1
  320. // Auxiliary
  321. PartOfSpeech_AUXILIARY PartOfSpeech_Form = 2
  322. // Complementizer
  323. PartOfSpeech_COMPLEMENTIZER PartOfSpeech_Form = 3
  324. // Final ending
  325. PartOfSpeech_FINAL_ENDING PartOfSpeech_Form = 4
  326. // Gerund
  327. PartOfSpeech_GERUND PartOfSpeech_Form = 5
  328. // Realis
  329. PartOfSpeech_REALIS PartOfSpeech_Form = 6
  330. // Irrealis
  331. PartOfSpeech_IRREALIS PartOfSpeech_Form = 7
  332. // Short form
  333. PartOfSpeech_SHORT PartOfSpeech_Form = 8
  334. // Long form
  335. PartOfSpeech_LONG PartOfSpeech_Form = 9
  336. // Order form
  337. PartOfSpeech_ORDER PartOfSpeech_Form = 10
  338. // Specific form
  339. PartOfSpeech_SPECIFIC PartOfSpeech_Form = 11
  340. )
  341. var PartOfSpeech_Form_name = map[int32]string{
  342. 0: "FORM_UNKNOWN",
  343. 1: "ADNOMIAL",
  344. 2: "AUXILIARY",
  345. 3: "COMPLEMENTIZER",
  346. 4: "FINAL_ENDING",
  347. 5: "GERUND",
  348. 6: "REALIS",
  349. 7: "IRREALIS",
  350. 8: "SHORT",
  351. 9: "LONG",
  352. 10: "ORDER",
  353. 11: "SPECIFIC",
  354. }
  355. var PartOfSpeech_Form_value = map[string]int32{
  356. "FORM_UNKNOWN": 0,
  357. "ADNOMIAL": 1,
  358. "AUXILIARY": 2,
  359. "COMPLEMENTIZER": 3,
  360. "FINAL_ENDING": 4,
  361. "GERUND": 5,
  362. "REALIS": 6,
  363. "IRREALIS": 7,
  364. "SHORT": 8,
  365. "LONG": 9,
  366. "ORDER": 10,
  367. "SPECIFIC": 11,
  368. }
  369. func (x PartOfSpeech_Form) String() string {
  370. return proto.EnumName(PartOfSpeech_Form_name, int32(x))
  371. }
  372. func (PartOfSpeech_Form) EnumDescriptor() ([]byte, []int) {
  373. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 3}
  374. }
  375. // Gender classes of nouns reflected in the behaviour of associated words.
  376. type PartOfSpeech_Gender int32
  377. const (
  378. // Gender is not applicable in the analyzed language or is not predicted.
  379. PartOfSpeech_GENDER_UNKNOWN PartOfSpeech_Gender = 0
  380. // Feminine
  381. PartOfSpeech_FEMININE PartOfSpeech_Gender = 1
  382. // Masculine
  383. PartOfSpeech_MASCULINE PartOfSpeech_Gender = 2
  384. // Neuter
  385. PartOfSpeech_NEUTER PartOfSpeech_Gender = 3
  386. )
  387. var PartOfSpeech_Gender_name = map[int32]string{
  388. 0: "GENDER_UNKNOWN",
  389. 1: "FEMININE",
  390. 2: "MASCULINE",
  391. 3: "NEUTER",
  392. }
  393. var PartOfSpeech_Gender_value = map[string]int32{
  394. "GENDER_UNKNOWN": 0,
  395. "FEMININE": 1,
  396. "MASCULINE": 2,
  397. "NEUTER": 3,
  398. }
  399. func (x PartOfSpeech_Gender) String() string {
  400. return proto.EnumName(PartOfSpeech_Gender_name, int32(x))
  401. }
  402. func (PartOfSpeech_Gender) EnumDescriptor() ([]byte, []int) {
  403. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 4}
  404. }
  405. // The grammatical feature of verbs, used for showing modality and attitude.
  406. type PartOfSpeech_Mood int32
  407. const (
  408. // Mood is not applicable in the analyzed language or is not predicted.
  409. PartOfSpeech_MOOD_UNKNOWN PartOfSpeech_Mood = 0
  410. // Conditional
  411. PartOfSpeech_CONDITIONAL_MOOD PartOfSpeech_Mood = 1
  412. // Imperative
  413. PartOfSpeech_IMPERATIVE PartOfSpeech_Mood = 2
  414. // Indicative
  415. PartOfSpeech_INDICATIVE PartOfSpeech_Mood = 3
  416. // Interrogative
  417. PartOfSpeech_INTERROGATIVE PartOfSpeech_Mood = 4
  418. // Jussive
  419. PartOfSpeech_JUSSIVE PartOfSpeech_Mood = 5
  420. // Subjunctive
  421. PartOfSpeech_SUBJUNCTIVE PartOfSpeech_Mood = 6
  422. )
  423. var PartOfSpeech_Mood_name = map[int32]string{
  424. 0: "MOOD_UNKNOWN",
  425. 1: "CONDITIONAL_MOOD",
  426. 2: "IMPERATIVE",
  427. 3: "INDICATIVE",
  428. 4: "INTERROGATIVE",
  429. 5: "JUSSIVE",
  430. 6: "SUBJUNCTIVE",
  431. }
  432. var PartOfSpeech_Mood_value = map[string]int32{
  433. "MOOD_UNKNOWN": 0,
  434. "CONDITIONAL_MOOD": 1,
  435. "IMPERATIVE": 2,
  436. "INDICATIVE": 3,
  437. "INTERROGATIVE": 4,
  438. "JUSSIVE": 5,
  439. "SUBJUNCTIVE": 6,
  440. }
  441. func (x PartOfSpeech_Mood) String() string {
  442. return proto.EnumName(PartOfSpeech_Mood_name, int32(x))
  443. }
  444. func (PartOfSpeech_Mood) EnumDescriptor() ([]byte, []int) {
  445. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 5}
  446. }
  447. // Count distinctions.
  448. type PartOfSpeech_Number int32
  449. const (
  450. // Number is not applicable in the analyzed language or is not predicted.
  451. PartOfSpeech_NUMBER_UNKNOWN PartOfSpeech_Number = 0
  452. // Singular
  453. PartOfSpeech_SINGULAR PartOfSpeech_Number = 1
  454. // Plural
  455. PartOfSpeech_PLURAL PartOfSpeech_Number = 2
  456. // Dual
  457. PartOfSpeech_DUAL PartOfSpeech_Number = 3
  458. )
  459. var PartOfSpeech_Number_name = map[int32]string{
  460. 0: "NUMBER_UNKNOWN",
  461. 1: "SINGULAR",
  462. 2: "PLURAL",
  463. 3: "DUAL",
  464. }
  465. var PartOfSpeech_Number_value = map[string]int32{
  466. "NUMBER_UNKNOWN": 0,
  467. "SINGULAR": 1,
  468. "PLURAL": 2,
  469. "DUAL": 3,
  470. }
  471. func (x PartOfSpeech_Number) String() string {
  472. return proto.EnumName(PartOfSpeech_Number_name, int32(x))
  473. }
  474. func (PartOfSpeech_Number) EnumDescriptor() ([]byte, []int) {
  475. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 6}
  476. }
  477. // The distinction between the speaker, second person, third person, etc.
  478. type PartOfSpeech_Person int32
  479. const (
  480. // Person is not applicable in the analyzed language or is not predicted.
  481. PartOfSpeech_PERSON_UNKNOWN PartOfSpeech_Person = 0
  482. // First
  483. PartOfSpeech_FIRST PartOfSpeech_Person = 1
  484. // Second
  485. PartOfSpeech_SECOND PartOfSpeech_Person = 2
  486. // Third
  487. PartOfSpeech_THIRD PartOfSpeech_Person = 3
  488. // Reflexive
  489. PartOfSpeech_REFLEXIVE_PERSON PartOfSpeech_Person = 4
  490. )
  491. var PartOfSpeech_Person_name = map[int32]string{
  492. 0: "PERSON_UNKNOWN",
  493. 1: "FIRST",
  494. 2: "SECOND",
  495. 3: "THIRD",
  496. 4: "REFLEXIVE_PERSON",
  497. }
  498. var PartOfSpeech_Person_value = map[string]int32{
  499. "PERSON_UNKNOWN": 0,
  500. "FIRST": 1,
  501. "SECOND": 2,
  502. "THIRD": 3,
  503. "REFLEXIVE_PERSON": 4,
  504. }
  505. func (x PartOfSpeech_Person) String() string {
  506. return proto.EnumName(PartOfSpeech_Person_name, int32(x))
  507. }
  508. func (PartOfSpeech_Person) EnumDescriptor() ([]byte, []int) {
  509. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 7}
  510. }
  511. // This category shows if the token is part of a proper name.
  512. type PartOfSpeech_Proper int32
  513. const (
  514. // Proper is not applicable in the analyzed language or is not predicted.
  515. PartOfSpeech_PROPER_UNKNOWN PartOfSpeech_Proper = 0
  516. // Proper
  517. PartOfSpeech_PROPER PartOfSpeech_Proper = 1
  518. // Not proper
  519. PartOfSpeech_NOT_PROPER PartOfSpeech_Proper = 2
  520. )
  521. var PartOfSpeech_Proper_name = map[int32]string{
  522. 0: "PROPER_UNKNOWN",
  523. 1: "PROPER",
  524. 2: "NOT_PROPER",
  525. }
  526. var PartOfSpeech_Proper_value = map[string]int32{
  527. "PROPER_UNKNOWN": 0,
  528. "PROPER": 1,
  529. "NOT_PROPER": 2,
  530. }
  531. func (x PartOfSpeech_Proper) String() string {
  532. return proto.EnumName(PartOfSpeech_Proper_name, int32(x))
  533. }
  534. func (PartOfSpeech_Proper) EnumDescriptor() ([]byte, []int) {
  535. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 8}
  536. }
  537. // Reciprocal features of a pronoun.
  538. type PartOfSpeech_Reciprocity int32
  539. const (
  540. // Reciprocity is not applicable in the analyzed language or is not
  541. // predicted.
  542. PartOfSpeech_RECIPROCITY_UNKNOWN PartOfSpeech_Reciprocity = 0
  543. // Reciprocal
  544. PartOfSpeech_RECIPROCAL PartOfSpeech_Reciprocity = 1
  545. // Non-reciprocal
  546. PartOfSpeech_NON_RECIPROCAL PartOfSpeech_Reciprocity = 2
  547. )
  548. var PartOfSpeech_Reciprocity_name = map[int32]string{
  549. 0: "RECIPROCITY_UNKNOWN",
  550. 1: "RECIPROCAL",
  551. 2: "NON_RECIPROCAL",
  552. }
  553. var PartOfSpeech_Reciprocity_value = map[string]int32{
  554. "RECIPROCITY_UNKNOWN": 0,
  555. "RECIPROCAL": 1,
  556. "NON_RECIPROCAL": 2,
  557. }
  558. func (x PartOfSpeech_Reciprocity) String() string {
  559. return proto.EnumName(PartOfSpeech_Reciprocity_name, int32(x))
  560. }
  561. func (PartOfSpeech_Reciprocity) EnumDescriptor() ([]byte, []int) {
  562. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 9}
  563. }
  564. // Time reference.
  565. type PartOfSpeech_Tense int32
  566. const (
  567. // Tense is not applicable in the analyzed language or is not predicted.
  568. PartOfSpeech_TENSE_UNKNOWN PartOfSpeech_Tense = 0
  569. // Conditional
  570. PartOfSpeech_CONDITIONAL_TENSE PartOfSpeech_Tense = 1
  571. // Future
  572. PartOfSpeech_FUTURE PartOfSpeech_Tense = 2
  573. // Past
  574. PartOfSpeech_PAST PartOfSpeech_Tense = 3
  575. // Present
  576. PartOfSpeech_PRESENT PartOfSpeech_Tense = 4
  577. // Imperfect
  578. PartOfSpeech_IMPERFECT PartOfSpeech_Tense = 5
  579. // Pluperfect
  580. PartOfSpeech_PLUPERFECT PartOfSpeech_Tense = 6
  581. )
  582. var PartOfSpeech_Tense_name = map[int32]string{
  583. 0: "TENSE_UNKNOWN",
  584. 1: "CONDITIONAL_TENSE",
  585. 2: "FUTURE",
  586. 3: "PAST",
  587. 4: "PRESENT",
  588. 5: "IMPERFECT",
  589. 6: "PLUPERFECT",
  590. }
  591. var PartOfSpeech_Tense_value = map[string]int32{
  592. "TENSE_UNKNOWN": 0,
  593. "CONDITIONAL_TENSE": 1,
  594. "FUTURE": 2,
  595. "PAST": 3,
  596. "PRESENT": 4,
  597. "IMPERFECT": 5,
  598. "PLUPERFECT": 6,
  599. }
  600. func (x PartOfSpeech_Tense) String() string {
  601. return proto.EnumName(PartOfSpeech_Tense_name, int32(x))
  602. }
  603. func (PartOfSpeech_Tense) EnumDescriptor() ([]byte, []int) {
  604. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 10}
  605. }
  606. // The relationship between the action that a verb expresses and the
  607. // participants identified by its arguments.
  608. type PartOfSpeech_Voice int32
  609. const (
  610. // Voice is not applicable in the analyzed language or is not predicted.
  611. PartOfSpeech_VOICE_UNKNOWN PartOfSpeech_Voice = 0
  612. // Active
  613. PartOfSpeech_ACTIVE PartOfSpeech_Voice = 1
  614. // Causative
  615. PartOfSpeech_CAUSATIVE PartOfSpeech_Voice = 2
  616. // Passive
  617. PartOfSpeech_PASSIVE PartOfSpeech_Voice = 3
  618. )
  619. var PartOfSpeech_Voice_name = map[int32]string{
  620. 0: "VOICE_UNKNOWN",
  621. 1: "ACTIVE",
  622. 2: "CAUSATIVE",
  623. 3: "PASSIVE",
  624. }
  625. var PartOfSpeech_Voice_value = map[string]int32{
  626. "VOICE_UNKNOWN": 0,
  627. "ACTIVE": 1,
  628. "CAUSATIVE": 2,
  629. "PASSIVE": 3,
  630. }
  631. func (x PartOfSpeech_Voice) String() string {
  632. return proto.EnumName(PartOfSpeech_Voice_name, int32(x))
  633. }
  634. func (PartOfSpeech_Voice) EnumDescriptor() ([]byte, []int) {
  635. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5, 11}
  636. }
  637. // The parse label enum for the token.
  638. type DependencyEdge_Label int32
  639. const (
  640. // Unknown
  641. DependencyEdge_UNKNOWN DependencyEdge_Label = 0
  642. // Abbreviation modifier
  643. DependencyEdge_ABBREV DependencyEdge_Label = 1
  644. // Adjectival complement
  645. DependencyEdge_ACOMP DependencyEdge_Label = 2
  646. // Adverbial clause modifier
  647. DependencyEdge_ADVCL DependencyEdge_Label = 3
  648. // Adverbial modifier
  649. DependencyEdge_ADVMOD DependencyEdge_Label = 4
  650. // Adjectival modifier of an NP
  651. DependencyEdge_AMOD DependencyEdge_Label = 5
  652. // Appositional modifier of an NP
  653. DependencyEdge_APPOS DependencyEdge_Label = 6
  654. // Attribute dependent of a copular verb
  655. DependencyEdge_ATTR DependencyEdge_Label = 7
  656. // Auxiliary (non-main) verb
  657. DependencyEdge_AUX DependencyEdge_Label = 8
  658. // Passive auxiliary
  659. DependencyEdge_AUXPASS DependencyEdge_Label = 9
  660. // Coordinating conjunction
  661. DependencyEdge_CC DependencyEdge_Label = 10
  662. // Clausal complement of a verb or adjective
  663. DependencyEdge_CCOMP DependencyEdge_Label = 11
  664. // Conjunct
  665. DependencyEdge_CONJ DependencyEdge_Label = 12
  666. // Clausal subject
  667. DependencyEdge_CSUBJ DependencyEdge_Label = 13
  668. // Clausal passive subject
  669. DependencyEdge_CSUBJPASS DependencyEdge_Label = 14
  670. // Dependency (unable to determine)
  671. DependencyEdge_DEP DependencyEdge_Label = 15
  672. // Determiner
  673. DependencyEdge_DET DependencyEdge_Label = 16
  674. // Discourse
  675. DependencyEdge_DISCOURSE DependencyEdge_Label = 17
  676. // Direct object
  677. DependencyEdge_DOBJ DependencyEdge_Label = 18
  678. // Expletive
  679. DependencyEdge_EXPL DependencyEdge_Label = 19
  680. // Goes with (part of a word in a text not well edited)
  681. DependencyEdge_GOESWITH DependencyEdge_Label = 20
  682. // Indirect object
  683. DependencyEdge_IOBJ DependencyEdge_Label = 21
  684. // Marker (word introducing a subordinate clause)
  685. DependencyEdge_MARK DependencyEdge_Label = 22
  686. // Multi-word expression
  687. DependencyEdge_MWE DependencyEdge_Label = 23
  688. // Multi-word verbal expression
  689. DependencyEdge_MWV DependencyEdge_Label = 24
  690. // Negation modifier
  691. DependencyEdge_NEG DependencyEdge_Label = 25
  692. // Noun compound modifier
  693. DependencyEdge_NN DependencyEdge_Label = 26
  694. // Noun phrase used as an adverbial modifier
  695. DependencyEdge_NPADVMOD DependencyEdge_Label = 27
  696. // Nominal subject
  697. DependencyEdge_NSUBJ DependencyEdge_Label = 28
  698. // Passive nominal subject
  699. DependencyEdge_NSUBJPASS DependencyEdge_Label = 29
  700. // Numeric modifier of a noun
  701. DependencyEdge_NUM DependencyEdge_Label = 30
  702. // Element of compound number
  703. DependencyEdge_NUMBER DependencyEdge_Label = 31
  704. // Punctuation mark
  705. DependencyEdge_P DependencyEdge_Label = 32
  706. // Parataxis relation
  707. DependencyEdge_PARATAXIS DependencyEdge_Label = 33
  708. // Participial modifier
  709. DependencyEdge_PARTMOD DependencyEdge_Label = 34
  710. // The complement of a preposition is a clause
  711. DependencyEdge_PCOMP DependencyEdge_Label = 35
  712. // Object of a preposition
  713. DependencyEdge_POBJ DependencyEdge_Label = 36
  714. // Possession modifier
  715. DependencyEdge_POSS DependencyEdge_Label = 37
  716. // Postverbal negative particle
  717. DependencyEdge_POSTNEG DependencyEdge_Label = 38
  718. // Predicate complement
  719. DependencyEdge_PRECOMP DependencyEdge_Label = 39
  720. // Preconjunt
  721. DependencyEdge_PRECONJ DependencyEdge_Label = 40
  722. // Predeterminer
  723. DependencyEdge_PREDET DependencyEdge_Label = 41
  724. // Prefix
  725. DependencyEdge_PREF DependencyEdge_Label = 42
  726. // Prepositional modifier
  727. DependencyEdge_PREP DependencyEdge_Label = 43
  728. // The relationship between a verb and verbal morpheme
  729. DependencyEdge_PRONL DependencyEdge_Label = 44
  730. // Particle
  731. DependencyEdge_PRT DependencyEdge_Label = 45
  732. // Associative or possessive marker
  733. DependencyEdge_PS DependencyEdge_Label = 46
  734. // Quantifier phrase modifier
  735. DependencyEdge_QUANTMOD DependencyEdge_Label = 47
  736. // Relative clause modifier
  737. DependencyEdge_RCMOD DependencyEdge_Label = 48
  738. // Complementizer in relative clause
  739. DependencyEdge_RCMODREL DependencyEdge_Label = 49
  740. // Ellipsis without a preceding predicate
  741. DependencyEdge_RDROP DependencyEdge_Label = 50
  742. // Referent
  743. DependencyEdge_REF DependencyEdge_Label = 51
  744. // Remnant
  745. DependencyEdge_REMNANT DependencyEdge_Label = 52
  746. // Reparandum
  747. DependencyEdge_REPARANDUM DependencyEdge_Label = 53
  748. // Root
  749. DependencyEdge_ROOT DependencyEdge_Label = 54
  750. // Suffix specifying a unit of number
  751. DependencyEdge_SNUM DependencyEdge_Label = 55
  752. // Suffix
  753. DependencyEdge_SUFF DependencyEdge_Label = 56
  754. // Temporal modifier
  755. DependencyEdge_TMOD DependencyEdge_Label = 57
  756. // Topic marker
  757. DependencyEdge_TOPIC DependencyEdge_Label = 58
  758. // Clause headed by an infinite form of the verb that modifies a noun
  759. DependencyEdge_VMOD DependencyEdge_Label = 59
  760. // Vocative
  761. DependencyEdge_VOCATIVE DependencyEdge_Label = 60
  762. // Open clausal complement
  763. DependencyEdge_XCOMP DependencyEdge_Label = 61
  764. // Name suffix
  765. DependencyEdge_SUFFIX DependencyEdge_Label = 62
  766. // Name title
  767. DependencyEdge_TITLE DependencyEdge_Label = 63
  768. // Adverbial phrase modifier
  769. DependencyEdge_ADVPHMOD DependencyEdge_Label = 64
  770. // Causative auxiliary
  771. DependencyEdge_AUXCAUS DependencyEdge_Label = 65
  772. // Helper auxiliary
  773. DependencyEdge_AUXVV DependencyEdge_Label = 66
  774. // Rentaishi (Prenominal modifier)
  775. DependencyEdge_DTMOD DependencyEdge_Label = 67
  776. // Foreign words
  777. DependencyEdge_FOREIGN DependencyEdge_Label = 68
  778. // Keyword
  779. DependencyEdge_KW DependencyEdge_Label = 69
  780. // List for chains of comparable items
  781. DependencyEdge_LIST DependencyEdge_Label = 70
  782. // Nominalized clause
  783. DependencyEdge_NOMC DependencyEdge_Label = 71
  784. // Nominalized clausal subject
  785. DependencyEdge_NOMCSUBJ DependencyEdge_Label = 72
  786. // Nominalized clausal passive
  787. DependencyEdge_NOMCSUBJPASS DependencyEdge_Label = 73
  788. // Compound of numeric modifier
  789. DependencyEdge_NUMC DependencyEdge_Label = 74
  790. // Copula
  791. DependencyEdge_COP DependencyEdge_Label = 75
  792. // Dislocated relation (for fronted/topicalized elements)
  793. DependencyEdge_DISLOCATED DependencyEdge_Label = 76
  794. // Aspect marker
  795. DependencyEdge_ASP DependencyEdge_Label = 77
  796. // Genitive modifier
  797. DependencyEdge_GMOD DependencyEdge_Label = 78
  798. // Genitive object
  799. DependencyEdge_GOBJ DependencyEdge_Label = 79
  800. // Infinitival modifier
  801. DependencyEdge_INFMOD DependencyEdge_Label = 80
  802. // Measure
  803. DependencyEdge_MES DependencyEdge_Label = 81
  804. // Nominal complement of a noun
  805. DependencyEdge_NCOMP DependencyEdge_Label = 82
  806. )
  807. var DependencyEdge_Label_name = map[int32]string{
  808. 0: "UNKNOWN",
  809. 1: "ABBREV",
  810. 2: "ACOMP",
  811. 3: "ADVCL",
  812. 4: "ADVMOD",
  813. 5: "AMOD",
  814. 6: "APPOS",
  815. 7: "ATTR",
  816. 8: "AUX",
  817. 9: "AUXPASS",
  818. 10: "CC",
  819. 11: "CCOMP",
  820. 12: "CONJ",
  821. 13: "CSUBJ",
  822. 14: "CSUBJPASS",
  823. 15: "DEP",
  824. 16: "DET",
  825. 17: "DISCOURSE",
  826. 18: "DOBJ",
  827. 19: "EXPL",
  828. 20: "GOESWITH",
  829. 21: "IOBJ",
  830. 22: "MARK",
  831. 23: "MWE",
  832. 24: "MWV",
  833. 25: "NEG",
  834. 26: "NN",
  835. 27: "NPADVMOD",
  836. 28: "NSUBJ",
  837. 29: "NSUBJPASS",
  838. 30: "NUM",
  839. 31: "NUMBER",
  840. 32: "P",
  841. 33: "PARATAXIS",
  842. 34: "PARTMOD",
  843. 35: "PCOMP",
  844. 36: "POBJ",
  845. 37: "POSS",
  846. 38: "POSTNEG",
  847. 39: "PRECOMP",
  848. 40: "PRECONJ",
  849. 41: "PREDET",
  850. 42: "PREF",
  851. 43: "PREP",
  852. 44: "PRONL",
  853. 45: "PRT",
  854. 46: "PS",
  855. 47: "QUANTMOD",
  856. 48: "RCMOD",
  857. 49: "RCMODREL",
  858. 50: "RDROP",
  859. 51: "REF",
  860. 52: "REMNANT",
  861. 53: "REPARANDUM",
  862. 54: "ROOT",
  863. 55: "SNUM",
  864. 56: "SUFF",
  865. 57: "TMOD",
  866. 58: "TOPIC",
  867. 59: "VMOD",
  868. 60: "VOCATIVE",
  869. 61: "XCOMP",
  870. 62: "SUFFIX",
  871. 63: "TITLE",
  872. 64: "ADVPHMOD",
  873. 65: "AUXCAUS",
  874. 66: "AUXVV",
  875. 67: "DTMOD",
  876. 68: "FOREIGN",
  877. 69: "KW",
  878. 70: "LIST",
  879. 71: "NOMC",
  880. 72: "NOMCSUBJ",
  881. 73: "NOMCSUBJPASS",
  882. 74: "NUMC",
  883. 75: "COP",
  884. 76: "DISLOCATED",
  885. 77: "ASP",
  886. 78: "GMOD",
  887. 79: "GOBJ",
  888. 80: "INFMOD",
  889. 81: "MES",
  890. 82: "NCOMP",
  891. }
  892. var DependencyEdge_Label_value = map[string]int32{
  893. "UNKNOWN": 0,
  894. "ABBREV": 1,
  895. "ACOMP": 2,
  896. "ADVCL": 3,
  897. "ADVMOD": 4,
  898. "AMOD": 5,
  899. "APPOS": 6,
  900. "ATTR": 7,
  901. "AUX": 8,
  902. "AUXPASS": 9,
  903. "CC": 10,
  904. "CCOMP": 11,
  905. "CONJ": 12,
  906. "CSUBJ": 13,
  907. "CSUBJPASS": 14,
  908. "DEP": 15,
  909. "DET": 16,
  910. "DISCOURSE": 17,
  911. "DOBJ": 18,
  912. "EXPL": 19,
  913. "GOESWITH": 20,
  914. "IOBJ": 21,
  915. "MARK": 22,
  916. "MWE": 23,
  917. "MWV": 24,
  918. "NEG": 25,
  919. "NN": 26,
  920. "NPADVMOD": 27,
  921. "NSUBJ": 28,
  922. "NSUBJPASS": 29,
  923. "NUM": 30,
  924. "NUMBER": 31,
  925. "P": 32,
  926. "PARATAXIS": 33,
  927. "PARTMOD": 34,
  928. "PCOMP": 35,
  929. "POBJ": 36,
  930. "POSS": 37,
  931. "POSTNEG": 38,
  932. "PRECOMP": 39,
  933. "PRECONJ": 40,
  934. "PREDET": 41,
  935. "PREF": 42,
  936. "PREP": 43,
  937. "PRONL": 44,
  938. "PRT": 45,
  939. "PS": 46,
  940. "QUANTMOD": 47,
  941. "RCMOD": 48,
  942. "RCMODREL": 49,
  943. "RDROP": 50,
  944. "REF": 51,
  945. "REMNANT": 52,
  946. "REPARANDUM": 53,
  947. "ROOT": 54,
  948. "SNUM": 55,
  949. "SUFF": 56,
  950. "TMOD": 57,
  951. "TOPIC": 58,
  952. "VMOD": 59,
  953. "VOCATIVE": 60,
  954. "XCOMP": 61,
  955. "SUFFIX": 62,
  956. "TITLE": 63,
  957. "ADVPHMOD": 64,
  958. "AUXCAUS": 65,
  959. "AUXVV": 66,
  960. "DTMOD": 67,
  961. "FOREIGN": 68,
  962. "KW": 69,
  963. "LIST": 70,
  964. "NOMC": 71,
  965. "NOMCSUBJ": 72,
  966. "NOMCSUBJPASS": 73,
  967. "NUMC": 74,
  968. "COP": 75,
  969. "DISLOCATED": 76,
  970. "ASP": 77,
  971. "GMOD": 78,
  972. "GOBJ": 79,
  973. "INFMOD": 80,
  974. "MES": 81,
  975. "NCOMP": 82,
  976. }
  977. func (x DependencyEdge_Label) String() string {
  978. return proto.EnumName(DependencyEdge_Label_name, int32(x))
  979. }
  980. func (DependencyEdge_Label) EnumDescriptor() ([]byte, []int) {
  981. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{6, 0}
  982. }
  983. // The supported types of mentions.
  984. type EntityMention_Type int32
  985. const (
  986. // Unknown
  987. EntityMention_TYPE_UNKNOWN EntityMention_Type = 0
  988. // Proper name
  989. EntityMention_PROPER EntityMention_Type = 1
  990. // Common noun (or noun compound)
  991. EntityMention_COMMON EntityMention_Type = 2
  992. )
  993. var EntityMention_Type_name = map[int32]string{
  994. 0: "TYPE_UNKNOWN",
  995. 1: "PROPER",
  996. 2: "COMMON",
  997. }
  998. var EntityMention_Type_value = map[string]int32{
  999. "TYPE_UNKNOWN": 0,
  1000. "PROPER": 1,
  1001. "COMMON": 2,
  1002. }
  1003. func (x EntityMention_Type) String() string {
  1004. return proto.EnumName(EntityMention_Type_name, int32(x))
  1005. }
  1006. func (EntityMention_Type) EnumDescriptor() ([]byte, []int) {
  1007. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{7, 0}
  1008. }
  1009. // ################################################################ #
  1010. //
  1011. // Represents the input to API methods.
  1012. type Document struct {
  1013. // Required. If the type is not set or is `TYPE_UNSPECIFIED`,
  1014. // returns an `INVALID_ARGUMENT` error.
  1015. Type Document_Type `protobuf:"varint,1,opt,name=type,proto3,enum=google.cloud.language.v1.Document_Type" json:"type,omitempty"`
  1016. // The source of the document: a string containing the content or a
  1017. // Google Cloud Storage URI.
  1018. //
  1019. // Types that are valid to be assigned to Source:
  1020. // *Document_Content
  1021. // *Document_GcsContentUri
  1022. Source isDocument_Source `protobuf_oneof:"source"`
  1023. // The language of the document (if not specified, the language is
  1024. // automatically detected). Both ISO and BCP-47 language codes are
  1025. // accepted.<br>
  1026. // [Language Support](/natural-language/docs/languages)
  1027. // lists currently supported languages for each API method.
  1028. // If the language (either specified by the caller or automatically detected)
  1029. // is not supported by the called API method, an `INVALID_ARGUMENT` error
  1030. // is returned.
  1031. Language string `protobuf:"bytes,4,opt,name=language,proto3" json:"language,omitempty"`
  1032. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1033. XXX_unrecognized []byte `json:"-"`
  1034. XXX_sizecache int32 `json:"-"`
  1035. }
  1036. func (m *Document) Reset() { *m = Document{} }
  1037. func (m *Document) String() string { return proto.CompactTextString(m) }
  1038. func (*Document) ProtoMessage() {}
  1039. func (*Document) Descriptor() ([]byte, []int) {
  1040. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{0}
  1041. }
  1042. func (m *Document) XXX_Unmarshal(b []byte) error {
  1043. return xxx_messageInfo_Document.Unmarshal(m, b)
  1044. }
  1045. func (m *Document) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1046. return xxx_messageInfo_Document.Marshal(b, m, deterministic)
  1047. }
  1048. func (dst *Document) XXX_Merge(src proto.Message) {
  1049. xxx_messageInfo_Document.Merge(dst, src)
  1050. }
  1051. func (m *Document) XXX_Size() int {
  1052. return xxx_messageInfo_Document.Size(m)
  1053. }
  1054. func (m *Document) XXX_DiscardUnknown() {
  1055. xxx_messageInfo_Document.DiscardUnknown(m)
  1056. }
  1057. var xxx_messageInfo_Document proto.InternalMessageInfo
  1058. func (m *Document) GetType() Document_Type {
  1059. if m != nil {
  1060. return m.Type
  1061. }
  1062. return Document_TYPE_UNSPECIFIED
  1063. }
  1064. type isDocument_Source interface {
  1065. isDocument_Source()
  1066. }
  1067. type Document_Content struct {
  1068. Content string `protobuf:"bytes,2,opt,name=content,proto3,oneof"`
  1069. }
  1070. type Document_GcsContentUri struct {
  1071. GcsContentUri string `protobuf:"bytes,3,opt,name=gcs_content_uri,json=gcsContentUri,proto3,oneof"`
  1072. }
  1073. func (*Document_Content) isDocument_Source() {}
  1074. func (*Document_GcsContentUri) isDocument_Source() {}
  1075. func (m *Document) GetSource() isDocument_Source {
  1076. if m != nil {
  1077. return m.Source
  1078. }
  1079. return nil
  1080. }
  1081. func (m *Document) GetContent() string {
  1082. if x, ok := m.GetSource().(*Document_Content); ok {
  1083. return x.Content
  1084. }
  1085. return ""
  1086. }
  1087. func (m *Document) GetGcsContentUri() string {
  1088. if x, ok := m.GetSource().(*Document_GcsContentUri); ok {
  1089. return x.GcsContentUri
  1090. }
  1091. return ""
  1092. }
  1093. func (m *Document) GetLanguage() string {
  1094. if m != nil {
  1095. return m.Language
  1096. }
  1097. return ""
  1098. }
  1099. // XXX_OneofFuncs is for the internal use of the proto package.
  1100. func (*Document) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
  1101. return _Document_OneofMarshaler, _Document_OneofUnmarshaler, _Document_OneofSizer, []interface{}{
  1102. (*Document_Content)(nil),
  1103. (*Document_GcsContentUri)(nil),
  1104. }
  1105. }
  1106. func _Document_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  1107. m := msg.(*Document)
  1108. // source
  1109. switch x := m.Source.(type) {
  1110. case *Document_Content:
  1111. b.EncodeVarint(2<<3 | proto.WireBytes)
  1112. b.EncodeStringBytes(x.Content)
  1113. case *Document_GcsContentUri:
  1114. b.EncodeVarint(3<<3 | proto.WireBytes)
  1115. b.EncodeStringBytes(x.GcsContentUri)
  1116. case nil:
  1117. default:
  1118. return fmt.Errorf("Document.Source has unexpected type %T", x)
  1119. }
  1120. return nil
  1121. }
  1122. func _Document_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  1123. m := msg.(*Document)
  1124. switch tag {
  1125. case 2: // source.content
  1126. if wire != proto.WireBytes {
  1127. return true, proto.ErrInternalBadWireType
  1128. }
  1129. x, err := b.DecodeStringBytes()
  1130. m.Source = &Document_Content{x}
  1131. return true, err
  1132. case 3: // source.gcs_content_uri
  1133. if wire != proto.WireBytes {
  1134. return true, proto.ErrInternalBadWireType
  1135. }
  1136. x, err := b.DecodeStringBytes()
  1137. m.Source = &Document_GcsContentUri{x}
  1138. return true, err
  1139. default:
  1140. return false, nil
  1141. }
  1142. }
  1143. func _Document_OneofSizer(msg proto.Message) (n int) {
  1144. m := msg.(*Document)
  1145. // source
  1146. switch x := m.Source.(type) {
  1147. case *Document_Content:
  1148. n += 1 // tag and wire
  1149. n += proto.SizeVarint(uint64(len(x.Content)))
  1150. n += len(x.Content)
  1151. case *Document_GcsContentUri:
  1152. n += 1 // tag and wire
  1153. n += proto.SizeVarint(uint64(len(x.GcsContentUri)))
  1154. n += len(x.GcsContentUri)
  1155. case nil:
  1156. default:
  1157. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  1158. }
  1159. return n
  1160. }
  1161. // Represents a sentence in the input document.
  1162. type Sentence struct {
  1163. // The sentence text.
  1164. Text *TextSpan `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
  1165. // For calls to [AnalyzeSentiment][] or if
  1166. // [AnnotateTextRequest.Features.extract_document_sentiment][google.cloud.language.v1.AnnotateTextRequest.Features.extract_document_sentiment]
  1167. // is set to true, this field will contain the sentiment for the sentence.
  1168. Sentiment *Sentiment `protobuf:"bytes,2,opt,name=sentiment,proto3" json:"sentiment,omitempty"`
  1169. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1170. XXX_unrecognized []byte `json:"-"`
  1171. XXX_sizecache int32 `json:"-"`
  1172. }
  1173. func (m *Sentence) Reset() { *m = Sentence{} }
  1174. func (m *Sentence) String() string { return proto.CompactTextString(m) }
  1175. func (*Sentence) ProtoMessage() {}
  1176. func (*Sentence) Descriptor() ([]byte, []int) {
  1177. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{1}
  1178. }
  1179. func (m *Sentence) XXX_Unmarshal(b []byte) error {
  1180. return xxx_messageInfo_Sentence.Unmarshal(m, b)
  1181. }
  1182. func (m *Sentence) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1183. return xxx_messageInfo_Sentence.Marshal(b, m, deterministic)
  1184. }
  1185. func (dst *Sentence) XXX_Merge(src proto.Message) {
  1186. xxx_messageInfo_Sentence.Merge(dst, src)
  1187. }
  1188. func (m *Sentence) XXX_Size() int {
  1189. return xxx_messageInfo_Sentence.Size(m)
  1190. }
  1191. func (m *Sentence) XXX_DiscardUnknown() {
  1192. xxx_messageInfo_Sentence.DiscardUnknown(m)
  1193. }
  1194. var xxx_messageInfo_Sentence proto.InternalMessageInfo
  1195. func (m *Sentence) GetText() *TextSpan {
  1196. if m != nil {
  1197. return m.Text
  1198. }
  1199. return nil
  1200. }
  1201. func (m *Sentence) GetSentiment() *Sentiment {
  1202. if m != nil {
  1203. return m.Sentiment
  1204. }
  1205. return nil
  1206. }
  1207. // Represents a phrase in the text that is a known entity, such as
  1208. // a person, an organization, or location. The API associates information, such
  1209. // as salience and mentions, with entities.
  1210. type Entity struct {
  1211. // The representative name for the entity.
  1212. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1213. // The entity type.
  1214. Type Entity_Type `protobuf:"varint,2,opt,name=type,proto3,enum=google.cloud.language.v1.Entity_Type" json:"type,omitempty"`
  1215. // Metadata associated with the entity.
  1216. //
  1217. // Currently, Wikipedia URLs and Knowledge Graph MIDs are provided, if
  1218. // available. The associated keys are "wikipedia_url" and "mid", respectively.
  1219. Metadata map[string]string `protobuf:"bytes,3,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1220. // The salience score associated with the entity in the [0, 1.0] range.
  1221. //
  1222. // The salience score for an entity provides information about the
  1223. // importance or centrality of that entity to the entire document text.
  1224. // Scores closer to 0 are less salient, while scores closer to 1.0 are highly
  1225. // salient.
  1226. Salience float32 `protobuf:"fixed32,4,opt,name=salience,proto3" json:"salience,omitempty"`
  1227. // The mentions of this entity in the input document. The API currently
  1228. // supports proper noun mentions.
  1229. Mentions []*EntityMention `protobuf:"bytes,5,rep,name=mentions,proto3" json:"mentions,omitempty"`
  1230. // For calls to [AnalyzeEntitySentiment][] or if
  1231. // [AnnotateTextRequest.Features.extract_entity_sentiment][google.cloud.language.v1.AnnotateTextRequest.Features.extract_entity_sentiment]
  1232. // is set to true, this field will contain the aggregate sentiment expressed
  1233. // for this entity in the provided document.
  1234. Sentiment *Sentiment `protobuf:"bytes,6,opt,name=sentiment,proto3" json:"sentiment,omitempty"`
  1235. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1236. XXX_unrecognized []byte `json:"-"`
  1237. XXX_sizecache int32 `json:"-"`
  1238. }
  1239. func (m *Entity) Reset() { *m = Entity{} }
  1240. func (m *Entity) String() string { return proto.CompactTextString(m) }
  1241. func (*Entity) ProtoMessage() {}
  1242. func (*Entity) Descriptor() ([]byte, []int) {
  1243. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{2}
  1244. }
  1245. func (m *Entity) XXX_Unmarshal(b []byte) error {
  1246. return xxx_messageInfo_Entity.Unmarshal(m, b)
  1247. }
  1248. func (m *Entity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1249. return xxx_messageInfo_Entity.Marshal(b, m, deterministic)
  1250. }
  1251. func (dst *Entity) XXX_Merge(src proto.Message) {
  1252. xxx_messageInfo_Entity.Merge(dst, src)
  1253. }
  1254. func (m *Entity) XXX_Size() int {
  1255. return xxx_messageInfo_Entity.Size(m)
  1256. }
  1257. func (m *Entity) XXX_DiscardUnknown() {
  1258. xxx_messageInfo_Entity.DiscardUnknown(m)
  1259. }
  1260. var xxx_messageInfo_Entity proto.InternalMessageInfo
  1261. func (m *Entity) GetName() string {
  1262. if m != nil {
  1263. return m.Name
  1264. }
  1265. return ""
  1266. }
  1267. func (m *Entity) GetType() Entity_Type {
  1268. if m != nil {
  1269. return m.Type
  1270. }
  1271. return Entity_UNKNOWN
  1272. }
  1273. func (m *Entity) GetMetadata() map[string]string {
  1274. if m != nil {
  1275. return m.Metadata
  1276. }
  1277. return nil
  1278. }
  1279. func (m *Entity) GetSalience() float32 {
  1280. if m != nil {
  1281. return m.Salience
  1282. }
  1283. return 0
  1284. }
  1285. func (m *Entity) GetMentions() []*EntityMention {
  1286. if m != nil {
  1287. return m.Mentions
  1288. }
  1289. return nil
  1290. }
  1291. func (m *Entity) GetSentiment() *Sentiment {
  1292. if m != nil {
  1293. return m.Sentiment
  1294. }
  1295. return nil
  1296. }
  1297. // Represents the smallest syntactic building block of the text.
  1298. type Token struct {
  1299. // The token text.
  1300. Text *TextSpan `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
  1301. // Parts of speech tag for this token.
  1302. PartOfSpeech *PartOfSpeech `protobuf:"bytes,2,opt,name=part_of_speech,json=partOfSpeech,proto3" json:"part_of_speech,omitempty"`
  1303. // Dependency tree parse for this token.
  1304. DependencyEdge *DependencyEdge `protobuf:"bytes,3,opt,name=dependency_edge,json=dependencyEdge,proto3" json:"dependency_edge,omitempty"`
  1305. // [Lemma](https://en.wikipedia.org/wiki/Lemma_%28morphology%29) of the token.
  1306. Lemma string `protobuf:"bytes,4,opt,name=lemma,proto3" json:"lemma,omitempty"`
  1307. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1308. XXX_unrecognized []byte `json:"-"`
  1309. XXX_sizecache int32 `json:"-"`
  1310. }
  1311. func (m *Token) Reset() { *m = Token{} }
  1312. func (m *Token) String() string { return proto.CompactTextString(m) }
  1313. func (*Token) ProtoMessage() {}
  1314. func (*Token) Descriptor() ([]byte, []int) {
  1315. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{3}
  1316. }
  1317. func (m *Token) XXX_Unmarshal(b []byte) error {
  1318. return xxx_messageInfo_Token.Unmarshal(m, b)
  1319. }
  1320. func (m *Token) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1321. return xxx_messageInfo_Token.Marshal(b, m, deterministic)
  1322. }
  1323. func (dst *Token) XXX_Merge(src proto.Message) {
  1324. xxx_messageInfo_Token.Merge(dst, src)
  1325. }
  1326. func (m *Token) XXX_Size() int {
  1327. return xxx_messageInfo_Token.Size(m)
  1328. }
  1329. func (m *Token) XXX_DiscardUnknown() {
  1330. xxx_messageInfo_Token.DiscardUnknown(m)
  1331. }
  1332. var xxx_messageInfo_Token proto.InternalMessageInfo
  1333. func (m *Token) GetText() *TextSpan {
  1334. if m != nil {
  1335. return m.Text
  1336. }
  1337. return nil
  1338. }
  1339. func (m *Token) GetPartOfSpeech() *PartOfSpeech {
  1340. if m != nil {
  1341. return m.PartOfSpeech
  1342. }
  1343. return nil
  1344. }
  1345. func (m *Token) GetDependencyEdge() *DependencyEdge {
  1346. if m != nil {
  1347. return m.DependencyEdge
  1348. }
  1349. return nil
  1350. }
  1351. func (m *Token) GetLemma() string {
  1352. if m != nil {
  1353. return m.Lemma
  1354. }
  1355. return ""
  1356. }
  1357. // Represents the feeling associated with the entire text or entities in
  1358. // the text.
  1359. type Sentiment struct {
  1360. // A non-negative number in the [0, +inf) range, which represents
  1361. // the absolute magnitude of sentiment regardless of score (positive or
  1362. // negative).
  1363. Magnitude float32 `protobuf:"fixed32,2,opt,name=magnitude,proto3" json:"magnitude,omitempty"`
  1364. // Sentiment score between -1.0 (negative sentiment) and 1.0
  1365. // (positive sentiment).
  1366. Score float32 `protobuf:"fixed32,3,opt,name=score,proto3" json:"score,omitempty"`
  1367. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1368. XXX_unrecognized []byte `json:"-"`
  1369. XXX_sizecache int32 `json:"-"`
  1370. }
  1371. func (m *Sentiment) Reset() { *m = Sentiment{} }
  1372. func (m *Sentiment) String() string { return proto.CompactTextString(m) }
  1373. func (*Sentiment) ProtoMessage() {}
  1374. func (*Sentiment) Descriptor() ([]byte, []int) {
  1375. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{4}
  1376. }
  1377. func (m *Sentiment) XXX_Unmarshal(b []byte) error {
  1378. return xxx_messageInfo_Sentiment.Unmarshal(m, b)
  1379. }
  1380. func (m *Sentiment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1381. return xxx_messageInfo_Sentiment.Marshal(b, m, deterministic)
  1382. }
  1383. func (dst *Sentiment) XXX_Merge(src proto.Message) {
  1384. xxx_messageInfo_Sentiment.Merge(dst, src)
  1385. }
  1386. func (m *Sentiment) XXX_Size() int {
  1387. return xxx_messageInfo_Sentiment.Size(m)
  1388. }
  1389. func (m *Sentiment) XXX_DiscardUnknown() {
  1390. xxx_messageInfo_Sentiment.DiscardUnknown(m)
  1391. }
  1392. var xxx_messageInfo_Sentiment proto.InternalMessageInfo
  1393. func (m *Sentiment) GetMagnitude() float32 {
  1394. if m != nil {
  1395. return m.Magnitude
  1396. }
  1397. return 0
  1398. }
  1399. func (m *Sentiment) GetScore() float32 {
  1400. if m != nil {
  1401. return m.Score
  1402. }
  1403. return 0
  1404. }
  1405. // Represents part of speech information for a token. Parts of speech
  1406. // are as defined in
  1407. // http://www.lrec-conf.org/proceedings/lrec2012/pdf/274_Paper.pdf
  1408. type PartOfSpeech struct {
  1409. // The part of speech tag.
  1410. Tag PartOfSpeech_Tag `protobuf:"varint,1,opt,name=tag,proto3,enum=google.cloud.language.v1.PartOfSpeech_Tag" json:"tag,omitempty"`
  1411. // The grammatical aspect.
  1412. Aspect PartOfSpeech_Aspect `protobuf:"varint,2,opt,name=aspect,proto3,enum=google.cloud.language.v1.PartOfSpeech_Aspect" json:"aspect,omitempty"`
  1413. // The grammatical case.
  1414. Case PartOfSpeech_Case `protobuf:"varint,3,opt,name=case,proto3,enum=google.cloud.language.v1.PartOfSpeech_Case" json:"case,omitempty"`
  1415. // The grammatical form.
  1416. Form PartOfSpeech_Form `protobuf:"varint,4,opt,name=form,proto3,enum=google.cloud.language.v1.PartOfSpeech_Form" json:"form,omitempty"`
  1417. // The grammatical gender.
  1418. Gender PartOfSpeech_Gender `protobuf:"varint,5,opt,name=gender,proto3,enum=google.cloud.language.v1.PartOfSpeech_Gender" json:"gender,omitempty"`
  1419. // The grammatical mood.
  1420. Mood PartOfSpeech_Mood `protobuf:"varint,6,opt,name=mood,proto3,enum=google.cloud.language.v1.PartOfSpeech_Mood" json:"mood,omitempty"`
  1421. // The grammatical number.
  1422. Number PartOfSpeech_Number `protobuf:"varint,7,opt,name=number,proto3,enum=google.cloud.language.v1.PartOfSpeech_Number" json:"number,omitempty"`
  1423. // The grammatical person.
  1424. Person PartOfSpeech_Person `protobuf:"varint,8,opt,name=person,proto3,enum=google.cloud.language.v1.PartOfSpeech_Person" json:"person,omitempty"`
  1425. // The grammatical properness.
  1426. Proper PartOfSpeech_Proper `protobuf:"varint,9,opt,name=proper,proto3,enum=google.cloud.language.v1.PartOfSpeech_Proper" json:"proper,omitempty"`
  1427. // The grammatical reciprocity.
  1428. Reciprocity PartOfSpeech_Reciprocity `protobuf:"varint,10,opt,name=reciprocity,proto3,enum=google.cloud.language.v1.PartOfSpeech_Reciprocity" json:"reciprocity,omitempty"`
  1429. // The grammatical tense.
  1430. Tense PartOfSpeech_Tense `protobuf:"varint,11,opt,name=tense,proto3,enum=google.cloud.language.v1.PartOfSpeech_Tense" json:"tense,omitempty"`
  1431. // The grammatical voice.
  1432. Voice PartOfSpeech_Voice `protobuf:"varint,12,opt,name=voice,proto3,enum=google.cloud.language.v1.PartOfSpeech_Voice" json:"voice,omitempty"`
  1433. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1434. XXX_unrecognized []byte `json:"-"`
  1435. XXX_sizecache int32 `json:"-"`
  1436. }
  1437. func (m *PartOfSpeech) Reset() { *m = PartOfSpeech{} }
  1438. func (m *PartOfSpeech) String() string { return proto.CompactTextString(m) }
  1439. func (*PartOfSpeech) ProtoMessage() {}
  1440. func (*PartOfSpeech) Descriptor() ([]byte, []int) {
  1441. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{5}
  1442. }
  1443. func (m *PartOfSpeech) XXX_Unmarshal(b []byte) error {
  1444. return xxx_messageInfo_PartOfSpeech.Unmarshal(m, b)
  1445. }
  1446. func (m *PartOfSpeech) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1447. return xxx_messageInfo_PartOfSpeech.Marshal(b, m, deterministic)
  1448. }
  1449. func (dst *PartOfSpeech) XXX_Merge(src proto.Message) {
  1450. xxx_messageInfo_PartOfSpeech.Merge(dst, src)
  1451. }
  1452. func (m *PartOfSpeech) XXX_Size() int {
  1453. return xxx_messageInfo_PartOfSpeech.Size(m)
  1454. }
  1455. func (m *PartOfSpeech) XXX_DiscardUnknown() {
  1456. xxx_messageInfo_PartOfSpeech.DiscardUnknown(m)
  1457. }
  1458. var xxx_messageInfo_PartOfSpeech proto.InternalMessageInfo
  1459. func (m *PartOfSpeech) GetTag() PartOfSpeech_Tag {
  1460. if m != nil {
  1461. return m.Tag
  1462. }
  1463. return PartOfSpeech_UNKNOWN
  1464. }
  1465. func (m *PartOfSpeech) GetAspect() PartOfSpeech_Aspect {
  1466. if m != nil {
  1467. return m.Aspect
  1468. }
  1469. return PartOfSpeech_ASPECT_UNKNOWN
  1470. }
  1471. func (m *PartOfSpeech) GetCase() PartOfSpeech_Case {
  1472. if m != nil {
  1473. return m.Case
  1474. }
  1475. return PartOfSpeech_CASE_UNKNOWN
  1476. }
  1477. func (m *PartOfSpeech) GetForm() PartOfSpeech_Form {
  1478. if m != nil {
  1479. return m.Form
  1480. }
  1481. return PartOfSpeech_FORM_UNKNOWN
  1482. }
  1483. func (m *PartOfSpeech) GetGender() PartOfSpeech_Gender {
  1484. if m != nil {
  1485. return m.Gender
  1486. }
  1487. return PartOfSpeech_GENDER_UNKNOWN
  1488. }
  1489. func (m *PartOfSpeech) GetMood() PartOfSpeech_Mood {
  1490. if m != nil {
  1491. return m.Mood
  1492. }
  1493. return PartOfSpeech_MOOD_UNKNOWN
  1494. }
  1495. func (m *PartOfSpeech) GetNumber() PartOfSpeech_Number {
  1496. if m != nil {
  1497. return m.Number
  1498. }
  1499. return PartOfSpeech_NUMBER_UNKNOWN
  1500. }
  1501. func (m *PartOfSpeech) GetPerson() PartOfSpeech_Person {
  1502. if m != nil {
  1503. return m.Person
  1504. }
  1505. return PartOfSpeech_PERSON_UNKNOWN
  1506. }
  1507. func (m *PartOfSpeech) GetProper() PartOfSpeech_Proper {
  1508. if m != nil {
  1509. return m.Proper
  1510. }
  1511. return PartOfSpeech_PROPER_UNKNOWN
  1512. }
  1513. func (m *PartOfSpeech) GetReciprocity() PartOfSpeech_Reciprocity {
  1514. if m != nil {
  1515. return m.Reciprocity
  1516. }
  1517. return PartOfSpeech_RECIPROCITY_UNKNOWN
  1518. }
  1519. func (m *PartOfSpeech) GetTense() PartOfSpeech_Tense {
  1520. if m != nil {
  1521. return m.Tense
  1522. }
  1523. return PartOfSpeech_TENSE_UNKNOWN
  1524. }
  1525. func (m *PartOfSpeech) GetVoice() PartOfSpeech_Voice {
  1526. if m != nil {
  1527. return m.Voice
  1528. }
  1529. return PartOfSpeech_VOICE_UNKNOWN
  1530. }
  1531. // Represents dependency parse tree information for a token. (For more
  1532. // information on dependency labels, see
  1533. // http://www.aclweb.org/anthology/P13-2017
  1534. type DependencyEdge struct {
  1535. // Represents the head of this token in the dependency tree.
  1536. // This is the index of the token which has an arc going to this token.
  1537. // The index is the position of the token in the array of tokens returned
  1538. // by the API method. If this token is a root token, then the
  1539. // `head_token_index` is its own index.
  1540. HeadTokenIndex int32 `protobuf:"varint,1,opt,name=head_token_index,json=headTokenIndex,proto3" json:"head_token_index,omitempty"`
  1541. // The parse label for the token.
  1542. Label DependencyEdge_Label `protobuf:"varint,2,opt,name=label,proto3,enum=google.cloud.language.v1.DependencyEdge_Label" json:"label,omitempty"`
  1543. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1544. XXX_unrecognized []byte `json:"-"`
  1545. XXX_sizecache int32 `json:"-"`
  1546. }
  1547. func (m *DependencyEdge) Reset() { *m = DependencyEdge{} }
  1548. func (m *DependencyEdge) String() string { return proto.CompactTextString(m) }
  1549. func (*DependencyEdge) ProtoMessage() {}
  1550. func (*DependencyEdge) Descriptor() ([]byte, []int) {
  1551. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{6}
  1552. }
  1553. func (m *DependencyEdge) XXX_Unmarshal(b []byte) error {
  1554. return xxx_messageInfo_DependencyEdge.Unmarshal(m, b)
  1555. }
  1556. func (m *DependencyEdge) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1557. return xxx_messageInfo_DependencyEdge.Marshal(b, m, deterministic)
  1558. }
  1559. func (dst *DependencyEdge) XXX_Merge(src proto.Message) {
  1560. xxx_messageInfo_DependencyEdge.Merge(dst, src)
  1561. }
  1562. func (m *DependencyEdge) XXX_Size() int {
  1563. return xxx_messageInfo_DependencyEdge.Size(m)
  1564. }
  1565. func (m *DependencyEdge) XXX_DiscardUnknown() {
  1566. xxx_messageInfo_DependencyEdge.DiscardUnknown(m)
  1567. }
  1568. var xxx_messageInfo_DependencyEdge proto.InternalMessageInfo
  1569. func (m *DependencyEdge) GetHeadTokenIndex() int32 {
  1570. if m != nil {
  1571. return m.HeadTokenIndex
  1572. }
  1573. return 0
  1574. }
  1575. func (m *DependencyEdge) GetLabel() DependencyEdge_Label {
  1576. if m != nil {
  1577. return m.Label
  1578. }
  1579. return DependencyEdge_UNKNOWN
  1580. }
  1581. // Represents a mention for an entity in the text. Currently, proper noun
  1582. // mentions are supported.
  1583. type EntityMention struct {
  1584. // The mention text.
  1585. Text *TextSpan `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
  1586. // The type of the entity mention.
  1587. Type EntityMention_Type `protobuf:"varint,2,opt,name=type,proto3,enum=google.cloud.language.v1.EntityMention_Type" json:"type,omitempty"`
  1588. // For calls to [AnalyzeEntitySentiment][] or if
  1589. // [AnnotateTextRequest.Features.extract_entity_sentiment][google.cloud.language.v1.AnnotateTextRequest.Features.extract_entity_sentiment]
  1590. // is set to true, this field will contain the sentiment expressed for this
  1591. // mention of the entity in the provided document.
  1592. Sentiment *Sentiment `protobuf:"bytes,3,opt,name=sentiment,proto3" json:"sentiment,omitempty"`
  1593. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1594. XXX_unrecognized []byte `json:"-"`
  1595. XXX_sizecache int32 `json:"-"`
  1596. }
  1597. func (m *EntityMention) Reset() { *m = EntityMention{} }
  1598. func (m *EntityMention) String() string { return proto.CompactTextString(m) }
  1599. func (*EntityMention) ProtoMessage() {}
  1600. func (*EntityMention) Descriptor() ([]byte, []int) {
  1601. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{7}
  1602. }
  1603. func (m *EntityMention) XXX_Unmarshal(b []byte) error {
  1604. return xxx_messageInfo_EntityMention.Unmarshal(m, b)
  1605. }
  1606. func (m *EntityMention) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1607. return xxx_messageInfo_EntityMention.Marshal(b, m, deterministic)
  1608. }
  1609. func (dst *EntityMention) XXX_Merge(src proto.Message) {
  1610. xxx_messageInfo_EntityMention.Merge(dst, src)
  1611. }
  1612. func (m *EntityMention) XXX_Size() int {
  1613. return xxx_messageInfo_EntityMention.Size(m)
  1614. }
  1615. func (m *EntityMention) XXX_DiscardUnknown() {
  1616. xxx_messageInfo_EntityMention.DiscardUnknown(m)
  1617. }
  1618. var xxx_messageInfo_EntityMention proto.InternalMessageInfo
  1619. func (m *EntityMention) GetText() *TextSpan {
  1620. if m != nil {
  1621. return m.Text
  1622. }
  1623. return nil
  1624. }
  1625. func (m *EntityMention) GetType() EntityMention_Type {
  1626. if m != nil {
  1627. return m.Type
  1628. }
  1629. return EntityMention_TYPE_UNKNOWN
  1630. }
  1631. func (m *EntityMention) GetSentiment() *Sentiment {
  1632. if m != nil {
  1633. return m.Sentiment
  1634. }
  1635. return nil
  1636. }
  1637. // Represents an output piece of text.
  1638. type TextSpan struct {
  1639. // The content of the output text.
  1640. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1641. // The API calculates the beginning offset of the content in the original
  1642. // document according to the
  1643. // [EncodingType][google.cloud.language.v1.EncodingType] specified in the API
  1644. // request.
  1645. BeginOffset int32 `protobuf:"varint,2,opt,name=begin_offset,json=beginOffset,proto3" json:"begin_offset,omitempty"`
  1646. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1647. XXX_unrecognized []byte `json:"-"`
  1648. XXX_sizecache int32 `json:"-"`
  1649. }
  1650. func (m *TextSpan) Reset() { *m = TextSpan{} }
  1651. func (m *TextSpan) String() string { return proto.CompactTextString(m) }
  1652. func (*TextSpan) ProtoMessage() {}
  1653. func (*TextSpan) Descriptor() ([]byte, []int) {
  1654. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{8}
  1655. }
  1656. func (m *TextSpan) XXX_Unmarshal(b []byte) error {
  1657. return xxx_messageInfo_TextSpan.Unmarshal(m, b)
  1658. }
  1659. func (m *TextSpan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1660. return xxx_messageInfo_TextSpan.Marshal(b, m, deterministic)
  1661. }
  1662. func (dst *TextSpan) XXX_Merge(src proto.Message) {
  1663. xxx_messageInfo_TextSpan.Merge(dst, src)
  1664. }
  1665. func (m *TextSpan) XXX_Size() int {
  1666. return xxx_messageInfo_TextSpan.Size(m)
  1667. }
  1668. func (m *TextSpan) XXX_DiscardUnknown() {
  1669. xxx_messageInfo_TextSpan.DiscardUnknown(m)
  1670. }
  1671. var xxx_messageInfo_TextSpan proto.InternalMessageInfo
  1672. func (m *TextSpan) GetContent() string {
  1673. if m != nil {
  1674. return m.Content
  1675. }
  1676. return ""
  1677. }
  1678. func (m *TextSpan) GetBeginOffset() int32 {
  1679. if m != nil {
  1680. return m.BeginOffset
  1681. }
  1682. return 0
  1683. }
  1684. // Represents a category returned from the text classifier.
  1685. type ClassificationCategory struct {
  1686. // The name of the category representing the document.
  1687. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1688. // The classifier's confidence of the category. Number represents how certain
  1689. // the classifier is that this category represents the given text.
  1690. Confidence float32 `protobuf:"fixed32,2,opt,name=confidence,proto3" json:"confidence,omitempty"`
  1691. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1692. XXX_unrecognized []byte `json:"-"`
  1693. XXX_sizecache int32 `json:"-"`
  1694. }
  1695. func (m *ClassificationCategory) Reset() { *m = ClassificationCategory{} }
  1696. func (m *ClassificationCategory) String() string { return proto.CompactTextString(m) }
  1697. func (*ClassificationCategory) ProtoMessage() {}
  1698. func (*ClassificationCategory) Descriptor() ([]byte, []int) {
  1699. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{9}
  1700. }
  1701. func (m *ClassificationCategory) XXX_Unmarshal(b []byte) error {
  1702. return xxx_messageInfo_ClassificationCategory.Unmarshal(m, b)
  1703. }
  1704. func (m *ClassificationCategory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1705. return xxx_messageInfo_ClassificationCategory.Marshal(b, m, deterministic)
  1706. }
  1707. func (dst *ClassificationCategory) XXX_Merge(src proto.Message) {
  1708. xxx_messageInfo_ClassificationCategory.Merge(dst, src)
  1709. }
  1710. func (m *ClassificationCategory) XXX_Size() int {
  1711. return xxx_messageInfo_ClassificationCategory.Size(m)
  1712. }
  1713. func (m *ClassificationCategory) XXX_DiscardUnknown() {
  1714. xxx_messageInfo_ClassificationCategory.DiscardUnknown(m)
  1715. }
  1716. var xxx_messageInfo_ClassificationCategory proto.InternalMessageInfo
  1717. func (m *ClassificationCategory) GetName() string {
  1718. if m != nil {
  1719. return m.Name
  1720. }
  1721. return ""
  1722. }
  1723. func (m *ClassificationCategory) GetConfidence() float32 {
  1724. if m != nil {
  1725. return m.Confidence
  1726. }
  1727. return 0
  1728. }
  1729. // The sentiment analysis request message.
  1730. type AnalyzeSentimentRequest struct {
  1731. // Input document.
  1732. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  1733. // The encoding type used by the API to calculate sentence offsets.
  1734. EncodingType EncodingType `protobuf:"varint,2,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1.EncodingType" json:"encoding_type,omitempty"`
  1735. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1736. XXX_unrecognized []byte `json:"-"`
  1737. XXX_sizecache int32 `json:"-"`
  1738. }
  1739. func (m *AnalyzeSentimentRequest) Reset() { *m = AnalyzeSentimentRequest{} }
  1740. func (m *AnalyzeSentimentRequest) String() string { return proto.CompactTextString(m) }
  1741. func (*AnalyzeSentimentRequest) ProtoMessage() {}
  1742. func (*AnalyzeSentimentRequest) Descriptor() ([]byte, []int) {
  1743. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{10}
  1744. }
  1745. func (m *AnalyzeSentimentRequest) XXX_Unmarshal(b []byte) error {
  1746. return xxx_messageInfo_AnalyzeSentimentRequest.Unmarshal(m, b)
  1747. }
  1748. func (m *AnalyzeSentimentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1749. return xxx_messageInfo_AnalyzeSentimentRequest.Marshal(b, m, deterministic)
  1750. }
  1751. func (dst *AnalyzeSentimentRequest) XXX_Merge(src proto.Message) {
  1752. xxx_messageInfo_AnalyzeSentimentRequest.Merge(dst, src)
  1753. }
  1754. func (m *AnalyzeSentimentRequest) XXX_Size() int {
  1755. return xxx_messageInfo_AnalyzeSentimentRequest.Size(m)
  1756. }
  1757. func (m *AnalyzeSentimentRequest) XXX_DiscardUnknown() {
  1758. xxx_messageInfo_AnalyzeSentimentRequest.DiscardUnknown(m)
  1759. }
  1760. var xxx_messageInfo_AnalyzeSentimentRequest proto.InternalMessageInfo
  1761. func (m *AnalyzeSentimentRequest) GetDocument() *Document {
  1762. if m != nil {
  1763. return m.Document
  1764. }
  1765. return nil
  1766. }
  1767. func (m *AnalyzeSentimentRequest) GetEncodingType() EncodingType {
  1768. if m != nil {
  1769. return m.EncodingType
  1770. }
  1771. return EncodingType_NONE
  1772. }
  1773. // The sentiment analysis response message.
  1774. type AnalyzeSentimentResponse struct {
  1775. // The overall sentiment of the input document.
  1776. DocumentSentiment *Sentiment `protobuf:"bytes,1,opt,name=document_sentiment,json=documentSentiment,proto3" json:"document_sentiment,omitempty"`
  1777. // The language of the text, which will be the same as the language specified
  1778. // in the request or, if not specified, the automatically-detected language.
  1779. // See [Document.language][google.cloud.language.v1.Document.language] field
  1780. // for more details.
  1781. Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
  1782. // The sentiment for all the sentences in the document.
  1783. Sentences []*Sentence `protobuf:"bytes,3,rep,name=sentences,proto3" json:"sentences,omitempty"`
  1784. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1785. XXX_unrecognized []byte `json:"-"`
  1786. XXX_sizecache int32 `json:"-"`
  1787. }
  1788. func (m *AnalyzeSentimentResponse) Reset() { *m = AnalyzeSentimentResponse{} }
  1789. func (m *AnalyzeSentimentResponse) String() string { return proto.CompactTextString(m) }
  1790. func (*AnalyzeSentimentResponse) ProtoMessage() {}
  1791. func (*AnalyzeSentimentResponse) Descriptor() ([]byte, []int) {
  1792. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{11}
  1793. }
  1794. func (m *AnalyzeSentimentResponse) XXX_Unmarshal(b []byte) error {
  1795. return xxx_messageInfo_AnalyzeSentimentResponse.Unmarshal(m, b)
  1796. }
  1797. func (m *AnalyzeSentimentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1798. return xxx_messageInfo_AnalyzeSentimentResponse.Marshal(b, m, deterministic)
  1799. }
  1800. func (dst *AnalyzeSentimentResponse) XXX_Merge(src proto.Message) {
  1801. xxx_messageInfo_AnalyzeSentimentResponse.Merge(dst, src)
  1802. }
  1803. func (m *AnalyzeSentimentResponse) XXX_Size() int {
  1804. return xxx_messageInfo_AnalyzeSentimentResponse.Size(m)
  1805. }
  1806. func (m *AnalyzeSentimentResponse) XXX_DiscardUnknown() {
  1807. xxx_messageInfo_AnalyzeSentimentResponse.DiscardUnknown(m)
  1808. }
  1809. var xxx_messageInfo_AnalyzeSentimentResponse proto.InternalMessageInfo
  1810. func (m *AnalyzeSentimentResponse) GetDocumentSentiment() *Sentiment {
  1811. if m != nil {
  1812. return m.DocumentSentiment
  1813. }
  1814. return nil
  1815. }
  1816. func (m *AnalyzeSentimentResponse) GetLanguage() string {
  1817. if m != nil {
  1818. return m.Language
  1819. }
  1820. return ""
  1821. }
  1822. func (m *AnalyzeSentimentResponse) GetSentences() []*Sentence {
  1823. if m != nil {
  1824. return m.Sentences
  1825. }
  1826. return nil
  1827. }
  1828. // The entity-level sentiment analysis request message.
  1829. type AnalyzeEntitySentimentRequest struct {
  1830. // Input document.
  1831. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  1832. // The encoding type used by the API to calculate offsets.
  1833. EncodingType EncodingType `protobuf:"varint,2,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1.EncodingType" json:"encoding_type,omitempty"`
  1834. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1835. XXX_unrecognized []byte `json:"-"`
  1836. XXX_sizecache int32 `json:"-"`
  1837. }
  1838. func (m *AnalyzeEntitySentimentRequest) Reset() { *m = AnalyzeEntitySentimentRequest{} }
  1839. func (m *AnalyzeEntitySentimentRequest) String() string { return proto.CompactTextString(m) }
  1840. func (*AnalyzeEntitySentimentRequest) ProtoMessage() {}
  1841. func (*AnalyzeEntitySentimentRequest) Descriptor() ([]byte, []int) {
  1842. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{12}
  1843. }
  1844. func (m *AnalyzeEntitySentimentRequest) XXX_Unmarshal(b []byte) error {
  1845. return xxx_messageInfo_AnalyzeEntitySentimentRequest.Unmarshal(m, b)
  1846. }
  1847. func (m *AnalyzeEntitySentimentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1848. return xxx_messageInfo_AnalyzeEntitySentimentRequest.Marshal(b, m, deterministic)
  1849. }
  1850. func (dst *AnalyzeEntitySentimentRequest) XXX_Merge(src proto.Message) {
  1851. xxx_messageInfo_AnalyzeEntitySentimentRequest.Merge(dst, src)
  1852. }
  1853. func (m *AnalyzeEntitySentimentRequest) XXX_Size() int {
  1854. return xxx_messageInfo_AnalyzeEntitySentimentRequest.Size(m)
  1855. }
  1856. func (m *AnalyzeEntitySentimentRequest) XXX_DiscardUnknown() {
  1857. xxx_messageInfo_AnalyzeEntitySentimentRequest.DiscardUnknown(m)
  1858. }
  1859. var xxx_messageInfo_AnalyzeEntitySentimentRequest proto.InternalMessageInfo
  1860. func (m *AnalyzeEntitySentimentRequest) GetDocument() *Document {
  1861. if m != nil {
  1862. return m.Document
  1863. }
  1864. return nil
  1865. }
  1866. func (m *AnalyzeEntitySentimentRequest) GetEncodingType() EncodingType {
  1867. if m != nil {
  1868. return m.EncodingType
  1869. }
  1870. return EncodingType_NONE
  1871. }
  1872. // The entity-level sentiment analysis response message.
  1873. type AnalyzeEntitySentimentResponse struct {
  1874. // The recognized entities in the input document with associated sentiments.
  1875. Entities []*Entity `protobuf:"bytes,1,rep,name=entities,proto3" json:"entities,omitempty"`
  1876. // The language of the text, which will be the same as the language specified
  1877. // in the request or, if not specified, the automatically-detected language.
  1878. // See [Document.language][google.cloud.language.v1.Document.language] field
  1879. // for more details.
  1880. Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
  1881. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1882. XXX_unrecognized []byte `json:"-"`
  1883. XXX_sizecache int32 `json:"-"`
  1884. }
  1885. func (m *AnalyzeEntitySentimentResponse) Reset() { *m = AnalyzeEntitySentimentResponse{} }
  1886. func (m *AnalyzeEntitySentimentResponse) String() string { return proto.CompactTextString(m) }
  1887. func (*AnalyzeEntitySentimentResponse) ProtoMessage() {}
  1888. func (*AnalyzeEntitySentimentResponse) Descriptor() ([]byte, []int) {
  1889. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{13}
  1890. }
  1891. func (m *AnalyzeEntitySentimentResponse) XXX_Unmarshal(b []byte) error {
  1892. return xxx_messageInfo_AnalyzeEntitySentimentResponse.Unmarshal(m, b)
  1893. }
  1894. func (m *AnalyzeEntitySentimentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1895. return xxx_messageInfo_AnalyzeEntitySentimentResponse.Marshal(b, m, deterministic)
  1896. }
  1897. func (dst *AnalyzeEntitySentimentResponse) XXX_Merge(src proto.Message) {
  1898. xxx_messageInfo_AnalyzeEntitySentimentResponse.Merge(dst, src)
  1899. }
  1900. func (m *AnalyzeEntitySentimentResponse) XXX_Size() int {
  1901. return xxx_messageInfo_AnalyzeEntitySentimentResponse.Size(m)
  1902. }
  1903. func (m *AnalyzeEntitySentimentResponse) XXX_DiscardUnknown() {
  1904. xxx_messageInfo_AnalyzeEntitySentimentResponse.DiscardUnknown(m)
  1905. }
  1906. var xxx_messageInfo_AnalyzeEntitySentimentResponse proto.InternalMessageInfo
  1907. func (m *AnalyzeEntitySentimentResponse) GetEntities() []*Entity {
  1908. if m != nil {
  1909. return m.Entities
  1910. }
  1911. return nil
  1912. }
  1913. func (m *AnalyzeEntitySentimentResponse) GetLanguage() string {
  1914. if m != nil {
  1915. return m.Language
  1916. }
  1917. return ""
  1918. }
  1919. // The entity analysis request message.
  1920. type AnalyzeEntitiesRequest struct {
  1921. // Input document.
  1922. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  1923. // The encoding type used by the API to calculate offsets.
  1924. EncodingType EncodingType `protobuf:"varint,2,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1.EncodingType" json:"encoding_type,omitempty"`
  1925. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1926. XXX_unrecognized []byte `json:"-"`
  1927. XXX_sizecache int32 `json:"-"`
  1928. }
  1929. func (m *AnalyzeEntitiesRequest) Reset() { *m = AnalyzeEntitiesRequest{} }
  1930. func (m *AnalyzeEntitiesRequest) String() string { return proto.CompactTextString(m) }
  1931. func (*AnalyzeEntitiesRequest) ProtoMessage() {}
  1932. func (*AnalyzeEntitiesRequest) Descriptor() ([]byte, []int) {
  1933. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{14}
  1934. }
  1935. func (m *AnalyzeEntitiesRequest) XXX_Unmarshal(b []byte) error {
  1936. return xxx_messageInfo_AnalyzeEntitiesRequest.Unmarshal(m, b)
  1937. }
  1938. func (m *AnalyzeEntitiesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1939. return xxx_messageInfo_AnalyzeEntitiesRequest.Marshal(b, m, deterministic)
  1940. }
  1941. func (dst *AnalyzeEntitiesRequest) XXX_Merge(src proto.Message) {
  1942. xxx_messageInfo_AnalyzeEntitiesRequest.Merge(dst, src)
  1943. }
  1944. func (m *AnalyzeEntitiesRequest) XXX_Size() int {
  1945. return xxx_messageInfo_AnalyzeEntitiesRequest.Size(m)
  1946. }
  1947. func (m *AnalyzeEntitiesRequest) XXX_DiscardUnknown() {
  1948. xxx_messageInfo_AnalyzeEntitiesRequest.DiscardUnknown(m)
  1949. }
  1950. var xxx_messageInfo_AnalyzeEntitiesRequest proto.InternalMessageInfo
  1951. func (m *AnalyzeEntitiesRequest) GetDocument() *Document {
  1952. if m != nil {
  1953. return m.Document
  1954. }
  1955. return nil
  1956. }
  1957. func (m *AnalyzeEntitiesRequest) GetEncodingType() EncodingType {
  1958. if m != nil {
  1959. return m.EncodingType
  1960. }
  1961. return EncodingType_NONE
  1962. }
  1963. // The entity analysis response message.
  1964. type AnalyzeEntitiesResponse struct {
  1965. // The recognized entities in the input document.
  1966. Entities []*Entity `protobuf:"bytes,1,rep,name=entities,proto3" json:"entities,omitempty"`
  1967. // The language of the text, which will be the same as the language specified
  1968. // in the request or, if not specified, the automatically-detected language.
  1969. // See [Document.language][google.cloud.language.v1.Document.language] field
  1970. // for more details.
  1971. Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
  1972. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1973. XXX_unrecognized []byte `json:"-"`
  1974. XXX_sizecache int32 `json:"-"`
  1975. }
  1976. func (m *AnalyzeEntitiesResponse) Reset() { *m = AnalyzeEntitiesResponse{} }
  1977. func (m *AnalyzeEntitiesResponse) String() string { return proto.CompactTextString(m) }
  1978. func (*AnalyzeEntitiesResponse) ProtoMessage() {}
  1979. func (*AnalyzeEntitiesResponse) Descriptor() ([]byte, []int) {
  1980. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{15}
  1981. }
  1982. func (m *AnalyzeEntitiesResponse) XXX_Unmarshal(b []byte) error {
  1983. return xxx_messageInfo_AnalyzeEntitiesResponse.Unmarshal(m, b)
  1984. }
  1985. func (m *AnalyzeEntitiesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1986. return xxx_messageInfo_AnalyzeEntitiesResponse.Marshal(b, m, deterministic)
  1987. }
  1988. func (dst *AnalyzeEntitiesResponse) XXX_Merge(src proto.Message) {
  1989. xxx_messageInfo_AnalyzeEntitiesResponse.Merge(dst, src)
  1990. }
  1991. func (m *AnalyzeEntitiesResponse) XXX_Size() int {
  1992. return xxx_messageInfo_AnalyzeEntitiesResponse.Size(m)
  1993. }
  1994. func (m *AnalyzeEntitiesResponse) XXX_DiscardUnknown() {
  1995. xxx_messageInfo_AnalyzeEntitiesResponse.DiscardUnknown(m)
  1996. }
  1997. var xxx_messageInfo_AnalyzeEntitiesResponse proto.InternalMessageInfo
  1998. func (m *AnalyzeEntitiesResponse) GetEntities() []*Entity {
  1999. if m != nil {
  2000. return m.Entities
  2001. }
  2002. return nil
  2003. }
  2004. func (m *AnalyzeEntitiesResponse) GetLanguage() string {
  2005. if m != nil {
  2006. return m.Language
  2007. }
  2008. return ""
  2009. }
  2010. // The syntax analysis request message.
  2011. type AnalyzeSyntaxRequest struct {
  2012. // Input document.
  2013. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  2014. // The encoding type used by the API to calculate offsets.
  2015. EncodingType EncodingType `protobuf:"varint,2,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1.EncodingType" json:"encoding_type,omitempty"`
  2016. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2017. XXX_unrecognized []byte `json:"-"`
  2018. XXX_sizecache int32 `json:"-"`
  2019. }
  2020. func (m *AnalyzeSyntaxRequest) Reset() { *m = AnalyzeSyntaxRequest{} }
  2021. func (m *AnalyzeSyntaxRequest) String() string { return proto.CompactTextString(m) }
  2022. func (*AnalyzeSyntaxRequest) ProtoMessage() {}
  2023. func (*AnalyzeSyntaxRequest) Descriptor() ([]byte, []int) {
  2024. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{16}
  2025. }
  2026. func (m *AnalyzeSyntaxRequest) XXX_Unmarshal(b []byte) error {
  2027. return xxx_messageInfo_AnalyzeSyntaxRequest.Unmarshal(m, b)
  2028. }
  2029. func (m *AnalyzeSyntaxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2030. return xxx_messageInfo_AnalyzeSyntaxRequest.Marshal(b, m, deterministic)
  2031. }
  2032. func (dst *AnalyzeSyntaxRequest) XXX_Merge(src proto.Message) {
  2033. xxx_messageInfo_AnalyzeSyntaxRequest.Merge(dst, src)
  2034. }
  2035. func (m *AnalyzeSyntaxRequest) XXX_Size() int {
  2036. return xxx_messageInfo_AnalyzeSyntaxRequest.Size(m)
  2037. }
  2038. func (m *AnalyzeSyntaxRequest) XXX_DiscardUnknown() {
  2039. xxx_messageInfo_AnalyzeSyntaxRequest.DiscardUnknown(m)
  2040. }
  2041. var xxx_messageInfo_AnalyzeSyntaxRequest proto.InternalMessageInfo
  2042. func (m *AnalyzeSyntaxRequest) GetDocument() *Document {
  2043. if m != nil {
  2044. return m.Document
  2045. }
  2046. return nil
  2047. }
  2048. func (m *AnalyzeSyntaxRequest) GetEncodingType() EncodingType {
  2049. if m != nil {
  2050. return m.EncodingType
  2051. }
  2052. return EncodingType_NONE
  2053. }
  2054. // The syntax analysis response message.
  2055. type AnalyzeSyntaxResponse struct {
  2056. // Sentences in the input document.
  2057. Sentences []*Sentence `protobuf:"bytes,1,rep,name=sentences,proto3" json:"sentences,omitempty"`
  2058. // Tokens, along with their syntactic information, in the input document.
  2059. Tokens []*Token `protobuf:"bytes,2,rep,name=tokens,proto3" json:"tokens,omitempty"`
  2060. // The language of the text, which will be the same as the language specified
  2061. // in the request or, if not specified, the automatically-detected language.
  2062. // See [Document.language][google.cloud.language.v1.Document.language] field
  2063. // for more details.
  2064. Language string `protobuf:"bytes,3,opt,name=language,proto3" json:"language,omitempty"`
  2065. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2066. XXX_unrecognized []byte `json:"-"`
  2067. XXX_sizecache int32 `json:"-"`
  2068. }
  2069. func (m *AnalyzeSyntaxResponse) Reset() { *m = AnalyzeSyntaxResponse{} }
  2070. func (m *AnalyzeSyntaxResponse) String() string { return proto.CompactTextString(m) }
  2071. func (*AnalyzeSyntaxResponse) ProtoMessage() {}
  2072. func (*AnalyzeSyntaxResponse) Descriptor() ([]byte, []int) {
  2073. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{17}
  2074. }
  2075. func (m *AnalyzeSyntaxResponse) XXX_Unmarshal(b []byte) error {
  2076. return xxx_messageInfo_AnalyzeSyntaxResponse.Unmarshal(m, b)
  2077. }
  2078. func (m *AnalyzeSyntaxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2079. return xxx_messageInfo_AnalyzeSyntaxResponse.Marshal(b, m, deterministic)
  2080. }
  2081. func (dst *AnalyzeSyntaxResponse) XXX_Merge(src proto.Message) {
  2082. xxx_messageInfo_AnalyzeSyntaxResponse.Merge(dst, src)
  2083. }
  2084. func (m *AnalyzeSyntaxResponse) XXX_Size() int {
  2085. return xxx_messageInfo_AnalyzeSyntaxResponse.Size(m)
  2086. }
  2087. func (m *AnalyzeSyntaxResponse) XXX_DiscardUnknown() {
  2088. xxx_messageInfo_AnalyzeSyntaxResponse.DiscardUnknown(m)
  2089. }
  2090. var xxx_messageInfo_AnalyzeSyntaxResponse proto.InternalMessageInfo
  2091. func (m *AnalyzeSyntaxResponse) GetSentences() []*Sentence {
  2092. if m != nil {
  2093. return m.Sentences
  2094. }
  2095. return nil
  2096. }
  2097. func (m *AnalyzeSyntaxResponse) GetTokens() []*Token {
  2098. if m != nil {
  2099. return m.Tokens
  2100. }
  2101. return nil
  2102. }
  2103. func (m *AnalyzeSyntaxResponse) GetLanguage() string {
  2104. if m != nil {
  2105. return m.Language
  2106. }
  2107. return ""
  2108. }
  2109. // The document classification request message.
  2110. type ClassifyTextRequest struct {
  2111. // Input document.
  2112. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  2113. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2114. XXX_unrecognized []byte `json:"-"`
  2115. XXX_sizecache int32 `json:"-"`
  2116. }
  2117. func (m *ClassifyTextRequest) Reset() { *m = ClassifyTextRequest{} }
  2118. func (m *ClassifyTextRequest) String() string { return proto.CompactTextString(m) }
  2119. func (*ClassifyTextRequest) ProtoMessage() {}
  2120. func (*ClassifyTextRequest) Descriptor() ([]byte, []int) {
  2121. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{18}
  2122. }
  2123. func (m *ClassifyTextRequest) XXX_Unmarshal(b []byte) error {
  2124. return xxx_messageInfo_ClassifyTextRequest.Unmarshal(m, b)
  2125. }
  2126. func (m *ClassifyTextRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2127. return xxx_messageInfo_ClassifyTextRequest.Marshal(b, m, deterministic)
  2128. }
  2129. func (dst *ClassifyTextRequest) XXX_Merge(src proto.Message) {
  2130. xxx_messageInfo_ClassifyTextRequest.Merge(dst, src)
  2131. }
  2132. func (m *ClassifyTextRequest) XXX_Size() int {
  2133. return xxx_messageInfo_ClassifyTextRequest.Size(m)
  2134. }
  2135. func (m *ClassifyTextRequest) XXX_DiscardUnknown() {
  2136. xxx_messageInfo_ClassifyTextRequest.DiscardUnknown(m)
  2137. }
  2138. var xxx_messageInfo_ClassifyTextRequest proto.InternalMessageInfo
  2139. func (m *ClassifyTextRequest) GetDocument() *Document {
  2140. if m != nil {
  2141. return m.Document
  2142. }
  2143. return nil
  2144. }
  2145. // The document classification response message.
  2146. type ClassifyTextResponse struct {
  2147. // Categories representing the input document.
  2148. Categories []*ClassificationCategory `protobuf:"bytes,1,rep,name=categories,proto3" json:"categories,omitempty"`
  2149. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2150. XXX_unrecognized []byte `json:"-"`
  2151. XXX_sizecache int32 `json:"-"`
  2152. }
  2153. func (m *ClassifyTextResponse) Reset() { *m = ClassifyTextResponse{} }
  2154. func (m *ClassifyTextResponse) String() string { return proto.CompactTextString(m) }
  2155. func (*ClassifyTextResponse) ProtoMessage() {}
  2156. func (*ClassifyTextResponse) Descriptor() ([]byte, []int) {
  2157. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{19}
  2158. }
  2159. func (m *ClassifyTextResponse) XXX_Unmarshal(b []byte) error {
  2160. return xxx_messageInfo_ClassifyTextResponse.Unmarshal(m, b)
  2161. }
  2162. func (m *ClassifyTextResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2163. return xxx_messageInfo_ClassifyTextResponse.Marshal(b, m, deterministic)
  2164. }
  2165. func (dst *ClassifyTextResponse) XXX_Merge(src proto.Message) {
  2166. xxx_messageInfo_ClassifyTextResponse.Merge(dst, src)
  2167. }
  2168. func (m *ClassifyTextResponse) XXX_Size() int {
  2169. return xxx_messageInfo_ClassifyTextResponse.Size(m)
  2170. }
  2171. func (m *ClassifyTextResponse) XXX_DiscardUnknown() {
  2172. xxx_messageInfo_ClassifyTextResponse.DiscardUnknown(m)
  2173. }
  2174. var xxx_messageInfo_ClassifyTextResponse proto.InternalMessageInfo
  2175. func (m *ClassifyTextResponse) GetCategories() []*ClassificationCategory {
  2176. if m != nil {
  2177. return m.Categories
  2178. }
  2179. return nil
  2180. }
  2181. // The request message for the text annotation API, which can perform multiple
  2182. // analysis types (sentiment, entities, and syntax) in one call.
  2183. type AnnotateTextRequest struct {
  2184. // Input document.
  2185. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  2186. // The enabled features.
  2187. Features *AnnotateTextRequest_Features `protobuf:"bytes,2,opt,name=features,proto3" json:"features,omitempty"`
  2188. // The encoding type used by the API to calculate offsets.
  2189. EncodingType EncodingType `protobuf:"varint,3,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1.EncodingType" json:"encoding_type,omitempty"`
  2190. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2191. XXX_unrecognized []byte `json:"-"`
  2192. XXX_sizecache int32 `json:"-"`
  2193. }
  2194. func (m *AnnotateTextRequest) Reset() { *m = AnnotateTextRequest{} }
  2195. func (m *AnnotateTextRequest) String() string { return proto.CompactTextString(m) }
  2196. func (*AnnotateTextRequest) ProtoMessage() {}
  2197. func (*AnnotateTextRequest) Descriptor() ([]byte, []int) {
  2198. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{20}
  2199. }
  2200. func (m *AnnotateTextRequest) XXX_Unmarshal(b []byte) error {
  2201. return xxx_messageInfo_AnnotateTextRequest.Unmarshal(m, b)
  2202. }
  2203. func (m *AnnotateTextRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2204. return xxx_messageInfo_AnnotateTextRequest.Marshal(b, m, deterministic)
  2205. }
  2206. func (dst *AnnotateTextRequest) XXX_Merge(src proto.Message) {
  2207. xxx_messageInfo_AnnotateTextRequest.Merge(dst, src)
  2208. }
  2209. func (m *AnnotateTextRequest) XXX_Size() int {
  2210. return xxx_messageInfo_AnnotateTextRequest.Size(m)
  2211. }
  2212. func (m *AnnotateTextRequest) XXX_DiscardUnknown() {
  2213. xxx_messageInfo_AnnotateTextRequest.DiscardUnknown(m)
  2214. }
  2215. var xxx_messageInfo_AnnotateTextRequest proto.InternalMessageInfo
  2216. func (m *AnnotateTextRequest) GetDocument() *Document {
  2217. if m != nil {
  2218. return m.Document
  2219. }
  2220. return nil
  2221. }
  2222. func (m *AnnotateTextRequest) GetFeatures() *AnnotateTextRequest_Features {
  2223. if m != nil {
  2224. return m.Features
  2225. }
  2226. return nil
  2227. }
  2228. func (m *AnnotateTextRequest) GetEncodingType() EncodingType {
  2229. if m != nil {
  2230. return m.EncodingType
  2231. }
  2232. return EncodingType_NONE
  2233. }
  2234. // All available features for sentiment, syntax, and semantic analysis.
  2235. // Setting each one to true will enable that specific analysis for the input.
  2236. type AnnotateTextRequest_Features struct {
  2237. // Extract syntax information.
  2238. ExtractSyntax bool `protobuf:"varint,1,opt,name=extract_syntax,json=extractSyntax,proto3" json:"extract_syntax,omitempty"`
  2239. // Extract entities.
  2240. ExtractEntities bool `protobuf:"varint,2,opt,name=extract_entities,json=extractEntities,proto3" json:"extract_entities,omitempty"`
  2241. // Extract document-level sentiment.
  2242. ExtractDocumentSentiment bool `protobuf:"varint,3,opt,name=extract_document_sentiment,json=extractDocumentSentiment,proto3" json:"extract_document_sentiment,omitempty"`
  2243. // Extract entities and their associated sentiment.
  2244. ExtractEntitySentiment bool `protobuf:"varint,4,opt,name=extract_entity_sentiment,json=extractEntitySentiment,proto3" json:"extract_entity_sentiment,omitempty"`
  2245. // Classify the full document into categories.
  2246. ClassifyText bool `protobuf:"varint,6,opt,name=classify_text,json=classifyText,proto3" json:"classify_text,omitempty"`
  2247. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2248. XXX_unrecognized []byte `json:"-"`
  2249. XXX_sizecache int32 `json:"-"`
  2250. }
  2251. func (m *AnnotateTextRequest_Features) Reset() { *m = AnnotateTextRequest_Features{} }
  2252. func (m *AnnotateTextRequest_Features) String() string { return proto.CompactTextString(m) }
  2253. func (*AnnotateTextRequest_Features) ProtoMessage() {}
  2254. func (*AnnotateTextRequest_Features) Descriptor() ([]byte, []int) {
  2255. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{20, 0}
  2256. }
  2257. func (m *AnnotateTextRequest_Features) XXX_Unmarshal(b []byte) error {
  2258. return xxx_messageInfo_AnnotateTextRequest_Features.Unmarshal(m, b)
  2259. }
  2260. func (m *AnnotateTextRequest_Features) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2261. return xxx_messageInfo_AnnotateTextRequest_Features.Marshal(b, m, deterministic)
  2262. }
  2263. func (dst *AnnotateTextRequest_Features) XXX_Merge(src proto.Message) {
  2264. xxx_messageInfo_AnnotateTextRequest_Features.Merge(dst, src)
  2265. }
  2266. func (m *AnnotateTextRequest_Features) XXX_Size() int {
  2267. return xxx_messageInfo_AnnotateTextRequest_Features.Size(m)
  2268. }
  2269. func (m *AnnotateTextRequest_Features) XXX_DiscardUnknown() {
  2270. xxx_messageInfo_AnnotateTextRequest_Features.DiscardUnknown(m)
  2271. }
  2272. var xxx_messageInfo_AnnotateTextRequest_Features proto.InternalMessageInfo
  2273. func (m *AnnotateTextRequest_Features) GetExtractSyntax() bool {
  2274. if m != nil {
  2275. return m.ExtractSyntax
  2276. }
  2277. return false
  2278. }
  2279. func (m *AnnotateTextRequest_Features) GetExtractEntities() bool {
  2280. if m != nil {
  2281. return m.ExtractEntities
  2282. }
  2283. return false
  2284. }
  2285. func (m *AnnotateTextRequest_Features) GetExtractDocumentSentiment() bool {
  2286. if m != nil {
  2287. return m.ExtractDocumentSentiment
  2288. }
  2289. return false
  2290. }
  2291. func (m *AnnotateTextRequest_Features) GetExtractEntitySentiment() bool {
  2292. if m != nil {
  2293. return m.ExtractEntitySentiment
  2294. }
  2295. return false
  2296. }
  2297. func (m *AnnotateTextRequest_Features) GetClassifyText() bool {
  2298. if m != nil {
  2299. return m.ClassifyText
  2300. }
  2301. return false
  2302. }
  2303. // The text annotations response message.
  2304. type AnnotateTextResponse struct {
  2305. // Sentences in the input document. Populated if the user enables
  2306. // [AnnotateTextRequest.Features.extract_syntax][google.cloud.language.v1.AnnotateTextRequest.Features.extract_syntax].
  2307. Sentences []*Sentence `protobuf:"bytes,1,rep,name=sentences,proto3" json:"sentences,omitempty"`
  2308. // Tokens, along with their syntactic information, in the input document.
  2309. // Populated if the user enables
  2310. // [AnnotateTextRequest.Features.extract_syntax][google.cloud.language.v1.AnnotateTextRequest.Features.extract_syntax].
  2311. Tokens []*Token `protobuf:"bytes,2,rep,name=tokens,proto3" json:"tokens,omitempty"`
  2312. // Entities, along with their semantic information, in the input document.
  2313. // Populated if the user enables
  2314. // [AnnotateTextRequest.Features.extract_entities][google.cloud.language.v1.AnnotateTextRequest.Features.extract_entities].
  2315. Entities []*Entity `protobuf:"bytes,3,rep,name=entities,proto3" json:"entities,omitempty"`
  2316. // The overall sentiment for the document. Populated if the user enables
  2317. // [AnnotateTextRequest.Features.extract_document_sentiment][google.cloud.language.v1.AnnotateTextRequest.Features.extract_document_sentiment].
  2318. DocumentSentiment *Sentiment `protobuf:"bytes,4,opt,name=document_sentiment,json=documentSentiment,proto3" json:"document_sentiment,omitempty"`
  2319. // The language of the text, which will be the same as the language specified
  2320. // in the request or, if not specified, the automatically-detected language.
  2321. // See [Document.language][google.cloud.language.v1.Document.language] field
  2322. // for more details.
  2323. Language string `protobuf:"bytes,5,opt,name=language,proto3" json:"language,omitempty"`
  2324. // Categories identified in the input document.
  2325. Categories []*ClassificationCategory `protobuf:"bytes,6,rep,name=categories,proto3" json:"categories,omitempty"`
  2326. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2327. XXX_unrecognized []byte `json:"-"`
  2328. XXX_sizecache int32 `json:"-"`
  2329. }
  2330. func (m *AnnotateTextResponse) Reset() { *m = AnnotateTextResponse{} }
  2331. func (m *AnnotateTextResponse) String() string { return proto.CompactTextString(m) }
  2332. func (*AnnotateTextResponse) ProtoMessage() {}
  2333. func (*AnnotateTextResponse) Descriptor() ([]byte, []int) {
  2334. return fileDescriptor_language_service_3829b5c08eb7a6ed, []int{21}
  2335. }
  2336. func (m *AnnotateTextResponse) XXX_Unmarshal(b []byte) error {
  2337. return xxx_messageInfo_AnnotateTextResponse.Unmarshal(m, b)
  2338. }
  2339. func (m *AnnotateTextResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2340. return xxx_messageInfo_AnnotateTextResponse.Marshal(b, m, deterministic)
  2341. }
  2342. func (dst *AnnotateTextResponse) XXX_Merge(src proto.Message) {
  2343. xxx_messageInfo_AnnotateTextResponse.Merge(dst, src)
  2344. }
  2345. func (m *AnnotateTextResponse) XXX_Size() int {
  2346. return xxx_messageInfo_AnnotateTextResponse.Size(m)
  2347. }
  2348. func (m *AnnotateTextResponse) XXX_DiscardUnknown() {
  2349. xxx_messageInfo_AnnotateTextResponse.DiscardUnknown(m)
  2350. }
  2351. var xxx_messageInfo_AnnotateTextResponse proto.InternalMessageInfo
  2352. func (m *AnnotateTextResponse) GetSentences() []*Sentence {
  2353. if m != nil {
  2354. return m.Sentences
  2355. }
  2356. return nil
  2357. }
  2358. func (m *AnnotateTextResponse) GetTokens() []*Token {
  2359. if m != nil {
  2360. return m.Tokens
  2361. }
  2362. return nil
  2363. }
  2364. func (m *AnnotateTextResponse) GetEntities() []*Entity {
  2365. if m != nil {
  2366. return m.Entities
  2367. }
  2368. return nil
  2369. }
  2370. func (m *AnnotateTextResponse) GetDocumentSentiment() *Sentiment {
  2371. if m != nil {
  2372. return m.DocumentSentiment
  2373. }
  2374. return nil
  2375. }
  2376. func (m *AnnotateTextResponse) GetLanguage() string {
  2377. if m != nil {
  2378. return m.Language
  2379. }
  2380. return ""
  2381. }
  2382. func (m *AnnotateTextResponse) GetCategories() []*ClassificationCategory {
  2383. if m != nil {
  2384. return m.Categories
  2385. }
  2386. return nil
  2387. }
  2388. func init() {
  2389. proto.RegisterType((*Document)(nil), "google.cloud.language.v1.Document")
  2390. proto.RegisterType((*Sentence)(nil), "google.cloud.language.v1.Sentence")
  2391. proto.RegisterType((*Entity)(nil), "google.cloud.language.v1.Entity")
  2392. proto.RegisterMapType((map[string]string)(nil), "google.cloud.language.v1.Entity.MetadataEntry")
  2393. proto.RegisterType((*Token)(nil), "google.cloud.language.v1.Token")
  2394. proto.RegisterType((*Sentiment)(nil), "google.cloud.language.v1.Sentiment")
  2395. proto.RegisterType((*PartOfSpeech)(nil), "google.cloud.language.v1.PartOfSpeech")
  2396. proto.RegisterType((*DependencyEdge)(nil), "google.cloud.language.v1.DependencyEdge")
  2397. proto.RegisterType((*EntityMention)(nil), "google.cloud.language.v1.EntityMention")
  2398. proto.RegisterType((*TextSpan)(nil), "google.cloud.language.v1.TextSpan")
  2399. proto.RegisterType((*ClassificationCategory)(nil), "google.cloud.language.v1.ClassificationCategory")
  2400. proto.RegisterType((*AnalyzeSentimentRequest)(nil), "google.cloud.language.v1.AnalyzeSentimentRequest")
  2401. proto.RegisterType((*AnalyzeSentimentResponse)(nil), "google.cloud.language.v1.AnalyzeSentimentResponse")
  2402. proto.RegisterType((*AnalyzeEntitySentimentRequest)(nil), "google.cloud.language.v1.AnalyzeEntitySentimentRequest")
  2403. proto.RegisterType((*AnalyzeEntitySentimentResponse)(nil), "google.cloud.language.v1.AnalyzeEntitySentimentResponse")
  2404. proto.RegisterType((*AnalyzeEntitiesRequest)(nil), "google.cloud.language.v1.AnalyzeEntitiesRequest")
  2405. proto.RegisterType((*AnalyzeEntitiesResponse)(nil), "google.cloud.language.v1.AnalyzeEntitiesResponse")
  2406. proto.RegisterType((*AnalyzeSyntaxRequest)(nil), "google.cloud.language.v1.AnalyzeSyntaxRequest")
  2407. proto.RegisterType((*AnalyzeSyntaxResponse)(nil), "google.cloud.language.v1.AnalyzeSyntaxResponse")
  2408. proto.RegisterType((*ClassifyTextRequest)(nil), "google.cloud.language.v1.ClassifyTextRequest")
  2409. proto.RegisterType((*ClassifyTextResponse)(nil), "google.cloud.language.v1.ClassifyTextResponse")
  2410. proto.RegisterType((*AnnotateTextRequest)(nil), "google.cloud.language.v1.AnnotateTextRequest")
  2411. proto.RegisterType((*AnnotateTextRequest_Features)(nil), "google.cloud.language.v1.AnnotateTextRequest.Features")
  2412. proto.RegisterType((*AnnotateTextResponse)(nil), "google.cloud.language.v1.AnnotateTextResponse")
  2413. proto.RegisterEnum("google.cloud.language.v1.EncodingType", EncodingType_name, EncodingType_value)
  2414. proto.RegisterEnum("google.cloud.language.v1.Document_Type", Document_Type_name, Document_Type_value)
  2415. proto.RegisterEnum("google.cloud.language.v1.Entity_Type", Entity_Type_name, Entity_Type_value)
  2416. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Tag", PartOfSpeech_Tag_name, PartOfSpeech_Tag_value)
  2417. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Aspect", PartOfSpeech_Aspect_name, PartOfSpeech_Aspect_value)
  2418. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Case", PartOfSpeech_Case_name, PartOfSpeech_Case_value)
  2419. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Form", PartOfSpeech_Form_name, PartOfSpeech_Form_value)
  2420. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Gender", PartOfSpeech_Gender_name, PartOfSpeech_Gender_value)
  2421. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Mood", PartOfSpeech_Mood_name, PartOfSpeech_Mood_value)
  2422. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Number", PartOfSpeech_Number_name, PartOfSpeech_Number_value)
  2423. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Person", PartOfSpeech_Person_name, PartOfSpeech_Person_value)
  2424. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Proper", PartOfSpeech_Proper_name, PartOfSpeech_Proper_value)
  2425. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Reciprocity", PartOfSpeech_Reciprocity_name, PartOfSpeech_Reciprocity_value)
  2426. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Tense", PartOfSpeech_Tense_name, PartOfSpeech_Tense_value)
  2427. proto.RegisterEnum("google.cloud.language.v1.PartOfSpeech_Voice", PartOfSpeech_Voice_name, PartOfSpeech_Voice_value)
  2428. proto.RegisterEnum("google.cloud.language.v1.DependencyEdge_Label", DependencyEdge_Label_name, DependencyEdge_Label_value)
  2429. proto.RegisterEnum("google.cloud.language.v1.EntityMention_Type", EntityMention_Type_name, EntityMention_Type_value)
  2430. }
  2431. // Reference imports to suppress errors if they are not otherwise used.
  2432. var _ context.Context
  2433. var _ grpc.ClientConn
  2434. // This is a compile-time assertion to ensure that this generated file
  2435. // is compatible with the grpc package it is being compiled against.
  2436. const _ = grpc.SupportPackageIsVersion4
  2437. // LanguageServiceClient is the client API for LanguageService service.
  2438. //
  2439. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  2440. type LanguageServiceClient interface {
  2441. // Analyzes the sentiment of the provided text.
  2442. AnalyzeSentiment(ctx context.Context, in *AnalyzeSentimentRequest, opts ...grpc.CallOption) (*AnalyzeSentimentResponse, error)
  2443. // Finds named entities (currently proper names and common nouns) in the text
  2444. // along with entity types, salience, mentions for each entity, and
  2445. // other properties.
  2446. AnalyzeEntities(ctx context.Context, in *AnalyzeEntitiesRequest, opts ...grpc.CallOption) (*AnalyzeEntitiesResponse, error)
  2447. // Finds entities, similar to
  2448. // [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
  2449. // in the text and analyzes sentiment associated with each entity and its
  2450. // mentions.
  2451. AnalyzeEntitySentiment(ctx context.Context, in *AnalyzeEntitySentimentRequest, opts ...grpc.CallOption) (*AnalyzeEntitySentimentResponse, error)
  2452. // Analyzes the syntax of the text and provides sentence boundaries and
  2453. // tokenization along with part of speech tags, dependency trees, and other
  2454. // properties.
  2455. AnalyzeSyntax(ctx context.Context, in *AnalyzeSyntaxRequest, opts ...grpc.CallOption) (*AnalyzeSyntaxResponse, error)
  2456. // Classifies a document into categories.
  2457. ClassifyText(ctx context.Context, in *ClassifyTextRequest, opts ...grpc.CallOption) (*ClassifyTextResponse, error)
  2458. // A convenience method that provides all the features that analyzeSentiment,
  2459. // analyzeEntities, and analyzeSyntax provide in one call.
  2460. AnnotateText(ctx context.Context, in *AnnotateTextRequest, opts ...grpc.CallOption) (*AnnotateTextResponse, error)
  2461. }
  2462. type languageServiceClient struct {
  2463. cc *grpc.ClientConn
  2464. }
  2465. func NewLanguageServiceClient(cc *grpc.ClientConn) LanguageServiceClient {
  2466. return &languageServiceClient{cc}
  2467. }
  2468. func (c *languageServiceClient) AnalyzeSentiment(ctx context.Context, in *AnalyzeSentimentRequest, opts ...grpc.CallOption) (*AnalyzeSentimentResponse, error) {
  2469. out := new(AnalyzeSentimentResponse)
  2470. err := c.cc.Invoke(ctx, "/google.cloud.language.v1.LanguageService/AnalyzeSentiment", in, out, opts...)
  2471. if err != nil {
  2472. return nil, err
  2473. }
  2474. return out, nil
  2475. }
  2476. func (c *languageServiceClient) AnalyzeEntities(ctx context.Context, in *AnalyzeEntitiesRequest, opts ...grpc.CallOption) (*AnalyzeEntitiesResponse, error) {
  2477. out := new(AnalyzeEntitiesResponse)
  2478. err := c.cc.Invoke(ctx, "/google.cloud.language.v1.LanguageService/AnalyzeEntities", in, out, opts...)
  2479. if err != nil {
  2480. return nil, err
  2481. }
  2482. return out, nil
  2483. }
  2484. func (c *languageServiceClient) AnalyzeEntitySentiment(ctx context.Context, in *AnalyzeEntitySentimentRequest, opts ...grpc.CallOption) (*AnalyzeEntitySentimentResponse, error) {
  2485. out := new(AnalyzeEntitySentimentResponse)
  2486. err := c.cc.Invoke(ctx, "/google.cloud.language.v1.LanguageService/AnalyzeEntitySentiment", in, out, opts...)
  2487. if err != nil {
  2488. return nil, err
  2489. }
  2490. return out, nil
  2491. }
  2492. func (c *languageServiceClient) AnalyzeSyntax(ctx context.Context, in *AnalyzeSyntaxRequest, opts ...grpc.CallOption) (*AnalyzeSyntaxResponse, error) {
  2493. out := new(AnalyzeSyntaxResponse)
  2494. err := c.cc.Invoke(ctx, "/google.cloud.language.v1.LanguageService/AnalyzeSyntax", in, out, opts...)
  2495. if err != nil {
  2496. return nil, err
  2497. }
  2498. return out, nil
  2499. }
  2500. func (c *languageServiceClient) ClassifyText(ctx context.Context, in *ClassifyTextRequest, opts ...grpc.CallOption) (*ClassifyTextResponse, error) {
  2501. out := new(ClassifyTextResponse)
  2502. err := c.cc.Invoke(ctx, "/google.cloud.language.v1.LanguageService/ClassifyText", in, out, opts...)
  2503. if err != nil {
  2504. return nil, err
  2505. }
  2506. return out, nil
  2507. }
  2508. func (c *languageServiceClient) AnnotateText(ctx context.Context, in *AnnotateTextRequest, opts ...grpc.CallOption) (*AnnotateTextResponse, error) {
  2509. out := new(AnnotateTextResponse)
  2510. err := c.cc.Invoke(ctx, "/google.cloud.language.v1.LanguageService/AnnotateText", in, out, opts...)
  2511. if err != nil {
  2512. return nil, err
  2513. }
  2514. return out, nil
  2515. }
  2516. // LanguageServiceServer is the server API for LanguageService service.
  2517. type LanguageServiceServer interface {
  2518. // Analyzes the sentiment of the provided text.
  2519. AnalyzeSentiment(context.Context, *AnalyzeSentimentRequest) (*AnalyzeSentimentResponse, error)
  2520. // Finds named entities (currently proper names and common nouns) in the text
  2521. // along with entity types, salience, mentions for each entity, and
  2522. // other properties.
  2523. AnalyzeEntities(context.Context, *AnalyzeEntitiesRequest) (*AnalyzeEntitiesResponse, error)
  2524. // Finds entities, similar to
  2525. // [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
  2526. // in the text and analyzes sentiment associated with each entity and its
  2527. // mentions.
  2528. AnalyzeEntitySentiment(context.Context, *AnalyzeEntitySentimentRequest) (*AnalyzeEntitySentimentResponse, error)
  2529. // Analyzes the syntax of the text and provides sentence boundaries and
  2530. // tokenization along with part of speech tags, dependency trees, and other
  2531. // properties.
  2532. AnalyzeSyntax(context.Context, *AnalyzeSyntaxRequest) (*AnalyzeSyntaxResponse, error)
  2533. // Classifies a document into categories.
  2534. ClassifyText(context.Context, *ClassifyTextRequest) (*ClassifyTextResponse, error)
  2535. // A convenience method that provides all the features that analyzeSentiment,
  2536. // analyzeEntities, and analyzeSyntax provide in one call.
  2537. AnnotateText(context.Context, *AnnotateTextRequest) (*AnnotateTextResponse, error)
  2538. }
  2539. func RegisterLanguageServiceServer(s *grpc.Server, srv LanguageServiceServer) {
  2540. s.RegisterService(&_LanguageService_serviceDesc, srv)
  2541. }
  2542. func _LanguageService_AnalyzeSentiment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2543. in := new(AnalyzeSentimentRequest)
  2544. if err := dec(in); err != nil {
  2545. return nil, err
  2546. }
  2547. if interceptor == nil {
  2548. return srv.(LanguageServiceServer).AnalyzeSentiment(ctx, in)
  2549. }
  2550. info := &grpc.UnaryServerInfo{
  2551. Server: srv,
  2552. FullMethod: "/google.cloud.language.v1.LanguageService/AnalyzeSentiment",
  2553. }
  2554. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2555. return srv.(LanguageServiceServer).AnalyzeSentiment(ctx, req.(*AnalyzeSentimentRequest))
  2556. }
  2557. return interceptor(ctx, in, info, handler)
  2558. }
  2559. func _LanguageService_AnalyzeEntities_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2560. in := new(AnalyzeEntitiesRequest)
  2561. if err := dec(in); err != nil {
  2562. return nil, err
  2563. }
  2564. if interceptor == nil {
  2565. return srv.(LanguageServiceServer).AnalyzeEntities(ctx, in)
  2566. }
  2567. info := &grpc.UnaryServerInfo{
  2568. Server: srv,
  2569. FullMethod: "/google.cloud.language.v1.LanguageService/AnalyzeEntities",
  2570. }
  2571. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2572. return srv.(LanguageServiceServer).AnalyzeEntities(ctx, req.(*AnalyzeEntitiesRequest))
  2573. }
  2574. return interceptor(ctx, in, info, handler)
  2575. }
  2576. func _LanguageService_AnalyzeEntitySentiment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2577. in := new(AnalyzeEntitySentimentRequest)
  2578. if err := dec(in); err != nil {
  2579. return nil, err
  2580. }
  2581. if interceptor == nil {
  2582. return srv.(LanguageServiceServer).AnalyzeEntitySentiment(ctx, in)
  2583. }
  2584. info := &grpc.UnaryServerInfo{
  2585. Server: srv,
  2586. FullMethod: "/google.cloud.language.v1.LanguageService/AnalyzeEntitySentiment",
  2587. }
  2588. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2589. return srv.(LanguageServiceServer).AnalyzeEntitySentiment(ctx, req.(*AnalyzeEntitySentimentRequest))
  2590. }
  2591. return interceptor(ctx, in, info, handler)
  2592. }
  2593. func _LanguageService_AnalyzeSyntax_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2594. in := new(AnalyzeSyntaxRequest)
  2595. if err := dec(in); err != nil {
  2596. return nil, err
  2597. }
  2598. if interceptor == nil {
  2599. return srv.(LanguageServiceServer).AnalyzeSyntax(ctx, in)
  2600. }
  2601. info := &grpc.UnaryServerInfo{
  2602. Server: srv,
  2603. FullMethod: "/google.cloud.language.v1.LanguageService/AnalyzeSyntax",
  2604. }
  2605. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2606. return srv.(LanguageServiceServer).AnalyzeSyntax(ctx, req.(*AnalyzeSyntaxRequest))
  2607. }
  2608. return interceptor(ctx, in, info, handler)
  2609. }
  2610. func _LanguageService_ClassifyText_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2611. in := new(ClassifyTextRequest)
  2612. if err := dec(in); err != nil {
  2613. return nil, err
  2614. }
  2615. if interceptor == nil {
  2616. return srv.(LanguageServiceServer).ClassifyText(ctx, in)
  2617. }
  2618. info := &grpc.UnaryServerInfo{
  2619. Server: srv,
  2620. FullMethod: "/google.cloud.language.v1.LanguageService/ClassifyText",
  2621. }
  2622. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2623. return srv.(LanguageServiceServer).ClassifyText(ctx, req.(*ClassifyTextRequest))
  2624. }
  2625. return interceptor(ctx, in, info, handler)
  2626. }
  2627. func _LanguageService_AnnotateText_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2628. in := new(AnnotateTextRequest)
  2629. if err := dec(in); err != nil {
  2630. return nil, err
  2631. }
  2632. if interceptor == nil {
  2633. return srv.(LanguageServiceServer).AnnotateText(ctx, in)
  2634. }
  2635. info := &grpc.UnaryServerInfo{
  2636. Server: srv,
  2637. FullMethod: "/google.cloud.language.v1.LanguageService/AnnotateText",
  2638. }
  2639. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2640. return srv.(LanguageServiceServer).AnnotateText(ctx, req.(*AnnotateTextRequest))
  2641. }
  2642. return interceptor(ctx, in, info, handler)
  2643. }
  2644. var _LanguageService_serviceDesc = grpc.ServiceDesc{
  2645. ServiceName: "google.cloud.language.v1.LanguageService",
  2646. HandlerType: (*LanguageServiceServer)(nil),
  2647. Methods: []grpc.MethodDesc{
  2648. {
  2649. MethodName: "AnalyzeSentiment",
  2650. Handler: _LanguageService_AnalyzeSentiment_Handler,
  2651. },
  2652. {
  2653. MethodName: "AnalyzeEntities",
  2654. Handler: _LanguageService_AnalyzeEntities_Handler,
  2655. },
  2656. {
  2657. MethodName: "AnalyzeEntitySentiment",
  2658. Handler: _LanguageService_AnalyzeEntitySentiment_Handler,
  2659. },
  2660. {
  2661. MethodName: "AnalyzeSyntax",
  2662. Handler: _LanguageService_AnalyzeSyntax_Handler,
  2663. },
  2664. {
  2665. MethodName: "ClassifyText",
  2666. Handler: _LanguageService_ClassifyText_Handler,
  2667. },
  2668. {
  2669. MethodName: "AnnotateText",
  2670. Handler: _LanguageService_AnnotateText_Handler,
  2671. },
  2672. },
  2673. Streams: []grpc.StreamDesc{},
  2674. Metadata: "google/cloud/language/v1/language_service.proto",
  2675. }
  2676. func init() {
  2677. proto.RegisterFile("google/cloud/language/v1/language_service.proto", fileDescriptor_language_service_3829b5c08eb7a6ed)
  2678. }
  2679. var fileDescriptor_language_service_3829b5c08eb7a6ed = []byte{
  2680. // 2967 bytes of a gzipped FileDescriptorProto
  2681. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcb, 0x73, 0xdb, 0xd6,
  2682. 0xd5, 0x37, 0xf8, 0x12, 0x75, 0x28, 0xc9, 0xd7, 0xb0, 0xe3, 0xf0, 0x53, 0x1c, 0xc7, 0x81, 0x63,
  2683. 0x47, 0x76, 0x12, 0xca, 0x56, 0xbe, 0xcf, 0x71, 0x6c, 0x7f, 0x89, 0x21, 0xf0, 0x92, 0x82, 0x0c,
  2684. 0x02, 0xf0, 0x05, 0x40, 0x2b, 0xd9, 0x70, 0x60, 0x12, 0x62, 0x38, 0x91, 0x08, 0x96, 0x80, 0x3c,
  2685. 0x56, 0x36, 0x9d, 0xe9, 0x4c, 0x97, 0x5d, 0x74, 0xda, 0x45, 0x97, 0x9d, 0xe9, 0x63, 0xa6, 0x33,
  2686. 0x99, 0xf6, 0x1f, 0xe8, 0x9f, 0xd0, 0x5d, 0xff, 0x84, 0x76, 0xd7, 0x5d, 0x17, 0x9d, 0x76, 0xd1,
  2687. 0xc7, 0x9c, 0x7b, 0x01, 0x12, 0x94, 0x25, 0x59, 0x72, 0xd3, 0x69, 0x76, 0xf7, 0x1e, 0x9e, 0xdf,
  2688. 0x79, 0xdd, 0xf3, 0xb8, 0xb8, 0x12, 0xac, 0xf6, 0xc3, 0xb0, 0xbf, 0x13, 0xac, 0x76, 0x77, 0xc2,
  2689. 0xbd, 0xde, 0xea, 0x8e, 0x3f, 0xec, 0xef, 0xf9, 0xfd, 0x60, 0xf5, 0xd9, 0xed, 0xc9, 0xba, 0x13,
  2690. 0x05, 0xe3, 0x67, 0x83, 0x6e, 0x50, 0x1b, 0x8d, 0xc3, 0x38, 0x94, 0xab, 0x02, 0x50, 0xe3, 0x80,
  2691. 0x5a, 0xca, 0x54, 0x7b, 0x76, 0x7b, 0xf9, 0x52, 0x22, 0xca, 0x1f, 0x0d, 0x56, 0xfd, 0xe1, 0x30,
  2692. 0x8c, 0xfd, 0x78, 0x10, 0x0e, 0x23, 0x81, 0x53, 0xfe, 0x24, 0x41, 0xb9, 0x1e, 0x76, 0xf7, 0x76,
  2693. 0x83, 0x61, 0x2c, 0xdf, 0x87, 0x42, 0xbc, 0x3f, 0x0a, 0xaa, 0xd2, 0x15, 0x69, 0x65, 0x69, 0xed,
  2694. 0xdd, 0xda, 0x51, 0x32, 0x6b, 0x29, 0xa2, 0xe6, 0xee, 0x8f, 0x02, 0xc6, 0x41, 0xf2, 0x32, 0xcc,
  2695. 0x75, 0xc3, 0x61, 0x1c, 0x0c, 0xe3, 0x6a, 0xee, 0x8a, 0xb4, 0x32, 0xbf, 0x71, 0x86, 0xa5, 0x04,
  2696. 0x79, 0x05, 0xce, 0xf6, 0xbb, 0x51, 0x27, 0xd9, 0x76, 0xf6, 0xc6, 0x83, 0x6a, 0x3e, 0xe1, 0x59,
  2697. 0xec, 0x77, 0x23, 0x4d, 0xd0, 0xbd, 0xf1, 0x40, 0x5e, 0x86, 0x72, 0xaa, 0xa8, 0x5a, 0x40, 0x16,
  2698. 0x36, 0xd9, 0x2b, 0x77, 0xa0, 0x80, 0xfa, 0xe4, 0x0b, 0x40, 0xdc, 0xcf, 0x6c, 0xda, 0xf1, 0x4c,
  2699. 0xc7, 0xa6, 0x9a, 0xde, 0xd0, 0x69, 0x9d, 0x9c, 0x91, 0x97, 0x00, 0x6c, 0x43, 0xd5, 0xcd, 0x8e,
  2700. 0x4b, 0xb7, 0x5c, 0x22, 0xc9, 0x65, 0x28, 0x6c, 0xb8, 0x2d, 0x83, 0xe4, 0xd6, 0xcb, 0x50, 0x8a,
  2701. 0xc2, 0xbd, 0x71, 0x37, 0x50, 0xbe, 0x2f, 0x41, 0xd9, 0x09, 0x50, 0x59, 0x37, 0x90, 0xef, 0x40,
  2702. 0x21, 0x0e, 0x9e, 0xc7, 0xdc, 0xdb, 0xca, 0x9a, 0x72, 0xb4, 0xb7, 0x6e, 0xf0, 0x3c, 0x76, 0x46,
  2703. 0xfe, 0x90, 0x71, 0x7e, 0x59, 0x85, 0xf9, 0x28, 0x18, 0xc6, 0x83, 0xdd, 0xd4, 0xd5, 0xca, 0xda,
  2704. 0xd5, 0xa3, 0xc1, 0x4e, 0xca, 0xca, 0xa6, 0x28, 0xe5, 0x9f, 0x79, 0x28, 0xd1, 0x61, 0x3c, 0x88,
  2705. 0xf7, 0x65, 0x19, 0x0a, 0x43, 0x7f, 0x57, 0xc4, 0x7c, 0x9e, 0xf1, 0xb5, 0xfc, 0x71, 0x72, 0x0e,
  2706. 0x39, 0x7e, 0x0e, 0xd7, 0x8e, 0x16, 0x2e, 0x64, 0x64, 0x4f, 0x61, 0x13, 0xca, 0xbb, 0x41, 0xec,
  2707. 0xf7, 0xfc, 0xd8, 0xaf, 0xe6, 0xaf, 0xe4, 0x57, 0x2a, 0x6b, 0xb5, 0x97, 0xc2, 0x5b, 0x09, 0x80,
  2708. 0x0e, 0xe3, 0xf1, 0x3e, 0x9b, 0xe0, 0xf1, 0x2c, 0x22, 0x7f, 0x67, 0x80, 0xc1, 0xe2, 0x67, 0x91,
  2709. 0x63, 0x93, 0xbd, 0xac, 0xa1, 0x9e, 0x21, 0xcf, 0xa4, 0x6a, 0x91, 0xeb, 0x79, 0xf7, 0x65, 0x7a,
  2710. 0x5a, 0x82, 0x9f, 0x4d, 0x80, 0xb3, 0x91, 0x2c, 0xbd, 0x4a, 0x24, 0x97, 0xef, 0xc3, 0xe2, 0x8c,
  2711. 0xf9, 0x32, 0x81, 0xfc, 0x97, 0xc1, 0x7e, 0x12, 0x4e, 0x5c, 0xca, 0x17, 0xa0, 0xf8, 0xcc, 0xdf,
  2712. 0xd9, 0x13, 0xe1, 0x9c, 0x67, 0x62, 0x73, 0x2f, 0x77, 0x57, 0x52, 0xf6, 0x93, 0x84, 0xaa, 0xc0,
  2713. 0x9c, 0x67, 0x3e, 0x32, 0xad, 0x27, 0x26, 0x39, 0x23, 0x03, 0x94, 0x6c, 0xca, 0x1c, 0xcb, 0x24,
  2714. 0x92, 0xbc, 0x00, 0x65, 0xc3, 0xd2, 0x54, 0x57, 0xb7, 0x4c, 0x92, 0x93, 0x09, 0x2c, 0x58, 0xac,
  2715. 0xa9, 0x9a, 0xfa, 0xe7, 0x82, 0x92, 0x97, 0xe7, 0xa1, 0x48, 0xdb, 0xd4, 0x74, 0x49, 0x41, 0x3e,
  2716. 0x0b, 0x95, 0x27, 0x16, 0x7b, 0xd4, 0xb1, 0x1a, 0x1d, 0x95, 0xb9, 0xa4, 0x28, 0x9f, 0x83, 0x45,
  2717. 0xcd, 0x32, 0x1d, 0xaf, 0x45, 0x59, 0xa7, 0x69, 0x59, 0x75, 0x52, 0x42, 0x76, 0xcb, 0xdd, 0xa0,
  2718. 0x8c, 0xcc, 0x29, 0x7f, 0x91, 0xa0, 0xe8, 0x86, 0x5f, 0x06, 0xc3, 0x57, 0x4e, 0x43, 0x03, 0x96,
  2719. 0x46, 0xfe, 0x38, 0xee, 0x84, 0xdb, 0x9d, 0x68, 0x14, 0x04, 0xdd, 0x2f, 0x92, 0x5c, 0xbc, 0x7e,
  2720. 0xb4, 0x04, 0xdb, 0x1f, 0xc7, 0xd6, 0xb6, 0xc3, 0xb9, 0xd9, 0xc2, 0x28, 0xb3, 0x93, 0x1f, 0xc3,
  2721. 0xd9, 0x5e, 0x30, 0x0a, 0x86, 0xbd, 0x60, 0xd8, 0xdd, 0xef, 0x04, 0xbd, 0x7e, 0xc0, 0x2b, 0xb4,
  2722. 0xb2, 0xb6, 0x72, 0x4c, 0x17, 0x98, 0x00, 0x68, 0xaf, 0x1f, 0xb0, 0xa5, 0xde, 0xcc, 0x1e, 0xe3,
  2723. 0xbe, 0x13, 0xec, 0xee, 0xfa, 0x49, 0x1d, 0x8b, 0x8d, 0xf2, 0x29, 0xcc, 0x4f, 0x0e, 0x52, 0xbe,
  2724. 0x04, 0xf3, 0xbb, 0x7e, 0x7f, 0x38, 0x88, 0xf7, 0x7a, 0xe2, 0x78, 0x72, 0x6c, 0x4a, 0x40, 0x01,
  2725. 0x51, 0x37, 0x1c, 0x0b, 0x4b, 0x72, 0x4c, 0x6c, 0x94, 0xbf, 0x13, 0x58, 0xc8, 0x3a, 0x22, 0x3f,
  2726. 0x80, 0x7c, 0xec, 0xf7, 0x93, 0xa6, 0x75, 0xf3, 0x64, 0xde, 0xd7, 0x5c, 0xbf, 0xcf, 0x10, 0x26,
  2727. 0x53, 0x28, 0xf9, 0xd1, 0x28, 0xe8, 0xc6, 0x49, 0xb5, 0x7d, 0x70, 0x42, 0x01, 0x2a, 0x07, 0xb1,
  2728. 0x04, 0x2c, 0x7f, 0x0a, 0x85, 0xae, 0x1f, 0x09, 0x53, 0x97, 0xd6, 0xde, 0x3b, 0xa1, 0x10, 0xcd,
  2729. 0x8f, 0x02, 0xc6, 0x81, 0x28, 0x60, 0x3b, 0x1c, 0xef, 0xf2, 0x60, 0x9d, 0x5c, 0x40, 0x23, 0x1c,
  2730. 0xef, 0x32, 0x0e, 0x44, 0x47, 0xfa, 0x18, 0xfe, 0x71, 0xb5, 0x78, 0x2a, 0x47, 0x9a, 0x1c, 0xc4,
  2731. 0x12, 0x30, 0xda, 0xb1, 0x1b, 0x86, 0x3d, 0x5e, 0x8e, 0x27, 0xb7, 0xa3, 0x15, 0x86, 0x3d, 0xc6,
  2732. 0x81, 0x68, 0xc7, 0x70, 0x6f, 0xf7, 0x69, 0x30, 0xae, 0xce, 0x9d, 0xca, 0x0e, 0x93, 0x83, 0x58,
  2733. 0x02, 0x46, 0x31, 0xa3, 0x60, 0x1c, 0x85, 0xc3, 0x6a, 0xf9, 0x54, 0x62, 0x6c, 0x0e, 0x62, 0x09,
  2734. 0x98, 0x8b, 0x19, 0x87, 0xa3, 0x60, 0x5c, 0x9d, 0x3f, 0x9d, 0x18, 0x0e, 0x62, 0x09, 0x58, 0x76,
  2735. 0xa1, 0x32, 0x0e, 0xba, 0x83, 0xd1, 0x38, 0xec, 0x0e, 0xe2, 0xfd, 0x2a, 0x70, 0x59, 0x6b, 0x27,
  2736. 0x94, 0xc5, 0xa6, 0x48, 0x96, 0x15, 0x23, 0xaf, 0x43, 0x31, 0x0e, 0x86, 0x51, 0x50, 0xad, 0x70,
  2737. 0x79, 0xef, 0x9f, 0x34, 0x77, 0x11, 0xc3, 0x04, 0x14, 0x65, 0x3c, 0x0b, 0x07, 0xdd, 0xa0, 0xba,
  2738. 0x70, 0x2a, 0x19, 0x6d, 0xc4, 0x30, 0x01, 0x55, 0x7e, 0x20, 0x41, 0xde, 0xf5, 0xfb, 0xb3, 0x7d,
  2739. 0x70, 0x0e, 0xf2, 0x6a, 0x7d, 0x93, 0x48, 0x62, 0x61, 0x93, 0x9c, 0x58, 0xb4, 0x49, 0x1e, 0x47,
  2740. 0xab, 0x66, 0x99, 0x9b, 0xa4, 0x80, 0xa4, 0x3a, 0xc5, 0x6e, 0x57, 0x86, 0x82, 0x69, 0x79, 0x26,
  2741. 0x29, 0x21, 0xc9, 0xf4, 0x5a, 0x64, 0x0e, 0x49, 0x36, 0xb3, 0x4c, 0x52, 0x46, 0x92, 0xcd, 0x5c,
  2742. 0x32, 0x8f, 0x0d, 0xd0, 0xf6, 0x4c, 0xcd, 0x25, 0x80, 0xbf, 0xb6, 0x29, 0x5b, 0x27, 0x15, 0xb9,
  2743. 0x08, 0xd2, 0x16, 0x59, 0xc0, 0xdf, 0xd4, 0x46, 0x43, 0xdf, 0x22, 0x8b, 0x8a, 0x05, 0x25, 0x51,
  2744. 0x5e, 0xb2, 0x0c, 0x4b, 0x2a, 0x0e, 0x79, 0xb7, 0x33, 0x35, 0x0c, 0x07, 0x3d, 0x65, 0x0d, 0xaa,
  2745. 0xb9, 0x7a, 0x9b, 0x12, 0x09, 0xdb, 0xb2, 0xde, 0xca, 0x50, 0x72, 0xd8, 0x8b, 0x6d, 0x66, 0x35,
  2746. 0x19, 0x75, 0x1c, 0x24, 0xe4, 0x95, 0xbf, 0x4a, 0x50, 0xc0, 0x5a, 0x43, 0x5e, 0x4d, 0x75, 0xe8,
  2747. 0xac, 0x34, 0x55, 0xd3, 0x3c, 0x47, 0x4d, 0xa4, 0x2d, 0xc2, 0xbc, 0x5a, 0x47, 0xcb, 0x74, 0xd5,
  2748. 0x20, 0x39, 0xd1, 0xc5, 0x5b, 0xb6, 0x41, 0x5b, 0xd4, 0xe4, 0x1c, 0x79, 0x1c, 0x10, 0x75, 0xc1,
  2749. 0x5d, 0xc0, 0x01, 0xd1, 0xa4, 0xa6, 0xce, 0x77, 0x45, 0x6e, 0x89, 0xe9, 0xb8, 0xcc, 0x43, 0x66,
  2750. 0xd5, 0x20, 0xa5, 0xe9, 0x00, 0x69, 0x53, 0x32, 0x87, 0xba, 0x4c, 0xab, 0xa5, 0x9b, 0x62, 0x5f,
  2751. 0xc6, 0x78, 0x5b, 0xeb, 0x86, 0xfe, 0xd8, 0xa3, 0x64, 0x1e, 0x15, 0xdb, 0x2a, 0x73, 0x85, 0x2c,
  2752. 0x40, 0xc5, 0x36, 0xa3, 0xb6, 0xe5, 0xe8, 0x38, 0x6b, 0x54, 0x83, 0x54, 0x30, 0x18, 0x8c, 0x36,
  2753. 0x0c, 0xba, 0xa5, 0xb7, 0x69, 0x07, 0xdd, 0x20, 0x0b, 0xc8, 0xc6, 0xa8, 0xc1, 0x05, 0x0a, 0xd2,
  2754. 0x22, 0xea, 0x6c, 0xa7, 0x3a, 0x97, 0x94, 0xdf, 0x48, 0x50, 0xc0, 0x2e, 0x81, 0xc6, 0x35, 0x2c,
  2755. 0xd6, 0xca, 0xb8, 0xbe, 0x00, 0x65, 0xb5, 0x8e, 0x06, 0xa9, 0x46, 0xe2, 0xb8, 0xb7, 0xa5, 0x1b,
  2756. 0xba, 0xca, 0x3e, 0x23, 0x39, 0x54, 0x96, 0x71, 0xfc, 0x73, 0xca, 0x48, 0x9e, 0x8b, 0xd0, 0x4d,
  2757. 0xd5, 0xe8, 0x50, 0xb3, 0xae, 0x9b, 0x4d, 0x52, 0xc0, 0x58, 0x34, 0x29, 0xf3, 0xcc, 0x3a, 0x29,
  2758. 0xe2, 0x9a, 0x51, 0xd5, 0xd0, 0x1d, 0xe1, 0xb7, 0xce, 0x92, 0xdd, 0x1c, 0x1e, 0xad, 0xb3, 0x61,
  2759. 0x31, 0x97, 0x94, 0xf1, 0xd8, 0x0d, 0xcb, 0x6c, 0x8a, 0x5c, 0xb0, 0x58, 0x9d, 0x32, 0x02, 0xc8,
  2760. 0x9d, 0xdc, 0xe4, 0x34, 0x52, 0x51, 0x28, 0x94, 0x44, 0x4f, 0x42, 0x1b, 0x9a, 0xd4, 0xac, 0x53,
  2761. 0x36, 0x6b, 0x74, 0x83, 0xb6, 0x74, 0x53, 0x37, 0x93, 0xd3, 0x6a, 0xa9, 0x8e, 0xe6, 0x19, 0xb8,
  2762. 0xcd, 0xa1, 0x09, 0x26, 0xf5, 0x5c, 0x34, 0x56, 0xf9, 0x2e, 0x14, 0xb0, 0x2b, 0xa1, 0xd1, 0x2d,
  2763. 0xcb, 0xaa, 0x67, 0x44, 0x5c, 0x00, 0xa2, 0x59, 0x66, 0x3d, 0x09, 0x6c, 0x07, 0x7f, 0x25, 0x12,
  2764. 0x1e, 0x0e, 0x4f, 0x23, 0x35, 0x49, 0x22, 0xdc, 0x9b, 0x75, 0x3d, 0x09, 0x64, 0x1e, 0x23, 0xad,
  2765. 0x9b, 0x2e, 0x65, 0xcc, 0x6a, 0xa6, 0xa7, 0x5f, 0x81, 0xb9, 0x4d, 0x4f, 0xe4, 0x58, 0x11, 0x93,
  2766. 0xce, 0xf1, 0xd6, 0x37, 0x31, 0xbd, 0x91, 0x50, 0x52, 0x1e, 0x42, 0x49, 0xf4, 0x34, 0xf4, 0xc3,
  2767. 0xf4, 0x5a, 0xeb, 0x07, 0xfd, 0x70, 0x74, 0xb3, 0xe9, 0x19, 0x2a, 0x23, 0x12, 0xbf, 0x74, 0x18,
  2768. 0x1e, 0xe3, 0x29, 0x57, 0x86, 0x42, 0xdd, 0x53, 0x0d, 0x92, 0x57, 0x5c, 0x28, 0x89, 0x76, 0x86,
  2769. 0x12, 0xc4, 0xa5, 0x24, 0x23, 0x61, 0x1e, 0x8a, 0x0d, 0x9d, 0x39, 0xae, 0x80, 0x3b, 0x14, 0x7d,
  2770. 0x22, 0x39, 0x24, 0xbb, 0x1b, 0x3a, 0xab, 0x93, 0x3c, 0x3a, 0x3a, 0x4d, 0x98, 0xe4, 0x52, 0x53,
  2771. 0x50, 0xee, 0x42, 0x49, 0x74, 0x37, 0x2e, 0x95, 0x59, 0xf6, 0x8c, 0x5d, 0x68, 0x09, 0xa7, 0x89,
  2772. 0x90, 0x98, 0x96, 0xdb, 0x49, 0xf6, 0x39, 0x65, 0x13, 0x2a, 0x99, 0x5e, 0x26, 0xbf, 0x0e, 0xe7,
  2773. 0x19, 0xd5, 0x74, 0x9b, 0x59, 0x9a, 0xee, 0x7e, 0x36, 0x5b, 0x53, 0xe9, 0x0f, 0x3c, 0xb5, 0xd0,
  2774. 0x7f, 0xcb, 0xec, 0x64, 0x68, 0x39, 0x25, 0x82, 0x22, 0xef, 0x63, 0x18, 0x57, 0x97, 0x9a, 0x33,
  2775. 0x35, 0xf9, 0x1a, 0x9c, 0xcb, 0x1e, 0x10, 0xff, 0x59, 0x78, 0xd9, 0xf0, 0x5c, 0x8f, 0x51, 0x11,
  2776. 0x24, 0x5b, 0x75, 0x5c, 0x92, 0xc7, 0x43, 0xb0, 0x19, 0x75, 0xc4, 0x2d, 0x6c, 0x11, 0xe6, 0x27,
  2777. 0xbd, 0x80, 0x14, 0xc5, 0x37, 0x81, 0x97, 0xee, 0x4b, 0xca, 0x3a, 0x14, 0x79, 0xe3, 0x43, 0xa5,
  2778. 0x6d, 0x4b, 0xd7, 0xe8, 0xac, 0xe3, 0xaa, 0x36, 0x6d, 0x02, 0x9a, 0x9a, 0xf6, 0x84, 0x1c, 0x57,
  2779. 0xa1, 0xa6, 0xbd, 0xe4, 0xeb, 0x32, 0x2c, 0xcd, 0xde, 0x7c, 0xe4, 0x15, 0x20, 0x5f, 0x04, 0x7e,
  2780. 0xaf, 0x13, 0xe3, 0x85, 0xae, 0x33, 0x18, 0xf6, 0x82, 0xe7, 0xfc, 0x3a, 0x52, 0x64, 0x4b, 0x48,
  2781. 0xe7, 0xf7, 0x3c, 0x1d, 0xa9, 0x72, 0x1d, 0x8a, 0x3b, 0xfe, 0xd3, 0x60, 0x27, 0xb9, 0x6c, 0xd4,
  2782. 0x4e, 0x7a, 0xb9, 0xaa, 0x19, 0x88, 0x62, 0x02, 0xac, 0xfc, 0x6a, 0x0e, 0x8a, 0x9c, 0xf0, 0xc2,
  2783. 0xcd, 0x55, 0x5d, 0x5f, 0x67, 0xb4, 0x4d, 0x24, 0xde, 0x4d, 0xb1, 0x7e, 0x45, 0x42, 0xa8, 0xf5,
  2784. 0xb6, 0x66, 0x88, 0xd6, 0xa5, 0xd6, 0xdb, 0x2d, 0xab, 0x4e, 0x0a, 0x18, 0x41, 0x15, 0x57, 0x45,
  2785. 0xce, 0x60, 0xdb, 0x16, 0xd6, 0x2d, 0x12, 0x5d, 0x97, 0x91, 0x39, 0xde, 0xec, 0xbd, 0x2d, 0xd1,
  2786. 0xa4, 0x54, 0x6f, 0x0b, 0xfd, 0x27, 0xf3, 0x72, 0x09, 0x72, 0x9a, 0x46, 0x00, 0x21, 0x1a, 0x17,
  2787. 0x5f, 0x99, 0x0c, 0x03, 0xde, 0xc1, 0x35, 0x2c, 0x01, 0xb2, 0xc8, 0x03, 0x88, 0x4b, 0x0e, 0x5b,
  2788. 0x12, 0x63, 0xc2, 0x26, 0x67, 0xd3, 0x79, 0x41, 0x90, 0xa1, 0xae, 0x3b, 0x9a, 0xe5, 0x31, 0x87,
  2789. 0x92, 0x73, 0x3c, 0xe7, 0xad, 0xf5, 0x4d, 0x22, 0xe3, 0x8a, 0x6e, 0xd9, 0x06, 0x39, 0xcf, 0x7b,
  2790. 0xab, 0x45, 0x9d, 0x27, 0xba, 0xbb, 0x41, 0x2e, 0x20, 0x5d, 0x47, 0x8e, 0xd7, 0x70, 0xd5, 0x52,
  2791. 0xd9, 0x23, 0x72, 0x11, 0xa5, 0xb5, 0x9e, 0x50, 0xf2, 0xba, 0x58, 0xb4, 0x49, 0x95, 0x0f, 0x1f,
  2792. 0xda, 0x24, 0xff, 0x83, 0x86, 0x9a, 0x26, 0x59, 0x46, 0x21, 0xa6, 0x9d, 0xf8, 0xfc, 0x06, 0x5a,
  2793. 0x68, 0x72, 0x0b, 0x2f, 0xa1, 0x01, 0xe6, 0xc4, 0xc2, 0x37, 0xd3, 0xa9, 0x75, 0x99, 0xb7, 0x10,
  2794. 0x5e, 0xab, 0xe4, 0x2d, 0x9c, 0x4c, 0x36, 0xb9, 0x92, 0x74, 0x66, 0xd5, 0x55, 0xb7, 0x74, 0x87,
  2795. 0xbc, 0x2d, 0xb2, 0x81, 0xb9, 0x28, 0x51, 0xe1, 0x13, 0x8d, 0x07, 0xe2, 0x2a, 0x4f, 0x49, 0xb4,
  2796. 0xf0, 0x1d, 0xb1, 0x72, 0x1c, 0x72, 0x8d, 0xf3, 0x5a, 0x8e, 0x8b, 0x36, 0x5d, 0x4f, 0x32, 0x95,
  2797. 0x73, 0xbf, 0x3b, 0xd9, 0x98, 0x9b, 0x64, 0x45, 0x14, 0x1d, 0xc5, 0xc8, 0xdc, 0x10, 0x63, 0x93,
  2798. 0x36, 0xc8, 0xcd, 0x64, 0x65, 0x93, 0xf7, 0xb8, 0x16, 0x66, 0x99, 0x06, 0x79, 0x3f, 0x9d, 0xa5,
  2799. 0x1f, 0xa0, 0x87, 0xb6, 0x43, 0x6a, 0xe8, 0xe1, 0x63, 0x4f, 0x35, 0xb9, 0x3d, 0xab, 0xc8, 0xc9,
  2800. 0x34, 0x5c, 0xde, 0xc2, 0x1f, 0xf8, 0x92, 0x51, 0x83, 0xdc, 0xe6, 0x3f, 0xd4, 0x99, 0x65, 0x93,
  2801. 0x35, 0x14, 0x81, 0x0a, 0x3e, 0x44, 0x1b, 0x18, 0x6d, 0x99, 0xaa, 0xe9, 0x92, 0xff, 0x15, 0x45,
  2802. 0x8b, 0x7e, 0x9a, 0x75, 0xaf, 0x45, 0xfe, 0x0f, 0xb5, 0x33, 0xcb, 0x72, 0xc9, 0x1d, 0x5c, 0x39,
  2803. 0x18, 0x9c, 0x8f, 0xf8, 0xca, 0x6b, 0x34, 0xc8, 0x5d, 0x5c, 0x71, 0x8d, 0x1f, 0xf3, 0x7e, 0x63,
  2804. 0xd9, 0xba, 0x46, 0xee, 0xf1, 0x99, 0x8e, 0xc4, 0xfb, 0x33, 0x33, 0xe8, 0x01, 0xb2, 0x6c, 0x71,
  2805. 0xb7, 0xff, 0x9f, 0x77, 0x2a, 0x8f, 0x8f, 0xf9, 0x4f, 0x38, 0x52, 0x77, 0x0d, 0x4a, 0x3e, 0x15,
  2806. 0xa3, 0xa8, 0x6d, 0x6f, 0x20, 0xfa, 0x61, 0x92, 0x72, 0x58, 0x81, 0x44, 0xe5, 0xd9, 0xe9, 0x6d,
  2807. 0xb5, 0xdb, 0x64, 0x1d, 0x97, 0x75, 0xae, 0x55, 0x43, 0x96, 0x86, 0xc5, 0xa8, 0xde, 0x34, 0x49,
  2808. 0x1d, 0x43, 0xf1, 0xe8, 0x09, 0xa1, 0x7c, 0xb8, 0xe8, 0x8e, 0x4b, 0x1a, 0xe2, 0x3a, 0xd2, 0xd2,
  2809. 0x48, 0x93, 0x27, 0x80, 0xd5, 0x12, 0x79, 0xb9, 0x81, 0xc3, 0x20, 0xdd, 0xf1, 0x83, 0xd7, 0x39,
  2810. 0xa7, 0xd7, 0xd2, 0xc8, 0x26, 0x86, 0x45, 0xb3, 0x6c, 0xf2, 0x08, 0x23, 0x51, 0xd7, 0x1d, 0x3e,
  2811. 0xb7, 0x69, 0x9d, 0x18, 0xbc, 0x14, 0x1c, 0x9b, 0xb4, 0x90, 0xb7, 0x89, 0xea, 0x4d, 0xbe, 0xc2,
  2812. 0xb3, 0xb6, 0xd0, 0x21, 0xdd, 0x6c, 0x20, 0xd5, 0xe6, 0x69, 0x48, 0x1d, 0xf2, 0x98, 0xe7, 0x19,
  2813. 0x77, 0x98, 0x29, 0xff, 0x90, 0x60, 0x71, 0xe6, 0xfb, 0xf7, 0x95, 0x3f, 0xf8, 0x1e, 0xce, 0xbc,
  2814. 0x0a, 0xbc, 0x7f, 0xc2, 0xcf, 0xed, 0xec, 0xe3, 0xc0, 0xcc, 0xf7, 0x76, 0xfe, 0x95, 0x5e, 0x2e,
  2815. 0x6e, 0x25, 0x9f, 0xcc, 0x04, 0x16, 0x92, 0x37, 0x98, 0xc3, 0x06, 0x07, 0x40, 0x49, 0xb3, 0x5a,
  2816. 0x2d, 0xfc, 0x6a, 0x56, 0x9a, 0x50, 0x4e, 0x1d, 0x91, 0xab, 0xd3, 0x37, 0x22, 0xf1, 0x81, 0x3e,
  2817. 0x79, 0x21, 0x7a, 0x1b, 0x16, 0x9e, 0x06, 0xfd, 0xc1, 0xb0, 0x13, 0x6e, 0x6f, 0x47, 0x81, 0xf8,
  2818. 0x18, 0x2b, 0xb2, 0x0a, 0xa7, 0x59, 0x9c, 0xa4, 0x18, 0x70, 0x51, 0xdb, 0xf1, 0xa3, 0x68, 0xb0,
  2819. 0x3d, 0xe8, 0xf2, 0x37, 0x2c, 0xcd, 0x8f, 0x83, 0x7e, 0x38, 0x3e, 0xfc, 0x0d, 0xe5, 0x32, 0x40,
  2820. 0x37, 0x1c, 0x6e, 0x0f, 0x7a, 0xfc, 0xf9, 0x42, 0x7c, 0x5b, 0x66, 0x28, 0xca, 0x2f, 0x25, 0x78,
  2821. 0x5d, 0x1d, 0xfa, 0x3b, 0xfb, 0x5f, 0x05, 0x53, 0x47, 0x83, 0xef, 0xec, 0x05, 0x51, 0x2c, 0x7f,
  2822. 0x02, 0xe5, 0x5e, 0xf2, 0xc2, 0xf5, 0xf2, 0x53, 0x4a, 0xdf, 0xc2, 0xd8, 0x04, 0x23, 0x3f, 0x82,
  2823. 0xc5, 0x60, 0xd8, 0x0d, 0x7b, 0x83, 0x61, 0xbf, 0x93, 0x39, 0xb2, 0xeb, 0xc7, 0x1d, 0x99, 0x60,
  2824. 0xe7, 0x87, 0xb5, 0x10, 0x64, 0x76, 0xca, 0xef, 0x24, 0xa8, 0xbe, 0x68, 0x68, 0x34, 0x0a, 0x71,
  2825. 0x78, 0x32, 0x90, 0x53, 0xad, 0x9d, 0xe9, 0xd1, 0x4a, 0x27, 0x3f, 0xda, 0x73, 0x29, 0x7c, 0xfa,
  2826. 0x51, 0x9e, 0x7d, 0x82, 0xcb, 0xcd, 0x3e, 0xc1, 0xc9, 0x0f, 0x45, 0x06, 0x61, 0x04, 0xa3, 0xe4,
  2827. 0x7d, 0x49, 0x39, 0x5e, 0x0d, 0xb2, 0xb2, 0x29, 0x48, 0xf9, 0x5a, 0x82, 0x37, 0x13, 0x77, 0x44,
  2828. 0x9e, 0x7e, 0xbb, 0xa3, 0xff, 0x15, 0x5c, 0x3e, 0xca, 0xda, 0xe4, 0x08, 0x1e, 0x40, 0x19, 0x69,
  2829. 0xf1, 0x20, 0x88, 0xaa, 0x12, 0x8f, 0xc8, 0x95, 0x97, 0x95, 0x26, 0x9b, 0x20, 0x8e, 0x0b, 0xb6,
  2830. 0xf2, 0x0b, 0x09, 0x2e, 0x66, 0x95, 0x0f, 0x82, 0xe8, 0x5b, 0x19, 0xa3, 0x68, 0x52, 0x49, 0x53,
  2831. 0x33, 0xff, 0xe3, 0xc1, 0xf9, 0x99, 0x04, 0x17, 0xd2, 0xb2, 0xd8, 0x1f, 0xc6, 0xfe, 0xf3, 0x6f,
  2832. 0x65, 0x68, 0x7e, 0x2d, 0xc1, 0x6b, 0x07, 0xac, 0x4c, 0x22, 0x33, 0x53, 0x49, 0xd2, 0x2b, 0x54,
  2833. 0x92, 0xfc, 0x11, 0x94, 0xf8, 0x85, 0x33, 0xaa, 0xe6, 0x38, 0xfc, 0xad, 0x63, 0x26, 0x09, 0xf2,
  2834. 0xb1, 0x84, 0x7d, 0x26, 0xac, 0xf9, 0x03, 0x61, 0xf5, 0xe0, 0x7c, 0xd2, 0x64, 0xf7, 0xb1, 0x6b,
  2835. 0x7f, 0x43, 0x41, 0x55, 0xbe, 0x80, 0x0b, 0xb3, 0x62, 0x93, 0x28, 0xd8, 0x00, 0x5d, 0xd1, 0xc5,
  2836. 0xa7, 0x19, 0x72, 0xeb, 0x68, 0xc9, 0x87, 0xf7, 0x7f, 0x96, 0x91, 0xa1, 0xfc, 0x39, 0x0f, 0xe7,
  2837. 0x55, 0xf1, 0x67, 0x8e, 0xe0, 0x1b, 0xf4, 0x40, 0x66, 0x50, 0xde, 0x0e, 0xfc, 0x78, 0x6f, 0x1c,
  2838. 0x44, 0xc9, 0x43, 0xeb, 0x9d, 0xa3, 0xf1, 0x87, 0x18, 0x50, 0x6b, 0x24, 0x68, 0x36, 0x91, 0xf3,
  2839. 0x62, 0xaa, 0xe5, 0x5f, 0x3d, 0xd5, 0x96, 0xff, 0x26, 0x41, 0x39, 0xd5, 0x21, 0x5f, 0x83, 0xa5,
  2840. 0xe0, 0x79, 0x3c, 0xf6, 0xbb, 0x71, 0x27, 0xe2, 0x79, 0xc7, 0x7d, 0x2e, 0xb3, 0xc5, 0x84, 0x2a,
  2841. 0x92, 0x51, 0xbe, 0x01, 0x24, 0x65, 0x9b, 0x94, 0x69, 0x8e, 0x33, 0x9e, 0x4d, 0xe8, 0x69, 0x45,
  2842. 0xcb, 0x0f, 0x60, 0x39, 0x65, 0x3d, 0x64, 0xe2, 0xe4, 0x39, 0xa8, 0x9a, 0x70, 0xd4, 0x5f, 0x98,
  2843. 0x29, 0x77, 0xa1, 0x3a, 0xa3, 0x68, 0x3f, 0x83, 0x2d, 0x70, 0xec, 0xc5, 0xac, 0xc2, 0x69, 0x9b,
  2844. 0x95, 0xaf, 0xc2, 0x62, 0x37, 0xc9, 0x9c, 0x0e, 0xbf, 0x36, 0x95, 0x38, 0xfb, 0x42, 0x37, 0x93,
  2845. 0x4e, 0xca, 0x0f, 0xf3, 0xd8, 0x0c, 0xb2, 0x31, 0xff, 0xef, 0x57, 0x59, 0xb6, 0xf5, 0xe5, 0x4f,
  2846. 0xdd, 0xfa, 0x0e, 0x1f, 0xec, 0x85, 0x6f, 0x6c, 0xb0, 0x17, 0x0f, 0x0c, 0xf6, 0xd9, 0x42, 0x2c,
  2847. 0xfd, 0xfb, 0x85, 0x78, 0xf3, 0x2e, 0x2c, 0x64, 0xb3, 0x55, 0x5c, 0xc9, 0x4d, 0x4a, 0xce, 0xe0,
  2848. 0xca, 0x73, 0x1b, 0x77, 0xc5, 0x57, 0xaa, 0xe7, 0x36, 0x6e, 0xdf, 0x11, 0x5f, 0xa9, 0x9e, 0xdb,
  2849. 0xf8, 0x70, 0x8d, 0xe4, 0xd7, 0xfe, 0x30, 0x07, 0x67, 0x8d, 0x44, 0x99, 0x23, 0xfe, 0xca, 0x29,
  2850. 0xff, 0x5c, 0x02, 0x72, 0xf0, 0x16, 0x24, 0xdf, 0x3e, 0xae, 0x02, 0x0f, 0xbd, 0xda, 0x2d, 0xaf,
  2851. 0x9d, 0x06, 0x22, 0x92, 0x48, 0xb9, 0xf1, 0xbd, 0xdf, 0xff, 0xf1, 0x47, 0xb9, 0xab, 0xca, 0xe5,
  2852. 0xd5, 0x67, 0xb7, 0x57, 0xd3, 0xb0, 0x46, 0xf7, 0xfc, 0x03, 0xfc, 0xf7, 0xa4, 0x9b, 0xf2, 0x4f,
  2853. 0x25, 0x38, 0x7b, 0x60, 0x16, 0xca, 0xb7, 0x5e, 0xaa, 0xf2, 0xc0, 0x74, 0x5f, 0xbe, 0x7d, 0x0a,
  2854. 0x44, 0x62, 0xe3, 0x0a, 0xb7, 0x51, 0x51, 0xde, 0x3c, 0xd4, 0xc6, 0x94, 0x1d, 0x4d, 0xfc, 0xed,
  2855. 0x81, 0x5b, 0x45, 0xa6, 0xd6, 0x3e, 0x3a, 0x99, 0xde, 0x17, 0xae, 0x6c, 0xcb, 0x77, 0x4f, 0x0f,
  2856. 0x4c, 0xec, 0x5e, 0xe5, 0x76, 0xdf, 0x50, 0xde, 0x39, 0xda, 0xee, 0xfd, 0x99, 0x08, 0xff, 0x44,
  2857. 0x82, 0xc5, 0x99, 0x89, 0x2a, 0xd7, 0x5e, 0x7e, 0xa4, 0xd9, 0x0b, 0xc2, 0xf2, 0xea, 0x89, 0xf9,
  2858. 0x13, 0x1b, 0xaf, 0x73, 0x1b, 0xaf, 0x28, 0x6f, 0x1c, 0x7e, 0xfe, 0x9c, 0x19, 0x4d, 0xfb, 0xb1,
  2859. 0x04, 0x0b, 0xd9, 0x29, 0x27, 0x7f, 0xf0, 0xd2, 0x02, 0xca, 0x0e, 0xd9, 0xe5, 0xda, 0x49, 0xd9,
  2860. 0x13, 0xbb, 0xae, 0x71, 0xbb, 0xde, 0x52, 0x96, 0x67, 0xed, 0xca, 0x76, 0xc6, 0xd4, 0xac, 0x6c,
  2861. 0x73, 0x3c, 0xce, 0xac, 0x43, 0x06, 0xd7, 0x72, 0xed, 0xa4, 0xec, 0xc7, 0x9b, 0xe5, 0x67, 0x78,
  2862. 0xef, 0x49, 0x37, 0xd7, 0x9f, 0xc3, 0xa5, 0x6e, 0xb8, 0x7b, 0xa4, 0xec, 0xf5, 0x0b, 0x07, 0x5a,
  2863. 0x80, 0x3d, 0x0e, 0xe3, 0xd0, 0x96, 0x3e, 0x7f, 0x98, 0x20, 0xfa, 0x21, 0x72, 0xd7, 0xc2, 0x71,
  2864. 0x7f, 0xb5, 0x1f, 0x0c, 0xf9, 0x7f, 0x33, 0x24, 0xff, 0x35, 0xe1, 0x8f, 0x06, 0xd1, 0x8b, 0xff,
  2865. 0x39, 0x71, 0x3f, 0x5d, 0x3f, 0x2d, 0x71, 0xe6, 0x0f, 0xff, 0x15, 0x00, 0x00, 0xff, 0xff, 0x5f,
  2866. 0x87, 0x12, 0xb1, 0x65, 0x21, 0x00, 0x00,
  2867. }