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.
 
 
 

407 lines
16 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/api/service.proto
  3. package serviceconfig // import "google.golang.org/genproto/googleapis/api/serviceconfig"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "github.com/golang/protobuf/ptypes/any"
  8. import wrappers "github.com/golang/protobuf/ptypes/wrappers"
  9. import api1 "google.golang.org/genproto/googleapis/api"
  10. import annotations "google.golang.org/genproto/googleapis/api/annotations"
  11. import _ "google.golang.org/genproto/googleapis/api/label"
  12. import metric "google.golang.org/genproto/googleapis/api/metric"
  13. import monitoredres "google.golang.org/genproto/googleapis/api/monitoredres"
  14. import api "google.golang.org/genproto/protobuf/api"
  15. import ptype "google.golang.org/genproto/protobuf/ptype"
  16. // Reference imports to suppress errors if they are not otherwise used.
  17. var _ = proto.Marshal
  18. var _ = fmt.Errorf
  19. var _ = math.Inf
  20. // This is a compile-time assertion to ensure that this generated file
  21. // is compatible with the proto package it is being compiled against.
  22. // A compilation error at this line likely means your copy of the
  23. // proto package needs to be updated.
  24. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  25. // `Service` is the root object of Google service configuration schema. It
  26. // describes basic information about a service, such as the name and the
  27. // title, and delegates other aspects to sub-sections. Each sub-section is
  28. // either a proto message or a repeated proto message that configures a
  29. // specific aspect, such as auth. See each proto message definition for details.
  30. //
  31. // Example:
  32. //
  33. // type: google.api.Service
  34. // config_version: 3
  35. // name: calendar.googleapis.com
  36. // title: Google Calendar API
  37. // apis:
  38. // - name: google.calendar.v3.Calendar
  39. // authentication:
  40. // providers:
  41. // - id: google_calendar_auth
  42. // jwks_uri: https://www.googleapis.com/oauth2/v1/certs
  43. // issuer: https://securetoken.google.com
  44. // rules:
  45. // - selector: "*"
  46. // requirements:
  47. // provider_id: google_calendar_auth
  48. type Service struct {
  49. // The semantic version of the service configuration. The config version
  50. // affects the interpretation of the service configuration. For example,
  51. // certain features are enabled by default for certain config versions.
  52. // The latest config version is `3`.
  53. ConfigVersion *wrappers.UInt32Value `protobuf:"bytes,20,opt,name=config_version,json=configVersion,proto3" json:"config_version,omitempty"`
  54. // The service name, which is a DNS-like logical identifier for the
  55. // service, such as `calendar.googleapis.com`. The service name
  56. // typically goes through DNS verification to make sure the owner
  57. // of the service also owns the DNS name.
  58. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  59. // A unique ID for a specific instance of this message, typically assigned
  60. // by the client for tracking purpose. If empty, the server may choose to
  61. // generate one instead. Must be no longer than 60 characters.
  62. Id string `protobuf:"bytes,33,opt,name=id,proto3" json:"id,omitempty"`
  63. // The product title for this service.
  64. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
  65. // The Google project that owns this service.
  66. ProducerProjectId string `protobuf:"bytes,22,opt,name=producer_project_id,json=producerProjectId,proto3" json:"producer_project_id,omitempty"`
  67. // A list of API interfaces exported by this service. Only the `name` field
  68. // of the [google.protobuf.Api][google.protobuf.Api] needs to be provided by
  69. // the configuration author, as the remaining fields will be derived from the
  70. // IDL during the normalization process. It is an error to specify an API
  71. // interface here which cannot be resolved against the associated IDL files.
  72. Apis []*api.Api `protobuf:"bytes,3,rep,name=apis,proto3" json:"apis,omitempty"`
  73. // A list of all proto message types included in this API service.
  74. // Types referenced directly or indirectly by the `apis` are
  75. // automatically included. Messages which are not referenced but
  76. // shall be included, such as types used by the `google.protobuf.Any` type,
  77. // should be listed here by name. Example:
  78. //
  79. // types:
  80. // - name: google.protobuf.Int32
  81. Types []*ptype.Type `protobuf:"bytes,4,rep,name=types,proto3" json:"types,omitempty"`
  82. // A list of all enum types included in this API service. Enums
  83. // referenced directly or indirectly by the `apis` are automatically
  84. // included. Enums which are not referenced but shall be included
  85. // should be listed here by name. Example:
  86. //
  87. // enums:
  88. // - name: google.someapi.v1.SomeEnum
  89. Enums []*ptype.Enum `protobuf:"bytes,5,rep,name=enums,proto3" json:"enums,omitempty"`
  90. // Additional API documentation.
  91. Documentation *Documentation `protobuf:"bytes,6,opt,name=documentation,proto3" json:"documentation,omitempty"`
  92. // API backend configuration.
  93. Backend *Backend `protobuf:"bytes,8,opt,name=backend,proto3" json:"backend,omitempty"`
  94. // HTTP configuration.
  95. Http *annotations.Http `protobuf:"bytes,9,opt,name=http,proto3" json:"http,omitempty"`
  96. // Quota configuration.
  97. Quota *Quota `protobuf:"bytes,10,opt,name=quota,proto3" json:"quota,omitempty"`
  98. // Auth configuration.
  99. Authentication *Authentication `protobuf:"bytes,11,opt,name=authentication,proto3" json:"authentication,omitempty"`
  100. // Context configuration.
  101. Context *Context `protobuf:"bytes,12,opt,name=context,proto3" json:"context,omitempty"`
  102. // Configuration controlling usage of this service.
  103. Usage *Usage `protobuf:"bytes,15,opt,name=usage,proto3" json:"usage,omitempty"`
  104. // Configuration for network endpoints. If this is empty, then an endpoint
  105. // with the same name as the service is automatically generated to service all
  106. // defined APIs.
  107. Endpoints []*Endpoint `protobuf:"bytes,18,rep,name=endpoints,proto3" json:"endpoints,omitempty"`
  108. // Configuration for the service control plane.
  109. Control *Control `protobuf:"bytes,21,opt,name=control,proto3" json:"control,omitempty"`
  110. // Defines the logs used by this service.
  111. Logs []*LogDescriptor `protobuf:"bytes,23,rep,name=logs,proto3" json:"logs,omitempty"`
  112. // Defines the metrics used by this service.
  113. Metrics []*metric.MetricDescriptor `protobuf:"bytes,24,rep,name=metrics,proto3" json:"metrics,omitempty"`
  114. // Defines the monitored resources used by this service. This is required
  115. // by the [Service.monitoring][google.api.Service.monitoring] and
  116. // [Service.logging][google.api.Service.logging] configurations.
  117. MonitoredResources []*monitoredres.MonitoredResourceDescriptor `protobuf:"bytes,25,rep,name=monitored_resources,json=monitoredResources,proto3" json:"monitored_resources,omitempty"`
  118. // Billing configuration.
  119. Billing *Billing `protobuf:"bytes,26,opt,name=billing,proto3" json:"billing,omitempty"`
  120. // Logging configuration.
  121. Logging *Logging `protobuf:"bytes,27,opt,name=logging,proto3" json:"logging,omitempty"`
  122. // Monitoring configuration.
  123. Monitoring *Monitoring `protobuf:"bytes,28,opt,name=monitoring,proto3" json:"monitoring,omitempty"`
  124. // System parameter configuration.
  125. SystemParameters *SystemParameters `protobuf:"bytes,29,opt,name=system_parameters,json=systemParameters,proto3" json:"system_parameters,omitempty"`
  126. // Output only. The source information for this configuration if available.
  127. SourceInfo *SourceInfo `protobuf:"bytes,37,opt,name=source_info,json=sourceInfo,proto3" json:"source_info,omitempty"`
  128. // Experimental configuration.
  129. Experimental *api1.Experimental `protobuf:"bytes,101,opt,name=experimental,proto3" json:"experimental,omitempty"`
  130. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  131. XXX_unrecognized []byte `json:"-"`
  132. XXX_sizecache int32 `json:"-"`
  133. }
  134. func (m *Service) Reset() { *m = Service{} }
  135. func (m *Service) String() string { return proto.CompactTextString(m) }
  136. func (*Service) ProtoMessage() {}
  137. func (*Service) Descriptor() ([]byte, []int) {
  138. return fileDescriptor_service_7ba9b10e7153108c, []int{0}
  139. }
  140. func (m *Service) XXX_Unmarshal(b []byte) error {
  141. return xxx_messageInfo_Service.Unmarshal(m, b)
  142. }
  143. func (m *Service) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  144. return xxx_messageInfo_Service.Marshal(b, m, deterministic)
  145. }
  146. func (dst *Service) XXX_Merge(src proto.Message) {
  147. xxx_messageInfo_Service.Merge(dst, src)
  148. }
  149. func (m *Service) XXX_Size() int {
  150. return xxx_messageInfo_Service.Size(m)
  151. }
  152. func (m *Service) XXX_DiscardUnknown() {
  153. xxx_messageInfo_Service.DiscardUnknown(m)
  154. }
  155. var xxx_messageInfo_Service proto.InternalMessageInfo
  156. func (m *Service) GetConfigVersion() *wrappers.UInt32Value {
  157. if m != nil {
  158. return m.ConfigVersion
  159. }
  160. return nil
  161. }
  162. func (m *Service) GetName() string {
  163. if m != nil {
  164. return m.Name
  165. }
  166. return ""
  167. }
  168. func (m *Service) GetId() string {
  169. if m != nil {
  170. return m.Id
  171. }
  172. return ""
  173. }
  174. func (m *Service) GetTitle() string {
  175. if m != nil {
  176. return m.Title
  177. }
  178. return ""
  179. }
  180. func (m *Service) GetProducerProjectId() string {
  181. if m != nil {
  182. return m.ProducerProjectId
  183. }
  184. return ""
  185. }
  186. func (m *Service) GetApis() []*api.Api {
  187. if m != nil {
  188. return m.Apis
  189. }
  190. return nil
  191. }
  192. func (m *Service) GetTypes() []*ptype.Type {
  193. if m != nil {
  194. return m.Types
  195. }
  196. return nil
  197. }
  198. func (m *Service) GetEnums() []*ptype.Enum {
  199. if m != nil {
  200. return m.Enums
  201. }
  202. return nil
  203. }
  204. func (m *Service) GetDocumentation() *Documentation {
  205. if m != nil {
  206. return m.Documentation
  207. }
  208. return nil
  209. }
  210. func (m *Service) GetBackend() *Backend {
  211. if m != nil {
  212. return m.Backend
  213. }
  214. return nil
  215. }
  216. func (m *Service) GetHttp() *annotations.Http {
  217. if m != nil {
  218. return m.Http
  219. }
  220. return nil
  221. }
  222. func (m *Service) GetQuota() *Quota {
  223. if m != nil {
  224. return m.Quota
  225. }
  226. return nil
  227. }
  228. func (m *Service) GetAuthentication() *Authentication {
  229. if m != nil {
  230. return m.Authentication
  231. }
  232. return nil
  233. }
  234. func (m *Service) GetContext() *Context {
  235. if m != nil {
  236. return m.Context
  237. }
  238. return nil
  239. }
  240. func (m *Service) GetUsage() *Usage {
  241. if m != nil {
  242. return m.Usage
  243. }
  244. return nil
  245. }
  246. func (m *Service) GetEndpoints() []*Endpoint {
  247. if m != nil {
  248. return m.Endpoints
  249. }
  250. return nil
  251. }
  252. func (m *Service) GetControl() *Control {
  253. if m != nil {
  254. return m.Control
  255. }
  256. return nil
  257. }
  258. func (m *Service) GetLogs() []*LogDescriptor {
  259. if m != nil {
  260. return m.Logs
  261. }
  262. return nil
  263. }
  264. func (m *Service) GetMetrics() []*metric.MetricDescriptor {
  265. if m != nil {
  266. return m.Metrics
  267. }
  268. return nil
  269. }
  270. func (m *Service) GetMonitoredResources() []*monitoredres.MonitoredResourceDescriptor {
  271. if m != nil {
  272. return m.MonitoredResources
  273. }
  274. return nil
  275. }
  276. func (m *Service) GetBilling() *Billing {
  277. if m != nil {
  278. return m.Billing
  279. }
  280. return nil
  281. }
  282. func (m *Service) GetLogging() *Logging {
  283. if m != nil {
  284. return m.Logging
  285. }
  286. return nil
  287. }
  288. func (m *Service) GetMonitoring() *Monitoring {
  289. if m != nil {
  290. return m.Monitoring
  291. }
  292. return nil
  293. }
  294. func (m *Service) GetSystemParameters() *SystemParameters {
  295. if m != nil {
  296. return m.SystemParameters
  297. }
  298. return nil
  299. }
  300. func (m *Service) GetSourceInfo() *SourceInfo {
  301. if m != nil {
  302. return m.SourceInfo
  303. }
  304. return nil
  305. }
  306. func (m *Service) GetExperimental() *api1.Experimental {
  307. if m != nil {
  308. return m.Experimental
  309. }
  310. return nil
  311. }
  312. func init() {
  313. proto.RegisterType((*Service)(nil), "google.api.Service")
  314. }
  315. func init() { proto.RegisterFile("google/api/service.proto", fileDescriptor_service_7ba9b10e7153108c) }
  316. var fileDescriptor_service_7ba9b10e7153108c = []byte{
  317. // 825 bytes of a gzipped FileDescriptorProto
  318. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x96, 0xdf, 0x6e, 0xdb, 0x36,
  319. 0x14, 0x87, 0x61, 0xd7, 0x6e, 0x16, 0x3a, 0xcd, 0x1a, 0xc6, 0x49, 0x19, 0xd7, 0x1b, 0xd2, 0xfd,
  320. 0x41, 0x8d, 0x0d, 0x95, 0x01, 0x17, 0xe8, 0x2e, 0x36, 0x60, 0x88, 0xdb, 0x60, 0x33, 0xd0, 0x01,
  321. 0x1e, 0xb3, 0x16, 0xc3, 0x6e, 0x0c, 0x5a, 0xa2, 0x55, 0x6e, 0x12, 0xc9, 0x91, 0x54, 0x17, 0x3f,
  322. 0xc7, 0xde, 0x60, 0x4f, 0x3a, 0x88, 0xa4, 0x62, 0xca, 0x52, 0xee, 0x22, 0x7e, 0xdf, 0x39, 0x38,
  323. 0x14, 0xa9, 0x9f, 0x03, 0x50, 0x2a, 0x44, 0x9a, 0xd1, 0x29, 0x91, 0x6c, 0xaa, 0xa9, 0xfa, 0xc8,
  324. 0x62, 0x1a, 0x49, 0x25, 0x8c, 0x80, 0xc0, 0x91, 0x88, 0x48, 0x36, 0x1a, 0x07, 0x16, 0xe1, 0x5c,
  325. 0x18, 0x62, 0x98, 0xe0, 0xda, 0x99, 0xa3, 0xb3, 0x90, 0x16, 0xe6, 0x83, 0x5f, 0x0e, 0x5b, 0xaf,
  326. 0x49, 0xfc, 0x17, 0xe5, 0x49, 0x1b, 0x61, 0x59, 0xc6, 0x78, 0xda, 0x42, 0x62, 0xc1, 0x0d, 0xbd,
  327. 0x35, 0xf7, 0x10, 0x25, 0x32, 0x4f, 0x3e, 0x0f, 0x48, 0x22, 0xe2, 0x22, 0xa7, 0xdc, 0xcd, 0xe7,
  328. 0xf9, 0x45, 0xc0, 0x29, 0x4f, 0xa4, 0x60, 0xbc, 0x6a, 0xfa, 0x4d, 0x88, 0x6e, 0x25, 0x55, 0xcc,
  329. 0x16, 0x67, 0xb5, 0x87, 0x96, 0x5d, 0x7e, 0x30, 0x46, 0xfa, 0xe5, 0xf3, 0x60, 0x39, 0x23, 0x6b,
  330. 0x5a, 0xe9, 0xc3, 0x70, 0x5d, 0xb4, 0xed, 0x2f, 0x13, 0x69, 0xba, 0xdb, 0xf9, 0x93, 0x80, 0xe4,
  331. 0xd4, 0x28, 0x16, 0x7b, 0xf0, 0x65, 0x08, 0x04, 0x67, 0x46, 0x28, 0x9a, 0xac, 0x14, 0xd5, 0xa2,
  332. 0x50, 0xd5, 0x61, 0x8d, 0x9e, 0x36, 0xa5, 0x5d, 0xeb, 0x70, 0xc4, 0xbf, 0x0b, 0x61, 0x88, 0x5f,
  333. 0x0f, 0x4f, 0xd5, 0x75, 0x5b, 0x31, 0xbe, 0x11, 0x9e, 0x3e, 0x0b, 0xe9, 0x56, 0x1b, 0x9a, 0xaf,
  334. 0x24, 0x51, 0x24, 0xa7, 0x86, 0xaa, 0x96, 0xc6, 0x85, 0x26, 0x29, 0xdd, 0x7b, 0xe3, 0xf6, 0x69,
  335. 0x5d, 0x6c, 0xa6, 0x84, 0x6f, 0xef, 0x45, 0x92, 0x79, 0x34, 0xda, 0x47, 0x66, 0x2b, 0xe9, 0xde,
  336. 0x19, 0xdf, 0xb1, 0x7f, 0x14, 0x91, 0x92, 0x2a, 0x7f, 0x05, 0xbf, 0xf8, 0x17, 0x80, 0x83, 0x1b,
  337. 0x77, 0x7d, 0xe1, 0x6b, 0x70, 0x1c, 0x0b, 0xbe, 0x61, 0xe9, 0xea, 0x23, 0x55, 0x9a, 0x09, 0x8e,
  338. 0x86, 0x97, 0x9d, 0xc9, 0x60, 0x36, 0x8e, 0xfc, 0x8d, 0xae, 0x9a, 0x44, 0xef, 0x16, 0xdc, 0xbc,
  339. 0x9c, 0xbd, 0x27, 0x59, 0x41, 0xf1, 0x23, 0x57, 0xf3, 0xde, 0x95, 0x40, 0x08, 0x7a, 0x9c, 0xe4,
  340. 0x14, 0x75, 0x2e, 0x3b, 0x93, 0x43, 0x6c, 0xff, 0x86, 0xc7, 0xa0, 0xcb, 0x12, 0xf4, 0xcc, 0xae,
  341. 0x74, 0x59, 0x02, 0x87, 0xa0, 0x6f, 0x98, 0xc9, 0x28, 0xea, 0xda, 0x25, 0xf7, 0x00, 0x23, 0x70,
  342. 0x2a, 0x95, 0x48, 0x8a, 0x98, 0xaa, 0x95, 0x54, 0xe2, 0x4f, 0x1a, 0x9b, 0x15, 0x4b, 0xd0, 0xb9,
  343. 0x75, 0x4e, 0x2a, 0xb4, 0x74, 0x64, 0x91, 0xc0, 0x09, 0xe8, 0x11, 0xc9, 0x34, 0x7a, 0x70, 0xf9,
  344. 0x60, 0x32, 0x98, 0x0d, 0x1b, 0x43, 0x5e, 0x49, 0x86, 0xad, 0x01, 0xbf, 0x05, 0xfd, 0xf2, 0x95,
  345. 0x68, 0xd4, 0xb3, 0xea, 0x59, 0x43, 0xfd, 0x6d, 0x2b, 0x29, 0x76, 0x4e, 0x29, 0x53, 0x5e, 0xe4,
  346. 0x1a, 0xf5, 0xef, 0x91, 0xaf, 0x79, 0x91, 0x63, 0xe7, 0xc0, 0x1f, 0xc1, 0xa3, 0xda, 0x97, 0x83,
  347. 0x1e, 0xda, 0x37, 0x76, 0x11, 0xed, 0x32, 0x20, 0x7a, 0x13, 0x0a, 0xb8, 0xee, 0xc3, 0x17, 0xe0,
  348. 0xc0, 0x7f, 0xe2, 0xe8, 0x13, 0x5b, 0x7a, 0x1a, 0x96, 0xce, 0x1d, 0xc2, 0x95, 0x03, 0xbf, 0x02,
  349. 0xbd, 0xf2, 0x13, 0x42, 0x87, 0xd6, 0x7d, 0x1c, 0xba, 0x3f, 0x1b, 0x23, 0xb1, 0xa5, 0xf0, 0x39,
  350. 0xe8, 0xdb, 0xeb, 0x8a, 0x80, 0xd5, 0x4e, 0x42, 0xed, 0xd7, 0x12, 0x60, 0xc7, 0xe1, 0x1c, 0x1c,
  351. 0x97, 0xb9, 0x43, 0xb9, 0x61, 0xb1, 0x9b, 0x7f, 0x60, 0x2b, 0x46, 0x61, 0xc5, 0x55, 0xcd, 0xc0,
  352. 0x7b, 0x15, 0xe5, 0x0e, 0x7c, 0xe0, 0xa0, 0xa3, 0xe6, 0x0e, 0x5e, 0x3b, 0x84, 0x2b, 0xa7, 0x9c,
  353. 0xcd, 0xde, 0x78, 0xf4, 0x69, 0x73, 0xb6, 0x77, 0x25, 0xc0, 0x8e, 0xc3, 0x19, 0x38, 0xac, 0x42,
  354. 0x47, 0x23, 0x58, 0x3f, 0xe3, 0x52, 0xbe, 0xf6, 0x10, 0xef, 0xb4, 0x6a, 0x16, 0x25, 0x32, 0x74,
  355. 0xd6, 0x3e, 0x8b, 0x12, 0x19, 0xae, 0x1c, 0xf8, 0x02, 0xf4, 0x32, 0x91, 0x6a, 0xf4, 0xc4, 0x76,
  356. 0xaf, 0x1d, 0xda, 0x5b, 0x91, 0xbe, 0xa1, 0x3a, 0x56, 0x4c, 0x1a, 0xa1, 0xb0, 0xd5, 0xe0, 0x2b,
  357. 0x70, 0xe0, 0x02, 0x46, 0x23, 0x64, 0x2b, 0xc6, 0x61, 0xc5, 0x2f, 0x16, 0x05, 0x45, 0x95, 0x0c,
  358. 0x7f, 0x07, 0xa7, 0xcd, 0xfc, 0xd1, 0xe8, 0xc2, 0xf6, 0x78, 0x5e, 0xeb, 0x51, 0x69, 0xd8, 0x5b,
  359. 0x41, 0x3b, 0x98, 0xef, 0x43, 0xbb, 0x5f, 0xff, 0x33, 0x80, 0x46, 0x2d, 0xb7, 0xc7, 0x21, 0x5c,
  360. 0x39, 0xa5, 0xee, 0xb3, 0x13, 0x3d, 0x6d, 0xea, 0x6f, 0x1d, 0xc2, 0x95, 0x03, 0x5f, 0x01, 0xb0,
  361. 0x8b, 0x44, 0x34, 0xb6, 0x15, 0xe7, 0x2d, 0xe3, 0x96, 0x45, 0x81, 0x09, 0x17, 0xe0, 0x64, 0x3f,
  362. 0xf7, 0x34, 0xfa, 0xac, 0x1e, 0x25, 0x65, 0xf9, 0x8d, 0x95, 0x96, 0x77, 0x0e, 0x7e, 0xac, 0xf7,
  363. 0x56, 0xe0, 0x77, 0x60, 0x10, 0x04, 0x2c, 0xfa, 0xba, 0x39, 0xc3, 0x8d, 0xc5, 0x0b, 0xbe, 0x11,
  364. 0x18, 0xe8, 0xbb, 0xbf, 0xe1, 0x0f, 0xe0, 0x28, 0xfc, 0x29, 0x42, 0xd4, 0x56, 0xa2, 0xda, 0x05,
  365. 0x0a, 0x38, 0xae, 0xd9, 0x73, 0x5e, 0x26, 0x61, 0x1e, 0xc8, 0xf3, 0x23, 0x1f, 0x92, 0xcb, 0x32,
  366. 0x05, 0x96, 0x9d, 0x3f, 0xae, 0x3d, 0x4b, 0x45, 0x46, 0x78, 0x1a, 0x09, 0x95, 0x4e, 0x53, 0xca,
  367. 0x6d, 0x46, 0x4c, 0x1d, 0x2a, 0x93, 0x27, 0xfc, 0xef, 0xc0, 0xc5, 0xe4, 0xf7, 0xb5, 0xa7, 0xff,
  368. 0xba, 0xbd, 0x9f, 0xae, 0x96, 0x8b, 0xf5, 0x43, 0x5b, 0xf8, 0xf2, 0xff, 0x00, 0x00, 0x00, 0xff,
  369. 0xff, 0xfe, 0x6c, 0x4b, 0xf7, 0x55, 0x08, 0x00, 0x00,
  370. }