auto-regenerate .pb.go files (#340)
This is an auto-generated regeneration of the .pb.go files by
cloud.google.com/go/internal/gapicgen. Once this PR is submitted, genmgr will
update the corresponding CL at gocloud to depend on the newer version of
go-genproto, and assign reviewers. Whilst this or any regen PR is open in
go-genproto, gapicgen will not create any more regeneration PRs or CLs. If all
regen PRs are closed, gapicgen will create a new set of regeneration PRs and
CLs once per night.
If you have been assigned to review this CL, please:
- Ensure that CI is passing. If it's failing, it requires your manual attention.
- Approve and submit this PR if you believe it's ready to ship. That will prompt
genmgr to assign reviewers to the gocloud CL.
Corresponding gocloud CL: https://code-review.googlesource.com/c/gocloud/+/54390
diff --git a/googleapis/cloud/bigquery/reservation/v1/reservation.pb.go b/googleapis/cloud/bigquery/reservation/v1/reservation.pb.go
new file mode 100644
index 0000000..bbd14a9
--- /dev/null
+++ b/googleapis/cloud/bigquery/reservation/v1/reservation.pb.go
@@ -0,0 +1,2745 @@
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// source: google/cloud/bigquery/reservation/v1/reservation.proto
+
+package reservation
+
+import (
+ context "context"
+ fmt "fmt"
+ math "math"
+
+ proto "github.com/golang/protobuf/proto"
+ empty "github.com/golang/protobuf/ptypes/empty"
+ timestamp "github.com/golang/protobuf/ptypes/timestamp"
+ _ "google.golang.org/genproto/googleapis/api/annotations"
+ status "google.golang.org/genproto/googleapis/rpc/status"
+ field_mask "google.golang.org/genproto/protobuf/field_mask"
+ grpc "google.golang.org/grpc"
+ codes "google.golang.org/grpc/codes"
+ status1 "google.golang.org/grpc/status"
+)
+
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
+
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the proto package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// proto package needs to be updated.
+const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
+
+// Commitment plan defines the current committed period. Capacity commitment
+// cannot be deleted during it's committed period.
+type CapacityCommitment_CommitmentPlan int32
+
+const (
+ // Invalid plan value. Requests with this value will be rejected with
+ // error code `google.rpc.Code.INVALID_ARGUMENT`.
+ CapacityCommitment_COMMITMENT_PLAN_UNSPECIFIED CapacityCommitment_CommitmentPlan = 0
+ // Flex commitments have committed period of 1 minute after becoming ACTIVE.
+ // After that, they are not in a committed period anymore and can be removed
+ // any time.
+ CapacityCommitment_FLEX CapacityCommitment_CommitmentPlan = 3
+ // Monthly commitments have a committed period of 30 days after becoming
+ // ACTIVE.
+ CapacityCommitment_MONTHLY CapacityCommitment_CommitmentPlan = 2
+ // Annual commitments have a committed period of 365 days after becoming
+ // ACTIVE.
+ CapacityCommitment_ANNUAL CapacityCommitment_CommitmentPlan = 4
+)
+
+var CapacityCommitment_CommitmentPlan_name = map[int32]string{
+ 0: "COMMITMENT_PLAN_UNSPECIFIED",
+ 3: "FLEX",
+ 2: "MONTHLY",
+ 4: "ANNUAL",
+}
+
+var CapacityCommitment_CommitmentPlan_value = map[string]int32{
+ "COMMITMENT_PLAN_UNSPECIFIED": 0,
+ "FLEX": 3,
+ "MONTHLY": 2,
+ "ANNUAL": 4,
+}
+
+func (x CapacityCommitment_CommitmentPlan) String() string {
+ return proto.EnumName(CapacityCommitment_CommitmentPlan_name, int32(x))
+}
+
+func (CapacityCommitment_CommitmentPlan) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{1, 0}
+}
+
+// Capacity commitment can either become ACTIVE right away or transition
+// from PENDING to ACTIVE or FAILED.
+type CapacityCommitment_State int32
+
+const (
+ // Invalid state value.
+ CapacityCommitment_STATE_UNSPECIFIED CapacityCommitment_State = 0
+ // Capacity commitment is pending provisioning. Pending capacity commitment
+ // does not contribute to the parent's slot_capacity.
+ CapacityCommitment_PENDING CapacityCommitment_State = 1
+ // Once slots are provisioned, capacity commitment becomes active.
+ // slot_count is added to the parent's slot_capacity.
+ CapacityCommitment_ACTIVE CapacityCommitment_State = 2
+ // Capacity commitment is failed to be activated by the backend.
+ CapacityCommitment_FAILED CapacityCommitment_State = 3
+)
+
+var CapacityCommitment_State_name = map[int32]string{
+ 0: "STATE_UNSPECIFIED",
+ 1: "PENDING",
+ 2: "ACTIVE",
+ 3: "FAILED",
+}
+
+var CapacityCommitment_State_value = map[string]int32{
+ "STATE_UNSPECIFIED": 0,
+ "PENDING": 1,
+ "ACTIVE": 2,
+ "FAILED": 3,
+}
+
+func (x CapacityCommitment_State) String() string {
+ return proto.EnumName(CapacityCommitment_State_name, int32(x))
+}
+
+func (CapacityCommitment_State) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{1, 1}
+}
+
+// Types of job, which could be specified when using the reservation.
+type Assignment_JobType int32
+
+const (
+ // Invalid type. Requests with this value will be rejected with
+ // error code `google.rpc.Code.INVALID_ARGUMENT`.
+ Assignment_JOB_TYPE_UNSPECIFIED Assignment_JobType = 0
+ // Pipeline (load/export) jobs from the project will use the reservation.
+ Assignment_PIPELINE Assignment_JobType = 1
+ // Query jobs from the project will use the reservation.
+ Assignment_QUERY Assignment_JobType = 2
+)
+
+var Assignment_JobType_name = map[int32]string{
+ 0: "JOB_TYPE_UNSPECIFIED",
+ 1: "PIPELINE",
+ 2: "QUERY",
+}
+
+var Assignment_JobType_value = map[string]int32{
+ "JOB_TYPE_UNSPECIFIED": 0,
+ "PIPELINE": 1,
+ "QUERY": 2,
+}
+
+func (x Assignment_JobType) String() string {
+ return proto.EnumName(Assignment_JobType_name, int32(x))
+}
+
+func (Assignment_JobType) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{16, 0}
+}
+
+// Assignment will remain in PENDING state if no active capacity commitment is
+// present. It will become ACTIVE when some capacity commitment becomes
+// active.
+type Assignment_State int32
+
+const (
+ // Invalid state value.
+ Assignment_STATE_UNSPECIFIED Assignment_State = 0
+ // Queries from assignee will be executed as on-demand, if related
+ // assignment is pending.
+ Assignment_PENDING Assignment_State = 1
+ // Assignment is ready.
+ Assignment_ACTIVE Assignment_State = 2
+)
+
+var Assignment_State_name = map[int32]string{
+ 0: "STATE_UNSPECIFIED",
+ 1: "PENDING",
+ 2: "ACTIVE",
+}
+
+var Assignment_State_value = map[string]int32{
+ "STATE_UNSPECIFIED": 0,
+ "PENDING": 1,
+ "ACTIVE": 2,
+}
+
+func (x Assignment_State) String() string {
+ return proto.EnumName(Assignment_State_name, int32(x))
+}
+
+func (Assignment_State) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{16, 1}
+}
+
+// A reservation is a mechanism used to guarantee slots to users.
+type Reservation struct {
+ // The resource name of the reservation, e.g.,
+ // "projects/*/locations/*/reservations/team1-prod".
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ // Minimum slots available to this reservation. A slot is a unit of
+ // computational power in BigQuery, and serves as the unit of parallelism.
+ // Queries using this reservation might use more slots during runtime if
+ // ignore_idle_slots is set to false.
+ // If the new reservation's slot capacity exceed the parent's slot capacity or
+ // if total slot capacity of the new reservation and its siblings exceeds the
+ // parent's slot capacity, the request will fail with
+ // `google.rpc.Code.RESOURCE_EXHAUSTED`.
+ SlotCapacity int64 `protobuf:"varint,2,opt,name=slot_capacity,json=slotCapacity,proto3" json:"slot_capacity,omitempty"`
+ // If false, any query using this reservation will use idle slots from other
+ // reservations within the same admin project. If true, a query using this
+ // reservation will execute with the slot capacity specified above at most.
+ IgnoreIdleSlots bool `protobuf:"varint,4,opt,name=ignore_idle_slots,json=ignoreIdleSlots,proto3" json:"ignore_idle_slots,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *Reservation) Reset() { *m = Reservation{} }
+func (m *Reservation) String() string { return proto.CompactTextString(m) }
+func (*Reservation) ProtoMessage() {}
+func (*Reservation) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{0}
+}
+
+func (m *Reservation) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Reservation.Unmarshal(m, b)
+}
+func (m *Reservation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Reservation.Marshal(b, m, deterministic)
+}
+func (m *Reservation) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Reservation.Merge(m, src)
+}
+func (m *Reservation) XXX_Size() int {
+ return xxx_messageInfo_Reservation.Size(m)
+}
+func (m *Reservation) XXX_DiscardUnknown() {
+ xxx_messageInfo_Reservation.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Reservation proto.InternalMessageInfo
+
+func (m *Reservation) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *Reservation) GetSlotCapacity() int64 {
+ if m != nil {
+ return m.SlotCapacity
+ }
+ return 0
+}
+
+func (m *Reservation) GetIgnoreIdleSlots() bool {
+ if m != nil {
+ return m.IgnoreIdleSlots
+ }
+ return false
+}
+
+// Capacity commitment is a way to purchase compute capacity for BigQuery jobs
+// (in the form of slots) with some committed period of usage. Monthly and
+// annual commitments renew by default. Only flex commitments can be removed. In
+// order to remove monthly or annual commitments, their plan needs to be changed
+// to flex first.
+//
+// A capacity commitment resource exists as a child resource of the admin
+// project.
+type CapacityCommitment struct {
+ // Output only. The resource name of the capacity commitment, e.g.,
+ // projects/myproject/locations/US/capacityCommitments/123
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ // Number of slots in this commitment.
+ SlotCount int64 `protobuf:"varint,2,opt,name=slot_count,json=slotCount,proto3" json:"slot_count,omitempty"`
+ // Capacity commitment commitment plan.
+ Plan CapacityCommitment_CommitmentPlan `protobuf:"varint,3,opt,name=plan,proto3,enum=google.cloud.bigquery.reservation.v1.CapacityCommitment_CommitmentPlan" json:"plan,omitempty"`
+ // Output only. State of the commitment.
+ State CapacityCommitment_State `protobuf:"varint,4,opt,name=state,proto3,enum=google.cloud.bigquery.reservation.v1.CapacityCommitment_State" json:"state,omitempty"`
+ // Output only. The end of the current commitment period. It is applicable only for ACTIVE
+ // capacity commitments.
+ CommitmentEndTime *timestamp.Timestamp `protobuf:"bytes,5,opt,name=commitment_end_time,json=commitmentEndTime,proto3" json:"commitment_end_time,omitempty"`
+ // Output only. For FAILED commitment plan, provides the reason of failure.
+ FailureStatus *status.Status `protobuf:"bytes,7,opt,name=failure_status,json=failureStatus,proto3" json:"failure_status,omitempty"`
+ // The plan this capacity commitment is converted to after commitment_end_time
+ // passes. Once the plan is changed, committed period is extended according to
+ // commitment plan. Only applicable for MONTHLY and ANNUAL commitments.
+ RenewalPlan CapacityCommitment_CommitmentPlan `protobuf:"varint,8,opt,name=renewal_plan,json=renewalPlan,proto3,enum=google.cloud.bigquery.reservation.v1.CapacityCommitment_CommitmentPlan" json:"renewal_plan,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *CapacityCommitment) Reset() { *m = CapacityCommitment{} }
+func (m *CapacityCommitment) String() string { return proto.CompactTextString(m) }
+func (*CapacityCommitment) ProtoMessage() {}
+func (*CapacityCommitment) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{1}
+}
+
+func (m *CapacityCommitment) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CapacityCommitment.Unmarshal(m, b)
+}
+func (m *CapacityCommitment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CapacityCommitment.Marshal(b, m, deterministic)
+}
+func (m *CapacityCommitment) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CapacityCommitment.Merge(m, src)
+}
+func (m *CapacityCommitment) XXX_Size() int {
+ return xxx_messageInfo_CapacityCommitment.Size(m)
+}
+func (m *CapacityCommitment) XXX_DiscardUnknown() {
+ xxx_messageInfo_CapacityCommitment.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CapacityCommitment proto.InternalMessageInfo
+
+func (m *CapacityCommitment) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *CapacityCommitment) GetSlotCount() int64 {
+ if m != nil {
+ return m.SlotCount
+ }
+ return 0
+}
+
+func (m *CapacityCommitment) GetPlan() CapacityCommitment_CommitmentPlan {
+ if m != nil {
+ return m.Plan
+ }
+ return CapacityCommitment_COMMITMENT_PLAN_UNSPECIFIED
+}
+
+func (m *CapacityCommitment) GetState() CapacityCommitment_State {
+ if m != nil {
+ return m.State
+ }
+ return CapacityCommitment_STATE_UNSPECIFIED
+}
+
+func (m *CapacityCommitment) GetCommitmentEndTime() *timestamp.Timestamp {
+ if m != nil {
+ return m.CommitmentEndTime
+ }
+ return nil
+}
+
+func (m *CapacityCommitment) GetFailureStatus() *status.Status {
+ if m != nil {
+ return m.FailureStatus
+ }
+ return nil
+}
+
+func (m *CapacityCommitment) GetRenewalPlan() CapacityCommitment_CommitmentPlan {
+ if m != nil {
+ return m.RenewalPlan
+ }
+ return CapacityCommitment_COMMITMENT_PLAN_UNSPECIFIED
+}
+
+// The request for [ReservationService.CreateReservation][google.cloud.bigquery.reservation.v1.ReservationService.CreateReservation].
+type CreateReservationRequest struct {
+ // Required. Project, location. E.g.,
+ // projects/myproject/locations/US
+ Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
+ // The reservation ID. This field must only contain lower case alphanumeric
+ // characters or dash. Max length is 64 characters.
+ ReservationId string `protobuf:"bytes,2,opt,name=reservation_id,json=reservationId,proto3" json:"reservation_id,omitempty"`
+ // Content of the new reservation to create.
+ Reservation *Reservation `protobuf:"bytes,3,opt,name=reservation,proto3" json:"reservation,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *CreateReservationRequest) Reset() { *m = CreateReservationRequest{} }
+func (m *CreateReservationRequest) String() string { return proto.CompactTextString(m) }
+func (*CreateReservationRequest) ProtoMessage() {}
+func (*CreateReservationRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{2}
+}
+
+func (m *CreateReservationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CreateReservationRequest.Unmarshal(m, b)
+}
+func (m *CreateReservationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CreateReservationRequest.Marshal(b, m, deterministic)
+}
+func (m *CreateReservationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CreateReservationRequest.Merge(m, src)
+}
+func (m *CreateReservationRequest) XXX_Size() int {
+ return xxx_messageInfo_CreateReservationRequest.Size(m)
+}
+func (m *CreateReservationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_CreateReservationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CreateReservationRequest proto.InternalMessageInfo
+
+func (m *CreateReservationRequest) GetParent() string {
+ if m != nil {
+ return m.Parent
+ }
+ return ""
+}
+
+func (m *CreateReservationRequest) GetReservationId() string {
+ if m != nil {
+ return m.ReservationId
+ }
+ return ""
+}
+
+func (m *CreateReservationRequest) GetReservation() *Reservation {
+ if m != nil {
+ return m.Reservation
+ }
+ return nil
+}
+
+// The request for [ReservationService.ListReservations][google.cloud.bigquery.reservation.v1.ReservationService.ListReservations].
+type ListReservationsRequest struct {
+ // Required. The parent resource name containing project and location, e.g.:
+ // "projects/myproject/locations/US"
+ Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
+ // The maximum number of items to return.
+ PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
+ // The next_page_token value returned from a previous List request, if any.
+ PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *ListReservationsRequest) Reset() { *m = ListReservationsRequest{} }
+func (m *ListReservationsRequest) String() string { return proto.CompactTextString(m) }
+func (*ListReservationsRequest) ProtoMessage() {}
+func (*ListReservationsRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{3}
+}
+
+func (m *ListReservationsRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ListReservationsRequest.Unmarshal(m, b)
+}
+func (m *ListReservationsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ListReservationsRequest.Marshal(b, m, deterministic)
+}
+func (m *ListReservationsRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ListReservationsRequest.Merge(m, src)
+}
+func (m *ListReservationsRequest) XXX_Size() int {
+ return xxx_messageInfo_ListReservationsRequest.Size(m)
+}
+func (m *ListReservationsRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ListReservationsRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ListReservationsRequest proto.InternalMessageInfo
+
+func (m *ListReservationsRequest) GetParent() string {
+ if m != nil {
+ return m.Parent
+ }
+ return ""
+}
+
+func (m *ListReservationsRequest) GetPageSize() int32 {
+ if m != nil {
+ return m.PageSize
+ }
+ return 0
+}
+
+func (m *ListReservationsRequest) GetPageToken() string {
+ if m != nil {
+ return m.PageToken
+ }
+ return ""
+}
+
+// The response for [ReservationService.ListReservations][google.cloud.bigquery.reservation.v1.ReservationService.ListReservations].
+type ListReservationsResponse struct {
+ // List of reservations visible to the user.
+ Reservations []*Reservation `protobuf:"bytes,1,rep,name=reservations,proto3" json:"reservations,omitempty"`
+ // Token to retrieve the next page of results, or empty if there are no
+ // more results in the list.
+ NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *ListReservationsResponse) Reset() { *m = ListReservationsResponse{} }
+func (m *ListReservationsResponse) String() string { return proto.CompactTextString(m) }
+func (*ListReservationsResponse) ProtoMessage() {}
+func (*ListReservationsResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{4}
+}
+
+func (m *ListReservationsResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ListReservationsResponse.Unmarshal(m, b)
+}
+func (m *ListReservationsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ListReservationsResponse.Marshal(b, m, deterministic)
+}
+func (m *ListReservationsResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ListReservationsResponse.Merge(m, src)
+}
+func (m *ListReservationsResponse) XXX_Size() int {
+ return xxx_messageInfo_ListReservationsResponse.Size(m)
+}
+func (m *ListReservationsResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ListReservationsResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ListReservationsResponse proto.InternalMessageInfo
+
+func (m *ListReservationsResponse) GetReservations() []*Reservation {
+ if m != nil {
+ return m.Reservations
+ }
+ return nil
+}
+
+func (m *ListReservationsResponse) GetNextPageToken() string {
+ if m != nil {
+ return m.NextPageToken
+ }
+ return ""
+}
+
+// The request for [ReservationService.GetReservation][google.cloud.bigquery.reservation.v1.ReservationService.GetReservation].
+type GetReservationRequest struct {
+ // Required. Resource name of the reservation to retrieve. E.g.,
+ // projects/myproject/locations/US/reservations/team1-prod
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetReservationRequest) Reset() { *m = GetReservationRequest{} }
+func (m *GetReservationRequest) String() string { return proto.CompactTextString(m) }
+func (*GetReservationRequest) ProtoMessage() {}
+func (*GetReservationRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{5}
+}
+
+func (m *GetReservationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetReservationRequest.Unmarshal(m, b)
+}
+func (m *GetReservationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetReservationRequest.Marshal(b, m, deterministic)
+}
+func (m *GetReservationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetReservationRequest.Merge(m, src)
+}
+func (m *GetReservationRequest) XXX_Size() int {
+ return xxx_messageInfo_GetReservationRequest.Size(m)
+}
+func (m *GetReservationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetReservationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetReservationRequest proto.InternalMessageInfo
+
+func (m *GetReservationRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+// The request for [ReservationService.DeleteReservation][google.cloud.bigquery.reservation.v1.ReservationService.DeleteReservation].
+type DeleteReservationRequest struct {
+ // Required. Resource name of the reservation to retrieve. E.g.,
+ // projects/myproject/locations/US/reservations/team1-prod
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DeleteReservationRequest) Reset() { *m = DeleteReservationRequest{} }
+func (m *DeleteReservationRequest) String() string { return proto.CompactTextString(m) }
+func (*DeleteReservationRequest) ProtoMessage() {}
+func (*DeleteReservationRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{6}
+}
+
+func (m *DeleteReservationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DeleteReservationRequest.Unmarshal(m, b)
+}
+func (m *DeleteReservationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DeleteReservationRequest.Marshal(b, m, deterministic)
+}
+func (m *DeleteReservationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DeleteReservationRequest.Merge(m, src)
+}
+func (m *DeleteReservationRequest) XXX_Size() int {
+ return xxx_messageInfo_DeleteReservationRequest.Size(m)
+}
+func (m *DeleteReservationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_DeleteReservationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DeleteReservationRequest proto.InternalMessageInfo
+
+func (m *DeleteReservationRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+// The request for [ReservationService.UpdateReservation][google.cloud.bigquery.reservation.v1.ReservationService.UpdateReservation].
+type UpdateReservationRequest struct {
+ // Content of the reservation to update.
+ Reservation *Reservation `protobuf:"bytes,1,opt,name=reservation,proto3" json:"reservation,omitempty"`
+ // Standard field mask for the set of fields to be updated.
+ UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *UpdateReservationRequest) Reset() { *m = UpdateReservationRequest{} }
+func (m *UpdateReservationRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateReservationRequest) ProtoMessage() {}
+func (*UpdateReservationRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{7}
+}
+
+func (m *UpdateReservationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateReservationRequest.Unmarshal(m, b)
+}
+func (m *UpdateReservationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateReservationRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateReservationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateReservationRequest.Merge(m, src)
+}
+func (m *UpdateReservationRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateReservationRequest.Size(m)
+}
+func (m *UpdateReservationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateReservationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateReservationRequest proto.InternalMessageInfo
+
+func (m *UpdateReservationRequest) GetReservation() *Reservation {
+ if m != nil {
+ return m.Reservation
+ }
+ return nil
+}
+
+func (m *UpdateReservationRequest) GetUpdateMask() *field_mask.FieldMask {
+ if m != nil {
+ return m.UpdateMask
+ }
+ return nil
+}
+
+// The request for [ReservationService.ListCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.ListCapacityCommitments].
+type ListCapacityCommitmentsRequest struct {
+ // Required. Resource name of the parent reservation. E.g.,
+ // projects/myproject/locations/US
+ Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
+ // The maximum number of items to return.
+ PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
+ // The next_page_token value returned from a previous List request, if any.
+ PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *ListCapacityCommitmentsRequest) Reset() { *m = ListCapacityCommitmentsRequest{} }
+func (m *ListCapacityCommitmentsRequest) String() string { return proto.CompactTextString(m) }
+func (*ListCapacityCommitmentsRequest) ProtoMessage() {}
+func (*ListCapacityCommitmentsRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{8}
+}
+
+func (m *ListCapacityCommitmentsRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ListCapacityCommitmentsRequest.Unmarshal(m, b)
+}
+func (m *ListCapacityCommitmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ListCapacityCommitmentsRequest.Marshal(b, m, deterministic)
+}
+func (m *ListCapacityCommitmentsRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ListCapacityCommitmentsRequest.Merge(m, src)
+}
+func (m *ListCapacityCommitmentsRequest) XXX_Size() int {
+ return xxx_messageInfo_ListCapacityCommitmentsRequest.Size(m)
+}
+func (m *ListCapacityCommitmentsRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ListCapacityCommitmentsRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ListCapacityCommitmentsRequest proto.InternalMessageInfo
+
+func (m *ListCapacityCommitmentsRequest) GetParent() string {
+ if m != nil {
+ return m.Parent
+ }
+ return ""
+}
+
+func (m *ListCapacityCommitmentsRequest) GetPageSize() int32 {
+ if m != nil {
+ return m.PageSize
+ }
+ return 0
+}
+
+func (m *ListCapacityCommitmentsRequest) GetPageToken() string {
+ if m != nil {
+ return m.PageToken
+ }
+ return ""
+}
+
+// The response for [ReservationService.ListCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.ListCapacityCommitments].
+type ListCapacityCommitmentsResponse struct {
+ // List of capacity commitments visible to the user.
+ CapacityCommitments []*CapacityCommitment `protobuf:"bytes,1,rep,name=capacity_commitments,json=capacityCommitments,proto3" json:"capacity_commitments,omitempty"`
+ // Token to retrieve the next page of results, or empty if there are no
+ // more results in the list.
+ NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *ListCapacityCommitmentsResponse) Reset() { *m = ListCapacityCommitmentsResponse{} }
+func (m *ListCapacityCommitmentsResponse) String() string { return proto.CompactTextString(m) }
+func (*ListCapacityCommitmentsResponse) ProtoMessage() {}
+func (*ListCapacityCommitmentsResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{9}
+}
+
+func (m *ListCapacityCommitmentsResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ListCapacityCommitmentsResponse.Unmarshal(m, b)
+}
+func (m *ListCapacityCommitmentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ListCapacityCommitmentsResponse.Marshal(b, m, deterministic)
+}
+func (m *ListCapacityCommitmentsResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ListCapacityCommitmentsResponse.Merge(m, src)
+}
+func (m *ListCapacityCommitmentsResponse) XXX_Size() int {
+ return xxx_messageInfo_ListCapacityCommitmentsResponse.Size(m)
+}
+func (m *ListCapacityCommitmentsResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ListCapacityCommitmentsResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ListCapacityCommitmentsResponse proto.InternalMessageInfo
+
+func (m *ListCapacityCommitmentsResponse) GetCapacityCommitments() []*CapacityCommitment {
+ if m != nil {
+ return m.CapacityCommitments
+ }
+ return nil
+}
+
+func (m *ListCapacityCommitmentsResponse) GetNextPageToken() string {
+ if m != nil {
+ return m.NextPageToken
+ }
+ return ""
+}
+
+// The request for [ReservationService.GetCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.GetCapacityCommitment].
+type GetCapacityCommitmentRequest struct {
+ // Required. Resource name of the capacity commitment to retrieve. E.g.,
+ // projects/myproject/locations/US/capacityCommitments/123
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetCapacityCommitmentRequest) Reset() { *m = GetCapacityCommitmentRequest{} }
+func (m *GetCapacityCommitmentRequest) String() string { return proto.CompactTextString(m) }
+func (*GetCapacityCommitmentRequest) ProtoMessage() {}
+func (*GetCapacityCommitmentRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{10}
+}
+
+func (m *GetCapacityCommitmentRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetCapacityCommitmentRequest.Unmarshal(m, b)
+}
+func (m *GetCapacityCommitmentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetCapacityCommitmentRequest.Marshal(b, m, deterministic)
+}
+func (m *GetCapacityCommitmentRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetCapacityCommitmentRequest.Merge(m, src)
+}
+func (m *GetCapacityCommitmentRequest) XXX_Size() int {
+ return xxx_messageInfo_GetCapacityCommitmentRequest.Size(m)
+}
+func (m *GetCapacityCommitmentRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetCapacityCommitmentRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetCapacityCommitmentRequest proto.InternalMessageInfo
+
+func (m *GetCapacityCommitmentRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+// The request for [ReservationService.DeleteCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.DeleteCapacityCommitment].
+type DeleteCapacityCommitmentRequest struct {
+ // Required. Resource name of the capacity commitment to delete. E.g.,
+ // projects/myproject/locations/US/capacityCommitments/123
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DeleteCapacityCommitmentRequest) Reset() { *m = DeleteCapacityCommitmentRequest{} }
+func (m *DeleteCapacityCommitmentRequest) String() string { return proto.CompactTextString(m) }
+func (*DeleteCapacityCommitmentRequest) ProtoMessage() {}
+func (*DeleteCapacityCommitmentRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{11}
+}
+
+func (m *DeleteCapacityCommitmentRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DeleteCapacityCommitmentRequest.Unmarshal(m, b)
+}
+func (m *DeleteCapacityCommitmentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DeleteCapacityCommitmentRequest.Marshal(b, m, deterministic)
+}
+func (m *DeleteCapacityCommitmentRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DeleteCapacityCommitmentRequest.Merge(m, src)
+}
+func (m *DeleteCapacityCommitmentRequest) XXX_Size() int {
+ return xxx_messageInfo_DeleteCapacityCommitmentRequest.Size(m)
+}
+func (m *DeleteCapacityCommitmentRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_DeleteCapacityCommitmentRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DeleteCapacityCommitmentRequest proto.InternalMessageInfo
+
+func (m *DeleteCapacityCommitmentRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+// The request for [ReservationService.UpdateCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.UpdateCapacityCommitment].
+type UpdateCapacityCommitmentRequest struct {
+ // Content of the capacity commitment to update.
+ CapacityCommitment *CapacityCommitment `protobuf:"bytes,1,opt,name=capacity_commitment,json=capacityCommitment,proto3" json:"capacity_commitment,omitempty"`
+ // Standard field mask for the set of fields to be updated.
+ UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *UpdateCapacityCommitmentRequest) Reset() { *m = UpdateCapacityCommitmentRequest{} }
+func (m *UpdateCapacityCommitmentRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateCapacityCommitmentRequest) ProtoMessage() {}
+func (*UpdateCapacityCommitmentRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{12}
+}
+
+func (m *UpdateCapacityCommitmentRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateCapacityCommitmentRequest.Unmarshal(m, b)
+}
+func (m *UpdateCapacityCommitmentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateCapacityCommitmentRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateCapacityCommitmentRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateCapacityCommitmentRequest.Merge(m, src)
+}
+func (m *UpdateCapacityCommitmentRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateCapacityCommitmentRequest.Size(m)
+}
+func (m *UpdateCapacityCommitmentRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateCapacityCommitmentRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateCapacityCommitmentRequest proto.InternalMessageInfo
+
+func (m *UpdateCapacityCommitmentRequest) GetCapacityCommitment() *CapacityCommitment {
+ if m != nil {
+ return m.CapacityCommitment
+ }
+ return nil
+}
+
+func (m *UpdateCapacityCommitmentRequest) GetUpdateMask() *field_mask.FieldMask {
+ if m != nil {
+ return m.UpdateMask
+ }
+ return nil
+}
+
+// The request for [ReservationService.SplitCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.SplitCapacityCommitment].
+type SplitCapacityCommitmentRequest struct {
+ // Required. The resource name e.g.,:
+ // projects/myproject/locations/US/capacityCommitments/123
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ // Number of slots in the capacity commitment after the split.
+ SlotCount int64 `protobuf:"varint,2,opt,name=slot_count,json=slotCount,proto3" json:"slot_count,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SplitCapacityCommitmentRequest) Reset() { *m = SplitCapacityCommitmentRequest{} }
+func (m *SplitCapacityCommitmentRequest) String() string { return proto.CompactTextString(m) }
+func (*SplitCapacityCommitmentRequest) ProtoMessage() {}
+func (*SplitCapacityCommitmentRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{13}
+}
+
+func (m *SplitCapacityCommitmentRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SplitCapacityCommitmentRequest.Unmarshal(m, b)
+}
+func (m *SplitCapacityCommitmentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SplitCapacityCommitmentRequest.Marshal(b, m, deterministic)
+}
+func (m *SplitCapacityCommitmentRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SplitCapacityCommitmentRequest.Merge(m, src)
+}
+func (m *SplitCapacityCommitmentRequest) XXX_Size() int {
+ return xxx_messageInfo_SplitCapacityCommitmentRequest.Size(m)
+}
+func (m *SplitCapacityCommitmentRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_SplitCapacityCommitmentRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SplitCapacityCommitmentRequest proto.InternalMessageInfo
+
+func (m *SplitCapacityCommitmentRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *SplitCapacityCommitmentRequest) GetSlotCount() int64 {
+ if m != nil {
+ return m.SlotCount
+ }
+ return 0
+}
+
+// The response for [ReservationService.SplitCapacityCommitment][google.cloud.bigquery.reservation.v1.ReservationService.SplitCapacityCommitment].
+type SplitCapacityCommitmentResponse struct {
+ // First capacity commitment, result of a split.
+ First *CapacityCommitment `protobuf:"bytes,1,opt,name=first,proto3" json:"first,omitempty"`
+ // Second capacity commitment, result of a split.
+ Second *CapacityCommitment `protobuf:"bytes,2,opt,name=second,proto3" json:"second,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SplitCapacityCommitmentResponse) Reset() { *m = SplitCapacityCommitmentResponse{} }
+func (m *SplitCapacityCommitmentResponse) String() string { return proto.CompactTextString(m) }
+func (*SplitCapacityCommitmentResponse) ProtoMessage() {}
+func (*SplitCapacityCommitmentResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{14}
+}
+
+func (m *SplitCapacityCommitmentResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SplitCapacityCommitmentResponse.Unmarshal(m, b)
+}
+func (m *SplitCapacityCommitmentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SplitCapacityCommitmentResponse.Marshal(b, m, deterministic)
+}
+func (m *SplitCapacityCommitmentResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SplitCapacityCommitmentResponse.Merge(m, src)
+}
+func (m *SplitCapacityCommitmentResponse) XXX_Size() int {
+ return xxx_messageInfo_SplitCapacityCommitmentResponse.Size(m)
+}
+func (m *SplitCapacityCommitmentResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_SplitCapacityCommitmentResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SplitCapacityCommitmentResponse proto.InternalMessageInfo
+
+func (m *SplitCapacityCommitmentResponse) GetFirst() *CapacityCommitment {
+ if m != nil {
+ return m.First
+ }
+ return nil
+}
+
+func (m *SplitCapacityCommitmentResponse) GetSecond() *CapacityCommitment {
+ if m != nil {
+ return m.Second
+ }
+ return nil
+}
+
+// The request for [ReservationService.MergeCapacityCommitments][google.cloud.bigquery.reservation.v1.ReservationService.MergeCapacityCommitments].
+type MergeCapacityCommitmentsRequest struct {
+ // Parent resource that identifies admin project and location e.g.,
+ // projects/myproject/locations/us
+ Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
+ // Ids of capacity commitments to merge.
+ // These capacity commitments must exist under admin project and location
+ // specified in the parent.
+ CapacityCommitmentIds []string `protobuf:"bytes,2,rep,name=capacity_commitment_ids,json=capacityCommitmentIds,proto3" json:"capacity_commitment_ids,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *MergeCapacityCommitmentsRequest) Reset() { *m = MergeCapacityCommitmentsRequest{} }
+func (m *MergeCapacityCommitmentsRequest) String() string { return proto.CompactTextString(m) }
+func (*MergeCapacityCommitmentsRequest) ProtoMessage() {}
+func (*MergeCapacityCommitmentsRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{15}
+}
+
+func (m *MergeCapacityCommitmentsRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MergeCapacityCommitmentsRequest.Unmarshal(m, b)
+}
+func (m *MergeCapacityCommitmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MergeCapacityCommitmentsRequest.Marshal(b, m, deterministic)
+}
+func (m *MergeCapacityCommitmentsRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MergeCapacityCommitmentsRequest.Merge(m, src)
+}
+func (m *MergeCapacityCommitmentsRequest) XXX_Size() int {
+ return xxx_messageInfo_MergeCapacityCommitmentsRequest.Size(m)
+}
+func (m *MergeCapacityCommitmentsRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_MergeCapacityCommitmentsRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MergeCapacityCommitmentsRequest proto.InternalMessageInfo
+
+func (m *MergeCapacityCommitmentsRequest) GetParent() string {
+ if m != nil {
+ return m.Parent
+ }
+ return ""
+}
+
+func (m *MergeCapacityCommitmentsRequest) GetCapacityCommitmentIds() []string {
+ if m != nil {
+ return m.CapacityCommitmentIds
+ }
+ return nil
+}
+
+// A Assignment allows a project to submit jobs
+// of a certain type using slots from the specified reservation.
+type Assignment struct {
+ // Output only. Name of the resource. E.g.:
+ // projects/myproject/locations/US/reservations/team1-prod/assignments/123.
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ // The resource which will use the reservation. E.g.
+ // projects/myproject, folders/123, organizations/456.
+ Assignee string `protobuf:"bytes,4,opt,name=assignee,proto3" json:"assignee,omitempty"`
+ // Which type of jobs will use the reservation.
+ JobType Assignment_JobType `protobuf:"varint,3,opt,name=job_type,json=jobType,proto3,enum=google.cloud.bigquery.reservation.v1.Assignment_JobType" json:"job_type,omitempty"`
+ // Output only. State of the assignment.
+ State Assignment_State `protobuf:"varint,6,opt,name=state,proto3,enum=google.cloud.bigquery.reservation.v1.Assignment_State" json:"state,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *Assignment) Reset() { *m = Assignment{} }
+func (m *Assignment) String() string { return proto.CompactTextString(m) }
+func (*Assignment) ProtoMessage() {}
+func (*Assignment) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{16}
+}
+
+func (m *Assignment) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Assignment.Unmarshal(m, b)
+}
+func (m *Assignment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Assignment.Marshal(b, m, deterministic)
+}
+func (m *Assignment) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Assignment.Merge(m, src)
+}
+func (m *Assignment) XXX_Size() int {
+ return xxx_messageInfo_Assignment.Size(m)
+}
+func (m *Assignment) XXX_DiscardUnknown() {
+ xxx_messageInfo_Assignment.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Assignment proto.InternalMessageInfo
+
+func (m *Assignment) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *Assignment) GetAssignee() string {
+ if m != nil {
+ return m.Assignee
+ }
+ return ""
+}
+
+func (m *Assignment) GetJobType() Assignment_JobType {
+ if m != nil {
+ return m.JobType
+ }
+ return Assignment_JOB_TYPE_UNSPECIFIED
+}
+
+func (m *Assignment) GetState() Assignment_State {
+ if m != nil {
+ return m.State
+ }
+ return Assignment_STATE_UNSPECIFIED
+}
+
+// The request for [ReservationService.CreateAssignment][google.cloud.bigquery.reservation.v1.ReservationService.CreateAssignment].
+// Note: "bigquery.reservationAssignments.create" permission is required on the
+// related assignee.
+type CreateAssignmentRequest struct {
+ // Required. The parent resource name of the assignment
+ // E.g.: projects/myproject/locations/US/reservations/team1-prod
+ Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
+ // Assignment resource to create.
+ Assignment *Assignment `protobuf:"bytes,2,opt,name=assignment,proto3" json:"assignment,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *CreateAssignmentRequest) Reset() { *m = CreateAssignmentRequest{} }
+func (m *CreateAssignmentRequest) String() string { return proto.CompactTextString(m) }
+func (*CreateAssignmentRequest) ProtoMessage() {}
+func (*CreateAssignmentRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{17}
+}
+
+func (m *CreateAssignmentRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CreateAssignmentRequest.Unmarshal(m, b)
+}
+func (m *CreateAssignmentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CreateAssignmentRequest.Marshal(b, m, deterministic)
+}
+func (m *CreateAssignmentRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CreateAssignmentRequest.Merge(m, src)
+}
+func (m *CreateAssignmentRequest) XXX_Size() int {
+ return xxx_messageInfo_CreateAssignmentRequest.Size(m)
+}
+func (m *CreateAssignmentRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_CreateAssignmentRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CreateAssignmentRequest proto.InternalMessageInfo
+
+func (m *CreateAssignmentRequest) GetParent() string {
+ if m != nil {
+ return m.Parent
+ }
+ return ""
+}
+
+func (m *CreateAssignmentRequest) GetAssignment() *Assignment {
+ if m != nil {
+ return m.Assignment
+ }
+ return nil
+}
+
+// The request for [ReservationService.ListAssignments][google.cloud.bigquery.reservation.v1.ReservationService.ListAssignments].
+type ListAssignmentsRequest struct {
+ // Required. The parent resource name e.g.:
+ // projects/myproject/locations/US/reservations/team1-prod
+ // Or:
+ // projects/myproject/locations/US/reservations/-
+ Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
+ // The maximum number of items to return.
+ PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
+ // The next_page_token value returned from a previous List request, if any.
+ PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *ListAssignmentsRequest) Reset() { *m = ListAssignmentsRequest{} }
+func (m *ListAssignmentsRequest) String() string { return proto.CompactTextString(m) }
+func (*ListAssignmentsRequest) ProtoMessage() {}
+func (*ListAssignmentsRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{18}
+}
+
+func (m *ListAssignmentsRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ListAssignmentsRequest.Unmarshal(m, b)
+}
+func (m *ListAssignmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ListAssignmentsRequest.Marshal(b, m, deterministic)
+}
+func (m *ListAssignmentsRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ListAssignmentsRequest.Merge(m, src)
+}
+func (m *ListAssignmentsRequest) XXX_Size() int {
+ return xxx_messageInfo_ListAssignmentsRequest.Size(m)
+}
+func (m *ListAssignmentsRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ListAssignmentsRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ListAssignmentsRequest proto.InternalMessageInfo
+
+func (m *ListAssignmentsRequest) GetParent() string {
+ if m != nil {
+ return m.Parent
+ }
+ return ""
+}
+
+func (m *ListAssignmentsRequest) GetPageSize() int32 {
+ if m != nil {
+ return m.PageSize
+ }
+ return 0
+}
+
+func (m *ListAssignmentsRequest) GetPageToken() string {
+ if m != nil {
+ return m.PageToken
+ }
+ return ""
+}
+
+// The response for [ReservationService.ListAssignments][google.cloud.bigquery.reservation.v1.ReservationService.ListAssignments].
+type ListAssignmentsResponse struct {
+ // List of assignments visible to the user.
+ Assignments []*Assignment `protobuf:"bytes,1,rep,name=assignments,proto3" json:"assignments,omitempty"`
+ // Token to retrieve the next page of results, or empty if there are no
+ // more results in the list.
+ NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *ListAssignmentsResponse) Reset() { *m = ListAssignmentsResponse{} }
+func (m *ListAssignmentsResponse) String() string { return proto.CompactTextString(m) }
+func (*ListAssignmentsResponse) ProtoMessage() {}
+func (*ListAssignmentsResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{19}
+}
+
+func (m *ListAssignmentsResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ListAssignmentsResponse.Unmarshal(m, b)
+}
+func (m *ListAssignmentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ListAssignmentsResponse.Marshal(b, m, deterministic)
+}
+func (m *ListAssignmentsResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ListAssignmentsResponse.Merge(m, src)
+}
+func (m *ListAssignmentsResponse) XXX_Size() int {
+ return xxx_messageInfo_ListAssignmentsResponse.Size(m)
+}
+func (m *ListAssignmentsResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ListAssignmentsResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ListAssignmentsResponse proto.InternalMessageInfo
+
+func (m *ListAssignmentsResponse) GetAssignments() []*Assignment {
+ if m != nil {
+ return m.Assignments
+ }
+ return nil
+}
+
+func (m *ListAssignmentsResponse) GetNextPageToken() string {
+ if m != nil {
+ return m.NextPageToken
+ }
+ return ""
+}
+
+// The request for [ReservationService.DeleteAssignment][google.cloud.bigquery.reservation.v1.ReservationService.DeleteAssignment].
+// Note: "bigquery.reservationAssignments.delete" permission is required on the
+// related assignee.
+type DeleteAssignmentRequest struct {
+ // Required. Name of the resource, e.g.:
+ // projects/myproject/locations/US/reservations/team1-prod/assignments/123
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *DeleteAssignmentRequest) Reset() { *m = DeleteAssignmentRequest{} }
+func (m *DeleteAssignmentRequest) String() string { return proto.CompactTextString(m) }
+func (*DeleteAssignmentRequest) ProtoMessage() {}
+func (*DeleteAssignmentRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{20}
+}
+
+func (m *DeleteAssignmentRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_DeleteAssignmentRequest.Unmarshal(m, b)
+}
+func (m *DeleteAssignmentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_DeleteAssignmentRequest.Marshal(b, m, deterministic)
+}
+func (m *DeleteAssignmentRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_DeleteAssignmentRequest.Merge(m, src)
+}
+func (m *DeleteAssignmentRequest) XXX_Size() int {
+ return xxx_messageInfo_DeleteAssignmentRequest.Size(m)
+}
+func (m *DeleteAssignmentRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_DeleteAssignmentRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_DeleteAssignmentRequest proto.InternalMessageInfo
+
+func (m *DeleteAssignmentRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+// The request for
+// [ReservationService.SearchAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAssignments].
+// Note: "bigquery.reservationAssignments.search" permission is required on the
+// related assignee.
+type SearchAssignmentsRequest struct {
+ // Required. The resource name of the admin project(containing project and location),
+ // e.g.:
+ // "projects/myproject/locations/US".
+ Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
+ // Please specify resource name as assignee in the query.
+ // e.g., "assignee=projects/myproject"
+ // "assignee=folders/123"
+ // "assignee=organizations/456"
+ Query string `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
+ // The maximum number of items to return.
+ PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
+ // The next_page_token value returned from a previous List request, if any.
+ PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SearchAssignmentsRequest) Reset() { *m = SearchAssignmentsRequest{} }
+func (m *SearchAssignmentsRequest) String() string { return proto.CompactTextString(m) }
+func (*SearchAssignmentsRequest) ProtoMessage() {}
+func (*SearchAssignmentsRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{21}
+}
+
+func (m *SearchAssignmentsRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SearchAssignmentsRequest.Unmarshal(m, b)
+}
+func (m *SearchAssignmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SearchAssignmentsRequest.Marshal(b, m, deterministic)
+}
+func (m *SearchAssignmentsRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SearchAssignmentsRequest.Merge(m, src)
+}
+func (m *SearchAssignmentsRequest) XXX_Size() int {
+ return xxx_messageInfo_SearchAssignmentsRequest.Size(m)
+}
+func (m *SearchAssignmentsRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_SearchAssignmentsRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SearchAssignmentsRequest proto.InternalMessageInfo
+
+func (m *SearchAssignmentsRequest) GetParent() string {
+ if m != nil {
+ return m.Parent
+ }
+ return ""
+}
+
+func (m *SearchAssignmentsRequest) GetQuery() string {
+ if m != nil {
+ return m.Query
+ }
+ return ""
+}
+
+func (m *SearchAssignmentsRequest) GetPageSize() int32 {
+ if m != nil {
+ return m.PageSize
+ }
+ return 0
+}
+
+func (m *SearchAssignmentsRequest) GetPageToken() string {
+ if m != nil {
+ return m.PageToken
+ }
+ return ""
+}
+
+// The response for [ReservationService.SearchAssignments][google.cloud.bigquery.reservation.v1.ReservationService.SearchAssignments].
+type SearchAssignmentsResponse struct {
+ // List of assignments visible to the user.
+ Assignments []*Assignment `protobuf:"bytes,1,rep,name=assignments,proto3" json:"assignments,omitempty"`
+ // Token to retrieve the next page of results, or empty if there are no
+ // more results in the list.
+ NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *SearchAssignmentsResponse) Reset() { *m = SearchAssignmentsResponse{} }
+func (m *SearchAssignmentsResponse) String() string { return proto.CompactTextString(m) }
+func (*SearchAssignmentsResponse) ProtoMessage() {}
+func (*SearchAssignmentsResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{22}
+}
+
+func (m *SearchAssignmentsResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SearchAssignmentsResponse.Unmarshal(m, b)
+}
+func (m *SearchAssignmentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SearchAssignmentsResponse.Marshal(b, m, deterministic)
+}
+func (m *SearchAssignmentsResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SearchAssignmentsResponse.Merge(m, src)
+}
+func (m *SearchAssignmentsResponse) XXX_Size() int {
+ return xxx_messageInfo_SearchAssignmentsResponse.Size(m)
+}
+func (m *SearchAssignmentsResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_SearchAssignmentsResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SearchAssignmentsResponse proto.InternalMessageInfo
+
+func (m *SearchAssignmentsResponse) GetAssignments() []*Assignment {
+ if m != nil {
+ return m.Assignments
+ }
+ return nil
+}
+
+func (m *SearchAssignmentsResponse) GetNextPageToken() string {
+ if m != nil {
+ return m.NextPageToken
+ }
+ return ""
+}
+
+// The request for
+// [ReservationService.MoveAssignment][google.cloud.bigquery.reservation.v1.ReservationService.MoveAssignment].
+// Note: "bigquery.reservationAssignments.create" permission is required on the
+// destination_id. Note: "bigquery.reservationAssignments.create" and
+// "bigquery.reservationAssignments.delete" permission is required on the
+// related assignee.
+type MoveAssignmentRequest struct {
+ // Required. The resource name of the assignment,
+ // e.g.:
+ // projects/myproject/locations/US/reservations/team1-prod/assignments/123
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ // The new reservation ID, e.g.:
+ // projects/myotherproject/locations/US/reservations/team2-prod
+ DestinationId string `protobuf:"bytes,3,opt,name=destination_id,json=destinationId,proto3" json:"destination_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *MoveAssignmentRequest) Reset() { *m = MoveAssignmentRequest{} }
+func (m *MoveAssignmentRequest) String() string { return proto.CompactTextString(m) }
+func (*MoveAssignmentRequest) ProtoMessage() {}
+func (*MoveAssignmentRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{23}
+}
+
+func (m *MoveAssignmentRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MoveAssignmentRequest.Unmarshal(m, b)
+}
+func (m *MoveAssignmentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MoveAssignmentRequest.Marshal(b, m, deterministic)
+}
+func (m *MoveAssignmentRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MoveAssignmentRequest.Merge(m, src)
+}
+func (m *MoveAssignmentRequest) XXX_Size() int {
+ return xxx_messageInfo_MoveAssignmentRequest.Size(m)
+}
+func (m *MoveAssignmentRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_MoveAssignmentRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MoveAssignmentRequest proto.InternalMessageInfo
+
+func (m *MoveAssignmentRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *MoveAssignmentRequest) GetDestinationId() string {
+ if m != nil {
+ return m.DestinationId
+ }
+ return ""
+}
+
+// Represents a BI Reservation.
+type BiReservation struct {
+ // The resource name of the singleton BI reservation.
+ // Reservation names have the form
+ // `projects/{project_id}/locations/{location_id}/bireservation`.
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ // Output only. The last update timestamp of a reservation.
+ UpdateTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
+ // Size of a reservation, in bytes.
+ Size int64 `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *BiReservation) Reset() { *m = BiReservation{} }
+func (m *BiReservation) String() string { return proto.CompactTextString(m) }
+func (*BiReservation) ProtoMessage() {}
+func (*BiReservation) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{24}
+}
+
+func (m *BiReservation) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_BiReservation.Unmarshal(m, b)
+}
+func (m *BiReservation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_BiReservation.Marshal(b, m, deterministic)
+}
+func (m *BiReservation) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_BiReservation.Merge(m, src)
+}
+func (m *BiReservation) XXX_Size() int {
+ return xxx_messageInfo_BiReservation.Size(m)
+}
+func (m *BiReservation) XXX_DiscardUnknown() {
+ xxx_messageInfo_BiReservation.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_BiReservation proto.InternalMessageInfo
+
+func (m *BiReservation) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *BiReservation) GetUpdateTime() *timestamp.Timestamp {
+ if m != nil {
+ return m.UpdateTime
+ }
+ return nil
+}
+
+func (m *BiReservation) GetSize() int64 {
+ if m != nil {
+ return m.Size
+ }
+ return 0
+}
+
+// A request to get a singleton BI reservation.
+type GetBiReservationRequest struct {
+ // Required. Name of the requested reservation, for example:
+ // `projects/{project_id}/locations/{location_id}/bireservation`
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetBiReservationRequest) Reset() { *m = GetBiReservationRequest{} }
+func (m *GetBiReservationRequest) String() string { return proto.CompactTextString(m) }
+func (*GetBiReservationRequest) ProtoMessage() {}
+func (*GetBiReservationRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{25}
+}
+
+func (m *GetBiReservationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetBiReservationRequest.Unmarshal(m, b)
+}
+func (m *GetBiReservationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetBiReservationRequest.Marshal(b, m, deterministic)
+}
+func (m *GetBiReservationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetBiReservationRequest.Merge(m, src)
+}
+func (m *GetBiReservationRequest) XXX_Size() int {
+ return xxx_messageInfo_GetBiReservationRequest.Size(m)
+}
+func (m *GetBiReservationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetBiReservationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetBiReservationRequest proto.InternalMessageInfo
+
+func (m *GetBiReservationRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+// A request to update a BI reservation.
+type UpdateBiReservationRequest struct {
+ // A reservation to update.
+ BiReservation *BiReservation `protobuf:"bytes,1,opt,name=bi_reservation,json=biReservation,proto3" json:"bi_reservation,omitempty"`
+ // A list of fields to be updated in this request.
+ UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *UpdateBiReservationRequest) Reset() { *m = UpdateBiReservationRequest{} }
+func (m *UpdateBiReservationRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateBiReservationRequest) ProtoMessage() {}
+func (*UpdateBiReservationRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_beef70125ad5a16a, []int{26}
+}
+
+func (m *UpdateBiReservationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateBiReservationRequest.Unmarshal(m, b)
+}
+func (m *UpdateBiReservationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateBiReservationRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateBiReservationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateBiReservationRequest.Merge(m, src)
+}
+func (m *UpdateBiReservationRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateBiReservationRequest.Size(m)
+}
+func (m *UpdateBiReservationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateBiReservationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateBiReservationRequest proto.InternalMessageInfo
+
+func (m *UpdateBiReservationRequest) GetBiReservation() *BiReservation {
+ if m != nil {
+ return m.BiReservation
+ }
+ return nil
+}
+
+func (m *UpdateBiReservationRequest) GetUpdateMask() *field_mask.FieldMask {
+ if m != nil {
+ return m.UpdateMask
+ }
+ return nil
+}
+
+func init() {
+ proto.RegisterEnum("google.cloud.bigquery.reservation.v1.CapacityCommitment_CommitmentPlan", CapacityCommitment_CommitmentPlan_name, CapacityCommitment_CommitmentPlan_value)
+ proto.RegisterEnum("google.cloud.bigquery.reservation.v1.CapacityCommitment_State", CapacityCommitment_State_name, CapacityCommitment_State_value)
+ proto.RegisterEnum("google.cloud.bigquery.reservation.v1.Assignment_JobType", Assignment_JobType_name, Assignment_JobType_value)
+ proto.RegisterEnum("google.cloud.bigquery.reservation.v1.Assignment_State", Assignment_State_name, Assignment_State_value)
+ proto.RegisterType((*Reservation)(nil), "google.cloud.bigquery.reservation.v1.Reservation")
+ proto.RegisterType((*CapacityCommitment)(nil), "google.cloud.bigquery.reservation.v1.CapacityCommitment")
+ proto.RegisterType((*CreateReservationRequest)(nil), "google.cloud.bigquery.reservation.v1.CreateReservationRequest")
+ proto.RegisterType((*ListReservationsRequest)(nil), "google.cloud.bigquery.reservation.v1.ListReservationsRequest")
+ proto.RegisterType((*ListReservationsResponse)(nil), "google.cloud.bigquery.reservation.v1.ListReservationsResponse")
+ proto.RegisterType((*GetReservationRequest)(nil), "google.cloud.bigquery.reservation.v1.GetReservationRequest")
+ proto.RegisterType((*DeleteReservationRequest)(nil), "google.cloud.bigquery.reservation.v1.DeleteReservationRequest")
+ proto.RegisterType((*UpdateReservationRequest)(nil), "google.cloud.bigquery.reservation.v1.UpdateReservationRequest")
+ proto.RegisterType((*ListCapacityCommitmentsRequest)(nil), "google.cloud.bigquery.reservation.v1.ListCapacityCommitmentsRequest")
+ proto.RegisterType((*ListCapacityCommitmentsResponse)(nil), "google.cloud.bigquery.reservation.v1.ListCapacityCommitmentsResponse")
+ proto.RegisterType((*GetCapacityCommitmentRequest)(nil), "google.cloud.bigquery.reservation.v1.GetCapacityCommitmentRequest")
+ proto.RegisterType((*DeleteCapacityCommitmentRequest)(nil), "google.cloud.bigquery.reservation.v1.DeleteCapacityCommitmentRequest")
+ proto.RegisterType((*UpdateCapacityCommitmentRequest)(nil), "google.cloud.bigquery.reservation.v1.UpdateCapacityCommitmentRequest")
+ proto.RegisterType((*SplitCapacityCommitmentRequest)(nil), "google.cloud.bigquery.reservation.v1.SplitCapacityCommitmentRequest")
+ proto.RegisterType((*SplitCapacityCommitmentResponse)(nil), "google.cloud.bigquery.reservation.v1.SplitCapacityCommitmentResponse")
+ proto.RegisterType((*MergeCapacityCommitmentsRequest)(nil), "google.cloud.bigquery.reservation.v1.MergeCapacityCommitmentsRequest")
+ proto.RegisterType((*Assignment)(nil), "google.cloud.bigquery.reservation.v1.Assignment")
+ proto.RegisterType((*CreateAssignmentRequest)(nil), "google.cloud.bigquery.reservation.v1.CreateAssignmentRequest")
+ proto.RegisterType((*ListAssignmentsRequest)(nil), "google.cloud.bigquery.reservation.v1.ListAssignmentsRequest")
+ proto.RegisterType((*ListAssignmentsResponse)(nil), "google.cloud.bigquery.reservation.v1.ListAssignmentsResponse")
+ proto.RegisterType((*DeleteAssignmentRequest)(nil), "google.cloud.bigquery.reservation.v1.DeleteAssignmentRequest")
+ proto.RegisterType((*SearchAssignmentsRequest)(nil), "google.cloud.bigquery.reservation.v1.SearchAssignmentsRequest")
+ proto.RegisterType((*SearchAssignmentsResponse)(nil), "google.cloud.bigquery.reservation.v1.SearchAssignmentsResponse")
+ proto.RegisterType((*MoveAssignmentRequest)(nil), "google.cloud.bigquery.reservation.v1.MoveAssignmentRequest")
+ proto.RegisterType((*BiReservation)(nil), "google.cloud.bigquery.reservation.v1.BiReservation")
+ proto.RegisterType((*GetBiReservationRequest)(nil), "google.cloud.bigquery.reservation.v1.GetBiReservationRequest")
+ proto.RegisterType((*UpdateBiReservationRequest)(nil), "google.cloud.bigquery.reservation.v1.UpdateBiReservationRequest")
+}
+
+func init() {
+ proto.RegisterFile("google/cloud/bigquery/reservation/v1/reservation.proto", fileDescriptor_beef70125ad5a16a)
+}
+
+var fileDescriptor_beef70125ad5a16a = []byte{
+ // 2260 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x5d, 0x6c, 0x1b, 0x59,
+ 0x15, 0xe6, 0xda, 0xf9, 0x3d, 0x69, 0x52, 0xe7, 0xa6, 0xdd, 0x78, 0xdd, 0xa5, 0xc9, 0x0e, 0x3f,
+ 0x8a, 0xac, 0xae, 0xa7, 0xf1, 0xaa, 0xed, 0xe2, 0x36, 0x69, 0x27, 0x89, 0x93, 0xba, 0xeb, 0x38,
+ 0xae, 0xed, 0x00, 0xed, 0x3e, 0x58, 0x63, 0xfb, 0xc6, 0x9d, 0xc6, 0x9e, 0x99, 0xce, 0x8c, 0x13,
+ 0xb2, 0x51, 0x84, 0xd8, 0x07, 0x24, 0x56, 0x08, 0x10, 0x08, 0x21, 0xde, 0x41, 0xe2, 0x61, 0xf7,
+ 0x09, 0x81, 0x10, 0x48, 0x48, 0x08, 0x09, 0x09, 0x1e, 0x81, 0x27, 0x4b, 0x88, 0x15, 0xe2, 0x47,
+ 0xea, 0xbe, 0x80, 0xf6, 0x8d, 0x27, 0x34, 0x77, 0xae, 0xed, 0x19, 0x7b, 0x26, 0x1e, 0x3b, 0xd9,
+ 0xb2, 0x6f, 0x9e, 0xfb, 0x73, 0xee, 0x3d, 0xe7, 0x7c, 0xe7, 0xdc, 0x73, 0x3e, 0x19, 0x6e, 0x56,
+ 0x15, 0xa5, 0x5a, 0x23, 0x7c, 0xb9, 0xa6, 0x34, 0x2a, 0x7c, 0x49, 0xaa, 0x3e, 0x6b, 0x10, 0xed,
+ 0x88, 0xd7, 0x88, 0x4e, 0xb4, 0x03, 0xd1, 0x90, 0x14, 0x99, 0x3f, 0x58, 0xb6, 0x7f, 0xc6, 0x54,
+ 0x4d, 0x31, 0x14, 0xfc, 0x59, 0x6b, 0x5f, 0x8c, 0xee, 0x8b, 0xb5, 0xf6, 0xc5, 0xec, 0x0b, 0x0f,
+ 0x96, 0x23, 0xaf, 0x30, 0xe9, 0xa2, 0x2a, 0xf1, 0xa2, 0x2c, 0x2b, 0x06, 0x9d, 0xd1, 0x2d, 0x19,
+ 0x91, 0x79, 0xdb, 0x6c, 0xb9, 0x26, 0x11, 0xd9, 0x60, 0x13, 0x0b, 0xb6, 0x89, 0x3d, 0x89, 0xd4,
+ 0x2a, 0xc5, 0x12, 0x79, 0x22, 0x1e, 0x48, 0x8a, 0xc6, 0x16, 0xbc, 0x6c, 0x5b, 0xa0, 0x11, 0x5d,
+ 0x69, 0x68, 0x65, 0xc2, 0xa6, 0xae, 0xb0, 0x29, 0xfa, 0x55, 0x6a, 0xec, 0xf1, 0xa4, 0xae, 0x1a,
+ 0x47, 0x6c, 0x72, 0xb1, 0x7b, 0xd2, 0x92, 0x5e, 0x17, 0xf5, 0xfd, 0xae, 0xa3, 0xdb, 0x2b, 0x0c,
+ 0xa9, 0x4e, 0x74, 0x43, 0xac, 0xab, 0x5d, 0x97, 0xd6, 0xd4, 0x32, 0xaf, 0x1b, 0xa2, 0xd1, 0x60,
+ 0xda, 0x70, 0x1f, 0x22, 0x98, 0xca, 0x75, 0xd4, 0xc7, 0x18, 0x46, 0x64, 0xb1, 0x4e, 0xc2, 0x68,
+ 0x11, 0x2d, 0x4d, 0xe6, 0xe8, 0x6f, 0xfc, 0x19, 0x98, 0xd6, 0x6b, 0x8a, 0x51, 0x2c, 0x8b, 0xaa,
+ 0x58, 0x96, 0x8c, 0xa3, 0x70, 0x60, 0x11, 0x2d, 0x05, 0x73, 0x17, 0xcc, 0xc1, 0x75, 0x36, 0x86,
+ 0xa3, 0x30, 0x2b, 0x55, 0x65, 0x45, 0x23, 0x45, 0xa9, 0x52, 0x23, 0x45, 0x73, 0x4e, 0x0f, 0x8f,
+ 0x2c, 0xa2, 0xa5, 0x89, 0xdc, 0x45, 0x6b, 0x22, 0x55, 0xa9, 0x91, 0xbc, 0x39, 0x9c, 0x38, 0x7c,
+ 0x2e, 0x18, 0xd0, 0x36, 0xbf, 0xdd, 0xfa, 0xd6, 0x35, 0x45, 0x55, 0xd2, 0x63, 0x65, 0xa5, 0xce,
+ 0xdb, 0x6f, 0xb6, 0xa6, 0x6a, 0xca, 0x53, 0x52, 0x36, 0x74, 0xfe, 0x98, 0xfd, 0x3a, 0xe1, 0x6b,
+ 0x4a, 0xd9, 0xf2, 0x0d, 0x7f, 0xdc, 0xfa, 0x79, 0x62, 0x77, 0xbb, 0xce, 0x1f, 0xdb, 0xbe, 0x4e,
+ 0xb8, 0xf7, 0xc7, 0x00, 0xb7, 0x6e, 0xbc, 0xae, 0xd4, 0xeb, 0x92, 0x51, 0x27, 0xb2, 0x81, 0xe7,
+ 0xed, 0x4a, 0xaf, 0x05, 0x3f, 0x10, 0x82, 0x4c, 0xf3, 0x4f, 0x03, 0x58, 0x9a, 0x2b, 0x0d, 0xd9,
+ 0x60, 0x6a, 0x4f, 0x52, 0xb5, 0xcd, 0x01, 0xfc, 0x16, 0x8c, 0xa8, 0x35, 0x51, 0x0e, 0x07, 0x17,
+ 0xd1, 0xd2, 0x4c, 0x7c, 0x2b, 0xe6, 0x07, 0x5d, 0xb1, 0xde, 0xf3, 0x63, 0x9d, 0x9f, 0xd9, 0x9a,
+ 0x28, 0xe7, 0xa8, 0x50, 0xfc, 0x08, 0x46, 0x4d, 0x4f, 0x11, 0x6a, 0xc4, 0x99, 0xf8, 0xea, 0xd0,
+ 0xd2, 0xf3, 0xa6, 0x14, 0x4b, 0x2b, 0x4b, 0x22, 0xde, 0x81, 0xb9, 0x72, 0x7b, 0xbe, 0x48, 0xe4,
+ 0x4a, 0xd1, 0xc4, 0x4b, 0x78, 0x74, 0x11, 0x2d, 0x4d, 0xc5, 0x23, 0xad, 0x83, 0x5a, 0x60, 0x8a,
+ 0x15, 0x5a, 0x60, 0xb2, 0x84, 0xcc, 0x76, 0xf6, 0x26, 0xe5, 0x8a, 0x39, 0x89, 0x57, 0x61, 0x66,
+ 0x4f, 0x94, 0x6a, 0x0d, 0x8d, 0x14, 0x2d, 0x74, 0x85, 0xc7, 0xa9, 0x2c, 0xdc, 0x92, 0xa5, 0xa9,
+ 0x65, 0x7a, 0x8f, 0x86, 0x6e, 0xc9, 0x98, 0x66, 0xcb, 0xad, 0x31, 0xfc, 0x14, 0x2e, 0x68, 0x44,
+ 0x26, 0x87, 0x62, 0xad, 0x48, 0x0d, 0x3a, 0x71, 0xbe, 0x06, 0x9d, 0x62, 0xc2, 0xcd, 0x0f, 0xae,
+ 0x00, 0x33, 0xce, 0x69, 0xbc, 0x00, 0x57, 0xd6, 0x77, 0xb6, 0xb7, 0x53, 0x85, 0xed, 0x64, 0xa6,
+ 0x50, 0xcc, 0xa6, 0x85, 0x4c, 0x71, 0x37, 0x93, 0xcf, 0x26, 0xd7, 0x53, 0x9b, 0xa9, 0xe4, 0x46,
+ 0xe8, 0x53, 0x78, 0x02, 0x46, 0x36, 0xd3, 0xc9, 0x2f, 0x87, 0x82, 0x78, 0x0a, 0xc6, 0xb7, 0x77,
+ 0x32, 0x85, 0xfb, 0xe9, 0x47, 0xa1, 0x00, 0x06, 0x18, 0x13, 0x32, 0x99, 0x5d, 0x21, 0x1d, 0x1a,
+ 0xe1, 0xd6, 0x61, 0x94, 0xda, 0x19, 0x5f, 0x86, 0xd9, 0x7c, 0x41, 0x28, 0x24, 0xbb, 0x44, 0x4c,
+ 0xc1, 0x78, 0x36, 0x99, 0xd9, 0x48, 0x65, 0xb6, 0x42, 0x88, 0x6e, 0x5c, 0x2f, 0xa4, 0xbe, 0x98,
+ 0xb4, 0x84, 0x6c, 0x0a, 0xa9, 0x74, 0x72, 0x23, 0x14, 0x4c, 0x7c, 0x0b, 0x3d, 0x17, 0xde, 0x45,
+ 0x70, 0xc3, 0x47, 0x64, 0xb8, 0xa0, 0xf8, 0xa1, 0xdf, 0x00, 0x29, 0xf7, 0xec, 0xd5, 0xf9, 0xe3,
+ 0xd6, 0x60, 0xb1, 0xe3, 0xdd, 0x13, 0xee, 0x9f, 0x08, 0xc2, 0xeb, 0x1a, 0x11, 0x0d, 0x62, 0x8b,
+ 0xc4, 0x1c, 0x79, 0xd6, 0x20, 0xba, 0x81, 0x33, 0x30, 0xa6, 0x8a, 0x1a, 0x91, 0x0d, 0x16, 0x37,
+ 0x37, 0x3f, 0x10, 0x02, 0xff, 0x15, 0xae, 0xe3, 0x01, 0x03, 0x3b, 0xc7, 0xa4, 0xe0, 0xcf, 0xc1,
+ 0x8c, 0x6d, 0x47, 0x51, 0xaa, 0xd0, 0x80, 0x9b, 0xcc, 0x4d, 0xdb, 0x46, 0x53, 0x15, 0x9c, 0x87,
+ 0x29, 0xdb, 0x00, 0x8d, 0xbd, 0xa9, 0xf8, 0xb2, 0x3f, 0xa8, 0xd8, 0x8f, 0xb5, 0x4b, 0xe1, 0x7e,
+ 0x8c, 0x60, 0x3e, 0x2d, 0xe9, 0x86, 0x6d, 0x81, 0xfe, 0x71, 0xe9, 0x79, 0x05, 0x26, 0x55, 0xb1,
+ 0x4a, 0x8a, 0xba, 0xf4, 0x36, 0xa1, 0x2a, 0x8e, 0xe6, 0x26, 0xcc, 0x81, 0xbc, 0xf4, 0x36, 0xcd,
+ 0x38, 0x74, 0xd2, 0x50, 0xf6, 0x89, 0xa5, 0xdc, 0x64, 0x8e, 0x2e, 0x2f, 0x98, 0x03, 0xdc, 0x0f,
+ 0x11, 0x84, 0x7b, 0xef, 0xa9, 0xab, 0x8a, 0xac, 0x13, 0xbc, 0x6b, 0x46, 0x51, 0x67, 0x3c, 0x8c,
+ 0x16, 0x83, 0xc3, 0x99, 0xc6, 0x21, 0x06, 0x7f, 0x1e, 0x2e, 0xca, 0xe4, 0x2b, 0x46, 0xd1, 0x76,
+ 0x2f, 0xe6, 0x18, 0x73, 0x38, 0xdb, 0xbe, 0x5b, 0x19, 0x2e, 0x6f, 0x11, 0xc3, 0x05, 0x28, 0x0f,
+ 0x1c, 0xe9, 0x95, 0x99, 0x6f, 0xd0, 0xfc, 0x6f, 0x65, 0x64, 0x6e, 0x0f, 0xc2, 0x1b, 0xa4, 0x46,
+ 0x5c, 0x01, 0x79, 0x9e, 0xe7, 0xbc, 0x87, 0x20, 0xbc, 0xab, 0x56, 0xdc, 0x91, 0xdf, 0x05, 0x41,
+ 0x74, 0x1e, 0x10, 0xc4, 0xb7, 0x61, 0xaa, 0x41, 0x0f, 0xa4, 0x0f, 0x3b, 0x35, 0xb1, 0x5b, 0x32,
+ 0xde, 0x34, 0xdf, 0xfe, 0x6d, 0x51, 0xdf, 0xcf, 0x81, 0xb5, 0xdc, 0xfc, 0xcd, 0xfd, 0x14, 0xc1,
+ 0x55, 0x13, 0x17, 0xbd, 0x69, 0xa1, 0x0d, 0xe3, 0xdd, 0x2e, 0x18, 0xaf, 0x50, 0xfb, 0xdc, 0xc2,
+ 0xc3, 0x65, 0x9b, 0x73, 0x41, 0xf3, 0xcf, 0x11, 0x2c, 0x78, 0xde, 0x9a, 0x81, 0x7a, 0x1f, 0x2e,
+ 0xb9, 0xa4, 0xa6, 0x16, 0xb8, 0xdf, 0x18, 0xf6, 0x89, 0xc8, 0xcd, 0xb9, 0x64, 0x41, 0xdf, 0x50,
+ 0x7f, 0x06, 0xaf, 0x6c, 0x11, 0x97, 0x6b, 0xb7, 0x6c, 0xfd, 0xd0, 0x81, 0x44, 0x66, 0xe9, 0x21,
+ 0xf3, 0x3a, 0x03, 0xa4, 0x01, 0x0b, 0x16, 0xf0, 0x5f, 0xe8, 0xa9, 0xbf, 0x47, 0xb0, 0x60, 0x85,
+ 0x81, 0xf7, 0xb1, 0x12, 0xcc, 0xb9, 0x78, 0x88, 0x45, 0xc5, 0xf0, 0x0e, 0xc2, 0xbd, 0x0e, 0x3a,
+ 0x5b, 0x8c, 0x7c, 0x17, 0xc1, 0xd5, 0xbc, 0x5a, 0x93, 0x5e, 0xa8, 0xdf, 0xfa, 0x94, 0x90, 0xdc,
+ 0x6f, 0x11, 0x2c, 0x78, 0x5e, 0x8a, 0x85, 0x40, 0x06, 0x46, 0xf7, 0x24, 0x4d, 0x3f, 0xbb, 0x49,
+ 0x2d, 0x31, 0x38, 0x0b, 0x63, 0x3a, 0x29, 0x2b, 0x72, 0x85, 0x19, 0x70, 0x78, 0x81, 0x4c, 0x0e,
+ 0xf7, 0x3e, 0x82, 0x85, 0x6d, 0xa2, 0x55, 0xc9, 0x29, 0xf9, 0x27, 0xd7, 0x95, 0x7f, 0x12, 0xe7,
+ 0x90, 0x7c, 0x6e, 0xc2, 0xbc, 0x0b, 0xf4, 0x8a, 0x52, 0x45, 0x0f, 0x07, 0x16, 0x83, 0x4b, 0x93,
+ 0xb9, 0xcb, 0xbd, 0x20, 0x4a, 0x55, 0x74, 0xee, 0xa3, 0x20, 0x80, 0xa0, 0xeb, 0x52, 0x55, 0x3e,
+ 0xbd, 0xfe, 0x8f, 0xc0, 0x84, 0x48, 0x97, 0x11, 0xab, 0x0c, 0x9f, 0xcc, 0xb5, 0xbf, 0x71, 0x1e,
+ 0x26, 0x9e, 0x2a, 0xa5, 0xa2, 0x71, 0xa4, 0x12, 0xd6, 0x00, 0xf8, 0xb4, 0x63, 0xe7, 0xe0, 0xd8,
+ 0x03, 0xa5, 0x54, 0x38, 0x52, 0x49, 0x6e, 0xfc, 0xa9, 0xf5, 0x03, 0x3f, 0x6c, 0x15, 0xfd, 0x63,
+ 0x54, 0xe2, 0xcd, 0x81, 0x25, 0xf6, 0x14, 0xfb, 0xdc, 0x1d, 0x18, 0x67, 0xc7, 0xe0, 0x30, 0x5c,
+ 0x7a, 0xb0, 0xb3, 0x56, 0x2c, 0x3c, 0xca, 0x76, 0x97, 0xa7, 0x17, 0x60, 0x22, 0x9b, 0xca, 0x26,
+ 0xd3, 0xa9, 0x4c, 0x32, 0x84, 0xf0, 0x24, 0x8c, 0x3e, 0xdc, 0x4d, 0xe6, 0x1e, 0x85, 0x02, 0xdc,
+ 0xad, 0x21, 0xeb, 0xda, 0xc4, 0x77, 0xd0, 0x73, 0xe1, 0x9b, 0x08, 0x5e, 0xf3, 0xe1, 0x60, 0x9b,
+ 0x27, 0xde, 0x3a, 0x7b, 0x93, 0xc7, 0x8b, 0x6d, 0x71, 0x3a, 0x7f, 0xdc, 0xf9, 0x38, 0xe1, 0x7e,
+ 0x89, 0x60, 0xde, 0xaa, 0x66, 0x3b, 0x27, 0xb6, 0xd0, 0xb9, 0xdd, 0x85, 0xce, 0x1b, 0x34, 0xf6,
+ 0x79, 0x3c, 0xd8, 0xfd, 0xdb, 0xc0, 0xcc, 0x02, 0x74, 0x4e, 0x66, 0x61, 0x76, 0x7d, 0x50, 0x67,
+ 0xe6, 0x6c, 0x32, 0xb8, 0x1f, 0x21, 0x78, 0xc9, 0x7c, 0x2b, 0x3b, 0xd3, 0xfd, 0x0a, 0x54, 0xf8,
+ 0x7f, 0x14, 0xa8, 0xdf, 0x67, 0x85, 0xb4, 0xe3, 0x9a, 0x2c, 0x8f, 0xe5, 0x60, 0xca, 0xe6, 0x1b,
+ 0xf6, 0x82, 0x0f, 0x6e, 0x15, 0xbb, 0x10, 0xdf, 0x2f, 0x76, 0x05, 0xe6, 0xad, 0xe7, 0xb3, 0xd7,
+ 0xf5, 0x29, 0x47, 0xf4, 0x33, 0xc7, 0x0f, 0x08, 0x5c, 0xf6, 0x5c, 0xfe, 0x0a, 0x41, 0x38, 0x4f,
+ 0x44, 0xad, 0xfc, 0xc4, 0xc5, 0x4d, 0xe7, 0x0c, 0xb1, 0x4b, 0x30, 0x4a, 0x77, 0x31, 0x7d, 0xad,
+ 0x0f, 0xa7, 0xef, 0x82, 0xa7, 0xfa, 0x6e, 0xa4, 0xdb, 0x77, 0x3f, 0x40, 0xf0, 0xb2, 0xcb, 0xed,
+ 0x3f, 0x01, 0xde, 0xfb, 0x06, 0x82, 0xcb, 0xdb, 0xca, 0xc1, 0xc7, 0xea, 0x3c, 0xb3, 0xff, 0xac,
+ 0x10, 0xdd, 0x90, 0xe4, 0x76, 0xff, 0x69, 0xa1, 0x7b, 0xda, 0x36, 0x9a, 0xaa, 0x70, 0xff, 0x42,
+ 0x30, 0xbd, 0x26, 0xf5, 0xe3, 0xcc, 0xee, 0xb5, 0x2b, 0x15, 0x4a, 0xad, 0x04, 0xfd, 0x51, 0x2b,
+ 0xac, 0x5c, 0xa1, 0x9c, 0x0a, 0x86, 0x11, 0xea, 0xc4, 0x11, 0x5a, 0x32, 0xd0, 0xdf, 0x89, 0xda,
+ 0x73, 0x41, 0x82, 0xeb, 0x3e, 0x94, 0x73, 0x5e, 0xf0, 0x86, 0xdf, 0xac, 0x5a, 0x92, 0xec, 0x4d,
+ 0x71, 0x15, 0xe6, 0xb7, 0x88, 0xe1, 0x10, 0xd5, 0x32, 0x7b, 0xda, 0x61, 0xf6, 0x37, 0xa8, 0xd9,
+ 0xe3, 0x83, 0xdf, 0x8c, 0x85, 0xcd, 0xcf, 0x10, 0x44, 0xac, 0x2a, 0xd3, 0xf5, 0xb0, 0xc7, 0x30,
+ 0x53, 0x92, 0x8a, 0xbd, 0x1d, 0xd7, 0xeb, 0xfe, 0xc0, 0xe7, 0x94, 0x39, 0x5d, 0x72, 0x98, 0xe6,
+ 0x2c, 0x15, 0x65, 0xfc, 0xd7, 0xaf, 0x02, 0xb6, 0x09, 0xcb, 0x13, 0xed, 0x40, 0x2a, 0x13, 0xfc,
+ 0x1f, 0x04, 0xb3, 0x3d, 0xac, 0x09, 0xf6, 0x4b, 0xe0, 0x79, 0xd0, 0x2d, 0x91, 0xc1, 0xfb, 0x4b,
+ 0x4e, 0x6a, 0x0a, 0xaf, 0x5a, 0xd9, 0xe2, 0x9a, 0x6d, 0xd5, 0x35, 0x27, 0xcb, 0xf2, 0xce, 0x9f,
+ 0xfe, 0xfe, 0xbd, 0xc0, 0x5d, 0xee, 0x3a, 0x7f, 0xb0, 0xcc, 0x1f, 0x5b, 0xab, 0x57, 0xda, 0x78,
+ 0x89, 0xda, 0x70, 0x12, 0x75, 0xbe, 0xba, 0x09, 0x47, 0xf7, 0xfa, 0x67, 0x04, 0xa1, 0x6e, 0x62,
+ 0x02, 0xaf, 0xf8, 0xbb, 0xb2, 0x07, 0xf1, 0x12, 0x59, 0x1d, 0x76, 0xbb, 0x95, 0xb1, 0x38, 0xa1,
+ 0x29, 0xb0, 0x64, 0x49, 0x75, 0x8c, 0xe3, 0x81, 0x75, 0xc4, 0xbf, 0x41, 0x30, 0xe3, 0x24, 0x35,
+ 0xf0, 0x6d, 0x7f, 0xb7, 0x72, 0xa5, 0x42, 0x86, 0x71, 0xe2, 0xdd, 0xa6, 0x40, 0xa3, 0xc4, 0xa1,
+ 0x83, 0x39, 0xe0, 0xa1, 0x81, 0xb3, 0x34, 0x8a, 0x9e, 0xe0, 0xf7, 0x10, 0xcc, 0xf6, 0x70, 0x26,
+ 0x7e, 0xe1, 0xe8, 0x45, 0xb6, 0x44, 0x5e, 0xea, 0x89, 0x91, 0x64, 0x5d, 0x35, 0x8e, 0xba, 0xae,
+ 0x1b, 0x1d, 0xfc, 0xba, 0x1f, 0x21, 0x98, 0xed, 0x61, 0x5e, 0xfc, 0x5e, 0xd7, 0x8b, 0xb2, 0x19,
+ 0xc6, 0xf0, 0xfb, 0x4d, 0x61, 0xde, 0x1e, 0x36, 0xb6, 0x3c, 0x41, 0x95, 0x7b, 0x33, 0x7e, 0x87,
+ 0x2a, 0x67, 0x17, 0x31, 0x80, 0xa2, 0xce, 0xf8, 0xf9, 0x37, 0xab, 0x9b, 0x5c, 0x1a, 0x28, 0xbc,
+ 0xe1, 0x3f, 0x0e, 0xbc, 0xfb, 0xaf, 0x48, 0xf2, 0x8c, 0x52, 0x58, 0x50, 0xdd, 0x77, 0x06, 0xd5,
+ 0x17, 0xf0, 0x2d, 0x3f, 0x41, 0xe5, 0x46, 0xb6, 0xfc, 0x05, 0x51, 0xc2, 0xd0, 0x85, 0xc9, 0x5e,
+ 0xf3, 0x1d, 0x62, 0x9e, 0xad, 0x7c, 0x64, 0xe8, 0xa6, 0x96, 0xdb, 0xb4, 0x23, 0xb8, 0xa5, 0xdf,
+ 0x69, 0x8e, 0x75, 0xe3, 0xd3, 0xa3, 0x27, 0x66, 0xee, 0x08, 0x7b, 0x51, 0x36, 0x38, 0x39, 0x48,
+ 0xf8, 0x79, 0x6b, 0xe9, 0x15, 0x85, 0x4e, 0x1d, 0xa2, 0x43, 0xeb, 0xf0, 0x93, 0x40, 0x8b, 0x06,
+ 0x1d, 0x5e, 0x87, 0x3e, 0xfc, 0xd1, 0x19, 0x3c, 0xf5, 0x2e, 0x6a, 0x0a, 0x0b, 0x2e, 0x04, 0x40,
+ 0x4f, 0xa8, 0x96, 0xe2, 0x6f, 0x52, 0x0b, 0xb8, 0xac, 0x8d, 0x0d, 0x6e, 0x95, 0x84, 0x1b, 0xdf,
+ 0x85, 0xdf, 0x09, 0xc0, 0xbc, 0x07, 0x93, 0xe3, 0x37, 0x82, 0x4f, 0x67, 0xa7, 0xfc, 0x46, 0x70,
+ 0x1f, 0x3a, 0x89, 0x7b, 0xdc, 0x14, 0x2e, 0x9a, 0x4a, 0x5f, 0xeb, 0xf0, 0x52, 0xd4, 0x48, 0x6b,
+ 0xdc, 0xca, 0x90, 0x30, 0x49, 0xe8, 0xe6, 0x91, 0x09, 0x14, 0xc5, 0x5f, 0x0f, 0x40, 0xd8, 0x8b,
+ 0x08, 0xf2, 0x8b, 0x97, 0x3e, 0x44, 0xd2, 0x19, 0xf0, 0x22, 0x35, 0x85, 0xab, 0xac, 0x1e, 0xf2,
+ 0xa0, 0x8d, 0x1c, 0x86, 0x18, 0x3c, 0xa7, 0x25, 0xea, 0xe6, 0xdd, 0x4d, 0x43, 0x7c, 0x88, 0x20,
+ 0xd4, 0xcd, 0x35, 0xf8, 0xad, 0x87, 0x3c, 0x38, 0x8a, 0xc8, 0xc0, 0xcd, 0x16, 0xb7, 0xd7, 0x14,
+ 0x66, 0x99, 0xc2, 0x9d, 0xb6, 0x8b, 0xea, 0x98, 0xe6, 0x56, 0xfb, 0xeb, 0xd8, 0xfd, 0x64, 0xd9,
+ 0xa9, 0x95, 0x84, 0x8d, 0x9c, 0xc0, 0x7f, 0x45, 0x70, 0xb1, 0xab, 0xeb, 0xc7, 0x77, 0xfc, 0xbf,
+ 0x37, 0xbd, 0xcd, 0x72, 0x64, 0x65, 0xc8, 0xdd, 0x0c, 0xe3, 0x3b, 0xce, 0x57, 0xea, 0x1e, 0x3e,
+ 0xa3, 0xb6, 0xf8, 0x17, 0x08, 0x42, 0xdd, 0x04, 0x82, 0x5f, 0x7f, 0x7a, 0x10, 0x0f, 0x9e, 0xc9,
+ 0x7b, 0xdb, 0x9e, 0xbc, 0xef, 0x45, 0x57, 0x07, 0x2c, 0xa1, 0x1c, 0x04, 0x58, 0xf4, 0x04, 0xff,
+ 0x0d, 0xc1, 0x6c, 0x4f, 0x5b, 0xef, 0xb7, 0xa0, 0xf2, 0x62, 0x33, 0x22, 0x77, 0x87, 0xde, 0xcf,
+ 0x5c, 0x94, 0x6e, 0x0a, 0x17, 0x18, 0x36, 0xe9, 0x4e, 0xaa, 0xed, 0x2d, 0x7c, 0xc3, 0x47, 0xe8,
+ 0x25, 0xf4, 0x1e, 0x75, 0xfe, 0x81, 0x60, 0xc6, 0xc9, 0x10, 0xf8, 0x2d, 0xd4, 0x5d, 0x79, 0x85,
+ 0x21, 0x62, 0xad, 0xd2, 0x14, 0xe6, 0x68, 0x5a, 0x75, 0x92, 0x08, 0x54, 0xad, 0xfb, 0xdc, 0xfa,
+ 0xd9, 0x9c, 0x98, 0xa8, 0x2b, 0x07, 0x34, 0xaf, 0xfc, 0x0e, 0x41, 0xa8, 0xbb, 0x29, 0xf7, 0x8b,
+ 0x43, 0x8f, 0x66, 0x3e, 0x32, 0x4c, 0x1f, 0xcd, 0xad, 0xda, 0x41, 0xba, 0x8c, 0xf9, 0xbe, 0xfa,
+ 0x39, 0xfa, 0xee, 0x13, 0xfc, 0xb5, 0x00, 0xcc, 0xb9, 0xf4, 0xfc, 0xf8, 0xde, 0x20, 0x45, 0xc5,
+ 0xf9, 0xa9, 0xa3, 0x37, 0x85, 0x88, 0x93, 0x64, 0xe8, 0x29, 0x22, 0xb2, 0x71, 0x2b, 0x12, 0x9d,
+ 0xcb, 0x62, 0xfe, 0x75, 0x4e, 0x74, 0xd1, 0x18, 0x91, 0xaf, 0xfe, 0x41, 0xe0, 0xfa, 0x53, 0x26,
+ 0x7f, 0x14, 0xbe, 0xf4, 0xc4, 0x30, 0x54, 0x3d, 0xc1, 0xf3, 0x87, 0x87, 0x87, 0xdd, 0x7c, 0x8a,
+ 0xd8, 0x30, 0x9e, 0xb4, 0xff, 0x01, 0x77, 0xad, 0xdf, 0x42, 0x6a, 0x92, 0xd7, 0xd4, 0x9a, 0x68,
+ 0xec, 0x29, 0x5a, 0x7d, 0xed, 0xdb, 0x08, 0x96, 0xca, 0x4a, 0xdd, 0x97, 0xc1, 0xd6, 0x42, 0x36,
+ 0x5d, 0xb2, 0x66, 0xc6, 0xca, 0xa2, 0xc7, 0x3b, 0x6c, 0x67, 0x55, 0xa9, 0x89, 0x72, 0x35, 0xa6,
+ 0x68, 0x55, 0xbe, 0x4a, 0x64, 0x9a, 0xcf, 0xf8, 0xce, 0xf9, 0xa7, 0xff, 0x4f, 0xef, 0xb6, 0xed,
+ 0xb3, 0x34, 0x46, 0xf7, 0xbe, 0xfe, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf7, 0x1e, 0x67, 0xb2,
+ 0xe2, 0x27, 0x00, 0x00,
+}
+
+// Reference imports to suppress errors if they are not otherwise used.
+var _ context.Context
+var _ grpc.ClientConnInterface
+
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the grpc package it is being compiled against.
+const _ = grpc.SupportPackageIsVersion6
+
+// ReservationServiceClient is the client API for ReservationService service.
+//
+// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
+type ReservationServiceClient interface {
+ // Creates a new reservation resource.
+ CreateReservation(ctx context.Context, in *CreateReservationRequest, opts ...grpc.CallOption) (*Reservation, error)
+ // Lists all the reservations for the project in the specified location.
+ ListReservations(ctx context.Context, in *ListReservationsRequest, opts ...grpc.CallOption) (*ListReservationsResponse, error)
+ // Returns information about the reservation.
+ GetReservation(ctx context.Context, in *GetReservationRequest, opts ...grpc.CallOption) (*Reservation, error)
+ // Deletes a reservation.
+ // Returns `google.rpc.Code.FAILED_PRECONDITION` when reservation has
+ // assignments.
+ DeleteReservation(ctx context.Context, in *DeleteReservationRequest, opts ...grpc.CallOption) (*empty.Empty, error)
+ // Updates an existing reservation resource.
+ UpdateReservation(ctx context.Context, in *UpdateReservationRequest, opts ...grpc.CallOption) (*Reservation, error)
+ // Lists all the capacity commitments for the admin project.
+ ListCapacityCommitments(ctx context.Context, in *ListCapacityCommitmentsRequest, opts ...grpc.CallOption) (*ListCapacityCommitmentsResponse, error)
+ // Returns information about the capacity commitment.
+ GetCapacityCommitment(ctx context.Context, in *GetCapacityCommitmentRequest, opts ...grpc.CallOption) (*CapacityCommitment, error)
+ // Deletes a capacity commitment. Attempting to delete capacity commitment
+ // before its commitment_end_time will fail with the error code
+ // `google.rpc.Code.FAILED_PRECONDITION`.
+ DeleteCapacityCommitment(ctx context.Context, in *DeleteCapacityCommitmentRequest, opts ...grpc.CallOption) (*empty.Empty, error)
+ // Updates an existing capacity commitment.
+ //
+ // Only plan and renewal_plan fields can be updated.
+ // Plan can only be changed to a plan of a longer commitment period.
+ // Attempting to change to a plan with shorter commitment period will fail
+ // with the error code `google.rpc.Code.FAILED_PRECONDITION`.
+ UpdateCapacityCommitment(ctx context.Context, in *UpdateCapacityCommitmentRequest, opts ...grpc.CallOption) (*CapacityCommitment, error)
+ // Splits capacity commitment to two commitments of the same plan and
+ // commitment_end_time. A common use case to do that is to perform a downgrade
+ // e.g., in order to downgrade from 10000 slots to 8000, one might split 10000
+ // capacity commitment to 2000 and 8000, change the plan of the first one to
+ // flex and then delete it.
+ SplitCapacityCommitment(ctx context.Context, in *SplitCapacityCommitmentRequest, opts ...grpc.CallOption) (*SplitCapacityCommitmentResponse, error)
+ // Merges capacity commitments of the same plan into one. Resulting capacity
+ // commitment has the longer commitment_end_time out of the two. Attempting to
+ // merge capacity commitments of different plan will fail with the error code
+ // `google.rpc.Code.FAILED_PRECONDITION`.
+ MergeCapacityCommitments(ctx context.Context, in *MergeCapacityCommitmentsRequest, opts ...grpc.CallOption) (*CapacityCommitment, error)
+ // Creates an object which allows the given project to submit jobs
+ // of a certain type using slots from the specified reservation. Currently a
+ // resource (project, folder, organization) can only have one assignment per
+ // {job_type, location}, and that reservation will be used for all jobs of the
+ // matching type. Within the organization, different assignments can be
+ // created on projects, folders or organization level. During query execution,
+ // the assignment is looked up at the project, folder and organization levels
+ // in that order. The first assignment found is applied to the query. When
+ // creating assignments, it does not matter if other assignments exist at
+ // higher levels. E.g: organizationA contains project1, project2. Assignments
+ // for organizationA, project1 and project2 could all be created, mapping to
+ // the same or different reservations.
+ // Returns `google.rpc.Code.PERMISSION_DENIED` if user does not have
+ // 'bigquery.admin' permissions on the project using the reservation
+ // and the project that owns this reservation.
+ // Returns `google.rpc.Code.INVALID_ARGUMENT` when location of the assignment
+ // does not match location of the reservation.
+ CreateAssignment(ctx context.Context, in *CreateAssignmentRequest, opts ...grpc.CallOption) (*Assignment, error)
+ // Lists assignments.
+ // Only explicitly created assignments will be returned. E.g:
+ // organizationA contains project1 and project2. Reservation res1 exists.
+ // CreateAssignment was invoked previously and following assignments were
+ // created explicitly:
+ // <organizationA, res1>
+ // <project1, res1>
+ // Then this API will just return the above two assignments for reservation
+ // res1, and no expansion/merge will happen. Wildcard "-" can be used for
+ // reservations in the request. In that case all assignments belongs to the
+ // specified project and location will be listed. Note
+ // "-" cannot be used for projects nor locations.
+ ListAssignments(ctx context.Context, in *ListAssignmentsRequest, opts ...grpc.CallOption) (*ListAssignmentsResponse, error)
+ // Deletes a assignment. No expansion will happen.
+ // E.g:
+ // organizationA contains project1 and project2. Reservation res1 exists.
+ // CreateAssignment was invoked previously and following assignments were
+ // created explicitly:
+ // <organizationA, res1>
+ // <project1, res1>
+ // Then deletion of <organizationA, res1> won't affect <project1, res1>. After
+ // deletion of <organizationA, res1>, queries from project1 will still use
+ // res1, while queries from project2 will use on-demand mode.
+ DeleteAssignment(ctx context.Context, in *DeleteAssignmentRequest, opts ...grpc.CallOption) (*empty.Empty, error)
+ // Looks up assignments for a specified resource for a particular region.
+ // If the request is about a project:
+ // 1) Assignments created on the project will be returned if they exist.
+ // 2) Otherwise assignments created on the closest ancestor will be
+ // returned. 3) Assignments for different JobTypes will all be returned.
+ // Same logic applies if the request is about a folder.
+ // If the request is about an organization, then assignments created on the
+ // organization will be returned (organization doesn't have ancestors).
+ // Comparing to ListAssignments, there are some behavior
+ // differences:
+ // 1) permission on the assignee will be verified in this API.
+ // 2) Hierarchy lookup (project->folder->organization) happens in this API.
+ // 3) Parent here is projects/*/locations/*, instead of
+ // projects/*/locations/*reservations/*.
+ // Note "-" cannot be used for projects
+ // nor locations.
+ SearchAssignments(ctx context.Context, in *SearchAssignmentsRequest, opts ...grpc.CallOption) (*SearchAssignmentsResponse, error)
+ // Moves a assignment under a new reservation. Customers can do this by
+ // deleting the existing assignment followed by creating another assignment
+ // under the new reservation, but this method provides a transactional way to
+ // do so, to make sure the assignee always has an associated reservation.
+ // Without the method customers might see some queries run on-demand which
+ // might be unexpected.
+ MoveAssignment(ctx context.Context, in *MoveAssignmentRequest, opts ...grpc.CallOption) (*Assignment, error)
+ // Retrieves a BI reservation.
+ GetBiReservation(ctx context.Context, in *GetBiReservationRequest, opts ...grpc.CallOption) (*BiReservation, error)
+ // Updates a BI reservation.
+ // Only fields specified in the field_mask are updated.
+ // Singleton BI reservation always exists with default size 0.
+ // In order to reserve BI capacity it needs to be updated to an amount
+ // greater than 0. In order to release BI capacity reservation size
+ // must be set to 0.
+ UpdateBiReservation(ctx context.Context, in *UpdateBiReservationRequest, opts ...grpc.CallOption) (*BiReservation, error)
+}
+
+type reservationServiceClient struct {
+ cc grpc.ClientConnInterface
+}
+
+func NewReservationServiceClient(cc grpc.ClientConnInterface) ReservationServiceClient {
+ return &reservationServiceClient{cc}
+}
+
+func (c *reservationServiceClient) CreateReservation(ctx context.Context, in *CreateReservationRequest, opts ...grpc.CallOption) (*Reservation, error) {
+ out := new(Reservation)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/CreateReservation", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) ListReservations(ctx context.Context, in *ListReservationsRequest, opts ...grpc.CallOption) (*ListReservationsResponse, error) {
+ out := new(ListReservationsResponse)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/ListReservations", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) GetReservation(ctx context.Context, in *GetReservationRequest, opts ...grpc.CallOption) (*Reservation, error) {
+ out := new(Reservation)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/GetReservation", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) DeleteReservation(ctx context.Context, in *DeleteReservationRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
+ out := new(empty.Empty)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/DeleteReservation", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) UpdateReservation(ctx context.Context, in *UpdateReservationRequest, opts ...grpc.CallOption) (*Reservation, error) {
+ out := new(Reservation)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/UpdateReservation", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) ListCapacityCommitments(ctx context.Context, in *ListCapacityCommitmentsRequest, opts ...grpc.CallOption) (*ListCapacityCommitmentsResponse, error) {
+ out := new(ListCapacityCommitmentsResponse)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/ListCapacityCommitments", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) GetCapacityCommitment(ctx context.Context, in *GetCapacityCommitmentRequest, opts ...grpc.CallOption) (*CapacityCommitment, error) {
+ out := new(CapacityCommitment)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/GetCapacityCommitment", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) DeleteCapacityCommitment(ctx context.Context, in *DeleteCapacityCommitmentRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
+ out := new(empty.Empty)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/DeleteCapacityCommitment", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) UpdateCapacityCommitment(ctx context.Context, in *UpdateCapacityCommitmentRequest, opts ...grpc.CallOption) (*CapacityCommitment, error) {
+ out := new(CapacityCommitment)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/UpdateCapacityCommitment", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) SplitCapacityCommitment(ctx context.Context, in *SplitCapacityCommitmentRequest, opts ...grpc.CallOption) (*SplitCapacityCommitmentResponse, error) {
+ out := new(SplitCapacityCommitmentResponse)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/SplitCapacityCommitment", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) MergeCapacityCommitments(ctx context.Context, in *MergeCapacityCommitmentsRequest, opts ...grpc.CallOption) (*CapacityCommitment, error) {
+ out := new(CapacityCommitment)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/MergeCapacityCommitments", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) CreateAssignment(ctx context.Context, in *CreateAssignmentRequest, opts ...grpc.CallOption) (*Assignment, error) {
+ out := new(Assignment)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/CreateAssignment", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) ListAssignments(ctx context.Context, in *ListAssignmentsRequest, opts ...grpc.CallOption) (*ListAssignmentsResponse, error) {
+ out := new(ListAssignmentsResponse)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/ListAssignments", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) DeleteAssignment(ctx context.Context, in *DeleteAssignmentRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
+ out := new(empty.Empty)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/DeleteAssignment", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) SearchAssignments(ctx context.Context, in *SearchAssignmentsRequest, opts ...grpc.CallOption) (*SearchAssignmentsResponse, error) {
+ out := new(SearchAssignmentsResponse)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/SearchAssignments", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) MoveAssignment(ctx context.Context, in *MoveAssignmentRequest, opts ...grpc.CallOption) (*Assignment, error) {
+ out := new(Assignment)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/MoveAssignment", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) GetBiReservation(ctx context.Context, in *GetBiReservationRequest, opts ...grpc.CallOption) (*BiReservation, error) {
+ out := new(BiReservation)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/GetBiReservation", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *reservationServiceClient) UpdateBiReservation(ctx context.Context, in *UpdateBiReservationRequest, opts ...grpc.CallOption) (*BiReservation, error) {
+ out := new(BiReservation)
+ err := c.cc.Invoke(ctx, "/google.cloud.bigquery.reservation.v1.ReservationService/UpdateBiReservation", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+// ReservationServiceServer is the server API for ReservationService service.
+type ReservationServiceServer interface {
+ // Creates a new reservation resource.
+ CreateReservation(context.Context, *CreateReservationRequest) (*Reservation, error)
+ // Lists all the reservations for the project in the specified location.
+ ListReservations(context.Context, *ListReservationsRequest) (*ListReservationsResponse, error)
+ // Returns information about the reservation.
+ GetReservation(context.Context, *GetReservationRequest) (*Reservation, error)
+ // Deletes a reservation.
+ // Returns `google.rpc.Code.FAILED_PRECONDITION` when reservation has
+ // assignments.
+ DeleteReservation(context.Context, *DeleteReservationRequest) (*empty.Empty, error)
+ // Updates an existing reservation resource.
+ UpdateReservation(context.Context, *UpdateReservationRequest) (*Reservation, error)
+ // Lists all the capacity commitments for the admin project.
+ ListCapacityCommitments(context.Context, *ListCapacityCommitmentsRequest) (*ListCapacityCommitmentsResponse, error)
+ // Returns information about the capacity commitment.
+ GetCapacityCommitment(context.Context, *GetCapacityCommitmentRequest) (*CapacityCommitment, error)
+ // Deletes a capacity commitment. Attempting to delete capacity commitment
+ // before its commitment_end_time will fail with the error code
+ // `google.rpc.Code.FAILED_PRECONDITION`.
+ DeleteCapacityCommitment(context.Context, *DeleteCapacityCommitmentRequest) (*empty.Empty, error)
+ // Updates an existing capacity commitment.
+ //
+ // Only plan and renewal_plan fields can be updated.
+ // Plan can only be changed to a plan of a longer commitment period.
+ // Attempting to change to a plan with shorter commitment period will fail
+ // with the error code `google.rpc.Code.FAILED_PRECONDITION`.
+ UpdateCapacityCommitment(context.Context, *UpdateCapacityCommitmentRequest) (*CapacityCommitment, error)
+ // Splits capacity commitment to two commitments of the same plan and
+ // commitment_end_time. A common use case to do that is to perform a downgrade
+ // e.g., in order to downgrade from 10000 slots to 8000, one might split 10000
+ // capacity commitment to 2000 and 8000, change the plan of the first one to
+ // flex and then delete it.
+ SplitCapacityCommitment(context.Context, *SplitCapacityCommitmentRequest) (*SplitCapacityCommitmentResponse, error)
+ // Merges capacity commitments of the same plan into one. Resulting capacity
+ // commitment has the longer commitment_end_time out of the two. Attempting to
+ // merge capacity commitments of different plan will fail with the error code
+ // `google.rpc.Code.FAILED_PRECONDITION`.
+ MergeCapacityCommitments(context.Context, *MergeCapacityCommitmentsRequest) (*CapacityCommitment, error)
+ // Creates an object which allows the given project to submit jobs
+ // of a certain type using slots from the specified reservation. Currently a
+ // resource (project, folder, organization) can only have one assignment per
+ // {job_type, location}, and that reservation will be used for all jobs of the
+ // matching type. Within the organization, different assignments can be
+ // created on projects, folders or organization level. During query execution,
+ // the assignment is looked up at the project, folder and organization levels
+ // in that order. The first assignment found is applied to the query. When
+ // creating assignments, it does not matter if other assignments exist at
+ // higher levels. E.g: organizationA contains project1, project2. Assignments
+ // for organizationA, project1 and project2 could all be created, mapping to
+ // the same or different reservations.
+ // Returns `google.rpc.Code.PERMISSION_DENIED` if user does not have
+ // 'bigquery.admin' permissions on the project using the reservation
+ // and the project that owns this reservation.
+ // Returns `google.rpc.Code.INVALID_ARGUMENT` when location of the assignment
+ // does not match location of the reservation.
+ CreateAssignment(context.Context, *CreateAssignmentRequest) (*Assignment, error)
+ // Lists assignments.
+ // Only explicitly created assignments will be returned. E.g:
+ // organizationA contains project1 and project2. Reservation res1 exists.
+ // CreateAssignment was invoked previously and following assignments were
+ // created explicitly:
+ // <organizationA, res1>
+ // <project1, res1>
+ // Then this API will just return the above two assignments for reservation
+ // res1, and no expansion/merge will happen. Wildcard "-" can be used for
+ // reservations in the request. In that case all assignments belongs to the
+ // specified project and location will be listed. Note
+ // "-" cannot be used for projects nor locations.
+ ListAssignments(context.Context, *ListAssignmentsRequest) (*ListAssignmentsResponse, error)
+ // Deletes a assignment. No expansion will happen.
+ // E.g:
+ // organizationA contains project1 and project2. Reservation res1 exists.
+ // CreateAssignment was invoked previously and following assignments were
+ // created explicitly:
+ // <organizationA, res1>
+ // <project1, res1>
+ // Then deletion of <organizationA, res1> won't affect <project1, res1>. After
+ // deletion of <organizationA, res1>, queries from project1 will still use
+ // res1, while queries from project2 will use on-demand mode.
+ DeleteAssignment(context.Context, *DeleteAssignmentRequest) (*empty.Empty, error)
+ // Looks up assignments for a specified resource for a particular region.
+ // If the request is about a project:
+ // 1) Assignments created on the project will be returned if they exist.
+ // 2) Otherwise assignments created on the closest ancestor will be
+ // returned. 3) Assignments for different JobTypes will all be returned.
+ // Same logic applies if the request is about a folder.
+ // If the request is about an organization, then assignments created on the
+ // organization will be returned (organization doesn't have ancestors).
+ // Comparing to ListAssignments, there are some behavior
+ // differences:
+ // 1) permission on the assignee will be verified in this API.
+ // 2) Hierarchy lookup (project->folder->organization) happens in this API.
+ // 3) Parent here is projects/*/locations/*, instead of
+ // projects/*/locations/*reservations/*.
+ // Note "-" cannot be used for projects
+ // nor locations.
+ SearchAssignments(context.Context, *SearchAssignmentsRequest) (*SearchAssignmentsResponse, error)
+ // Moves a assignment under a new reservation. Customers can do this by
+ // deleting the existing assignment followed by creating another assignment
+ // under the new reservation, but this method provides a transactional way to
+ // do so, to make sure the assignee always has an associated reservation.
+ // Without the method customers might see some queries run on-demand which
+ // might be unexpected.
+ MoveAssignment(context.Context, *MoveAssignmentRequest) (*Assignment, error)
+ // Retrieves a BI reservation.
+ GetBiReservation(context.Context, *GetBiReservationRequest) (*BiReservation, error)
+ // Updates a BI reservation.
+ // Only fields specified in the field_mask are updated.
+ // Singleton BI reservation always exists with default size 0.
+ // In order to reserve BI capacity it needs to be updated to an amount
+ // greater than 0. In order to release BI capacity reservation size
+ // must be set to 0.
+ UpdateBiReservation(context.Context, *UpdateBiReservationRequest) (*BiReservation, error)
+}
+
+// UnimplementedReservationServiceServer can be embedded to have forward compatible implementations.
+type UnimplementedReservationServiceServer struct {
+}
+
+func (*UnimplementedReservationServiceServer) CreateReservation(ctx context.Context, req *CreateReservationRequest) (*Reservation, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method CreateReservation not implemented")
+}
+func (*UnimplementedReservationServiceServer) ListReservations(ctx context.Context, req *ListReservationsRequest) (*ListReservationsResponse, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method ListReservations not implemented")
+}
+func (*UnimplementedReservationServiceServer) GetReservation(ctx context.Context, req *GetReservationRequest) (*Reservation, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method GetReservation not implemented")
+}
+func (*UnimplementedReservationServiceServer) DeleteReservation(ctx context.Context, req *DeleteReservationRequest) (*empty.Empty, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method DeleteReservation not implemented")
+}
+func (*UnimplementedReservationServiceServer) UpdateReservation(ctx context.Context, req *UpdateReservationRequest) (*Reservation, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method UpdateReservation not implemented")
+}
+func (*UnimplementedReservationServiceServer) ListCapacityCommitments(ctx context.Context, req *ListCapacityCommitmentsRequest) (*ListCapacityCommitmentsResponse, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method ListCapacityCommitments not implemented")
+}
+func (*UnimplementedReservationServiceServer) GetCapacityCommitment(ctx context.Context, req *GetCapacityCommitmentRequest) (*CapacityCommitment, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method GetCapacityCommitment not implemented")
+}
+func (*UnimplementedReservationServiceServer) DeleteCapacityCommitment(ctx context.Context, req *DeleteCapacityCommitmentRequest) (*empty.Empty, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method DeleteCapacityCommitment not implemented")
+}
+func (*UnimplementedReservationServiceServer) UpdateCapacityCommitment(ctx context.Context, req *UpdateCapacityCommitmentRequest) (*CapacityCommitment, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method UpdateCapacityCommitment not implemented")
+}
+func (*UnimplementedReservationServiceServer) SplitCapacityCommitment(ctx context.Context, req *SplitCapacityCommitmentRequest) (*SplitCapacityCommitmentResponse, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method SplitCapacityCommitment not implemented")
+}
+func (*UnimplementedReservationServiceServer) MergeCapacityCommitments(ctx context.Context, req *MergeCapacityCommitmentsRequest) (*CapacityCommitment, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method MergeCapacityCommitments not implemented")
+}
+func (*UnimplementedReservationServiceServer) CreateAssignment(ctx context.Context, req *CreateAssignmentRequest) (*Assignment, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method CreateAssignment not implemented")
+}
+func (*UnimplementedReservationServiceServer) ListAssignments(ctx context.Context, req *ListAssignmentsRequest) (*ListAssignmentsResponse, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method ListAssignments not implemented")
+}
+func (*UnimplementedReservationServiceServer) DeleteAssignment(ctx context.Context, req *DeleteAssignmentRequest) (*empty.Empty, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method DeleteAssignment not implemented")
+}
+func (*UnimplementedReservationServiceServer) SearchAssignments(ctx context.Context, req *SearchAssignmentsRequest) (*SearchAssignmentsResponse, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method SearchAssignments not implemented")
+}
+func (*UnimplementedReservationServiceServer) MoveAssignment(ctx context.Context, req *MoveAssignmentRequest) (*Assignment, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method MoveAssignment not implemented")
+}
+func (*UnimplementedReservationServiceServer) GetBiReservation(ctx context.Context, req *GetBiReservationRequest) (*BiReservation, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method GetBiReservation not implemented")
+}
+func (*UnimplementedReservationServiceServer) UpdateBiReservation(ctx context.Context, req *UpdateBiReservationRequest) (*BiReservation, error) {
+ return nil, status1.Errorf(codes.Unimplemented, "method UpdateBiReservation not implemented")
+}
+
+func RegisterReservationServiceServer(s *grpc.Server, srv ReservationServiceServer) {
+ s.RegisterService(&_ReservationService_serviceDesc, srv)
+}
+
+func _ReservationService_CreateReservation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(CreateReservationRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).CreateReservation(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/CreateReservation",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).CreateReservation(ctx, req.(*CreateReservationRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_ListReservations_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(ListReservationsRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).ListReservations(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/ListReservations",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).ListReservations(ctx, req.(*ListReservationsRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_GetReservation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(GetReservationRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).GetReservation(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/GetReservation",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).GetReservation(ctx, req.(*GetReservationRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_DeleteReservation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(DeleteReservationRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).DeleteReservation(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/DeleteReservation",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).DeleteReservation(ctx, req.(*DeleteReservationRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_UpdateReservation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(UpdateReservationRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).UpdateReservation(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/UpdateReservation",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).UpdateReservation(ctx, req.(*UpdateReservationRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_ListCapacityCommitments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(ListCapacityCommitmentsRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).ListCapacityCommitments(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/ListCapacityCommitments",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).ListCapacityCommitments(ctx, req.(*ListCapacityCommitmentsRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_GetCapacityCommitment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(GetCapacityCommitmentRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).GetCapacityCommitment(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/GetCapacityCommitment",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).GetCapacityCommitment(ctx, req.(*GetCapacityCommitmentRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_DeleteCapacityCommitment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(DeleteCapacityCommitmentRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).DeleteCapacityCommitment(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/DeleteCapacityCommitment",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).DeleteCapacityCommitment(ctx, req.(*DeleteCapacityCommitmentRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_UpdateCapacityCommitment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(UpdateCapacityCommitmentRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).UpdateCapacityCommitment(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/UpdateCapacityCommitment",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).UpdateCapacityCommitment(ctx, req.(*UpdateCapacityCommitmentRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_SplitCapacityCommitment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(SplitCapacityCommitmentRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).SplitCapacityCommitment(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/SplitCapacityCommitment",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).SplitCapacityCommitment(ctx, req.(*SplitCapacityCommitmentRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_MergeCapacityCommitments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(MergeCapacityCommitmentsRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).MergeCapacityCommitments(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/MergeCapacityCommitments",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).MergeCapacityCommitments(ctx, req.(*MergeCapacityCommitmentsRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_CreateAssignment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(CreateAssignmentRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).CreateAssignment(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/CreateAssignment",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).CreateAssignment(ctx, req.(*CreateAssignmentRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_ListAssignments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(ListAssignmentsRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).ListAssignments(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/ListAssignments",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).ListAssignments(ctx, req.(*ListAssignmentsRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_DeleteAssignment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(DeleteAssignmentRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).DeleteAssignment(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/DeleteAssignment",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).DeleteAssignment(ctx, req.(*DeleteAssignmentRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_SearchAssignments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(SearchAssignmentsRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).SearchAssignments(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/SearchAssignments",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).SearchAssignments(ctx, req.(*SearchAssignmentsRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_MoveAssignment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(MoveAssignmentRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).MoveAssignment(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/MoveAssignment",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).MoveAssignment(ctx, req.(*MoveAssignmentRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_GetBiReservation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(GetBiReservationRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).GetBiReservation(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/GetBiReservation",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).GetBiReservation(ctx, req.(*GetBiReservationRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+func _ReservationService_UpdateBiReservation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(UpdateBiReservationRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ReservationServiceServer).UpdateBiReservation(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.bigquery.reservation.v1.ReservationService/UpdateBiReservation",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ReservationServiceServer).UpdateBiReservation(ctx, req.(*UpdateBiReservationRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
+var _ReservationService_serviceDesc = grpc.ServiceDesc{
+ ServiceName: "google.cloud.bigquery.reservation.v1.ReservationService",
+ HandlerType: (*ReservationServiceServer)(nil),
+ Methods: []grpc.MethodDesc{
+ {
+ MethodName: "CreateReservation",
+ Handler: _ReservationService_CreateReservation_Handler,
+ },
+ {
+ MethodName: "ListReservations",
+ Handler: _ReservationService_ListReservations_Handler,
+ },
+ {
+ MethodName: "GetReservation",
+ Handler: _ReservationService_GetReservation_Handler,
+ },
+ {
+ MethodName: "DeleteReservation",
+ Handler: _ReservationService_DeleteReservation_Handler,
+ },
+ {
+ MethodName: "UpdateReservation",
+ Handler: _ReservationService_UpdateReservation_Handler,
+ },
+ {
+ MethodName: "ListCapacityCommitments",
+ Handler: _ReservationService_ListCapacityCommitments_Handler,
+ },
+ {
+ MethodName: "GetCapacityCommitment",
+ Handler: _ReservationService_GetCapacityCommitment_Handler,
+ },
+ {
+ MethodName: "DeleteCapacityCommitment",
+ Handler: _ReservationService_DeleteCapacityCommitment_Handler,
+ },
+ {
+ MethodName: "UpdateCapacityCommitment",
+ Handler: _ReservationService_UpdateCapacityCommitment_Handler,
+ },
+ {
+ MethodName: "SplitCapacityCommitment",
+ Handler: _ReservationService_SplitCapacityCommitment_Handler,
+ },
+ {
+ MethodName: "MergeCapacityCommitments",
+ Handler: _ReservationService_MergeCapacityCommitments_Handler,
+ },
+ {
+ MethodName: "CreateAssignment",
+ Handler: _ReservationService_CreateAssignment_Handler,
+ },
+ {
+ MethodName: "ListAssignments",
+ Handler: _ReservationService_ListAssignments_Handler,
+ },
+ {
+ MethodName: "DeleteAssignment",
+ Handler: _ReservationService_DeleteAssignment_Handler,
+ },
+ {
+ MethodName: "SearchAssignments",
+ Handler: _ReservationService_SearchAssignments_Handler,
+ },
+ {
+ MethodName: "MoveAssignment",
+ Handler: _ReservationService_MoveAssignment_Handler,
+ },
+ {
+ MethodName: "GetBiReservation",
+ Handler: _ReservationService_GetBiReservation_Handler,
+ },
+ {
+ MethodName: "UpdateBiReservation",
+ Handler: _ReservationService_UpdateBiReservation_Handler,
+ },
+ },
+ Streams: []grpc.StreamDesc{},
+ Metadata: "google/cloud/bigquery/reservation/v1/reservation.proto",
+}
diff --git a/googleapis/cloud/dataproc/v1/autoscaling_policies.pb.go b/googleapis/cloud/dataproc/v1/autoscaling_policies.pb.go
index 4b11a4a..9397714 100644
--- a/googleapis/cloud/dataproc/v1/autoscaling_policies.pb.go
+++ b/googleapis/cloud/dataproc/v1/autoscaling_policies.pb.go
@@ -403,7 +403,7 @@
// of the location has the following format:
// `projects/{project_id}/locations/{location}`
Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
- // The autoscaling policy to create.
+ // Required. The autoscaling policy to create.
Policy *AutoscalingPolicy `protobuf:"bytes,2,opt,name=policy,proto3" json:"policy,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
diff --git a/googleapis/cloud/dataproc/v1/clusters.pb.go b/googleapis/cloud/dataproc/v1/clusters.pb.go
index 60e7015..051eeb0 100644
--- a/googleapis/cloud/dataproc/v1/clusters.pb.go
+++ b/googleapis/cloud/dataproc/v1/clusters.pb.go
@@ -175,7 +175,7 @@
// Output only. A cluster UUID (Unique Universal Identifier). Dataproc
// generates this value when it creates the cluster.
ClusterUuid string `protobuf:"bytes,6,opt,name=cluster_uuid,json=clusterUuid,proto3" json:"cluster_uuid,omitempty"`
- // Contains cluster daemon metrics such as HDFS and YARN stats.
+ // Output only. Contains cluster daemon metrics such as HDFS and YARN stats.
//
// **Beta Feature**: This report is available for testing purposes only. It
// may be changed before final release.
@@ -694,9 +694,24 @@
// Output only. The list of instance names. Dataproc derives the names
// from `cluster_name`, `num_instances`, and the instance group.
InstanceNames []string `protobuf:"bytes,2,rep,name=instance_names,json=instanceNames,proto3" json:"instance_names,omitempty"`
- // Optional. The Compute Engine image resource used for cluster
- // instances. It can be specified or may be inferred from
- // `SoftwareConfig.image_version`.
+ // Optional. The Compute Engine image resource used for cluster instances.
+ //
+ // The URI can represent an image or image family.
+ //
+ // Image examples:
+ //
+ // * `https://www.googleapis.com/compute/beta/projects/[project_id]/global/images/[image-id]`
+ // * `projects/[project_id]/global/images/[image-id]`
+ // * `image-id`
+ //
+ // Image family examples. Dataproc will use the most recent
+ // image from the family:
+ //
+ // * `https://www.googleapis.com/compute/beta/projects/[project_id]/global/images/family/[custom-image-family-name]`
+ // * `projects/[project_id]/global/images/family/[custom-image-family-name]`
+ //
+ // If the URI is unspecified, it will be inferred from
+ // `SoftwareConfig.image_version` or the system default.
ImageUri string `protobuf:"bytes,3,opt,name=image_uri,json=imageUri,proto3" json:"image_uri,omitempty"`
// Optional. The Compute Engine machine type used for cluster instances.
//
@@ -714,7 +729,7 @@
MachineTypeUri string `protobuf:"bytes,4,opt,name=machine_type_uri,json=machineTypeUri,proto3" json:"machine_type_uri,omitempty"`
// Optional. Disk option config settings.
DiskConfig *DiskConfig `protobuf:"bytes,5,opt,name=disk_config,json=diskConfig,proto3" json:"disk_config,omitempty"`
- // Optional. Specifies that this instance group contains preemptible
+ // Output only. Specifies that this instance group contains preemptible
// instances.
IsPreemptible bool `protobuf:"varint,6,opt,name=is_preemptible,json=isPreemptible,proto3" json:"is_preemptible,omitempty"`
// Output only. The config for Compute Engine Instance Group
@@ -1174,7 +1189,8 @@
// Specifies Kerberos related configuration.
type KerberosConfig struct {
- // Optional. Flag to indicate whether to Kerberize the cluster.
+ // Optional. Flag to indicate whether to Kerberize the cluster (default: false). Set
+ // this field to true to enable Kerberos on a cluster.
EnableKerberos bool `protobuf:"varint,1,opt,name=enable_kerberos,json=enableKerberos,proto3" json:"enable_kerberos,omitempty"`
// Required. The Cloud Storage URI of a KMS encrypted file containing the root
// principal password.
@@ -2347,195 +2363,196 @@
}
var fileDescriptor_29f9b85b3c7e3a5f = []byte{
- // 3008 bytes of a gzipped FileDescriptorProto
+ // 3009 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcf, 0x6f, 0x1b, 0xc7,
0xf5, 0xf7, 0x92, 0xfa, 0xf9, 0x28, 0x52, 0xd4, 0x48, 0xb6, 0x19, 0x39, 0xf1, 0x57, 0xdf, 0xcd,
- 0x2f, 0xc5, 0xb1, 0xc9, 0x58, 0x41, 0x9b, 0xc4, 0x49, 0x83, 0x50, 0x16, 0x6d, 0x29, 0x92, 0x65,
+ 0x2f, 0xc5, 0xb1, 0xc9, 0x58, 0x41, 0x9b, 0xc4, 0x49, 0x83, 0xd0, 0x16, 0x2d, 0x29, 0x92, 0x65,
0x65, 0x45, 0x39, 0x70, 0x91, 0x60, 0xb1, 0xdc, 0x1d, 0x51, 0x1b, 0x2e, 0x77, 0x37, 0x3b, 0xb3,
- 0x76, 0xe8, 0x34, 0x40, 0xdb, 0x4b, 0x0f, 0x05, 0x7a, 0x68, 0xd0, 0x43, 0x0f, 0x6d, 0xaf, 0x4d,
- 0x8b, 0x9e, 0x7a, 0x69, 0x0f, 0x05, 0x7a, 0x2b, 0xea, 0xf6, 0xd4, 0x9e, 0x9a, 0x53, 0x80, 0xf6,
- 0x0f, 0xe8, 0x9f, 0x50, 0xcc, 0x8f, 0xe5, 0xce, 0x92, 0x92, 0x48, 0x3b, 0x06, 0x72, 0x32, 0x35,
- 0xef, 0xf3, 0x3e, 0xf3, 0xde, 0x9b, 0x37, 0xf3, 0xde, 0xcc, 0x1a, 0x5e, 0x6c, 0x07, 0x41, 0xdb,
- 0xc3, 0x35, 0xdb, 0x0b, 0x62, 0xa7, 0xe6, 0x58, 0xd4, 0x0a, 0xa3, 0xc0, 0xae, 0xdd, 0xbb, 0x5a,
- 0xb3, 0xbd, 0x98, 0x50, 0x1c, 0x91, 0x6a, 0x18, 0x05, 0x34, 0x40, 0x15, 0x01, 0xac, 0x72, 0x60,
- 0x35, 0x01, 0x56, 0xef, 0x5d, 0x5d, 0x7e, 0x5a, 0x52, 0x58, 0xa1, 0x5b, 0xb3, 0x7c, 0x3f, 0xa0,
- 0x16, 0x75, 0x03, 0x5f, 0xea, 0x2d, 0x9f, 0x57, 0xa4, 0xb6, 0xe7, 0x62, 0x9f, 0x4a, 0xc1, 0xff,
- 0x29, 0x82, 0x43, 0x17, 0x7b, 0x8e, 0xd9, 0xc2, 0x47, 0xd6, 0x3d, 0x37, 0x88, 0x24, 0xe0, 0xf9,
- 0x13, 0x4d, 0x23, 0x47, 0x56, 0x84, 0x1d, 0x09, 0x7b, 0x56, 0xc2, 0xbc, 0xc0, 0x6f, 0x47, 0xb1,
- 0xef, 0xbb, 0x7e, 0xbb, 0x16, 0x84, 0x38, 0xca, 0x58, 0x71, 0x51, 0x82, 0xf8, 0x5f, 0xad, 0xf8,
- 0xb0, 0xe6, 0xc4, 0x02, 0x20, 0xe5, 0x2b, 0x83, 0x72, 0x61, 0x51, 0xd7, 0x22, 0x9d, 0x01, 0x73,
- 0xfb, 0x08, 0xea, 0x76, 0x31, 0xa1, 0x56, 0x37, 0x14, 0x00, 0xfd, 0x8b, 0x09, 0x98, 0xbe, 0x2e,
- 0x62, 0x86, 0x74, 0x80, 0x30, 0x0a, 0x3e, 0xc2, 0x36, 0x35, 0x5d, 0xa7, 0xa2, 0xad, 0x68, 0xab,
- 0xb3, 0xeb, 0xf9, 0xaf, 0xea, 0x39, 0x63, 0x56, 0x0e, 0x6f, 0x39, 0xe8, 0x05, 0x98, 0x93, 0x21,
- 0x36, 0x7d, 0xab, 0x8b, 0x2b, 0xb9, 0x14, 0x55, 0x90, 0x82, 0x5d, 0xab, 0x8b, 0xd1, 0x06, 0x4c,
- 0xd9, 0x81, 0x7f, 0xe8, 0xb6, 0x2b, 0xf9, 0x15, 0x6d, 0xb5, 0xb0, 0xf6, 0x62, 0xf5, 0xa4, 0x95,
- 0xa8, 0xca, 0xe9, 0xaf, 0x73, 0xb8, 0xa0, 0x92, 0xba, 0xe8, 0x5d, 0x98, 0xf2, 0xac, 0x16, 0xf6,
- 0x48, 0x65, 0x66, 0x25, 0xbf, 0x5a, 0x58, 0xbb, 0x32, 0x92, 0xa5, 0xba, 0xc3, 0xf1, 0x0d, 0x9f,
- 0x46, 0x3d, 0xc6, 0xa5, 0x19, 0x92, 0x81, 0x59, 0x44, 0xa8, 0x45, 0x63, 0x52, 0x99, 0x18, 0xd3,
- 0xa2, 0x7d, 0x0e, 0x67, 0x2c, 0x79, 0x43, 0xea, 0xa2, 0x7d, 0x28, 0x89, 0x5f, 0xe6, 0x91, 0x4b,
- 0x68, 0x10, 0xf5, 0x2a, 0xd3, 0xdc, 0xb2, 0x47, 0x63, 0x2b, 0x0a, 0x8e, 0x4d, 0x41, 0xa1, 0x06,
- 0x35, 0x8e, 0x5d, 0xa7, 0x32, 0x95, 0x04, 0x35, 0xdf, 0x0f, 0xea, 0x41, 0xec, 0x3a, 0x68, 0x1d,
- 0xa6, 0xbb, 0x98, 0x46, 0xae, 0x4d, 0x2a, 0xb3, 0xdc, 0x87, 0xd5, 0x91, 0xb3, 0xde, 0x12, 0x78,
- 0x23, 0x51, 0x5c, 0x7e, 0x03, 0x0a, 0x4a, 0x88, 0x50, 0x19, 0xf2, 0x1d, 0xdc, 0x13, 0x8b, 0x6d,
- 0xb0, 0x9f, 0x68, 0x09, 0x26, 0xef, 0x59, 0x5e, 0x2c, 0x97, 0xd6, 0x10, 0x7f, 0x5c, 0xcb, 0xbd,
- 0xae, 0xe9, 0xff, 0x9d, 0x86, 0x62, 0x66, 0xb1, 0xd0, 0x2a, 0x14, 0xc5, 0x4a, 0x99, 0xad, 0xd8,
- 0xee, 0x60, 0x9a, 0x26, 0x8d, 0x66, 0xcc, 0x09, 0xc9, 0x3a, 0x17, 0xa0, 0x0f, 0x01, 0xb5, 0x6d,
- 0x6c, 0x26, 0x6e, 0xca, 0xdc, 0x98, 0xe1, 0x5e, 0x5c, 0x3a, 0xd9, 0x8b, 0x9b, 0x36, 0x1e, 0x4a,
- 0x0f, 0xcd, 0x28, 0xb7, 0x07, 0x86, 0xd1, 0xfb, 0x50, 0xec, 0x5a, 0x2a, 0xb3, 0x88, 0xcf, 0x29,
- 0xf9, 0xb2, 0xe5, 0x13, 0x6a, 0xf9, 0x36, 0xbe, 0x19, 0x05, 0x71, 0xa8, 0x92, 0xcf, 0x09, 0xa2,
- 0x94, 0xf8, 0x7e, 0x10, 0x75, 0x52, 0x62, 0x78, 0x7c, 0x62, 0x41, 0x24, 0x89, 0x3f, 0x82, 0xf3,
- 0x04, 0xdb, 0x81, 0xef, 0x58, 0x51, 0xcf, 0xcc, 0x4e, 0x31, 0xf7, 0xd8, 0x53, 0x9c, 0xed, 0x53,
- 0xbe, 0xaf, 0xce, 0x75, 0x07, 0xe6, 0x49, 0x70, 0x48, 0xef, 0x5b, 0x11, 0x4e, 0xe6, 0x28, 0x8e,
- 0xca, 0x9f, 0x7d, 0xa9, 0xa0, 0xd2, 0x97, 0x48, 0x66, 0x10, 0xf9, 0x70, 0xce, 0xf5, 0x5d, 0xea,
- 0x5a, 0x9e, 0xfb, 0x80, 0x9f, 0x4b, 0xa6, 0x65, 0xf3, 0xf3, 0xab, 0x52, 0xe0, 0x9b, 0x62, 0xed,
- 0x64, 0xfa, 0xdd, 0xc0, 0xc1, 0x5b, 0x19, 0xdd, 0x3a, 0x57, 0x95, 0x7e, 0xb8, 0xc7, 0x88, 0x08,
- 0xfa, 0x00, 0x16, 0xb0, 0x6f, 0x47, 0xbd, 0x90, 0xcf, 0x25, 0x3d, 0x99, 0x1f, 0x95, 0x43, 0x8d,
- 0xbe, 0x4a, 0x26, 0x87, 0xf0, 0xc0, 0x30, 0x32, 0x01, 0x59, 0x31, 0x0d, 0x88, 0x6d, 0x79, 0xae,
- 0xdf, 0x4e, 0xe8, 0x11, 0xa7, 0x7f, 0xf9, 0x64, 0xfa, 0x7a, 0xaa, 0xa3, 0xf2, 0x2f, 0x58, 0x83,
- 0xe3, 0x7c, 0x19, 0xb0, 0x1d, 0x47, 0x2e, 0xed, 0x25, 0xec, 0xe5, 0x91, 0xcb, 0x20, 0x15, 0xb2,
- 0xcb, 0x90, 0x19, 0x44, 0x77, 0xa1, 0xec, 0xb9, 0x87, 0xd8, 0xee, 0xd9, 0x5e, 0x7f, 0x7d, 0x17,
- 0x38, 0xf1, 0x4b, 0x27, 0x13, 0xef, 0x24, 0x1a, 0x2a, 0xf3, 0xbc, 0x97, 0x1d, 0xd5, 0x5f, 0x83,
- 0x85, 0x21, 0xff, 0x78, 0x9d, 0x08, 0x3c, 0xd7, 0xee, 0x99, 0x71, 0xe4, 0xaa, 0x5b, 0x7e, 0x56,
- 0x0c, 0x1f, 0x44, 0xae, 0xde, 0x80, 0xf2, 0x60, 0xdc, 0xd1, 0x55, 0x58, 0x64, 0x67, 0x40, 0xe8,
- 0x98, 0x9d, 0x2e, 0x31, 0x3b, 0xb8, 0x27, 0x4a, 0x88, 0x42, 0x30, 0xdf, 0xb6, 0xf1, 0x9e, 0xb3,
- 0xdd, 0x25, 0xdb, 0xb8, 0xc7, 0xca, 0x88, 0xfe, 0x9b, 0x09, 0x28, 0x0f, 0x9e, 0x01, 0xe8, 0x22,
- 0xcc, 0x3c, 0x08, 0x7c, 0x3c, 0x38, 0xfb, 0x34, 0x1b, 0x3c, 0x88, 0x5c, 0xf4, 0x1c, 0x14, 0x7c,
- 0x4c, 0xd9, 0x9e, 0xe2, 0x90, 0x5c, 0x0a, 0x01, 0x39, 0xce, 0x50, 0x97, 0xa0, 0x44, 0xe2, 0x96,
- 0x0a, 0x9c, 0x4a, 0x81, 0xc5, 0x54, 0xc4, 0xb0, 0x57, 0xa0, 0xec, 0xfa, 0x14, 0x47, 0xbe, 0xe5,
- 0x99, 0x6e, 0x68, 0x06, 0xbe, 0xc7, 0xce, 0x7d, 0x6d, 0x75, 0x46, 0x2e, 0x48, 0x22, 0xdc, 0x0a,
- 0x6f, 0xfb, 0x5e, 0x0f, 0x5d, 0x66, 0x0b, 0x1d, 0xdd, 0x73, 0x6d, 0x6c, 0x5a, 0xb6, 0x1d, 0xc4,
- 0x3e, 0xe5, 0x27, 0xdd, 0x6c, 0x7f, 0xf9, 0xb8, 0xac, 0x2e, 0x44, 0xe8, 0x0d, 0x38, 0x37, 0x80,
- 0x36, 0x89, 0x1d, 0x84, 0x98, 0x54, 0xf2, 0x2b, 0xf9, 0x44, 0x69, 0x29, 0xab, 0xb4, 0xcf, 0x01,
- 0x08, 0xc1, 0x04, 0xb5, 0xda, 0xac, 0xa2, 0xe5, 0x57, 0x67, 0x0d, 0xfe, 0x1b, 0x35, 0x61, 0xa6,
- 0x8b, 0xa9, 0xc5, 0xd6, 0xba, 0x32, 0xc9, 0xb7, 0xe1, 0xeb, 0xe3, 0x9f, 0xaf, 0xd5, 0x5b, 0x52,
- 0x95, 0x57, 0x07, 0xa3, 0xcf, 0x84, 0x30, 0x2c, 0x45, 0x98, 0xd9, 0x20, 0xf7, 0xf9, 0xe1, 0x21,
- 0xdb, 0xa2, 0xbd, 0x4a, 0x61, 0xd4, 0x59, 0x65, 0xa4, 0x5a, 0x75, 0xa9, 0x24, 0x3c, 0x5a, 0x8c,
- 0x86, 0x25, 0xcb, 0x6f, 0x42, 0x31, 0x63, 0xc1, 0x23, 0xd5, 0xa7, 0x5f, 0x4e, 0xc0, 0xe2, 0x31,
- 0x47, 0x23, 0xab, 0x52, 0x7e, 0xdc, 0x35, 0x5d, 0x29, 0x22, 0x9c, 0x6d, 0x52, 0x1e, 0xca, 0x7e,
- 0xdc, 0x4d, 0x74, 0x08, 0xcb, 0x89, 0x04, 0xc5, 0x73, 0x93, 0x54, 0x72, 0xc9, 0x12, 0xe4, 0x8d,
- 0x62, 0x22, 0x62, 0x99, 0x49, 0xd0, 0x0a, 0xcc, 0xba, 0x5d, 0xab, 0x2d, 0xd2, 0x30, 0x9f, 0x2e,
- 0xef, 0x0c, 0x1f, 0x95, 0x59, 0xd3, 0xb5, 0xec, 0x23, 0xd7, 0xc7, 0x26, 0xed, 0x85, 0x02, 0x38,
- 0xa1, 0xe4, 0x81, 0x14, 0x36, 0x7b, 0x21, 0x87, 0xbf, 0x0b, 0x05, 0xc7, 0x25, 0x9d, 0x64, 0x07,
- 0x4f, 0xf2, 0xc8, 0x3e, 0x77, 0x72, 0x64, 0x37, 0x5c, 0xd2, 0x51, 0x37, 0x2f, 0x38, 0xfd, 0x01,
- 0xee, 0x08, 0x31, 0xc3, 0x08, 0xe3, 0x6e, 0x48, 0xdd, 0x96, 0x87, 0x79, 0x72, 0xcb, 0x74, 0x2d,
- 0xba, 0x64, 0x2f, 0x95, 0x20, 0x1b, 0x96, 0xba, 0x96, 0x6f, 0xb5, 0xb1, 0x63, 0xb6, 0x59, 0xd4,
- 0x12, 0x03, 0xa6, 0xb9, 0x01, 0x97, 0x4f, 0x36, 0xe0, 0x96, 0xd0, 0x1a, 0xa8, 0x42, 0x79, 0x03,
- 0x75, 0x87, 0x04, 0xa8, 0x09, 0x73, 0x96, 0x6d, 0x63, 0x8f, 0x75, 0xb8, 0x41, 0x94, 0xf4, 0x73,
- 0xa7, 0x1d, 0xab, 0x29, 0x3a, 0x53, 0x44, 0x55, 0x16, 0x1e, 0x61, 0xd7, 0x37, 0xed, 0x30, 0x36,
- 0x43, 0xcf, 0xa2, 0x87, 0x41, 0xd4, 0xe5, 0x95, 0xbf, 0x1f, 0x61, 0xd7, 0xbf, 0x1e, 0xc6, 0x7b,
- 0x52, 0xa4, 0x7f, 0xae, 0x01, 0x1a, 0x36, 0x9a, 0x6d, 0xc0, 0xfe, 0xaa, 0x53, 0xdc, 0x65, 0x4c,
- 0x78, 0xe0, 0x68, 0xca, 0x1b, 0x4b, 0x09, 0xa4, 0x29, 0x11, 0xbc, 0xcd, 0x5d, 0x87, 0x0b, 0x7d,
- 0x55, 0x11, 0x3c, 0xe1, 0xfb, 0x60, 0x77, 0x9c, 0x37, 0x2a, 0xae, 0x9a, 0x99, 0xc2, 0x0a, 0xde,
- 0x2a, 0xeb, 0x11, 0x2c, 0x0c, 0x39, 0x8b, 0x5e, 0x81, 0x25, 0xc5, 0xd3, 0x34, 0x7f, 0xc4, 0x46,
- 0x40, 0x8a, 0x2c, 0x49, 0x9f, 0x97, 0x61, 0x41, 0xd5, 0x10, 0xc7, 0x0e, 0x33, 0x60, 0xd2, 0x28,
- 0x5b, 0x2a, 0x7f, 0xec, 0x53, 0xfd, 0xa7, 0x1a, 0x40, 0x9a, 0x3f, 0xe8, 0x25, 0x28, 0xb5, 0x82,
- 0x80, 0x9a, 0x3c, 0xff, 0xd8, 0x5c, 0x6a, 0x42, 0xcf, 0x31, 0x11, 0x03, 0xb3, 0x99, 0x50, 0x15,
- 0x16, 0x52, 0x28, 0x71, 0x1f, 0x60, 0xb3, 0xdd, 0x52, 0x37, 0x54, 0x29, 0x41, 0xef, 0xbb, 0x0f,
- 0xf0, 0xcd, 0x16, 0xa3, 0x66, 0x9b, 0xcf, 0x0b, 0x6c, 0xcb, 0x33, 0x09, 0x71, 0x88, 0xb0, 0x29,
- 0xdd, 0x7d, 0x3b, 0x4c, 0xb2, 0x4f, 0x1c, 0xa2, 0xff, 0x4c, 0x83, 0xca, 0x49, 0x7d, 0x01, 0x3b,
- 0x53, 0xf1, 0x27, 0xd8, 0x8e, 0xa9, 0xd5, 0xf2, 0xb0, 0x79, 0xe8, 0x7a, 0x58, 0xbd, 0xa1, 0x94,
- 0x52, 0xd9, 0x0d, 0xd7, 0xc3, 0x68, 0x1b, 0x16, 0xc4, 0x08, 0x3b, 0xac, 0xd8, 0x9d, 0x27, 0x88,
- 0x45, 0x30, 0x0a, 0x6b, 0x4f, 0x25, 0x39, 0x97, 0xdc, 0x89, 0xaa, 0x1b, 0xf2, 0x56, 0x95, 0x34,
- 0x06, 0x89, 0x62, 0x53, 0xe8, 0xe9, 0xbf, 0xcb, 0xf7, 0xfb, 0x5e, 0xd1, 0xc4, 0xa3, 0x4d, 0x98,
- 0x64, 0x1d, 0xbc, 0x30, 0xa1, 0x34, 0xc6, 0xb5, 0x44, 0xe8, 0x55, 0xd9, 0x3f, 0x58, 0xe4, 0x83,
- 0x20, 0x40, 0x17, 0x61, 0xca, 0xc1, 0xd4, 0x72, 0x3d, 0x99, 0x2b, 0x53, 0x5f, 0xd5, 0xc5, 0xad,
- 0x45, 0x8c, 0xa2, 0x2d, 0x28, 0x73, 0xa0, 0x49, 0xa8, 0x15, 0x51, 0xee, 0x8a, 0xbc, 0x51, 0x2d,
- 0x0f, 0xf9, 0xd1, 0x4c, 0xee, 0x76, 0x62, 0x06, 0x7e, 0x51, 0xc1, 0xfb, 0x4c, 0x8f, 0x49, 0xd0,
- 0x7b, 0x30, 0x43, 0xe2, 0x96, 0xb0, 0x7b, 0x82, 0xdb, 0xfd, 0xca, 0xd8, 0x76, 0x4b, 0x3d, 0x41,
- 0xdc, 0xa7, 0xd1, 0xef, 0xc0, 0x24, 0x77, 0x09, 0x15, 0x60, 0xfa, 0x60, 0x77, 0x7b, 0xf7, 0xf6,
- 0xfb, 0xbb, 0xe5, 0x33, 0x68, 0x0e, 0x66, 0xae, 0x1b, 0x8d, 0x7a, 0x73, 0x6b, 0xf7, 0x66, 0x59,
- 0x63, 0x22, 0xe3, 0x60, 0x77, 0x97, 0xfd, 0x91, 0x43, 0xb3, 0x30, 0xd9, 0x30, 0x8c, 0xdb, 0x46,
- 0x39, 0xcf, 0x50, 0x1b, 0x8d, 0x9d, 0x06, 0x47, 0x4d, 0xb0, 0xbf, 0x0e, 0xf6, 0x36, 0x84, 0xce,
- 0xa4, 0xfe, 0x16, 0xcc, 0x24, 0x53, 0xa2, 0x79, 0x28, 0x1c, 0xec, 0xee, 0xef, 0x35, 0xae, 0x6f,
- 0xdd, 0xd8, 0x6a, 0x6c, 0x94, 0xcf, 0xa0, 0x22, 0xcc, 0x1e, 0xec, 0x6e, 0x36, 0xea, 0x3b, 0xcd,
- 0xcd, 0xbb, 0x65, 0x0d, 0x95, 0x61, 0x6e, 0xbf, 0x59, 0xdf, 0x69, 0x98, 0xfb, 0xcd, 0x7a, 0xf3,
- 0x60, 0xbf, 0x9c, 0xd3, 0x6d, 0x28, 0x65, 0xdb, 0x26, 0xf4, 0x1e, 0xcc, 0x77, 0x70, 0xd4, 0xc2,
- 0x51, 0x40, 0x92, 0xd3, 0x4d, 0x1b, 0xd5, 0x79, 0x6d, 0x4b, 0x05, 0x41, 0x61, 0x94, 0x3a, 0x99,
- 0xbf, 0xf5, 0xdf, 0x4e, 0x41, 0x29, 0x0b, 0xe1, 0x29, 0xea, 0xf3, 0xf4, 0x4c, 0xb0, 0x7c, 0x96,
- 0xa4, 0x49, 0x10, 0xb2, 0x44, 0x87, 0x1d, 0x1d, 0x11, 0xdb, 0x48, 0x61, 0xe4, 0xfa, 0xb6, 0x1b,
- 0x5a, 0x9e, 0x19, 0x5a, 0x84, 0xdc, 0x0f, 0x22, 0x27, 0xdb, 0xb5, 0xe4, 0x8c, 0x0a, 0xc3, 0xed,
- 0x25, 0xb0, 0x3d, 0x89, 0x62, 0x7b, 0xfe, 0x59, 0x28, 0x24, 0xad, 0x54, 0xa6, 0x0a, 0xe5, 0x8c,
- 0xd9, 0x0e, 0x6f, 0xa2, 0x18, 0xe8, 0x05, 0x98, 0xeb, 0xe0, 0x1e, 0xbb, 0x69, 0x0e, 0x95, 0xa0,
- 0x42, 0x22, 0x90, 0x0d, 0x11, 0x8d, 0x62, 0x42, 0x53, 0xe4, 0xa4, 0xd2, 0x10, 0xa5, 0x22, 0x86,
- 0x7d, 0x0d, 0xce, 0xf6, 0x39, 0x33, 0x66, 0x2b, 0x3d, 0xd4, 0x62, 0x82, 0x50, 0x2d, 0xbe, 0x02,
- 0x65, 0x66, 0x6d, 0x46, 0x67, 0x5a, 0x39, 0xb1, 0x3b, 0xb8, 0xa7, 0xc2, 0xdf, 0x84, 0xf3, 0x8a,
- 0x4d, 0x19, 0x2d, 0xa5, 0xa3, 0x3a, 0x9b, 0x62, 0x54, 0xe5, 0x6b, 0x70, 0xde, 0x8e, 0x02, 0x42,
- 0xcc, 0x08, 0x5b, 0x5e, 0xd7, 0xe4, 0x20, 0xf1, 0x5b, 0x2d, 0x12, 0x4b, 0x1c, 0x63, 0xb0, 0xe1,
- 0x26, 0x43, 0xf0, 0x5f, 0xe8, 0xdb, 0x70, 0x76, 0x58, 0xb7, 0xe3, 0xd8, 0xfc, 0xfe, 0x27, 0x35,
- 0xd1, 0x80, 0xe6, 0xb6, 0x63, 0xa3, 0x9b, 0x70, 0x71, 0x58, 0xcf, 0x72, 0x58, 0x95, 0x62, 0xdd,
- 0x0e, 0x8e, 0x78, 0xc7, 0x24, 0x09, 0x96, 0x07, 0x08, 0xea, 0x0c, 0xb7, 0xcf, 0x61, 0xa8, 0x09,
- 0xcf, 0x0f, 0x13, 0x89, 0x27, 0xa4, 0x6c, 0x1c, 0xe6, 0x52, 0xbe, 0x95, 0x01, 0xbe, 0x7d, 0x0e,
- 0x57, 0x43, 0xb2, 0x0a, 0xa5, 0x8e, 0x63, 0x9b, 0x4e, 0xab, 0x9f, 0x33, 0x45, 0x35, 0x1b, 0x1c,
- 0x7b, 0xa3, 0x25, 0xb3, 0xe6, 0x2a, 0x20, 0xda, 0xa6, 0x26, 0xbb, 0x10, 0xb0, 0x43, 0xc7, 0x3c,
- 0x0a, 0xe2, 0x88, 0x54, 0x4a, 0xe9, 0xd9, 0x5d, 0xa6, 0x6d, 0xba, 0x23, 0xa5, 0x9b, 0x4c, 0x88,
- 0x9e, 0x82, 0x49, 0x11, 0xdd, 0xf9, 0x94, 0x53, 0x8c, 0xe8, 0xbf, 0xcf, 0x41, 0x29, 0x7b, 0xa3,
- 0x64, 0x5d, 0x99, 0xe8, 0x9f, 0xee, 0xe1, 0x88, 0xb8, 0x81, 0x9f, 0x79, 0x3b, 0xe0, 0x92, 0x3b,
- 0x42, 0x80, 0x3e, 0xe4, 0xef, 0x52, 0x21, 0x8e, 0xa8, 0x2b, 0x3b, 0xb2, 0x53, 0x7b, 0xda, 0xec,
- 0x3c, 0xd5, 0xbd, 0xbe, 0xaa, 0xf2, 0x28, 0xa4, 0x10, 0xa2, 0xbb, 0xb0, 0x18, 0xf0, 0x6b, 0x8a,
- 0xe5, 0x99, 0x76, 0xd0, 0x0d, 0x03, 0x1f, 0xfb, 0x54, 0x34, 0xdf, 0xa5, 0xb5, 0x67, 0x4f, 0x39,
- 0x22, 0x13, 0xac, 0xcc, 0x86, 0x84, 0xa4, 0x3f, 0x4e, 0x96, 0xbf, 0x03, 0xf3, 0x03, 0xd3, 0x3f,
- 0x52, 0x43, 0xfb, 0xe7, 0x1c, 0xcc, 0x0f, 0xdc, 0xd3, 0xd0, 0x0d, 0x98, 0x77, 0x1d, 0x0f, 0x9b,
- 0x0e, 0xf6, 0x30, 0xc5, 0x26, 0xa5, 0x9e, 0x3c, 0xca, 0x46, 0xd5, 0xb5, 0x22, 0x53, 0xdb, 0xe0,
- 0x5a, 0x4d, 0xea, 0xa1, 0x6d, 0x28, 0xb3, 0x1b, 0x6a, 0x9f, 0xc7, 0x95, 0xed, 0xca, 0xc8, 0xc2,
- 0xa2, 0x6d, 0x9e, 0x31, 0x4a, 0x4c, 0x55, 0x72, 0xb1, 0xd2, 0xb2, 0x09, 0xf3, 0x19, 0x32, 0xea,
- 0xc9, 0x22, 0x35, 0xc2, 0xa8, 0xcd, 0x33, 0x46, 0x51, 0xa1, 0xa2, 0x1e, 0xba, 0x29, 0xdd, 0x53,
- 0xca, 0xdd, 0xc4, 0x78, 0xe5, 0x8e, 0xfb, 0xd7, 0xaf, 0x76, 0xeb, 0x93, 0x90, 0xa7, 0xd4, 0xd3,
- 0xff, 0x9e, 0x83, 0x52, 0xf6, 0x29, 0x0c, 0x7d, 0x00, 0x73, 0x47, 0xce, 0x21, 0x31, 0x93, 0xa7,
- 0x34, 0x8d, 0x27, 0xd4, 0x1b, 0xe3, 0x3e, 0xa5, 0x55, 0x37, 0x9d, 0x43, 0x22, 0x7f, 0x8b, 0x5b,
- 0x52, 0xe1, 0x28, 0x1d, 0x61, 0xec, 0x3d, 0x2b, 0xf2, 0xfb, 0xec, 0xb9, 0x47, 0x64, 0xbf, 0x6b,
- 0x45, 0x7e, 0x96, 0xbd, 0x97, 0x8e, 0x2c, 0xbf, 0x0d, 0xe5, 0xc1, 0xe9, 0x47, 0x65, 0x54, 0x5e,
- 0xc9, 0x28, 0xa6, 0x3f, 0x38, 0xc1, 0xa3, 0xe8, 0xeb, 0x7f, 0xd2, 0x60, 0xe9, 0x7a, 0x84, 0x2d,
- 0x9a, 0x5c, 0x1b, 0x0d, 0xfc, 0x71, 0x8c, 0x09, 0x1d, 0xeb, 0xed, 0xf8, 0x02, 0x4c, 0x45, 0xb8,
- 0xcd, 0xb6, 0xba, 0x52, 0xa8, 0xe4, 0x10, 0x7a, 0x07, 0xa6, 0xe5, 0xe3, 0xa0, 0x4c, 0xc3, 0xff,
- 0x1f, 0x19, 0x32, 0x41, 0x90, 0xa8, 0x31, 0x13, 0x22, 0x61, 0x0d, 0x33, 0x41, 0xa9, 0x72, 0xb3,
- 0x72, 0x78, 0xcb, 0xd1, 0x7f, 0x9c, 0x87, 0xa5, 0x83, 0xd0, 0xf9, 0xba, 0xf6, 0x4f, 0x0e, 0xdb,
- 0x3f, 0xee, 0xc3, 0xb8, 0xe2, 0x67, 0xfe, 0xf1, 0xfc, 0x6c, 0xc1, 0x33, 0xed, 0xc8, 0xb2, 0xf1,
- 0x61, 0xec, 0x99, 0x0e, 0xb6, 0x83, 0x6e, 0xd7, 0x25, 0x44, 0xed, 0x73, 0xa7, 0xc6, 0x3a, 0x0f,
- 0x2e, 0x24, 0x24, 0x1b, 0x0a, 0x87, 0x6c, 0x79, 0xd1, 0x3b, 0x50, 0x88, 0x79, 0x98, 0xf8, 0xc7,
- 0x84, 0x13, 0xb7, 0xe0, 0x0d, 0x17, 0x7b, 0xce, 0x2d, 0x8b, 0x74, 0x84, 0x89, 0x20, 0x74, 0xd8,
- 0xc0, 0xc0, 0x6a, 0x4c, 0x1f, 0xbb, 0x1a, 0x7f, 0xd3, 0x60, 0x49, 0x6c, 0xfd, 0x27, 0x9d, 0x4d,
- 0xe3, 0xae, 0xc6, 0xe0, 0xcb, 0xbb, 0xda, 0x1b, 0xa9, 0x2f, 0xef, 0x59, 0x6f, 0x26, 0x8f, 0xf5,
- 0xe6, 0x7b, 0xb0, 0x70, 0x13, 0xd3, 0x6f, 0xc8, 0x13, 0xfd, 0x8f, 0x1a, 0x2c, 0xee, 0xb8, 0x24,
- 0x99, 0x9f, 0x3c, 0x9e, 0x01, 0x13, 0xc3, 0x06, 0x5c, 0x80, 0xa9, 0x43, 0xd7, 0x63, 0xf9, 0xaa,
- 0xb8, 0x2d, 0x87, 0xd0, 0x0a, 0xcc, 0x86, 0xac, 0x86, 0xb3, 0x8b, 0xa0, 0x7a, 0xb1, 0x9b, 0x61,
- 0xa3, 0xec, 0x06, 0xc8, 0xe7, 0x67, 0x08, 0x1a, 0x74, 0xb0, 0xaf, 0x5e, 0x2b, 0xb9, 0x62, 0x93,
- 0x8d, 0xea, 0x3f, 0xd2, 0x60, 0x29, 0x6b, 0x3b, 0x09, 0x03, 0x9f, 0xb0, 0xeb, 0xf5, 0x4c, 0xf2,
- 0x41, 0x4f, 0x1e, 0xd3, 0xe3, 0xed, 0x96, 0xbc, 0xd1, 0xd7, 0x43, 0x2f, 0xc3, 0xbc, 0x8f, 0x3f,
- 0xa1, 0xa6, 0x62, 0x85, 0x72, 0x2d, 0x2f, 0x32, 0xd9, 0x5e, 0xdf, 0x92, 0x1f, 0x68, 0x70, 0x6e,
- 0xc3, 0xb5, 0xda, 0x7e, 0x40, 0xbe, 0xa9, 0x9c, 0xd4, 0xdf, 0x3a, 0xc6, 0x04, 0x12, 0x7b, 0x94,
- 0x30, 0x13, 0x82, 0x98, 0x86, 0x31, 0xcd, 0x3e, 0x7d, 0xe6, 0x8d, 0x59, 0x31, 0x7c, 0x10, 0xb9,
- 0xfa, 0x2f, 0x72, 0xb0, 0x78, 0xcc, 0x9b, 0x1b, 0xfa, 0x18, 0x2a, 0x76, 0xe0, 0x93, 0xb8, 0x8b,
- 0x4d, 0xf5, 0x21, 0x8f, 0x5f, 0xf6, 0xc5, 0x2d, 0x76, 0xed, 0x91, 0x1e, 0xf1, 0xaa, 0xcd, 0x5e,
- 0x88, 0xc5, 0x4a, 0x9e, 0x93, 0xc4, 0x0a, 0x8a, 0x3f, 0x15, 0x9c, 0x15, 0x85, 0x45, 0x79, 0x7f,
- 0xe5, 0xd5, 0xe5, 0x02, 0x4c, 0xf1, 0x82, 0x92, 0x79, 0xdf, 0x94, 0x43, 0xba, 0x09, 0x13, 0x5c,
- 0x77, 0x09, 0xca, 0xcd, 0xbb, 0x7b, 0x0d, 0x33, 0x7b, 0xf5, 0x43, 0x50, 0xda, 0xbd, 0x6d, 0x1a,
- 0x8d, 0xfd, 0x86, 0x71, 0xa7, 0xde, 0xdc, 0xba, 0xbd, 0x5b, 0xd6, 0xd0, 0x22, 0xcc, 0xd7, 0x77,
- 0xef, 0x66, 0x06, 0x73, 0xa8, 0x02, 0x4b, 0x52, 0xef, 0x7a, 0x46, 0x92, 0x5f, 0xfb, 0xf7, 0x1c,
- 0x2c, 0xa4, 0x4f, 0x9e, 0x34, 0x0a, 0x3c, 0x0f, 0x47, 0xe8, 0xfb, 0x39, 0x28, 0x66, 0xea, 0x1a,
- 0xaa, 0x9e, 0x92, 0x68, 0xc7, 0x14, 0xc0, 0xe5, 0x67, 0x12, 0xbc, 0xf2, 0x45, 0xb7, 0x7a, 0x3b,
- 0xf9, 0xa2, 0xab, 0xff, 0x4a, 0x7b, 0x58, 0x7f, 0x2b, 0xfd, 0xd4, 0x7a, 0x75, 0x54, 0x16, 0xf7,
- 0x35, 0x93, 0xe7, 0xd0, 0x2f, 0xeb, 0x4f, 0xa5, 0xe9, 0x77, 0x59, 0xa4, 0xd4, 0x65, 0x99, 0x36,
- 0x3f, 0xfc, 0xe7, 0x7f, 0x3e, 0xcf, 0xbd, 0xad, 0xbf, 0x5a, 0xbb, 0x77, 0xb5, 0x26, 0x41, 0xa4,
- 0xf6, 0x69, 0x0a, 0xff, 0xac, 0x26, 0xf0, 0xa4, 0xf6, 0xa9, 0xf8, 0xf1, 0x59, 0xff, 0x3b, 0xf9,
- 0xb5, 0x7e, 0x59, 0xf9, 0x75, 0x0e, 0x8a, 0x99, 0xd2, 0x78, 0x5a, 0x08, 0x8e, 0xab, 0xa1, 0xa3,
- 0x42, 0xf0, 0x97, 0xaf, 0x1f, 0x82, 0xb5, 0x13, 0x43, 0xc0, 0xb7, 0x54, 0xf2, 0xc7, 0x65, 0xa5,
- 0x76, 0xf1, 0xd8, 0xdc, 0x5a, 0x5b, 0x7f, 0x8c, 0xd8, 0xd4, 0x3e, 0x55, 0xc9, 0x3f, 0x4b, 0x43,
- 0xf5, 0xf3, 0x1c, 0x14, 0x33, 0x75, 0xeb, 0xb4, 0x50, 0x1d, 0x57, 0xe0, 0x46, 0x85, 0xea, 0x0f,
- 0xda, 0xc3, 0xfa, 0xbb, 0x70, 0x76, 0xb0, 0xdc, 0x36, 0xba, 0x21, 0xed, 0x3d, 0x56, 0xe0, 0x2e,
- 0x9e, 0x1e, 0x38, 0x1e, 0xa4, 0x8d, 0x4b, 0x4f, 0x20, 0x48, 0xe8, 0xaf, 0x1a, 0x40, 0x5a, 0x06,
- 0xd1, 0x29, 0x2f, 0xbc, 0x43, 0xc5, 0x72, 0x79, 0xf4, 0xe1, 0xae, 0x77, 0xc6, 0xf4, 0x05, 0x3d,
- 0x09, 0x5f, 0xfe, 0xa5, 0xc1, 0x9c, 0x5a, 0x97, 0xd0, 0x95, 0xd3, 0xbe, 0xa7, 0x0d, 0xd5, 0xde,
- 0xe5, 0xea, 0xb8, 0x70, 0x51, 0xee, 0xf4, 0x8f, 0xbe, 0xac, 0x2f, 0x0c, 0x39, 0xf7, 0x65, 0xbd,
- 0x32, 0xec, 0xb0, 0x28, 0xbf, 0xdc, 0xd5, 0x6f, 0xa1, 0xc7, 0xd9, 0xf7, 0xe8, 0x27, 0x39, 0x98,
- 0x1f, 0x28, 0x33, 0xe8, 0x95, 0xd3, 0x3e, 0x36, 0x1c, 0x57, 0x14, 0x47, 0xe5, 0xf1, 0x17, 0xda,
- 0xc3, 0x7a, 0xed, 0xa4, 0x3c, 0x3e, 0xa1, 0xca, 0x8d, 0xb7, 0xc0, 0x7b, 0xfa, 0xf6, 0x13, 0xd8,
- 0xd1, 0x8e, 0xb4, 0xe0, 0x9a, 0x76, 0x69, 0x79, 0xfb, 0x61, 0xfd, 0x7c, 0xdf, 0x63, 0x61, 0xb1,
- 0x15, 0xba, 0xa4, 0x6a, 0x07, 0xdd, 0x7f, 0xd4, 0xab, 0x47, 0x94, 0x86, 0xe4, 0x5a, 0xad, 0x76,
- 0xff, 0xfe, 0xfd, 0x01, 0x61, 0xcd, 0x8a, 0xe9, 0x91, 0xf8, 0xef, 0x3e, 0x57, 0x92, 0x8f, 0x10,
- 0xeb, 0x1f, 0xc3, 0xd3, 0x76, 0xd0, 0x3d, 0x31, 0x9c, 0xeb, 0xc9, 0x7b, 0x32, 0xd9, 0x63, 0x31,
- 0xd9, 0xd3, 0xbe, 0xfb, 0x8e, 0x84, 0xb6, 0x03, 0xcf, 0xf2, 0xdb, 0xd5, 0x20, 0x6a, 0xd7, 0xda,
- 0xd8, 0xe7, 0x11, 0xab, 0xa5, 0xf3, 0x0d, 0xff, 0xaf, 0xa2, 0x37, 0x93, 0xdf, 0xad, 0x29, 0x0e,
- 0x7e, 0xf5, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x94, 0xee, 0x72, 0x1c, 0x25, 0x00, 0x00,
+ 0x76, 0xe8, 0x34, 0x40, 0xdb, 0x4b, 0x0f, 0x05, 0x7a, 0x68, 0xd0, 0x43, 0x0f, 0x6d, 0xaf, 0xfd,
+ 0x81, 0xf6, 0xd2, 0x4b, 0x7b, 0x28, 0xd0, 0x5b, 0x51, 0xb7, 0xa7, 0xf6, 0xd4, 0x9c, 0x02, 0xb4,
+ 0x7f, 0x40, 0xff, 0x84, 0x62, 0x7e, 0x2c, 0x77, 0x96, 0x94, 0x44, 0xda, 0x31, 0x90, 0x93, 0xa9,
+ 0x79, 0x9f, 0xf7, 0x99, 0xf7, 0xde, 0xbc, 0x99, 0xf7, 0x66, 0xd6, 0xf0, 0x62, 0x3b, 0x08, 0xda,
+ 0x1e, 0xae, 0xd9, 0x5e, 0x10, 0x3b, 0x35, 0xc7, 0xa2, 0x56, 0x18, 0x05, 0x76, 0xed, 0xde, 0xd5,
+ 0x9a, 0xed, 0xc5, 0x84, 0xe2, 0x88, 0x54, 0xc3, 0x28, 0xa0, 0x01, 0xaa, 0x08, 0x60, 0x95, 0x03,
+ 0xab, 0x09, 0xb0, 0x7a, 0xef, 0xea, 0xf2, 0xd3, 0x92, 0xc2, 0x0a, 0xdd, 0x9a, 0xe5, 0xfb, 0x01,
+ 0xb5, 0xa8, 0x1b, 0xf8, 0x52, 0x6f, 0xf9, 0xbc, 0x22, 0xb5, 0x3d, 0x17, 0xfb, 0x54, 0x0a, 0xfe,
+ 0x4f, 0x11, 0x1c, 0xba, 0xd8, 0x73, 0xcc, 0x16, 0x3e, 0xb2, 0xee, 0xb9, 0x41, 0x24, 0x01, 0xcf,
+ 0x9f, 0x68, 0x1a, 0x39, 0xb2, 0x22, 0xec, 0x48, 0xd8, 0xb3, 0x12, 0xe6, 0x05, 0x7e, 0x3b, 0x8a,
+ 0x7d, 0xdf, 0xf5, 0xdb, 0xb5, 0x20, 0xc4, 0x51, 0xc6, 0x8a, 0x8b, 0x12, 0xc4, 0xff, 0x6a, 0xc5,
+ 0x87, 0x35, 0x27, 0x16, 0x00, 0x29, 0x5f, 0x19, 0x94, 0x0b, 0x8b, 0xba, 0x16, 0xe9, 0x0c, 0x98,
+ 0xdb, 0x47, 0x50, 0xb7, 0x8b, 0x09, 0xb5, 0xba, 0xa1, 0x00, 0xe8, 0xbf, 0x9b, 0x80, 0xe9, 0x1b,
+ 0x22, 0x66, 0x48, 0x07, 0x08, 0xa3, 0xe0, 0x23, 0x6c, 0x53, 0xd3, 0x75, 0x2a, 0xda, 0x8a, 0xb6,
+ 0x3a, 0x7b, 0x3d, 0xff, 0x65, 0x3d, 0x67, 0xcc, 0xca, 0xe1, 0x2d, 0x07, 0xbd, 0x00, 0x73, 0x32,
+ 0xc4, 0xa6, 0x6f, 0x75, 0x71, 0x25, 0x97, 0xa2, 0x0a, 0x52, 0xb0, 0x6b, 0x75, 0x31, 0x5a, 0x87,
+ 0x29, 0x3b, 0xf0, 0x0f, 0xdd, 0x76, 0x25, 0xbf, 0xa2, 0xad, 0x16, 0xd6, 0x5e, 0xac, 0x9e, 0xb4,
+ 0x12, 0x55, 0x39, 0xfd, 0x0d, 0x0e, 0x17, 0x54, 0x52, 0x17, 0xbd, 0x0b, 0x53, 0x9e, 0xd5, 0xc2,
+ 0x1e, 0xa9, 0xcc, 0xac, 0xe4, 0x57, 0x0b, 0x6b, 0x57, 0x46, 0xb2, 0x54, 0x77, 0x38, 0xbe, 0xe1,
+ 0xd3, 0xa8, 0xc7, 0xb8, 0x34, 0x43, 0x32, 0x30, 0x8b, 0x08, 0xb5, 0x68, 0x4c, 0x2a, 0x13, 0x63,
+ 0x5a, 0xb4, 0xcf, 0xe1, 0x8c, 0x25, 0x6f, 0x48, 0x5d, 0xb4, 0x0f, 0x25, 0xf1, 0xcb, 0x3c, 0x72,
+ 0x09, 0x0d, 0xa2, 0x5e, 0x65, 0x9a, 0x5b, 0xf6, 0x68, 0x6c, 0x45, 0xc1, 0xb1, 0x29, 0x28, 0xd4,
+ 0xa0, 0xc6, 0xb1, 0xeb, 0x54, 0xa6, 0x92, 0xa0, 0xe6, 0xfb, 0x41, 0x3d, 0x88, 0x5d, 0x07, 0x6d,
+ 0xc0, 0x74, 0x17, 0xd3, 0xc8, 0xb5, 0x49, 0x65, 0x96, 0xfb, 0xb0, 0x3a, 0x72, 0xd6, 0x5b, 0x02,
+ 0x2f, 0xc8, 0x12, 0xed, 0xe5, 0x37, 0xa0, 0xa0, 0xc4, 0x09, 0x95, 0x21, 0xdf, 0xc1, 0x3d, 0xb1,
+ 0xe2, 0x06, 0xfb, 0x89, 0x96, 0x60, 0xf2, 0x9e, 0xe5, 0xc5, 0x72, 0x7d, 0x0d, 0xf1, 0xc7, 0xb5,
+ 0xdc, 0xeb, 0x9a, 0xfe, 0xdf, 0x69, 0x28, 0x66, 0x56, 0x0c, 0xad, 0x42, 0x51, 0x2c, 0x97, 0xd9,
+ 0x8a, 0xed, 0x0e, 0xa6, 0x69, 0xe6, 0x68, 0xc6, 0x9c, 0x90, 0x5c, 0xe7, 0x02, 0xf4, 0x21, 0xa0,
+ 0xb6, 0x8d, 0xcd, 0xc4, 0x57, 0x99, 0x20, 0x33, 0xdc, 0x95, 0x4b, 0x27, 0xbb, 0xb2, 0x61, 0xe3,
+ 0xa1, 0x1c, 0xd1, 0x8c, 0x72, 0x7b, 0x60, 0x18, 0xbd, 0x0f, 0xc5, 0xae, 0xa5, 0x32, 0x8b, 0x20,
+ 0x9d, 0x92, 0x34, 0x5b, 0x3e, 0xa1, 0x96, 0x6f, 0xe3, 0x8d, 0x28, 0x88, 0x43, 0x95, 0x7c, 0x4e,
+ 0x10, 0xa5, 0xc4, 0xf7, 0x83, 0xa8, 0x93, 0x12, 0xc3, 0xe3, 0x13, 0x0b, 0x22, 0x49, 0xfc, 0x11,
+ 0x9c, 0x27, 0xd8, 0x0e, 0x7c, 0xc7, 0x8a, 0x7a, 0x66, 0x76, 0x8a, 0xb9, 0xc7, 0x9e, 0xe2, 0x6c,
+ 0x9f, 0xf2, 0x7d, 0x75, 0xae, 0x3b, 0x30, 0x4f, 0x82, 0x43, 0x7a, 0xdf, 0x8a, 0x70, 0x32, 0x47,
+ 0x71, 0x54, 0x12, 0xed, 0x4b, 0x05, 0x95, 0xbe, 0x44, 0x32, 0x83, 0xc8, 0x87, 0x73, 0xae, 0xef,
+ 0x52, 0xd7, 0xf2, 0xdc, 0x07, 0xfc, 0x70, 0x32, 0x2d, 0x9b, 0x1f, 0x62, 0x95, 0x02, 0xdf, 0x19,
+ 0x6b, 0x27, 0xd3, 0xef, 0x06, 0x0e, 0xde, 0xca, 0xe8, 0xd6, 0xb9, 0xaa, 0xf4, 0xc3, 0x3d, 0x46,
+ 0x44, 0xd0, 0x07, 0xb0, 0x80, 0x7d, 0x3b, 0xea, 0x85, 0x7c, 0x2e, 0xe9, 0xc9, 0xfc, 0xa8, 0x1c,
+ 0x6a, 0xf4, 0x55, 0x32, 0x39, 0x84, 0x07, 0x86, 0x91, 0x09, 0xc8, 0x8a, 0x69, 0x40, 0x6c, 0xcb,
+ 0x73, 0xfd, 0x76, 0x42, 0x8f, 0x38, 0xfd, 0xcb, 0x27, 0xd3, 0xd7, 0x53, 0x1d, 0x95, 0x7f, 0xc1,
+ 0x1a, 0x1c, 0xe7, 0xcb, 0x80, 0xed, 0x38, 0x72, 0x69, 0x2f, 0x61, 0x2f, 0x8f, 0x5c, 0x06, 0xa9,
+ 0x90, 0x5d, 0x86, 0xcc, 0x20, 0xba, 0x0b, 0x65, 0xcf, 0x3d, 0xc4, 0x76, 0xcf, 0xf6, 0xfa, 0xeb,
+ 0xbb, 0xc0, 0x89, 0x5f, 0x3a, 0x99, 0x78, 0x27, 0xd1, 0x50, 0x99, 0xe7, 0xbd, 0xec, 0xa8, 0xfe,
+ 0x1a, 0x2c, 0x0c, 0xf9, 0xc7, 0x8b, 0x45, 0xe0, 0xb9, 0x76, 0xcf, 0x8c, 0x23, 0x57, 0xdd, 0xf2,
+ 0xb3, 0x62, 0xf8, 0x20, 0x72, 0xf5, 0x06, 0x94, 0x07, 0xe3, 0x8e, 0xae, 0xc2, 0x22, 0x3b, 0x03,
+ 0x42, 0xc7, 0xec, 0x74, 0x89, 0xd9, 0xc1, 0x3d, 0x51, 0x47, 0x14, 0x82, 0xf9, 0xb6, 0x8d, 0xf7,
+ 0x9c, 0xed, 0x2e, 0xd9, 0xc6, 0x3d, 0x56, 0x4b, 0xf4, 0x5f, 0x4f, 0x40, 0x79, 0xf0, 0x0c, 0x40,
+ 0x17, 0x61, 0xe6, 0x41, 0xe0, 0xe3, 0xc1, 0xd9, 0xa7, 0xd9, 0xe0, 0x41, 0xe4, 0xa2, 0xe7, 0xa0,
+ 0xe0, 0x63, 0xca, 0xf6, 0x14, 0x87, 0xe4, 0x52, 0x08, 0xc8, 0x71, 0x86, 0xba, 0x04, 0x25, 0x12,
+ 0xb7, 0x54, 0xe0, 0x54, 0x0a, 0x2c, 0xa6, 0x22, 0x86, 0xbd, 0x02, 0x65, 0xd7, 0xa7, 0x38, 0xf2,
+ 0x2d, 0xcf, 0x74, 0x43, 0x33, 0xf0, 0x3d, 0x76, 0xf8, 0x6b, 0xab, 0x33, 0x72, 0x41, 0x12, 0xe1,
+ 0x56, 0x78, 0xdb, 0xf7, 0x7a, 0xe8, 0x32, 0x5b, 0xe8, 0xe8, 0x9e, 0x6b, 0x63, 0xd3, 0xb2, 0xed,
+ 0x20, 0xf6, 0x29, 0x3f, 0xe9, 0x66, 0xfb, 0xcb, 0xc7, 0x65, 0x75, 0x21, 0x42, 0x6f, 0xc0, 0xb9,
+ 0x01, 0xb4, 0x49, 0xec, 0x20, 0xc4, 0xa4, 0x92, 0x5f, 0xc9, 0x27, 0x4a, 0x4b, 0x59, 0xa5, 0x7d,
+ 0x0e, 0x40, 0x08, 0x26, 0xa8, 0xd5, 0x66, 0x65, 0x2d, 0xbf, 0x3a, 0x6b, 0xf0, 0xdf, 0xa8, 0x09,
+ 0x33, 0x5d, 0x4c, 0x2d, 0xb6, 0xd6, 0x95, 0x49, 0xbe, 0x0d, 0x5f, 0x1f, 0xff, 0x7c, 0xad, 0xde,
+ 0x92, 0xaa, 0xbc, 0x3a, 0x18, 0x7d, 0x26, 0x84, 0x61, 0x29, 0xc2, 0xcc, 0x06, 0xb9, 0xcf, 0x0f,
+ 0x0f, 0xd9, 0x16, 0xed, 0x55, 0x0a, 0xa3, 0xce, 0x2a, 0x23, 0xd5, 0xaa, 0x4b, 0x25, 0xe1, 0xd1,
+ 0x62, 0x34, 0x2c, 0x59, 0x7e, 0x13, 0x8a, 0x19, 0x0b, 0x1e, 0xa9, 0x3e, 0xfd, 0x7c, 0x02, 0x16,
+ 0x8f, 0x39, 0x1a, 0x59, 0x95, 0xf2, 0xe3, 0xae, 0xe9, 0x4a, 0x11, 0xe1, 0x6c, 0x93, 0xf2, 0x50,
+ 0xf6, 0xe3, 0x6e, 0xa2, 0x43, 0x58, 0x4e, 0x24, 0x28, 0x9e, 0x9b, 0xa4, 0x92, 0x4b, 0x96, 0x20,
+ 0x6f, 0x14, 0x13, 0x11, 0xcb, 0x4c, 0x82, 0x56, 0x60, 0xd6, 0xed, 0x5a, 0x6d, 0x91, 0x86, 0xf9,
+ 0x74, 0x79, 0x67, 0xf8, 0xa8, 0xcc, 0x9a, 0xae, 0x65, 0x1f, 0xb9, 0x3e, 0x36, 0x69, 0x2f, 0x14,
+ 0xc0, 0x09, 0x25, 0x0f, 0xa4, 0xb0, 0xd9, 0x0b, 0x39, 0xfc, 0x5d, 0x28, 0x38, 0x2e, 0xe9, 0x24,
+ 0x3b, 0x78, 0x92, 0x47, 0xf6, 0xb9, 0x93, 0x23, 0xbb, 0xee, 0x92, 0x8e, 0xba, 0x79, 0xc1, 0xe9,
+ 0x0f, 0x70, 0x47, 0x88, 0x19, 0x46, 0x18, 0x77, 0x43, 0xea, 0xb6, 0x3c, 0xcc, 0x93, 0x7b, 0x26,
+ 0x71, 0x84, 0xec, 0xa5, 0x12, 0x64, 0xc3, 0x52, 0xd7, 0xf2, 0xad, 0x36, 0x76, 0xcc, 0x36, 0x8b,
+ 0x5a, 0x62, 0xc0, 0x34, 0x37, 0xe0, 0xf2, 0xc9, 0x06, 0xdc, 0x12, 0x5a, 0x03, 0x55, 0x28, 0x6f,
+ 0xa0, 0xee, 0x90, 0x00, 0x35, 0x61, 0xce, 0xb2, 0x6d, 0xec, 0xb1, 0x36, 0x37, 0x88, 0x92, 0xa6,
+ 0xee, 0xb4, 0x63, 0x35, 0x45, 0x67, 0x8a, 0xa8, 0xca, 0xc2, 0x23, 0xec, 0xfa, 0xa6, 0x1d, 0xc6,
+ 0x66, 0xe8, 0x59, 0xf4, 0x30, 0x88, 0xba, 0xbc, 0xf2, 0xf7, 0x23, 0xec, 0xfa, 0x37, 0xc2, 0x78,
+ 0x4f, 0x8a, 0xf4, 0xcf, 0x35, 0x40, 0xc3, 0x46, 0xb3, 0x0d, 0xd8, 0x5f, 0x75, 0x8a, 0xbb, 0x8c,
+ 0x09, 0x0f, 0x1c, 0x4d, 0x79, 0x63, 0x29, 0x81, 0x34, 0x25, 0x82, 0xf7, 0xba, 0xd7, 0xe1, 0x42,
+ 0x5f, 0x55, 0x04, 0x4f, 0xf8, 0x3e, 0xd8, 0x22, 0xe7, 0x8d, 0x8a, 0xab, 0x66, 0xa6, 0xb0, 0x82,
+ 0xf7, 0xcb, 0x7a, 0x04, 0x0b, 0x43, 0xce, 0xa2, 0x57, 0x60, 0x49, 0xf1, 0x34, 0xcd, 0x1f, 0xb1,
+ 0x11, 0x90, 0x22, 0x4b, 0xd2, 0xe7, 0x65, 0x58, 0x50, 0x35, 0xc4, 0xb1, 0xc3, 0x0c, 0x98, 0x34,
+ 0xca, 0x96, 0xca, 0x1f, 0xfb, 0x54, 0xff, 0xb1, 0x06, 0x90, 0xe6, 0x0f, 0x7a, 0x09, 0x4a, 0xad,
+ 0x20, 0xa0, 0x26, 0xcf, 0x3f, 0x36, 0x97, 0x9a, 0xd0, 0x73, 0x4c, 0xc4, 0xc0, 0x6c, 0x26, 0x54,
+ 0x85, 0x85, 0x14, 0x4a, 0xdc, 0x07, 0xd8, 0x6c, 0xb7, 0xd4, 0x0d, 0x55, 0x4a, 0xd0, 0xfb, 0xee,
+ 0x03, 0xbc, 0xd1, 0x62, 0xd4, 0x6c, 0xf3, 0x79, 0x81, 0x6d, 0x79, 0x26, 0x21, 0x0e, 0x11, 0x36,
+ 0xa5, 0xbb, 0x6f, 0x87, 0x49, 0xf6, 0x89, 0x43, 0xf4, 0x9f, 0x68, 0x50, 0x39, 0xa9, 0x2f, 0x60,
+ 0x67, 0x2a, 0xfe, 0x04, 0xdb, 0x31, 0xb5, 0x5a, 0x1e, 0x36, 0x0f, 0x5d, 0x0f, 0xab, 0xd7, 0x94,
+ 0x52, 0x2a, 0xbb, 0xe9, 0x7a, 0x18, 0x6d, 0xc3, 0x82, 0x18, 0x61, 0x87, 0x15, 0xbb, 0xf8, 0x04,
+ 0xb1, 0x08, 0x46, 0x61, 0xed, 0xa9, 0x24, 0xe7, 0x92, 0x8b, 0x51, 0x75, 0x5d, 0x5e, 0xad, 0x92,
+ 0xc6, 0x20, 0x51, 0x6c, 0x0a, 0x3d, 0xfd, 0xb7, 0xf9, 0x7e, 0xdf, 0x2b, 0x3a, 0x79, 0xb4, 0x09,
+ 0x93, 0xac, 0x8d, 0x17, 0x26, 0x94, 0xc6, 0xb8, 0x9b, 0x08, 0xbd, 0x2a, 0xfb, 0x07, 0x8b, 0x7c,
+ 0x10, 0x04, 0xe8, 0x22, 0x4c, 0x39, 0x98, 0x5a, 0xae, 0x27, 0x73, 0x65, 0xea, 0xcb, 0xba, 0xb8,
+ 0xba, 0x88, 0x51, 0xb4, 0x05, 0x65, 0x0e, 0x34, 0x09, 0xb5, 0x22, 0xca, 0x5d, 0x91, 0xd7, 0xaa,
+ 0xe5, 0x21, 0x3f, 0x9a, 0xc9, 0x05, 0x4f, 0xcc, 0xc0, 0x6f, 0x2b, 0x78, 0x9f, 0xe9, 0x31, 0x09,
+ 0x7a, 0x0f, 0x66, 0x48, 0xdc, 0x12, 0x76, 0x4f, 0x70, 0xbb, 0x5f, 0x19, 0xdb, 0x6e, 0xa9, 0x27,
+ 0x88, 0xfb, 0x34, 0xfa, 0x1d, 0x98, 0xe4, 0x2e, 0xa1, 0x02, 0x4c, 0x1f, 0xec, 0x6e, 0xef, 0xde,
+ 0x7e, 0x7f, 0xb7, 0x7c, 0x06, 0xcd, 0xc1, 0xcc, 0x0d, 0xa3, 0x51, 0x6f, 0x6e, 0xed, 0x6e, 0x94,
+ 0x35, 0x26, 0x32, 0x0e, 0x76, 0x77, 0xd9, 0x1f, 0x39, 0x34, 0x0b, 0x93, 0x0d, 0xc3, 0xb8, 0x6d,
+ 0x94, 0xf3, 0x0c, 0xb5, 0xde, 0xd8, 0x69, 0x70, 0xd4, 0x04, 0xfb, 0xeb, 0x60, 0x6f, 0x5d, 0xe8,
+ 0x4c, 0xea, 0x6f, 0xc1, 0x4c, 0x32, 0x25, 0x9a, 0x87, 0xc2, 0xc1, 0xee, 0xfe, 0x5e, 0xe3, 0xc6,
+ 0xd6, 0xcd, 0xad, 0xc6, 0x7a, 0xf9, 0x0c, 0x2a, 0xc2, 0xec, 0xc1, 0xee, 0x66, 0xa3, 0xbe, 0xd3,
+ 0xdc, 0xbc, 0x5b, 0xd6, 0x50, 0x19, 0xe6, 0xf6, 0x9b, 0xf5, 0x9d, 0x86, 0xb9, 0xdf, 0xac, 0x37,
+ 0x0f, 0xf6, 0xcb, 0x39, 0xdd, 0x86, 0x52, 0xb6, 0x6d, 0x42, 0xef, 0xc1, 0x7c, 0x07, 0x47, 0x2d,
+ 0x1c, 0x05, 0x24, 0x39, 0xdd, 0xb4, 0x51, 0x9d, 0xd7, 0xb6, 0x54, 0x10, 0x14, 0x46, 0xa9, 0x93,
+ 0xf9, 0x5b, 0xff, 0xcd, 0x14, 0x94, 0xb2, 0x10, 0x9e, 0xa2, 0x3e, 0x4f, 0xcf, 0x04, 0xcb, 0x67,
+ 0x49, 0x9a, 0x04, 0x21, 0x4b, 0x74, 0xd8, 0xd1, 0x11, 0xb1, 0x8d, 0x14, 0x46, 0xae, 0x6f, 0xbb,
+ 0xa1, 0xe5, 0x99, 0xa1, 0x45, 0xc8, 0xfd, 0x20, 0x72, 0xb2, 0x5d, 0x4b, 0xce, 0xa8, 0x30, 0xdc,
+ 0x5e, 0x02, 0xdb, 0x93, 0x28, 0xb6, 0xe7, 0x9f, 0x85, 0x42, 0xd2, 0x4a, 0x65, 0xaa, 0x50, 0xce,
+ 0x98, 0xed, 0xf0, 0x26, 0x8a, 0x81, 0x5e, 0x80, 0xb9, 0x0e, 0xee, 0xb1, 0xeb, 0xe6, 0x50, 0x09,
+ 0x2a, 0x24, 0x02, 0xd9, 0x10, 0xd1, 0x28, 0x26, 0x34, 0x45, 0x4e, 0x2a, 0x0d, 0x51, 0x2a, 0x62,
+ 0xd8, 0xd7, 0xe0, 0x6c, 0x9f, 0x33, 0x63, 0xb6, 0xd2, 0x43, 0x2d, 0x26, 0x08, 0xd5, 0xe2, 0x2b,
+ 0x50, 0x66, 0xd6, 0x66, 0x74, 0xa6, 0x95, 0x13, 0xbb, 0x83, 0x7b, 0x2a, 0xfc, 0x4d, 0x38, 0xaf,
+ 0xd8, 0x94, 0xd1, 0x52, 0x3a, 0xaa, 0xb3, 0x29, 0x46, 0x55, 0xbe, 0x06, 0xe7, 0xed, 0x28, 0x20,
+ 0xc4, 0x8c, 0xb0, 0xe5, 0x75, 0x4d, 0x0e, 0x12, 0xbf, 0xd5, 0x22, 0xb1, 0xc4, 0x31, 0x06, 0x1b,
+ 0x6e, 0x32, 0x04, 0xff, 0x85, 0xbe, 0x09, 0x67, 0x87, 0x75, 0x3b, 0x8e, 0xcd, 0xef, 0x7f, 0x52,
+ 0x13, 0x0d, 0x68, 0x6e, 0x3b, 0x36, 0xda, 0x80, 0x8b, 0xc3, 0x7a, 0x96, 0xc3, 0xaa, 0x14, 0xeb,
+ 0x76, 0x70, 0xc4, 0x3b, 0x26, 0x49, 0xb0, 0x3c, 0x40, 0x50, 0x67, 0xb8, 0x7d, 0x0e, 0x43, 0x4d,
+ 0x78, 0x7e, 0x98, 0x48, 0xbc, 0x23, 0x65, 0xe3, 0x30, 0x97, 0xf2, 0xad, 0x0c, 0xf0, 0xed, 0x73,
+ 0xb8, 0x1a, 0x92, 0x55, 0x28, 0x75, 0x1c, 0xdb, 0x74, 0x5a, 0xfd, 0x9c, 0x29, 0xaa, 0xd9, 0xe0,
+ 0xd8, 0xeb, 0x2d, 0x99, 0x35, 0x57, 0x01, 0xd1, 0x36, 0x35, 0xd9, 0x85, 0x80, 0x1d, 0x3a, 0xe6,
+ 0x51, 0x10, 0x47, 0xa4, 0x52, 0x4a, 0xcf, 0xee, 0x32, 0x6d, 0xd3, 0x1d, 0x29, 0xdd, 0x64, 0x42,
+ 0xf4, 0x14, 0x4c, 0x8a, 0xe8, 0xce, 0xa7, 0x9c, 0x62, 0x44, 0xff, 0x7d, 0x0e, 0x4a, 0xd9, 0x1b,
+ 0x25, 0xeb, 0xca, 0x44, 0xff, 0x74, 0x0f, 0x47, 0xc4, 0x0d, 0xfc, 0xcc, 0xdb, 0x01, 0x97, 0xdc,
+ 0x11, 0x02, 0xf4, 0x21, 0x7f, 0x9c, 0x0a, 0x71, 0x44, 0x5d, 0xd9, 0x91, 0x9d, 0xda, 0xd3, 0x66,
+ 0xe7, 0xa9, 0xee, 0xf5, 0x55, 0x95, 0x97, 0x21, 0x85, 0x10, 0xdd, 0x85, 0xc5, 0x80, 0x5f, 0x53,
+ 0x2c, 0xcf, 0xb4, 0x83, 0x6e, 0x18, 0xf8, 0xd8, 0xa7, 0xa2, 0xf9, 0x2e, 0xad, 0x3d, 0x7b, 0xca,
+ 0x11, 0x99, 0x60, 0x65, 0x36, 0x24, 0x24, 0xfd, 0x71, 0xb2, 0xfc, 0x2d, 0x98, 0x1f, 0x98, 0xfe,
+ 0x91, 0x1a, 0xda, 0x3f, 0xe7, 0x60, 0x7e, 0xe0, 0x9e, 0x86, 0x6e, 0xc2, 0xbc, 0xeb, 0x78, 0xd8,
+ 0x74, 0xb0, 0x87, 0x29, 0x36, 0x29, 0xf5, 0xe4, 0x51, 0x36, 0xaa, 0xae, 0x15, 0x99, 0xda, 0x3a,
+ 0xd7, 0x6a, 0x52, 0x0f, 0x6d, 0x43, 0x99, 0xdd, 0x50, 0xfb, 0x3c, 0xae, 0x6c, 0x57, 0x46, 0x16,
+ 0x16, 0x6d, 0xf3, 0x8c, 0x51, 0x62, 0xaa, 0x92, 0x8b, 0x95, 0x96, 0x4d, 0x98, 0xcf, 0x90, 0x51,
+ 0x4f, 0x16, 0xa9, 0x11, 0x46, 0x6d, 0x9e, 0x31, 0x8a, 0x0a, 0x15, 0xf5, 0xd0, 0x86, 0x74, 0x4f,
+ 0x29, 0x77, 0x13, 0xe3, 0x95, 0x3b, 0xee, 0x5f, 0xbf, 0xda, 0x5d, 0x9f, 0x84, 0x3c, 0xa5, 0x9e,
+ 0xfe, 0xf7, 0x1c, 0x94, 0xb2, 0xef, 0x61, 0xe8, 0x03, 0x98, 0x3b, 0x72, 0x0e, 0x89, 0x99, 0xbc,
+ 0xa7, 0x69, 0x3c, 0xa1, 0xde, 0x18, 0xf7, 0x3d, 0xad, 0xba, 0xe9, 0x1c, 0x12, 0xf9, 0x5b, 0xdc,
+ 0x92, 0x0a, 0x47, 0xe9, 0x08, 0x63, 0xef, 0x59, 0x91, 0xdf, 0x67, 0xcf, 0x3d, 0x22, 0xfb, 0x5d,
+ 0x2b, 0xf2, 0xb3, 0xec, 0xbd, 0x74, 0x64, 0xf9, 0x6d, 0x28, 0x0f, 0x4e, 0x3f, 0x2a, 0xa3, 0xf2,
+ 0x4a, 0x46, 0x31, 0xfd, 0xc1, 0x09, 0x1e, 0x45, 0x5f, 0xff, 0x93, 0x06, 0x4b, 0x37, 0x22, 0x6c,
+ 0xd1, 0xe4, 0xda, 0x68, 0xe0, 0x8f, 0x63, 0x4c, 0xe8, 0x58, 0x0f, 0xc8, 0x17, 0x60, 0x2a, 0xc2,
+ 0x6d, 0xb6, 0xd5, 0x95, 0x42, 0x25, 0x87, 0xd0, 0x3b, 0x30, 0x2d, 0x1f, 0x07, 0x65, 0x1a, 0xfe,
+ 0xff, 0xc8, 0x90, 0x09, 0x82, 0x44, 0x8d, 0x99, 0x10, 0x09, 0x6b, 0x98, 0x09, 0x4a, 0x95, 0x9b,
+ 0x95, 0xc3, 0x5b, 0x8e, 0xfe, 0xc3, 0x3c, 0x2c, 0x1d, 0x84, 0xce, 0x57, 0xb5, 0x7f, 0x72, 0xd8,
+ 0xfe, 0x71, 0x5f, 0xc7, 0x15, 0x3f, 0xf3, 0x8f, 0xe7, 0x67, 0x0b, 0x9e, 0x69, 0x47, 0x96, 0x8d,
+ 0x0f, 0x63, 0xcf, 0x74, 0xb0, 0x1d, 0x74, 0xbb, 0x2e, 0x21, 0x6a, 0x9f, 0x3b, 0x35, 0xd6, 0x79,
+ 0x70, 0x21, 0x21, 0x59, 0x57, 0x38, 0x64, 0xcb, 0x8b, 0xde, 0x81, 0x42, 0xcc, 0xc3, 0xc4, 0xbf,
+ 0x28, 0x9c, 0xb8, 0x05, 0x6f, 0xba, 0xd8, 0x73, 0x6e, 0x59, 0xa4, 0x23, 0x4c, 0x04, 0xa1, 0xc3,
+ 0x06, 0x06, 0x56, 0x63, 0xfa, 0xd8, 0xd5, 0xf8, 0x9b, 0x06, 0x4b, 0x62, 0xeb, 0x3f, 0xe9, 0x6c,
+ 0x1a, 0x77, 0x35, 0x06, 0x9f, 0xdf, 0xd5, 0xde, 0x48, 0x7d, 0x7e, 0xcf, 0x7a, 0x33, 0x79, 0xac,
+ 0x37, 0xdf, 0x81, 0x85, 0x0d, 0x4c, 0xbf, 0x26, 0x4f, 0xf4, 0x3f, 0x6a, 0xb0, 0xb8, 0xe3, 0x92,
+ 0x64, 0x7e, 0xf2, 0x78, 0x06, 0x4c, 0x0c, 0x1b, 0x70, 0x01, 0xa6, 0x0e, 0x5d, 0x8f, 0xe5, 0xab,
+ 0xe2, 0xb6, 0x1c, 0x42, 0x2b, 0x30, 0x1b, 0xb2, 0x1a, 0xce, 0x2e, 0x82, 0xea, 0xc5, 0x6e, 0x86,
+ 0x8d, 0xb2, 0x1b, 0x20, 0x9f, 0x9f, 0x21, 0x68, 0xd0, 0xc1, 0xbe, 0x7a, 0xad, 0xe4, 0x8a, 0x4d,
+ 0x36, 0xaa, 0xff, 0x40, 0x83, 0xa5, 0xac, 0xed, 0x24, 0x0c, 0x7c, 0xc2, 0xae, 0xd7, 0x33, 0xc9,
+ 0x57, 0x3d, 0x79, 0x4c, 0x8f, 0xb7, 0x5b, 0xf2, 0x46, 0x5f, 0x0f, 0xbd, 0x0c, 0xf3, 0x3e, 0xfe,
+ 0x84, 0x9a, 0x8a, 0x15, 0xca, 0xb5, 0xbc, 0xc8, 0x64, 0x7b, 0x7d, 0x4b, 0xbe, 0xa7, 0xc1, 0xb9,
+ 0x75, 0xd7, 0x6a, 0xfb, 0x01, 0xf9, 0xba, 0x72, 0x52, 0x7f, 0xeb, 0x18, 0x13, 0x48, 0xec, 0x51,
+ 0xc2, 0x4c, 0x08, 0x62, 0x1a, 0xc6, 0x34, 0xfb, 0xf4, 0x99, 0x37, 0x66, 0xc5, 0xf0, 0x41, 0xe4,
+ 0xea, 0x3f, 0xcb, 0xc1, 0xe2, 0x31, 0x6f, 0x6e, 0xe8, 0x63, 0xa8, 0xd8, 0x81, 0x4f, 0xe2, 0x2e,
+ 0x36, 0xd5, 0x87, 0x3c, 0x7e, 0xd9, 0x17, 0xb7, 0xd8, 0xb5, 0x47, 0x7a, 0xc4, 0xab, 0x36, 0x7b,
+ 0x21, 0x16, 0x2b, 0x79, 0x4e, 0x12, 0x2b, 0x28, 0xfe, 0x54, 0x70, 0x56, 0x14, 0x16, 0xe5, 0xfd,
+ 0x95, 0x57, 0x97, 0x0b, 0x30, 0xc5, 0x0b, 0x4a, 0xe6, 0x7d, 0x53, 0x0e, 0xe9, 0x26, 0x4c, 0x70,
+ 0xdd, 0x25, 0x28, 0x37, 0xef, 0xee, 0x35, 0xcc, 0xec, 0xd5, 0x0f, 0x41, 0x69, 0xf7, 0xb6, 0x69,
+ 0x34, 0xf6, 0x1b, 0xc6, 0x9d, 0x7a, 0x73, 0xeb, 0xf6, 0x6e, 0x59, 0x43, 0x8b, 0x30, 0x5f, 0xdf,
+ 0xbd, 0x9b, 0x19, 0xcc, 0xa1, 0x0a, 0x2c, 0x49, 0xbd, 0x1b, 0x19, 0x49, 0x7e, 0xed, 0xdf, 0x73,
+ 0xb0, 0x90, 0x3e, 0x79, 0xd2, 0x28, 0xf0, 0x3c, 0x1c, 0xa1, 0xef, 0xe6, 0xa0, 0x98, 0xa9, 0x6b,
+ 0xa8, 0x7a, 0x4a, 0xa2, 0x1d, 0x53, 0x00, 0x97, 0x9f, 0x49, 0xf0, 0xca, 0x67, 0xdd, 0xea, 0xed,
+ 0xe4, 0xb3, 0xae, 0xfe, 0x0b, 0xed, 0x61, 0xfd, 0xad, 0xf4, 0x7b, 0xeb, 0xd5, 0x51, 0x59, 0xdc,
+ 0xd7, 0x4c, 0x9e, 0x43, 0xbf, 0xa8, 0x3f, 0x95, 0xa6, 0xdf, 0x65, 0x91, 0x52, 0x97, 0x65, 0xda,
+ 0x7c, 0xff, 0x9f, 0xff, 0xf9, 0x3c, 0xf7, 0xb6, 0xfe, 0x6a, 0xed, 0xde, 0xd5, 0x9a, 0x04, 0x91,
+ 0xda, 0xa7, 0x29, 0xfc, 0xb3, 0x9a, 0xc0, 0x93, 0xda, 0xa7, 0xe2, 0xc7, 0x67, 0xfd, 0x8f, 0xe5,
+ 0xd7, 0xfa, 0x65, 0xe5, 0x97, 0x39, 0x28, 0x66, 0x4a, 0xe3, 0x69, 0x21, 0x38, 0xae, 0x86, 0x8e,
+ 0x0a, 0xc1, 0x5f, 0xbe, 0x7a, 0x08, 0xd6, 0x4e, 0x0c, 0x01, 0xdf, 0x52, 0xc9, 0x1f, 0x97, 0x95,
+ 0xda, 0xc5, 0x63, 0x73, 0x6b, 0xed, 0xfa, 0x63, 0xc4, 0xa6, 0xf6, 0xa9, 0x4a, 0xfe, 0x59, 0x1a,
+ 0xaa, 0x9f, 0xe6, 0xa0, 0x98, 0xa9, 0x5b, 0xa7, 0x85, 0xea, 0xb8, 0x02, 0x37, 0x2a, 0x54, 0x7f,
+ 0xd0, 0x1e, 0xd6, 0xdf, 0x85, 0xb3, 0x83, 0xe5, 0xb6, 0xd1, 0x0d, 0x69, 0xef, 0xb1, 0x02, 0x77,
+ 0xf1, 0xf4, 0xc0, 0xf1, 0x20, 0xad, 0x5f, 0x7a, 0x02, 0x41, 0x42, 0x7f, 0xd5, 0x00, 0xd2, 0x32,
+ 0x88, 0x4e, 0x79, 0xe1, 0x1d, 0x2a, 0x96, 0xcb, 0xa3, 0x0f, 0x77, 0xbd, 0x33, 0xa6, 0x2f, 0xe8,
+ 0x49, 0xf8, 0xf2, 0x2f, 0x0d, 0xe6, 0xd4, 0xba, 0x84, 0xae, 0x9c, 0xf6, 0x3d, 0x6d, 0xa8, 0xf6,
+ 0x2e, 0x57, 0xc7, 0x85, 0x8b, 0x72, 0xa7, 0x7f, 0xf4, 0x45, 0x7d, 0x61, 0xc8, 0xb9, 0x2f, 0xea,
+ 0x95, 0x61, 0x87, 0x45, 0xf9, 0xe5, 0xae, 0x7e, 0x03, 0x3d, 0xce, 0xbe, 0x47, 0x3f, 0xca, 0xc1,
+ 0xfc, 0x40, 0x99, 0x41, 0xaf, 0x9c, 0xf6, 0xb1, 0xe1, 0xb8, 0xa2, 0x38, 0x2a, 0x8f, 0x7f, 0xa5,
+ 0x3d, 0xac, 0xd7, 0x4e, 0xca, 0xe3, 0x13, 0xaa, 0xdc, 0x78, 0x0b, 0xbc, 0xa7, 0x6f, 0x3f, 0x81,
+ 0x1d, 0xed, 0x48, 0x0b, 0xae, 0x69, 0x97, 0x96, 0xb7, 0x1f, 0xd6, 0xcf, 0xf7, 0x3d, 0x16, 0x16,
+ 0x5b, 0xa1, 0x4b, 0xaa, 0x76, 0xd0, 0xfd, 0x47, 0xbd, 0x7a, 0x44, 0x69, 0x48, 0xae, 0xd5, 0x6a,
+ 0xf7, 0xef, 0xdf, 0x1f, 0x10, 0xd6, 0xac, 0x98, 0x1e, 0x89, 0xff, 0xf3, 0x73, 0x25, 0xf9, 0x08,
+ 0x71, 0xfd, 0x63, 0x78, 0xda, 0x0e, 0xba, 0x27, 0x86, 0xf3, 0x7a, 0xf2, 0x9e, 0x4c, 0xf6, 0x58,
+ 0x4c, 0xf6, 0xb4, 0x6f, 0xbf, 0x23, 0xa1, 0xed, 0xc0, 0xb3, 0xfc, 0x76, 0x35, 0x88, 0xda, 0xb5,
+ 0x36, 0xf6, 0x79, 0xc4, 0x6a, 0xe9, 0x7c, 0xc3, 0xff, 0xb5, 0xe8, 0xcd, 0xe4, 0x77, 0x6b, 0x8a,
+ 0x83, 0x5f, 0xfd, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe1, 0x43, 0x33, 0xfc, 0x21, 0x25, 0x00,
+ 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -2564,7 +2581,7 @@
DeleteCluster(ctx context.Context, in *DeleteClusterRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
// Gets the resource representation for a cluster in a project.
GetCluster(ctx context.Context, in *GetClusterRequest, opts ...grpc.CallOption) (*Cluster, error)
- // Lists all regions/{region}/clusters in a project.
+ // Lists all regions/{region}/clusters in a project alphabetically.
ListClusters(ctx context.Context, in *ListClustersRequest, opts ...grpc.CallOption) (*ListClustersResponse, error)
// Gets cluster diagnostic information. The returned
// [Operation.metadata][google.longrunning.Operation.metadata] will be
@@ -2654,7 +2671,7 @@
DeleteCluster(context.Context, *DeleteClusterRequest) (*longrunning.Operation, error)
// Gets the resource representation for a cluster in a project.
GetCluster(context.Context, *GetClusterRequest) (*Cluster, error)
- // Lists all regions/{region}/clusters in a project.
+ // Lists all regions/{region}/clusters in a project alphabetically.
ListClusters(context.Context, *ListClustersRequest) (*ListClustersResponse, error)
// Gets cluster diagnostic information. The returned
// [Operation.metadata][google.longrunning.Operation.metadata] will be
diff --git a/googleapis/cloud/dataproc/v1/jobs.pb.go b/googleapis/cloud/dataproc/v1/jobs.pb.go
index 6ddd647..33d3a4a 100644
--- a/googleapis/cloud/dataproc/v1/jobs.pb.go
+++ b/googleapis/cloud/dataproc/v1/jobs.pb.go
@@ -12,7 +12,7 @@
empty "github.com/golang/protobuf/ptypes/empty"
timestamp "github.com/golang/protobuf/ptypes/timestamp"
_ "google.golang.org/genproto/googleapis/api/annotations"
- _ "google.golang.org/genproto/googleapis/longrunning"
+ longrunning "google.golang.org/genproto/googleapis/longrunning"
field_mask "google.golang.org/genproto/protobuf/field_mask"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
@@ -286,7 +286,7 @@
}
func (ListJobsRequest_JobStateMatcher) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_37e0b42bcf4d103b, []int{18, 0}
+ return fileDescriptor_37e0b42bcf4d103b, []int{19, 0}
}
// The runtime logging config of the job.
@@ -1297,7 +1297,10 @@
return nil
}
-// A Dataproc job for running [Presto](https://prestosql.io/) queries
+// A Dataproc job for running [Presto](https://prestosql.io/) queries.
+// **IMPORTANT**: The [Dataproc Presto Optional
+// Component](/dataproc/docs/concepts/components/presto) must be enabled when
+// the cluster is created to submit a Presto job to the cluster.
type PrestoJob struct {
// Required. The sequence of Presto queries to execute, specified as
// either an HCFS file URI or as a list of queries.
@@ -1736,7 +1739,12 @@
// Output only. A UUID that uniquely identifies a job within the project
// over time. This is in contrast to a user-settable reference.job_id that
// may be reused over time.
- JobUuid string `protobuf:"bytes,22,opt,name=job_uuid,json=jobUuid,proto3" json:"job_uuid,omitempty"`
+ JobUuid string `protobuf:"bytes,22,opt,name=job_uuid,json=jobUuid,proto3" json:"job_uuid,omitempty"`
+ // Output only. Indicates whether the job is completed. If the value is `false`,
+ // the job is still in progress. If `true`, the job is completed, and
+ // `status.state` field will indicate if it was successful, failed,
+ // or cancelled.
+ Done bool `protobuf:"varint,24,opt,name=done,proto3" json:"done,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1952,6 +1960,13 @@
return ""
}
+func (m *Job) GetDone() bool {
+ if m != nil {
+ return m.Done
+ }
+ return false
+}
+
// XXX_OneofWrappers is for the internal use of the proto package.
func (*Job) XXX_OneofWrappers() []interface{} {
return []interface{}{
@@ -2093,6 +2108,74 @@
return ""
}
+// Job Operation metadata.
+type JobMetadata struct {
+ // Output only. The job id.
+ JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
+ // Output only. Most recent job status.
+ Status *JobStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
+ // Output only. Operation type.
+ OperationType string `protobuf:"bytes,3,opt,name=operation_type,json=operationType,proto3" json:"operation_type,omitempty"`
+ // Output only. Job submission time.
+ StartTime *timestamp.Timestamp `protobuf:"bytes,4,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *JobMetadata) Reset() { *m = JobMetadata{} }
+func (m *JobMetadata) String() string { return proto.CompactTextString(m) }
+func (*JobMetadata) ProtoMessage() {}
+func (*JobMetadata) Descriptor() ([]byte, []int) {
+ return fileDescriptor_37e0b42bcf4d103b, []int{17}
+}
+
+func (m *JobMetadata) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_JobMetadata.Unmarshal(m, b)
+}
+func (m *JobMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_JobMetadata.Marshal(b, m, deterministic)
+}
+func (m *JobMetadata) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_JobMetadata.Merge(m, src)
+}
+func (m *JobMetadata) XXX_Size() int {
+ return xxx_messageInfo_JobMetadata.Size(m)
+}
+func (m *JobMetadata) XXX_DiscardUnknown() {
+ xxx_messageInfo_JobMetadata.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_JobMetadata proto.InternalMessageInfo
+
+func (m *JobMetadata) GetJobId() string {
+ if m != nil {
+ return m.JobId
+ }
+ return ""
+}
+
+func (m *JobMetadata) GetStatus() *JobStatus {
+ if m != nil {
+ return m.Status
+ }
+ return nil
+}
+
+func (m *JobMetadata) GetOperationType() string {
+ if m != nil {
+ return m.OperationType
+ }
+ return ""
+}
+
+func (m *JobMetadata) GetStartTime() *timestamp.Timestamp {
+ if m != nil {
+ return m.StartTime
+ }
+ return nil
+}
+
// A request to get the resource representation for a job in a project.
type GetJobRequest struct {
// Required. The ID of the Google Cloud Platform project that the job
@@ -2111,7 +2194,7 @@
func (m *GetJobRequest) String() string { return proto.CompactTextString(m) }
func (*GetJobRequest) ProtoMessage() {}
func (*GetJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_37e0b42bcf4d103b, []int{17}
+ return fileDescriptor_37e0b42bcf4d103b, []int{18}
}
func (m *GetJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2197,7 +2280,7 @@
func (m *ListJobsRequest) String() string { return proto.CompactTextString(m) }
func (*ListJobsRequest) ProtoMessage() {}
func (*ListJobsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_37e0b42bcf4d103b, []int{18}
+ return fileDescriptor_37e0b42bcf4d103b, []int{19}
}
func (m *ListJobsRequest) XXX_Unmarshal(b []byte) error {
@@ -2294,7 +2377,7 @@
func (m *UpdateJobRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateJobRequest) ProtoMessage() {}
func (*UpdateJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_37e0b42bcf4d103b, []int{19}
+ return fileDescriptor_37e0b42bcf4d103b, []int{20}
}
func (m *UpdateJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2367,7 +2450,7 @@
func (m *ListJobsResponse) String() string { return proto.CompactTextString(m) }
func (*ListJobsResponse) ProtoMessage() {}
func (*ListJobsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_37e0b42bcf4d103b, []int{20}
+ return fileDescriptor_37e0b42bcf4d103b, []int{21}
}
func (m *ListJobsResponse) XXX_Unmarshal(b []byte) error {
@@ -2420,7 +2503,7 @@
func (m *CancelJobRequest) String() string { return proto.CompactTextString(m) }
func (*CancelJobRequest) ProtoMessage() {}
func (*CancelJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_37e0b42bcf4d103b, []int{21}
+ return fileDescriptor_37e0b42bcf4d103b, []int{22}
}
func (m *CancelJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2480,7 +2563,7 @@
func (m *DeleteJobRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteJobRequest) ProtoMessage() {}
func (*DeleteJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_37e0b42bcf4d103b, []int{22}
+ return fileDescriptor_37e0b42bcf4d103b, []int{23}
}
func (m *DeleteJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2558,6 +2641,7 @@
proto.RegisterMapType((map[string]string)(nil), "google.cloud.dataproc.v1.Job.LabelsEntry")
proto.RegisterType((*JobScheduling)(nil), "google.cloud.dataproc.v1.JobScheduling")
proto.RegisterType((*SubmitJobRequest)(nil), "google.cloud.dataproc.v1.SubmitJobRequest")
+ proto.RegisterType((*JobMetadata)(nil), "google.cloud.dataproc.v1.JobMetadata")
proto.RegisterType((*GetJobRequest)(nil), "google.cloud.dataproc.v1.GetJobRequest")
proto.RegisterType((*ListJobsRequest)(nil), "google.cloud.dataproc.v1.ListJobsRequest")
proto.RegisterType((*UpdateJobRequest)(nil), "google.cloud.dataproc.v1.UpdateJobRequest")
@@ -2571,173 +2655,181 @@
}
var fileDescriptor_37e0b42bcf4d103b = []byte{
- // 2650 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0xcd, 0x93, 0xe3, 0xc4,
- 0x15, 0xc7, 0xf6, 0xf8, 0x43, 0xcf, 0xf3, 0xa1, 0x69, 0x76, 0x59, 0x97, 0x81, 0x30, 0x11, 0x04,
- 0x86, 0x05, 0xec, 0xec, 0x40, 0xb6, 0x60, 0x20, 0xc5, 0x7a, 0x6c, 0x79, 0xc7, 0x83, 0xd7, 0x63,
- 0xfc, 0xb1, 0x1b, 0xa0, 0x2a, 0x2a, 0xd9, 0xee, 0xb1, 0xe5, 0x95, 0x25, 0x6d, 0x4b, 0x9a, 0xc5,
- 0x50, 0x1c, 0x92, 0x1c, 0x92, 0x7b, 0x8e, 0xa9, 0x9c, 0x72, 0x4a, 0x55, 0x38, 0xe4, 0x0f, 0xc8,
- 0x1f, 0x40, 0x2e, 0xa9, 0x4a, 0x4e, 0x21, 0x95, 0x14, 0x87, 0x54, 0xe5, 0x92, 0x6b, 0x2a, 0xd7,
- 0x54, 0x77, 0x4b, 0xb2, 0xec, 0xf1, 0xd8, 0x9e, 0x81, 0x82, 0x2c, 0xa7, 0xd5, 0xbe, 0xef, 0xd7,
- 0xef, 0xd7, 0xaf, 0x5f, 0xf7, 0x18, 0x9e, 0xed, 0x9b, 0x66, 0x5f, 0xc7, 0xf9, 0xae, 0x6e, 0xba,
- 0xbd, 0x7c, 0x4f, 0x75, 0x54, 0x8b, 0x98, 0xdd, 0xfc, 0xe9, 0x8d, 0xfc, 0xd0, 0xec, 0xd8, 0x39,
- 0x8b, 0x98, 0x8e, 0x89, 0x32, 0x5c, 0x28, 0xc7, 0x84, 0x72, 0xbe, 0x50, 0xee, 0xf4, 0x46, 0xf6,
- 0x29, 0x4f, 0x5d, 0xb5, 0xb4, 0xbc, 0x6a, 0x18, 0xa6, 0xa3, 0x3a, 0x9a, 0x69, 0x78, 0x7a, 0xd9,
- 0x6b, 0x21, 0x6e, 0x57, 0xd7, 0xb0, 0xe1, 0x78, 0x8c, 0x67, 0x42, 0x8c, 0x13, 0x0d, 0xeb, 0x3d,
- 0xa5, 0x83, 0x07, 0xea, 0xa9, 0x66, 0x12, 0x4f, 0xc0, 0x0f, 0x4b, 0x37, 0x8d, 0x3e, 0x71, 0x0d,
- 0x43, 0x33, 0xfa, 0x79, 0xd3, 0xc2, 0x64, 0xca, 0xfc, 0x93, 0x9e, 0x10, 0xfb, 0x5f, 0xc7, 0x3d,
- 0xc9, 0xe3, 0x91, 0xe5, 0x8c, 0x3d, 0xe6, 0xce, 0x2c, 0x93, 0xfb, 0x19, 0xa9, 0xf6, 0xfd, 0x99,
- 0x20, 0x02, 0x09, 0x47, 0x1b, 0x61, 0xdb, 0x51, 0x47, 0x16, 0x17, 0x90, 0xfe, 0x11, 0x85, 0x8d,
- 0xaa, 0xd9, 0xef, 0x6b, 0x46, 0xbf, 0x68, 0x1a, 0x27, 0x5a, 0x1f, 0x0d, 0x60, 0xbb, 0x47, 0xb4,
- 0x53, 0x4c, 0x14, 0xdd, 0xec, 0x2b, 0x3a, 0x3e, 0xc5, 0xba, 0x9d, 0x89, 0xee, 0xc4, 0x76, 0xd3,
- 0x7b, 0x6f, 0xe5, 0xce, 0x5b, 0xa4, 0xdc, 0x94, 0x8d, 0x5c, 0x89, 0x19, 0xa8, 0x9a, 0xfd, 0x2a,
- 0x53, 0x97, 0x0d, 0x87, 0x8c, 0x1b, 0x5b, 0xbd, 0x69, 0x6a, 0xf6, 0x01, 0x5c, 0x99, 0x27, 0x88,
- 0x44, 0x88, 0xdd, 0xc7, 0xe3, 0x4c, 0x64, 0x27, 0xb2, 0x2b, 0x34, 0xe8, 0x27, 0x2a, 0x42, 0xfc,
- 0x54, 0xd5, 0x5d, 0x9c, 0x89, 0xee, 0x44, 0x76, 0x37, 0xf7, 0x5e, 0x59, 0x35, 0x0e, 0x66, 0xb5,
- 0xc1, 0x75, 0xf7, 0xa3, 0xaf, 0x47, 0x24, 0x0b, 0xe2, 0x8c, 0x86, 0xae, 0xc2, 0x76, 0x55, 0xbe,
- 0x2b, 0x57, 0x95, 0x76, 0xad, 0x59, 0x97, 0x8b, 0x95, 0x72, 0x45, 0x2e, 0x89, 0x8f, 0xa1, 0x24,
- 0xc4, 0x0a, 0xd5, 0xaa, 0x18, 0x41, 0x02, 0xc4, 0x5b, 0x8d, 0x42, 0x51, 0x16, 0xa3, 0xf4, 0xb3,
- 0x24, 0x1f, 0xb4, 0x6f, 0x8b, 0x31, 0x94, 0x82, 0xb5, 0x4a, 0xad, 0x7c, 0x2c, 0xae, 0xd1, 0xaf,
- 0x7b, 0x85, 0x46, 0x4d, 0x8c, 0x53, 0xb6, 0xdc, 0x68, 0x1c, 0x37, 0xc4, 0x04, 0xfd, 0x2c, 0x17,
- 0x5a, 0x85, 0xaa, 0x98, 0xa4, 0x86, 0x8e, 0xcb, 0x65, 0x31, 0x25, 0xfd, 0x3d, 0x06, 0xc2, 0xa1,
- 0xda, 0x33, 0x4d, 0xeb, 0xc8, 0xec, 0xa0, 0x97, 0x60, 0x7b, 0xa4, 0x6a, 0x86, 0x32, 0x54, 0x89,
- 0x72, 0xa2, 0xe9, 0x58, 0x71, 0x89, 0xc6, 0x13, 0x3d, 0x7c, 0xac, 0xb1, 0x49, 0x59, 0x47, 0x2a,
- 0x29, 0x6b, 0x3a, 0x6e, 0x13, 0x0d, 0x3d, 0x03, 0xc0, 0x84, 0xbb, 0xba, 0x6a, 0xdb, 0x2c, 0x75,
- 0x2a, 0x25, 0x50, 0x5a, 0x91, 0x92, 0xd0, 0x35, 0x58, 0x53, 0x49, 0xdf, 0xce, 0xc4, 0x76, 0x62,
- 0xbb, 0xc2, 0x41, 0xec, 0x8b, 0x42, 0xa4, 0xc1, 0x08, 0xe8, 0x05, 0xd8, 0x08, 0x7b, 0xb0, 0x33,
- 0x6b, 0x13, 0x89, 0xf4, 0x30, 0xf0, 0x60, 0xa3, 0x1d, 0x10, 0x26, 0x42, 0xf1, 0x89, 0x50, 0xea,
- 0xc4, 0x97, 0x78, 0x1e, 0xd6, 0x55, 0xd2, 0x1d, 0x68, 0xa7, 0x9e, 0x50, 0x22, 0x64, 0xc9, 0x63,
- 0x30, 0xb9, 0x1f, 0x01, 0x58, 0x84, 0xc2, 0xd7, 0xd1, 0xb0, 0x9d, 0x49, 0x32, 0xbc, 0xbc, 0x7a,
- 0x7e, 0x9d, 0x82, 0x25, 0xc9, 0xd5, 0x03, 0x2d, 0x56, 0x7d, 0x6e, 0x3a, 0x64, 0x0b, 0x35, 0x61,
- 0x53, 0xe7, 0x55, 0x55, 0xba, 0xac, 0xac, 0x99, 0xd4, 0x4e, 0x64, 0x37, 0xbd, 0xf7, 0xc2, 0x8a,
- 0x28, 0xe0, 0x16, 0x37, 0xf4, 0x30, 0x2d, 0xfb, 0x43, 0xd8, 0x9a, 0x71, 0x3c, 0x07, 0x76, 0x57,
- 0xc2, 0xb0, 0x13, 0x42, 0x38, 0x3a, 0x48, 0x41, 0x82, 0xa3, 0x59, 0xfa, 0x5b, 0x0c, 0x52, 0x4d,
- 0x4b, 0x25, 0xf7, 0xbf, 0xdd, 0xe5, 0xbd, 0x37, 0xa7, 0xbc, 0x7b, 0xe7, 0x17, 0xc0, 0x5f, 0x91,
- 0x47, 0xbd, 0xba, 0xff, 0x8e, 0x01, 0xd4, 0xc7, 0x41, 0x7d, 0x5f, 0x83, 0x2b, 0xac, 0x64, 0xd6,
- 0xd8, 0x19, 0x98, 0xc6, 0x4c, 0x89, 0x69, 0x24, 0xd1, 0x06, 0x03, 0x40, 0x9d, 0xf1, 0xfd, 0x42,
- 0xfb, 0x75, 0x8c, 0xce, 0xd6, 0xf1, 0x15, 0x10, 0x67, 0x2c, 0x4d, 0x15, 0x7b, 0xd3, 0x0a, 0x9b,
- 0xf9, 0x46, 0xca, 0xfe, 0xde, 0x9c, 0xb2, 0xbf, 0x76, 0x7e, 0x65, 0x26, 0x4b, 0xf5, 0x48, 0x16,
- 0x5e, 0xba, 0x0e, 0xc2, 0xbb, 0x2e, 0x26, 0xe3, 0xaa, 0x66, 0x3b, 0xe8, 0x69, 0x48, 0x3e, 0x70,
- 0x31, 0xa1, 0x89, 0x47, 0xfc, 0xe5, 0x89, 0x36, 0x7c, 0x9a, 0xf4, 0x9b, 0x35, 0x48, 0x1e, 0x6a,
- 0xa7, 0x98, 0xe2, 0xe2, 0x79, 0xd8, 0xa4, 0xe4, 0xf1, 0xd9, 0x4d, 0xbf, 0xce, 0xe8, 0x3e, 0x12,
- 0x4a, 0x00, 0x5c, 0x4e, 0xd7, 0x6c, 0x87, 0xb9, 0x4f, 0xef, 0x3d, 0x7b, 0x7e, 0xbe, 0x41, 0x2c,
- 0xb4, 0x2f, 0x3c, 0x08, 0x02, 0x7b, 0x15, 0x1e, 0xef, 0x9a, 0x86, 0xa3, 0x19, 0x2e, 0x56, 0x28,
- 0x76, 0x54, 0x4d, 0x77, 0x09, 0xce, 0xc4, 0x76, 0x22, 0xbb, 0x29, 0xbe, 0x2a, 0xdb, 0x3e, 0xff,
- 0xd8, 0x28, 0x73, 0x2e, 0x3a, 0x01, 0xd1, 0xee, 0x12, 0xcd, 0x72, 0x94, 0x53, 0x95, 0x68, 0x6a,
- 0x47, 0xc7, 0x1c, 0x3f, 0xe9, 0xbd, 0x9b, 0x0b, 0xba, 0x34, 0xcf, 0x2f, 0xd7, 0x64, 0x9a, 0x77,
- 0x7d, 0xc5, 0x50, 0x45, 0xb7, 0xec, 0x69, 0x16, 0xba, 0x3b, 0x85, 0x98, 0x38, 0xf3, 0x70, 0x63,
- 0xb9, 0x87, 0xa5, 0x70, 0x39, 0x03, 0xfe, 0xc4, 0x7c, 0xf0, 0x67, 0x0f, 0xe0, 0xca, 0xbc, 0x70,
- 0x2f, 0x82, 0x83, 0x2f, 0xdb, 0x3f, 0x84, 0x00, 0x39, 0xd2, 0x9f, 0xd6, 0x20, 0xcd, 0xf6, 0x44,
- 0xf3, 0x81, 0xfe, 0xf5, 0x23, 0x65, 0x38, 0xa7, 0xe8, 0x31, 0x56, 0x92, 0xfd, 0x25, 0xbd, 0x9b,
- 0x87, 0x7b, 0x91, 0xc2, 0xbf, 0x3f, 0x55, 0x78, 0x0e, 0xad, 0x1f, 0xac, 0xe6, 0xe5, 0xe2, 0xc5,
- 0x7f, 0xfd, 0x9c, 0xce, 0x77, 0xb6, 0xa9, 0x24, 0xbe, 0x7c, 0x53, 0xf9, 0xff, 0x42, 0xd4, 0x7f,
- 0xd6, 0x20, 0x51, 0xd7, 0xfa, 0x8f, 0x48, 0xdb, 0xc1, 0xe7, 0xb6, 0x9d, 0x05, 0xd8, 0xe0, 0xe9,
- 0x5d, 0x04, 0x7c, 0xed, 0x39, 0x5d, 0xe7, 0xfb, 0x4b, 0x1d, 0x7c, 0x65, 0x4d, 0x67, 0x0e, 0xee,
- 0x92, 0xdf, 0x36, 0xdc, 0xfd, 0x22, 0x06, 0x02, 0xdb, 0xb4, 0x0d, 0x0a, 0xbd, 0xeb, 0xb0, 0xc5,
- 0x26, 0x21, 0x32, 0x77, 0x08, 0x5a, 0xa7, 0xbc, 0xc6, 0xd2, 0xf9, 0x67, 0x6a, 0x4e, 0x89, 0xad,
- 0x32, 0xa7, 0xac, 0xad, 0x74, 0xfb, 0x88, 0x2f, 0xbb, 0x7d, 0x04, 0x79, 0x5c, 0x66, 0x4c, 0x49,
- 0x7c, 0xe3, 0x63, 0xca, 0x7f, 0x63, 0x20, 0xd4, 0x09, 0xb6, 0x1d, 0xf3, 0x11, 0xe9, 0x02, 0xbb,
- 0xb0, 0x61, 0xba, 0x8e, 0xe5, 0x3a, 0xca, 0x89, 0x49, 0x46, 0xaa, 0x93, 0x59, 0xf3, 0xb1, 0x12,
- 0x69, 0xac, 0x73, 0x4e, 0x99, 0x31, 0xd0, 0x73, 0x90, 0xe6, 0xaf, 0x28, 0x8a, 0xa3, 0xf6, 0xa7,
- 0x86, 0x57, 0xe0, 0xf4, 0x96, 0xda, 0x9f, 0x2d, 0x77, 0x62, 0x59, 0xb9, 0x83, 0xb5, 0xba, 0x4c,
- 0xb9, 0x93, 0xdf, 0xf8, 0x75, 0x24, 0xb4, 0x09, 0x7f, 0x0c, 0xeb, 0x47, 0x66, 0xa7, 0xae, 0xab,
- 0x5d, 0x3c, 0xc2, 0x86, 0x43, 0xf7, 0x47, 0x57, 0x77, 0x6d, 0x07, 0x13, 0xc5, 0x50, 0x47, 0x38,
- 0xbc, 0x07, 0xd3, 0x1e, 0xa3, 0xa6, 0x8e, 0x70, 0x58, 0xce, 0x75, 0xb5, 0x1e, 0xf7, 0x41, 0xe5,
- 0x62, 0x81, 0x5c, 0xdb, 0xd5, 0x7a, 0xd2, 0xcf, 0xd6, 0x40, 0x38, 0x32, 0x3b, 0x4d, 0x47, 0x75,
- 0x5c, 0x1b, 0x95, 0x20, 0x6e, 0x3b, 0xaa, 0xc3, 0xcd, 0x6e, 0xee, 0xbd, 0x78, 0xfe, 0x1a, 0x04,
- 0x3a, 0x39, 0xfa, 0x0f, 0xe6, 0x96, 0xb9, 0x32, 0xda, 0x81, 0x64, 0x0f, 0x3b, 0xaa, 0xa6, 0x7b,
- 0x97, 0xdc, 0x83, 0xc4, 0x17, 0x05, 0xb6, 0x4a, 0x3e, 0x19, 0x55, 0x40, 0x64, 0xa2, 0x8a, 0xed,
- 0xa8, 0xc4, 0x51, 0x1c, 0x6d, 0x84, 0xbd, 0x5d, 0x96, 0xf5, 0x5d, 0xfa, 0x0f, 0x58, 0xb9, 0x96,
- 0xff, 0x80, 0xc5, 0x7d, 0x6c, 0x32, 0xc5, 0x26, 0xd5, 0xa3, 0x1c, 0x74, 0x07, 0x52, 0xb6, 0xdb,
- 0xe1, 0x51, 0x27, 0x59, 0xd4, 0x2f, 0xaf, 0x14, 0xb5, 0xa7, 0xc3, 0x8d, 0x06, 0x26, 0xa4, 0xdf,
- 0x46, 0x20, 0xce, 0x32, 0x42, 0x57, 0x61, 0xbb, 0xd9, 0x2a, 0xb4, 0xe4, 0x99, 0x07, 0xa3, 0x34,
- 0x24, 0xeb, 0x72, 0xad, 0x54, 0xa9, 0xdd, 0x16, 0x23, 0x68, 0x13, 0xa0, 0x29, 0xb7, 0xda, 0x75,
- 0xa5, 0x74, 0x5c, 0x93, 0xc5, 0x14, 0x65, 0x36, 0xda, 0xb5, 0x1a, 0x65, 0x46, 0x11, 0x82, 0xcd,
- 0x62, 0xa1, 0x56, 0x94, 0xab, 0x8a, 0xaf, 0x10, 0x0b, 0xd1, 0x9a, 0xad, 0x42, 0xa3, 0x25, 0x97,
- 0xc4, 0x24, 0xda, 0x00, 0x81, 0xd3, 0xaa, 0x72, 0x89, 0x3f, 0x34, 0x31, 0x6b, 0x53, 0x0f, 0x4d,
- 0x8f, 0xc3, 0x56, 0xa1, 0xd5, 0x92, 0xef, 0xd4, 0x5b, 0x4a, 0xb9, 0x50, 0xa9, 0xb6, 0x1b, 0xb2,
- 0x28, 0x48, 0x87, 0x90, 0xf2, 0xd3, 0x40, 0x5b, 0x90, 0x9e, 0x8e, 0x73, 0x03, 0x84, 0x66, 0xfb,
- 0xe0, 0x4e, 0xa5, 0x45, 0x9d, 0x44, 0x10, 0x40, 0xe2, 0xdd, 0xb6, 0xdc, 0x96, 0x4b, 0x62, 0x14,
- 0x89, 0xb0, 0xde, 0x6c, 0x15, 0xaa, 0x32, 0x8d, 0xa1, 0xd5, 0x6e, 0x8a, 0x31, 0xa9, 0xc6, 0x50,
- 0xd6, 0xc0, 0x27, 0x98, 0x60, 0xa3, 0x8b, 0x91, 0xc4, 0xb6, 0xdb, 0x10, 0x77, 0x1d, 0x45, 0xeb,
- 0x85, 0x31, 0x26, 0x78, 0xe4, 0x4a, 0x0f, 0x65, 0x21, 0x31, 0x34, 0x3b, 0x4a, 0x18, 0x5b, 0x91,
- 0x46, 0x7c, 0x68, 0x76, 0x2a, 0x3d, 0xe9, 0xb3, 0x28, 0x6c, 0xbd, 0xa7, 0x12, 0xa3, 0x60, 0x59,
- 0xba, 0xd6, 0x65, 0xef, 0x9b, 0xf4, 0x50, 0x98, 0x45, 0x2c, 0x23, 0xa0, 0x23, 0x1f, 0x74, 0xfc,
- 0xad, 0x2f, 0x7f, 0x7e, 0xf9, 0x66, 0x4c, 0x4e, 0xa0, 0x17, 0xf5, 0xa1, 0xf7, 0x0c, 0xa4, 0x2c,
- 0x62, 0xf6, 0x09, 0xb6, 0x6d, 0xd6, 0xa1, 0xa2, 0x9c, 0x1b, 0x10, 0xe9, 0xbe, 0x70, 0x88, 0xda,
- 0xbd, 0x4f, 0xf7, 0xbb, 0x4b, 0xf4, 0x70, 0x5f, 0x4a, 0xfb, 0x8c, 0x36, 0xd1, 0xa5, 0x9f, 0x2f,
- 0xc3, 0x41, 0x12, 0x62, 0x35, 0xf9, 0x1e, 0xc7, 0x40, 0x4d, 0xbe, 0xa7, 0x34, 0x0b, 0x77, 0x79,
- 0xd9, 0xa7, 0x16, 0x3e, 0x86, 0xd6, 0x21, 0x55, 0x28, 0x16, 0xe5, 0x7a, 0x8b, 0x15, 0x37, 0x04,
- 0x90, 0x38, 0x65, 0x95, 0x2b, 0xb5, 0x4a, 0xf3, 0x50, 0x2e, 0x89, 0x09, 0x5a, 0x21, 0x5a, 0x5a,
- 0x06, 0x09, 0x80, 0xc4, 0x3b, 0x15, 0x86, 0x87, 0x94, 0xf4, 0x57, 0x80, 0x18, 0xed, 0xfa, 0x15,
- 0x10, 0x88, 0x5f, 0x20, 0xb6, 0x88, 0xe9, 0xbd, 0xe7, 0x17, 0x22, 0x3d, 0x28, 0x27, 0x4f, 0x6f,
- 0xa2, 0x4d, 0x4d, 0x59, 0x7e, 0x47, 0xf1, 0xce, 0x85, 0xc5, 0xa6, 0x82, 0xfe, 0xe3, 0xa3, 0x20,
- 0xe8, 0x47, 0x15, 0x80, 0x01, 0x7b, 0xd9, 0x53, 0x86, 0x66, 0x87, 0x2d, 0xf9, 0xc2, 0x33, 0x26,
- 0x78, 0x05, 0x64, 0x31, 0xd1, 0x83, 0x66, 0x10, 0x3c, 0x95, 0x96, 0x41, 0xb0, 0xe9, 0x31, 0xcd,
- 0x2c, 0xad, 0x31, 0x4b, 0xd2, 0xf2, 0x07, 0x27, 0xdf, 0x50, 0xca, 0xf6, 0xdf, 0x6c, 0xaa, 0x90,
- 0xb6, 0xc6, 0x13, 0x4b, 0x71, 0x66, 0xe9, 0xb9, 0x55, 0xde, 0x30, 0x7c, 0x5b, 0xe0, 0xe9, 0x53,
- 0x6b, 0x45, 0x48, 0xb1, 0x69, 0x84, 0x9a, 0xe2, 0x2d, 0xea, 0xbb, 0x4b, 0x2f, 0xb7, 0xbe, 0x9d,
- 0xe4, 0xc0, 0x7b, 0x2e, 0xb8, 0x05, 0x49, 0x4b, 0xeb, 0x33, 0x1b, 0xfc, 0x74, 0xd9, 0x59, 0x36,
- 0xaa, 0xfa, 0x26, 0x12, 0x16, 0x9f, 0xfc, 0x8f, 0x20, 0xcd, 0x53, 0x22, 0xcc, 0xca, 0xd5, 0x65,
- 0x0b, 0x1d, 0x0c, 0x3c, 0xc1, 0x42, 0xdb, 0xc1, 0x28, 0x57, 0x87, 0x0d, 0x6e, 0xcb, 0x7e, 0xa0,
- 0x33, 0x6b, 0xeb, 0xcc, 0xda, 0xf7, 0x56, 0xba, 0xbb, 0xf9, 0xf6, 0x78, 0x38, 0xde, 0x25, 0xb7,
- 0x42, 0xfb, 0x05, 0x3d, 0x72, 0x99, 0xb9, 0x6b, 0xcb, 0x82, 0x0b, 0x8e, 0xe7, 0x20, 0x38, 0x2b,
- 0x18, 0x6e, 0x6e, 0x41, 0xc2, 0x66, 0x2d, 0xda, 0x7b, 0x1d, 0x7a, 0x76, 0x85, 0x6e, 0xce, 0x9b,
- 0xb8, 0xa7, 0x87, 0x8e, 0x61, 0x93, 0x7f, 0x29, 0x03, 0xcd, 0x76, 0x4c, 0x32, 0xce, 0x6c, 0xb0,
- 0x79, 0x61, 0x75, 0x4b, 0x1b, 0x5c, 0xff, 0x90, 0xab, 0xa3, 0x0f, 0x60, 0x7b, 0xac, 0x12, 0x43,
- 0x51, 0x27, 0xad, 0xc7, 0xce, 0x08, 0xcc, 0xe6, 0x8b, 0x2b, 0x37, 0x2b, 0x6e, 0x59, 0x1c, 0x4f,
- 0x53, 0x6d, 0x74, 0x0b, 0xb2, 0xde, 0x5f, 0x5f, 0xbc, 0x81, 0x89, 0x60, 0xdb, 0x74, 0x49, 0x97,
- 0x0f, 0x76, 0xdb, 0x93, 0x63, 0xfb, 0x1a, 0x17, 0x3b, 0x66, 0x52, 0x0d, 0x4f, 0x88, 0x8e, 0x79,
- 0x6f, 0x41, 0xc6, 0xb3, 0x40, 0xe7, 0x30, 0x62, 0xea, 0x6c, 0x2e, 0xb4, 0x99, 0xfe, 0xd6, 0x44,
- 0xff, 0x2a, 0x17, 0x2a, 0x72, 0x19, 0x3a, 0x23, 0xda, 0x54, 0xbb, 0x0c, 0x09, 0x5d, 0xed, 0x60,
- 0xdd, 0xce, 0xa0, 0x65, 0x19, 0xd1, 0x79, 0xaa, 0xca, 0x64, 0x43, 0xb3, 0x94, 0xa7, 0x8d, 0xaa,
- 0x00, 0x76, 0x77, 0x80, 0x7b, 0xae, 0xae, 0x19, 0xfd, 0xcc, 0x95, 0x65, 0x33, 0x14, 0x5d, 0xf1,
- 0x40, 0xdc, 0x9b, 0xca, 0x26, 0xfa, 0xe8, 0x3b, 0x90, 0xa2, 0x87, 0x0b, 0x1b, 0x5d, 0x9e, 0x98,
- 0xe4, 0x90, 0x1c, 0x9a, 0x1d, 0x3a, 0xb6, 0x64, 0xdf, 0x80, 0x74, 0x28, 0x92, 0x0b, 0x0d, 0x57,
- 0x00, 0x29, 0x67, 0x6c, 0xb1, 0x0d, 0x2d, 0xdd, 0x86, 0x8d, 0xa9, 0x40, 0xd0, 0x4d, 0xb8, 0x3a,
- 0x52, 0x3f, 0xf4, 0x87, 0x5c, 0x5b, 0xb1, 0x30, 0x51, 0x06, 0xa6, 0x4b, 0x98, 0xe9, 0x38, 0x8f,
- 0x13, 0x8d, 0xd4, 0x0f, 0xbd, 0x39, 0xd7, 0xae, 0x63, 0x72, 0x68, 0xba, 0x44, 0xfa, 0x34, 0x02,
- 0x62, 0xd3, 0xed, 0x8c, 0x34, 0x87, 0x35, 0xde, 0x07, 0x2e, 0xb6, 0x9d, 0x95, 0x4e, 0xd1, 0x27,
- 0x21, 0x41, 0x70, 0x5f, 0x33, 0x0d, 0xd6, 0x3b, 0x3d, 0xbe, 0x47, 0x42, 0xaf, 0x41, 0x8c, 0xee,
- 0x27, 0xde, 0xa1, 0x9f, 0x5e, 0xb8, 0x98, 0x5c, 0x91, 0x8a, 0x53, 0xb7, 0x84, 0x47, 0x40, 0xdd,
- 0x86, 0x0e, 0x38, 0xc1, 0x23, 0x57, 0x7a, 0x92, 0x0e, 0x1b, 0xb7, 0xf1, 0x57, 0x1a, 0xeb, 0x9c,
- 0x71, 0x20, 0xea, 0x8f, 0x03, 0x3f, 0x89, 0xc1, 0x16, 0xbd, 0x4b, 0x1c, 0x99, 0x1d, 0xfb, 0x72,
- 0x0e, 0x13, 0x67, 0x1d, 0xee, 0x80, 0x60, 0xa9, 0x7d, 0xac, 0xd8, 0xda, 0x47, 0xbc, 0xca, 0x5e,
- 0x79, 0x52, 0x94, 0xda, 0xd4, 0x3e, 0xe2, 0x53, 0x0c, 0x95, 0x70, 0xcc, 0xfb, 0x38, 0x14, 0x73,
- 0xa4, 0xc1, 0x14, 0x5b, 0x94, 0x7a, 0x66, 0x9e, 0x0e, 0xcf, 0x03, 0xe1, 0x79, 0x7a, 0x08, 0xdb,
- 0x34, 0x3d, 0x3e, 0xb5, 0x8e, 0x54, 0xa7, 0x3b, 0xc0, 0x84, 0x1d, 0x2d, 0x9b, 0x7b, 0x6f, 0x2c,
- 0xb8, 0x29, 0x4c, 0x27, 0xed, 0xf7, 0x19, 0x7c, 0x87, 0x1b, 0xf0, 0xde, 0x36, 0x86, 0xd3, 0x54,
- 0x9a, 0xf6, 0x89, 0xa6, 0x3b, 0x98, 0xb0, 0xc3, 0xc2, 0x8b, 0xc6, 0x23, 0x49, 0x37, 0x61, 0x6b,
- 0xc6, 0x8a, 0xff, 0x37, 0xcc, 0xc7, 0xe8, 0xd8, 0x50, 0x28, 0xb6, 0x2a, 0x77, 0x65, 0x6f, 0x2c,
- 0x39, 0xae, 0x29, 0xde, 0xff, 0xa3, 0xd2, 0xbf, 0x22, 0x20, 0xb6, 0xad, 0x9e, 0xea, 0xe0, 0x4b,
- 0x57, 0x3d, 0xba, 0xa8, 0xea, 0xb1, 0xd9, 0xaa, 0xfb, 0xe8, 0x5d, 0xbb, 0x18, 0x7a, 0x6f, 0x41,
- 0xda, 0x65, 0x61, 0xb2, 0xbf, 0x6a, 0x7b, 0xa7, 0xf7, 0xd9, 0x5b, 0x41, 0x59, 0xc3, 0x7a, 0xef,
- 0x8e, 0x6a, 0xdf, 0xe7, 0xaa, 0xc0, 0x75, 0x28, 0x41, 0x7a, 0x08, 0xe2, 0x64, 0xdd, 0x6d, 0xcb,
- 0x34, 0x6c, 0x8c, 0x6e, 0xc2, 0xda, 0xd0, 0xec, 0xf0, 0x77, 0xfd, 0x55, 0x82, 0x89, 0x35, 0x98,
- 0x3c, 0x7a, 0x09, 0xb6, 0x0c, 0xfc, 0xa1, 0xa3, 0x84, 0x70, 0x14, 0x9a, 0x76, 0x37, 0x28, 0xaf,
- 0xee, 0x63, 0x49, 0x32, 0x41, 0x2c, 0xaa, 0x46, 0x17, 0xeb, 0x5f, 0xd7, 0xbe, 0x32, 0x41, 0x2c,
- 0x61, 0x1d, 0x7f, 0x89, 0x92, 0x5e, 0xcc, 0xe1, 0xde, 0xaf, 0x04, 0xd6, 0x30, 0xbd, 0x33, 0x44,
- 0xc7, 0x04, 0xfd, 0x3e, 0x02, 0x42, 0xd0, 0xf8, 0xd0, 0xf5, 0x05, 0x23, 0xc4, 0x4c, 0x77, 0xcc,
- 0x2e, 0x2e, 0x82, 0xf4, 0xde, 0xe7, 0x85, 0xab, 0x93, 0x44, 0x5e, 0xe6, 0xc1, 0xbd, 0x3c, 0x34,
- 0x3b, 0x3f, 0xfd, 0xcb, 0x3f, 0x7f, 0x19, 0x7d, 0x53, 0xba, 0x99, 0x3f, 0xbd, 0x91, 0xf7, 0x04,
- 0xec, 0xfc, 0xc7, 0x13, 0xd1, 0x4f, 0xf2, 0x5c, 0xd6, 0xce, 0x7f, 0xcc, 0x3f, 0x3e, 0x61, 0xbf,
- 0xfa, 0xd8, 0xb7, 0x59, 0x00, 0xfb, 0x91, 0xeb, 0xe8, 0xd3, 0x08, 0x24, 0x78, 0xf7, 0x43, 0x0b,
- 0x4e, 0xa8, 0xa9, 0xfe, 0xb8, 0x2c, 0xda, 0x0f, 0x3e, 0x2f, 0x64, 0xe6, 0x46, 0xab, 0x68, 0x3d,
- 0x16, 0xf0, 0x3e, 0x7a, 0xfd, 0x82, 0x01, 0xe7, 0x3f, 0xe6, 0xea, 0x9f, 0xa0, 0xcf, 0x22, 0x90,
- 0xf2, 0x11, 0x8d, 0x5e, 0x5c, 0xb9, 0xdb, 0x64, 0xaf, 0xaf, 0x22, 0xca, 0x37, 0x88, 0x74, 0xf2,
- 0x79, 0x61, 0xfb, 0x4c, 0x02, 0x73, 0x93, 0xe2, 0x7d, 0x88, 0x25, 0x75, 0x03, 0xe5, 0x2f, 0x98,
- 0x14, 0xfa, 0x75, 0x04, 0x84, 0xa0, 0x0d, 0x2d, 0xc2, 0xcb, 0x6c, 0xaf, 0x5a, 0x56, 0x01, 0x99,
- 0x45, 0xf4, 0xf6, 0xde, 0xa5, 0x97, 0x79, 0x9f, 0xb5, 0x9f, 0x3f, 0x44, 0x40, 0x08, 0x36, 0xf1,
- 0xa2, 0xf8, 0x66, 0x77, 0xfa, 0xb2, 0xf8, 0xf0, 0x32, 0x84, 0x94, 0xa4, 0xb7, 0x2f, 0x1d, 0x7a,
- 0x97, 0x05, 0x43, 0xb1, 0xfd, 0xbb, 0x08, 0x08, 0x41, 0x4f, 0x58, 0x14, 0xff, 0x6c, 0xe3, 0xc8,
- 0x3e, 0x71, 0xa6, 0xc7, 0xca, 0x23, 0xcb, 0x19, 0xaf, 0x00, 0xed, 0xeb, 0x97, 0x5e, 0xf3, 0xec,
- 0x3b, 0x7f, 0x2c, 0x5c, 0x0b, 0xa2, 0xe2, 0xfe, 0x55, 0x4b, 0xb3, 0x73, 0x5d, 0x73, 0xf4, 0xe7,
- 0x42, 0x6e, 0xe0, 0x38, 0x96, 0xbd, 0x9f, 0xcf, 0x3f, 0x7c, 0xf8, 0x70, 0x86, 0x99, 0x57, 0x5d,
- 0x67, 0xc0, 0x7f, 0xdf, 0xf5, 0x8a, 0xa5, 0xab, 0xce, 0x89, 0x49, 0x46, 0x07, 0x23, 0x78, 0xaa,
- 0x6b, 0x8e, 0xce, 0x4d, 0xf9, 0x40, 0xa0, 0x88, 0xaf, 0xd3, 0xec, 0xea, 0x91, 0xf7, 0x6f, 0x79,
- 0x62, 0x7d, 0x53, 0x57, 0x8d, 0x7e, 0xce, 0x24, 0xfd, 0x7c, 0x1f, 0x1b, 0x2c, 0xf7, 0xfc, 0xc4,
- 0xd7, 0xd9, 0x9f, 0x90, 0xbd, 0xe9, 0x7f, 0x77, 0x12, 0x4c, 0xf8, 0xd5, 0xff, 0x05, 0x00, 0x00,
- 0xff, 0xff, 0x69, 0x0c, 0xe0, 0xc6, 0x6e, 0x26, 0x00, 0x00,
+ // 2776 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0xcd, 0x6f, 0xe3, 0xc6,
+ 0x15, 0x0f, 0x45, 0x59, 0x12, 0x9f, 0xfc, 0x41, 0x4f, 0x76, 0xb3, 0x82, 0x93, 0x34, 0x2e, 0x93,
+ 0x26, 0x1b, 0x27, 0x91, 0xba, 0x4e, 0xba, 0x48, 0x9c, 0xb4, 0x59, 0xda, 0xa6, 0xd6, 0x72, 0xb4,
+ 0xb2, 0xa2, 0x8f, 0xdd, 0x26, 0x01, 0x4a, 0x50, 0xd2, 0x58, 0xa2, 0x96, 0x22, 0xb9, 0xfc, 0xf0,
+ 0x46, 0x59, 0xe4, 0xd0, 0xf6, 0xd0, 0xde, 0x7b, 0xee, 0xa9, 0xa7, 0x02, 0xcd, 0xa1, 0x7f, 0x40,
+ 0xff, 0x80, 0xe4, 0x52, 0xa0, 0x3d, 0x14, 0xd8, 0xa2, 0x41, 0x0e, 0x05, 0x7a, 0xe9, 0xa9, 0x40,
+ 0xd1, 0x4b, 0x0f, 0xc5, 0xcc, 0x90, 0x14, 0x25, 0xcb, 0x92, 0xec, 0x04, 0x49, 0x37, 0xa7, 0xe5,
+ 0xbe, 0xaf, 0x79, 0x6f, 0xde, 0x6f, 0xde, 0x7b, 0x33, 0x32, 0x3c, 0xdb, 0xb5, 0xac, 0xae, 0x81,
+ 0x0b, 0x6d, 0xc3, 0xf2, 0x3b, 0x85, 0x8e, 0xe6, 0x69, 0xb6, 0x63, 0xb5, 0x0b, 0x27, 0xd7, 0x0a,
+ 0x7d, 0xab, 0xe5, 0xe6, 0x6d, 0xc7, 0xf2, 0x2c, 0x94, 0x63, 0x42, 0x79, 0x2a, 0x94, 0x0f, 0x85,
+ 0xf2, 0x27, 0xd7, 0x36, 0x9e, 0x0a, 0xd4, 0x35, 0x5b, 0x2f, 0x68, 0xa6, 0x69, 0x79, 0x9a, 0xa7,
+ 0x5b, 0x66, 0xa0, 0xb7, 0x71, 0x25, 0xc6, 0x6d, 0x1b, 0x3a, 0x36, 0xbd, 0x80, 0xf1, 0x4c, 0x8c,
+ 0x71, 0xac, 0x63, 0xa3, 0xa3, 0xb6, 0x70, 0x4f, 0x3b, 0xd1, 0x2d, 0x27, 0x10, 0x08, 0xdd, 0x32,
+ 0x2c, 0xb3, 0xeb, 0xf8, 0xa6, 0xa9, 0x9b, 0xdd, 0x82, 0x65, 0x63, 0x67, 0xcc, 0xfc, 0x93, 0x81,
+ 0x10, 0xfd, 0x5f, 0xcb, 0x3f, 0x2e, 0xe0, 0x81, 0xed, 0x0d, 0x03, 0xe6, 0xe6, 0x24, 0x93, 0xad,
+ 0x33, 0xd0, 0xdc, 0xbb, 0x13, 0x4e, 0x44, 0x12, 0x9e, 0x3e, 0xc0, 0xae, 0xa7, 0x0d, 0x6c, 0x26,
+ 0x20, 0x7d, 0x9e, 0x80, 0x95, 0xb2, 0xd5, 0xed, 0xea, 0x66, 0x77, 0xcf, 0x32, 0x8f, 0xf5, 0x2e,
+ 0xea, 0xc1, 0x7a, 0xc7, 0xd1, 0x4f, 0xb0, 0xa3, 0x1a, 0x56, 0x57, 0x35, 0xf0, 0x09, 0x36, 0xdc,
+ 0x5c, 0x62, 0x93, 0xbf, 0x9a, 0xdd, 0x7e, 0x2b, 0x7f, 0xd6, 0x26, 0xe5, 0xc7, 0x6c, 0xe4, 0xf7,
+ 0xa9, 0x81, 0xb2, 0xd5, 0x2d, 0x53, 0x75, 0xc5, 0xf4, 0x9c, 0x61, 0x6d, 0xad, 0x33, 0x4e, 0xdd,
+ 0xb8, 0x07, 0x97, 0xa6, 0x09, 0x22, 0x11, 0xf8, 0xbb, 0x78, 0x98, 0xe3, 0x36, 0xb9, 0xab, 0x42,
+ 0x8d, 0x7c, 0xa2, 0x3d, 0x58, 0x3a, 0xd1, 0x0c, 0x1f, 0xe7, 0x12, 0x9b, 0xdc, 0xd5, 0xd5, 0xed,
+ 0x57, 0x16, 0xf5, 0x83, 0x5a, 0xad, 0x31, 0xdd, 0x9d, 0xc4, 0xeb, 0x9c, 0x64, 0xc3, 0x12, 0xa5,
+ 0xa1, 0xcb, 0xb0, 0x5e, 0x56, 0x6e, 0x2b, 0x65, 0xb5, 0x59, 0xa9, 0x57, 0x95, 0xbd, 0x52, 0xb1,
+ 0xa4, 0xec, 0x8b, 0x8f, 0xa1, 0x34, 0xf0, 0x72, 0xb9, 0x2c, 0x72, 0x48, 0x80, 0xa5, 0x46, 0x4d,
+ 0xde, 0x53, 0xc4, 0x04, 0xf9, 0xdc, 0x57, 0x76, 0x9b, 0x37, 0x45, 0x1e, 0x65, 0x20, 0x59, 0xaa,
+ 0x14, 0x8f, 0xc4, 0x24, 0xf9, 0xba, 0x23, 0xd7, 0x2a, 0xe2, 0x12, 0x61, 0x2b, 0xb5, 0xda, 0x51,
+ 0x4d, 0x4c, 0x91, 0xcf, 0xa2, 0xdc, 0x90, 0xcb, 0x62, 0x9a, 0x18, 0x3a, 0x2a, 0x16, 0xc5, 0x8c,
+ 0xf4, 0x37, 0x1e, 0x84, 0x03, 0xad, 0x63, 0x59, 0xf6, 0xa1, 0xd5, 0x42, 0x2f, 0xc1, 0xfa, 0x40,
+ 0xd3, 0x4d, 0xb5, 0xaf, 0x39, 0xea, 0xb1, 0x6e, 0x60, 0xd5, 0x77, 0x74, 0x16, 0xe8, 0xc1, 0x63,
+ 0xb5, 0x55, 0xc2, 0x3a, 0xd4, 0x9c, 0xa2, 0x6e, 0xe0, 0xa6, 0xa3, 0xa3, 0x67, 0x00, 0xa8, 0x70,
+ 0xdb, 0xd0, 0x5c, 0x97, 0x86, 0x4e, 0xa4, 0x04, 0x42, 0xdb, 0x23, 0x24, 0x74, 0x05, 0x92, 0x9a,
+ 0xd3, 0x75, 0x73, 0xfc, 0x26, 0x7f, 0x55, 0xd8, 0xe5, 0xbf, 0x90, 0xb9, 0x1a, 0x25, 0xa0, 0x17,
+ 0x60, 0x25, 0xbe, 0x82, 0x9b, 0x4b, 0x8e, 0x24, 0xb2, 0xfd, 0x68, 0x05, 0x17, 0x6d, 0x82, 0x30,
+ 0x12, 0x5a, 0x1a, 0x09, 0x65, 0x8e, 0x43, 0x89, 0xe7, 0x61, 0x59, 0x73, 0xda, 0x3d, 0xfd, 0x24,
+ 0x10, 0x4a, 0xc5, 0x2c, 0x05, 0x0c, 0x2a, 0xf7, 0x63, 0x00, 0xdb, 0x21, 0xf0, 0xf5, 0x74, 0xec,
+ 0xe6, 0xd2, 0x14, 0x2f, 0xaf, 0x9e, 0x9d, 0xa7, 0x68, 0x4b, 0xf2, 0xd5, 0x48, 0x8b, 0x66, 0x9f,
+ 0x99, 0x8e, 0xd9, 0x42, 0x75, 0x58, 0x35, 0x58, 0x56, 0xd5, 0x36, 0x4d, 0x6b, 0x2e, 0xb3, 0xc9,
+ 0x5d, 0xcd, 0x6e, 0xbf, 0xb0, 0x20, 0x0a, 0x98, 0xc5, 0x15, 0x23, 0x4e, 0xdb, 0xf8, 0x21, 0xac,
+ 0x4d, 0x2c, 0x3c, 0x05, 0x76, 0x97, 0xe2, 0xb0, 0x13, 0x62, 0x38, 0xda, 0xcd, 0x40, 0x8a, 0xa1,
+ 0x59, 0xfa, 0x2b, 0x0f, 0x99, 0xba, 0xad, 0x39, 0x77, 0xbf, 0xdd, 0xe9, 0xbd, 0x33, 0x25, 0xbd,
+ 0xdb, 0x67, 0x27, 0x20, 0xdc, 0x91, 0x47, 0x3d, 0xbb, 0xff, 0xe4, 0x01, 0xaa, 0xc3, 0x28, 0xbf,
+ 0xaf, 0xc1, 0x25, 0x9a, 0x32, 0x7b, 0xe8, 0xf5, 0x2c, 0x73, 0x22, 0xc5, 0xc4, 0x93, 0x44, 0x8d,
+ 0x02, 0xa0, 0x4a, 0xf9, 0x61, 0xa2, 0xc3, 0x3c, 0x26, 0x26, 0xf3, 0xf8, 0x0a, 0x88, 0x13, 0x96,
+ 0xc6, 0x92, 0xbd, 0x6a, 0xc7, 0xcd, 0x7c, 0x23, 0x69, 0x7f, 0x6f, 0x4a, 0xda, 0x5f, 0x3b, 0x3b,
+ 0x33, 0xa3, 0xad, 0x7a, 0x24, 0x13, 0x2f, 0x6d, 0x81, 0xf0, 0xae, 0x8f, 0x9d, 0x61, 0x59, 0x77,
+ 0x3d, 0xf4, 0x34, 0xa4, 0xef, 0xf9, 0xd8, 0x21, 0x81, 0x73, 0xe1, 0xf6, 0x24, 0x6a, 0x21, 0x4d,
+ 0xfa, 0x4d, 0x12, 0xd2, 0x07, 0xfa, 0x09, 0x26, 0xb8, 0x78, 0x1e, 0x56, 0x09, 0x79, 0x78, 0xfa,
+ 0xd0, 0x2f, 0x53, 0x7a, 0x88, 0x84, 0x7d, 0x00, 0x26, 0x67, 0xe8, 0xae, 0x47, 0x97, 0xcf, 0x6e,
+ 0x3f, 0x7b, 0x76, 0xbc, 0x91, 0x2f, 0xa4, 0x2e, 0xdc, 0x8b, 0x1c, 0x7b, 0x15, 0x1e, 0x6f, 0x5b,
+ 0xa6, 0xa7, 0x9b, 0x3e, 0x56, 0x09, 0x76, 0x34, 0xdd, 0xf0, 0x1d, 0x9c, 0xe3, 0x37, 0xb9, 0xab,
+ 0x19, 0xb6, 0x2b, 0xeb, 0x21, 0xff, 0xc8, 0x2c, 0x32, 0x2e, 0x3a, 0x06, 0xd1, 0x6d, 0x3b, 0xba,
+ 0xed, 0xa9, 0x27, 0x9a, 0xa3, 0x6b, 0x2d, 0x03, 0x33, 0xfc, 0x64, 0xb7, 0xaf, 0xcf, 0xa8, 0xd2,
+ 0x2c, 0xbe, 0x7c, 0x9d, 0x6a, 0xde, 0x0e, 0x15, 0x63, 0x19, 0x5d, 0x73, 0xc7, 0x59, 0xe8, 0xf6,
+ 0x18, 0x62, 0x96, 0xe8, 0x0a, 0xd7, 0xe6, 0xaf, 0x30, 0x17, 0x2e, 0xa7, 0xc0, 0x9f, 0x9a, 0x0e,
+ 0xfe, 0x8d, 0x5d, 0xb8, 0x34, 0xcd, 0xdd, 0xf3, 0xe0, 0xe0, 0xcb, 0xd6, 0x0f, 0x21, 0x42, 0x8e,
+ 0xf4, 0xc7, 0x24, 0x64, 0xe9, 0x99, 0xa8, 0xdf, 0x33, 0xbe, 0x7e, 0xa4, 0xf4, 0xa7, 0x24, 0x9d,
+ 0xa7, 0x29, 0xd9, 0x99, 0x53, 0xbb, 0x99, 0xbb, 0xe7, 0x49, 0xfc, 0xfb, 0x63, 0x89, 0x67, 0xd0,
+ 0xfa, 0xc1, 0x62, 0xab, 0x9c, 0x3f, 0xf9, 0xaf, 0x9f, 0x51, 0xf9, 0x4e, 0x17, 0x95, 0xd4, 0x97,
+ 0x2f, 0x2a, 0xff, 0x5f, 0x88, 0xfa, 0x77, 0x12, 0x52, 0x55, 0xbd, 0xfb, 0x88, 0x94, 0x1d, 0x7c,
+ 0x66, 0xd9, 0x99, 0x81, 0x0d, 0x16, 0xde, 0x79, 0xc0, 0xd7, 0x9c, 0x52, 0x75, 0xbe, 0x3f, 0x77,
+ 0x81, 0xaf, 0xac, 0xe8, 0x4c, 0xc1, 0x5d, 0xfa, 0xdb, 0x86, 0xbb, 0x5f, 0xf2, 0x20, 0xd0, 0x43,
+ 0x5b, 0x23, 0xd0, 0xdb, 0x82, 0x35, 0x3a, 0x09, 0x39, 0x53, 0x87, 0xa0, 0x65, 0xc2, 0xab, 0xcd,
+ 0x9d, 0x7f, 0xc6, 0xe6, 0x14, 0x7e, 0x91, 0x39, 0x25, 0xb9, 0xd0, 0xed, 0x63, 0x69, 0xde, 0xed,
+ 0x23, 0x8a, 0xe3, 0x22, 0x63, 0x4a, 0xea, 0x1b, 0x1f, 0x53, 0xfe, 0xc3, 0x83, 0x50, 0x75, 0xb0,
+ 0xeb, 0x59, 0x8f, 0x48, 0x15, 0xb8, 0x0a, 0x2b, 0x96, 0xef, 0xd9, 0xbe, 0xa7, 0x1e, 0x5b, 0xce,
+ 0x40, 0xf3, 0x72, 0xc9, 0x10, 0x2b, 0x5c, 0x6d, 0x99, 0x71, 0x8a, 0x94, 0x81, 0x9e, 0x83, 0x2c,
+ 0x7b, 0x45, 0x51, 0x3d, 0xad, 0x3b, 0x36, 0xbc, 0x02, 0xa3, 0x37, 0xb4, 0xee, 0x64, 0xba, 0x53,
+ 0xf3, 0xd2, 0x1d, 0xed, 0xd5, 0x45, 0xd2, 0x9d, 0xfe, 0xc6, 0xaf, 0x23, 0xb1, 0x43, 0xf8, 0x13,
+ 0x58, 0x3e, 0xb4, 0x5a, 0x55, 0x43, 0x6b, 0xe3, 0x01, 0x36, 0x3d, 0x72, 0x3e, 0xda, 0x86, 0xef,
+ 0x7a, 0xd8, 0x51, 0x4d, 0x6d, 0x80, 0xe3, 0x67, 0x30, 0x1b, 0x30, 0x2a, 0xda, 0x00, 0xc7, 0xe5,
+ 0x7c, 0x5f, 0xef, 0xb0, 0x35, 0x88, 0x1c, 0x1f, 0xc9, 0x35, 0x7d, 0xbd, 0x23, 0xfd, 0x3c, 0x09,
+ 0xc2, 0xa1, 0xd5, 0xaa, 0x7b, 0x9a, 0xe7, 0xbb, 0x68, 0x1f, 0x96, 0x5c, 0x4f, 0xf3, 0x98, 0xd9,
+ 0xd5, 0xed, 0x17, 0xcf, 0xde, 0x83, 0x48, 0x27, 0x4f, 0xfe, 0xc1, 0xcc, 0x32, 0x53, 0x46, 0x9b,
+ 0x90, 0xee, 0x60, 0x4f, 0xd3, 0x8d, 0xe0, 0x92, 0xbb, 0x9b, 0xfa, 0x42, 0xa6, 0xbb, 0x14, 0x92,
+ 0x51, 0x09, 0x44, 0x2a, 0xaa, 0xba, 0x9e, 0xe6, 0x78, 0xaa, 0xa7, 0x0f, 0x70, 0x70, 0xca, 0x36,
+ 0xc2, 0x25, 0xc3, 0x07, 0xac, 0x7c, 0x23, 0x7c, 0xc0, 0x62, 0x6b, 0xac, 0x52, 0xc5, 0x3a, 0xd1,
+ 0x23, 0x1c, 0x74, 0x0b, 0x32, 0xae, 0xdf, 0x62, 0x5e, 0xa7, 0xa9, 0xd7, 0x2f, 0x2f, 0xe4, 0x75,
+ 0xa0, 0xc3, 0x8c, 0x46, 0x26, 0xa4, 0xdf, 0x72, 0xb0, 0x44, 0x23, 0x42, 0x97, 0x61, 0xbd, 0xde,
+ 0x90, 0x1b, 0xca, 0xc4, 0x83, 0x51, 0x16, 0xd2, 0x55, 0xa5, 0xb2, 0x5f, 0xaa, 0xdc, 0x14, 0x39,
+ 0xb4, 0x0a, 0x50, 0x57, 0x1a, 0xcd, 0xaa, 0xba, 0x7f, 0x54, 0x51, 0xc4, 0x0c, 0x61, 0xd6, 0x9a,
+ 0x95, 0x0a, 0x61, 0x26, 0x10, 0x82, 0xd5, 0x3d, 0xb9, 0xb2, 0xa7, 0x94, 0xd5, 0x50, 0x81, 0x8f,
+ 0xd1, 0xea, 0x0d, 0xb9, 0xd6, 0x50, 0xf6, 0xc5, 0x34, 0x5a, 0x01, 0x81, 0xd1, 0xca, 0xca, 0x3e,
+ 0x7b, 0x68, 0xa2, 0xd6, 0xc6, 0x1e, 0x9a, 0x1e, 0x87, 0x35, 0xb9, 0xd1, 0x50, 0x6e, 0x55, 0x1b,
+ 0x6a, 0x51, 0x2e, 0x95, 0x9b, 0x35, 0x45, 0x14, 0xa4, 0x03, 0xc8, 0x84, 0x61, 0xa0, 0x35, 0xc8,
+ 0x8e, 0xfb, 0xb9, 0x02, 0x42, 0xbd, 0xb9, 0x7b, 0xab, 0xd4, 0x20, 0x8b, 0x70, 0x08, 0x20, 0xf5,
+ 0x6e, 0x53, 0x69, 0x2a, 0xfb, 0x62, 0x02, 0x89, 0xb0, 0x5c, 0x6f, 0xc8, 0x65, 0x85, 0xf8, 0xd0,
+ 0x68, 0xd6, 0x45, 0x5e, 0xaa, 0x50, 0x94, 0xd5, 0xf0, 0x31, 0x76, 0xb0, 0xd9, 0xc6, 0x48, 0xa2,
+ 0xc7, 0xad, 0x8f, 0xdb, 0x9e, 0xaa, 0x77, 0xe2, 0x18, 0x13, 0x02, 0x72, 0xa9, 0x83, 0x36, 0x20,
+ 0xd5, 0xb7, 0x5a, 0x6a, 0x1c, 0x5b, 0x5c, 0x6d, 0xa9, 0x6f, 0xb5, 0x4a, 0x1d, 0xe9, 0xd3, 0x04,
+ 0xac, 0xbd, 0xa7, 0x39, 0xa6, 0x6c, 0xdb, 0x86, 0xde, 0xa6, 0xef, 0x9b, 0xa4, 0x29, 0x4c, 0x22,
+ 0x96, 0x12, 0xd0, 0x61, 0x08, 0x3a, 0xf6, 0xd6, 0x57, 0x38, 0x3b, 0x7d, 0x13, 0x26, 0x47, 0xd0,
+ 0x4b, 0x84, 0xd0, 0x7b, 0x06, 0x32, 0xb6, 0x63, 0x75, 0x1d, 0xec, 0xba, 0xb4, 0x42, 0x25, 0x18,
+ 0x37, 0x22, 0x92, 0x73, 0xe1, 0x39, 0x5a, 0xfb, 0x2e, 0x39, 0xef, 0xbe, 0x63, 0xc4, 0xeb, 0x52,
+ 0x36, 0x64, 0x34, 0x1d, 0x43, 0xfa, 0xc5, 0x3c, 0x1c, 0xa4, 0x81, 0xaf, 0x28, 0x77, 0x18, 0x06,
+ 0x2a, 0xca, 0x1d, 0xb5, 0x2e, 0xdf, 0x66, 0x69, 0x1f, 0xdb, 0x78, 0x1e, 0x2d, 0x43, 0x46, 0xde,
+ 0xdb, 0x53, 0xaa, 0x0d, 0x9a, 0xdc, 0x18, 0x40, 0x96, 0x08, 0xab, 0x58, 0xaa, 0x94, 0xea, 0x07,
+ 0xca, 0xbe, 0x98, 0x22, 0x19, 0x22, 0xa9, 0xa5, 0x90, 0x00, 0x48, 0xbd, 0x53, 0xa2, 0x78, 0xc8,
+ 0x48, 0xff, 0x02, 0xe0, 0x49, 0xd5, 0x2f, 0x81, 0xe0, 0x84, 0x09, 0xa2, 0x9b, 0x98, 0xdd, 0x7e,
+ 0x7e, 0x26, 0xd2, 0xa3, 0x74, 0xb2, 0xf0, 0x46, 0xda, 0xc4, 0x94, 0x1d, 0x56, 0x94, 0xa0, 0x2f,
+ 0xcc, 0x36, 0x15, 0xd5, 0x9f, 0x10, 0x05, 0x51, 0x3d, 0x2a, 0x01, 0xf4, 0xe8, 0xcb, 0x9e, 0xda,
+ 0xb7, 0x5a, 0x74, 0xcb, 0x67, 0xf6, 0x98, 0xe8, 0x15, 0x90, 0xfa, 0x44, 0x1a, 0x4d, 0x2f, 0x7a,
+ 0x2a, 0x2d, 0x82, 0xe0, 0x92, 0x36, 0x4d, 0x2d, 0x25, 0xa9, 0x25, 0x69, 0xfe, 0x83, 0x53, 0x68,
+ 0x28, 0xe3, 0x86, 0x6f, 0x36, 0x65, 0xc8, 0xda, 0xc3, 0x91, 0xa5, 0x25, 0x6a, 0xe9, 0xb9, 0x45,
+ 0xde, 0x30, 0x42, 0x5b, 0x10, 0xe8, 0x13, 0x6b, 0x7b, 0x90, 0xa1, 0xd3, 0x08, 0x31, 0xc5, 0x4a,
+ 0xd4, 0x77, 0xe7, 0x5e, 0x6e, 0x43, 0x3b, 0xe9, 0x5e, 0xf0, 0x5c, 0x70, 0x03, 0xd2, 0xb6, 0xde,
+ 0xa5, 0x36, 0x58, 0x77, 0xd9, 0x9c, 0x37, 0xaa, 0x86, 0x26, 0x52, 0x36, 0x9b, 0xfc, 0x0f, 0x21,
+ 0xcb, 0x42, 0x72, 0xa8, 0x95, 0xcb, 0xf3, 0x36, 0x3a, 0x1a, 0x78, 0xa2, 0x8d, 0x76, 0xa3, 0x51,
+ 0xae, 0x0a, 0x2b, 0xcc, 0x96, 0x7b, 0xcf, 0xa0, 0xd6, 0x96, 0xa9, 0xb5, 0xef, 0x2d, 0x74, 0x77,
+ 0x0b, 0xed, 0x31, 0x77, 0x82, 0x4b, 0x6e, 0x89, 0xd4, 0x0b, 0xd2, 0x72, 0xa9, 0xb9, 0x2b, 0xf3,
+ 0x9c, 0x8b, 0xda, 0x73, 0xe4, 0x9c, 0x1d, 0x0d, 0x37, 0x37, 0x20, 0xe5, 0xd2, 0x12, 0x1d, 0xbc,
+ 0x0e, 0x3d, 0xbb, 0x40, 0x35, 0x67, 0x45, 0x3c, 0xd0, 0x43, 0x47, 0xb0, 0xca, 0xbe, 0xd4, 0x9e,
+ 0xee, 0x7a, 0x96, 0x33, 0xcc, 0xad, 0xd0, 0x79, 0x61, 0x71, 0x4b, 0x2b, 0x4c, 0xff, 0x80, 0xa9,
+ 0xa3, 0x0f, 0x60, 0x7d, 0xa8, 0x39, 0xa6, 0xaa, 0x8d, 0x4a, 0x8f, 0x9b, 0x13, 0xa8, 0xcd, 0x17,
+ 0x17, 0x2e, 0x56, 0xcc, 0xb2, 0x38, 0x1c, 0xa7, 0xba, 0xe8, 0x06, 0x6c, 0x04, 0xbf, 0xbe, 0x04,
+ 0x03, 0x93, 0x83, 0x5d, 0xcb, 0x77, 0xda, 0x6c, 0xb0, 0x5b, 0x1f, 0xb5, 0xed, 0x2b, 0x4c, 0xec,
+ 0x88, 0x4a, 0xd5, 0x02, 0x21, 0x32, 0xe6, 0xbd, 0x05, 0xb9, 0xc0, 0x02, 0x99, 0xc3, 0x1c, 0xcb,
+ 0xa0, 0x73, 0xa1, 0x4b, 0xf5, 0xd7, 0x46, 0xfa, 0x97, 0x99, 0xd0, 0x1e, 0x93, 0x21, 0x33, 0xa2,
+ 0x4b, 0xb4, 0x8b, 0x90, 0x32, 0xb4, 0x16, 0x36, 0xdc, 0x1c, 0x9a, 0x17, 0x11, 0x99, 0xa7, 0xca,
+ 0x54, 0x36, 0x36, 0x4b, 0x05, 0xda, 0xa8, 0x0c, 0xe0, 0xb6, 0x7b, 0xb8, 0xe3, 0x1b, 0xba, 0xd9,
+ 0xcd, 0x5d, 0x9a, 0x37, 0x43, 0x91, 0x1d, 0x8f, 0xc4, 0x83, 0xa9, 0x6c, 0xa4, 0x8f, 0xbe, 0x03,
+ 0x19, 0xd2, 0x5c, 0xe8, 0xe8, 0xf2, 0xc4, 0x28, 0x86, 0x74, 0xdf, 0x6a, 0x91, 0xb1, 0x85, 0x34,
+ 0x93, 0x8e, 0x65, 0xe2, 0x5c, 0x2e, 0x9c, 0x42, 0xf9, 0x1a, 0x25, 0x6c, 0xbc, 0x01, 0xd9, 0x98,
+ 0x8b, 0xe7, 0x9a, 0xba, 0x00, 0x32, 0xde, 0xd0, 0xa6, 0x27, 0x5d, 0xba, 0x09, 0x2b, 0x63, 0x1e,
+ 0xa2, 0xeb, 0x70, 0x79, 0xa0, 0x7d, 0x18, 0x4e, 0xbf, 0xae, 0x6a, 0x63, 0x47, 0xed, 0x59, 0xbe,
+ 0x43, 0x4d, 0x2f, 0xb1, 0x00, 0xd0, 0x40, 0xfb, 0x30, 0x18, 0x80, 0xdd, 0x2a, 0x76, 0x0e, 0x2c,
+ 0xdf, 0x91, 0x3e, 0xe1, 0x40, 0xac, 0xfb, 0xad, 0x81, 0xee, 0xd1, 0x8a, 0x7c, 0xcf, 0xc7, 0xae,
+ 0xb7, 0x50, 0x7b, 0x7d, 0x12, 0x52, 0x0e, 0xee, 0xea, 0x96, 0x49, 0x8b, 0x6a, 0xc0, 0x0f, 0x48,
+ 0xe8, 0x35, 0xe0, 0xc9, 0x41, 0x63, 0xa5, 0xfb, 0xe9, 0x99, 0xbb, 0xcc, 0x14, 0x89, 0x38, 0x59,
+ 0xd6, 0x61, 0x1e, 0x90, 0x65, 0x63, 0x9d, 0x4f, 0x08, 0xc8, 0xa5, 0x8e, 0xf4, 0x17, 0x0e, 0xb2,
+ 0x87, 0x56, 0xeb, 0x16, 0xf6, 0x34, 0x62, 0x28, 0xd6, 0xe5, 0xb9, 0x51, 0x1a, 0x58, 0x97, 0x8f,
+ 0x1d, 0xd5, 0xc4, 0x05, 0x8f, 0xea, 0x16, 0xac, 0x46, 0x3f, 0x80, 0xaa, 0x64, 0xf3, 0x47, 0xc1,
+ 0xf2, 0xb5, 0x95, 0x88, 0xd5, 0x18, 0xda, 0x18, 0xfd, 0x08, 0x20, 0x36, 0x2d, 0x26, 0x17, 0x9b,
+ 0x16, 0x05, 0x37, 0x1c, 0x14, 0x25, 0x03, 0x56, 0x6e, 0xe2, 0xaf, 0x34, 0x0b, 0x53, 0x26, 0xa0,
+ 0x44, 0x38, 0x01, 0xfd, 0x94, 0x87, 0x35, 0x72, 0x7d, 0x3a, 0xb4, 0x5a, 0xee, 0xc5, 0x16, 0x4c,
+ 0x9d, 0x5e, 0x70, 0x13, 0x04, 0x5b, 0xeb, 0x62, 0xd5, 0xd5, 0x3f, 0x62, 0xf8, 0x0d, 0x80, 0x97,
+ 0x21, 0xd4, 0xba, 0xfe, 0x11, 0x1b, 0xdc, 0x88, 0x84, 0x67, 0xdd, 0xc5, 0x31, 0x9f, 0xb9, 0x1a,
+ 0x55, 0x6c, 0x10, 0xea, 0xa9, 0x2b, 0x44, 0x7c, 0x04, 0x8a, 0x5f, 0x21, 0xfa, 0xb0, 0x4e, 0xc2,
+ 0x63, 0x83, 0xfa, 0x40, 0xf3, 0xda, 0x3d, 0xec, 0xd0, 0x6e, 0xba, 0xba, 0xfd, 0xc6, 0x8c, 0xcb,
+ 0xd1, 0x78, 0xd0, 0x61, 0xe6, 0xf1, 0x2d, 0x66, 0x20, 0x78, 0xce, 0xe9, 0x8f, 0x53, 0x49, 0xd8,
+ 0xc7, 0xba, 0xe1, 0x61, 0x87, 0xf6, 0xc7, 0xc0, 0x9b, 0x80, 0x24, 0x5d, 0x87, 0xb5, 0x09, 0x2b,
+ 0xe1, 0xcf, 0xb6, 0x8f, 0x91, 0x49, 0x49, 0xde, 0x6b, 0x94, 0x6e, 0x2b, 0xc1, 0x24, 0x76, 0x54,
+ 0x51, 0x83, 0xff, 0x27, 0xa4, 0x7f, 0x70, 0x20, 0x36, 0xed, 0x8e, 0xe6, 0xe1, 0x0b, 0x67, 0x3d,
+ 0x31, 0x2b, 0xeb, 0xfc, 0x64, 0xd6, 0xc3, 0x73, 0x99, 0x3c, 0xdf, 0xb9, 0xbc, 0x01, 0x59, 0x9f,
+ 0xba, 0x49, 0x7f, 0xc8, 0x0f, 0x06, 0x96, 0xd3, 0xd0, 0x2e, 0xea, 0xd8, 0xe8, 0xdc, 0xd2, 0xdc,
+ 0xbb, 0x4c, 0x15, 0x98, 0x0e, 0x21, 0x48, 0xf7, 0x41, 0x1c, 0xed, 0xbb, 0x6b, 0x5b, 0xa6, 0x8b,
+ 0xd1, 0x75, 0x48, 0xf6, 0xad, 0x16, 0xfb, 0x29, 0x63, 0x11, 0x67, 0xf8, 0x1a, 0x95, 0x47, 0x2f,
+ 0xc1, 0x9a, 0x89, 0x3f, 0xf4, 0xd4, 0x18, 0x8e, 0x62, 0x03, 0xfe, 0x0a, 0xe1, 0x55, 0x43, 0x2c,
+ 0x49, 0x16, 0x88, 0x7b, 0x9a, 0xd9, 0xc6, 0xc6, 0xd7, 0x75, 0xae, 0x2c, 0x10, 0xf7, 0xb1, 0x81,
+ 0xbf, 0x44, 0x4a, 0xcf, 0xb7, 0xe0, 0xf6, 0x7f, 0x81, 0xb6, 0x82, 0xa0, 0x6d, 0x1a, 0xd8, 0x41,
+ 0xbf, 0xe7, 0x40, 0x88, 0x4a, 0x3a, 0xda, 0x9a, 0x31, 0x35, 0x4d, 0xd4, 0xfd, 0x8d, 0xd9, 0x49,
+ 0x90, 0xde, 0x7b, 0x28, 0x5f, 0x1e, 0x05, 0xf2, 0x32, 0x73, 0xee, 0xe5, 0xbe, 0xd5, 0xfa, 0xd9,
+ 0x9f, 0xff, 0xfe, 0xab, 0xc4, 0x9b, 0xd2, 0xf5, 0xc2, 0xc9, 0xb5, 0x42, 0x20, 0xe0, 0x16, 0x1e,
+ 0x8c, 0x44, 0x3f, 0x2e, 0x30, 0x59, 0xb7, 0xf0, 0x80, 0x7d, 0x7c, 0x4c, 0xff, 0xd0, 0x65, 0xc7,
+ 0xa5, 0x0e, 0xec, 0x70, 0x5b, 0xe8, 0x73, 0x0e, 0x2e, 0x45, 0xee, 0xc8, 0xee, 0x51, 0x58, 0x59,
+ 0x2f, 0xe6, 0x7e, 0xec, 0x0f, 0x58, 0xf2, 0x91, 0x29, 0xe9, 0xc1, 0x67, 0x32, 0x62, 0x57, 0x95,
+ 0x78, 0x07, 0x79, 0x28, 0x5f, 0x89, 0xc5, 0xb4, 0x19, 0x04, 0xb5, 0x19, 0x46, 0x55, 0x94, 0xe4,
+ 0x8b, 0x45, 0x15, 0x0b, 0x82, 0x04, 0xf8, 0x09, 0x07, 0x29, 0x56, 0xde, 0xd1, 0x8c, 0xa9, 0x63,
+ 0xac, 0x01, 0xcc, 0x4b, 0xc7, 0x07, 0x0f, 0xe5, 0xdc, 0xd4, 0x74, 0xa8, 0x7a, 0x87, 0xfa, 0xbe,
+ 0x83, 0x5e, 0x3f, 0xa7, 0xef, 0x85, 0x07, 0x4c, 0xfd, 0x63, 0xf4, 0x29, 0x07, 0x99, 0xf0, 0xc8,
+ 0xa2, 0x17, 0x17, 0x2e, 0xa7, 0x1b, 0x5b, 0x8b, 0x88, 0xb2, 0x0a, 0x20, 0x1d, 0x3f, 0x94, 0xd7,
+ 0x4f, 0x05, 0x30, 0x35, 0x28, 0x56, 0x68, 0x69, 0x50, 0xd7, 0x50, 0xe1, 0x9c, 0x41, 0xa1, 0x5f,
+ 0x73, 0x20, 0x44, 0x75, 0x76, 0x16, 0xa2, 0x26, 0x8b, 0xf1, 0xbc, 0x0c, 0x28, 0xd4, 0xa3, 0xb7,
+ 0xb7, 0x2f, 0xbc, 0xcd, 0x3b, 0xb4, 0xbe, 0xfe, 0x81, 0x03, 0x21, 0xaa, 0x52, 0xb3, 0xfc, 0x9b,
+ 0x2c, 0x65, 0xf3, 0xfc, 0xc3, 0xf3, 0x10, 0xb2, 0x2f, 0xbd, 0x7d, 0x61, 0xd7, 0xdb, 0xd4, 0x19,
+ 0x82, 0xed, 0xdf, 0x71, 0x20, 0x44, 0x45, 0x6f, 0x96, 0xff, 0x93, 0x95, 0x71, 0xe3, 0x89, 0x53,
+ 0x4d, 0x44, 0x19, 0xd8, 0xde, 0x70, 0x01, 0x68, 0x6f, 0x5d, 0x78, 0xcf, 0x37, 0xde, 0xf9, 0x4c,
+ 0xbe, 0x12, 0x79, 0xc5, 0xd6, 0xd7, 0x6c, 0xdd, 0xcd, 0xb7, 0xad, 0xc1, 0x9f, 0xe4, 0x7c, 0xcf,
+ 0xf3, 0x6c, 0x77, 0xa7, 0x50, 0xb8, 0x7f, 0xff, 0xfe, 0x04, 0xb3, 0xa0, 0xf9, 0x5e, 0x8f, 0xfd,
+ 0xcd, 0xde, 0x2b, 0xb6, 0xa1, 0x79, 0xc7, 0x96, 0x33, 0xd8, 0x1d, 0xc0, 0x53, 0x6d, 0x6b, 0x70,
+ 0x66, 0xc8, 0xbb, 0x02, 0x41, 0x7c, 0x95, 0x44, 0x57, 0xe5, 0xde, 0xbf, 0x11, 0x88, 0x75, 0x2d,
+ 0x43, 0x33, 0xbb, 0x79, 0xcb, 0xe9, 0x16, 0xba, 0xd8, 0xa4, 0xb1, 0x17, 0x46, 0x6b, 0x9d, 0xfe,
+ 0xb3, 0xc0, 0x37, 0xc3, 0xef, 0x56, 0x8a, 0x0a, 0xbf, 0xfa, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xd6, 0xaf, 0x40, 0xb5, 0x42, 0x28, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -2754,6 +2846,8 @@
type JobControllerClient interface {
// Submits a job to a cluster.
SubmitJob(ctx context.Context, in *SubmitJobRequest, opts ...grpc.CallOption) (*Job, error)
+ // Submits job to a cluster.
+ SubmitJobAsOperation(ctx context.Context, in *SubmitJobRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
// Gets the resource representation for a job in a project.
GetJob(ctx context.Context, in *GetJobRequest, opts ...grpc.CallOption) (*Job, error)
// Lists regions/{region}/jobs in a project.
@@ -2788,6 +2882,15 @@
return out, nil
}
+func (c *jobControllerClient) SubmitJobAsOperation(ctx context.Context, in *SubmitJobRequest, opts ...grpc.CallOption) (*longrunning.Operation, error) {
+ out := new(longrunning.Operation)
+ err := c.cc.Invoke(ctx, "/google.cloud.dataproc.v1.JobController/SubmitJobAsOperation", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *jobControllerClient) GetJob(ctx context.Context, in *GetJobRequest, opts ...grpc.CallOption) (*Job, error) {
out := new(Job)
err := c.cc.Invoke(ctx, "/google.cloud.dataproc.v1.JobController/GetJob", in, out, opts...)
@@ -2837,6 +2940,8 @@
type JobControllerServer interface {
// Submits a job to a cluster.
SubmitJob(context.Context, *SubmitJobRequest) (*Job, error)
+ // Submits job to a cluster.
+ SubmitJobAsOperation(context.Context, *SubmitJobRequest) (*longrunning.Operation, error)
// Gets the resource representation for a job in a project.
GetJob(context.Context, *GetJobRequest) (*Job, error)
// Lists regions/{region}/jobs in a project.
@@ -2861,6 +2966,9 @@
func (*UnimplementedJobControllerServer) SubmitJob(ctx context.Context, req *SubmitJobRequest) (*Job, error) {
return nil, status.Errorf(codes.Unimplemented, "method SubmitJob not implemented")
}
+func (*UnimplementedJobControllerServer) SubmitJobAsOperation(ctx context.Context, req *SubmitJobRequest) (*longrunning.Operation, error) {
+ return nil, status.Errorf(codes.Unimplemented, "method SubmitJobAsOperation not implemented")
+}
func (*UnimplementedJobControllerServer) GetJob(ctx context.Context, req *GetJobRequest) (*Job, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetJob not implemented")
}
@@ -2899,6 +3007,24 @@
return interceptor(ctx, in, info, handler)
}
+func _JobController_SubmitJobAsOperation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(SubmitJobRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(JobControllerServer).SubmitJobAsOperation(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/google.cloud.dataproc.v1.JobController/SubmitJobAsOperation",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(JobControllerServer).SubmitJobAsOperation(ctx, req.(*SubmitJobRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _JobController_GetJob_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetJobRequest)
if err := dec(in); err != nil {
@@ -2998,6 +3124,10 @@
Handler: _JobController_SubmitJob_Handler,
},
{
+ MethodName: "SubmitJobAsOperation",
+ Handler: _JobController_SubmitJobAsOperation_Handler,
+ },
+ {
MethodName: "GetJob",
Handler: _JobController_GetJob_Handler,
},
diff --git a/googleapis/cloud/dataproc/v1/shared.pb.go b/googleapis/cloud/dataproc/v1/shared.pb.go
index ff240f7..53f4e4a 100644
--- a/googleapis/cloud/dataproc/v1/shared.pb.go
+++ b/googleapis/cloud/dataproc/v1/shared.pb.go
@@ -34,8 +34,12 @@
Component_HIVE_WEBHCAT Component = 3
// The Jupyter Notebook.
Component_JUPYTER Component = 1
+ // The Presto query engine.
+ Component_PRESTO Component = 6
// The Zeppelin notebook.
Component_ZEPPELIN Component = 4
+ // The Zookeeper service.
+ Component_ZOOKEEPER Component = 8
)
var Component_name = map[int32]string{
@@ -43,7 +47,9 @@
5: "ANACONDA",
3: "HIVE_WEBHCAT",
1: "JUPYTER",
+ 6: "PRESTO",
4: "ZEPPELIN",
+ 8: "ZOOKEEPER",
}
var Component_value = map[string]int32{
@@ -51,7 +57,9 @@
"ANACONDA": 5,
"HIVE_WEBHCAT": 3,
"JUPYTER": 1,
+ "PRESTO": 6,
"ZEPPELIN": 4,
+ "ZOOKEEPER": 8,
}
func (x Component) String() string {
@@ -71,21 +79,22 @@
}
var fileDescriptor_c84c579aa4cb1c4c = []byte{
- // 247 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0xd0, 0xcf, 0x4b, 0xc3, 0x30,
- 0x14, 0x07, 0x70, 0x87, 0xbf, 0xb3, 0x1d, 0x42, 0x40, 0x50, 0xd9, 0xd5, 0x8b, 0x87, 0x84, 0xe1,
- 0xd1, 0x8b, 0x6d, 0x16, 0x59, 0x45, 0xd3, 0xe0, 0x3a, 0xc5, 0x5d, 0xc6, 0xb3, 0x2d, 0xb1, 0xd0,
- 0xe5, 0x85, 0x36, 0xee, 0xef, 0x97, 0xb5, 0xdb, 0x49, 0x76, 0x7b, 0xf0, 0x3e, 0xef, 0xf1, 0x7d,
- 0x8f, 0xdc, 0x59, 0x44, 0x5b, 0x97, 0x22, 0xaf, 0xf1, 0xb7, 0x10, 0x05, 0x04, 0xf0, 0x0d, 0xe6,
- 0x62, 0x33, 0x11, 0xed, 0x0f, 0x34, 0x65, 0xc1, 0x7d, 0x83, 0x01, 0xd9, 0x75, 0xcf, 0x78, 0xc7,
- 0xf8, 0x9e, 0xf1, 0xcd, 0xe4, 0x76, 0xbc, 0x5b, 0x00, 0xbe, 0x12, 0xe0, 0x1c, 0x06, 0x08, 0x15,
- 0xba, 0xb6, 0x9f, 0xbb, 0x07, 0x72, 0x29, 0x71, 0xed, 0xd1, 0x95, 0x2e, 0xb0, 0x1b, 0x72, 0x25,
- 0xd3, 0x37, 0x93, 0x6a, 0xa5, 0xb3, 0xd5, 0x42, 0xcf, 0x8d, 0x92, 0xc9, 0x73, 0xa2, 0xa6, 0xf4,
- 0x88, 0x8d, 0xc8, 0x45, 0xa4, 0x23, 0x99, 0xea, 0x69, 0x44, 0x4f, 0x19, 0x25, 0xa3, 0x59, 0xf2,
- 0xa1, 0x56, 0x9f, 0x2a, 0x9e, 0xc9, 0x28, 0xa3, 0xc7, 0x6c, 0x48, 0xce, 0x5f, 0x16, 0xe6, 0x2b,
- 0x53, 0xef, 0x74, 0xb0, 0xc5, 0x4b, 0x65, 0x8c, 0x7a, 0x4d, 0x34, 0x3d, 0x89, 0x91, 0x8c, 0x73,
- 0x5c, 0xf3, 0x43, 0x01, 0xe3, 0xe1, 0xbc, 0x3b, 0xc4, 0x6c, 0xf3, 0x98, 0xc1, 0xf2, 0x69, 0x07,
- 0x2d, 0xd6, 0xe0, 0x2c, 0xc7, 0xc6, 0x0a, 0x5b, 0xba, 0x2e, 0xad, 0xe8, 0x5b, 0xe0, 0xab, 0xf6,
- 0xff, 0x3f, 0x1e, 0xf7, 0xf5, 0xf7, 0x59, 0x87, 0x1f, 0xfe, 0x02, 0x00, 0x00, 0xff, 0xff, 0xcb,
- 0xf9, 0x10, 0xb4, 0x3b, 0x01, 0x00, 0x00,
+ // 270 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0xcf, 0x4b, 0xc3, 0x40,
+ 0x10, 0x85, 0x2d, 0x6a, 0x6d, 0xb7, 0x15, 0x96, 0x05, 0x41, 0xa5, 0x57, 0x2f, 0x1e, 0x76, 0x29,
+ 0x1e, 0xbd, 0x98, 0xa6, 0x23, 0x8d, 0x3f, 0x76, 0x97, 0x26, 0x55, 0xcc, 0xa5, 0xac, 0x49, 0x58,
+ 0x03, 0xe9, 0x4e, 0x48, 0x62, 0x4f, 0xfe, 0xf1, 0xd2, 0xa4, 0x3d, 0x89, 0xb7, 0x81, 0xf9, 0xde,
+ 0xf0, 0xbe, 0x21, 0x37, 0x16, 0xd1, 0x16, 0x99, 0x48, 0x0a, 0xfc, 0x4e, 0x45, 0x6a, 0x1a, 0x53,
+ 0x56, 0x98, 0x88, 0xed, 0x54, 0xd4, 0x5f, 0xa6, 0xca, 0x52, 0x5e, 0x56, 0xd8, 0x20, 0xbb, 0xec,
+ 0x30, 0xde, 0x62, 0xfc, 0x80, 0xf1, 0xed, 0xf4, 0x7a, 0xb2, 0x3f, 0x60, 0xca, 0x5c, 0x18, 0xe7,
+ 0xb0, 0x31, 0x4d, 0x8e, 0xae, 0xee, 0x72, 0xb7, 0x3f, 0x64, 0xe8, 0xe3, 0xa6, 0x44, 0x97, 0xb9,
+ 0x86, 0x5d, 0x91, 0x0b, 0x5f, 0xbd, 0x6a, 0x25, 0x41, 0x46, 0xeb, 0x95, 0x0c, 0x35, 0xf8, 0xc1,
+ 0x63, 0x00, 0x73, 0x7a, 0xc4, 0xc6, 0x64, 0xe0, 0x49, 0xcf, 0x57, 0x72, 0xee, 0xd1, 0x53, 0x46,
+ 0xc9, 0x78, 0x11, 0xbc, 0xc1, 0xfa, 0x1d, 0x66, 0x0b, 0xdf, 0x8b, 0xe8, 0x31, 0x1b, 0x91, 0xb3,
+ 0xa7, 0x95, 0xfe, 0x88, 0x60, 0x49, 0x7b, 0x8c, 0x90, 0xbe, 0x5e, 0x42, 0x18, 0x29, 0xda, 0xdf,
+ 0x05, 0x63, 0xd0, 0x1a, 0x5e, 0x02, 0x49, 0x4f, 0xd8, 0x39, 0x19, 0xc6, 0x4a, 0x3d, 0x03, 0x68,
+ 0x58, 0xd2, 0xc1, 0x0c, 0xc9, 0x24, 0xc1, 0x0d, 0xff, 0xaf, 0xfb, 0x6c, 0x14, 0xb6, 0x8e, 0x7a,
+ 0x57, 0x55, 0xf7, 0xe2, 0x87, 0x3d, 0x68, 0xb1, 0x30, 0xce, 0x72, 0xac, 0xac, 0xb0, 0x99, 0x6b,
+ 0x45, 0x44, 0xb7, 0x32, 0x65, 0x5e, 0xff, 0x7d, 0xd5, 0xfd, 0x61, 0xfe, 0xec, 0xb7, 0xf0, 0xdd,
+ 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x42, 0x7f, 0x00, 0x53, 0x56, 0x01, 0x00, 0x00,
}
diff --git a/googleapis/cloud/dataproc/v1/workflow_templates.pb.go b/googleapis/cloud/dataproc/v1/workflow_templates.pb.go
index 9ec8ebd..0d95d7f 100644
--- a/googleapis/cloud/dataproc/v1/workflow_templates.pb.go
+++ b/googleapis/cloud/dataproc/v1/workflow_templates.pb.go
@@ -488,7 +488,9 @@
// *OrderedJob_PysparkJob
// *OrderedJob_HiveJob
// *OrderedJob_PigJob
+ // *OrderedJob_SparkRJob
// *OrderedJob_SparkSqlJob
+ // *OrderedJob_PrestoJob
JobType isOrderedJob_JobType `protobuf_oneof:"job_type"`
// Optional. The labels to associate with this job.
//
@@ -567,10 +569,18 @@
PigJob *PigJob `protobuf:"bytes,6,opt,name=pig_job,json=pigJob,proto3,oneof"`
}
+type OrderedJob_SparkRJob struct {
+ SparkRJob *SparkRJob `protobuf:"bytes,11,opt,name=spark_r_job,json=sparkRJob,proto3,oneof"`
+}
+
type OrderedJob_SparkSqlJob struct {
SparkSqlJob *SparkSqlJob `protobuf:"bytes,7,opt,name=spark_sql_job,json=sparkSqlJob,proto3,oneof"`
}
+type OrderedJob_PrestoJob struct {
+ PrestoJob *PrestoJob `protobuf:"bytes,12,opt,name=presto_job,json=prestoJob,proto3,oneof"`
+}
+
func (*OrderedJob_HadoopJob) isOrderedJob_JobType() {}
func (*OrderedJob_SparkJob) isOrderedJob_JobType() {}
@@ -581,8 +591,12 @@
func (*OrderedJob_PigJob) isOrderedJob_JobType() {}
+func (*OrderedJob_SparkRJob) isOrderedJob_JobType() {}
+
func (*OrderedJob_SparkSqlJob) isOrderedJob_JobType() {}
+func (*OrderedJob_PrestoJob) isOrderedJob_JobType() {}
+
func (m *OrderedJob) GetJobType() isOrderedJob_JobType {
if m != nil {
return m.JobType
@@ -625,6 +639,13 @@
return nil
}
+func (m *OrderedJob) GetSparkRJob() *SparkRJob {
+ if x, ok := m.GetJobType().(*OrderedJob_SparkRJob); ok {
+ return x.SparkRJob
+ }
+ return nil
+}
+
func (m *OrderedJob) GetSparkSqlJob() *SparkSqlJob {
if x, ok := m.GetJobType().(*OrderedJob_SparkSqlJob); ok {
return x.SparkSqlJob
@@ -632,6 +653,13 @@
return nil
}
+func (m *OrderedJob) GetPrestoJob() *PrestoJob {
+ if x, ok := m.GetJobType().(*OrderedJob_PrestoJob); ok {
+ return x.PrestoJob
+ }
+ return nil
+}
+
func (m *OrderedJob) GetLabels() map[string]string {
if m != nil {
return m.Labels
@@ -661,7 +689,9 @@
(*OrderedJob_PysparkJob)(nil),
(*OrderedJob_HiveJob)(nil),
(*OrderedJob_PigJob)(nil),
+ (*OrderedJob_SparkRJob)(nil),
(*OrderedJob_SparkSqlJob)(nil),
+ (*OrderedJob_PrestoJob)(nil),
}
}
@@ -1830,150 +1860,152 @@
}
var fileDescriptor_a839f5a867063db9 = []byte{
- // 2282 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x59, 0xcf, 0x6f, 0xdb, 0xd6,
- 0x1d, 0x0f, 0x29, 0x4b, 0x96, 0xbe, 0x8a, 0x63, 0xf5, 0x65, 0x71, 0x14, 0x25, 0x46, 0x5d, 0x76,
- 0x6d, 0x5c, 0xb7, 0x95, 0x12, 0x67, 0x5d, 0x3a, 0x37, 0x49, 0x23, 0x5b, 0x6a, 0xac, 0xd8, 0x96,
- 0x5d, 0xc9, 0x49, 0x81, 0x5c, 0x04, 0x4a, 0x7c, 0x91, 0xe9, 0x50, 0x24, 0x43, 0x52, 0x4e, 0x1d,
- 0x23, 0x87, 0x15, 0x03, 0x76, 0xe9, 0x6d, 0xbb, 0xe5, 0x1e, 0x60, 0x97, 0x61, 0x87, 0x61, 0x7f,
- 0xc1, 0xb0, 0x43, 0x8e, 0x1b, 0x32, 0x0c, 0xb9, 0xac, 0xc0, 0xb6, 0x1e, 0xb6, 0x6b, 0x4f, 0x3b,
- 0x0d, 0xef, 0x07, 0x29, 0x8a, 0x12, 0x29, 0xc9, 0x1e, 0x36, 0xf4, 0x62, 0x93, 0xef, 0xbd, 0xef,
- 0x87, 0xdf, 0xef, 0xe7, 0x7d, 0x7f, 0xbd, 0x27, 0xb8, 0xda, 0x36, 0x8c, 0xb6, 0x86, 0x0b, 0x2d,
- 0xcd, 0xe8, 0x2a, 0x05, 0x45, 0x76, 0x64, 0xd3, 0x32, 0x5a, 0x85, 0x83, 0xab, 0x85, 0x27, 0x86,
- 0xf5, 0xe8, 0xa1, 0x66, 0x3c, 0x69, 0x38, 0xb8, 0x63, 0x6a, 0xb2, 0x83, 0xed, 0xbc, 0x69, 0x19,
- 0x8e, 0x81, 0xb2, 0x4c, 0x24, 0x4f, 0x45, 0xf2, 0xae, 0x48, 0xfe, 0xe0, 0x6a, 0xee, 0x12, 0x07,
- 0x93, 0x4d, 0xb5, 0x20, 0xeb, 0xba, 0xe1, 0xc8, 0x8e, 0x6a, 0xe8, 0x5c, 0x2e, 0x77, 0xde, 0x37,
- 0xdb, 0xd2, 0x54, 0xac, 0x3b, 0x7c, 0xe2, 0x4d, 0xdf, 0xc4, 0x43, 0x15, 0x6b, 0x4a, 0xa3, 0x89,
- 0xf7, 0xe4, 0x03, 0xd5, 0xb0, 0xf8, 0x82, 0x0b, 0xbe, 0x05, 0x16, 0xb6, 0x8d, 0xae, 0xd5, 0xc2,
- 0x7c, 0xea, 0x72, 0xa8, 0xfe, 0x2d, 0xad, 0x6b, 0x3b, 0xd8, 0x72, 0xbf, 0xfe, 0x76, 0xe8, 0xc2,
- 0x7d, 0xa3, 0x19, 0x5c, 0xa4, 0x19, 0x7a, 0xdb, 0xea, 0xea, 0xba, 0xaa, 0xb7, 0x0b, 0x86, 0x89,
- 0xad, 0x3e, 0x3b, 0x2e, 0xf2, 0x45, 0xf4, 0xad, 0xd9, 0x7d, 0x58, 0xc0, 0x1d, 0xd3, 0x39, 0x0c,
- 0xd8, 0xe2, 0x4d, 0x3a, 0x6a, 0x07, 0xdb, 0x8e, 0xdc, 0x31, 0xd9, 0x02, 0xe9, 0x57, 0x09, 0xc8,
- 0x7c, 0xc1, 0xa9, 0xdd, 0xe5, 0xcc, 0xa2, 0xb3, 0x20, 0xaa, 0x4a, 0x56, 0x5c, 0x10, 0x16, 0x53,
- 0xab, 0xb1, 0x6f, 0x8a, 0x62, 0x4d, 0x54, 0x15, 0x74, 0x1e, 0xa6, 0x74, 0xb9, 0x83, 0xb3, 0x82,
- 0x3b, 0x1c, 0xab, 0xd1, 0x01, 0x34, 0x0f, 0xd3, 0x07, 0xd8, 0xb2, 0x55, 0x43, 0xcf, 0xc6, 0x16,
- 0x84, 0xc5, 0x38, 0x99, 0x13, 0x6a, 0xee, 0x18, 0xba, 0x0d, 0xe9, 0x96, 0x85, 0x65, 0x07, 0x37,
- 0xc8, 0xb7, 0xb3, 0x53, 0x0b, 0xc2, 0x62, 0x7a, 0x39, 0x97, 0xe7, 0xbb, 0xe6, 0x2a, 0x96, 0xdf,
- 0x75, 0x15, 0x63, 0xd0, 0xc0, 0x64, 0xc8, 0x28, 0x41, 0xe8, 0x9a, 0x8a, 0x87, 0x10, 0x1f, 0x13,
- 0x81, 0xc9, 0x50, 0x84, 0x3a, 0x24, 0x34, 0xb9, 0x89, 0x35, 0x3b, 0x9b, 0x58, 0x88, 0x2d, 0xa6,
- 0x97, 0x7f, 0x9c, 0x0f, 0x73, 0x9a, 0x7c, 0x90, 0x8c, 0xfc, 0x26, 0x15, 0x2c, 0xeb, 0x8e, 0x75,
- 0xc8, 0x2c, 0xe3, 0x50, 0xe8, 0x3e, 0xa4, 0x4c, 0x4d, 0x6e, 0xe1, 0x0e, 0xd6, 0x9d, 0xec, 0x34,
- 0x55, 0xea, 0xda, 0xf8, 0xb8, 0x3b, 0xae, 0x28, 0x63, 0xb8, 0x07, 0x85, 0x6e, 0xc2, 0x14, 0xf1,
- 0x81, 0x6c, 0x92, 0xaa, 0xfa, 0xc3, 0x70, 0xc8, 0x6d, 0x4b, 0xc1, 0x16, 0x56, 0xee, 0x1a, 0x4d,
- 0x86, 0x41, 0xc5, 0xd0, 0x0e, 0x80, 0x29, 0x5b, 0x72, 0x07, 0x13, 0x6f, 0xcb, 0xa6, 0x28, 0xc8,
- 0xfb, 0xe1, 0x20, 0x9e, 0x3e, 0xae, 0x0c, 0x33, 0xd2, 0x87, 0x91, 0xfb, 0x09, 0xa4, 0x7d, 0x24,
- 0xa0, 0x0c, 0xc4, 0x1e, 0xe1, 0x43, 0xe6, 0x07, 0x35, 0xf2, 0x88, 0x7e, 0x00, 0xf1, 0x03, 0x59,
- 0xeb, 0x62, 0xe6, 0x32, 0x35, 0xf6, 0xb2, 0x22, 0x7e, 0x2c, 0xac, 0xbc, 0x14, 0xfe, 0x59, 0xfc,
- 0x83, 0x00, 0x8b, 0xde, 0x17, 0x99, 0x1e, 0xb2, 0xa9, 0xda, 0xf9, 0x96, 0xd1, 0x29, 0x0c, 0xb8,
- 0x5e, 0xc5, 0xb4, 0x8c, 0x7d, 0xdc, 0x72, 0xec, 0xc2, 0x11, 0x7f, 0x7a, 0x56, 0xb0, 0x70, 0x9b,
- 0xf8, 0x7b, 0xe1, 0x88, 0x3d, 0x3c, 0xf3, 0x72, 0x81, 0x2b, 0x65, 0x17, 0x8e, 0x06, 0xd2, 0xc3,
- 0x33, 0xb4, 0x35, 0x04, 0x4a, 0x33, 0x5a, 0x2c, 0x78, 0x0a, 0x47, 0xee, 0xe3, 0x98, 0x70, 0x0b,
- 0x82, 0xf4, 0x4a, 0x80, 0x0b, 0xa1, 0xdb, 0x88, 0xea, 0x30, 0xdb, 0x91, 0x75, 0xb9, 0x8d, 0x95,
- 0x06, 0x8f, 0x75, 0x4a, 0x51, 0x7a, 0x79, 0x31, 0x9c, 0xfc, 0x2d, 0x26, 0xb0, 0xc6, 0xd6, 0xaf,
- 0x9f, 0xaa, 0x9d, 0xe9, 0xf4, 0x8d, 0xa0, 0xfb, 0x90, 0xe1, 0x60, 0x0d, 0x1b, 0x6b, 0xb8, 0xe5,
- 0x18, 0x16, 0x25, 0x39, 0xbd, 0xfc, 0x5e, 0x38, 0x2a, 0x17, 0xae, 0x73, 0x81, 0xf5, 0x53, 0xb5,
- 0xd9, 0x56, 0xff, 0xd0, 0x6a, 0xda, 0xe7, 0xbb, 0xd2, 0xd7, 0x22, 0x9c, 0xe9, 0xd7, 0x04, 0xbd,
- 0x0b, 0xa7, 0xdd, 0xef, 0xd2, 0xa0, 0xf7, 0xe5, 0x82, 0x34, 0x9f, 0xa8, 0x92, 0xd8, 0x2f, 0x41,
- 0xa2, 0x65, 0xe8, 0x0f, 0xd5, 0x36, 0x0d, 0xfd, 0xf4, 0xf2, 0xe5, 0x91, 0x5a, 0xad, 0xd1, 0xe5,
- 0x0c, 0x8a, 0xcb, 0xa2, 0xcf, 0xbd, 0xf0, 0x9c, 0xa2, 0xee, 0xfa, 0xa3, 0x71, 0x19, 0x0b, 0x0d,
- 0xce, 0x13, 0xf8, 0xac, 0xf4, 0x67, 0x01, 0x66, 0x03, 0x14, 0x92, 0xe4, 0xf7, 0xd4, 0xd0, 0x7d,
- 0xc9, 0x4f, 0xa8, 0xd1, 0x01, 0xb4, 0x07, 0x67, 0x5c, 0xa2, 0xb8, 0x09, 0x22, 0x35, 0xe1, 0xc6,
- 0xd8, 0xdb, 0xe3, 0xbe, 0x07, 0x4c, 0x11, 0x6b, 0x33, 0x2d, 0xff, 0x44, 0xee, 0x36, 0xa0, 0xc1,
- 0x95, 0x13, 0x19, 0xf6, 0xb7, 0x38, 0x40, 0x2f, 0x67, 0xa0, 0x4b, 0x30, 0x6d, 0x3b, 0xd8, 0x6c,
- 0xa8, 0x4a, 0xcf, 0x2c, 0xb1, 0x96, 0x20, 0x63, 0x15, 0x05, 0x95, 0x00, 0xf6, 0x64, 0xc5, 0x30,
- 0xcc, 0xc6, 0xbe, 0xd1, 0xe4, 0x3e, 0xf7, 0x76, 0xb8, 0x51, 0xeb, 0x74, 0xed, 0x5d, 0xa3, 0xb9,
- 0x7e, 0xaa, 0x96, 0xda, 0x73, 0x5f, 0x50, 0x11, 0x52, 0xb6, 0x29, 0x5b, 0x8f, 0x28, 0x08, 0x73,
- 0x11, 0x29, 0x1c, 0xa4, 0x4e, 0x96, 0x32, 0x8c, 0xa4, 0xcd, 0x9f, 0xd1, 0x1d, 0x48, 0x9b, 0x87,
- 0x3d, 0x10, 0x56, 0x3f, 0x22, 0xb2, 0xe2, 0xce, 0xa1, 0x0f, 0x06, 0xb8, 0x28, 0x01, 0xba, 0x05,
- 0xc9, 0x3d, 0xf5, 0x00, 0x53, 0x14, 0x56, 0x43, 0xde, 0x8a, 0xb0, 0x47, 0x3d, 0xc0, 0x0c, 0x62,
- 0x7a, 0x8f, 0x3d, 0xa2, 0x4f, 0x60, 0xda, 0x54, 0xdb, 0x54, 0x3c, 0x41, 0xc5, 0x17, 0x22, 0x94,
- 0x50, 0xdb, 0x4c, 0x3a, 0x61, 0xd2, 0x27, 0xb4, 0x01, 0x33, 0xcc, 0x06, 0xfb, 0xb1, 0x46, 0x21,
- 0x58, 0xc1, 0x78, 0x67, 0x04, 0x19, 0xf5, 0xc7, 0x1a, 0xc3, 0x49, 0xdb, 0xbd, 0x57, 0xb4, 0xe5,
- 0xc5, 0x0b, 0xab, 0x11, 0x57, 0xc6, 0xa9, 0x11, 0xe1, 0x85, 0x6c, 0x13, 0xc0, 0x6e, 0xed, 0x61,
- 0xa5, 0xab, 0xa9, 0x7a, 0x3b, 0x9b, 0x1a, 0x15, 0xc8, 0x77, 0x8d, 0x66, 0xdd, 0x5b, 0xce, 0xab,
- 0x45, 0x4f, 0x1e, 0x5d, 0x87, 0x73, 0xa6, 0x85, 0x2d, 0xfc, 0xb8, 0xab, 0xda, 0xaa, 0x83, 0x1b,
- 0xdc, 0xc7, 0xec, 0x2c, 0x2c, 0xc4, 0xdc, 0xd8, 0x39, 0xeb, 0x5f, 0x51, 0xa7, 0x0e, 0x77, 0x92,
- 0x90, 0x5d, 0x05, 0x48, 0xee, 0x1b, 0xcd, 0x86, 0x73, 0x68, 0x62, 0xe9, 0xf7, 0x02, 0xbc, 0x31,
- 0x50, 0xd4, 0x06, 0xbb, 0x17, 0x91, 0x77, 0x2f, 0x17, 0x21, 0x41, 0x9b, 0x3c, 0x16, 0xb8, 0x6e,
- 0x10, 0xb0, 0x21, 0xf4, 0x0e, 0xa4, 0x15, 0x6c, 0xb7, 0x2c, 0xd5, 0x74, 0xdc, 0xf6, 0x86, 0x5b,
- 0xe0, 0x1f, 0x47, 0x35, 0x80, 0x03, 0x59, 0x53, 0x15, 0x5a, 0x4f, 0xb8, 0x87, 0x7e, 0x18, 0xe1,
- 0x1c, 0xae, 0x56, 0xf7, 0x3d, 0x21, 0x4e, 0x63, 0x0f, 0x45, 0xfa, 0x8d, 0x00, 0x67, 0x87, 0x2c,
- 0x44, 0x45, 0x88, 0x5b, 0xb8, 0x8d, 0xbf, 0xe4, 0xc5, 0x25, 0xa2, 0x0c, 0xd4, 0xc8, 0xb2, 0x9e,
- 0xe4, 0xfa, 0xa9, 0x1a, 0x93, 0x44, 0x6b, 0x90, 0xa0, 0xd4, 0xd9, 0xa3, 0x4b, 0xc9, 0x7d, 0xb2,
- 0xae, 0x0f, 0x83, 0x8b, 0xae, 0xbe, 0x01, 0xb3, 0x3d, 0x6d, 0x19, 0xf3, 0x57, 0x60, 0x36, 0xf0,
- 0x4d, 0xd2, 0x1b, 0xd2, 0x6f, 0x62, 0x3b, 0x2b, 0xf4, 0xe8, 0x75, 0xc7, 0xa4, 0x3c, 0xcc, 0x06,
- 0xbe, 0x40, 0xf6, 0x83, 0x2b, 0xe7, 0x13, 0xe0, 0x43, 0xd2, 0x6f, 0x7d, 0xdd, 0xea, 0x16, 0x76,
- 0x64, 0xa2, 0x2a, 0x7a, 0x13, 0x92, 0x6e, 0x95, 0xf6, 0x37, 0xa7, 0xde, 0xa0, 0xbf, 0x41, 0x15,
- 0xdd, 0x06, 0x35, 0xd6, 0x6b, 0x50, 0xef, 0xc3, 0x19, 0xde, 0xa0, 0xba, 0x75, 0x9b, 0x25, 0xaa,
- 0xa5, 0x91, 0x29, 0x7c, 0xdb, 0xed, 0xc5, 0x19, 0xe2, 0x0c, 0x83, 0x71, 0x6b, 0xe8, 0x2a, 0xc4,
- 0xdb, 0x96, 0x6c, 0xee, 0x71, 0x87, 0xb8, 0x3c, 0xba, 0x37, 0xbc, 0x43, 0x96, 0x33, 0x2c, 0x26,
- 0x4a, 0x74, 0x53, 0xb0, 0x86, 0x7d, 0xba, 0xc5, 0x8f, 0xa9, 0x1b, 0x83, 0x71, 0x75, 0xdb, 0x80,
- 0xb8, 0xed, 0x10, 0xc2, 0x48, 0x26, 0x3b, 0x13, 0x95, 0x40, 0x82, 0x74, 0xe7, 0xeb, 0x44, 0x8e,
- 0x2b, 0x49, 0x31, 0x06, 0x9a, 0x85, 0xe9, 0xde, 0x26, 0xf4, 0x35, 0x0b, 0x0f, 0xfa, 0x3a, 0x53,
- 0x96, 0xba, 0x56, 0x26, 0xf8, 0xb2, 0x17, 0x0e, 0x2c, 0x43, 0xf8, 0x7b, 0x54, 0x74, 0x0b, 0xc0,
- 0x76, 0x64, 0xcb, 0x61, 0x47, 0x84, 0xd4, 0x78, 0x47, 0x84, 0x14, 0x15, 0xa1, 0x27, 0x84, 0x15,
- 0x48, 0x62, 0x5d, 0x61, 0xd2, 0x30, 0x9e, 0xf4, 0x34, 0xd6, 0x15, 0x2a, 0xeb, 0xb3, 0xbf, 0xdb,
- 0x55, 0x95, 0x6c, 0x7a, 0xd0, 0xfe, 0x7b, 0x5d, 0x55, 0xc9, 0xdd, 0x84, 0xd9, 0x80, 0x09, 0x13,
- 0x95, 0xef, 0x8f, 0x21, 0x4e, 0xb9, 0x47, 0x69, 0x98, 0xbe, 0x57, 0xdd, 0xa8, 0x6e, 0x7f, 0x51,
- 0xcd, 0x9c, 0x22, 0x2f, 0x3b, 0xe5, 0x6a, 0xa9, 0x52, 0xbd, 0x93, 0x11, 0xc8, 0x4b, 0xed, 0x5e,
- 0xb5, 0x4a, 0x5e, 0x44, 0x94, 0x84, 0xa9, 0xd2, 0x76, 0xb5, 0x9c, 0x89, 0x49, 0x3a, 0x64, 0x82,
- 0x5e, 0x41, 0x94, 0xf6, 0x8e, 0x92, 0x7d, 0x2d, 0x40, 0xac, 0x96, 0xf6, 0x26, 0x2a, 0x0a, 0xba,
- 0x00, 0x71, 0x6c, 0x59, 0xbc, 0xed, 0xe4, 0x0b, 0xd8, 0x08, 0xc9, 0xa9, 0x0a, 0x69, 0x8a, 0x48,
- 0xb8, 0x24, 0xf9, 0x89, 0x90, 0x0c, 0x48, 0x35, 0x98, 0xe9, 0x73, 0x69, 0x92, 0xb4, 0x74, 0x43,
- 0xe1, 0x31, 0x9d, 0x5e, 0x7e, 0x77, 0xf4, 0xa6, 0x57, 0x0d, 0xc5, 0x75, 0x32, 0x2a, 0x29, 0xbd,
- 0x12, 0xe1, 0xb4, 0x7f, 0x72, 0x68, 0xfb, 0x12, 0xf3, 0xda, 0x97, 0xd0, 0x2a, 0xe4, 0x65, 0xf9,
- 0xd8, 0xd0, 0x2a, 0x84, 0x72, 0x90, 0x20, 0xa5, 0x44, 0x55, 0x7a, 0xd9, 0x3e, 0x56, 0x8b, 0xef,
- 0x1b, 0xcd, 0x8a, 0xd2, 0x8b, 0x9a, 0xf8, 0xb8, 0x51, 0x43, 0x34, 0xcd, 0x93, 0x3f, 0x83, 0x51,
- 0xe3, 0x11, 0x9b, 0x08, 0x12, 0x2b, 0xed, 0x43, 0xca, 0x93, 0x41, 0x39, 0x98, 0xab, 0x6e, 0x97,
- 0xca, 0x8d, 0xfa, 0x6e, 0x71, 0xb7, 0xdc, 0xb8, 0x57, 0xad, 0xef, 0x94, 0xd7, 0x2a, 0x9f, 0x55,
- 0xca, 0x25, 0xb6, 0xf9, 0xab, 0x9b, 0xdb, 0x6b, 0x1b, 0xe5, 0x52, 0x46, 0x40, 0xa7, 0x21, 0x49,
- 0x36, 0xbf, 0xb8, 0xba, 0x59, 0xce, 0x88, 0x7e, 0x57, 0x88, 0xa1, 0x19, 0x48, 0xad, 0x6d, 0x6f,
- 0xed, 0x6c, 0x96, 0x77, 0xcb, 0xa5, 0xcc, 0x14, 0x02, 0x48, 0x7c, 0x56, 0xac, 0x6c, 0x96, 0x4b,
- 0x99, 0xb8, 0xf4, 0x3b, 0x01, 0xe6, 0xd7, 0x68, 0xde, 0x0a, 0x1e, 0x6d, 0x6a, 0xf8, 0x71, 0x17,
- 0xdb, 0x0e, 0x5a, 0x87, 0x84, 0x29, 0x5b, 0xe4, 0x90, 0xcb, 0x78, 0xbe, 0xf2, 0x4d, 0x51, 0xfc,
- 0x77, 0x71, 0x09, 0x8d, 0x7d, 0xa8, 0xab, 0x71, 0x79, 0xb4, 0xe1, 0xcb, 0xd4, 0xe2, 0xa8, 0x3c,
- 0x16, 0x44, 0x61, 0x95, 0xc0, 0x03, 0x90, 0x7e, 0x2a, 0x40, 0xee, 0x0e, 0x76, 0xc2, 0xb4, 0x2e,
- 0xf5, 0x15, 0x7c, 0xae, 0xf3, 0xf8, 0x07, 0xd1, 0xc1, 0xbb, 0x0d, 0x71, 0xf0, 0x6e, 0x43, 0xfa,
- 0xab, 0x08, 0x52, 0x45, 0xb7, 0x1d, 0x59, 0x77, 0xd4, 0x08, 0x06, 0xff, 0x17, 0xba, 0x20, 0x09,
- 0xc0, 0x62, 0xdf, 0x23, 0xce, 0x1b, 0xef, 0xb5, 0x2a, 0x29, 0x3e, 0x5c, 0x51, 0xd0, 0xe3, 0xbe,
- 0x0c, 0xcc, 0xee, 0x42, 0x36, 0xc3, 0xb7, 0x60, 0xb4, 0x69, 0xc1, 0x9c, 0x3c, 0x78, 0x79, 0x70,
- 0xc2, 0xa4, 0xf7, 0x0f, 0x01, 0x16, 0x7d, 0x6a, 0x54, 0x74, 0x4d, 0xd5, 0xbf, 0x67, 0x9e, 0x1a,
- 0xd8, 0x99, 0xd8, 0xb0, 0x9d, 0x91, 0x34, 0x98, 0xbf, 0x47, 0xef, 0xab, 0xc2, 0x6c, 0xdb, 0x08,
- 0x74, 0x39, 0x27, 0x8a, 0x9d, 0x5f, 0x0b, 0x70, 0x69, 0x53, 0xb5, 0x07, 0x82, 0xc7, 0xfe, 0xef,
- 0x33, 0xb9, 0x00, 0x29, 0x53, 0x6e, 0xe3, 0x86, 0xad, 0x3e, 0xc5, 0x7e, 0xbf, 0x4d, 0x92, 0xd1,
- 0xba, 0xfa, 0x94, 0xd2, 0x43, 0x57, 0x38, 0xc6, 0x23, 0xdc, 0xd7, 0x63, 0x53, 0xc1, 0x5d, 0x32,
- 0x2a, 0x3d, 0x17, 0x60, 0x3e, 0x44, 0x61, 0xdb, 0x34, 0x74, 0x1b, 0xa3, 0x2d, 0x48, 0x79, 0x37,
- 0xc3, 0xbc, 0xcc, 0x4c, 0x48, 0x50, 0xac, 0xd6, 0x43, 0x40, 0xef, 0xc3, 0xac, 0x8e, 0xbf, 0x74,
- 0x1a, 0x3e, 0xcd, 0x7c, 0x05, 0x70, 0x86, 0xcc, 0xed, 0x78, 0xda, 0xfd, 0x4c, 0x80, 0xf9, 0x12,
- 0xed, 0xaf, 0xfe, 0x9f, 0x19, 0x60, 0xf9, 0xdb, 0x0c, 0x9c, 0x0f, 0x4a, 0xd6, 0xb1, 0x75, 0xa0,
- 0xb6, 0x30, 0x7a, 0x2e, 0xc2, 0xdc, 0xf0, 0x34, 0x8f, 0xae, 0x47, 0xf4, 0x92, 0x51, 0x85, 0x21,
- 0x37, 0x01, 0xbf, 0xd2, 0x73, 0xe1, 0x75, 0x71, 0x96, 0xb9, 0xc4, 0x07, 0x2e, 0xcb, 0x5f, 0xfd,
- 0xe9, 0xef, 0xbf, 0x10, 0xbf, 0x12, 0xa4, 0x8f, 0x0a, 0x07, 0x57, 0x0b, 0x47, 0x6c, 0xf2, 0xa6,
- 0x77, 0x69, 0xb7, 0xe4, 0xbb, 0xac, 0x5b, 0x1a, 0x72, 0x49, 0xb7, 0xe2, 0xb9, 0xf3, 0x83, 0x4f,
- 0xa5, 0x6b, 0x21, 0x10, 0xee, 0xd5, 0x61, 0x34, 0x00, 0xfa, 0x4e, 0x80, 0xb3, 0x43, 0x6a, 0x09,
- 0x8a, 0xb8, 0x88, 0x0a, 0x2f, 0x3d, 0x13, 0xf1, 0x72, 0xf4, 0xba, 0x48, 0xf7, 0x96, 0x72, 0xa1,
- 0x23, 0x46, 0x05, 0x19, 0x08, 0x21, 0x62, 0xc8, 0x65, 0xe5, 0xd2, 0xb3, 0x07, 0x1f, 0xa1, 0x6b,
- 0x43, 0x05, 0x3d, 0xf3, 0x87, 0x8a, 0xa1, 0x57, 0x22, 0x5c, 0x8c, 0xc8, 0xf1, 0xe8, 0xc6, 0x49,
- 0x4a, 0x43, 0x6e, 0xde, 0x95, 0xf6, 0xfd, 0x7c, 0x91, 0xf7, 0x1a, 0x50, 0xe9, 0x2f, 0xc2, 0xcb,
- 0xe2, 0x7b, 0x70, 0x2e, 0xd8, 0x64, 0x97, 0x3b, 0xa6, 0x73, 0x88, 0x06, 0x4e, 0x79, 0x9c, 0xa6,
- 0xd7, 0xc5, 0x59, 0xf2, 0xef, 0x83, 0x5e, 0x81, 0xa1, 0xc4, 0x7d, 0x2d, 0x48, 0xc5, 0x63, 0x31,
- 0xb7, 0xa2, 0xf6, 0xec, 0x58, 0x11, 0x96, 0x1e, 0x94, 0xa4, 0x4f, 0x8f, 0x41, 0x64, 0x00, 0x05,
- 0x7d, 0x27, 0xc2, 0x5b, 0x23, 0x8b, 0x16, 0x5a, 0x1d, 0x8b, 0xdd, 0xc8, 0x8a, 0x37, 0x8a, 0xe3,
- 0x7f, 0x4d, 0xc8, 0xf1, 0xd0, 0x08, 0x7d, 0x21, 0x48, 0x77, 0x8e, 0x17, 0xa1, 0x6a, 0xd0, 0x0c,
- 0x5f, 0xcc, 0x7e, 0x2e, 0x95, 0x8f, 0x13, 0xb3, 0x11, 0x90, 0xe8, 0x85, 0x08, 0x73, 0xc3, 0x8b,
- 0x68, 0x54, 0x8e, 0x8b, 0x2c, 0xbb, 0x13, 0xc5, 0xf2, 0x0b, 0xe1, 0x75, 0x31, 0xd9, 0x47, 0xdd,
- 0x2f, 0x85, 0xdc, 0x2d, 0x6a, 0xa5, 0x3b, 0x9a, 0x9f, 0xd8, 0x41, 0x7b, 0x8c, 0xad, 0xe7, 0x6e,
- 0x44, 0x63, 0x8d, 0x70, 0xd2, 0x1e, 0x51, 0x3f, 0x17, 0xe1, 0xdc, 0xd0, 0x6a, 0x8a, 0x22, 0x7e,
- 0x18, 0x8b, 0xea, 0x17, 0x72, 0xd7, 0x27, 0x96, 0x63, 0x65, 0x5b, 0x7a, 0xf6, 0xba, 0xc8, 0x3b,
- 0x85, 0xbe, 0x0c, 0x38, 0xa9, 0xab, 0x79, 0x19, 0x70, 0x32, 0x77, 0x42, 0xdf, 0x0a, 0x30, 0x37,
- 0xbc, 0x72, 0x47, 0xb9, 0x4c, 0x64, 0xad, 0xcf, 0xcd, 0xe5, 0x87, 0xc6, 0x5b, 0x20, 0xd5, 0x2f,
- 0x1d, 0x37, 0xd5, 0x2f, 0x1d, 0x27, 0xd5, 0xe7, 0x36, 0x5e, 0x16, 0xcf, 0x87, 0x74, 0x1b, 0x7f,
- 0x2c, 0xe6, 0xf7, 0x1c, 0xc7, 0xb4, 0x57, 0x0a, 0x85, 0x27, 0x4f, 0x9e, 0x04, 0x5b, 0x11, 0xb9,
- 0xeb, 0xec, 0xb1, 0x5f, 0xa9, 0x3f, 0x24, 0x68, 0x0f, 0x0d, 0xab, 0xb3, 0xfa, 0x14, 0x2e, 0xb5,
- 0x8c, 0x4e, 0x28, 0x3f, 0xab, 0x73, 0x03, 0xfb, 0xbd, 0x43, 0xa8, 0xd8, 0x11, 0x1e, 0xdc, 0xe6,
- 0x32, 0x6d, 0x43, 0x93, 0xf5, 0x76, 0xde, 0xb0, 0xda, 0x85, 0x36, 0xd6, 0x29, 0x51, 0x85, 0xde,
- 0x87, 0x07, 0x7f, 0x15, 0xff, 0xc4, 0x7d, 0x6e, 0x26, 0xe8, 0xe2, 0x6b, 0xff, 0x09, 0x00, 0x00,
- 0xff, 0xff, 0x9f, 0xbc, 0xe0, 0x41, 0x2a, 0x20, 0x00, 0x00,
+ // 2320 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x59, 0xcd, 0x73, 0xdb, 0xc6,
+ 0x15, 0x37, 0x40, 0x91, 0x22, 0x1f, 0x2d, 0x8b, 0x59, 0xd7, 0x32, 0x4d, 0x5b, 0x13, 0x05, 0x69,
+ 0x62, 0x45, 0x49, 0x48, 0x5b, 0x6e, 0xea, 0x54, 0xb1, 0x1d, 0x53, 0x22, 0x63, 0xd1, 0x92, 0x28,
+ 0x05, 0x94, 0x9d, 0x19, 0x5f, 0x38, 0x20, 0xb1, 0xa6, 0x20, 0x83, 0x00, 0x0c, 0x80, 0x72, 0x64,
+ 0x8d, 0x0f, 0xcd, 0x74, 0xa6, 0x97, 0xdc, 0xda, 0x9b, 0xef, 0x9e, 0xe9, 0xa5, 0xd3, 0x43, 0xa7,
+ 0x7f, 0x41, 0xa7, 0x07, 0x1f, 0xdb, 0x71, 0xa7, 0xe3, 0x4b, 0x73, 0x68, 0x73, 0x68, 0x2f, 0x3d,
+ 0xe4, 0xd4, 0x53, 0x67, 0x3f, 0x00, 0x82, 0x20, 0xc1, 0x0f, 0xa9, 0xd3, 0x4e, 0x2e, 0x12, 0xb0,
+ 0xbb, 0xef, 0x87, 0xf7, 0x7e, 0xfb, 0xbe, 0x76, 0x09, 0x57, 0x5b, 0xa6, 0xd9, 0xd2, 0x71, 0xa1,
+ 0xa9, 0x9b, 0x1d, 0xb5, 0xa0, 0x2a, 0xae, 0x62, 0xd9, 0x66, 0xb3, 0x70, 0x70, 0xb5, 0xf0, 0xc4,
+ 0xb4, 0x1f, 0x3d, 0xd4, 0xcd, 0x27, 0x75, 0x17, 0xb7, 0x2d, 0x5d, 0x71, 0xb1, 0x93, 0xb7, 0x6c,
+ 0xd3, 0x35, 0x51, 0x96, 0x89, 0xe4, 0xa9, 0x48, 0xde, 0x13, 0xc9, 0x1f, 0x5c, 0xcd, 0x5d, 0xe2,
+ 0x60, 0x8a, 0xa5, 0x15, 0x14, 0xc3, 0x30, 0x5d, 0xc5, 0xd5, 0x4c, 0x83, 0xcb, 0xe5, 0xce, 0x07,
+ 0x66, 0x9b, 0xba, 0x86, 0x0d, 0x97, 0x4f, 0xbc, 0x19, 0x98, 0x78, 0xa8, 0x61, 0x5d, 0xad, 0x37,
+ 0xf0, 0x9e, 0x72, 0xa0, 0x99, 0x36, 0x5f, 0x70, 0x21, 0xb0, 0xc0, 0xc6, 0x8e, 0xd9, 0xb1, 0x9b,
+ 0x98, 0x4f, 0x5d, 0x8e, 0xd4, 0xbf, 0xa9, 0x77, 0x1c, 0x17, 0xdb, 0xde, 0xd7, 0xdf, 0x8e, 0x5c,
+ 0xb8, 0x6f, 0x36, 0xc2, 0x8b, 0x74, 0xd3, 0x68, 0xd9, 0x1d, 0xc3, 0xd0, 0x8c, 0x56, 0xc1, 0xb4,
+ 0xb0, 0xdd, 0x63, 0xc7, 0x45, 0xbe, 0x88, 0xbe, 0x35, 0x3a, 0x0f, 0x0b, 0xb8, 0x6d, 0xb9, 0x87,
+ 0x21, 0x5b, 0xfc, 0x49, 0x57, 0x6b, 0x63, 0xc7, 0x55, 0xda, 0x16, 0x5b, 0x20, 0xfd, 0x2a, 0x01,
+ 0x99, 0x2f, 0x38, 0xb5, 0xbb, 0x9c, 0x59, 0x74, 0x16, 0x44, 0x4d, 0xcd, 0x8a, 0x0b, 0xc2, 0x62,
+ 0x6a, 0x35, 0xf6, 0x4d, 0x51, 0x94, 0x45, 0x4d, 0x45, 0xe7, 0x61, 0xca, 0x50, 0xda, 0x38, 0x2b,
+ 0x78, 0xc3, 0x31, 0x99, 0x0e, 0xa0, 0x79, 0x98, 0x3e, 0xc0, 0xb6, 0xa3, 0x99, 0x46, 0x36, 0xb6,
+ 0x20, 0x2c, 0xc6, 0xc9, 0x9c, 0x20, 0x7b, 0x63, 0xe8, 0x36, 0xa4, 0x9b, 0x36, 0x56, 0x5c, 0x5c,
+ 0x27, 0xdf, 0xce, 0x4e, 0x2d, 0x08, 0x8b, 0xe9, 0xe5, 0x5c, 0x9e, 0xef, 0x9a, 0xa7, 0x58, 0x7e,
+ 0xd7, 0x53, 0x8c, 0x41, 0x03, 0x93, 0x21, 0xa3, 0x04, 0xa1, 0x63, 0xa9, 0x3e, 0x42, 0x7c, 0x4c,
+ 0x04, 0x26, 0x43, 0x11, 0x6a, 0x90, 0xd0, 0x95, 0x06, 0xd6, 0x9d, 0x6c, 0x62, 0x21, 0xb6, 0x98,
+ 0x5e, 0xfe, 0x71, 0x3e, 0xca, 0x69, 0xf2, 0x61, 0x32, 0xf2, 0x9b, 0x54, 0xb0, 0x6c, 0xb8, 0xf6,
+ 0x21, 0xb3, 0x8c, 0x43, 0xa1, 0xfb, 0x90, 0xb2, 0x74, 0xa5, 0x89, 0xdb, 0xd8, 0x70, 0xb3, 0xd3,
+ 0x54, 0xa9, 0x6b, 0xe3, 0xe3, 0xee, 0x78, 0xa2, 0x8c, 0xe1, 0x2e, 0x14, 0xba, 0x09, 0x53, 0xc4,
+ 0x07, 0xb2, 0x49, 0xaa, 0xea, 0x0f, 0xa3, 0x21, 0xb7, 0x6d, 0x15, 0xdb, 0x58, 0xbd, 0x6b, 0x36,
+ 0x18, 0x06, 0x15, 0x43, 0x3b, 0x00, 0x96, 0x62, 0x2b, 0x6d, 0x4c, 0xbc, 0x2d, 0x9b, 0xa2, 0x20,
+ 0xef, 0x47, 0x83, 0xf8, 0xfa, 0x78, 0x32, 0xcc, 0xc8, 0x00, 0x46, 0xee, 0x27, 0x90, 0x0e, 0x90,
+ 0x80, 0x32, 0x10, 0x7b, 0x84, 0x0f, 0x99, 0x1f, 0xc8, 0xe4, 0x11, 0xfd, 0x00, 0xe2, 0x07, 0x8a,
+ 0xde, 0xc1, 0xcc, 0x65, 0x64, 0xf6, 0xb2, 0x22, 0x7e, 0x2c, 0xac, 0xbc, 0x14, 0xfe, 0x51, 0xfc,
+ 0x83, 0x00, 0x8b, 0xfe, 0x17, 0x99, 0x1e, 0x8a, 0xa5, 0x39, 0xf9, 0xa6, 0xd9, 0x2e, 0xf4, 0xb9,
+ 0x5e, 0xc5, 0xb2, 0xcd, 0x7d, 0xdc, 0x74, 0x9d, 0xc2, 0x11, 0x7f, 0x7a, 0x56, 0xb0, 0x71, 0x8b,
+ 0xf8, 0x7b, 0xe1, 0x88, 0x3d, 0x3c, 0xf3, 0x73, 0x81, 0x27, 0xe5, 0x14, 0x8e, 0xfa, 0xd2, 0xc3,
+ 0x33, 0xb4, 0x35, 0x00, 0x4a, 0x37, 0x9b, 0x2c, 0x78, 0x0a, 0x47, 0xde, 0xe3, 0x98, 0x70, 0x0b,
+ 0x82, 0xf4, 0x4a, 0x80, 0x0b, 0x91, 0xdb, 0x88, 0x6a, 0x30, 0xdb, 0x56, 0x0c, 0xa5, 0x85, 0xd5,
+ 0x3a, 0x8f, 0x75, 0x4a, 0x51, 0x7a, 0x79, 0x31, 0x9a, 0xfc, 0x2d, 0x26, 0xb0, 0xc6, 0xd6, 0xaf,
+ 0x9f, 0x92, 0xcf, 0xb4, 0x7b, 0x46, 0xd0, 0x7d, 0xc8, 0x70, 0xb0, 0xba, 0x83, 0x75, 0xdc, 0x74,
+ 0x4d, 0x9b, 0x92, 0x9c, 0x5e, 0x7e, 0x2f, 0x1a, 0x95, 0x0b, 0xd7, 0xb8, 0xc0, 0xfa, 0x29, 0x79,
+ 0xb6, 0xd9, 0x3b, 0xb4, 0x9a, 0x0e, 0xf8, 0xae, 0xf4, 0xb5, 0x08, 0x67, 0x7a, 0x35, 0x41, 0xef,
+ 0xc2, 0x69, 0xef, 0xbb, 0x34, 0xe8, 0x03, 0xb9, 0x20, 0xcd, 0x27, 0xaa, 0x24, 0xf6, 0x4b, 0x90,
+ 0x68, 0x9a, 0xc6, 0x43, 0xad, 0x45, 0x43, 0x3f, 0xbd, 0x7c, 0x79, 0xa4, 0x56, 0x6b, 0x74, 0x39,
+ 0x83, 0xe2, 0xb2, 0xe8, 0x73, 0x3f, 0x3c, 0xa7, 0xa8, 0xbb, 0xfe, 0x68, 0x5c, 0xc6, 0x22, 0x83,
+ 0xf3, 0x04, 0x3e, 0x2b, 0xfd, 0x59, 0x80, 0xd9, 0x10, 0x85, 0x24, 0xf9, 0x3d, 0x35, 0x8d, 0x40,
+ 0xf2, 0x13, 0x64, 0x3a, 0x80, 0xf6, 0xe0, 0x8c, 0x47, 0x14, 0x37, 0x41, 0xa4, 0x26, 0xdc, 0x18,
+ 0x7b, 0x7b, 0xbc, 0xf7, 0x90, 0x29, 0xa2, 0x3c, 0xd3, 0x0c, 0x4e, 0xe4, 0x6e, 0x03, 0xea, 0x5f,
+ 0x39, 0x91, 0x61, 0xff, 0x4a, 0x00, 0x74, 0x73, 0x06, 0xba, 0x04, 0xd3, 0x8e, 0x8b, 0xad, 0xba,
+ 0xa6, 0x76, 0xcd, 0x12, 0xe5, 0x04, 0x19, 0xab, 0xa8, 0xa8, 0x04, 0xb0, 0xa7, 0xa8, 0xa6, 0x69,
+ 0xd5, 0xf7, 0xcd, 0x06, 0xf7, 0xb9, 0xb7, 0xa3, 0x8d, 0x5a, 0xa7, 0x6b, 0xef, 0x9a, 0x8d, 0xf5,
+ 0x53, 0x72, 0x6a, 0xcf, 0x7b, 0x41, 0x45, 0x48, 0x39, 0x96, 0x62, 0x3f, 0xa2, 0x20, 0xcc, 0x45,
+ 0xa4, 0x68, 0x90, 0x1a, 0x59, 0xca, 0x30, 0x92, 0x0e, 0x7f, 0x46, 0x77, 0x20, 0x6d, 0x1d, 0x76,
+ 0x41, 0x58, 0xfd, 0x18, 0x92, 0x15, 0x77, 0x0e, 0x03, 0x30, 0xc0, 0x45, 0x09, 0xd0, 0x2d, 0x48,
+ 0xee, 0x69, 0x07, 0x98, 0xa2, 0xb0, 0x1a, 0xf2, 0xd6, 0x10, 0x7b, 0xb4, 0x03, 0xcc, 0x20, 0xa6,
+ 0xf7, 0xd8, 0x23, 0xfa, 0x04, 0xa6, 0x2d, 0xad, 0x45, 0xc5, 0x13, 0x54, 0x7c, 0x61, 0x88, 0x12,
+ 0x5a, 0x8b, 0x49, 0x27, 0x2c, 0xfa, 0x84, 0xca, 0x90, 0x66, 0x36, 0xd8, 0x14, 0x20, 0x3d, 0x8a,
+ 0x4f, 0x6a, 0x83, 0xcc, 0xf9, 0x74, 0xbc, 0x17, 0xb4, 0x01, 0x33, 0x0c, 0xc6, 0x79, 0xac, 0x53,
+ 0x20, 0x56, 0x77, 0xde, 0x19, 0x01, 0x54, 0x7b, 0xac, 0x33, 0x28, 0xa6, 0x04, 0x7b, 0x25, 0x5b,
+ 0x6c, 0xd9, 0xd8, 0x71, 0x4d, 0x8a, 0x74, 0x7a, 0x94, 0x4a, 0x3b, 0x74, 0x2d, 0x57, 0xc9, 0xf2,
+ 0x5e, 0xd0, 0x96, 0x1f, 0xbc, 0xac, 0x60, 0x5d, 0x19, 0xa7, 0x60, 0x45, 0x57, 0xd5, 0x4d, 0x00,
+ 0xa7, 0xb9, 0x87, 0xd5, 0x8e, 0xae, 0x19, 0xad, 0x6c, 0x6a, 0x54, 0x56, 0xb9, 0x6b, 0x36, 0x6a,
+ 0xfe, 0x72, 0x5e, 0xba, 0xba, 0xf2, 0xe8, 0x3a, 0x9c, 0xb3, 0x6c, 0x6c, 0xe3, 0xc7, 0x1d, 0xcd,
+ 0xd1, 0x5c, 0x5c, 0xe7, 0x0e, 0xef, 0x64, 0x61, 0x21, 0xe6, 0x05, 0xf2, 0xd9, 0xe0, 0x8a, 0x1a,
+ 0xf5, 0xfe, 0x93, 0xe4, 0x8f, 0x55, 0x80, 0xe4, 0xbe, 0xd9, 0xa8, 0xbb, 0x87, 0x16, 0x96, 0x7e,
+ 0x2f, 0xc0, 0x1b, 0x7d, 0x15, 0xb6, 0xbf, 0x95, 0x12, 0x79, 0x2b, 0x75, 0x11, 0x12, 0xb4, 0xe3,
+ 0x64, 0x59, 0xc4, 0x8b, 0x48, 0x36, 0x84, 0xde, 0x81, 0xb4, 0x8a, 0x9d, 0xa6, 0xad, 0x59, 0xae,
+ 0xd7, 0x6b, 0x71, 0x0b, 0x82, 0xe3, 0x48, 0x06, 0x38, 0x50, 0x74, 0x4d, 0xa5, 0xc5, 0x8d, 0x87,
+ 0xcb, 0x87, 0x43, 0x76, 0xd5, 0xd3, 0xea, 0xbe, 0x2f, 0xc4, 0x69, 0xec, 0xa2, 0x48, 0xbf, 0x11,
+ 0xe0, 0xec, 0x80, 0x85, 0xa8, 0x08, 0x71, 0x1b, 0xb7, 0xf0, 0x97, 0xbc, 0xd2, 0x0d, 0xa9, 0x49,
+ 0x32, 0x59, 0xd6, 0x95, 0x5c, 0x3f, 0x25, 0x33, 0x49, 0xb4, 0x06, 0x09, 0x4a, 0x9d, 0x33, 0xba,
+ 0xae, 0xdd, 0x27, 0xeb, 0x7a, 0x30, 0xb8, 0xe8, 0xea, 0x1b, 0x30, 0xdb, 0xd5, 0x96, 0x31, 0x7f,
+ 0x05, 0x66, 0x43, 0xdf, 0x24, 0x8d, 0x2a, 0xfd, 0x26, 0x76, 0xb2, 0x42, 0x97, 0x5e, 0x6f, 0x4c,
+ 0xca, 0xc3, 0x6c, 0xe8, 0x0b, 0x64, 0x3f, 0xb8, 0x72, 0x01, 0x01, 0x3e, 0x24, 0xfd, 0x36, 0xd0,
+ 0x3a, 0x6f, 0x61, 0x57, 0x21, 0xaa, 0xa2, 0x37, 0x21, 0xe9, 0xb5, 0x0c, 0xc1, 0x4e, 0xd9, 0x1f,
+ 0x0c, 0x76, 0xcb, 0xa2, 0xd7, 0x2d, 0xc7, 0xba, 0xdd, 0xf2, 0x7d, 0x38, 0xc3, 0xbb, 0x65, 0xaf,
+ 0x89, 0x60, 0x59, 0x73, 0x69, 0x64, 0x3d, 0xd9, 0xf6, 0x0e, 0x06, 0x0c, 0x71, 0x86, 0xc1, 0x78,
+ 0x05, 0x7d, 0x15, 0xe2, 0x2d, 0x5b, 0xb1, 0xf6, 0xb8, 0x43, 0x5c, 0x1e, 0xdd, 0xa8, 0xde, 0x21,
+ 0xcb, 0x19, 0x16, 0x13, 0x25, 0xba, 0xa9, 0x58, 0xc7, 0x01, 0xdd, 0xe2, 0xc7, 0xd4, 0x8d, 0xc1,
+ 0x78, 0xba, 0x6d, 0x40, 0xdc, 0x71, 0x09, 0x61, 0x24, 0xad, 0x9e, 0x19, 0x96, 0x40, 0xc2, 0x74,
+ 0xe7, 0x6b, 0x44, 0x8e, 0x2b, 0x49, 0x31, 0xfa, 0x3a, 0x97, 0xe9, 0xee, 0x26, 0xf4, 0x74, 0x2e,
+ 0x0f, 0x7a, 0xda, 0x64, 0x96, 0xba, 0x56, 0x26, 0xf8, 0xb2, 0x1f, 0x0e, 0x2c, 0x43, 0x04, 0x1b,
+ 0x66, 0x74, 0x0b, 0xc0, 0x71, 0x15, 0xdb, 0x65, 0xe7, 0x95, 0xd4, 0x78, 0xe7, 0x95, 0x14, 0x15,
+ 0xa1, 0xc7, 0x95, 0x15, 0x48, 0x62, 0x43, 0x65, 0xd2, 0x30, 0x9e, 0xf4, 0x34, 0x36, 0x54, 0x2a,
+ 0x1b, 0xb0, 0xbf, 0xd3, 0xd1, 0x54, 0x5a, 0x69, 0x42, 0xf6, 0xdf, 0xeb, 0x68, 0x6a, 0xee, 0x26,
+ 0xcc, 0x86, 0x4c, 0x98, 0xa8, 0x97, 0xf8, 0x18, 0xe2, 0x94, 0x7b, 0x94, 0x86, 0xe9, 0x7b, 0xd5,
+ 0x8d, 0xea, 0xf6, 0x17, 0xd5, 0xcc, 0x29, 0xf2, 0xb2, 0x53, 0xae, 0x96, 0x2a, 0xd5, 0x3b, 0x19,
+ 0x81, 0xbc, 0xc8, 0xf7, 0xaa, 0x55, 0xf2, 0x22, 0xa2, 0x24, 0x4c, 0x95, 0xb6, 0xab, 0xe5, 0x4c,
+ 0x4c, 0x32, 0x20, 0x13, 0xf6, 0x0a, 0xa2, 0xb4, 0x7f, 0xae, 0xed, 0xe9, 0x47, 0x62, 0x72, 0xda,
+ 0x9f, 0xa8, 0xa8, 0xe8, 0x02, 0xc4, 0xb1, 0x6d, 0xf3, 0x1e, 0x98, 0x2f, 0x60, 0x23, 0x24, 0xa7,
+ 0xaa, 0xa4, 0x43, 0x23, 0xe1, 0x92, 0xe4, 0xc7, 0x53, 0x32, 0x20, 0xc9, 0x30, 0xd3, 0xe3, 0xd2,
+ 0x24, 0x69, 0x19, 0xa6, 0xca, 0x63, 0x3a, 0xbd, 0xfc, 0xee, 0xe8, 0x4d, 0xaf, 0x9a, 0xaa, 0xe7,
+ 0x64, 0x54, 0x52, 0x7a, 0x25, 0xc2, 0xe9, 0xe0, 0xe4, 0xc0, 0x5e, 0x2a, 0xe6, 0xf7, 0x52, 0x91,
+ 0x55, 0xc8, 0xcf, 0xf2, 0xb1, 0x81, 0x55, 0x08, 0xe5, 0x20, 0x41, 0x4a, 0x89, 0xa6, 0x76, 0xb3,
+ 0x7d, 0x4c, 0x8e, 0xef, 0x9b, 0x8d, 0x8a, 0xda, 0x8d, 0x9a, 0xf8, 0xb8, 0x51, 0x43, 0x34, 0xcd,
+ 0x93, 0x3f, 0xfd, 0x51, 0xe3, 0x13, 0x9b, 0x08, 0x13, 0x2b, 0xed, 0x43, 0xca, 0x97, 0x41, 0x39,
+ 0x98, 0xab, 0x6e, 0x97, 0xca, 0xf5, 0xda, 0x6e, 0x71, 0xb7, 0x5c, 0xbf, 0x57, 0xad, 0xed, 0x94,
+ 0xd7, 0x2a, 0x9f, 0x55, 0xca, 0x25, 0xb6, 0xf9, 0xab, 0x9b, 0xdb, 0x6b, 0x1b, 0xe5, 0x52, 0x46,
+ 0x40, 0xa7, 0x21, 0x49, 0x36, 0xbf, 0xb8, 0xba, 0x59, 0xce, 0x88, 0x41, 0x57, 0x88, 0xa1, 0x19,
+ 0x48, 0xad, 0x6d, 0x6f, 0xed, 0x6c, 0x96, 0x77, 0xcb, 0xa5, 0xcc, 0x14, 0x02, 0x48, 0x7c, 0x56,
+ 0xac, 0x6c, 0x96, 0x4b, 0x99, 0xb8, 0xf4, 0x3b, 0x01, 0xe6, 0xd7, 0x68, 0xde, 0x0a, 0x9f, 0xb3,
+ 0x64, 0xfc, 0xb8, 0x83, 0x1d, 0x17, 0xad, 0x43, 0xc2, 0x52, 0x6c, 0x72, 0xe2, 0x66, 0x3c, 0x5f,
+ 0xf9, 0xa6, 0x28, 0xfe, 0xbb, 0xb8, 0x84, 0xc6, 0x3e, 0x61, 0xca, 0x5c, 0x1e, 0x6d, 0x04, 0x32,
+ 0xb5, 0x38, 0x2a, 0x8f, 0x85, 0x51, 0x58, 0x25, 0xf0, 0x01, 0xa4, 0x9f, 0x0a, 0x90, 0xbb, 0x83,
+ 0xdd, 0x28, 0xad, 0x4b, 0x3d, 0x05, 0x9f, 0xeb, 0x3c, 0xfe, 0xa9, 0xb8, 0xff, 0xa2, 0x45, 0xec,
+ 0xbf, 0x68, 0x91, 0xfe, 0x2a, 0x82, 0x54, 0x31, 0x1c, 0x57, 0x31, 0x5c, 0x6d, 0x08, 0x83, 0xff,
+ 0x0b, 0x5d, 0x90, 0x04, 0x60, 0xb3, 0xef, 0x11, 0xe7, 0x8d, 0x77, 0x5b, 0x95, 0x14, 0x1f, 0xae,
+ 0xa8, 0xe8, 0x71, 0x4f, 0x06, 0x66, 0x17, 0x33, 0x9b, 0xd1, 0x5b, 0x30, 0xda, 0xb4, 0x70, 0x4e,
+ 0xee, 0xbf, 0xc9, 0x38, 0x61, 0xd2, 0xfb, 0xbb, 0x00, 0x8b, 0x01, 0x35, 0x2a, 0x86, 0xae, 0x19,
+ 0xdf, 0x33, 0x4f, 0x0d, 0xed, 0x4c, 0x6c, 0xd0, 0xce, 0x48, 0x3a, 0xcc, 0xdf, 0xa3, 0x97, 0x67,
+ 0x51, 0xb6, 0x6d, 0x84, 0xba, 0x9c, 0x13, 0xc5, 0xce, 0xaf, 0x05, 0xb8, 0xb4, 0xa9, 0x39, 0x7d,
+ 0xc1, 0xe3, 0xfc, 0xf7, 0x99, 0x5c, 0x80, 0x94, 0xa5, 0xb4, 0x70, 0xdd, 0xd1, 0x9e, 0xe2, 0xa0,
+ 0xdf, 0x26, 0xc9, 0x68, 0x4d, 0x7b, 0x4a, 0xe9, 0xa1, 0x2b, 0x5c, 0xf3, 0x11, 0xee, 0xe9, 0xb1,
+ 0xa9, 0xe0, 0x2e, 0x19, 0x95, 0x9e, 0x0b, 0x30, 0x1f, 0xa1, 0xb0, 0x63, 0x99, 0x86, 0x83, 0xd1,
+ 0x16, 0xa4, 0xfc, 0x6b, 0x6a, 0x5e, 0x66, 0x26, 0x24, 0x28, 0x26, 0x77, 0x11, 0xd0, 0xfb, 0x30,
+ 0x6b, 0xe0, 0x2f, 0xdd, 0x7a, 0x40, 0xb3, 0x40, 0x01, 0x9c, 0x21, 0x73, 0x3b, 0xbe, 0x76, 0x3f,
+ 0x13, 0x60, 0xbe, 0x44, 0xfb, 0xab, 0xff, 0x67, 0x06, 0x58, 0xfe, 0x36, 0x03, 0xe7, 0xc3, 0x92,
+ 0x35, 0x6c, 0x1f, 0x68, 0x4d, 0x8c, 0x9e, 0x8b, 0x30, 0x37, 0x38, 0xcd, 0xa3, 0xeb, 0x43, 0x7a,
+ 0xc9, 0x61, 0x85, 0x21, 0x37, 0x01, 0xbf, 0xd2, 0x73, 0xe1, 0x75, 0x71, 0x96, 0xb9, 0xc4, 0x07,
+ 0x1e, 0xcb, 0x5f, 0xfd, 0xe9, 0x6f, 0xbf, 0x10, 0xbf, 0x12, 0xa4, 0x8f, 0x0a, 0x07, 0x57, 0x0b,
+ 0x47, 0x6c, 0xf2, 0xa6, 0x7f, 0x83, 0xb8, 0x14, 0xb8, 0x39, 0x5c, 0x1a, 0x70, 0x63, 0xb8, 0xe2,
+ 0xbb, 0xf3, 0x83, 0x4f, 0xa5, 0x6b, 0x11, 0x10, 0xde, 0x3d, 0xe6, 0x70, 0x00, 0xf4, 0x9d, 0x00,
+ 0x67, 0x07, 0xd4, 0x12, 0x34, 0xe4, 0x56, 0x2c, 0xba, 0xf4, 0x4c, 0xc4, 0xcb, 0xd1, 0xeb, 0x22,
+ 0xdd, 0x5b, 0xca, 0x85, 0x81, 0x18, 0x15, 0x64, 0x20, 0x82, 0x88, 0x01, 0x37, 0xa7, 0x4b, 0xcf,
+ 0x1e, 0x7c, 0x84, 0xae, 0x0d, 0x14, 0xf4, 0xcd, 0x1f, 0x28, 0x86, 0x5e, 0x89, 0x70, 0x71, 0x48,
+ 0x8e, 0x47, 0x37, 0x4e, 0x52, 0x1a, 0x72, 0xf3, 0x9e, 0x74, 0xe0, 0xb7, 0x94, 0xbc, 0xdf, 0x80,
+ 0x4a, 0x7f, 0x11, 0x5e, 0x16, 0xdf, 0x83, 0x73, 0xe1, 0x26, 0xbb, 0xdc, 0xb6, 0xdc, 0x43, 0xd4,
+ 0x77, 0xca, 0xe3, 0x34, 0xbd, 0x2e, 0xce, 0x92, 0x7f, 0x1f, 0x74, 0x0b, 0x0c, 0x25, 0xee, 0x6b,
+ 0x41, 0x2a, 0x1e, 0x8b, 0xb9, 0x15, 0xad, 0x6b, 0xc7, 0x8a, 0xb0, 0xf4, 0xa0, 0x24, 0x7d, 0x7a,
+ 0x0c, 0x22, 0x43, 0x28, 0xe8, 0x3b, 0x11, 0xde, 0x1a, 0x59, 0xb4, 0xd0, 0xea, 0x58, 0xec, 0x0e,
+ 0xad, 0x78, 0xa3, 0x38, 0xfe, 0xe7, 0x84, 0x1c, 0x0f, 0x8c, 0xd0, 0x17, 0x82, 0x74, 0xe7, 0x78,
+ 0x11, 0xaa, 0x85, 0xcd, 0x08, 0xc4, 0xec, 0xe7, 0x52, 0xf9, 0x38, 0x31, 0x3b, 0x04, 0x12, 0xbd,
+ 0x10, 0x61, 0x6e, 0x70, 0x11, 0x1d, 0x96, 0xe3, 0x86, 0x96, 0xdd, 0x89, 0x62, 0xf9, 0x85, 0xf0,
+ 0xba, 0x98, 0xec, 0xa1, 0xee, 0x97, 0x42, 0xee, 0x16, 0xb5, 0xd2, 0x1b, 0xcd, 0x4f, 0xec, 0xa0,
+ 0x5d, 0xc6, 0xd6, 0x73, 0x37, 0x86, 0x63, 0x8d, 0x70, 0xd2, 0x2e, 0x51, 0x3f, 0x17, 0xe1, 0xdc,
+ 0xc0, 0x6a, 0x8a, 0x86, 0xfc, 0x4a, 0x37, 0xac, 0x5f, 0xc8, 0x5d, 0x9f, 0x58, 0x8e, 0x95, 0x6d,
+ 0xe9, 0xd9, 0xeb, 0x22, 0xef, 0x14, 0x7a, 0x32, 0xe0, 0xa4, 0xae, 0xe6, 0x67, 0xc0, 0xc9, 0xdc,
+ 0x09, 0x7d, 0x2b, 0xc0, 0xdc, 0xe0, 0xca, 0x3d, 0xcc, 0x65, 0x86, 0xd6, 0xfa, 0xdc, 0x5c, 0x7e,
+ 0x60, 0xbc, 0x85, 0x52, 0xfd, 0xd2, 0x71, 0x53, 0xfd, 0xd2, 0x71, 0x52, 0x7d, 0x6e, 0xe3, 0x65,
+ 0xf1, 0x7c, 0x44, 0xb7, 0xf1, 0xc7, 0x62, 0x7e, 0xcf, 0x75, 0x2d, 0x67, 0xa5, 0x50, 0x78, 0xf2,
+ 0xe4, 0x49, 0xb8, 0x15, 0x51, 0x3a, 0xee, 0x1e, 0xfb, 0xc9, 0xfc, 0x43, 0x82, 0xf6, 0xd0, 0xb4,
+ 0xdb, 0xab, 0x4f, 0xe1, 0x52, 0xd3, 0x6c, 0x47, 0xf2, 0xb3, 0x3a, 0xd7, 0xb7, 0xdf, 0x3b, 0x84,
+ 0x8a, 0x1d, 0xe1, 0xc1, 0x6d, 0x2e, 0xd3, 0x32, 0x75, 0xc5, 0x68, 0xe5, 0x4d, 0xbb, 0x55, 0x68,
+ 0x61, 0x83, 0x12, 0x55, 0xe8, 0x7e, 0xb8, 0xff, 0x27, 0xfa, 0x4f, 0xbc, 0xe7, 0x46, 0x82, 0x2e,
+ 0xbe, 0xf6, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xcf, 0xd4, 0xd8, 0x37, 0xb7, 0x20, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/googleapis/cloud/dataproc/v1beta2/clusters.pb.go b/googleapis/cloud/dataproc/v1beta2/clusters.pb.go
index c315de9..dc7cb87 100644
--- a/googleapis/cloud/dataproc/v1beta2/clusters.pb.go
+++ b/googleapis/cloud/dataproc/v1beta2/clusters.pb.go
@@ -46,6 +46,12 @@
ClusterStatus_DELETING ClusterStatus_State = 4
// The cluster is being updated. It continues to accept and process jobs.
ClusterStatus_UPDATING ClusterStatus_State = 5
+ // The cluster is being stopped. It cannot be used.
+ ClusterStatus_STOPPING ClusterStatus_State = 6
+ // The cluster is currently stopped. It is not ready for use.
+ ClusterStatus_STOPPED ClusterStatus_State = 7
+ // The cluster is being started. It is not ready for use.
+ ClusterStatus_STARTING ClusterStatus_State = 8
)
var ClusterStatus_State_name = map[int32]string{
@@ -55,6 +61,9 @@
3: "ERROR",
4: "DELETING",
5: "UPDATING",
+ 6: "STOPPING",
+ 7: "STOPPED",
+ 8: "STARTING",
}
var ClusterStatus_State_value = map[string]int32{
@@ -64,6 +73,9 @@
"ERROR": 3,
"DELETING": 4,
"UPDATING": 5,
+ "STOPPING": 6,
+ "STOPPED": 7,
+ "STARTING": 8,
}
func (x ClusterStatus_State) String() string {
@@ -71,7 +83,7 @@
}
func (ClusterStatus_State) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{14, 0}
+ return fileDescriptor_abc993f8d220b626, []int{15, 0}
}
// The cluster substate.
@@ -110,7 +122,7 @@
}
func (ClusterStatus_Substate) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{14, 1}
+ return fileDescriptor_abc993f8d220b626, []int{15, 1}
}
// Indicates whether to consume capacity from an reservation or not.
@@ -146,7 +158,7 @@
}
func (ReservationAffinity_Type) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{25, 0}
+ return fileDescriptor_abc993f8d220b626, []int{26, 0}
}
// Describes the identifying information, config, and status of
@@ -316,10 +328,15 @@
// Optional. Port/endpoint configuration for this cluster
EndpointConfig *EndpointConfig `protobuf:"bytes,17,opt,name=endpoint_config,json=endpointConfig,proto3" json:"endpoint_config,omitempty"`
// Optional. Security related configuration.
- SecurityConfig *SecurityConfig `protobuf:"bytes,18,opt,name=security_config,json=securityConfig,proto3" json:"security_config,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ SecurityConfig *SecurityConfig `protobuf:"bytes,18,opt,name=security_config,json=securityConfig,proto3" json:"security_config,omitempty"`
+ // Optional. The Kubernetes Engine config for Dataproc clusters deployed to Kubernetes.
+ // Setting this is considered mutually exclusive with Compute Engine-based
+ // options such as `gce_cluster_config`, `master_config`, `worker_config`,
+ // `secondary_worker_config`, and `autoscaling_config`.
+ GkeClusterConfig *GkeClusterConfig `protobuf:"bytes,19,opt,name=gke_cluster_config,json=gkeClusterConfig,proto3" json:"gke_cluster_config,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *ClusterConfig) Reset() { *m = ClusterConfig{} }
@@ -431,6 +448,109 @@
return nil
}
+func (m *ClusterConfig) GetGkeClusterConfig() *GkeClusterConfig {
+ if m != nil {
+ return m.GkeClusterConfig
+ }
+ return nil
+}
+
+// The GKE config for this cluster.
+type GkeClusterConfig struct {
+ // Optional. A target for the deployment.
+ NamespacedGkeDeploymentTarget *GkeClusterConfig_NamespacedGkeDeploymentTarget `protobuf:"bytes,1,opt,name=namespaced_gke_deployment_target,json=namespacedGkeDeploymentTarget,proto3" json:"namespaced_gke_deployment_target,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GkeClusterConfig) Reset() { *m = GkeClusterConfig{} }
+func (m *GkeClusterConfig) String() string { return proto.CompactTextString(m) }
+func (*GkeClusterConfig) ProtoMessage() {}
+func (*GkeClusterConfig) Descriptor() ([]byte, []int) {
+ return fileDescriptor_abc993f8d220b626, []int{2}
+}
+
+func (m *GkeClusterConfig) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GkeClusterConfig.Unmarshal(m, b)
+}
+func (m *GkeClusterConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GkeClusterConfig.Marshal(b, m, deterministic)
+}
+func (m *GkeClusterConfig) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GkeClusterConfig.Merge(m, src)
+}
+func (m *GkeClusterConfig) XXX_Size() int {
+ return xxx_messageInfo_GkeClusterConfig.Size(m)
+}
+func (m *GkeClusterConfig) XXX_DiscardUnknown() {
+ xxx_messageInfo_GkeClusterConfig.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GkeClusterConfig proto.InternalMessageInfo
+
+func (m *GkeClusterConfig) GetNamespacedGkeDeploymentTarget() *GkeClusterConfig_NamespacedGkeDeploymentTarget {
+ if m != nil {
+ return m.NamespacedGkeDeploymentTarget
+ }
+ return nil
+}
+
+// A full, namespace-isolated deployment target for an existing GKE cluster.
+type GkeClusterConfig_NamespacedGkeDeploymentTarget struct {
+ // Optional. The target GKE cluster to deploy to.
+ // Format: 'projects/{project}/locations/{location}/clusters/{cluster_id}'
+ TargetGkeCluster string `protobuf:"bytes,1,opt,name=target_gke_cluster,json=targetGkeCluster,proto3" json:"target_gke_cluster,omitempty"`
+ // Optional. A namespace within the GKE cluster to deploy into.
+ ClusterNamespace string `protobuf:"bytes,2,opt,name=cluster_namespace,json=clusterNamespace,proto3" json:"cluster_namespace,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) Reset() {
+ *m = GkeClusterConfig_NamespacedGkeDeploymentTarget{}
+}
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) String() string {
+ return proto.CompactTextString(m)
+}
+func (*GkeClusterConfig_NamespacedGkeDeploymentTarget) ProtoMessage() {}
+func (*GkeClusterConfig_NamespacedGkeDeploymentTarget) Descriptor() ([]byte, []int) {
+ return fileDescriptor_abc993f8d220b626, []int{2, 0}
+}
+
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GkeClusterConfig_NamespacedGkeDeploymentTarget.Unmarshal(m, b)
+}
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GkeClusterConfig_NamespacedGkeDeploymentTarget.Marshal(b, m, deterministic)
+}
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GkeClusterConfig_NamespacedGkeDeploymentTarget.Merge(m, src)
+}
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) XXX_Size() int {
+ return xxx_messageInfo_GkeClusterConfig_NamespacedGkeDeploymentTarget.Size(m)
+}
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) XXX_DiscardUnknown() {
+ xxx_messageInfo_GkeClusterConfig_NamespacedGkeDeploymentTarget.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GkeClusterConfig_NamespacedGkeDeploymentTarget proto.InternalMessageInfo
+
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) GetTargetGkeCluster() string {
+ if m != nil {
+ return m.TargetGkeCluster
+ }
+ return ""
+}
+
+func (m *GkeClusterConfig_NamespacedGkeDeploymentTarget) GetClusterNamespace() string {
+ if m != nil {
+ return m.ClusterNamespace
+ }
+ return ""
+}
+
// Endpoint config for this cluster
type EndpointConfig struct {
// Output only. The map of port descriptions to URLs. Will only be populated
@@ -448,7 +568,7 @@
func (m *EndpointConfig) String() string { return proto.CompactTextString(m) }
func (*EndpointConfig) ProtoMessage() {}
func (*EndpointConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{2}
+ return fileDescriptor_abc993f8d220b626, []int{3}
}
func (m *EndpointConfig) XXX_Unmarshal(b []byte) error {
@@ -504,7 +624,7 @@
func (m *AutoscalingConfig) String() string { return proto.CompactTextString(m) }
func (*AutoscalingConfig) ProtoMessage() {}
func (*AutoscalingConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{3}
+ return fileDescriptor_abc993f8d220b626, []int{4}
}
func (m *AutoscalingConfig) XXX_Unmarshal(b []byte) error {
@@ -546,7 +666,7 @@
func (m *EncryptionConfig) String() string { return proto.CompactTextString(m) }
func (*EncryptionConfig) ProtoMessage() {}
func (*EncryptionConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{4}
+ return fileDescriptor_abc993f8d220b626, []int{5}
}
func (m *EncryptionConfig) XXX_Unmarshal(b []byte) error {
@@ -662,7 +782,7 @@
func (m *GceClusterConfig) String() string { return proto.CompactTextString(m) }
func (*GceClusterConfig) ProtoMessage() {}
func (*GceClusterConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{5}
+ return fileDescriptor_abc993f8d220b626, []int{6}
}
func (m *GceClusterConfig) XXX_Unmarshal(b []byte) error {
@@ -755,9 +875,24 @@
// Output only. The list of instance names. Dataproc derives the names
// from `cluster_name`, `num_instances`, and the instance group.
InstanceNames []string `protobuf:"bytes,2,rep,name=instance_names,json=instanceNames,proto3" json:"instance_names,omitempty"`
- // Optional. The Compute Engine image resource used for cluster
- // instances. It can be specified or may be inferred from
- // `SoftwareConfig.image_version`.
+ // Optional. The Compute Engine image resource used for cluster instances.
+ //
+ // The URI can represent an image or image family.
+ //
+ // Image examples:
+ //
+ // * `https://www.googleapis.com/compute/beta/projects/[project_id]/global/images/[image-id]`
+ // * `projects/[project_id]/global/images/[image-id]`
+ // * `image-id`
+ //
+ // Image family examples. Dataproc will use the most recent
+ // image from the family:
+ //
+ // * `https://www.googleapis.com/compute/beta/projects/[project_id]/global/images/family/[custom-image-family-name]`
+ // * `projects/[project_id]/global/images/family/[custom-image-family-name]`
+ //
+ // If the URI is unspecified, it will be inferred from
+ // `SoftwareConfig.image_version` or the system default.
ImageUri string `protobuf:"bytes,3,opt,name=image_uri,json=imageUri,proto3" json:"image_uri,omitempty"`
// Optional. The Compute Engine machine type used for cluster instances.
//
@@ -775,7 +910,7 @@
MachineTypeUri string `protobuf:"bytes,4,opt,name=machine_type_uri,json=machineTypeUri,proto3" json:"machine_type_uri,omitempty"`
// Optional. Disk option config settings.
DiskConfig *DiskConfig `protobuf:"bytes,5,opt,name=disk_config,json=diskConfig,proto3" json:"disk_config,omitempty"`
- // Optional. Specifies that this instance group contains preemptible
+ // Output only. Specifies that this instance group contains preemptible
// instances.
IsPreemptible bool `protobuf:"varint,6,opt,name=is_preemptible,json=isPreemptible,proto3" json:"is_preemptible,omitempty"`
// Output only. The config for Compute Engine Instance Group
@@ -798,7 +933,7 @@
func (m *InstanceGroupConfig) String() string { return proto.CompactTextString(m) }
func (*InstanceGroupConfig) ProtoMessage() {}
func (*InstanceGroupConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{6}
+ return fileDescriptor_abc993f8d220b626, []int{7}
}
func (m *InstanceGroupConfig) XXX_Unmarshal(b []byte) error {
@@ -898,7 +1033,7 @@
func (m *ManagedGroupConfig) String() string { return proto.CompactTextString(m) }
func (*ManagedGroupConfig) ProtoMessage() {}
func (*ManagedGroupConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{7}
+ return fileDescriptor_abc993f8d220b626, []int{8}
}
func (m *ManagedGroupConfig) XXX_Unmarshal(b []byte) error {
@@ -963,7 +1098,7 @@
func (m *AcceleratorConfig) String() string { return proto.CompactTextString(m) }
func (*AcceleratorConfig) ProtoMessage() {}
func (*AcceleratorConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{8}
+ return fileDescriptor_abc993f8d220b626, []int{9}
}
func (m *AcceleratorConfig) XXX_Unmarshal(b []byte) error {
@@ -1022,7 +1157,7 @@
func (m *DiskConfig) String() string { return proto.CompactTextString(m) }
func (*DiskConfig) ProtoMessage() {}
func (*DiskConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{9}
+ return fileDescriptor_abc993f8d220b626, []int{10}
}
func (m *DiskConfig) XXX_Unmarshal(b []byte) error {
@@ -1093,7 +1228,7 @@
func (m *LifecycleConfig) String() string { return proto.CompactTextString(m) }
func (*LifecycleConfig) ProtoMessage() {}
func (*LifecycleConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{10}
+ return fileDescriptor_abc993f8d220b626, []int{11}
}
func (m *LifecycleConfig) XXX_Unmarshal(b []byte) error {
@@ -1186,7 +1321,7 @@
func (m *SecurityConfig) String() string { return proto.CompactTextString(m) }
func (*SecurityConfig) ProtoMessage() {}
func (*SecurityConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{11}
+ return fileDescriptor_abc993f8d220b626, []int{12}
}
func (m *SecurityConfig) XXX_Unmarshal(b []byte) error {
@@ -1216,7 +1351,8 @@
// Specifies Kerberos related configuration.
type KerberosConfig struct {
- // Optional. Flag to indicate whether to Kerberize the cluster.
+ // Optional. Flag to indicate whether to Kerberize the cluster (default: false). Set
+ // this field to true to enable Kerberos on a cluster.
EnableKerberos bool `protobuf:"varint,1,opt,name=enable_kerberos,json=enableKerberos,proto3" json:"enable_kerberos,omitempty"`
// Required. The Cloud Storage URI of a KMS encrypted file containing the root
// principal password.
@@ -1276,7 +1412,7 @@
func (m *KerberosConfig) String() string { return proto.CompactTextString(m) }
func (*KerberosConfig) ProtoMessage() {}
func (*KerberosConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{12}
+ return fileDescriptor_abc993f8d220b626, []int{13}
}
func (m *KerberosConfig) XXX_Unmarshal(b []byte) error {
@@ -1424,7 +1560,7 @@
func (m *NodeInitializationAction) String() string { return proto.CompactTextString(m) }
func (*NodeInitializationAction) ProtoMessage() {}
func (*NodeInitializationAction) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{13}
+ return fileDescriptor_abc993f8d220b626, []int{14}
}
func (m *NodeInitializationAction) XXX_Unmarshal(b []byte) error {
@@ -1480,7 +1616,7 @@
func (m *ClusterStatus) String() string { return proto.CompactTextString(m) }
func (*ClusterStatus) ProtoMessage() {}
func (*ClusterStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{14}
+ return fileDescriptor_abc993f8d220b626, []int{15}
}
func (m *ClusterStatus) XXX_Unmarshal(b []byte) error {
@@ -1569,7 +1705,7 @@
func (m *SoftwareConfig) String() string { return proto.CompactTextString(m) }
func (*SoftwareConfig) ProtoMessage() {}
func (*SoftwareConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{15}
+ return fileDescriptor_abc993f8d220b626, []int{16}
}
func (m *SoftwareConfig) XXX_Unmarshal(b []byte) error {
@@ -1629,7 +1765,7 @@
func (m *ClusterMetrics) String() string { return proto.CompactTextString(m) }
func (*ClusterMetrics) ProtoMessage() {}
func (*ClusterMetrics) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{16}
+ return fileDescriptor_abc993f8d220b626, []int{17}
}
func (m *ClusterMetrics) XXX_Unmarshal(b []byte) error {
@@ -1694,7 +1830,7 @@
func (m *CreateClusterRequest) String() string { return proto.CompactTextString(m) }
func (*CreateClusterRequest) ProtoMessage() {}
func (*CreateClusterRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{17}
+ return fileDescriptor_abc993f8d220b626, []int{18}
}
func (m *CreateClusterRequest) XXX_Unmarshal(b []byte) error {
@@ -1846,7 +1982,7 @@
func (m *UpdateClusterRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateClusterRequest) ProtoMessage() {}
func (*UpdateClusterRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{18}
+ return fileDescriptor_abc993f8d220b626, []int{19}
}
func (m *UpdateClusterRequest) XXX_Unmarshal(b []byte) error {
@@ -1949,7 +2085,7 @@
func (m *DeleteClusterRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteClusterRequest) ProtoMessage() {}
func (*DeleteClusterRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{19}
+ return fileDescriptor_abc993f8d220b626, []int{20}
}
func (m *DeleteClusterRequest) XXX_Unmarshal(b []byte) error {
@@ -2023,7 +2159,7 @@
func (m *GetClusterRequest) String() string { return proto.CompactTextString(m) }
func (*GetClusterRequest) ProtoMessage() {}
func (*GetClusterRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{20}
+ return fileDescriptor_abc993f8d220b626, []int{21}
}
func (m *GetClusterRequest) XXX_Unmarshal(b []byte) error {
@@ -2105,7 +2241,7 @@
func (m *ListClustersRequest) String() string { return proto.CompactTextString(m) }
func (*ListClustersRequest) ProtoMessage() {}
func (*ListClustersRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{21}
+ return fileDescriptor_abc993f8d220b626, []int{22}
}
func (m *ListClustersRequest) XXX_Unmarshal(b []byte) error {
@@ -2178,7 +2314,7 @@
func (m *ListClustersResponse) String() string { return proto.CompactTextString(m) }
func (*ListClustersResponse) ProtoMessage() {}
func (*ListClustersResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{22}
+ return fileDescriptor_abc993f8d220b626, []int{23}
}
func (m *ListClustersResponse) XXX_Unmarshal(b []byte) error {
@@ -2231,7 +2367,7 @@
func (m *DiagnoseClusterRequest) String() string { return proto.CompactTextString(m) }
func (*DiagnoseClusterRequest) ProtoMessage() {}
func (*DiagnoseClusterRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{23}
+ return fileDescriptor_abc993f8d220b626, []int{24}
}
func (m *DiagnoseClusterRequest) XXX_Unmarshal(b []byte) error {
@@ -2288,7 +2424,7 @@
func (m *DiagnoseClusterResults) String() string { return proto.CompactTextString(m) }
func (*DiagnoseClusterResults) ProtoMessage() {}
func (*DiagnoseClusterResults) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{24}
+ return fileDescriptor_abc993f8d220b626, []int{25}
}
func (m *DiagnoseClusterResults) XXX_Unmarshal(b []byte) error {
@@ -2333,7 +2469,7 @@
func (m *ReservationAffinity) String() string { return proto.CompactTextString(m) }
func (*ReservationAffinity) ProtoMessage() {}
func (*ReservationAffinity) Descriptor() ([]byte, []int) {
- return fileDescriptor_abc993f8d220b626, []int{25}
+ return fileDescriptor_abc993f8d220b626, []int{26}
}
func (m *ReservationAffinity) XXX_Unmarshal(b []byte) error {
@@ -2382,6 +2518,8 @@
proto.RegisterType((*Cluster)(nil), "google.cloud.dataproc.v1beta2.Cluster")
proto.RegisterMapType((map[string]string)(nil), "google.cloud.dataproc.v1beta2.Cluster.LabelsEntry")
proto.RegisterType((*ClusterConfig)(nil), "google.cloud.dataproc.v1beta2.ClusterConfig")
+ proto.RegisterType((*GkeClusterConfig)(nil), "google.cloud.dataproc.v1beta2.GkeClusterConfig")
+ proto.RegisterType((*GkeClusterConfig_NamespacedGkeDeploymentTarget)(nil), "google.cloud.dataproc.v1beta2.GkeClusterConfig.NamespacedGkeDeploymentTarget")
proto.RegisterType((*EndpointConfig)(nil), "google.cloud.dataproc.v1beta2.EndpointConfig")
proto.RegisterMapType((map[string]string)(nil), "google.cloud.dataproc.v1beta2.EndpointConfig.HttpPortsEntry")
proto.RegisterType((*AutoscalingConfig)(nil), "google.cloud.dataproc.v1beta2.AutoscalingConfig")
@@ -2418,201 +2556,212 @@
}
var fileDescriptor_abc993f8d220b626 = []byte{
- // 3101 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcd, 0x6f, 0x1b, 0xc7,
- 0x15, 0x37, 0x49, 0x7d, 0x3e, 0x8a, 0x14, 0x35, 0x92, 0x6d, 0x46, 0x6e, 0x52, 0x95, 0x49, 0x03,
- 0xc5, 0xb1, 0xc9, 0x58, 0x41, 0xe2, 0xc4, 0x71, 0x82, 0xd2, 0x12, 0x2d, 0x09, 0x92, 0x25, 0x61,
- 0x45, 0x39, 0x75, 0x5b, 0x74, 0xbb, 0xdc, 0x1d, 0x51, 0x1b, 0xee, 0x57, 0x77, 0x66, 0xed, 0xd0,
- 0x6e, 0x0e, 0xed, 0xb9, 0x05, 0x5a, 0x04, 0xfd, 0x07, 0x7a, 0x2a, 0x9a, 0x6b, 0x0e, 0xfd, 0xb8,
- 0x14, 0x45, 0x81, 0x02, 0xe9, 0xa5, 0x68, 0xd1, 0x1e, 0x72, 0xea, 0xa1, 0x40, 0x0f, 0xed, 0xff,
- 0xd0, 0x62, 0x3e, 0x76, 0x77, 0x96, 0x54, 0x4c, 0xca, 0x36, 0x90, 0x93, 0x96, 0xef, 0xe3, 0xf7,
- 0xde, 0xbc, 0x79, 0xfb, 0xde, 0x9b, 0x59, 0xc1, 0x95, 0xae, 0xef, 0x77, 0x1d, 0xdc, 0x30, 0x1d,
- 0x3f, 0xb2, 0x1a, 0x96, 0x41, 0x8d, 0x20, 0xf4, 0xcd, 0xc6, 0xfd, 0x6b, 0x1d, 0x4c, 0x8d, 0xb5,
- 0x86, 0xe9, 0x44, 0x84, 0xe2, 0x90, 0xd4, 0x83, 0xd0, 0xa7, 0x3e, 0x7a, 0x5e, 0x48, 0xd7, 0xb9,
- 0x74, 0x3d, 0x96, 0xae, 0x4b, 0xe9, 0xe5, 0xaf, 0x48, 0x30, 0x23, 0xb0, 0x1b, 0x86, 0xe7, 0xf9,
- 0xd4, 0xa0, 0xb6, 0xef, 0x49, 0xe5, 0xe5, 0x8b, 0x0a, 0xd7, 0x74, 0x6c, 0xec, 0x51, 0xc9, 0xf8,
- 0xaa, 0xc2, 0x38, 0xb6, 0xb1, 0x63, 0xe9, 0x1d, 0x7c, 0x62, 0xdc, 0xb7, 0xfd, 0x50, 0x0a, 0x3c,
- 0xa7, 0x08, 0x84, 0x98, 0xf8, 0x51, 0x68, 0x62, 0xc9, 0xba, 0xfc, 0x78, 0xff, 0xc9, 0x89, 0x11,
- 0x62, 0x4b, 0xca, 0xbe, 0x28, 0x65, 0x1d, 0xdf, 0xeb, 0x86, 0x91, 0xe7, 0xd9, 0x5e, 0xb7, 0xe1,
- 0x07, 0x38, 0xcc, 0x78, 0xf9, 0x82, 0x14, 0xe2, 0xbf, 0x3a, 0xd1, 0x71, 0xc3, 0x8a, 0x84, 0x80,
- 0xe4, 0xaf, 0x0c, 0xf2, 0x85, 0xc7, 0xae, 0x41, 0x7a, 0x03, 0xcb, 0x49, 0x24, 0xa8, 0xed, 0x62,
- 0x42, 0x0d, 0x37, 0x10, 0x02, 0xb5, 0x3f, 0x4d, 0xc0, 0xf4, 0xba, 0x08, 0x2c, 0xaa, 0x01, 0x04,
- 0xa1, 0xff, 0x01, 0x36, 0xa9, 0x6e, 0x5b, 0xd5, 0xdc, 0x4a, 0x6e, 0x75, 0xf6, 0x56, 0xe1, 0x9f,
- 0xcd, 0xbc, 0x36, 0x2b, 0xc9, 0xdb, 0x16, 0x7a, 0x19, 0xe6, 0xe4, 0x3e, 0xe8, 0x9e, 0xe1, 0xe2,
- 0x6a, 0x3e, 0x95, 0x2a, 0x4a, 0xc6, 0x9e, 0xe1, 0x62, 0xb4, 0x0d, 0x53, 0xa6, 0xef, 0x1d, 0xdb,
- 0xdd, 0x6a, 0x61, 0x25, 0xb7, 0x5a, 0x5c, 0xbb, 0x52, 0x7f, 0xec, 0x76, 0xd5, 0xa5, 0x0f, 0xeb,
- 0x5c, 0x47, 0xe0, 0x49, 0x00, 0xb4, 0x0f, 0x53, 0x8e, 0xd1, 0xc1, 0x0e, 0xa9, 0xce, 0xac, 0x14,
- 0x56, 0x8b, 0x6b, 0x6b, 0xe3, 0x41, 0xd5, 0x77, 0xb9, 0x52, 0xcb, 0xa3, 0x61, 0x9f, 0x01, 0xe6,
- 0x34, 0x09, 0xc3, 0x7c, 0x23, 0xd4, 0xa0, 0x11, 0xa9, 0x4e, 0x9c, 0xc5, 0xb7, 0x43, 0xae, 0xc3,
- 0xa0, 0x0a, 0x9a, 0x04, 0x40, 0xdf, 0x84, 0xb2, 0x78, 0xd2, 0x4f, 0x6c, 0x42, 0xfd, 0xb0, 0x5f,
- 0x9d, 0xe6, 0x3e, 0x3e, 0x01, 0x64, 0x49, 0x00, 0x6d, 0x09, 0x1c, 0x35, 0xd0, 0x51, 0x64, 0x5b,
- 0xd5, 0xa9, 0x38, 0xd0, 0x85, 0x24, 0xd0, 0x47, 0x91, 0x6d, 0xa1, 0x5d, 0x98, 0x76, 0x31, 0x0d,
- 0x6d, 0x93, 0x54, 0x67, 0xf9, 0x6a, 0xae, 0x8e, 0x67, 0xfa, 0x8e, 0x50, 0x12, 0x88, 0x31, 0xc4,
- 0xf2, 0xdb, 0x50, 0x54, 0xc2, 0x86, 0x2a, 0x50, 0xe8, 0xe1, 0xbe, 0x48, 0x05, 0x8d, 0x3d, 0xa2,
- 0x25, 0x98, 0xbc, 0x6f, 0x38, 0x91, 0xdc, 0x78, 0x4d, 0xfc, 0xb8, 0x91, 0x7f, 0x2b, 0x57, 0xfb,
- 0xdf, 0x0c, 0x94, 0x32, 0xbb, 0x88, 0x56, 0xa1, 0x24, 0xb6, 0x50, 0xef, 0x44, 0x66, 0x0f, 0xd3,
- 0x34, 0xa5, 0x72, 0xda, 0x9c, 0xe0, 0xdc, 0xe2, 0x0c, 0xd4, 0x01, 0xd4, 0x35, 0xb1, 0x1e, 0x2f,
- 0x58, 0x66, 0xce, 0x0c, 0x5f, 0x4f, 0x63, 0xc4, 0x7a, 0x36, 0x4d, 0x3c, 0x94, 0x3c, 0x39, 0xad,
- 0xd2, 0x1d, 0x20, 0xa3, 0xef, 0x40, 0xc9, 0x35, 0x54, 0x78, 0x11, 0xae, 0x51, 0xd9, 0xb4, 0xed,
- 0x11, 0x6a, 0x78, 0x26, 0xde, 0x0c, 0xfd, 0x28, 0x50, 0x2d, 0xcc, 0x09, 0xb4, 0x14, 0xfd, 0x81,
- 0x1f, 0xf6, 0x52, 0x74, 0x78, 0x4a, 0x74, 0x81, 0x26, 0xd1, 0x7d, 0xb8, 0x48, 0xb0, 0xe9, 0x7b,
- 0x96, 0x11, 0xf6, 0xf5, 0xac, 0x9d, 0xb9, 0xa7, 0xb3, 0x73, 0x3e, 0xc1, 0x7d, 0x5f, 0x35, 0xf8,
- 0x6d, 0x98, 0x27, 0xfe, 0x31, 0x7d, 0x60, 0x84, 0x38, 0x36, 0x54, 0x1a, 0x2b, 0xbb, 0x0e, 0xa5,
- 0x96, 0x6a, 0xa3, 0x4c, 0x32, 0x44, 0xf4, 0x5d, 0xa8, 0x38, 0xf6, 0x31, 0x36, 0xfb, 0xa6, 0x93,
- 0xa0, 0x97, 0x39, 0x7a, 0x7d, 0x04, 0xfa, 0x6e, 0xac, 0xa6, 0xc2, 0xcf, 0x3b, 0x59, 0x2a, 0x22,
- 0x70, 0xc1, 0xf6, 0x6c, 0x6a, 0x1b, 0x8e, 0xfd, 0x90, 0x97, 0x4b, 0xdd, 0x30, 0x79, 0x59, 0xad,
- 0x16, 0xf9, 0xcb, 0x79, 0x7d, 0x84, 0x95, 0x3d, 0xdf, 0xc2, 0xdb, 0x19, 0x80, 0x26, 0xd7, 0x97,
- 0x11, 0xb3, 0x4f, 0x61, 0x11, 0x64, 0xc0, 0x02, 0xf6, 0xcc, 0xb0, 0x1f, 0x70, 0x83, 0x72, 0x55,
- 0xf3, 0x63, 0x65, 0x70, 0x2b, 0xd1, 0xcb, 0x64, 0x30, 0x1e, 0x20, 0x23, 0x0b, 0x90, 0x11, 0x51,
- 0x9f, 0x98, 0x86, 0x63, 0x7b, 0xdd, 0xd8, 0x46, 0x85, 0xdb, 0x78, 0x6d, 0x84, 0x8d, 0x66, 0xaa,
- 0xa8, 0x1a, 0x59, 0x30, 0x06, 0xe9, 0x6c, 0xeb, 0xb1, 0x67, 0x05, 0xbe, 0xed, 0xd1, 0xd8, 0xc4,
- 0xc2, 0x58, 0x5b, 0xdf, 0x92, 0x5a, 0x99, 0xad, 0xc7, 0x19, 0x22, 0xcf, 0x2b, 0x6c, 0x46, 0xa1,
- 0x4d, 0xfb, 0x31, 0x38, 0x1a, 0x2f, 0xaf, 0xa4, 0x56, 0x36, 0xaf, 0x32, 0xc4, 0xda, 0x7f, 0x73,
- 0x50, 0xce, 0x3a, 0x81, 0xbe, 0x07, 0x70, 0x42, 0x69, 0xa0, 0x07, 0x7e, 0x48, 0x49, 0x35, 0xc7,
- 0xb7, 0xff, 0xe6, 0x99, 0xd6, 0x51, 0xdf, 0xa2, 0x34, 0x38, 0x60, 0xea, 0x49, 0x27, 0x29, 0x68,
- 0xb3, 0x27, 0x31, 0x11, 0xdd, 0x80, 0x8b, 0xd8, 0x33, 0x3a, 0x0e, 0xd6, 0x13, 0x43, 0xba, 0x61,
- 0x9a, 0x98, 0x10, 0x5e, 0x22, 0x67, 0x84, 0xab, 0x4b, 0x42, 0x26, 0xc6, 0x6a, 0x72, 0x81, 0xe5,
- 0x9b, 0x50, 0xce, 0xa2, 0x9f, 0xa9, 0xe0, 0x5e, 0x87, 0x85, 0xa1, 0x5d, 0xe5, 0x3d, 0xdc, 0x77,
- 0x6c, 0xb3, 0xaf, 0x47, 0xa1, 0xad, 0x16, 0xdc, 0x59, 0x41, 0x3e, 0x0a, 0xed, 0x5a, 0x0b, 0x2a,
- 0x83, 0x29, 0x87, 0xae, 0xc1, 0x22, 0xab, 0xc0, 0x81, 0xa5, 0xf7, 0x5c, 0xa2, 0xf7, 0x70, 0x5f,
- 0xb4, 0x77, 0x05, 0x60, 0xbe, 0x6b, 0xe2, 0x03, 0x6b, 0xc7, 0x25, 0x3b, 0xb8, 0xcf, 0x5a, 0x7c,
- 0xed, 0xd3, 0x09, 0xa8, 0x0c, 0x16, 0x5f, 0xf4, 0x02, 0xcc, 0x3c, 0xf4, 0x3d, 0x3c, 0x68, 0x7d,
- 0x9a, 0x11, 0x8f, 0x42, 0x1b, 0xbd, 0x04, 0x45, 0x0f, 0x53, 0x56, 0xc2, 0xb8, 0x48, 0x3e, 0x15,
- 0x01, 0x49, 0x67, 0x52, 0x97, 0xa1, 0x4c, 0xa2, 0x8e, 0x2a, 0x38, 0x95, 0x0a, 0x96, 0x52, 0x16,
- 0x93, 0xbd, 0x0a, 0x15, 0xdb, 0xa3, 0x38, 0xf4, 0x0c, 0x47, 0xb7, 0x03, 0xdd, 0xf7, 0x1c, 0xd6,
- 0x84, 0x93, 0xc8, 0x97, 0x63, 0xe6, 0x76, 0xb0, 0xef, 0x39, 0x7d, 0x74, 0x85, 0x65, 0x60, 0x78,
- 0xdf, 0x36, 0x31, 0xdb, 0x26, 0x3f, 0xf2, 0x28, 0xef, 0x33, 0xb3, 0x49, 0x4a, 0x71, 0x5e, 0x53,
- 0xb0, 0xd0, 0xdb, 0x70, 0x61, 0x40, 0x5a, 0x27, 0xa6, 0x1f, 0x60, 0x52, 0x2d, 0xac, 0x14, 0x62,
- 0xa5, 0xa5, 0xac, 0xd2, 0x21, 0x17, 0x40, 0x08, 0x26, 0xa8, 0xd1, 0x65, 0x33, 0x46, 0x61, 0x75,
- 0x56, 0xe3, 0xcf, 0xe8, 0x1e, 0xcc, 0xb8, 0x98, 0x1a, 0x2c, 0xe5, 0xaa, 0x93, 0x3c, 0x19, 0xdf,
- 0x3d, 0x63, 0x77, 0xab, 0xdf, 0x91, 0xfa, 0x3c, 0x5f, 0xb4, 0x04, 0x0e, 0x7d, 0x00, 0x4b, 0x21,
- 0x66, 0x8e, 0xc8, 0x8a, 0x77, 0x7c, 0xcc, 0xea, 0x54, 0xbf, 0x5a, 0x1c, 0xab, 0x3f, 0x68, 0xa9,
- 0x6a, 0x53, 0x6a, 0x8a, 0xb5, 0x2d, 0x86, 0xc3, 0x9c, 0xe5, 0x77, 0xa0, 0x94, 0x71, 0xe3, 0x4c,
- 0x69, 0xfb, 0xcb, 0x09, 0x58, 0x3c, 0xa5, 0x1d, 0xb1, 0x69, 0xc1, 0x8b, 0x5c, 0xdd, 0x96, 0x2c,
- 0xc2, 0xd1, 0x26, 0x65, 0x37, 0xf4, 0x22, 0x37, 0xd6, 0x21, 0x2c, 0x3b, 0x62, 0x29, 0x9e, 0xa5,
- 0xec, 0x4d, 0x2b, 0xc4, 0xc3, 0x51, 0x29, 0x66, 0xb1, 0x1c, 0x25, 0x68, 0x05, 0x66, 0x6d, 0xd7,
- 0xe8, 0x8a, 0x84, 0x2c, 0xa4, 0x1b, 0x3d, 0xc3, 0xa9, 0x32, 0x7f, 0x5c, 0xc3, 0x3c, 0xb1, 0x3d,
- 0xac, 0xd3, 0x7e, 0x20, 0x04, 0x27, 0x94, 0x8c, 0x90, 0xcc, 0x76, 0x3f, 0xe0, 0xe2, 0xfb, 0x50,
- 0xb4, 0x6c, 0xd2, 0x8b, 0xab, 0xd7, 0x24, 0x0f, 0xef, 0x2b, 0x23, 0xc2, 0xbb, 0x61, 0x93, 0x9e,
- 0x5a, 0xb9, 0xc0, 0x4a, 0x08, 0x7c, 0x35, 0x44, 0x0f, 0x42, 0x8c, 0xdd, 0x80, 0xda, 0x1d, 0x07,
- 0xf3, 0x5c, 0x97, 0xd9, 0x5b, 0xb2, 0xc9, 0x41, 0xca, 0x41, 0x27, 0xb0, 0xe4, 0x1a, 0x9e, 0xd1,
- 0xc5, 0x96, 0xde, 0x65, 0xa1, 0x8b, 0xbd, 0x98, 0xe6, 0x5e, 0x5c, 0x1b, 0xe1, 0xc5, 0x1d, 0xa1,
- 0x3a, 0x30, 0x03, 0x14, 0x34, 0xe4, 0x0e, 0x31, 0xd0, 0x3d, 0x98, 0x63, 0x55, 0xcc, 0x61, 0x27,
- 0x12, 0x3f, 0x8c, 0x47, 0xef, 0x91, 0x5d, 0x26, 0x55, 0xc9, 0x0c, 0x33, 0x2a, 0x14, 0x5a, 0x85,
- 0x8a, 0x6b, 0x7b, 0xba, 0x19, 0x44, 0x7a, 0xe0, 0x18, 0xf4, 0xd8, 0x0f, 0x5d, 0x3e, 0x8b, 0xcd,
- 0x6a, 0x65, 0xd7, 0xf6, 0xd6, 0x83, 0xe8, 0x40, 0x52, 0x6b, 0x1f, 0xe7, 0x00, 0x0d, 0x3b, 0xcd,
- 0x5e, 0xca, 0x64, 0xff, 0x29, 0x76, 0x19, 0x08, 0x1e, 0x28, 0x57, 0x05, 0x6d, 0x29, 0x16, 0x69,
- 0x4b, 0x09, 0x7e, 0x2c, 0xb9, 0x05, 0x97, 0x12, 0x55, 0x11, 0x41, 0xb1, 0xf6, 0xc1, 0xd3, 0x4c,
- 0x41, 0xab, 0xda, 0x6a, 0x8e, 0x0a, 0x2f, 0xf8, 0xd1, 0xa6, 0x16, 0xc2, 0xc2, 0xd0, 0x3a, 0xd1,
- 0x6b, 0xb0, 0xa4, 0x2c, 0x32, 0xcd, 0x24, 0xf1, 0x4a, 0x20, 0x85, 0x17, 0x27, 0xd2, 0xab, 0xb0,
- 0xa0, 0x6a, 0x88, 0x52, 0xc4, 0x1c, 0x98, 0xd4, 0x2a, 0x86, 0x8a, 0x1f, 0x79, 0xb4, 0xf6, 0x93,
- 0x1c, 0x40, 0x9a, 0x44, 0xe8, 0x15, 0x28, 0x77, 0x7c, 0x9f, 0xea, 0x3c, 0x13, 0x99, 0x2d, 0x35,
- 0xb5, 0xe7, 0x18, 0x8b, 0x09, 0x33, 0x4b, 0xa8, 0x0e, 0x0b, 0xa9, 0x28, 0xb1, 0x1f, 0x62, 0xbd,
- 0xdb, 0x51, 0x5f, 0xad, 0x72, 0x2c, 0x7d, 0x68, 0x3f, 0xc4, 0x9b, 0x1d, 0xf4, 0x12, 0x94, 0xd9,
- 0x6b, 0xe8, 0xf8, 0xa6, 0xe1, 0xe8, 0x84, 0x58, 0x44, 0xfa, 0xc4, 0x5e, 0xc1, 0x5d, 0x46, 0x3c,
- 0x24, 0x16, 0xa9, 0xfd, 0x3e, 0x0f, 0xf3, 0x03, 0xc3, 0x18, 0xba, 0x0d, 0xf3, 0xb6, 0xe5, 0x60,
- 0xdd, 0xc2, 0x0e, 0xa6, 0x58, 0xa7, 0xd4, 0xe1, 0x76, 0x8a, 0x6b, 0xcf, 0xc5, 0x59, 0x13, 0x9f,
- 0x42, 0xeb, 0x1b, 0xf2, 0x1c, 0x1b, 0x27, 0xb9, 0xe5, 0xe0, 0x0d, 0xae, 0xd5, 0xa6, 0x0e, 0xda,
- 0x81, 0x0a, 0x9b, 0x4a, 0x12, 0x1c, 0x5b, 0x6e, 0x4c, 0x71, 0x6d, 0x79, 0x08, 0xa8, 0x1d, 0x1f,
- 0x67, 0x39, 0xd2, 0xd6, 0x39, 0xad, 0xcc, 0x54, 0x25, 0x96, 0xed, 0x62, 0xb4, 0x05, 0xf3, 0x19,
- 0x30, 0xea, 0xc8, 0x03, 0xe9, 0x08, 0xa7, 0xb6, 0xce, 0x69, 0x25, 0x05, 0x8a, 0x3a, 0x68, 0x53,
- 0x2e, 0x8f, 0x50, 0x23, 0xa4, 0xc2, 0xab, 0x89, 0x71, 0xbc, 0x2a, 0x88, 0xf5, 0x1d, 0x32, 0x35,
- 0xc6, 0xb8, 0x35, 0x09, 0x05, 0x4a, 0x9d, 0xda, 0x09, 0x94, 0xb3, 0x43, 0x0d, 0xba, 0x0b, 0xf3,
- 0x3d, 0x1c, 0x76, 0x70, 0xe8, 0x93, 0xf8, 0xc5, 0xce, 0x8d, 0x35, 0x1c, 0xed, 0x48, 0x2d, 0x81,
- 0xa3, 0x95, 0x7b, 0x99, 0xdf, 0xb5, 0x4f, 0xa6, 0xa0, 0x9c, 0x15, 0x61, 0x5d, 0x50, 0x4e, 0x2d,
- 0xb1, 0x2c, 0x37, 0x35, 0x93, 0x4c, 0x6d, 0x8c, 0x17, 0xeb, 0xb0, 0xb7, 0x26, 0x64, 0x39, 0x14,
- 0x84, 0xb6, 0x67, 0xda, 0x81, 0xe1, 0xe8, 0x81, 0x41, 0xc8, 0x03, 0x3f, 0xb4, 0xb2, 0x4d, 0x3c,
- 0xaf, 0x55, 0x99, 0xdc, 0x41, 0x2c, 0x76, 0x20, 0xa5, 0x58, 0xba, 0xbf, 0x08, 0xc5, 0x78, 0xb2,
- 0xc8, 0x94, 0xe2, 0xbc, 0x36, 0xdb, 0xe3, 0x33, 0x05, 0x13, 0x7a, 0x19, 0xe6, 0x7a, 0xb8, 0xcf,
- 0x0e, 0xc0, 0x43, 0x75, 0xb8, 0x18, 0x33, 0xe4, 0x7c, 0x40, 0xc3, 0x88, 0xd0, 0x54, 0x72, 0x52,
- 0x99, 0x0f, 0x52, 0x16, 0x93, 0xbd, 0x0e, 0xe7, 0x13, 0xcc, 0x8c, 0xdb, 0xca, 0x48, 0xb1, 0x18,
- 0x4b, 0xa8, 0x1e, 0x5f, 0x85, 0x0a, 0xf3, 0x36, 0xa3, 0x33, 0xad, 0x34, 0x86, 0x1e, 0xee, 0xab,
- 0xe2, 0xef, 0xc0, 0x45, 0xc5, 0xa7, 0x8c, 0x96, 0x32, 0x60, 0x9c, 0x4f, 0x65, 0x54, 0xe5, 0x1b,
- 0x70, 0xd1, 0x0c, 0x7d, 0x42, 0xf4, 0x10, 0x1b, 0x8e, 0xab, 0x73, 0x21, 0xf1, 0x2c, 0x4a, 0xa3,
- 0x1c, 0x34, 0xb8, 0x8c, 0xc6, 0xc8, 0x6d, 0x26, 0xc1, 0x9f, 0xd0, 0x9b, 0x70, 0x7e, 0x58, 0xb7,
- 0x67, 0x99, 0xfc, 0x08, 0x2a, 0x35, 0xd1, 0x80, 0xe6, 0x8e, 0x65, 0xa2, 0x4d, 0x78, 0x61, 0x58,
- 0xcf, 0xb0, 0x58, 0x6d, 0x66, 0x2d, 0x1f, 0x87, 0x7c, 0x76, 0x90, 0x00, 0xcb, 0x03, 0x00, 0x4d,
- 0x26, 0x77, 0xc8, 0xc5, 0x50, 0x1b, 0xbe, 0x3e, 0x0c, 0x24, 0x6e, 0xbb, 0xb2, 0x71, 0x98, 0x4b,
- 0xf1, 0x56, 0x06, 0xf0, 0x0e, 0xb9, 0xb8, 0x1a, 0x92, 0x55, 0x28, 0xf7, 0x2c, 0x53, 0xb7, 0x3a,
- 0x49, 0xce, 0x94, 0xd4, 0x6c, 0xb0, 0xcc, 0x8d, 0x8e, 0xcc, 0x9a, 0x6b, 0x80, 0x68, 0x97, 0xea,
- 0xec, 0x18, 0xc8, 0x5e, 0x4b, 0xfd, 0xc4, 0x8f, 0x42, 0xc2, 0x4f, 0x94, 0xb2, 0xc6, 0x55, 0x68,
- 0x97, 0xee, 0x4a, 0xee, 0x16, 0x63, 0xa2, 0xe7, 0x60, 0x52, 0x44, 0x77, 0x3e, 0xc5, 0x14, 0x94,
- 0xda, 0xcf, 0x73, 0x50, 0xfd, 0xa2, 0x13, 0x20, 0x7f, 0x6f, 0x3e, 0xc4, 0x66, 0x44, 0xf9, 0xbb,
- 0x73, 0x6c, 0x3b, 0x58, 0xbd, 0x27, 0x2b, 0xa7, 0xbc, 0xdb, 0xb6, 0x83, 0xd1, 0x0e, 0x2c, 0x08,
- 0x0a, 0x9b, 0xc8, 0x98, 0x71, 0x3f, 0xa2, 0xb2, 0x94, 0x8d, 0xaa, 0x89, 0x95, 0x44, 0xb1, 0x2d,
- 0xf4, 0x6a, 0x9f, 0x16, 0x92, 0xfb, 0x15, 0x71, 0x6d, 0x84, 0xee, 0xc0, 0x24, 0xa1, 0x06, 0x15,
- 0x2e, 0x94, 0xc7, 0xbd, 0x17, 0x13, 0xca, 0x75, 0xf6, 0x07, 0x8b, 0xfa, 0x24, 0x50, 0xd0, 0x25,
- 0x98, 0xb2, 0x30, 0x35, 0x6c, 0x47, 0x6d, 0x83, 0x92, 0x84, 0xb6, 0xa1, 0xc2, 0xa5, 0xd4, 0xf2,
- 0x57, 0x18, 0xaf, 0xfc, 0xf1, 0x1b, 0xb2, 0xb4, 0xfe, 0xa1, 0xbb, 0x30, 0x43, 0xa2, 0x8e, 0xf0,
- 0x7c, 0x82, 0x7b, 0xfe, 0xc6, 0xd9, 0x3c, 0x97, 0xca, 0x02, 0x3d, 0xc1, 0xaa, 0xdd, 0x85, 0x49,
- 0xbe, 0x28, 0x54, 0x84, 0xe9, 0xa3, 0xbd, 0x9d, 0xbd, 0xfd, 0xf7, 0xf7, 0x2a, 0xe7, 0xd0, 0x1c,
- 0xcc, 0xac, 0x6b, 0xad, 0x66, 0x7b, 0x7b, 0x6f, 0xb3, 0x92, 0x63, 0x2c, 0xed, 0x68, 0x6f, 0x8f,
- 0xfd, 0xc8, 0xa3, 0x59, 0x98, 0x6c, 0x69, 0xda, 0xbe, 0x56, 0x29, 0x30, 0xa9, 0x8d, 0xd6, 0x6e,
- 0x8b, 0x4b, 0x4d, 0xb0, 0x5f, 0x47, 0x07, 0x1b, 0x42, 0x67, 0xb2, 0x76, 0x13, 0x66, 0x62, 0x93,
- 0x68, 0x1e, 0x8a, 0x47, 0x7b, 0x87, 0x07, 0xad, 0xf5, 0xed, 0xdb, 0xdb, 0xad, 0x8d, 0xca, 0x39,
- 0x54, 0x82, 0xd9, 0xa3, 0xbd, 0xad, 0x56, 0x73, 0xb7, 0xbd, 0x75, 0xaf, 0x92, 0x43, 0x15, 0x98,
- 0x3b, 0x6c, 0x37, 0x77, 0x5b, 0xfa, 0x61, 0xbb, 0xd9, 0x3e, 0x3a, 0xac, 0xe4, 0x6b, 0xbf, 0xce,
- 0x43, 0x39, 0x7b, 0x29, 0xc2, 0x26, 0x5d, 0x31, 0x93, 0xde, 0xc7, 0x21, 0xb1, 0x7d, 0x2f, 0x73,
- 0x2f, 0xc6, 0x39, 0x77, 0x05, 0x03, 0x75, 0xf8, 0x8d, 0x6c, 0x80, 0x43, 0x6a, 0xcb, 0x29, 0x77,
- 0xf4, 0x89, 0x21, 0x6b, 0xac, 0x7e, 0x90, 0xe8, 0x2b, 0x37, 0xa1, 0x0a, 0x2a, 0xba, 0x07, 0x8b,
- 0x3e, 0x3f, 0x09, 0x1a, 0x8e, 0x6e, 0xfa, 0x6e, 0xe0, 0x7b, 0xd8, 0xa3, 0xe2, 0x7c, 0x53, 0x5e,
- 0x5b, 0x1d, 0xb5, 0x33, 0xb1, 0x82, 0x86, 0x62, 0x90, 0x84, 0x44, 0x96, 0xdf, 0x85, 0xf9, 0x01,
- 0xf3, 0x67, 0x3a, 0x29, 0xfc, 0x23, 0x0f, 0xe5, 0xec, 0x6d, 0x25, 0x32, 0x60, 0xee, 0xc4, 0x3a,
- 0x26, 0x7a, 0x7c, 0xe5, 0x29, 0x4e, 0xf4, 0xef, 0x9d, 0xe9, 0xca, 0xb3, 0xbe, 0x65, 0x1d, 0x13,
- 0xf9, 0x2c, 0x4e, 0x51, 0xc5, 0x93, 0x94, 0xc2, 0x4c, 0xf4, 0x8d, 0xd0, 0x4b, 0x4c, 0xe4, 0x9f,
- 0xc4, 0xc4, 0x3d, 0x23, 0xf4, 0xb2, 0x26, 0xfa, 0x29, 0x65, 0xf9, 0x3d, 0xa8, 0x0c, 0xfa, 0x30,
- 0x2a, 0x30, 0x05, 0x25, 0x30, 0x4c, 0x7f, 0xd0, 0xc0, 0x59, 0xf4, 0x6b, 0x7f, 0xc8, 0xc1, 0xd2,
- 0x7a, 0x88, 0x0d, 0x1a, 0x9f, 0x2d, 0x35, 0xfc, 0xfd, 0x08, 0x13, 0x3a, 0xd6, 0x17, 0x80, 0x4b,
- 0x30, 0x15, 0xe2, 0x2e, 0x4b, 0x5b, 0xa5, 0x87, 0x4b, 0x12, 0x6a, 0xc1, 0xb4, 0xbc, 0xc4, 0x95,
- 0x75, 0xee, 0xe5, 0xf1, 0xe2, 0x26, 0x50, 0x62, 0x5d, 0xe6, 0x47, 0x28, 0x5c, 0x62, 0x7e, 0x28,
- 0x53, 0xc0, 0xac, 0x24, 0x6f, 0x5b, 0xb5, 0x9f, 0x16, 0x60, 0xe9, 0x28, 0xb0, 0x9e, 0x76, 0x11,
- 0x93, 0xc3, 0x8b, 0x18, 0xf7, 0x1b, 0x87, 0xb2, 0xd8, 0xc2, 0x53, 0x2c, 0xb6, 0x03, 0xcf, 0x77,
- 0x43, 0xc3, 0xc4, 0xc7, 0x91, 0xa3, 0x5b, 0xd8, 0xf4, 0x5d, 0xd7, 0x26, 0x44, 0xed, 0x18, 0x53,
- 0x63, 0x75, 0x8c, 0x4b, 0x31, 0xc8, 0x86, 0x82, 0x21, 0x9b, 0x07, 0xfa, 0x06, 0x14, 0x23, 0x1e,
- 0x2b, 0xfe, 0x71, 0xe8, 0x0b, 0x07, 0xd7, 0xdb, 0x36, 0x76, 0xac, 0x3b, 0x06, 0xe9, 0x09, 0x17,
- 0x41, 0xe8, 0x30, 0xc2, 0xc0, 0x96, 0x4c, 0x9f, 0xba, 0x25, 0x7f, 0xce, 0xc1, 0x92, 0x18, 0x98,
- 0x9f, 0x75, 0x5e, 0x8d, 0xbb, 0x25, 0x83, 0x5f, 0x4d, 0xd4, 0x01, 0x52, 0xfd, 0x6a, 0x92, 0x5d,
- 0xcd, 0xe4, 0xa9, 0xab, 0xf9, 0x01, 0x2c, 0x6c, 0x62, 0xfa, 0x25, 0xad, 0xa4, 0xf6, 0x9b, 0x1c,
- 0x2c, 0xee, 0xda, 0x24, 0xb6, 0x4f, 0x9e, 0xcc, 0x81, 0x89, 0x61, 0x07, 0x2e, 0xc1, 0xd4, 0xb1,
- 0xed, 0xb0, 0xa4, 0x55, 0x96, 0x2d, 0x49, 0x68, 0x05, 0x66, 0x03, 0xd6, 0x99, 0xd8, 0x41, 0x51,
- 0x1c, 0xfc, 0xe4, 0x75, 0x09, 0xa3, 0xb2, 0x13, 0x22, 0xb7, 0xcf, 0x24, 0xa8, 0xdf, 0xc3, 0x9e,
- 0x7a, 0xec, 0xe4, 0x8a, 0x6d, 0x46, 0xad, 0xfd, 0x38, 0x07, 0x4b, 0x59, 0xdf, 0x49, 0xe0, 0x7b,
- 0x04, 0xa3, 0x4d, 0x98, 0x89, 0xbf, 0xe2, 0xca, 0xd2, 0x7d, 0x86, 0x57, 0xa6, 0xa0, 0x25, 0xca,
- 0xe8, 0x55, 0x98, 0xf7, 0xf0, 0x87, 0x54, 0x57, 0x5c, 0x51, 0x86, 0x96, 0x12, 0xe3, 0x1d, 0x24,
- 0xee, 0xfc, 0x30, 0x07, 0x17, 0x36, 0x6c, 0xa3, 0xeb, 0xf9, 0xe4, 0xcb, 0x4a, 0xcc, 0xda, 0xcd,
- 0x53, 0x5c, 0x20, 0x91, 0x43, 0x09, 0x73, 0xc1, 0x8f, 0x68, 0x10, 0xd1, 0xec, 0x9d, 0x69, 0x41,
- 0x9b, 0x15, 0xe4, 0xa3, 0xd0, 0xae, 0xfd, 0x22, 0x0f, 0x8b, 0xa7, 0x5c, 0xd1, 0xa1, 0xfb, 0x50,
- 0x35, 0x7d, 0x8f, 0x44, 0x2e, 0xd6, 0xd5, 0xcb, 0x3f, 0x7e, 0x23, 0x20, 0x86, 0xc2, 0xeb, 0x67,
- 0xbf, 0xf8, 0xab, 0xb7, 0xfb, 0x01, 0x16, 0x7b, 0x7a, 0x41, 0xa2, 0x2b, 0x52, 0xfc, 0x52, 0xe1,
- 0xbc, 0x68, 0x36, 0xca, 0xed, 0x2d, 0xef, 0x38, 0x97, 0x60, 0x8a, 0x37, 0x99, 0xcc, 0xed, 0xa8,
- 0x24, 0xd5, 0x74, 0x98, 0xe0, 0xba, 0x4b, 0x50, 0x69, 0xdf, 0x3b, 0x68, 0xe9, 0xd9, 0x39, 0x0a,
- 0x41, 0x79, 0x6f, 0x5f, 0xd7, 0x5a, 0x87, 0x2d, 0xed, 0x6e, 0xb3, 0xbd, 0xbd, 0xbf, 0x57, 0xc9,
- 0xa1, 0x45, 0x98, 0x6f, 0xee, 0xdd, 0xcb, 0x10, 0xf3, 0xa8, 0x0a, 0x4b, 0x52, 0x6f, 0x3d, 0xc3,
- 0x29, 0xac, 0xfd, 0xbb, 0x04, 0x0b, 0xe9, 0x5d, 0x29, 0x0d, 0x7d, 0xc7, 0xc1, 0x21, 0xfa, 0x59,
- 0x1e, 0x4a, 0x99, 0x5e, 0x87, 0x5e, 0x1f, 0x95, 0x72, 0xa7, 0x74, 0xc6, 0xe5, 0xe7, 0x63, 0x25,
- 0xe5, 0x83, 0x7d, 0x7d, 0x3f, 0xfe, 0x60, 0x5f, 0xfb, 0x24, 0xf7, 0x59, 0xb3, 0x99, 0x7e, 0x49,
- 0x7f, 0x73, 0xac, 0xa4, 0x4e, 0xd4, 0xe3, 0xcb, 0xd4, 0xcf, 0x9b, 0x97, 0xd2, 0x6c, 0xbc, 0xb2,
- 0x22, 0x52, 0xec, 0xca, 0x8a, 0xcc, 0xa3, 0x1f, 0xfd, 0xed, 0x5f, 0x1f, 0xe7, 0xd7, 0x6b, 0x6f,
- 0x25, 0xff, 0x50, 0x20, 0x65, 0x49, 0xe3, 0x51, 0xaa, 0xf5, 0x51, 0x43, 0x68, 0x91, 0xc6, 0x23,
- 0xf1, 0xf0, 0x51, 0xf2, 0x7f, 0x13, 0x37, 0x92, 0x8e, 0xf3, 0xbb, 0x3c, 0x94, 0x32, 0xad, 0x73,
- 0x64, 0x4c, 0x4e, 0x6b, 0xb4, 0xa3, 0x62, 0xf2, 0xf7, 0x67, 0x14, 0x93, 0x37, 0x1f, 0x13, 0x13,
- 0xfe, 0xd2, 0x25, 0xbf, 0xae, 0xac, 0x28, 0x4d, 0x8e, 0x87, 0x4b, 0x5b, 0xdb, 0x7c, 0xd2, 0x70,
- 0x35, 0x1e, 0xa9, 0x36, 0x3e, 0x4a, 0xa3, 0xf7, 0xab, 0x3c, 0x94, 0x32, 0x5d, 0x6e, 0x64, 0xf4,
- 0x4e, 0xeb, 0x89, 0xa3, 0xa2, 0xf7, 0xc7, 0xdc, 0x67, 0xcd, 0x7d, 0x38, 0x3f, 0xd8, 0xa1, 0x5b,
- 0x6e, 0x40, 0xfb, 0x4f, 0x1e, 0xcb, 0x95, 0x51, 0xb1, 0xe4, 0x51, 0xdb, 0xbe, 0xfc, 0xac, 0xa2,
- 0x86, 0x3e, 0xcf, 0x01, 0xa4, 0x5d, 0x14, 0x8d, 0xba, 0x40, 0x1e, 0x6a, 0xb8, 0xcb, 0x63, 0x36,
- 0x88, 0x5a, 0x38, 0xf6, 0xe2, 0xd0, 0x33, 0x5b, 0xdc, 0x7f, 0x72, 0x30, 0xa7, 0xf6, 0x39, 0xb4,
- 0x36, 0xf2, 0xfb, 0xf5, 0x50, 0x43, 0x5f, 0x7e, 0xfd, 0x4c, 0x3a, 0xa2, 0x91, 0xb2, 0xd5, 0xa2,
- 0xe1, 0xd5, 0x7e, 0xde, 0x5c, 0x3e, 0x2d, 0x04, 0xa2, 0xb7, 0xf3, 0xc5, 0xdf, 0x40, 0x4f, 0x5c,
- 0x3e, 0xd0, 0x6f, 0xf3, 0x30, 0x3f, 0xd0, 0xc3, 0xd0, 0x1b, 0x23, 0x3f, 0x7c, 0x9c, 0xd6, 0x76,
- 0x47, 0xe5, 0xfe, 0x5f, 0xbe, 0xc4, 0xdc, 0x3f, 0xaa, 0x1d, 0x3c, 0xab, 0x8a, 0x61, 0xc9, 0xc5,
- 0xdf, 0xc8, 0x5d, 0x5e, 0xde, 0xf9, 0xac, 0x79, 0x31, 0xf1, 0x55, 0xac, 0xc0, 0x08, 0x6c, 0x52,
- 0x37, 0x7d, 0xf7, 0xaf, 0xcd, 0xfa, 0x09, 0xa5, 0x01, 0xb9, 0xd1, 0x68, 0x3c, 0x78, 0xf0, 0x60,
- 0x80, 0xd9, 0x30, 0x22, 0x7a, 0x22, 0xfe, 0xa3, 0xec, 0x6a, 0xfc, 0xb5, 0xe4, 0xd6, 0x23, 0xf8,
- 0x9a, 0xe9, 0xbb, 0x8f, 0x0f, 0xfd, 0xad, 0xf8, 0xb2, 0x88, 0x1c, 0xb0, 0xf8, 0x1d, 0xe4, 0xbe,
- 0xd5, 0x92, 0xf2, 0x5d, 0xdf, 0x31, 0xbc, 0x6e, 0xdd, 0x0f, 0xbb, 0x8d, 0x2e, 0xf6, 0x78, 0x74,
- 0x1b, 0xa9, 0xd1, 0x2f, 0xf8, 0xef, 0xb5, 0x77, 0x62, 0x42, 0x67, 0x8a, 0x6b, 0xbc, 0xfe, 0xff,
- 0x00, 0x00, 0x00, 0xff, 0xff, 0x14, 0x77, 0x2a, 0xa9, 0xae, 0x27, 0x00, 0x00,
+ // 3265 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xdd, 0x6f, 0x1b, 0xd7,
+ 0x95, 0x37, 0x49, 0x7d, 0xf1, 0x50, 0xa4, 0xa8, 0x2b, 0xd9, 0x66, 0xe4, 0x75, 0x56, 0xcb, 0x64,
+ 0x03, 0xc5, 0xb1, 0xc9, 0x58, 0x41, 0xe2, 0xc4, 0x71, 0x82, 0xa5, 0x25, 0x5a, 0x12, 0x24, 0x4b,
+ 0xc4, 0x88, 0x72, 0xd6, 0xbb, 0x8b, 0x9d, 0x1d, 0xce, 0x5c, 0x51, 0x13, 0x0e, 0x67, 0x66, 0xe7,
+ 0xde, 0xb1, 0x43, 0x7b, 0x83, 0xc5, 0xee, 0x73, 0x0b, 0xb4, 0x08, 0xfa, 0xd4, 0xb7, 0x3e, 0xb5,
+ 0xcd, 0x6b, 0x1f, 0xfa, 0xf1, 0x52, 0x14, 0x05, 0x0a, 0xa4, 0x2f, 0x45, 0x8b, 0xf6, 0x21, 0x68,
+ 0x81, 0x00, 0x2d, 0xd0, 0x87, 0xf6, 0x2f, 0xe8, 0x53, 0x71, 0x3f, 0x66, 0xe6, 0x0e, 0xa9, 0x98,
+ 0x94, 0x6d, 0x20, 0x4f, 0xd2, 0x9c, 0x8f, 0xdf, 0x3d, 0xf7, 0xdc, 0x33, 0xe7, 0x9c, 0x7b, 0x86,
+ 0x70, 0xb5, 0xeb, 0x79, 0x5d, 0x07, 0xd7, 0x4d, 0xc7, 0x0b, 0xad, 0xba, 0x65, 0x50, 0xc3, 0x0f,
+ 0x3c, 0xb3, 0xfe, 0xe0, 0x7a, 0x07, 0x53, 0x63, 0xbd, 0x6e, 0x3a, 0x21, 0xa1, 0x38, 0x20, 0x35,
+ 0x3f, 0xf0, 0xa8, 0x87, 0x2e, 0x0b, 0xe9, 0x1a, 0x97, 0xae, 0x45, 0xd2, 0x35, 0x29, 0xbd, 0xf2,
+ 0x0f, 0x12, 0xcc, 0xf0, 0xed, 0xba, 0xe1, 0xba, 0x1e, 0x35, 0xa8, 0xed, 0xb9, 0x52, 0x79, 0xe5,
+ 0xa2, 0xc2, 0x35, 0x1d, 0x1b, 0xbb, 0x54, 0x32, 0xfe, 0x51, 0x61, 0x1c, 0xdb, 0xd8, 0xb1, 0xf4,
+ 0x0e, 0x3e, 0x31, 0x1e, 0xd8, 0x5e, 0x20, 0x05, 0x5e, 0x50, 0x04, 0x02, 0x4c, 0xbc, 0x30, 0x30,
+ 0xb1, 0x64, 0x5d, 0x79, 0xb2, 0xfd, 0xe4, 0xc4, 0x08, 0xb0, 0x25, 0x65, 0x5f, 0x92, 0xb2, 0x8e,
+ 0xe7, 0x76, 0x83, 0xd0, 0x75, 0x6d, 0xb7, 0x5b, 0xf7, 0x7c, 0x1c, 0xa4, 0xac, 0x7c, 0x51, 0x0a,
+ 0xf1, 0xa7, 0x4e, 0x78, 0x5c, 0xb7, 0x42, 0x21, 0x20, 0xf9, 0xab, 0xc3, 0x7c, 0x61, 0x71, 0xdf,
+ 0x20, 0xbd, 0xa1, 0xed, 0xc4, 0x12, 0xd4, 0xee, 0x63, 0x42, 0x8d, 0xbe, 0x2f, 0x04, 0xaa, 0xbf,
+ 0x98, 0x82, 0xd9, 0x0d, 0xe1, 0x58, 0x54, 0x05, 0xf0, 0x03, 0xef, 0x43, 0x6c, 0x52, 0xdd, 0xb6,
+ 0x2a, 0x99, 0xd5, 0xcc, 0x5a, 0xfe, 0x76, 0xee, 0x8b, 0x46, 0x56, 0xcb, 0x4b, 0xf2, 0x8e, 0x85,
+ 0x5e, 0x81, 0x79, 0x79, 0x0e, 0xba, 0x6b, 0xf4, 0x71, 0x25, 0x9b, 0x48, 0x15, 0x24, 0x63, 0xdf,
+ 0xe8, 0x63, 0xb4, 0x03, 0x33, 0xa6, 0xe7, 0x1e, 0xdb, 0xdd, 0x4a, 0x6e, 0x35, 0xb3, 0x56, 0x58,
+ 0xbf, 0x5a, 0x7b, 0xe2, 0x71, 0xd5, 0xa4, 0x0d, 0x1b, 0x5c, 0x47, 0xe0, 0x49, 0x00, 0x74, 0x00,
+ 0x33, 0x8e, 0xd1, 0xc1, 0x0e, 0xa9, 0xcc, 0xad, 0xe6, 0xd6, 0x0a, 0xeb, 0xeb, 0x93, 0x41, 0xd5,
+ 0xf6, 0xb8, 0x52, 0xd3, 0xa5, 0xc1, 0x80, 0x01, 0x66, 0x34, 0x09, 0xc3, 0x6c, 0x23, 0xd4, 0xa0,
+ 0x21, 0xa9, 0x4c, 0x9d, 0xc5, 0xb6, 0x43, 0xae, 0xc3, 0xa0, 0x72, 0x9a, 0x04, 0x40, 0xff, 0x0a,
+ 0x25, 0xf1, 0x9f, 0x7e, 0x62, 0x13, 0xea, 0x05, 0x83, 0xca, 0x2c, 0xb7, 0xf1, 0x29, 0x20, 0x8b,
+ 0x02, 0x68, 0x5b, 0xe0, 0xa8, 0x8e, 0x0e, 0x43, 0xdb, 0xaa, 0xcc, 0x44, 0x8e, 0xce, 0xc5, 0x8e,
+ 0x3e, 0x0a, 0x6d, 0x0b, 0xed, 0xc1, 0x6c, 0x1f, 0xd3, 0xc0, 0x36, 0x49, 0x25, 0xcf, 0x77, 0x73,
+ 0x6d, 0xb2, 0xa5, 0xef, 0x0a, 0x25, 0x81, 0x18, 0x41, 0xac, 0xbc, 0x03, 0x05, 0xc5, 0x6d, 0xa8,
+ 0x0c, 0xb9, 0x1e, 0x1e, 0x88, 0x50, 0xd0, 0xd8, 0xbf, 0x68, 0x19, 0xa6, 0x1f, 0x18, 0x4e, 0x28,
+ 0x0f, 0x5e, 0x13, 0x0f, 0x37, 0xb3, 0x6f, 0x67, 0xaa, 0x7f, 0xcc, 0x43, 0x31, 0x75, 0x8a, 0x68,
+ 0x0d, 0x8a, 0xe2, 0x08, 0xf5, 0x4e, 0x68, 0xf6, 0x30, 0x4d, 0x42, 0x2a, 0xa3, 0xcd, 0x0b, 0xce,
+ 0x6d, 0xce, 0x40, 0x1d, 0x40, 0x5d, 0x13, 0xeb, 0xd1, 0x86, 0x65, 0xe4, 0xcc, 0xf1, 0xfd, 0xd4,
+ 0xc7, 0xec, 0x67, 0xcb, 0xc4, 0x23, 0xc1, 0x93, 0xd1, 0xca, 0xdd, 0x21, 0x32, 0xfa, 0x0f, 0x28,
+ 0xf6, 0x0d, 0x15, 0x5e, 0xb8, 0x6b, 0x5c, 0x34, 0xed, 0xb8, 0x84, 0x1a, 0xae, 0x89, 0xb7, 0x02,
+ 0x2f, 0xf4, 0xd5, 0x15, 0xe6, 0x05, 0x5a, 0x82, 0xfe, 0xd0, 0x0b, 0x7a, 0x09, 0x3a, 0x3c, 0x23,
+ 0xba, 0x40, 0x93, 0xe8, 0x1e, 0x5c, 0x24, 0xd8, 0xf4, 0x5c, 0xcb, 0x08, 0x06, 0x7a, 0x7a, 0x9d,
+ 0xf9, 0x67, 0x5b, 0xe7, 0x7c, 0x8c, 0xfb, 0x81, 0xba, 0xe0, 0xbf, 0xc3, 0x02, 0xf1, 0x8e, 0xe9,
+ 0x43, 0x23, 0xc0, 0xd1, 0x42, 0xc5, 0x89, 0xa2, 0xeb, 0x50, 0x6a, 0xa9, 0x6b, 0x94, 0x48, 0x8a,
+ 0x88, 0xfe, 0x13, 0xca, 0x8e, 0x7d, 0x8c, 0xcd, 0x81, 0xe9, 0xc4, 0xe8, 0x25, 0x8e, 0x5e, 0x1b,
+ 0x83, 0xbe, 0x17, 0xa9, 0xa9, 0xf0, 0x0b, 0x4e, 0x9a, 0x8a, 0x08, 0x5c, 0xb0, 0x5d, 0x9b, 0xda,
+ 0x86, 0x63, 0x3f, 0xe2, 0xe9, 0x52, 0x37, 0x4c, 0x9e, 0x56, 0x2b, 0x05, 0xfe, 0x72, 0xde, 0x18,
+ 0xb3, 0xca, 0xbe, 0x67, 0xe1, 0x9d, 0x14, 0x40, 0x83, 0xeb, 0x4b, 0x8f, 0xd9, 0xa7, 0xb0, 0x08,
+ 0x32, 0x60, 0x11, 0xbb, 0x66, 0x30, 0xf0, 0xf9, 0x82, 0x72, 0x57, 0x0b, 0x13, 0x45, 0x70, 0x33,
+ 0xd6, 0x4b, 0x45, 0x30, 0x1e, 0x22, 0x23, 0x0b, 0x90, 0x11, 0x52, 0x8f, 0x98, 0x86, 0x63, 0xbb,
+ 0xdd, 0x68, 0x8d, 0x32, 0x5f, 0xe3, 0xf5, 0x31, 0x6b, 0x34, 0x12, 0x45, 0x75, 0x91, 0x45, 0x63,
+ 0x98, 0xce, 0x8e, 0x1e, 0xbb, 0x96, 0xef, 0xd9, 0x2e, 0x8d, 0x96, 0x58, 0x9c, 0xe8, 0xe8, 0x9b,
+ 0x52, 0x2b, 0x75, 0xf4, 0x38, 0x45, 0xe4, 0x71, 0x85, 0xcd, 0x30, 0xb0, 0xe9, 0x20, 0x02, 0x47,
+ 0x93, 0xc5, 0x95, 0xd4, 0x4a, 0xc7, 0x55, 0x8a, 0xc8, 0xb3, 0x48, 0x6f, 0x24, 0x8b, 0x2c, 0x4d,
+ 0x96, 0x45, 0x7a, 0xa7, 0x67, 0x91, 0x21, 0x72, 0xf5, 0xf7, 0x59, 0x28, 0x0f, 0xcb, 0xa2, 0x6f,
+ 0x67, 0x60, 0x95, 0x55, 0x43, 0xe2, 0x1b, 0x26, 0xb6, 0x74, 0x66, 0x84, 0x85, 0x7d, 0xc7, 0x1b,
+ 0xf4, 0xb1, 0x4b, 0x75, 0x6a, 0x04, 0x5d, 0x99, 0xfc, 0x0a, 0xeb, 0x77, 0xcf, 0x68, 0x47, 0x6d,
+ 0x3f, 0xc6, 0xdd, 0xea, 0xe1, 0xcd, 0x18, 0xb5, 0xcd, 0x41, 0x85, 0x95, 0x97, 0xdd, 0x27, 0xc9,
+ 0xac, 0x7c, 0x2f, 0x03, 0x97, 0x9f, 0x88, 0x82, 0xee, 0x01, 0x12, 0x46, 0xea, 0x8a, 0xff, 0x64,
+ 0xb6, 0x5e, 0xfb, 0xa2, 0x91, 0xf9, 0x5b, 0xa3, 0x0a, 0xab, 0xa6, 0xe7, 0x52, 0xc3, 0x76, 0x71,
+ 0x20, 0x77, 0x60, 0xf8, 0x36, 0xa9, 0x99, 0x5e, 0xbf, 0x2e, 0xed, 0xd5, 0xca, 0x02, 0x23, 0xd9,
+ 0x01, 0x7a, 0x1d, 0x16, 0xd5, 0x66, 0x81, 0x1b, 0x90, 0x74, 0x0c, 0x19, 0xad, 0xac, 0x74, 0x0c,
+ 0x9c, 0x59, 0xfd, 0x6b, 0x06, 0x4a, 0xe9, 0x38, 0x42, 0xff, 0x05, 0x70, 0x42, 0xa9, 0xaf, 0xfb,
+ 0x5e, 0x40, 0x49, 0x25, 0xc3, 0xdf, 0xe0, 0x5b, 0x67, 0x0a, 0xc5, 0xda, 0x36, 0xa5, 0x7e, 0x8b,
+ 0xa9, 0xc7, 0xcd, 0x40, 0x4e, 0xcb, 0x9f, 0x44, 0x44, 0x74, 0x13, 0x2e, 0x62, 0xd7, 0xe8, 0x38,
+ 0x58, 0x8f, 0x17, 0xd2, 0x0d, 0xd3, 0xc4, 0x84, 0x70, 0x63, 0xe7, 0x84, 0xb1, 0xcb, 0x42, 0x26,
+ 0xc2, 0x6a, 0x70, 0x81, 0x95, 0x5b, 0x50, 0x4a, 0xa3, 0x9f, 0xa9, 0x66, 0xde, 0x80, 0xc5, 0x91,
+ 0x17, 0x93, 0xb7, 0x61, 0x9e, 0x63, 0x9b, 0x03, 0x3d, 0x0c, 0x6c, 0xb5, 0x66, 0xe6, 0x05, 0xf9,
+ 0x28, 0xb0, 0xab, 0x4d, 0x28, 0x0f, 0x67, 0x0d, 0x74, 0x1d, 0x96, 0x58, 0x11, 0xf5, 0x2d, 0xbd,
+ 0xd7, 0x27, 0x7a, 0x0f, 0x0f, 0x44, 0x87, 0xa6, 0x00, 0x2c, 0x74, 0x4d, 0xdc, 0xb2, 0x76, 0xfb,
+ 0x64, 0x17, 0x0f, 0x98, 0xcf, 0xab, 0x3f, 0x98, 0x82, 0xf2, 0x70, 0xfd, 0x44, 0x2f, 0xc2, 0xdc,
+ 0x23, 0xcf, 0xc5, 0xc3, 0xab, 0xcf, 0x32, 0xe2, 0x51, 0x60, 0xa3, 0x97, 0xa1, 0xe0, 0x62, 0xca,
+ 0xaa, 0x10, 0x17, 0x51, 0xce, 0x13, 0x24, 0x9d, 0x49, 0x5d, 0x81, 0x12, 0x09, 0x3b, 0xaa, 0xe0,
+ 0x4c, 0x22, 0x58, 0x4c, 0x58, 0x4c, 0xf6, 0x1a, 0x94, 0x6d, 0x97, 0xe2, 0xc0, 0x35, 0x1c, 0xdd,
+ 0xf6, 0x75, 0xcf, 0x75, 0x58, 0x1f, 0x15, 0x7b, 0xbe, 0x14, 0x31, 0x77, 0xfc, 0x03, 0xd7, 0x19,
+ 0xa0, 0xab, 0x2c, 0x89, 0x04, 0x0f, 0x6c, 0x13, 0xb3, 0x63, 0xf2, 0x42, 0x97, 0xf2, 0x56, 0x21,
+ 0x1f, 0x67, 0x05, 0xce, 0x6b, 0x08, 0x16, 0x7a, 0x07, 0x2e, 0x0c, 0x49, 0xeb, 0xc4, 0xf4, 0x7c,
+ 0x4c, 0x2a, 0xb9, 0xd5, 0x5c, 0xa4, 0xb4, 0x9c, 0x56, 0x3a, 0xe4, 0x02, 0x08, 0xc1, 0x14, 0x35,
+ 0xba, 0xac, 0x4d, 0xcc, 0xad, 0xe5, 0x35, 0xfe, 0x3f, 0xba, 0x0f, 0x73, 0x7d, 0x4c, 0x0d, 0x16,
+ 0x72, 0x95, 0x69, 0x1e, 0x8c, 0xef, 0x9d, 0xb1, 0x41, 0xa9, 0xdd, 0x95, 0xfa, 0x3c, 0x5e, 0xb4,
+ 0x18, 0x0e, 0x7d, 0x08, 0xcb, 0x01, 0x66, 0x86, 0xc8, 0xa2, 0x75, 0x7c, 0xcc, 0x4a, 0xcd, 0xa0,
+ 0x52, 0x98, 0xa8, 0xc4, 0x6b, 0x89, 0x6a, 0x43, 0x6a, 0x8a, 0xbd, 0x2d, 0x05, 0xa3, 0x9c, 0x95,
+ 0x77, 0xa1, 0x98, 0x32, 0xe3, 0x4c, 0x61, 0xfb, 0xdd, 0x29, 0x58, 0x3a, 0xa5, 0xa3, 0x60, 0x0d,
+ 0x9f, 0x1b, 0xf6, 0x75, 0x5b, 0xb2, 0x08, 0x47, 0x9b, 0x96, 0x0d, 0x8d, 0x1b, 0xf6, 0x23, 0x1d,
+ 0xc2, 0xa2, 0x23, 0x92, 0x12, 0xa9, 0xa1, 0x92, 0x8d, 0x0e, 0x23, 0xa7, 0x15, 0x23, 0x16, 0xcf,
+ 0x0b, 0x68, 0x15, 0xf2, 0x76, 0xdf, 0xe8, 0x8a, 0x80, 0xcc, 0x25, 0x07, 0x3d, 0xc7, 0xa9, 0x32,
+ 0x7e, 0xfa, 0x86, 0x79, 0x62, 0xbb, 0x58, 0xa7, 0x03, 0x5f, 0x08, 0x4e, 0x29, 0x11, 0x21, 0x99,
+ 0xed, 0x81, 0xcf, 0xc5, 0x0f, 0xa0, 0x60, 0xd9, 0xa4, 0x17, 0x15, 0x88, 0x69, 0xee, 0xde, 0x57,
+ 0xc7, 0xb8, 0x77, 0xd3, 0x26, 0x3d, 0xb5, 0x34, 0x80, 0x15, 0x13, 0xf8, 0x6e, 0x88, 0xee, 0x07,
+ 0x18, 0xf7, 0x7d, 0x6a, 0x77, 0x1c, 0xcc, 0x63, 0x7d, 0x2e, 0xda, 0x0d, 0x69, 0x25, 0x1c, 0x74,
+ 0x02, 0xcb, 0x7d, 0xc3, 0x35, 0xba, 0xac, 0x4e, 0x30, 0xd7, 0x45, 0x56, 0xcc, 0x72, 0x2b, 0xae,
+ 0x8f, 0xb1, 0xe2, 0xae, 0x50, 0x1d, 0x6a, 0xe3, 0x72, 0x1a, 0xea, 0x8f, 0x30, 0xd0, 0x7d, 0x98,
+ 0x67, 0x59, 0xcc, 0x61, 0x97, 0x4a, 0x2f, 0x88, 0x6e, 0x4f, 0x63, 0x1b, 0x85, 0x44, 0x25, 0xd5,
+ 0x8f, 0xaa, 0x50, 0x68, 0x0d, 0xca, 0x7d, 0xdb, 0xd5, 0x4d, 0x3f, 0xd4, 0x7d, 0xc7, 0xa0, 0xc7,
+ 0x5e, 0xd0, 0xe7, 0xed, 0x74, 0x5e, 0x2b, 0xf5, 0x6d, 0x77, 0xc3, 0x0f, 0x5b, 0x92, 0x5a, 0xfd,
+ 0x24, 0x03, 0x68, 0xd4, 0x68, 0xf6, 0x52, 0xc6, 0xe7, 0x4f, 0x71, 0x9f, 0x81, 0xe0, 0xa1, 0x74,
+ 0x95, 0xd3, 0x96, 0x23, 0x91, 0xb6, 0x94, 0xe0, 0x37, 0xcb, 0xdb, 0x70, 0x29, 0x56, 0x15, 0x1e,
+ 0x14, 0x7b, 0x1f, 0xbe, 0x90, 0xe6, 0xb4, 0x8a, 0xad, 0xc6, 0xa8, 0xb0, 0x82, 0xd7, 0x9a, 0x6a,
+ 0x00, 0x8b, 0x23, 0xfb, 0x44, 0xaf, 0xc3, 0xb2, 0xb2, 0xc9, 0x24, 0x92, 0xc4, 0x2b, 0x81, 0x14,
+ 0x5e, 0x14, 0x48, 0xaf, 0xc1, 0xa2, 0xaa, 0x21, 0x52, 0x11, 0x33, 0x60, 0x5a, 0x2b, 0x1b, 0x2a,
+ 0x7e, 0xe8, 0xd2, 0xea, 0xd7, 0x33, 0x00, 0x49, 0x10, 0xa1, 0x57, 0xa1, 0xd4, 0xf1, 0x3c, 0xaa,
+ 0xf3, 0x48, 0x64, 0x6b, 0xa9, 0xa1, 0x3d, 0xcf, 0x58, 0x4c, 0x98, 0xad, 0x84, 0x6a, 0xb0, 0x98,
+ 0x88, 0x12, 0xfb, 0x11, 0xd6, 0xbb, 0x1d, 0xf5, 0xd5, 0x2a, 0x45, 0xd2, 0x87, 0xf6, 0x23, 0xbc,
+ 0xd5, 0x41, 0x2f, 0x43, 0x89, 0xbd, 0x86, 0x8e, 0x67, 0x1a, 0x8e, 0x4e, 0x88, 0x45, 0xa4, 0x4d,
+ 0xec, 0x15, 0xdc, 0x63, 0xc4, 0x43, 0x62, 0x91, 0xea, 0x4f, 0xb3, 0xb0, 0x30, 0xd4, 0x4f, 0xa3,
+ 0x3b, 0xb0, 0x60, 0x5b, 0x0e, 0xeb, 0x5e, 0x1c, 0x4c, 0xb1, 0x4e, 0xa9, 0x23, 0xdb, 0x96, 0x17,
+ 0xa2, 0xa8, 0x89, 0x06, 0x09, 0xb5, 0x4d, 0x39, 0x8a, 0x90, 0x09, 0x9d, 0xa9, 0x6d, 0x72, 0xad,
+ 0x36, 0x75, 0xd0, 0x2e, 0x94, 0x59, 0x63, 0x19, 0xe3, 0xd8, 0xf2, 0x60, 0x0a, 0xeb, 0x2b, 0x23,
+ 0x40, 0xed, 0x68, 0x22, 0xc1, 0x91, 0xb6, 0xcf, 0x69, 0x25, 0xa6, 0x2a, 0xb1, 0xec, 0x3e, 0x46,
+ 0xdb, 0xb0, 0x90, 0x02, 0xa3, 0x8e, 0x9c, 0x29, 0x8c, 0x31, 0x6a, 0xfb, 0x9c, 0x56, 0x54, 0xa0,
+ 0xa8, 0x83, 0xb6, 0xe4, 0xf6, 0x08, 0x35, 0x02, 0x2a, 0xac, 0x9a, 0x9a, 0xc4, 0xaa, 0x9c, 0xd8,
+ 0xdf, 0x21, 0x53, 0x63, 0x8c, 0xdb, 0xd3, 0x90, 0xa3, 0xd4, 0xa9, 0x9e, 0x40, 0x29, 0xdd, 0x97,
+ 0xa2, 0x7b, 0xb0, 0xd0, 0xc3, 0x41, 0x07, 0x07, 0x1e, 0x89, 0x5e, 0xec, 0xcc, 0x44, 0xfd, 0xed,
+ 0xae, 0xd4, 0x12, 0x38, 0x5a, 0xa9, 0x97, 0x7a, 0xae, 0x7e, 0x3a, 0x03, 0xa5, 0xb4, 0x08, 0xab,
+ 0x82, 0xb2, 0x6b, 0x89, 0x64, 0xf9, 0x52, 0x73, 0x71, 0xe3, 0xcd, 0x78, 0x91, 0x0e, 0x7b, 0x6b,
+ 0x02, 0x16, 0x43, 0x7e, 0x60, 0xbb, 0xa6, 0xed, 0x1b, 0x8e, 0xee, 0x1b, 0x84, 0x3c, 0xf4, 0x02,
+ 0x2b, 0x5d, 0xc4, 0xb3, 0x5a, 0x85, 0xc9, 0xb5, 0x22, 0xb1, 0x96, 0x94, 0x62, 0xe1, 0xfe, 0x12,
+ 0x14, 0xa2, 0xce, 0x22, 0x95, 0x8a, 0xb3, 0x5a, 0xbe, 0xc7, 0x7b, 0x0a, 0x26, 0xf4, 0x0a, 0xcc,
+ 0xf7, 0xf0, 0x80, 0x50, 0x2f, 0x18, 0xc9, 0xc3, 0x85, 0x88, 0x21, 0xfb, 0x03, 0x1a, 0x84, 0x84,
+ 0x26, 0x92, 0xd3, 0x4a, 0x7f, 0x90, 0xb0, 0x98, 0xec, 0x0d, 0x38, 0x1f, 0x63, 0xa6, 0xcc, 0x56,
+ 0x5a, 0x8a, 0xa5, 0x48, 0x42, 0xb5, 0xf8, 0x1a, 0x94, 0x99, 0xb5, 0x29, 0x9d, 0x59, 0xa5, 0x30,
+ 0xf4, 0xf0, 0x40, 0x15, 0x7f, 0x17, 0x2e, 0x2a, 0x36, 0xa5, 0xb4, 0x94, 0x06, 0xe3, 0x7c, 0x22,
+ 0xa3, 0x2a, 0xdf, 0x84, 0x8b, 0x66, 0xe0, 0x11, 0xa2, 0x07, 0xd8, 0x70, 0xfa, 0x3a, 0x17, 0x12,
+ 0xff, 0x8b, 0xd4, 0x28, 0x1b, 0x0d, 0x2e, 0xa3, 0x31, 0x72, 0x9b, 0x49, 0xf0, 0xff, 0xd0, 0x5b,
+ 0x70, 0x7e, 0x54, 0xb7, 0x67, 0x99, 0x7c, 0x8a, 0x20, 0x35, 0xd1, 0x90, 0xe6, 0xae, 0x65, 0xa2,
+ 0x2d, 0x78, 0x71, 0x54, 0xcf, 0xb0, 0x58, 0x6e, 0x66, 0x25, 0x1f, 0x07, 0xbc, 0x77, 0x90, 0x00,
+ 0x2b, 0x43, 0x00, 0x0d, 0x26, 0x77, 0xc8, 0xc5, 0x50, 0x1b, 0xfe, 0x79, 0x14, 0x48, 0x0c, 0x2c,
+ 0xd3, 0x7e, 0x98, 0x4f, 0xf0, 0x56, 0x87, 0xf0, 0x0e, 0xb9, 0xb8, 0xea, 0x92, 0x35, 0x28, 0xf5,
+ 0x2c, 0x53, 0xb7, 0x3a, 0x71, 0xcc, 0x14, 0xd5, 0x68, 0xb0, 0xcc, 0xcd, 0x8e, 0x8c, 0x9a, 0xeb,
+ 0x80, 0x68, 0x97, 0xea, 0xec, 0x26, 0xcf, 0x5e, 0x4b, 0xfd, 0xc4, 0x0b, 0x03, 0xc2, 0x87, 0x02,
+ 0x32, 0xc7, 0x95, 0x69, 0x97, 0xee, 0x49, 0xee, 0x36, 0x63, 0xa2, 0x17, 0x60, 0x5a, 0x78, 0x77,
+ 0x21, 0xc1, 0x14, 0x94, 0xea, 0xb7, 0x32, 0x50, 0xf9, 0xb2, 0x4b, 0x3c, 0x7f, 0x6f, 0x3e, 0xc2,
+ 0x66, 0x48, 0xf9, 0xbb, 0x73, 0x6c, 0x3b, 0x58, 0x1d, 0x75, 0x96, 0x12, 0xde, 0x1d, 0xdb, 0xc1,
+ 0x68, 0x17, 0x16, 0x05, 0x85, 0x75, 0x64, 0x6c, 0x71, 0x2f, 0xa4, 0x32, 0x95, 0x8d, 0xcb, 0x89,
+ 0xe5, 0x58, 0xb1, 0x2d, 0xf4, 0xaa, 0x7f, 0xc8, 0xc5, 0x23, 0x32, 0x31, 0xf9, 0x43, 0x77, 0x61,
+ 0x9a, 0x50, 0x83, 0x0a, 0x13, 0x4a, 0x93, 0x8e, 0x36, 0x85, 0x72, 0x8d, 0xfd, 0xc1, 0x22, 0x3f,
+ 0x09, 0x14, 0x74, 0x09, 0x66, 0x2c, 0x4c, 0x0d, 0xdb, 0x51, 0xcb, 0xa0, 0x24, 0xa1, 0x1d, 0x28,
+ 0x73, 0x29, 0x35, 0xfd, 0xe5, 0x26, 0x4b, 0x7f, 0x7c, 0xc8, 0x99, 0xe4, 0x3f, 0x74, 0x0f, 0xe6,
+ 0x48, 0xd8, 0x11, 0x96, 0x4f, 0x71, 0xcb, 0xdf, 0x3c, 0x9b, 0xe5, 0x52, 0x59, 0xa0, 0xc7, 0x58,
+ 0xd5, 0xff, 0x85, 0x69, 0xbe, 0x29, 0x54, 0x80, 0xd9, 0xa3, 0xfd, 0xdd, 0xfd, 0x83, 0x0f, 0xf6,
+ 0xcb, 0xe7, 0xd0, 0x3c, 0xcc, 0x6d, 0x68, 0xcd, 0x46, 0x7b, 0x67, 0x7f, 0xab, 0x9c, 0x61, 0x2c,
+ 0xed, 0x68, 0x7f, 0x9f, 0x3d, 0x64, 0x51, 0x1e, 0xa6, 0x9b, 0x9a, 0x76, 0xa0, 0x95, 0x73, 0x4c,
+ 0x6a, 0xb3, 0xb9, 0xd7, 0xe4, 0x52, 0x53, 0xec, 0xe9, 0xa8, 0xb5, 0x29, 0x74, 0xa6, 0xd9, 0xd3,
+ 0x61, 0xfb, 0xa0, 0xd5, 0x62, 0x4f, 0x33, 0x0c, 0x81, 0x3f, 0x35, 0x37, 0xcb, 0xb3, 0x82, 0xd5,
+ 0xd0, 0xb8, 0xe0, 0x5c, 0xf5, 0x16, 0xcc, 0x45, 0xb6, 0xa1, 0x05, 0x28, 0x1c, 0xed, 0x1f, 0xb6,
+ 0x9a, 0x1b, 0x3b, 0x77, 0x76, 0x9a, 0x9b, 0xe5, 0x73, 0xa8, 0x08, 0xf9, 0xa3, 0xfd, 0xed, 0x66,
+ 0x63, 0xaf, 0xbd, 0x7d, 0xbf, 0x9c, 0x41, 0x65, 0x98, 0x3f, 0x6c, 0x37, 0xf6, 0x9a, 0xfa, 0x61,
+ 0xbb, 0xd1, 0x3e, 0x3a, 0x2c, 0x67, 0xab, 0x3f, 0xcc, 0x42, 0x29, 0x3d, 0x00, 0x63, 0x2d, 0xb1,
+ 0x68, 0x5e, 0x1f, 0xe0, 0x80, 0xd8, 0x9e, 0x9b, 0x9a, 0x81, 0x72, 0xce, 0x3d, 0xc1, 0x40, 0x1d,
+ 0x3e, 0x7d, 0xf7, 0x71, 0x40, 0x6d, 0xd9, 0x0e, 0x8f, 0xbf, 0x5a, 0xa4, 0x17, 0xab, 0xb5, 0x62,
+ 0x7d, 0x65, 0xea, 0xad, 0xa0, 0xa2, 0xfb, 0xb0, 0xe4, 0xf1, 0x2b, 0xa3, 0xe1, 0xe8, 0xa6, 0xd7,
+ 0xf7, 0x3d, 0x17, 0xbb, 0x54, 0x5c, 0x84, 0x4a, 0xeb, 0x6b, 0xe3, 0x8e, 0x30, 0x52, 0xd0, 0x50,
+ 0x04, 0x12, 0x93, 0xc8, 0xca, 0x7b, 0xb0, 0x30, 0xb4, 0xfc, 0x99, 0xae, 0x14, 0xbf, 0xcb, 0x42,
+ 0x29, 0x3d, 0x99, 0x46, 0x06, 0xcc, 0x9f, 0x58, 0xc7, 0x44, 0x8f, 0xc6, 0xdb, 0xe2, 0xea, 0xff,
+ 0xfe, 0x99, 0xc6, 0xdb, 0xb5, 0x6d, 0xeb, 0x98, 0xc8, 0xff, 0xc5, 0x75, 0xab, 0x70, 0x92, 0x50,
+ 0xd8, 0x12, 0x03, 0x23, 0x70, 0xe3, 0x25, 0xb2, 0x4f, 0xb3, 0xc4, 0x7d, 0x23, 0x70, 0xd3, 0x4b,
+ 0x0c, 0x12, 0xca, 0xca, 0xfb, 0x50, 0x1e, 0xb6, 0x61, 0x9c, 0x63, 0x72, 0x8a, 0x63, 0x98, 0xfe,
+ 0xf0, 0x02, 0x67, 0xd1, 0xaf, 0xfe, 0x2c, 0x03, 0xcb, 0x1b, 0x01, 0x36, 0x68, 0x74, 0x09, 0xd5,
+ 0xf0, 0x7f, 0x87, 0x98, 0xd0, 0x89, 0xbe, 0xf6, 0x5c, 0x82, 0x99, 0x00, 0x77, 0x59, 0xd8, 0x2a,
+ 0xc5, 0x5e, 0x92, 0x50, 0x13, 0x66, 0xa3, 0x51, 0x91, 0x48, 0x88, 0xaf, 0x4c, 0xe6, 0x37, 0x81,
+ 0x12, 0xe9, 0x32, 0x3b, 0x02, 0x61, 0x12, 0xb3, 0x43, 0x69, 0x17, 0xf2, 0x92, 0xbc, 0x63, 0x55,
+ 0xbf, 0x91, 0x83, 0xe5, 0x23, 0xdf, 0x7a, 0xd6, 0x4d, 0x4c, 0x8f, 0x6e, 0x62, 0xd2, 0xef, 0x59,
+ 0xca, 0x66, 0x73, 0xcf, 0xb0, 0xd9, 0x0e, 0x5c, 0xee, 0x06, 0x86, 0x89, 0x8f, 0x43, 0x47, 0xb7,
+ 0xb0, 0xe9, 0xf5, 0xfb, 0x36, 0x21, 0x6a, 0x69, 0x99, 0x99, 0xa8, 0xb4, 0x5c, 0x8a, 0x40, 0x36,
+ 0x15, 0x0c, 0x59, 0x65, 0xd0, 0xbf, 0x40, 0x21, 0xe4, 0xbe, 0xe2, 0x1f, 0x02, 0xbf, 0xb4, 0xc3,
+ 0xbd, 0x63, 0x63, 0xc7, 0xba, 0x6b, 0x90, 0x9e, 0x30, 0x11, 0x84, 0x0e, 0x23, 0x0c, 0x1d, 0xc9,
+ 0xec, 0xa9, 0x47, 0xf2, 0xcb, 0x0c, 0x2c, 0x8b, 0xce, 0xfa, 0x79, 0xc7, 0xd5, 0xa4, 0x47, 0x32,
+ 0xfc, 0x85, 0x4c, 0xed, 0x34, 0xd5, 0x2f, 0x64, 0xe9, 0xdd, 0x4c, 0x9f, 0xba, 0x9b, 0xff, 0x81,
+ 0xc5, 0x2d, 0x4c, 0xbf, 0xa2, 0x9d, 0x54, 0x7f, 0x94, 0x81, 0xa5, 0x3d, 0x9b, 0x44, 0xeb, 0x93,
+ 0xa7, 0x33, 0x60, 0x6a, 0xd4, 0x80, 0x4b, 0x30, 0x73, 0x6c, 0x3b, 0x2c, 0x68, 0x95, 0x6d, 0x4b,
+ 0x12, 0x5a, 0x85, 0xbc, 0xcf, 0x2a, 0x13, 0xbb, 0x51, 0x8a, 0x1b, 0xa2, 0x9c, 0xab, 0x30, 0x2a,
+ 0xbb, 0x4a, 0xf2, 0xf5, 0x99, 0x04, 0xf5, 0x7a, 0xd8, 0x55, 0xef, 0xa7, 0x5c, 0xb1, 0xcd, 0xa8,
+ 0xd5, 0xaf, 0x65, 0x60, 0x39, 0x6d, 0x3b, 0xf1, 0x3d, 0x97, 0x60, 0xb4, 0x05, 0x73, 0xd1, 0x17,
+ 0x7b, 0x99, 0xba, 0xcf, 0xf0, 0xca, 0xe4, 0xb4, 0x58, 0x19, 0xbd, 0x06, 0x0b, 0x2e, 0xfe, 0x88,
+ 0xea, 0x8a, 0x29, 0x4a, 0x77, 0x53, 0x64, 0xbc, 0x56, 0x6c, 0xce, 0xff, 0x65, 0xe0, 0xc2, 0xa6,
+ 0x6d, 0x74, 0x5d, 0x8f, 0x7c, 0x55, 0x81, 0x59, 0xbd, 0x75, 0x8a, 0x09, 0x24, 0x74, 0x28, 0x61,
+ 0x26, 0x78, 0x21, 0xf5, 0x43, 0x9a, 0x1e, 0xae, 0xe6, 0xb4, 0xbc, 0x20, 0x1f, 0x05, 0x76, 0xf5,
+ 0x3b, 0x59, 0x58, 0x3a, 0x65, 0x96, 0x87, 0x1e, 0x40, 0xc5, 0xf4, 0x5c, 0x12, 0xf6, 0xb1, 0xae,
+ 0x4e, 0x09, 0xf9, 0xe8, 0x40, 0x74, 0x8f, 0x37, 0xce, 0x3e, 0x21, 0xac, 0xb5, 0x07, 0x3e, 0x16,
+ 0x67, 0x7a, 0x41, 0xa2, 0x2b, 0x52, 0x7c, 0xfa, 0x70, 0x5e, 0x14, 0x1b, 0x65, 0xcc, 0xcb, 0x2b,
+ 0xce, 0x25, 0x98, 0xe1, 0x45, 0x26, 0x35, 0x46, 0x95, 0xa4, 0xaa, 0x0e, 0x53, 0x5c, 0x77, 0x19,
+ 0xca, 0xed, 0xfb, 0xad, 0xa6, 0x9e, 0xee, 0xa3, 0x10, 0x94, 0xf6, 0x0f, 0x74, 0xad, 0x79, 0xd8,
+ 0xd4, 0xee, 0x35, 0xda, 0x3b, 0x07, 0xfb, 0xe5, 0x0c, 0x5a, 0x82, 0x85, 0xc6, 0xfe, 0xfd, 0x14,
+ 0x31, 0x8b, 0x2a, 0xb0, 0x2c, 0xf5, 0x36, 0x52, 0x9c, 0xdc, 0xfa, 0x9f, 0x8b, 0xb0, 0x98, 0x0c,
+ 0x55, 0x69, 0xe0, 0x39, 0x0e, 0x0e, 0xd0, 0x37, 0xb3, 0x50, 0x4c, 0xd5, 0x3a, 0xf4, 0xc6, 0xb8,
+ 0x90, 0x3b, 0xa5, 0x32, 0xae, 0x5c, 0x8e, 0x94, 0x94, 0x1f, 0x67, 0xd4, 0x0e, 0xa2, 0x1f, 0x67,
+ 0x54, 0x3f, 0xcd, 0x7c, 0xd6, 0x68, 0x24, 0xbf, 0x9a, 0x78, 0x6b, 0xa2, 0xa0, 0x8e, 0xd5, 0xa3,
+ 0xa9, 0xeb, 0xe7, 0x8d, 0x4b, 0x49, 0x34, 0x5e, 0x5d, 0x15, 0x21, 0x76, 0x75, 0x55, 0xc6, 0xd1,
+ 0xff, 0xff, 0xe6, 0x4f, 0x9f, 0x64, 0x37, 0xaa, 0x6f, 0xc7, 0x3f, 0x1e, 0x91, 0xb2, 0xa4, 0xfe,
+ 0x38, 0xd1, 0xfa, 0xb8, 0x2e, 0xb4, 0x48, 0xfd, 0xb1, 0xf8, 0xe7, 0xe3, 0xf8, 0x37, 0x32, 0x37,
+ 0xe3, 0x8a, 0xf3, 0x93, 0x2c, 0x14, 0x53, 0xa5, 0x73, 0xac, 0x4f, 0x4e, 0x2b, 0xb4, 0xe3, 0x7c,
+ 0xf2, 0xdb, 0xe7, 0xe4, 0x93, 0xb7, 0x9e, 0xe0, 0x13, 0xfe, 0xd2, 0xc5, 0x4f, 0x57, 0x57, 0x95,
+ 0x22, 0xc7, 0xdd, 0xa5, 0xad, 0x6f, 0x3d, 0xad, 0xbb, 0xea, 0x8f, 0xd5, 0x35, 0x3e, 0x4e, 0xbc,
+ 0xf7, 0xfd, 0x2c, 0x14, 0x53, 0x55, 0x6e, 0xac, 0xf7, 0x4e, 0xab, 0x89, 0xe3, 0xbc, 0xf7, 0xf3,
+ 0xcc, 0x67, 0x8d, 0x03, 0x38, 0x3f, 0x5c, 0xa1, 0x9b, 0x7d, 0x9f, 0x0e, 0x9e, 0xde, 0x97, 0xab,
+ 0xe3, 0x7c, 0xc9, 0xbd, 0xb6, 0x73, 0xe5, 0x79, 0x79, 0x0d, 0x7d, 0x9e, 0x01, 0x48, 0xaa, 0x28,
+ 0x1a, 0x37, 0x69, 0x1e, 0x29, 0xb8, 0x2b, 0x13, 0x16, 0x88, 0x6a, 0x30, 0xf1, 0xe6, 0xd0, 0x73,
+ 0xdb, 0xdc, 0x5f, 0x32, 0x30, 0xaf, 0xd6, 0x39, 0xb4, 0x3e, 0xf6, 0xb7, 0x0a, 0x23, 0x05, 0x7d,
+ 0xe5, 0x8d, 0x33, 0xe9, 0x88, 0x42, 0xca, 0x76, 0x8b, 0x46, 0x77, 0xfb, 0x79, 0x63, 0xe5, 0x34,
+ 0x17, 0x88, 0xda, 0xce, 0x37, 0x7f, 0x13, 0x3d, 0x75, 0xfa, 0x40, 0x3f, 0xce, 0xc2, 0xc2, 0x50,
+ 0x0d, 0x43, 0x6f, 0x8e, 0xfd, 0x42, 0x72, 0x5a, 0xd9, 0x1d, 0x17, 0xfb, 0xbf, 0xfa, 0x0a, 0x63,
+ 0xff, 0xa8, 0xda, 0x7a, 0x5e, 0x19, 0xc3, 0x92, 0x9b, 0xbf, 0x99, 0xb9, 0xb2, 0xb2, 0xfb, 0x59,
+ 0xe3, 0x62, 0x6c, 0x6b, 0xfa, 0x63, 0xf9, 0xaf, 0x1b, 0xb5, 0x13, 0x4a, 0x7d, 0x72, 0xb3, 0x5e,
+ 0x7f, 0xf8, 0xf0, 0xe1, 0xf0, 0x97, 0x74, 0x23, 0xa4, 0x27, 0xe2, 0xd7, 0x83, 0xd7, 0xa2, 0xcf,
+ 0x2a, 0xb7, 0x1f, 0xc3, 0x3f, 0x99, 0x5e, 0xff, 0xc9, 0xae, 0xbf, 0x1d, 0x4d, 0x95, 0x48, 0x8b,
+ 0xf9, 0xaf, 0x95, 0xf9, 0xb7, 0xa6, 0x94, 0xef, 0x7a, 0x8e, 0xe1, 0x76, 0x6b, 0x5e, 0xd0, 0xad,
+ 0x77, 0xb1, 0xcb, 0xbd, 0x5b, 0x4f, 0x16, 0xfd, 0x92, 0x5f, 0x2a, 0xbe, 0x1b, 0x11, 0x3a, 0x33,
+ 0x5c, 0xe3, 0x8d, 0xbf, 0x07, 0x00, 0x00, 0xff, 0xff, 0x35, 0x6f, 0x30, 0x3e, 0x9a, 0x29, 0x00,
+ 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -2641,7 +2790,7 @@
DeleteCluster(ctx context.Context, in *DeleteClusterRequest, opts ...grpc.CallOption) (*longrunning.Operation, error)
// Gets the resource representation for a cluster in a project.
GetCluster(ctx context.Context, in *GetClusterRequest, opts ...grpc.CallOption) (*Cluster, error)
- // Lists all regions/{region}/clusters in a project.
+ // Lists all regions/{region}/clusters in a project alphabetically.
ListClusters(ctx context.Context, in *ListClustersRequest, opts ...grpc.CallOption) (*ListClustersResponse, error)
// Gets cluster diagnostic information. The returned
// [Operation.metadata][google.longrunning.Operation.metadata] will be
@@ -2731,7 +2880,7 @@
DeleteCluster(context.Context, *DeleteClusterRequest) (*longrunning.Operation, error)
// Gets the resource representation for a cluster in a project.
GetCluster(context.Context, *GetClusterRequest) (*Cluster, error)
- // Lists all regions/{region}/clusters in a project.
+ // Lists all regions/{region}/clusters in a project alphabetically.
ListClusters(context.Context, *ListClustersRequest) (*ListClustersResponse, error)
// Gets cluster diagnostic information. The returned
// [Operation.metadata][google.longrunning.Operation.metadata] will be
diff --git a/googleapis/cloud/dataproc/v1beta2/jobs.pb.go b/googleapis/cloud/dataproc/v1beta2/jobs.pb.go
index 92d414d..160e1d7 100644
--- a/googleapis/cloud/dataproc/v1beta2/jobs.pb.go
+++ b/googleapis/cloud/dataproc/v1beta2/jobs.pb.go
@@ -150,7 +150,7 @@
}
func (JobStatus_State) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{10, 0}
+ return fileDescriptor_20fb118582e1d7de, []int{11, 0}
}
// The job substate.
@@ -196,7 +196,7 @@
}
func (JobStatus_Substate) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{10, 1}
+ return fileDescriptor_20fb118582e1d7de, []int{11, 1}
}
// The application state, corresponding to
@@ -253,7 +253,7 @@
}
func (YarnApplication_State) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{12, 0}
+ return fileDescriptor_20fb118582e1d7de, []int{13, 0}
}
// A matcher that specifies categories of job states.
@@ -286,7 +286,7 @@
}
func (ListJobsRequest_JobStateMatcher) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{18, 0}
+ return fileDescriptor_20fb118582e1d7de, []int{19, 0}
}
// The runtime logging config of the job.
@@ -1296,6 +1296,143 @@
return nil
}
+// A Dataproc job for running [Presto](https://prestosql.io/) queries.
+// **IMPORTANT**: The [Dataproc Presto Optional
+// Component](/dataproc/docs/concepts/components/presto) must be enabled when
+// the cluster is created to submit a Presto job to the cluster.
+type PrestoJob struct {
+ // Required. The sequence of Presto queries to execute, specified as
+ // either an HCFS file URI or as a list of queries.
+ //
+ // Types that are valid to be assigned to Queries:
+ // *PrestoJob_QueryFileUri
+ // *PrestoJob_QueryList
+ Queries isPrestoJob_Queries `protobuf_oneof:"queries"`
+ // Optional. Whether to continue executing queries if a query fails.
+ // The default value is `false`. Setting to `true` can be useful when
+ // executing independent parallel queries.
+ ContinueOnFailure bool `protobuf:"varint,3,opt,name=continue_on_failure,json=continueOnFailure,proto3" json:"continue_on_failure,omitempty"`
+ // Optional. The format in which query output will be displayed. See the
+ // Presto documentation for supported output formats
+ OutputFormat string `protobuf:"bytes,4,opt,name=output_format,json=outputFormat,proto3" json:"output_format,omitempty"`
+ // Optional. Presto client tags to attach to this query
+ ClientTags []string `protobuf:"bytes,5,rep,name=client_tags,json=clientTags,proto3" json:"client_tags,omitempty"`
+ // Optional. A mapping of property names to values. Used to set Presto
+ // [session properties](https://prestodb.io/docs/current/sql/set-session.html)
+ // Equivalent to using the --session flag in the Presto CLI
+ Properties map[string]string `protobuf:"bytes,6,rep,name=properties,proto3" json:"properties,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
+ // Optional. The runtime log config for job execution.
+ LoggingConfig *LoggingConfig `protobuf:"bytes,7,opt,name=logging_config,json=loggingConfig,proto3" json:"logging_config,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *PrestoJob) Reset() { *m = PrestoJob{} }
+func (m *PrestoJob) String() string { return proto.CompactTextString(m) }
+func (*PrestoJob) ProtoMessage() {}
+func (*PrestoJob) Descriptor() ([]byte, []int) {
+ return fileDescriptor_20fb118582e1d7de, []int{9}
+}
+
+func (m *PrestoJob) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PrestoJob.Unmarshal(m, b)
+}
+func (m *PrestoJob) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PrestoJob.Marshal(b, m, deterministic)
+}
+func (m *PrestoJob) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PrestoJob.Merge(m, src)
+}
+func (m *PrestoJob) XXX_Size() int {
+ return xxx_messageInfo_PrestoJob.Size(m)
+}
+func (m *PrestoJob) XXX_DiscardUnknown() {
+ xxx_messageInfo_PrestoJob.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PrestoJob proto.InternalMessageInfo
+
+type isPrestoJob_Queries interface {
+ isPrestoJob_Queries()
+}
+
+type PrestoJob_QueryFileUri struct {
+ QueryFileUri string `protobuf:"bytes,1,opt,name=query_file_uri,json=queryFileUri,proto3,oneof"`
+}
+
+type PrestoJob_QueryList struct {
+ QueryList *QueryList `protobuf:"bytes,2,opt,name=query_list,json=queryList,proto3,oneof"`
+}
+
+func (*PrestoJob_QueryFileUri) isPrestoJob_Queries() {}
+
+func (*PrestoJob_QueryList) isPrestoJob_Queries() {}
+
+func (m *PrestoJob) GetQueries() isPrestoJob_Queries {
+ if m != nil {
+ return m.Queries
+ }
+ return nil
+}
+
+func (m *PrestoJob) GetQueryFileUri() string {
+ if x, ok := m.GetQueries().(*PrestoJob_QueryFileUri); ok {
+ return x.QueryFileUri
+ }
+ return ""
+}
+
+func (m *PrestoJob) GetQueryList() *QueryList {
+ if x, ok := m.GetQueries().(*PrestoJob_QueryList); ok {
+ return x.QueryList
+ }
+ return nil
+}
+
+func (m *PrestoJob) GetContinueOnFailure() bool {
+ if m != nil {
+ return m.ContinueOnFailure
+ }
+ return false
+}
+
+func (m *PrestoJob) GetOutputFormat() string {
+ if m != nil {
+ return m.OutputFormat
+ }
+ return ""
+}
+
+func (m *PrestoJob) GetClientTags() []string {
+ if m != nil {
+ return m.ClientTags
+ }
+ return nil
+}
+
+func (m *PrestoJob) GetProperties() map[string]string {
+ if m != nil {
+ return m.Properties
+ }
+ return nil
+}
+
+func (m *PrestoJob) GetLoggingConfig() *LoggingConfig {
+ if m != nil {
+ return m.LoggingConfig
+ }
+ return nil
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*PrestoJob) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*PrestoJob_QueryFileUri)(nil),
+ (*PrestoJob_QueryList)(nil),
+ }
+}
+
// Dataproc job config.
type JobPlacement struct {
// Required. The name of the cluster where the job will be submitted.
@@ -1312,7 +1449,7 @@
func (m *JobPlacement) String() string { return proto.CompactTextString(m) }
func (*JobPlacement) ProtoMessage() {}
func (*JobPlacement) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{9}
+ return fileDescriptor_20fb118582e1d7de, []int{10}
}
func (m *JobPlacement) XXX_Unmarshal(b []byte) error {
@@ -1368,7 +1505,7 @@
func (m *JobStatus) String() string { return proto.CompactTextString(m) }
func (*JobStatus) ProtoMessage() {}
func (*JobStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{10}
+ return fileDescriptor_20fb118582e1d7de, []int{11}
}
func (m *JobStatus) XXX_Unmarshal(b []byte) error {
@@ -1437,7 +1574,7 @@
func (m *JobReference) String() string { return proto.CompactTextString(m) }
func (*JobReference) ProtoMessage() {}
func (*JobReference) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{11}
+ return fileDescriptor_20fb118582e1d7de, []int{12}
}
func (m *JobReference) XXX_Unmarshal(b []byte) error {
@@ -1498,7 +1635,7 @@
func (m *YarnApplication) String() string { return proto.CompactTextString(m) }
func (*YarnApplication) ProtoMessage() {}
func (*YarnApplication) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{12}
+ return fileDescriptor_20fb118582e1d7de, []int{13}
}
func (m *YarnApplication) XXX_Unmarshal(b []byte) error {
@@ -1567,6 +1704,7 @@
// *Job_PigJob
// *Job_SparkRJob
// *Job_SparkSqlJob
+ // *Job_PrestoJob
TypeJob isJob_TypeJob `protobuf_oneof:"type_job"`
// Output only. The job status. Additional application-specific
// status information may be contained in the <code>type_job</code>
@@ -1602,7 +1740,12 @@
// Output only. A UUID that uniquely identifies a job within the project
// over time. This is in contrast to a user-settable reference.job_id that
// may be reused over time.
- JobUuid string `protobuf:"bytes,22,opt,name=job_uuid,json=jobUuid,proto3" json:"job_uuid,omitempty"`
+ JobUuid string `protobuf:"bytes,22,opt,name=job_uuid,json=jobUuid,proto3" json:"job_uuid,omitempty"`
+ // Output only. Indicates whether the job is completed. If the value is `false`,
+ // the job is still in progress. If `true`, the job is completed, and
+ // `status.state` field will indicate if it was successful, failed,
+ // or cancelled.
+ Done bool `protobuf:"varint,24,opt,name=done,proto3" json:"done,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1612,7 +1755,7 @@
func (m *Job) String() string { return proto.CompactTextString(m) }
func (*Job) ProtoMessage() {}
func (*Job) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{13}
+ return fileDescriptor_20fb118582e1d7de, []int{14}
}
func (m *Job) XXX_Unmarshal(b []byte) error {
@@ -1679,6 +1822,10 @@
SparkSqlJob *SparkSqlJob `protobuf:"bytes,12,opt,name=spark_sql_job,json=sparkSqlJob,proto3,oneof"`
}
+type Job_PrestoJob struct {
+ PrestoJob *PrestoJob `protobuf:"bytes,23,opt,name=presto_job,json=prestoJob,proto3,oneof"`
+}
+
func (*Job_HadoopJob) isJob_TypeJob() {}
func (*Job_SparkJob) isJob_TypeJob() {}
@@ -1693,6 +1840,8 @@
func (*Job_SparkSqlJob) isJob_TypeJob() {}
+func (*Job_PrestoJob) isJob_TypeJob() {}
+
func (m *Job) GetTypeJob() isJob_TypeJob {
if m != nil {
return m.TypeJob
@@ -1749,6 +1898,13 @@
return nil
}
+func (m *Job) GetPrestoJob() *PrestoJob {
+ if x, ok := m.GetTypeJob().(*Job_PrestoJob); ok {
+ return x.PrestoJob
+ }
+ return nil
+}
+
func (m *Job) GetStatus() *JobStatus {
if m != nil {
return m.Status
@@ -1812,6 +1968,13 @@
return ""
}
+func (m *Job) GetDone() bool {
+ if m != nil {
+ return m.Done
+ }
+ return false
+}
+
// XXX_OneofWrappers is for the internal use of the proto package.
func (*Job) XXX_OneofWrappers() []interface{} {
return []interface{}{
@@ -1822,6 +1985,7 @@
(*Job_PigJob)(nil),
(*Job_SparkRJob)(nil),
(*Job_SparkSqlJob)(nil),
+ (*Job_PrestoJob)(nil),
}
}
@@ -1845,7 +2009,7 @@
func (m *JobScheduling) String() string { return proto.CompactTextString(m) }
func (*JobScheduling) ProtoMessage() {}
func (*JobScheduling) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{14}
+ return fileDescriptor_20fb118582e1d7de, []int{15}
}
func (m *JobScheduling) XXX_Unmarshal(b []byte) error {
@@ -1892,7 +2056,7 @@
func (m *JobMetadata) String() string { return proto.CompactTextString(m) }
func (*JobMetadata) ProtoMessage() {}
func (*JobMetadata) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{15}
+ return fileDescriptor_20fb118582e1d7de, []int{16}
}
func (m *JobMetadata) XXX_Unmarshal(b []byte) error {
@@ -1971,7 +2135,7 @@
func (m *SubmitJobRequest) String() string { return proto.CompactTextString(m) }
func (*SubmitJobRequest) ProtoMessage() {}
func (*SubmitJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{16}
+ return fileDescriptor_20fb118582e1d7de, []int{17}
}
func (m *SubmitJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2038,7 +2202,7 @@
func (m *GetJobRequest) String() string { return proto.CompactTextString(m) }
func (*GetJobRequest) ProtoMessage() {}
func (*GetJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{17}
+ return fileDescriptor_20fb118582e1d7de, []int{18}
}
func (m *GetJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2124,7 +2288,7 @@
func (m *ListJobsRequest) String() string { return proto.CompactTextString(m) }
func (*ListJobsRequest) ProtoMessage() {}
func (*ListJobsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{18}
+ return fileDescriptor_20fb118582e1d7de, []int{19}
}
func (m *ListJobsRequest) XXX_Unmarshal(b []byte) error {
@@ -2221,7 +2385,7 @@
func (m *UpdateJobRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateJobRequest) ProtoMessage() {}
func (*UpdateJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{19}
+ return fileDescriptor_20fb118582e1d7de, []int{20}
}
func (m *UpdateJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2294,7 +2458,7 @@
func (m *ListJobsResponse) String() string { return proto.CompactTextString(m) }
func (*ListJobsResponse) ProtoMessage() {}
func (*ListJobsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{20}
+ return fileDescriptor_20fb118582e1d7de, []int{21}
}
func (m *ListJobsResponse) XXX_Unmarshal(b []byte) error {
@@ -2347,7 +2511,7 @@
func (m *CancelJobRequest) String() string { return proto.CompactTextString(m) }
func (*CancelJobRequest) ProtoMessage() {}
func (*CancelJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{21}
+ return fileDescriptor_20fb118582e1d7de, []int{22}
}
func (m *CancelJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2407,7 +2571,7 @@
func (m *DeleteJobRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteJobRequest) ProtoMessage() {}
func (*DeleteJobRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_20fb118582e1d7de, []int{22}
+ return fileDescriptor_20fb118582e1d7de, []int{23}
}
func (m *DeleteJobRequest) XXX_Unmarshal(b []byte) error {
@@ -2475,6 +2639,8 @@
proto.RegisterMapType((map[string]string)(nil), "google.cloud.dataproc.v1beta2.PigJob.ScriptVariablesEntry")
proto.RegisterType((*SparkRJob)(nil), "google.cloud.dataproc.v1beta2.SparkRJob")
proto.RegisterMapType((map[string]string)(nil), "google.cloud.dataproc.v1beta2.SparkRJob.PropertiesEntry")
+ proto.RegisterType((*PrestoJob)(nil), "google.cloud.dataproc.v1beta2.PrestoJob")
+ proto.RegisterMapType((map[string]string)(nil), "google.cloud.dataproc.v1beta2.PrestoJob.PropertiesEntry")
proto.RegisterType((*JobPlacement)(nil), "google.cloud.dataproc.v1beta2.JobPlacement")
proto.RegisterType((*JobStatus)(nil), "google.cloud.dataproc.v1beta2.JobStatus")
proto.RegisterType((*JobReference)(nil), "google.cloud.dataproc.v1beta2.JobReference")
@@ -2497,176 +2663,182 @@
}
var fileDescriptor_20fb118582e1d7de = []byte{
- // 2690 bytes of a gzipped FileDescriptorProto
+ // 2787 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0xcf, 0x73, 0x23, 0x47,
- 0xf5, 0xf7, 0xe8, 0x97, 0x35, 0x4f, 0xfe, 0x31, 0xee, 0xec, 0x66, 0x55, 0xca, 0x37, 0xdf, 0x98,
- 0xa1, 0x48, 0xcc, 0x26, 0x91, 0x2a, 0x4e, 0x58, 0x92, 0x5d, 0x92, 0xac, 0x6c, 0x8f, 0xd7, 0xf2,
- 0x6a, 0x65, 0x65, 0x24, 0x6d, 0x20, 0x40, 0x26, 0x23, 0xa9, 0x2d, 0x8f, 0x3d, 0x9a, 0x9e, 0x9d,
- 0x1f, 0xde, 0x28, 0x21, 0x55, 0x14, 0x07, 0x28, 0x38, 0xc2, 0x5f, 0x41, 0x15, 0xa7, 0x9c, 0x38,
- 0x71, 0xe0, 0x98, 0x43, 0x0e, 0x70, 0x22, 0x70, 0xa0, 0x0a, 0xa8, 0x40, 0x15, 0x67, 0xce, 0x54,
- 0x77, 0xcf, 0x8c, 0x46, 0xb2, 0x37, 0x1a, 0xad, 0x53, 0x24, 0xd9, 0xd3, 0xce, 0xbe, 0x7e, 0xef,
- 0xd3, 0xef, 0xf5, 0xfb, 0xf4, 0xeb, 0xd7, 0x6d, 0xc1, 0xc6, 0x80, 0x90, 0x81, 0x89, 0x2b, 0x3d,
- 0x93, 0xf8, 0xfd, 0x4a, 0x5f, 0xf7, 0x74, 0xdb, 0x21, 0xbd, 0xca, 0xe9, 0x0b, 0x5d, 0xec, 0xe9,
- 0x9b, 0x95, 0x63, 0xd2, 0x75, 0xcb, 0xb6, 0x43, 0x3c, 0x82, 0x9e, 0xe4, 0x9a, 0x65, 0xa6, 0x59,
- 0x0e, 0x35, 0xcb, 0x81, 0x66, 0xe9, 0xff, 0x02, 0x20, 0xdd, 0x36, 0x2a, 0xba, 0x65, 0x11, 0x4f,
- 0xf7, 0x0c, 0x62, 0x05, 0xc6, 0xa5, 0x2b, 0xb1, 0xd1, 0x9e, 0x69, 0x60, 0xcb, 0x0b, 0x06, 0x9e,
- 0x8a, 0x0d, 0x1c, 0x1a, 0xd8, 0xec, 0x6b, 0x5d, 0x7c, 0xa4, 0x9f, 0x1a, 0xc4, 0x09, 0x14, 0xbe,
- 0x1e, 0x28, 0x98, 0xc4, 0x1a, 0x38, 0xbe, 0x65, 0x19, 0xd6, 0xa0, 0x42, 0x6c, 0xec, 0x4c, 0xc0,
- 0x3f, 0x11, 0x28, 0xb1, 0xff, 0x75, 0xfd, 0xc3, 0x0a, 0x1e, 0xda, 0xde, 0x28, 0x18, 0x5c, 0x9f,
- 0x1e, 0xe4, 0xf3, 0x0c, 0x75, 0xf7, 0x64, 0xca, 0x89, 0x48, 0xc3, 0x33, 0x86, 0xd8, 0xf5, 0xf4,
- 0xa1, 0xcd, 0x15, 0xe4, 0x7f, 0xa6, 0x60, 0xb9, 0x4e, 0x06, 0x03, 0xc3, 0x1a, 0x6c, 0x13, 0xeb,
- 0xd0, 0x18, 0xa0, 0x21, 0xac, 0xf5, 0x1d, 0xe3, 0x14, 0x3b, 0x9a, 0x49, 0x06, 0x9a, 0x89, 0x4f,
- 0xb1, 0xe9, 0x16, 0x53, 0xeb, 0xe9, 0x8d, 0xc2, 0x66, 0xb5, 0xfc, 0x99, 0x2b, 0x55, 0x9e, 0x00,
- 0x2a, 0xef, 0x30, 0x94, 0x3a, 0x19, 0xd4, 0x19, 0x86, 0x62, 0x79, 0xce, 0x48, 0x5d, 0xed, 0x4f,
- 0x4a, 0x4b, 0xa7, 0x70, 0xe9, 0x3c, 0x45, 0x24, 0x41, 0xfa, 0x04, 0x8f, 0x8a, 0xc2, 0xba, 0xb0,
- 0x21, 0xaa, 0xf4, 0x13, 0xed, 0x41, 0xf6, 0x54, 0x37, 0x7d, 0x5c, 0x4c, 0xad, 0x0b, 0x1b, 0x2b,
- 0x9b, 0x9b, 0x73, 0x39, 0xc3, 0xa0, 0x55, 0x0e, 0x70, 0x3d, 0xf5, 0xb2, 0x20, 0xdb, 0x90, 0x65,
- 0x32, 0x74, 0x19, 0xd6, 0xea, 0xca, 0x5d, 0xa5, 0xae, 0x75, 0x1a, 0xad, 0xa6, 0xb2, 0x5d, 0xdb,
- 0xad, 0x29, 0x3b, 0xd2, 0x02, 0x5a, 0x84, 0x74, 0xb5, 0x5e, 0x97, 0x04, 0x24, 0x42, 0xb6, 0xad,
- 0x56, 0xb7, 0x15, 0x29, 0x45, 0x3f, 0x77, 0x94, 0xad, 0xce, 0x2d, 0x29, 0x8d, 0xf2, 0x90, 0xa9,
- 0x35, 0x76, 0x0f, 0xa4, 0x0c, 0xfd, 0x7a, 0xb3, 0xaa, 0x36, 0xa4, 0x2c, 0x1d, 0x56, 0x54, 0xf5,
- 0x40, 0x95, 0x72, 0xf4, 0x73, 0xb7, 0xda, 0xae, 0xd6, 0xa5, 0x45, 0x0a, 0x74, 0xb0, 0xbb, 0x2b,
- 0xe5, 0xe5, 0x4f, 0xd3, 0x20, 0xee, 0xe9, 0x7d, 0x42, 0xec, 0x7d, 0xd2, 0x45, 0xcf, 0xc2, 0xda,
- 0x50, 0x37, 0x2c, 0xed, 0x58, 0x77, 0xb4, 0x43, 0xc3, 0xc4, 0x9a, 0xef, 0x18, 0x3c, 0xda, 0xbd,
- 0x05, 0x75, 0x85, 0x0e, 0xed, 0xeb, 0xce, 0xae, 0x61, 0xe2, 0x8e, 0x63, 0xa0, 0xa7, 0x00, 0x98,
- 0x72, 0xcf, 0xd4, 0x5d, 0x97, 0xc5, 0x4f, 0xb5, 0x44, 0x2a, 0xdb, 0xa6, 0x22, 0x74, 0x05, 0x32,
- 0xba, 0x33, 0x70, 0x8b, 0xe9, 0xf5, 0xf4, 0x86, 0xb8, 0x95, 0xfe, 0x6b, 0x55, 0x50, 0x99, 0x00,
- 0x3d, 0x03, 0xcb, 0xf1, 0x19, 0xdc, 0x62, 0x66, 0xac, 0x51, 0x38, 0x8e, 0x66, 0x70, 0xd1, 0x3a,
- 0x88, 0x63, 0xa5, 0xec, 0x58, 0x29, 0x7f, 0x18, 0x6a, 0x3c, 0x0d, 0x4b, 0xba, 0xd3, 0x3b, 0x32,
- 0x4e, 0x03, 0xa5, 0x5c, 0x0c, 0x29, 0x18, 0x60, 0x7a, 0x3f, 0x04, 0xb0, 0x1d, 0x4a, 0x64, 0xcf,
- 0xc0, 0x6e, 0x71, 0x91, 0x31, 0xe7, 0xe5, 0x19, 0xc9, 0x8a, 0xd6, 0xa5, 0xdc, 0x8c, 0x4c, 0x19,
- 0x0f, 0x38, 0x7e, 0x0c, 0x10, 0x7d, 0x17, 0x56, 0x4c, 0x9e, 0x5a, 0xad, 0xc7, 0x72, 0x5b, 0xcc,
- 0xaf, 0x0b, 0x1b, 0x85, 0xcd, 0xe7, 0xe6, 0xe1, 0x03, 0x87, 0x5d, 0x36, 0xe3, 0xb2, 0xd2, 0xab,
- 0xb0, 0x3a, 0x35, 0xfb, 0x39, 0x2c, 0xbc, 0x14, 0x67, 0xa1, 0x18, 0x63, 0xd4, 0x56, 0x1e, 0x72,
- 0x9c, 0xdc, 0xf2, 0x3f, 0xd2, 0x90, 0x6f, 0xd9, 0xba, 0x73, 0xf2, 0x68, 0x27, 0xfa, 0x07, 0xe7,
- 0x24, 0xfa, 0xdb, 0x33, 0xb2, 0x10, 0x2e, 0xcb, 0x23, 0x91, 0xe7, 0xff, 0xa4, 0x01, 0x9a, 0xa3,
- 0x28, 0xd3, 0x2f, 0xc1, 0x25, 0x96, 0x3c, 0x7b, 0xe4, 0x1d, 0x11, 0x6b, 0x2a, 0xd9, 0xd4, 0x93,
- 0x94, 0xca, 0xa8, 0xd0, 0x64, 0xe3, 0x61, 0xca, 0xc3, 0x8c, 0xa6, 0xa6, 0x33, 0xfa, 0x3c, 0x48,
- 0x53, 0x48, 0x13, 0x69, 0x5f, 0xb1, 0xe3, 0x30, 0x5f, 0x08, 0x01, 0xde, 0x3e, 0x87, 0x00, 0xaf,
- 0xcc, 0x48, 0xcf, 0x78, 0xbd, 0xbe, 0xba, 0x14, 0x90, 0xaf, 0x82, 0xf8, 0x86, 0x8f, 0x9d, 0x51,
- 0xdd, 0x70, 0x3d, 0xf4, 0x24, 0x2c, 0xde, 0xf3, 0xb1, 0x43, 0x97, 0x40, 0x08, 0x17, 0x2a, 0xa5,
- 0x86, 0x32, 0xf9, 0xc3, 0x0c, 0x2c, 0xee, 0x19, 0xa7, 0x98, 0x32, 0xe4, 0x69, 0x58, 0xa1, 0xe2,
- 0xd1, 0xd9, 0x42, 0xb0, 0xc4, 0xe4, 0x21, 0x27, 0x6a, 0x00, 0x5c, 0xcf, 0x34, 0x5c, 0x8f, 0x4d,
- 0x5f, 0xd8, 0xdc, 0x98, 0x11, 0x74, 0xe4, 0x10, 0x2d, 0x18, 0xf7, 0x22, 0xef, 0x5e, 0x84, 0xc7,
- 0x7a, 0xc4, 0xf2, 0x0c, 0xcb, 0xc7, 0x1a, 0xa5, 0x92, 0x6e, 0x98, 0xbe, 0x83, 0x8b, 0xe9, 0x75,
- 0x61, 0x23, 0xcf, 0x97, 0x66, 0x2d, 0x1c, 0x3f, 0xb0, 0x76, 0xf9, 0x28, 0x3a, 0x01, 0xc9, 0xed,
- 0x39, 0x86, 0xed, 0x69, 0xa7, 0xba, 0x63, 0xe8, 0x5d, 0x13, 0x73, 0x3a, 0x15, 0x36, 0x6f, 0xcc,
- 0x2a, 0xe4, 0x3c, 0xd2, 0x72, 0x8b, 0x99, 0xdf, 0x0d, 0xad, 0x63, 0x09, 0x5e, 0x75, 0x27, 0x87,
- 0xd0, 0xf7, 0x27, 0x58, 0x94, 0x65, 0xd3, 0x5c, 0x4b, 0x38, 0xcd, 0x4c, 0x0a, 0x9d, 0xd9, 0x15,
- 0xb9, 0xf3, 0x77, 0x45, 0x69, 0x0b, 0x2e, 0x9d, 0xe7, 0xf3, 0x3c, 0xb4, 0xb8, 0x68, 0x61, 0x11,
- 0x23, 0x22, 0xc9, 0x7f, 0xcb, 0x40, 0x81, 0xed, 0x93, 0xd6, 0x3d, 0xf3, 0x0b, 0x22, 0x0e, 0x39,
- 0x87, 0x03, 0x69, 0x96, 0x9c, 0xd7, 0x93, 0xd4, 0x78, 0xee, 0xf8, 0x3c, 0x3c, 0xd0, 0x26, 0x78,
- 0xc0, 0xe9, 0x76, 0x7d, 0x8e, 0xa9, 0xe6, 0xe7, 0xc2, 0xcb, 0x0f, 0xa8, 0x90, 0x67, 0xeb, 0x4e,
- 0xee, 0x73, 0xaa, 0x3b, 0x5f, 0x2e, 0x96, 0xfd, 0x3c, 0x0b, 0xb9, 0xa6, 0x31, 0xf8, 0x2a, 0x55,
- 0xa6, 0xe3, 0x07, 0x56, 0xa6, 0x59, 0x54, 0xe1, 0x81, 0xce, 0x43, 0xc8, 0xb7, 0xce, 0x29, 0x4c,
- 0xdf, 0x4a, 0x36, 0xcb, 0xe7, 0x56, 0x97, 0xce, 0xe1, 0xe2, 0xe2, 0x23, 0xc9, 0xc5, 0x5f, 0xa6,
- 0x41, 0x64, 0xbb, 0x59, 0xa5, 0x74, 0xbc, 0x0a, 0xab, 0xac, 0x95, 0x72, 0xce, 0xed, 0xa2, 0x96,
- 0xe8, 0x98, 0x3a, 0xb3, 0x81, 0x9a, 0x68, 0x74, 0xd2, 0x49, 0x1a, 0x9d, 0x4c, 0xa2, 0x2b, 0x4d,
- 0x36, 0xd1, 0x95, 0x26, 0x0a, 0xe6, 0x61, 0xfa, 0x9c, 0xdc, 0x97, 0xa3, 0xcf, 0x79, 0x1b, 0x96,
- 0xf6, 0x49, 0xb7, 0x69, 0xea, 0x3d, 0x3c, 0xc4, 0x96, 0x47, 0xd7, 0xab, 0x67, 0xfa, 0xae, 0x87,
- 0x1d, 0xcd, 0xd2, 0x87, 0x38, 0x9e, 0x93, 0x42, 0x30, 0xd0, 0xd0, 0x87, 0x38, 0xae, 0xe7, 0xfb,
- 0x46, 0x9f, 0x03, 0x53, 0xbd, 0x74, 0xa4, 0xd7, 0xf1, 0x8d, 0xbe, 0xfc, 0x8b, 0x0c, 0x88, 0xfb,
- 0xa4, 0xdb, 0xf2, 0x74, 0xcf, 0x77, 0x51, 0x0d, 0xb2, 0xae, 0xa7, 0x7b, 0x1c, 0x76, 0x65, 0xb3,
- 0x3c, 0x23, 0xfa, 0xc8, 0xb0, 0x4c, 0xff, 0xc1, 0x1c, 0x9e, 0x23, 0xd0, 0x9e, 0xac, 0x8f, 0x3d,
- 0xdd, 0x30, 0xdd, 0xf8, 0xdc, 0xa1, 0x0c, 0xd5, 0x40, 0x62, 0x7a, 0x9a, 0xeb, 0xe9, 0x8e, 0xa7,
- 0x79, 0xc6, 0x10, 0x07, 0x4b, 0x5e, 0x0a, 0x27, 0x0d, 0x5f, 0x4c, 0xca, 0xed, 0xf0, 0xc5, 0x84,
- 0x63, 0xac, 0x30, 0xc3, 0x16, 0xb5, 0xa3, 0x23, 0x48, 0x85, 0xbc, 0xeb, 0x77, 0xb9, 0xdf, 0x8b,
- 0xcc, 0xef, 0x17, 0x92, 0xfb, 0x1d, 0x18, 0x72, 0xe4, 0x08, 0x47, 0xfe, 0xb5, 0x00, 0x59, 0x16,
- 0x13, 0xba, 0x0c, 0x6b, 0xad, 0x76, 0xb5, 0xad, 0x4c, 0x3d, 0x4e, 0x14, 0x60, 0xb1, 0xa9, 0x34,
- 0x76, 0x6a, 0x8d, 0x5b, 0x92, 0x80, 0x56, 0x00, 0x5a, 0x4a, 0xbb, 0xd3, 0xd4, 0x76, 0x0e, 0x1a,
- 0x8a, 0x94, 0xa7, 0x83, 0x6a, 0xa7, 0xd1, 0xa0, 0x83, 0x29, 0x84, 0x60, 0x65, 0xbb, 0xda, 0xd8,
- 0x56, 0xea, 0x5a, 0x68, 0x90, 0x8e, 0xc9, 0x5a, 0xed, 0xaa, 0xda, 0x56, 0x76, 0xa4, 0x45, 0xb4,
- 0x0c, 0x22, 0x97, 0xd5, 0x95, 0x1d, 0xfe, 0xa8, 0xc1, 0xd0, 0x26, 0x1e, 0x35, 0x1e, 0x83, 0xd5,
- 0x6a, 0xbb, 0xad, 0xdc, 0x69, 0xb6, 0xb5, 0xdd, 0x6a, 0xad, 0xde, 0x51, 0x15, 0x49, 0x94, 0xf7,
- 0x20, 0x1f, 0x86, 0x81, 0x56, 0xa1, 0x30, 0xe9, 0xe7, 0x32, 0x88, 0xad, 0xce, 0xd6, 0x9d, 0x5a,
- 0x9b, 0x4e, 0x22, 0x20, 0x80, 0xdc, 0x1b, 0x1d, 0xa5, 0xa3, 0xec, 0x48, 0x29, 0x24, 0xc1, 0x52,
- 0xab, 0x5d, 0xad, 0x2b, 0xd4, 0x87, 0x76, 0xa7, 0x25, 0xa5, 0xe5, 0x06, 0x23, 0x9b, 0x8a, 0x0f,
- 0xb1, 0x83, 0xad, 0x1e, 0x46, 0x32, 0xdb, 0x74, 0xc7, 0xb8, 0xe7, 0x69, 0x46, 0x3f, 0x4e, 0x35,
- 0x31, 0x10, 0xd7, 0xfa, 0xa8, 0x04, 0xb9, 0x63, 0xd2, 0xd5, 0xe2, 0x14, 0x13, 0xd4, 0xec, 0x31,
- 0xe9, 0xd6, 0xfa, 0xf2, 0xc7, 0x29, 0x58, 0xfd, 0x9e, 0xee, 0x58, 0x55, 0xdb, 0x36, 0x8d, 0x1e,
- 0x7b, 0x55, 0xa3, 0xb5, 0x62, 0x92, 0xb8, 0x69, 0x95, 0x09, 0xd0, 0x41, 0xc8, 0x3d, 0xfe, 0xb8,
- 0xf4, 0xd2, 0x8c, 0x1c, 0x4e, 0xe1, 0x9e, 0xc3, 0xc0, 0xa7, 0x20, 0x6f, 0x3b, 0x64, 0xe0, 0x60,
- 0xd7, 0x65, 0x47, 0x5a, 0x2a, 0x48, 0x72, 0x28, 0xa4, 0x7b, 0xc4, 0x73, 0xf4, 0xde, 0x09, 0xdd,
- 0xf5, 0xbe, 0x63, 0x16, 0x33, 0xb1, 0x3d, 0x12, 0x0e, 0x74, 0x1c, 0x53, 0xfe, 0xd9, 0x2c, 0x32,
- 0x2c, 0x42, 0xba, 0xa1, 0xbc, 0xc9, 0x89, 0xd0, 0x50, 0xde, 0xd4, 0x5a, 0xd5, 0xbb, 0x3c, 0xf7,
- 0x13, 0xab, 0x9f, 0x46, 0x4b, 0x90, 0xaf, 0x6e, 0x6f, 0x2b, 0xcd, 0x36, 0xcb, 0x70, 0x8c, 0x25,
- 0x59, 0x3a, 0xb4, 0x5b, 0x6b, 0xd4, 0x5a, 0x7b, 0xca, 0x8e, 0x94, 0xa3, 0x69, 0xa2, 0xf9, 0x65,
- 0xbc, 0x00, 0xc8, 0xdd, 0xae, 0x31, 0x52, 0xe4, 0xe5, 0x3f, 0x01, 0xa4, 0x69, 0x71, 0x6e, 0x80,
- 0xe8, 0x84, 0x59, 0x62, 0x2b, 0x59, 0xd8, 0x7c, 0x76, 0x36, 0xe7, 0xa3, 0xc4, 0xf2, 0x24, 0x8d,
- 0x21, 0x28, 0x9e, 0x1d, 0x96, 0x98, 0xa0, 0xa5, 0x48, 0x80, 0x17, 0x55, 0xa5, 0x90, 0x14, 0x51,
- 0x95, 0xaa, 0x01, 0x1c, 0xb1, 0xf7, 0x24, 0xed, 0x98, 0x74, 0xd9, 0xe2, 0xcf, 0xee, 0x51, 0xa2,
- 0x07, 0x28, 0xda, 0xa3, 0x1c, 0x45, 0xaf, 0x74, 0xbb, 0x20, 0xba, 0xb4, 0x8e, 0x33, 0xa4, 0x0c,
- 0x43, 0x7a, 0x26, 0xe1, 0x0b, 0xc7, 0xde, 0x82, 0x9a, 0x77, 0xc3, 0xa7, 0x81, 0x3a, 0x14, 0xec,
- 0xd1, 0x18, 0x29, 0xcb, 0x90, 0xbe, 0x99, 0xf8, 0xaa, 0xbc, 0xb7, 0xa0, 0x42, 0x60, 0x4f, 0xd1,
- 0xb6, 0x21, 0xcf, 0xce, 0x2c, 0x0a, 0xc5, 0xcb, 0xd6, 0xd3, 0xc9, 0xee, 0x4b, 0x7b, 0x0b, 0xea,
- 0xe2, 0x51, 0x70, 0x17, 0xbd, 0x09, 0x8b, 0xb6, 0x31, 0x60, 0x18, 0xbc, 0xa3, 0xf8, 0x46, 0xa2,
- 0xd6, 0x66, 0x6f, 0x41, 0xcd, 0xd9, 0xbc, 0x67, 0xdc, 0x87, 0x02, 0x0f, 0xc9, 0x61, 0x28, 0x97,
- 0x13, 0x2d, 0x74, 0x74, 0x2c, 0xd2, 0x85, 0x76, 0xa3, 0x03, 0xbf, 0x09, 0xcb, 0x1c, 0xcb, 0xbd,
- 0x67, 0x32, 0xb4, 0x25, 0x86, 0x76, 0x35, 0x79, 0xff, 0xbf, 0xb7, 0xa0, 0x72, 0x77, 0x82, 0x2b,
- 0x93, 0x02, 0x39, 0x97, 0x95, 0xd9, 0xe0, 0xd1, 0x60, 0x23, 0x69, 0x59, 0xe6, 0x7b, 0x30, 0x30,
- 0x46, 0x6d, 0x58, 0xe1, 0x5f, 0xda, 0x91, 0xe1, 0x7a, 0xc4, 0x19, 0x15, 0x97, 0xd9, 0xf1, 0x3f,
- 0x27, 0xdc, 0x32, 0x07, 0xd9, 0xe3, 0x18, 0xe8, 0x1d, 0x58, 0x1b, 0xe9, 0x8e, 0xa5, 0xe9, 0xe3,
- 0x1a, 0xe2, 0x16, 0x45, 0x06, 0x5c, 0x9e, 0xaf, 0xf4, 0x70, 0x78, 0x69, 0x34, 0x29, 0x65, 0xe5,
- 0xc5, 0xf5, 0xbb, 0x43, 0xc3, 0xf3, 0x70, 0x5f, 0xeb, 0x8e, 0x8a, 0x10, 0x2b, 0x2f, 0xd1, 0xc0,
- 0xd6, 0x08, 0xdd, 0x84, 0x52, 0xf0, 0xdc, 0x4f, 0x7c, 0xcf, 0xf6, 0x3d, 0xcd, 0xc1, 0x2e, 0xf1,
- 0x9d, 0x1e, 0x6f, 0xba, 0xd6, 0xc6, 0x56, 0x57, 0xb8, 0xda, 0x01, 0xd3, 0x52, 0x03, 0x25, 0xda,
- 0x7f, 0x7d, 0x07, 0x8a, 0x01, 0x02, 0x6d, 0xd7, 0x1d, 0x62, 0xb2, 0x9e, 0xcd, 0x65, 0xf6, 0xab,
- 0x63, 0xfb, 0xcb, 0x5c, 0x69, 0x9b, 0xeb, 0xd0, 0xe6, 0xcd, 0xa5, 0xd6, 0xb7, 0x21, 0x67, 0xea,
- 0x5d, 0x6c, 0xba, 0x45, 0x94, 0x28, 0x7c, 0xda, 0x50, 0xd5, 0x99, 0x41, 0xac, 0x99, 0x0a, 0x20,
- 0xd0, 0x1b, 0x00, 0x6e, 0xef, 0x08, 0xf7, 0x7d, 0xd3, 0xb0, 0x06, 0xc5, 0x4b, 0x89, 0x9a, 0x28,
- 0x9a, 0xa8, 0xc8, 0x26, 0xe8, 0xcd, 0xc6, 0x20, 0xe8, 0xff, 0x21, 0x4f, 0x4f, 0x18, 0xd6, 0xc6,
- 0x3c, 0x1e, 0x6b, 0x25, 0x8e, 0x49, 0x97, 0xb6, 0x30, 0xa5, 0x57, 0xa0, 0x10, 0x73, 0x67, 0xae,
- 0xee, 0x17, 0x20, 0xef, 0x8d, 0x6c, 0xb6, 0x8d, 0xe5, 0x5b, 0xb0, 0x3c, 0xe1, 0x08, 0xba, 0x06,
- 0x97, 0x87, 0xfa, 0xbb, 0xe1, 0xad, 0xc8, 0xd5, 0x6c, 0xec, 0x68, 0x47, 0xc4, 0x77, 0x18, 0x74,
- 0x96, 0xfb, 0x89, 0x86, 0xfa, 0xbb, 0xc1, 0xc5, 0xc8, 0x6d, 0x62, 0x67, 0x8f, 0xf8, 0x8e, 0xfc,
- 0x17, 0x01, 0x0a, 0xfb, 0xa4, 0x7b, 0x07, 0x7b, 0x3a, 0x0d, 0x35, 0x76, 0x42, 0xc6, 0xce, 0x3c,
- 0x7e, 0x42, 0xc6, 0xb6, 0x48, 0xea, 0x22, 0x5b, 0xe4, 0x2a, 0xac, 0x44, 0x7f, 0xb7, 0xd2, 0x68,
- 0x44, 0xac, 0xe6, 0x06, 0x53, 0x2d, 0x47, 0x43, 0xed, 0x91, 0x8d, 0xd1, 0x6b, 0x00, 0xb1, 0x9e,
- 0x2b, 0x93, 0xac, 0xe7, 0x12, 0xdd, 0xb0, 0xdd, 0x92, 0x3f, 0x14, 0x40, 0x6a, 0x31, 0xfa, 0xb2,
- 0x23, 0xe5, 0x9e, 0x8f, 0x5d, 0x2f, 0x51, 0xa7, 0xf0, 0x04, 0xe4, 0x1c, 0x3c, 0x30, 0x88, 0x35,
- 0x76, 0x2e, 0xa5, 0x06, 0x22, 0xf4, 0x0a, 0xa4, 0x69, 0xcd, 0xe1, 0xab, 0x20, 0xcf, 0x5e, 0x05,
- 0x6e, 0x4d, 0x6d, 0xe8, 0xdc, 0x0e, 0x77, 0x83, 0xce, 0x9d, 0x19, 0x77, 0x21, 0x62, 0x20, 0xae,
- 0xf5, 0x65, 0x13, 0x96, 0x6f, 0xe1, 0xcf, 0xd5, 0xe1, 0x73, 0xfa, 0x9e, 0x54, 0xd8, 0xf7, 0xfc,
- 0x34, 0x0d, 0xab, 0xf4, 0x82, 0xbd, 0x4f, 0xba, 0xee, 0xc3, 0x4d, 0x98, 0x3b, 0x3b, 0xe1, 0x3a,
- 0x88, 0xb6, 0x3e, 0xc0, 0x9a, 0x6b, 0xbc, 0xc7, 0x99, 0x1c, 0x50, 0x30, 0x4f, 0xa5, 0x2d, 0xe3,
- 0x3d, 0xde, 0xae, 0x51, 0x0d, 0x8f, 0x9c, 0xe0, 0x98, 0xcf, 0x82, 0xca, 0x0c, 0xdb, 0x54, 0x7a,
- 0xe6, 0xfe, 0x10, 0x5b, 0xae, 0x89, 0xfb, 0x03, 0x81, 0x35, 0x1a, 0x1e, 0xef, 0xd1, 0x87, 0xba,
- 0xd7, 0x3b, 0xc2, 0x0e, 0x3b, 0x34, 0x57, 0x36, 0x5f, 0x9b, 0x75, 0x27, 0x9a, 0x8c, 0x3c, 0xe4,
- 0x2c, 0xbe, 0xc3, 0x51, 0x82, 0xab, 0xfe, 0xf1, 0xa4, 0x94, 0xc6, 0x7e, 0x68, 0x98, 0x1e, 0x76,
- 0xd8, 0x59, 0x18, 0xb8, 0x14, 0x88, 0xe4, 0x6b, 0xb0, 0x3a, 0x85, 0x12, 0xfe, 0x75, 0x70, 0x81,
- 0xf6, 0x47, 0xd5, 0xed, 0x76, 0xed, 0xae, 0x12, 0xf4, 0x5f, 0x07, 0x0d, 0x2d, 0xf8, 0x7f, 0x4a,
- 0xfe, 0xb7, 0x00, 0x52, 0xc7, 0xee, 0xeb, 0x1e, 0x7e, 0xe8, 0xd4, 0xa7, 0x3e, 0x2b, 0xf5, 0xe9,
- 0xe9, 0xd4, 0x87, 0x3c, 0xce, 0x3c, 0x04, 0x8f, 0x6f, 0x42, 0xc1, 0x67, 0xbe, 0xb2, 0x3f, 0x1f,
- 0x07, 0x1d, 0xca, 0xd9, 0x9d, 0xb9, 0x6b, 0x60, 0xb3, 0x7f, 0x47, 0x77, 0x4f, 0xb8, 0x29, 0x70,
- 0x1b, 0x2a, 0x90, 0x7f, 0x04, 0xd2, 0x78, 0xf1, 0x5d, 0x9b, 0x58, 0x2e, 0x46, 0x37, 0x20, 0x73,
- 0x4c, 0xba, 0xfc, 0x61, 0x3c, 0xb1, 0x47, 0x69, 0x95, 0x19, 0xa1, 0x67, 0x61, 0xd5, 0xc2, 0xef,
- 0x7a, 0x5a, 0x8c, 0x56, 0xb1, 0x2e, 0x7f, 0x99, 0x8e, 0x35, 0x43, 0x6a, 0xc9, 0x04, 0xa4, 0x6d,
- 0xdd, 0xea, 0x61, 0xf3, 0x7f, 0xb5, 0xcd, 0x08, 0x48, 0x3b, 0xd8, 0xc4, 0x17, 0x48, 0xee, 0x7c,
- 0x13, 0x6e, 0x7e, 0x5a, 0x60, 0x67, 0x44, 0x70, 0x80, 0x9a, 0xd8, 0x41, 0xbf, 0x17, 0x40, 0x8c,
- 0x8a, 0x21, 0xaa, 0xcc, 0xea, 0x95, 0xa6, 0xca, 0x66, 0x29, 0x41, 0x3a, 0xe4, 0x77, 0x3e, 0xa9,
- 0x5e, 0x19, 0x87, 0xf4, 0xdc, 0x3a, 0xf7, 0xf3, 0xb9, 0xf5, 0x63, 0xd2, 0xfd, 0xc9, 0x1f, 0xff,
- 0xfe, 0xab, 0xd4, 0x4d, 0xf9, 0x46, 0xf4, 0x93, 0x8a, 0x40, 0xcf, 0xad, 0xbc, 0x3f, 0xb6, 0xf8,
- 0xa0, 0xc2, 0x2d, 0xdc, 0xca, 0xfb, 0xfc, 0xe3, 0x03, 0xf6, 0xcb, 0x8b, 0xeb, 0xbc, 0x05, 0xb9,
- 0x2e, 0x5c, 0x45, 0xff, 0x12, 0xe0, 0x52, 0xe4, 0x5a, 0xd5, 0x3d, 0x08, 0x8f, 0x8b, 0xf9, 0xe3,
- 0x79, 0x32, 0x34, 0x88, 0xfd, 0xa2, 0xa2, 0x1c, 0xe1, 0xc9, 0x3f, 0x16, 0x3e, 0xaa, 0x22, 0x7e,
- 0x83, 0x89, 0x9f, 0x90, 0x33, 0x02, 0xbc, 0x2d, 0xef, 0x5e, 0x20, 0xc0, 0x58, 0x3c, 0x34, 0xd6,
- 0xdf, 0x09, 0x90, 0xe3, 0x27, 0x01, 0x9a, 0xd5, 0x96, 0x4c, 0x1c, 0x18, 0x89, 0x52, 0xd5, 0xfd,
- 0xa4, 0x5a, 0x7a, 0x40, 0x24, 0x9a, 0xd1, 0x67, 0xc1, 0xbc, 0x8e, 0x5e, 0x7d, 0x98, 0x60, 0x2a,
- 0xef, 0x73, 0x8c, 0x0f, 0xd0, 0x9f, 0x05, 0xc8, 0x87, 0x9b, 0x1c, 0x95, 0xe7, 0x2b, 0xc5, 0xa5,
- 0x4a, 0x62, 0x7d, 0x5e, 0x3d, 0x64, 0xeb, 0x93, 0x2a, 0x3a, 0x1b, 0xd1, 0x03, 0xc2, 0xe4, 0xc5,
- 0x9a, 0x85, 0x79, 0x0d, 0xbd, 0xf4, 0x30, 0x61, 0xa2, 0xdf, 0x08, 0x20, 0x46, 0x05, 0x7b, 0x26,
- 0xff, 0xa6, 0x4b, 0x7b, 0xa2, 0x24, 0xed, 0x33, 0x07, 0x77, 0x36, 0x2f, 0x96, 0x87, 0xeb, 0xac,
- 0x64, 0x7f, 0x2c, 0x80, 0x18, 0xd5, 0xbc, 0x99, 0xee, 0x4e, 0x57, 0xc7, 0x44, 0xee, 0x9a, 0xb3,
- 0x39, 0x55, 0x93, 0x77, 0x2e, 0x16, 0x4b, 0x8f, 0x39, 0x46, 0xb7, 0xc7, 0x6f, 0x05, 0x10, 0xa3,
- 0x9a, 0x3a, 0x33, 0xa0, 0xe9, 0xea, 0x5b, 0x7a, 0xfc, 0xcc, 0x69, 0xa5, 0x0c, 0x6d, 0x6f, 0x94,
- 0x68, 0x63, 0x5c, 0xbd, 0x58, 0x42, 0x4a, 0xb7, 0x3f, 0xaa, 0x5e, 0x89, 0x3c, 0xe4, 0x6e, 0xe8,
- 0xb6, 0xe1, 0x96, 0x7b, 0x64, 0xf8, 0x87, 0x6a, 0xf9, 0xc8, 0xf3, 0x6c, 0xf7, 0x7a, 0xa5, 0x72,
- 0xff, 0xfe, 0xfd, 0xa9, 0xc1, 0x8a, 0xee, 0x7b, 0x47, 0xfc, 0x37, 0x6a, 0xcf, 0xdb, 0xa6, 0xee,
- 0x1d, 0x12, 0x67, 0xb8, 0x75, 0x1f, 0xbe, 0xd6, 0x23, 0xc3, 0xcf, 0x0e, 0x7f, 0x4b, 0xa4, 0x5b,
- 0xa5, 0x49, 0x23, 0x6d, 0x0a, 0x6f, 0x29, 0x81, 0xee, 0x80, 0x98, 0xba, 0x35, 0x28, 0x13, 0x67,
- 0x50, 0x19, 0x60, 0x8b, 0xad, 0x43, 0x65, 0x3c, 0xe1, 0x03, 0x7e, 0x0b, 0x77, 0x23, 0x14, 0x74,
- 0x73, 0xcc, 0xe2, 0xc5, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x54, 0x7e, 0x03, 0xf0, 0x3c, 0x27,
- 0x00, 0x00,
+ 0xf5, 0xcf, 0x68, 0x24, 0x59, 0xf3, 0xe4, 0x1f, 0xe3, 0xce, 0x6e, 0x56, 0xa5, 0x7c, 0xf3, 0x8d,
+ 0x19, 0x20, 0x31, 0x9b, 0x44, 0xaa, 0x38, 0x61, 0x49, 0x76, 0xc9, 0x0f, 0xd9, 0x1e, 0xaf, 0xe5,
+ 0xd5, 0xca, 0xda, 0x91, 0xb4, 0x81, 0x00, 0x99, 0x8c, 0xa4, 0xb6, 0x3c, 0xf6, 0x68, 0x7a, 0x76,
+ 0x66, 0xe4, 0x8d, 0x12, 0x52, 0x45, 0x71, 0x08, 0x05, 0x47, 0xf8, 0x2b, 0xa8, 0xe2, 0x94, 0x13,
+ 0x27, 0x0e, 0x1c, 0x73, 0xc8, 0x01, 0x6e, 0x81, 0x03, 0x55, 0x90, 0x0a, 0x54, 0x71, 0xe6, 0x4c,
+ 0x75, 0xf7, 0xcc, 0x68, 0x24, 0x7b, 0xa3, 0x91, 0x9d, 0x22, 0xc9, 0x9e, 0x2c, 0xbf, 0x7e, 0xef,
+ 0xd3, 0xef, 0xf5, 0xfb, 0xf4, 0xeb, 0xd7, 0x2d, 0xc1, 0x7a, 0x9f, 0x90, 0xbe, 0x85, 0xcb, 0x5d,
+ 0x8b, 0x0c, 0x7b, 0xe5, 0x9e, 0xe1, 0x1b, 0x8e, 0x4b, 0xba, 0xe5, 0x93, 0xe7, 0x3b, 0xd8, 0x37,
+ 0x36, 0xca, 0x47, 0xa4, 0xe3, 0x95, 0x1c, 0x97, 0xf8, 0x04, 0x3d, 0xc1, 0x35, 0x4b, 0x4c, 0xb3,
+ 0x14, 0x6a, 0x96, 0x02, 0xcd, 0xe2, 0xff, 0x05, 0x40, 0x86, 0x63, 0x96, 0x0d, 0xdb, 0x26, 0xbe,
+ 0xe1, 0x9b, 0xc4, 0x0e, 0x8c, 0x8b, 0x57, 0x62, 0xa3, 0x5d, 0xcb, 0xc4, 0xb6, 0x1f, 0x0c, 0x3c,
+ 0x19, 0x1b, 0x38, 0x30, 0xb1, 0xd5, 0xd3, 0x3b, 0xf8, 0xd0, 0x38, 0x31, 0x89, 0x1b, 0x28, 0x7c,
+ 0x33, 0x50, 0xb0, 0x88, 0xdd, 0x77, 0x87, 0xb6, 0x6d, 0xda, 0xfd, 0x32, 0x71, 0xb0, 0x3b, 0x01,
+ 0xff, 0x78, 0xa0, 0xc4, 0xfe, 0xeb, 0x0c, 0x0f, 0xca, 0x78, 0xe0, 0xf8, 0xa3, 0x60, 0x70, 0x6d,
+ 0x7a, 0x90, 0xcf, 0x33, 0x30, 0xbc, 0xe3, 0x29, 0x27, 0x22, 0x0d, 0xdf, 0x1c, 0x60, 0xcf, 0x37,
+ 0x06, 0x0e, 0x57, 0x50, 0xfe, 0x99, 0x82, 0xa5, 0x1a, 0xe9, 0xf7, 0x4d, 0xbb, 0xbf, 0x45, 0xec,
+ 0x03, 0xb3, 0x8f, 0x06, 0xb0, 0xda, 0x73, 0xcd, 0x13, 0xec, 0xea, 0x16, 0xe9, 0xeb, 0x16, 0x3e,
+ 0xc1, 0x96, 0x57, 0x48, 0xad, 0x89, 0xeb, 0xf9, 0x8d, 0x4a, 0xe9, 0x73, 0x57, 0xaa, 0x34, 0x01,
+ 0x54, 0xda, 0x66, 0x28, 0x35, 0xd2, 0xaf, 0x31, 0x0c, 0xd5, 0xf6, 0xdd, 0x91, 0xb6, 0xd2, 0x9b,
+ 0x94, 0x16, 0x4f, 0xe0, 0xd2, 0x59, 0x8a, 0x48, 0x06, 0xf1, 0x18, 0x8f, 0x0a, 0xc2, 0x9a, 0xb0,
+ 0x2e, 0x69, 0xf4, 0x23, 0xda, 0x85, 0xcc, 0x89, 0x61, 0x0d, 0x71, 0x21, 0xb5, 0x26, 0xac, 0x2f,
+ 0x6f, 0x6c, 0xcc, 0xe5, 0x0c, 0x83, 0xd6, 0x38, 0xc0, 0xf5, 0xd4, 0x4b, 0x82, 0xe2, 0x40, 0x86,
+ 0xc9, 0xd0, 0x65, 0x58, 0xad, 0xa9, 0x77, 0xd5, 0x9a, 0xde, 0xae, 0x37, 0x1b, 0xea, 0x56, 0x75,
+ 0xa7, 0xaa, 0x6e, 0xcb, 0x8f, 0xa0, 0x05, 0x10, 0x2b, 0xb5, 0x9a, 0x2c, 0x20, 0x09, 0x32, 0x2d,
+ 0xad, 0xb2, 0xa5, 0xca, 0x29, 0xfa, 0x71, 0x5b, 0xdd, 0x6c, 0xdf, 0x94, 0x45, 0x94, 0x83, 0x74,
+ 0xb5, 0xbe, 0xb3, 0x2f, 0xa7, 0xe9, 0xa7, 0x37, 0x2a, 0x5a, 0x5d, 0xce, 0xd0, 0x61, 0x55, 0xd3,
+ 0xf6, 0x35, 0x39, 0x4b, 0x3f, 0xee, 0x54, 0x5a, 0x95, 0x9a, 0xbc, 0x40, 0x81, 0xf6, 0x77, 0x76,
+ 0xe4, 0x9c, 0xf2, 0x99, 0x08, 0xd2, 0xae, 0xd1, 0x23, 0xc4, 0xd9, 0x23, 0x1d, 0xf4, 0x0c, 0xac,
+ 0x0e, 0x0c, 0xd3, 0xd6, 0x8f, 0x0c, 0x57, 0x3f, 0x30, 0x2d, 0xac, 0x0f, 0x5d, 0x93, 0x47, 0xbb,
+ 0xfb, 0x88, 0xb6, 0x4c, 0x87, 0xf6, 0x0c, 0x77, 0xc7, 0xb4, 0x70, 0xdb, 0x35, 0xd1, 0x93, 0x00,
+ 0x4c, 0xb9, 0x6b, 0x19, 0x9e, 0xc7, 0xe2, 0xa7, 0x5a, 0x12, 0x95, 0x6d, 0x51, 0x11, 0xba, 0x02,
+ 0x69, 0xc3, 0xed, 0x7b, 0x05, 0x71, 0x4d, 0x5c, 0x97, 0x36, 0xc5, 0xbf, 0x55, 0x04, 0x8d, 0x09,
+ 0xd0, 0xd3, 0xb0, 0x14, 0x9f, 0xc1, 0x2b, 0xa4, 0xc7, 0x1a, 0xf9, 0xa3, 0x68, 0x06, 0x0f, 0xad,
+ 0x81, 0x34, 0x56, 0xca, 0x8c, 0x95, 0x72, 0x07, 0xa1, 0xc6, 0x53, 0xb0, 0x68, 0xb8, 0xdd, 0x43,
+ 0xf3, 0x24, 0x50, 0xca, 0xc6, 0x90, 0x82, 0x01, 0xa6, 0xf7, 0x13, 0x00, 0xc7, 0xa5, 0x44, 0xf6,
+ 0x4d, 0xec, 0x15, 0x16, 0x18, 0x73, 0x5e, 0x9a, 0x91, 0xac, 0x68, 0x5d, 0x4a, 0x8d, 0xc8, 0x94,
+ 0xf1, 0x80, 0xe3, 0xc7, 0x00, 0xd1, 0x0f, 0x60, 0xd9, 0xe2, 0xa9, 0xd5, 0xbb, 0x2c, 0xb7, 0x85,
+ 0xdc, 0x9a, 0xb0, 0x9e, 0xdf, 0x78, 0x76, 0x1e, 0x3e, 0x70, 0xd8, 0x25, 0x2b, 0x2e, 0x2b, 0xbe,
+ 0x02, 0x2b, 0x53, 0xb3, 0x9f, 0xc1, 0xc2, 0x4b, 0x71, 0x16, 0x4a, 0x31, 0x46, 0x6d, 0xe6, 0x20,
+ 0xcb, 0xc9, 0xad, 0x7c, 0x2a, 0x42, 0xae, 0xe9, 0x18, 0xee, 0xf1, 0xc3, 0x9d, 0xe8, 0x1f, 0x9f,
+ 0x91, 0xe8, 0xef, 0xcd, 0xc8, 0x42, 0xb8, 0x2c, 0x0f, 0x45, 0x9e, 0xff, 0x23, 0x02, 0x34, 0x46,
+ 0x51, 0xa6, 0x5f, 0x84, 0x4b, 0x2c, 0x79, 0xce, 0xc8, 0x3f, 0x24, 0xf6, 0x54, 0xb2, 0xa9, 0x27,
+ 0x29, 0x8d, 0x51, 0xa1, 0xc1, 0xc6, 0xc3, 0x94, 0x87, 0x19, 0x4d, 0x4d, 0x67, 0xf4, 0x39, 0x90,
+ 0xa7, 0x90, 0x26, 0xd2, 0xbe, 0xec, 0xc4, 0x61, 0xbe, 0x14, 0x02, 0xbc, 0x75, 0x06, 0x01, 0x5e,
+ 0x9e, 0x91, 0x9e, 0xf1, 0x7a, 0x7d, 0x7d, 0x29, 0xa0, 0x5c, 0x05, 0xe9, 0xce, 0x10, 0xbb, 0xa3,
+ 0x9a, 0xe9, 0xf9, 0xe8, 0x09, 0x58, 0xb8, 0x37, 0xc4, 0x2e, 0x5d, 0x02, 0x21, 0x5c, 0xa8, 0x94,
+ 0x16, 0xca, 0x94, 0x0f, 0xd3, 0xb0, 0xb0, 0x6b, 0x9e, 0x60, 0xca, 0x90, 0xa7, 0x60, 0x99, 0x8a,
+ 0x47, 0xa7, 0x0b, 0xc1, 0x22, 0x93, 0x87, 0x9c, 0xa8, 0x02, 0x70, 0x3d, 0xcb, 0xf4, 0x7c, 0x36,
+ 0x7d, 0x7e, 0x63, 0x7d, 0x46, 0xd0, 0x91, 0x43, 0xb4, 0x60, 0xdc, 0x8b, 0xbc, 0x7b, 0x01, 0x1e,
+ 0xed, 0x12, 0xdb, 0x37, 0xed, 0x21, 0xd6, 0x29, 0x95, 0x0c, 0xd3, 0x1a, 0xba, 0xb8, 0x20, 0xae,
+ 0x09, 0xeb, 0x39, 0xbe, 0x34, 0xab, 0xe1, 0xf8, 0xbe, 0xbd, 0xc3, 0x47, 0xd1, 0x31, 0xc8, 0x5e,
+ 0xd7, 0x35, 0x1d, 0x5f, 0x3f, 0x31, 0x5c, 0xd3, 0xe8, 0x58, 0x98, 0xd3, 0x29, 0xbf, 0x71, 0x63,
+ 0x56, 0x21, 0xe7, 0x91, 0x96, 0x9a, 0xcc, 0xfc, 0x6e, 0x68, 0x1d, 0x4b, 0xf0, 0x8a, 0x37, 0x39,
+ 0x84, 0x7e, 0x34, 0xc1, 0xa2, 0x0c, 0x9b, 0xe6, 0x5a, 0xc2, 0x69, 0x66, 0x52, 0xe8, 0xd4, 0xae,
+ 0xc8, 0x9e, 0xbd, 0x2b, 0x8a, 0x9b, 0x70, 0xe9, 0x2c, 0x9f, 0xe7, 0xa1, 0xc5, 0x45, 0x0b, 0x8b,
+ 0x14, 0x11, 0x49, 0xf9, 0x7b, 0x1a, 0xf2, 0x6c, 0x9f, 0x34, 0xef, 0x59, 0x5f, 0x12, 0x71, 0xc8,
+ 0x19, 0x1c, 0x10, 0x59, 0x72, 0x5e, 0x4b, 0x52, 0xe3, 0xb9, 0xe3, 0xf3, 0xf0, 0x40, 0x9f, 0xe0,
+ 0x01, 0xa7, 0xdb, 0xf5, 0x39, 0xa6, 0x9a, 0x9f, 0x0b, 0x2f, 0x3d, 0xa0, 0x42, 0x9e, 0xae, 0x3b,
+ 0xd9, 0x2f, 0xa8, 0xee, 0x7c, 0xb5, 0x58, 0xf6, 0xcb, 0x0c, 0x64, 0x1b, 0x66, 0xff, 0xeb, 0x54,
+ 0x99, 0x8e, 0x1e, 0x58, 0x99, 0x66, 0x51, 0x85, 0x07, 0x3a, 0x0f, 0x21, 0xdf, 0x3c, 0xa3, 0x30,
+ 0x7d, 0x37, 0xd9, 0x2c, 0x5f, 0x58, 0x5d, 0x3a, 0x83, 0x8b, 0x0b, 0x0f, 0x25, 0x17, 0x7f, 0x2d,
+ 0x82, 0xc4, 0x76, 0xb3, 0x46, 0xe9, 0x78, 0x15, 0x56, 0x58, 0x2b, 0xe5, 0x9e, 0xd9, 0x45, 0x2d,
+ 0xd2, 0x31, 0x6d, 0x66, 0x03, 0x35, 0xd1, 0xe8, 0x88, 0x49, 0x1a, 0x9d, 0x74, 0xa2, 0x2b, 0x4d,
+ 0x26, 0xd1, 0x95, 0x26, 0x0a, 0xe6, 0x3c, 0x7d, 0x4e, 0xf6, 0xab, 0xd1, 0xe7, 0x7c, 0x90, 0x06,
+ 0xa9, 0xe1, 0x62, 0xcf, 0x27, 0x5f, 0xa7, 0x1a, 0xb1, 0x0e, 0x4b, 0x64, 0xe8, 0x3b, 0x43, 0x5f,
+ 0x3f, 0x20, 0xee, 0xc0, 0xf0, 0x0b, 0xe9, 0x90, 0x3a, 0x82, 0xb6, 0xc8, 0x47, 0x76, 0xd8, 0x00,
+ 0xfa, 0x16, 0xe4, 0xf9, 0x9b, 0x8d, 0xee, 0x1b, 0xfd, 0x89, 0x66, 0x18, 0xb8, 0xbc, 0x65, 0xf4,
+ 0xa7, 0xb3, 0x9f, 0x4d, 0x94, 0xfd, 0x68, 0xd5, 0xce, 0x93, 0xfd, 0x85, 0xaf, 0xc6, 0x45, 0x27,
+ 0xb6, 0x3b, 0xdf, 0x82, 0xc5, 0x3d, 0xd2, 0x69, 0x58, 0x46, 0x17, 0x0f, 0xb0, 0xed, 0xd3, 0x8d,
+ 0xd3, 0xb5, 0x86, 0x9e, 0x8f, 0x5d, 0xdd, 0x36, 0x06, 0x38, 0xbe, 0x39, 0xf3, 0xc1, 0x40, 0xdd,
+ 0x18, 0xe0, 0xb8, 0xde, 0x70, 0x68, 0xf6, 0xf8, 0x1c, 0x54, 0x4f, 0x8c, 0xf4, 0xda, 0x43, 0xb3,
+ 0xa7, 0xfc, 0x2a, 0x0d, 0xd2, 0x1e, 0xe9, 0x34, 0x7d, 0xc3, 0x1f, 0x7a, 0xa8, 0x0a, 0x19, 0xcf,
+ 0x37, 0x7c, 0x0e, 0xbb, 0xbc, 0x51, 0x9a, 0xb1, 0x10, 0x91, 0x61, 0x89, 0xfe, 0xc1, 0x1c, 0x9e,
+ 0x23, 0xd0, 0xe6, 0xbc, 0x87, 0x7d, 0xc3, 0xb4, 0xbc, 0xf8, 0xdc, 0xa1, 0x0c, 0x55, 0x41, 0x66,
+ 0x7a, 0xba, 0xe7, 0x1b, 0xae, 0xaf, 0xfb, 0xe6, 0x00, 0x07, 0x7b, 0xaf, 0x18, 0x4e, 0x1a, 0x3e,
+ 0x9d, 0x95, 0x5a, 0xe1, 0xd3, 0x19, 0xc7, 0x58, 0x66, 0x86, 0x4d, 0x6a, 0x47, 0x47, 0x90, 0x06,
+ 0x39, 0x6f, 0xd8, 0xe1, 0x7e, 0x2f, 0x30, 0xbf, 0x9f, 0x4f, 0xee, 0x77, 0x60, 0xc8, 0x91, 0x23,
+ 0x1c, 0xe5, 0xb7, 0x02, 0x64, 0x58, 0x4c, 0xe8, 0x32, 0xac, 0x36, 0x5b, 0x95, 0x96, 0x3a, 0xf5,
+ 0x4a, 0x95, 0x87, 0x85, 0x86, 0x5a, 0xdf, 0xae, 0xd6, 0x6f, 0xca, 0x02, 0x5a, 0x06, 0x68, 0xaa,
+ 0xad, 0x76, 0x43, 0xdf, 0xde, 0xaf, 0xab, 0x72, 0x8e, 0x0e, 0x6a, 0xed, 0x7a, 0x9d, 0x0e, 0xa6,
+ 0x10, 0x82, 0xe5, 0xad, 0x4a, 0x7d, 0x4b, 0xad, 0xe9, 0xa1, 0x81, 0x18, 0x93, 0x35, 0x5b, 0x15,
+ 0xad, 0xa5, 0x6e, 0xcb, 0x0b, 0x68, 0x09, 0x24, 0x2e, 0xab, 0xa9, 0xdb, 0xfc, 0x75, 0x8b, 0xa1,
+ 0x4d, 0xbc, 0x6e, 0x3d, 0x0a, 0x2b, 0x95, 0x56, 0x4b, 0xbd, 0xdd, 0x68, 0xe9, 0x3b, 0x95, 0x6a,
+ 0xad, 0xad, 0xa9, 0xb2, 0xa4, 0xec, 0x42, 0x2e, 0x0c, 0x03, 0xad, 0x40, 0x7e, 0xd2, 0xcf, 0x25,
+ 0x90, 0x9a, 0xed, 0xcd, 0xdb, 0xd5, 0x16, 0x9d, 0x44, 0x40, 0x00, 0xd9, 0x3b, 0x6d, 0xb5, 0xad,
+ 0x6e, 0xcb, 0x29, 0x24, 0xc3, 0x62, 0xb3, 0x55, 0xa9, 0xa9, 0xd4, 0x87, 0x56, 0xbb, 0x29, 0x8b,
+ 0x4a, 0x9d, 0x91, 0x4d, 0xc3, 0x07, 0xd8, 0xc5, 0x76, 0x17, 0x23, 0x85, 0xed, 0xbf, 0x23, 0xdc,
+ 0xf5, 0x75, 0xb3, 0x17, 0xa7, 0x9a, 0x14, 0x88, 0xab, 0x3d, 0x54, 0x84, 0xec, 0x11, 0xe9, 0xe8,
+ 0x71, 0x8a, 0x09, 0x5a, 0xe6, 0x88, 0x74, 0xaa, 0x3d, 0xe5, 0xe3, 0x14, 0xac, 0xfc, 0xd0, 0x70,
+ 0xed, 0x8a, 0xe3, 0x58, 0x66, 0x97, 0x3d, 0xaf, 0xd2, 0x43, 0x63, 0x92, 0xb8, 0xa2, 0xc6, 0x04,
+ 0x68, 0x3f, 0xe4, 0x1e, 0x7f, 0x65, 0x7c, 0x71, 0x46, 0x0e, 0xa7, 0x70, 0xcf, 0x60, 0xe0, 0x93,
+ 0x90, 0x73, 0x5c, 0xd2, 0x77, 0xb1, 0xe7, 0xb1, 0xba, 0x95, 0x0a, 0x92, 0x1c, 0x0a, 0xe9, 0x1e,
+ 0xf1, 0x5d, 0xa3, 0x7b, 0x4c, 0x0b, 0xc0, 0xd0, 0xb5, 0xc6, 0xd5, 0x4a, 0xd4, 0xf2, 0xe1, 0x40,
+ 0xdb, 0xb5, 0x94, 0x5f, 0xcc, 0x22, 0xc3, 0x02, 0x88, 0x75, 0xf5, 0x0d, 0x4e, 0x84, 0xba, 0xfa,
+ 0x86, 0xde, 0xac, 0xdc, 0xe5, 0xb9, 0x9f, 0x58, 0x7d, 0x11, 0x2d, 0x42, 0xae, 0xb2, 0xb5, 0xa5,
+ 0x36, 0x5a, 0x2c, 0xc3, 0x31, 0x96, 0x64, 0xe8, 0xd0, 0x4e, 0xb5, 0x5e, 0x6d, 0xee, 0xaa, 0xdb,
+ 0x72, 0x96, 0xa6, 0x89, 0xe6, 0x97, 0xf1, 0x02, 0x20, 0x7b, 0xab, 0xca, 0x48, 0x91, 0x53, 0x3e,
+ 0xcd, 0x83, 0x48, 0x0f, 0x84, 0x3a, 0x48, 0x6e, 0x98, 0x25, 0xb6, 0x92, 0xf9, 0x8d, 0x67, 0x66,
+ 0x73, 0x3e, 0x4a, 0x2c, 0x4f, 0xd2, 0x18, 0x82, 0xe2, 0x39, 0x61, 0x89, 0x09, 0xce, 0x8d, 0x04,
+ 0x78, 0x51, 0x55, 0x0a, 0x49, 0x11, 0x55, 0xa9, 0x3a, 0xc0, 0x21, 0x7b, 0x58, 0xd4, 0x8f, 0x48,
+ 0x87, 0x2d, 0xfe, 0xec, 0x83, 0x28, 0x7a, 0x89, 0x64, 0xde, 0xd1, 0xd3, 0xe8, 0x30, 0x7a, 0xb3,
+ 0xbd, 0x05, 0x92, 0x47, 0x4f, 0x75, 0x06, 0x97, 0x66, 0x70, 0x4f, 0x27, 0x7c, 0xef, 0x0a, 0xd1,
+ 0x72, 0x5e, 0xf8, 0x5a, 0x74, 0x07, 0xf2, 0xce, 0x68, 0x0c, 0x97, 0x61, 0x70, 0xdf, 0x49, 0xfc,
+ 0x7a, 0x12, 0x02, 0x42, 0x00, 0x42, 0x21, 0x77, 0x21, 0xc7, 0x7a, 0x19, 0x8a, 0xc7, 0xab, 0xd8,
+ 0x53, 0xc9, 0xee, 0xd1, 0x21, 0xd8, 0xc2, 0x61, 0xf0, 0x50, 0xa1, 0xc2, 0x82, 0x63, 0xf6, 0x19,
+ 0x10, 0x3f, 0x8c, 0xbe, 0x9d, 0xa8, 0xef, 0x0d, 0x71, 0xb2, 0x0e, 0xbf, 0x55, 0xec, 0x43, 0x9e,
+ 0x47, 0xe8, 0x32, 0xa8, 0xcb, 0x89, 0x32, 0x10, 0x35, 0x4e, 0x51, 0x06, 0xbc, 0xa8, 0x2f, 0x6c,
+ 0xc3, 0x12, 0x07, 0xf4, 0xee, 0x59, 0x0c, 0x72, 0x91, 0x41, 0x5e, 0x4d, 0x7e, 0x4d, 0x0c, 0x41,
+ 0xb9, 0x63, 0xc1, 0xf5, 0xba, 0x4e, 0x2b, 0x0c, 0x3d, 0xb0, 0x19, 0xe6, 0x95, 0x44, 0x6e, 0x46,
+ 0x27, 0x7c, 0xe4, 0xa6, 0x13, 0x75, 0x4a, 0x2a, 0x64, 0x3d, 0x56, 0xd9, 0x83, 0x07, 0xab, 0xf5,
+ 0xa4, 0x27, 0x01, 0xdf, 0xf6, 0x81, 0x31, 0x6a, 0xc1, 0x32, 0xff, 0xa4, 0x1f, 0x9a, 0x9e, 0x4f,
+ 0xdc, 0x51, 0x61, 0x89, 0x35, 0x1f, 0x73, 0xc2, 0x2d, 0x71, 0x90, 0x5d, 0x8e, 0x81, 0xde, 0x86,
+ 0xd5, 0x91, 0xe1, 0xda, 0xba, 0x31, 0x2e, 0x5b, 0x5e, 0x41, 0x62, 0xc0, 0xa5, 0xf9, 0xaa, 0x1d,
+ 0x87, 0x97, 0x47, 0x93, 0x52, 0x56, 0xd1, 0xbc, 0x61, 0x67, 0x60, 0xfa, 0x3e, 0xee, 0xe9, 0x9d,
+ 0x51, 0x01, 0x62, 0x15, 0x2d, 0x1a, 0xd8, 0x1c, 0xa1, 0xd7, 0xa1, 0x18, 0x7c, 0xd5, 0x14, 0xf4,
+ 0x6b, 0x2e, 0xf6, 0xc8, 0xd0, 0xed, 0xf2, 0xe6, 0x72, 0x75, 0x6c, 0x75, 0x85, 0xab, 0xed, 0x33,
+ 0x2d, 0x2d, 0x50, 0xa2, 0xad, 0xe6, 0xf7, 0xa1, 0x10, 0x20, 0xd0, 0x36, 0xd0, 0x25, 0x16, 0xeb,
+ 0x4d, 0x3d, 0x66, 0xbf, 0x32, 0xb6, 0xbf, 0xcc, 0x95, 0xb6, 0xb8, 0x0e, 0xed, 0x53, 0x3d, 0x6a,
+ 0x7d, 0x0b, 0xb2, 0x96, 0xd1, 0xc1, 0x96, 0x57, 0x40, 0x89, 0xc2, 0xa7, 0xed, 0x5c, 0x8d, 0x19,
+ 0xc4, 0x5a, 0xb9, 0x00, 0x02, 0xdd, 0x01, 0xf0, 0xba, 0x87, 0xb8, 0x37, 0xb4, 0x4c, 0xbb, 0x5f,
+ 0xb8, 0x94, 0xa8, 0x85, 0xa3, 0x89, 0x8a, 0x6c, 0x82, 0xce, 0x70, 0x0c, 0x82, 0xfe, 0x1f, 0x72,
+ 0xf4, 0x50, 0x63, 0x9d, 0xd3, 0x63, 0xb1, 0xee, 0xe5, 0x88, 0x74, 0x68, 0xd7, 0x44, 0x0f, 0xb1,
+ 0x1e, 0xb1, 0x71, 0xa1, 0x10, 0xb6, 0xc3, 0xa2, 0xc6, 0x04, 0xc5, 0x97, 0x21, 0x1f, 0xf3, 0x73,
+ 0xae, 0xa6, 0x0f, 0x20, 0xe7, 0x8f, 0x1c, 0x56, 0x43, 0x94, 0x9b, 0xb0, 0x34, 0xe1, 0x21, 0xba,
+ 0x06, 0x97, 0x07, 0xc6, 0x3b, 0x61, 0x1b, 0xee, 0xe9, 0x0e, 0x76, 0xf5, 0x43, 0x32, 0x74, 0x19,
+ 0x74, 0x86, 0x07, 0x80, 0x06, 0xc6, 0x3b, 0x41, 0x27, 0xee, 0x35, 0xb0, 0xbb, 0x4b, 0x86, 0xae,
+ 0xf2, 0x57, 0x01, 0xf2, 0x7b, 0xa4, 0x73, 0x1b, 0xfb, 0x06, 0x5d, 0x83, 0xd8, 0x69, 0x1d, 0x3b,
+ 0x7f, 0xf9, 0x69, 0x1d, 0xdb, 0x3b, 0xa9, 0x8b, 0xec, 0x9d, 0xab, 0xb0, 0x1c, 0x7d, 0x99, 0xaa,
+ 0xd3, 0x88, 0x58, 0xfd, 0x0f, 0xa6, 0x5a, 0x8a, 0x86, 0x5a, 0x23, 0x07, 0xa3, 0x57, 0x01, 0x62,
+ 0xfd, 0x5f, 0x3a, 0x59, 0xff, 0x27, 0x79, 0x61, 0xeb, 0xa7, 0x7c, 0x28, 0x80, 0xdc, 0x64, 0xbc,
+ 0x66, 0xc7, 0xdb, 0xbd, 0x21, 0xf6, 0xfc, 0x44, 0x5d, 0xcb, 0xe3, 0x90, 0x75, 0x71, 0xdf, 0x24,
+ 0xf6, 0xd8, 0xb9, 0x94, 0x16, 0x88, 0xd0, 0xcb, 0x20, 0xd2, 0x6a, 0xc4, 0x57, 0x41, 0x99, 0xbd,
+ 0x0a, 0xdc, 0x9a, 0xda, 0xd0, 0xb9, 0x5d, 0xee, 0x06, 0x9d, 0x3b, 0x76, 0xfd, 0x91, 0x02, 0x71,
+ 0xb5, 0xa7, 0x58, 0xb0, 0x74, 0x13, 0x7f, 0xa1, 0x0e, 0x9f, 0xd1, 0x83, 0xa5, 0xc2, 0x1e, 0xec,
+ 0x03, 0x11, 0x56, 0xe8, 0x8d, 0x6e, 0x8f, 0x74, 0xbc, 0xf3, 0x4d, 0x98, 0x3d, 0x3d, 0xe1, 0x1a,
+ 0x48, 0x8e, 0xd1, 0xc7, 0xba, 0x67, 0xbe, 0xcb, 0x99, 0x1c, 0x50, 0x30, 0x47, 0xa5, 0x4d, 0xf3,
+ 0x5d, 0xde, 0x3a, 0x52, 0x0d, 0x9f, 0x1c, 0xe3, 0x98, 0xcf, 0x82, 0xc6, 0x0c, 0x5b, 0x54, 0x7a,
+ 0xea, 0x2e, 0x13, 0x5b, 0xae, 0x89, 0xbb, 0x0c, 0x81, 0x55, 0x1a, 0x1e, 0xbf, 0x2f, 0x0c, 0x0c,
+ 0xbf, 0x7b, 0x88, 0x5d, 0x76, 0x6c, 0x2f, 0x6f, 0xbc, 0x3a, 0xeb, 0xaa, 0x36, 0x19, 0x79, 0xc8,
+ 0x59, 0x7c, 0x9b, 0xa3, 0x04, 0xef, 0x4f, 0x47, 0x93, 0x52, 0x1a, 0xfb, 0x81, 0x69, 0xf9, 0xd8,
+ 0x65, 0x67, 0x70, 0xe0, 0x52, 0x20, 0x52, 0xae, 0xc1, 0xca, 0x14, 0x4a, 0xf8, 0x95, 0xf5, 0x23,
+ 0xb4, 0x57, 0xab, 0x6c, 0xb5, 0xaa, 0x77, 0xd5, 0xa0, 0x17, 0xdc, 0xaf, 0xeb, 0xc1, 0xff, 0x29,
+ 0xe5, 0xdf, 0x02, 0xc8, 0x6d, 0xa7, 0x67, 0xf8, 0xf8, 0xdc, 0xa9, 0x4f, 0x7d, 0x5e, 0xea, 0xc5,
+ 0xe9, 0xd4, 0x87, 0x3c, 0x4e, 0x9f, 0x83, 0xc7, 0xaf, 0x43, 0x7e, 0xc8, 0x7c, 0x65, 0xbf, 0x69,
+ 0x08, 0x7a, 0xa4, 0xd3, 0x3b, 0x73, 0xc7, 0xc4, 0x56, 0xef, 0xb6, 0xe1, 0x1d, 0x73, 0x53, 0xe0,
+ 0x36, 0x54, 0xa0, 0xfc, 0x14, 0xe4, 0xf1, 0xe2, 0x7b, 0x0e, 0xb1, 0x3d, 0x8c, 0x6e, 0x40, 0xfa,
+ 0x88, 0x74, 0xf8, 0xb7, 0x35, 0x89, 0x3d, 0x12, 0x35, 0x66, 0x84, 0x9e, 0x81, 0x15, 0x1b, 0xbf,
+ 0xe3, 0xeb, 0x31, 0x5a, 0xc5, 0x6e, 0x1c, 0x4b, 0x74, 0xac, 0x11, 0x52, 0x4b, 0x21, 0x20, 0x6f,
+ 0x19, 0x76, 0x17, 0x5b, 0xff, 0xab, 0x6d, 0x46, 0x40, 0xde, 0xc6, 0x16, 0xbe, 0x40, 0x72, 0xe7,
+ 0x9b, 0x70, 0xe3, 0xb3, 0x3c, 0x3b, 0x23, 0x82, 0x93, 0xd5, 0xc2, 0x2e, 0xfa, 0xa3, 0x00, 0x52,
+ 0x54, 0x0c, 0x51, 0x79, 0x56, 0x67, 0x36, 0x55, 0x36, 0x8b, 0x09, 0xd2, 0xa1, 0xbc, 0xfd, 0x49,
+ 0xe5, 0xca, 0x38, 0xa4, 0x67, 0xd7, 0xb8, 0x9f, 0xcf, 0xae, 0x1d, 0x91, 0xce, 0xcf, 0xff, 0xfc,
+ 0x8f, 0xdf, 0xa4, 0x5e, 0x57, 0x6e, 0x44, 0xbf, 0xf3, 0x09, 0xf4, 0xbc, 0xf2, 0x7b, 0x63, 0x8b,
+ 0xf7, 0xcb, 0xdc, 0xc2, 0x2b, 0xbf, 0xc7, 0x3f, 0xbc, 0xcf, 0x7e, 0x0e, 0x74, 0x9d, 0xf7, 0x26,
+ 0xd7, 0x85, 0xab, 0xe8, 0x5f, 0x02, 0x5c, 0x8a, 0x5c, 0xab, 0x78, 0xfb, 0xe1, 0x71, 0x31, 0x7f,
+ 0x3c, 0x4f, 0x84, 0x06, 0xb1, 0x9f, 0xf9, 0x94, 0x22, 0x3c, 0xe5, 0x67, 0xc2, 0x47, 0x15, 0xc4,
+ 0x6f, 0x53, 0xf1, 0x13, 0x72, 0x46, 0x80, 0xb7, 0x94, 0x9d, 0x0b, 0x04, 0x18, 0x8b, 0x87, 0xc6,
+ 0xfa, 0x07, 0x01, 0xb2, 0xfc, 0x24, 0x40, 0xb3, 0xfa, 0x95, 0x89, 0x03, 0x23, 0x51, 0xaa, 0x3a,
+ 0x9f, 0x54, 0x8a, 0x0f, 0x88, 0x44, 0x37, 0x7b, 0x2c, 0x98, 0xd7, 0xd0, 0x2b, 0xe7, 0x09, 0xa6,
+ 0xfc, 0x1e, 0xc7, 0x78, 0x1f, 0xfd, 0x45, 0x80, 0x5c, 0xb8, 0xc9, 0x51, 0x69, 0xbe, 0x52, 0x5c,
+ 0x2c, 0x27, 0xd6, 0xe7, 0xd5, 0x43, 0xb1, 0x3f, 0xa9, 0xa0, 0xd3, 0x11, 0x3d, 0x20, 0x4c, 0x5e,
+ 0xac, 0x59, 0x98, 0xd7, 0xd0, 0x8b, 0xe7, 0x09, 0x13, 0xfd, 0x4e, 0x00, 0x29, 0x2a, 0xd8, 0x33,
+ 0xf9, 0x37, 0x5d, 0xda, 0x13, 0x25, 0x69, 0x8f, 0x39, 0xb8, 0xbd, 0x71, 0xb1, 0x3c, 0x5c, 0x67,
+ 0x25, 0xfb, 0x63, 0x01, 0xa4, 0xa8, 0xe6, 0xcd, 0x74, 0x77, 0xba, 0x3a, 0x26, 0x72, 0xd7, 0x9a,
+ 0xcd, 0xa9, 0xaa, 0xb2, 0x7d, 0xb1, 0x58, 0xba, 0xcc, 0x31, 0xba, 0x3d, 0x7e, 0x2f, 0x80, 0x14,
+ 0xd5, 0xd4, 0x99, 0x01, 0x4d, 0x57, 0xdf, 0xe2, 0x63, 0xa7, 0x4e, 0x2b, 0x75, 0xe0, 0xf8, 0xa3,
+ 0x44, 0x1b, 0xe3, 0xea, 0xc5, 0x12, 0x52, 0xbc, 0xf5, 0x51, 0xe5, 0x4a, 0xe4, 0x21, 0x77, 0xc3,
+ 0x70, 0x4c, 0xaf, 0xd4, 0x25, 0x83, 0x3f, 0x55, 0x4a, 0x87, 0xbe, 0xef, 0x78, 0xd7, 0xcb, 0xe5,
+ 0xfb, 0xf7, 0xef, 0x4f, 0x0d, 0x96, 0x8d, 0xa1, 0x7f, 0xc8, 0x7f, 0x38, 0xf9, 0x9c, 0x63, 0x19,
+ 0xfe, 0x01, 0x71, 0x07, 0x9b, 0xf7, 0xe1, 0x1b, 0x5d, 0x32, 0xf8, 0xfc, 0xf0, 0x37, 0x25, 0xba,
+ 0x55, 0x1a, 0x34, 0xd2, 0x86, 0xf0, 0xa6, 0x1a, 0xe8, 0xf6, 0x89, 0x65, 0xd8, 0xfd, 0x12, 0x71,
+ 0xfb, 0xe5, 0x3e, 0xb6, 0xd9, 0x3a, 0x94, 0xc7, 0x13, 0x3e, 0xe0, 0x07, 0x9a, 0x37, 0x42, 0x41,
+ 0x27, 0xcb, 0x2c, 0x5e, 0xf8, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa0, 0xbc, 0xdf, 0x94, 0xd1,
+ 0x29, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/googleapis/cloud/dataproc/v1beta2/shared.pb.go b/googleapis/cloud/dataproc/v1beta2/shared.pb.go
index 5232a77..ddecd02 100644
--- a/googleapis/cloud/dataproc/v1beta2/shared.pb.go
+++ b/googleapis/cloud/dataproc/v1beta2/shared.pb.go
@@ -30,8 +30,12 @@
Component_COMPONENT_UNSPECIFIED Component = 0
// The Anaconda python distribution.
Component_ANACONDA Component = 5
+ // Docker
+ Component_DOCKER Component = 13
// The Druid query engine.
Component_DRUID Component = 9
+ // Flink
+ Component_FLINK Component = 14
// The Hive Web HCatalog (the REST service for accessing HCatalog).
Component_HIVE_WEBHCAT Component = 3
// The Jupyter Notebook.
@@ -40,6 +44,10 @@
Component_KERBEROS Component = 7
// The Presto query engine.
Component_PRESTO Component = 6
+ // The Ranger service.
+ Component_RANGER Component = 12
+ // The Solr service.
+ Component_SOLR Component = 10
// The Zeppelin notebook.
Component_ZEPPELIN Component = 4
// The Zookeeper service.
@@ -47,25 +55,33 @@
)
var Component_name = map[int32]string{
- 0: "COMPONENT_UNSPECIFIED",
- 5: "ANACONDA",
- 9: "DRUID",
- 3: "HIVE_WEBHCAT",
- 1: "JUPYTER",
- 7: "KERBEROS",
- 6: "PRESTO",
- 4: "ZEPPELIN",
- 8: "ZOOKEEPER",
+ 0: "COMPONENT_UNSPECIFIED",
+ 5: "ANACONDA",
+ 13: "DOCKER",
+ 9: "DRUID",
+ 14: "FLINK",
+ 3: "HIVE_WEBHCAT",
+ 1: "JUPYTER",
+ 7: "KERBEROS",
+ 6: "PRESTO",
+ 12: "RANGER",
+ 10: "SOLR",
+ 4: "ZEPPELIN",
+ 8: "ZOOKEEPER",
}
var Component_value = map[string]int32{
"COMPONENT_UNSPECIFIED": 0,
"ANACONDA": 5,
+ "DOCKER": 13,
"DRUID": 9,
+ "FLINK": 14,
"HIVE_WEBHCAT": 3,
"JUPYTER": 1,
"KERBEROS": 7,
"PRESTO": 6,
+ "RANGER": 12,
+ "SOLR": 10,
"ZEPPELIN": 4,
"ZOOKEEPER": 8,
}
@@ -87,24 +103,26 @@
}
var fileDescriptor_2474c85b30841989 = []byte{
- // 293 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0x4d, 0x4f, 0x32, 0x31,
- 0x14, 0x85, 0x5f, 0xf2, 0xca, 0xc7, 0x14, 0x4c, 0x9a, 0x26, 0x2e, 0x34, 0xba, 0x70, 0xcb, 0x62,
- 0x1a, 0x75, 0xe9, 0x6a, 0x3e, 0xae, 0x61, 0x44, 0xdb, 0xa6, 0x33, 0x68, 0x64, 0x43, 0x0a, 0x4c,
- 0x2a, 0x09, 0xf4, 0x4e, 0x86, 0x6a, 0xe2, 0x0f, 0xf1, 0xff, 0x1a, 0x06, 0x58, 0xea, 0xf6, 0x9e,
- 0xe7, 0xdc, 0xe4, 0x39, 0x64, 0x68, 0x11, 0xed, 0xba, 0xe4, 0x8b, 0x35, 0x7e, 0x2c, 0xf9, 0xd2,
- 0x78, 0x53, 0xd5, 0xb8, 0xe0, 0x9f, 0x37, 0xf3, 0xd2, 0x9b, 0x5b, 0xbe, 0x7d, 0x37, 0x75, 0xb9,
- 0x0c, 0xab, 0x1a, 0x3d, 0xb2, 0xab, 0x3d, 0x1b, 0x36, 0x6c, 0x78, 0x64, 0xc3, 0x03, 0x7b, 0x71,
- 0x79, 0x78, 0x65, 0xaa, 0x15, 0x37, 0xce, 0xa1, 0x37, 0x7e, 0x85, 0x6e, 0xbb, 0x2f, 0x0f, 0xbf,
- 0x5b, 0x24, 0x48, 0x70, 0x53, 0xa1, 0x2b, 0x9d, 0x67, 0xe7, 0xe4, 0x2c, 0x91, 0xcf, 0x4a, 0x0a,
- 0x10, 0xc5, 0x6c, 0x22, 0x72, 0x05, 0x49, 0xf6, 0x90, 0x41, 0x4a, 0xff, 0xb1, 0x01, 0xe9, 0x45,
- 0x22, 0x4a, 0xa4, 0x48, 0x23, 0xda, 0x66, 0x01, 0x69, 0xa7, 0x7a, 0x92, 0xa5, 0x34, 0x60, 0x94,
- 0x0c, 0x46, 0xd9, 0x0b, 0xcc, 0x5e, 0x21, 0x1e, 0x25, 0x51, 0x41, 0xff, 0xb3, 0x3e, 0xe9, 0x3e,
- 0x4e, 0xd4, 0x5b, 0x01, 0x9a, 0xb6, 0x76, 0xbd, 0x31, 0xe8, 0x18, 0xb4, 0xcc, 0x69, 0x97, 0x11,
- 0xd2, 0x51, 0x1a, 0xf2, 0x42, 0xd2, 0xce, 0x2e, 0x99, 0x82, 0x52, 0xf0, 0x94, 0x09, 0x7a, 0xc2,
- 0x4e, 0x49, 0x30, 0x95, 0x72, 0x0c, 0xa0, 0x40, 0xd3, 0x5e, 0xfc, 0x45, 0xae, 0x17, 0xb8, 0x09,
- 0xff, 0x54, 0x8b, 0xfb, 0x79, 0xb3, 0x83, 0xda, 0x99, 0xa8, 0xd6, 0x14, 0x0e, 0xb4, 0xc5, 0xb5,
- 0x71, 0x36, 0xc4, 0xda, 0x72, 0x5b, 0xba, 0xc6, 0x93, 0xef, 0x23, 0x53, 0xad, 0xb6, 0xbf, 0x6c,
- 0x7a, 0x7f, 0x3c, 0xcc, 0x3b, 0x4d, 0xe3, 0xee, 0x27, 0x00, 0x00, 0xff, 0xff, 0xab, 0x0b, 0x45,
- 0x10, 0x84, 0x01, 0x00, 0x00,
+ // 326 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0x4f, 0x6f, 0xe2, 0x30,
+ 0x10, 0xc5, 0x17, 0x2d, 0xff, 0x62, 0x60, 0x35, 0xb2, 0xb4, 0x87, 0x5d, 0xb5, 0x87, 0x5e, 0x39,
+ 0xc4, 0x6a, 0x7b, 0xec, 0x29, 0x7f, 0x86, 0x92, 0x86, 0xda, 0x96, 0x13, 0x5a, 0x95, 0x0b, 0x32,
+ 0x10, 0xa5, 0x48, 0x60, 0x47, 0x21, 0xad, 0xd4, 0xaf, 0xd7, 0x4f, 0x56, 0x25, 0xc0, 0xb1, 0xbd,
+ 0x3d, 0xcd, 0xfc, 0xde, 0x93, 0xe6, 0x0d, 0x19, 0xe7, 0xd6, 0xe6, 0xbb, 0x8c, 0xad, 0x77, 0xf6,
+ 0x6d, 0xc3, 0x36, 0xba, 0xd2, 0x45, 0x69, 0xd7, 0xec, 0xfd, 0x7a, 0x95, 0x55, 0xfa, 0x86, 0x1d,
+ 0x5e, 0x75, 0x99, 0x6d, 0xdc, 0xa2, 0xb4, 0x95, 0xa5, 0x97, 0x47, 0xd6, 0x6d, 0x58, 0xf7, 0xcc,
+ 0xba, 0x27, 0xf6, 0xff, 0xc5, 0x29, 0x4a, 0x17, 0x5b, 0xa6, 0x8d, 0xb1, 0x95, 0xae, 0xb6, 0xd6,
+ 0x1c, 0x8e, 0xe6, 0xf1, 0x67, 0x8b, 0x38, 0x81, 0xdd, 0x17, 0xd6, 0x64, 0xa6, 0xa2, 0xff, 0xc8,
+ 0xdf, 0x40, 0x3c, 0x4a, 0xc1, 0x91, 0xa7, 0xcb, 0x39, 0x4f, 0x24, 0x06, 0xd1, 0x24, 0xc2, 0x10,
+ 0x7e, 0xd1, 0x21, 0xe9, 0x7b, 0xdc, 0x0b, 0x04, 0x0f, 0x3d, 0xe8, 0x50, 0x42, 0xba, 0xa1, 0x08,
+ 0x62, 0x54, 0x30, 0xa2, 0x0e, 0xe9, 0x84, 0x6a, 0x1e, 0x85, 0xe0, 0xd4, 0x72, 0x32, 0x8b, 0x78,
+ 0x0c, 0x7f, 0x28, 0x90, 0xe1, 0x34, 0x7a, 0xc2, 0xe5, 0x33, 0xfa, 0xd3, 0xc0, 0x4b, 0xe1, 0x37,
+ 0x1d, 0x90, 0xde, 0xc3, 0x5c, 0xbe, 0xa4, 0xa8, 0xa0, 0x55, 0xc7, 0xc5, 0xa8, 0x7c, 0x54, 0x22,
+ 0x81, 0x5e, 0x1d, 0x27, 0x15, 0x26, 0xa9, 0x80, 0x6e, 0xad, 0x95, 0xc7, 0xef, 0x51, 0xc1, 0x90,
+ 0xf6, 0x49, 0x3b, 0x11, 0x33, 0x05, 0xa4, 0xe6, 0x17, 0x28, 0x25, 0xce, 0x22, 0x0e, 0x6d, 0x3a,
+ 0x22, 0xce, 0x42, 0x88, 0x18, 0x51, 0xa2, 0x82, 0xbe, 0xff, 0x41, 0xae, 0xd6, 0x76, 0xef, 0xfe,
+ 0xd8, 0x83, 0x3f, 0x48, 0x9a, 0xd2, 0x64, 0x7d, 0xb6, 0x6c, 0x2d, 0xf0, 0x44, 0xe7, 0x76, 0xa7,
+ 0x4d, 0xee, 0xda, 0x32, 0x67, 0x79, 0x66, 0x9a, 0x52, 0xd8, 0x71, 0xa5, 0x8b, 0xed, 0xe1, 0x9b,
+ 0x07, 0xdc, 0x9d, 0x07, 0xab, 0x6e, 0xe3, 0xb8, 0xfd, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x4b,
+ 0x43, 0x21, 0xb1, 0x01, 0x00, 0x00,
}
diff --git a/googleapis/cloud/dataproc/v1beta2/workflow_templates.pb.go b/googleapis/cloud/dataproc/v1beta2/workflow_templates.pb.go
index c831d03..f046dbd 100644
--- a/googleapis/cloud/dataproc/v1beta2/workflow_templates.pb.go
+++ b/googleapis/cloud/dataproc/v1beta2/workflow_templates.pb.go
@@ -480,8 +480,8 @@
//
// The step id is used as prefix for job id, as job
// `goog-dataproc-workflow-step-id` label, and in
- // [prerequisiteStepIds][google.cloud.dataproc.v1beta2.OrderedJob.prerequisite_step_ids]
- // field from other steps.
+ // [prerequisiteStepIds][google.cloud.dataproc.v1beta2.OrderedJob.prerequisite_step_ids] field from other
+ // steps.
//
// The id must contain only letters (a-z, A-Z), numbers (0-9),
// underscores (_), and hyphens (-). Cannot begin or end with underscore
@@ -495,7 +495,9 @@
// *OrderedJob_PysparkJob
// *OrderedJob_HiveJob
// *OrderedJob_PigJob
+ // *OrderedJob_SparkRJob
// *OrderedJob_SparkSqlJob
+ // *OrderedJob_PrestoJob
JobType isOrderedJob_JobType `protobuf_oneof:"job_type"`
// Optional. The labels to associate with this job.
//
@@ -574,10 +576,18 @@
PigJob *PigJob `protobuf:"bytes,6,opt,name=pig_job,json=pigJob,proto3,oneof"`
}
+type OrderedJob_SparkRJob struct {
+ SparkRJob *SparkRJob `protobuf:"bytes,11,opt,name=spark_r_job,json=sparkRJob,proto3,oneof"`
+}
+
type OrderedJob_SparkSqlJob struct {
SparkSqlJob *SparkSqlJob `protobuf:"bytes,7,opt,name=spark_sql_job,json=sparkSqlJob,proto3,oneof"`
}
+type OrderedJob_PrestoJob struct {
+ PrestoJob *PrestoJob `protobuf:"bytes,12,opt,name=presto_job,json=prestoJob,proto3,oneof"`
+}
+
func (*OrderedJob_HadoopJob) isOrderedJob_JobType() {}
func (*OrderedJob_SparkJob) isOrderedJob_JobType() {}
@@ -588,8 +598,12 @@
func (*OrderedJob_PigJob) isOrderedJob_JobType() {}
+func (*OrderedJob_SparkRJob) isOrderedJob_JobType() {}
+
func (*OrderedJob_SparkSqlJob) isOrderedJob_JobType() {}
+func (*OrderedJob_PrestoJob) isOrderedJob_JobType() {}
+
func (m *OrderedJob) GetJobType() isOrderedJob_JobType {
if m != nil {
return m.JobType
@@ -632,6 +646,13 @@
return nil
}
+func (m *OrderedJob) GetSparkRJob() *SparkRJob {
+ if x, ok := m.GetJobType().(*OrderedJob_SparkRJob); ok {
+ return x.SparkRJob
+ }
+ return nil
+}
+
func (m *OrderedJob) GetSparkSqlJob() *SparkSqlJob {
if x, ok := m.GetJobType().(*OrderedJob_SparkSqlJob); ok {
return x.SparkSqlJob
@@ -639,6 +660,13 @@
return nil
}
+func (m *OrderedJob) GetPrestoJob() *PrestoJob {
+ if x, ok := m.GetJobType().(*OrderedJob_PrestoJob); ok {
+ return x.PrestoJob
+ }
+ return nil
+}
+
func (m *OrderedJob) GetLabels() map[string]string {
if m != nil {
return m.Labels
@@ -668,7 +696,9 @@
(*OrderedJob_PysparkJob)(nil),
(*OrderedJob_HiveJob)(nil),
(*OrderedJob_PigJob)(nil),
+ (*OrderedJob_SparkRJob)(nil),
(*OrderedJob_SparkSqlJob)(nil),
+ (*OrderedJob_PrestoJob)(nil),
}
}
@@ -694,10 +724,10 @@
// A field is allowed to appear in at most one parameter's list of field
// paths.
//
- // A field path is similar in syntax to a
- // [google.protobuf.FieldMask][google.protobuf.FieldMask]. For example, a
- // field path that references the zone field of a workflow template's cluster
- // selector would be specified as `placement.clusterSelector.zone`.
+ // A field path is similar in syntax to a [google.protobuf.FieldMask][google.protobuf.FieldMask].
+ // For example, a field path that references the zone field of a workflow
+ // template's cluster selector would be specified as
+ // `placement.clusterSelector.zone`.
//
// Also, field paths can reference fields using the following syntax:
//
@@ -1856,152 +1886,155 @@
}
var fileDescriptor_49d658bedf9bdbee = []byte{
- // 2317 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5a, 0xcf, 0x6f, 0x1b, 0x69,
- 0x19, 0xee, 0x8c, 0x63, 0xc7, 0x7e, 0xdd, 0x34, 0xee, 0x57, 0x9a, 0xb8, 0x6e, 0xa3, 0xa6, 0xb3,
- 0x62, 0x49, 0xd3, 0xae, 0xbd, 0x04, 0x01, 0xdd, 0x6c, 0x0b, 0x75, 0x62, 0xa7, 0x71, 0x9b, 0x3a,
- 0xde, 0x71, 0xd2, 0xae, 0xba, 0x07, 0x6b, 0xec, 0xf9, 0xea, 0x4c, 0x3b, 0x9e, 0x99, 0xcc, 0x8c,
- 0xd3, 0xa6, 0xa5, 0x42, 0x42, 0x0b, 0x2b, 0x24, 0x6e, 0x48, 0x9c, 0x10, 0xe2, 0x80, 0x38, 0x57,
- 0x42, 0x5c, 0x96, 0x3b, 0x87, 0x4a, 0x1c, 0x80, 0x5b, 0x39, 0xb0, 0x12, 0x70, 0x80, 0x3f, 0x60,
- 0x91, 0xf6, 0x84, 0xbe, 0x1f, 0x33, 0x1e, 0x8f, 0x1d, 0x8f, 0xdd, 0x80, 0xd0, 0x5e, 0xda, 0xf9,
- 0x7e, 0x3c, 0xcf, 0xbc, 0xdf, 0xf3, 0xbd, 0xdf, 0xfb, 0xbe, 0xdf, 0x38, 0xf0, 0xad, 0xb6, 0x69,
- 0xb6, 0x75, 0x5c, 0x68, 0xe9, 0x66, 0x57, 0x2d, 0xa8, 0x8a, 0xab, 0x58, 0xb6, 0xd9, 0x2a, 0x1c,
- 0x7c, 0xbd, 0x89, 0x5d, 0x65, 0xa5, 0xf0, 0xc4, 0xb4, 0x1f, 0x3f, 0xd4, 0xcd, 0x27, 0x0d, 0x17,
- 0x77, 0x2c, 0x5d, 0x71, 0xb1, 0x93, 0xb7, 0x6c, 0xd3, 0x35, 0xd1, 0x02, 0xc3, 0xe5, 0x29, 0x2e,
- 0xef, 0xe1, 0xf2, 0x1c, 0x97, 0xbb, 0xc0, 0x69, 0x15, 0x4b, 0x2b, 0x28, 0x86, 0x61, 0xba, 0x8a,
- 0xab, 0x99, 0x06, 0x07, 0xe7, 0xe6, 0x03, 0xa3, 0x2d, 0x5d, 0xc3, 0x86, 0xcb, 0x07, 0x2e, 0x06,
- 0x06, 0x1e, 0x6a, 0x58, 0x57, 0x1b, 0x4d, 0xbc, 0xa7, 0x1c, 0x68, 0xa6, 0xcd, 0x27, 0x9c, 0x0b,
- 0x4c, 0xb0, 0xb1, 0x63, 0x76, 0xed, 0x16, 0xe6, 0x43, 0x57, 0x47, 0xaf, 0xa4, 0xa5, 0x77, 0x1d,
- 0x17, 0xdb, 0x9e, 0x09, 0x4b, 0xa3, 0x67, 0x3f, 0x32, 0x9b, 0xde, 0xcc, 0xb7, 0xf8, 0x4c, 0xdd,
- 0x34, 0xda, 0x76, 0xd7, 0x30, 0x34, 0xa3, 0x5d, 0x30, 0x2d, 0x6c, 0xf7, 0xad, 0xe8, 0x3c, 0x9f,
- 0x44, 0x5b, 0xcd, 0xee, 0xc3, 0x02, 0xee, 0x58, 0xee, 0x61, 0x68, 0x55, 0xfe, 0xa0, 0xab, 0x75,
- 0xb0, 0xe3, 0x2a, 0x1d, 0x8b, 0x4d, 0x90, 0x7e, 0x93, 0x80, 0xcc, 0x7d, 0xae, 0xf4, 0x0e, 0x17,
- 0x1a, 0x9d, 0x01, 0x51, 0x53, 0xb3, 0xe2, 0xa2, 0xb0, 0x94, 0x5a, 0x8b, 0x7d, 0x56, 0x14, 0x65,
- 0x51, 0x53, 0xd1, 0x3c, 0x4c, 0x19, 0x4a, 0x07, 0x67, 0x05, 0xaf, 0x3b, 0x26, 0xd3, 0x0e, 0xb4,
- 0x00, 0xd3, 0x07, 0xd8, 0x76, 0x34, 0xd3, 0xc8, 0xc6, 0x16, 0x85, 0xa5, 0x38, 0x19, 0x13, 0x64,
- 0xaf, 0x0f, 0xdd, 0x84, 0x74, 0xcb, 0xc6, 0x8a, 0x8b, 0x1b, 0xe4, 0xdd, 0xd9, 0xa9, 0x45, 0x61,
- 0x29, 0xbd, 0x92, 0xcb, 0xf3, 0x4d, 0xf4, 0x0c, 0xcb, 0xef, 0x78, 0x86, 0x31, 0x6a, 0x60, 0x18,
- 0xd2, 0x4b, 0x18, 0xba, 0x96, 0xea, 0x33, 0xc4, 0xc7, 0x64, 0x60, 0x18, 0xca, 0xf0, 0x21, 0x24,
- 0x74, 0xa5, 0x89, 0x75, 0x27, 0x9b, 0x58, 0x8c, 0x2d, 0xa5, 0x57, 0xde, 0xcf, 0x8f, 0xf4, 0xa1,
- 0x7c, 0x58, 0x91, 0xfc, 0x16, 0x45, 0x97, 0x0d, 0xd7, 0x3e, 0x64, 0xcb, 0xe3, 0x7c, 0xe8, 0x1e,
- 0xa4, 0x2c, 0x5d, 0x69, 0xe1, 0x0e, 0x36, 0xdc, 0xec, 0x34, 0xb5, 0xec, 0xda, 0x84, 0xe4, 0x35,
- 0x0f, 0x2f, 0xf7, 0xa8, 0xd0, 0x0d, 0x98, 0x22, 0x8e, 0x90, 0x4d, 0x52, 0x7b, 0x2f, 0x47, 0x50,
- 0x6e, 0xdb, 0x2a, 0xb6, 0xb1, 0x7a, 0xdb, 0x6c, 0xca, 0x14, 0x86, 0x76, 0x01, 0x2c, 0xc5, 0x56,
- 0x3a, 0x98, 0xf8, 0x5d, 0x36, 0x45, 0x49, 0xde, 0x8d, 0x20, 0xf1, 0xed, 0xf1, 0x80, 0x6c, 0xa5,
- 0x01, 0xa2, 0xdc, 0x7b, 0x90, 0x0e, 0x28, 0x81, 0x32, 0x10, 0x7b, 0x8c, 0x0f, 0x99, 0x47, 0xc8,
- 0xe4, 0x11, 0x7d, 0x05, 0xe2, 0x07, 0x8a, 0xde, 0xc5, 0xcc, 0x79, 0x64, 0xd6, 0x58, 0x15, 0xaf,
- 0x09, 0xab, 0xaf, 0x84, 0x7f, 0x15, 0x7f, 0x2f, 0xc0, 0x92, 0xff, 0x5a, 0x66, 0x8c, 0x62, 0x69,
- 0x4e, 0xbe, 0x65, 0x76, 0x0a, 0x03, 0x4e, 0x58, 0xb1, 0x6c, 0xf3, 0x11, 0x6e, 0xb9, 0x4e, 0xe1,
- 0x39, 0x7f, 0x7a, 0x51, 0xb0, 0x71, 0x9b, 0x78, 0x7e, 0xe1, 0x39, 0x7b, 0x78, 0xe1, 0x07, 0x09,
- 0x0f, 0xe5, 0x14, 0x9e, 0x0f, 0xc4, 0x8d, 0x17, 0xe8, 0xee, 0x10, 0x2a, 0xdd, 0x6c, 0xb1, 0x63,
- 0x54, 0x78, 0xee, 0x3d, 0x8e, 0x49, 0xb7, 0x28, 0x48, 0x7f, 0x15, 0xe0, 0xdc, 0x91, 0xdb, 0x88,
- 0x3e, 0x84, 0xd9, 0x8e, 0x62, 0x28, 0x6d, 0xac, 0x36, 0xf8, 0xd1, 0xa7, 0x12, 0xa5, 0x57, 0xde,
- 0x89, 0xd8, 0x81, 0xbb, 0x0c, 0xb5, 0xce, 0x40, 0x9b, 0x27, 0xe4, 0x53, 0x9d, 0xbe, 0x1e, 0xf4,
- 0x11, 0x64, 0x38, 0x63, 0xc3, 0xc1, 0x3a, 0x6e, 0xb9, 0xa6, 0x4d, 0x95, 0x4e, 0xaf, 0xe4, 0x23,
- 0xa8, 0x39, 0x43, 0x9d, 0xa3, 0x36, 0x4f, 0xc8, 0xb3, 0xad, 0xfe, 0xae, 0xb5, 0x74, 0xc0, 0x95,
- 0xa5, 0x4f, 0x44, 0x38, 0xd5, 0x6f, 0x0e, 0xba, 0x04, 0x27, 0xbd, 0x97, 0xd3, 0x40, 0xc0, 0xb6,
- 0x38, 0xcd, 0xfb, 0xaa, 0x24, 0x14, 0x94, 0x20, 0xd1, 0x32, 0x8d, 0x87, 0x5a, 0x9b, 0x46, 0x82,
- 0xf4, 0xca, 0xd5, 0xf1, 0xac, 0x5a, 0xa7, 0x18, 0x99, 0x63, 0xd1, 0x07, 0xfe, 0x69, 0x9d, 0xa2,
- 0x8e, 0xfb, 0xde, 0x44, 0xb2, 0x05, 0xcf, 0xaa, 0x77, 0x4c, 0x8f, 0xe1, 0xb8, 0xd2, 0x1f, 0x05,
- 0x98, 0x0d, 0xa9, 0x87, 0x10, 0x4c, 0x3d, 0x33, 0x0d, 0x1e, 0x0b, 0x65, 0xfa, 0x8c, 0xf6, 0xe0,
- 0x94, 0x27, 0x0f, 0xb7, 0x5e, 0xa4, 0xd6, 0x17, 0x27, 0xdb, 0x19, 0xaf, 0x1d, 0x5c, 0xc5, 0x4c,
- 0x2b, 0xd8, 0x97, 0xbb, 0x09, 0x68, 0x70, 0xd2, 0x44, 0x6b, 0xfa, 0x77, 0x1c, 0xa0, 0x17, 0x33,
- 0xd0, 0x3c, 0x4c, 0x3b, 0x2e, 0xb6, 0x1a, 0x9a, 0xca, 0xe1, 0x09, 0xd2, 0xac, 0xa8, 0xa8, 0x02,
- 0xb0, 0xa7, 0xa8, 0xa6, 0x69, 0x35, 0x1e, 0x99, 0x4d, 0xee, 0x69, 0x4b, 0x11, 0xeb, 0xd9, 0xa4,
- 0x80, 0xdb, 0x66, 0x73, 0xf3, 0x84, 0x9c, 0xda, 0xf3, 0x1a, 0x68, 0x03, 0x52, 0x8e, 0xa5, 0xd8,
- 0x8f, 0x29, 0x13, 0xf3, 0x8e, 0xaf, 0x45, 0x30, 0xd5, 0xc9, 0x7c, 0x46, 0x94, 0x74, 0xf8, 0x33,
- 0xda, 0x82, 0xb4, 0x75, 0xd8, 0x63, 0x62, 0xe9, 0x24, 0x2a, 0x3e, 0xd6, 0x0e, 0x03, 0x5c, 0xc0,
- 0xf1, 0x84, 0x6d, 0x1d, 0x92, 0x7b, 0xda, 0x01, 0xa6, 0x54, 0x2c, 0xaf, 0xbc, 0x1d, 0xb5, 0x3c,
- 0xed, 0x00, 0x33, 0x9e, 0xe9, 0x3d, 0xf6, 0x88, 0x6e, 0xc2, 0xb4, 0xa5, 0xb5, 0x29, 0x47, 0x82,
- 0x72, 0x7c, 0x35, 0xca, 0x1c, 0xad, 0xcd, 0x28, 0x12, 0x16, 0x7d, 0x42, 0x35, 0x98, 0x61, 0x4b,
- 0x72, 0xf6, 0x75, 0xca, 0xc3, 0x32, 0xc9, 0xf2, 0x38, 0x02, 0xd5, 0xf7, 0x75, 0x46, 0x96, 0x76,
- 0x7a, 0x4d, 0x74, 0xd7, 0x3f, 0x43, 0x2c, 0x83, 0x7c, 0x73, 0xec, 0x0c, 0x32, 0xec, 0xfc, 0xa0,
- 0x2d, 0x00, 0xa7, 0xb5, 0x87, 0xd5, 0xae, 0xae, 0x19, 0xed, 0x6c, 0x6a, 0xac, 0xc3, 0x7d, 0xdb,
- 0x6c, 0xd6, 0x7d, 0x8c, 0x1c, 0xc0, 0xa3, 0x15, 0x38, 0x6b, 0xd9, 0xd8, 0xc6, 0xfb, 0x5d, 0xcd,
- 0xd1, 0x5c, 0xdc, 0xe0, 0xce, 0xe7, 0x64, 0x61, 0x31, 0xb6, 0x94, 0x92, 0xcf, 0x04, 0x07, 0xeb,
- 0xd4, 0x13, 0x8f, 0x73, 0x82, 0xd7, 0x00, 0x92, 0x8f, 0xcc, 0x66, 0xc3, 0x3d, 0xb4, 0xb0, 0xf4,
- 0x5b, 0x01, 0x4e, 0x0f, 0x24, 0x3a, 0x72, 0x9e, 0x7b, 0xb5, 0x0d, 0x2f, 0x6b, 0xe6, 0x20, 0x41,
- 0xeb, 0x40, 0x76, 0x8e, 0x53, 0x32, 0x6f, 0xa1, 0x45, 0x48, 0xab, 0xd8, 0x69, 0xd9, 0x9a, 0xe5,
- 0x7a, 0x25, 0x4f, 0x4a, 0x0e, 0x76, 0x21, 0x19, 0xe0, 0x40, 0xd1, 0x35, 0x95, 0x26, 0x15, 0xee,
- 0xa1, 0x2b, 0x51, 0x2e, 0xe1, 0xd9, 0x72, 0xcf, 0x47, 0xca, 0x01, 0x16, 0xe9, 0x53, 0x01, 0xce,
- 0x0c, 0x99, 0x83, 0x36, 0x20, 0x6e, 0xe3, 0x36, 0x7e, 0xca, 0x33, 0x4c, 0x54, 0x1a, 0x90, 0xc9,
- 0xdc, 0x1e, 0x7c, 0xf3, 0x84, 0xcc, 0xe0, 0x68, 0x13, 0x12, 0x54, 0x30, 0x67, 0xcc, 0x7c, 0x72,
- 0x8f, 0x4c, 0xee, 0x23, 0xe2, 0xf8, 0xb5, 0xd3, 0x30, 0xdb, 0xb3, 0x9b, 0x89, 0x7e, 0x05, 0x66,
- 0x43, 0x2f, 0x46, 0x59, 0x98, 0xa6, 0x2f, 0xc6, 0x4e, 0x56, 0xa0, 0xf2, 0x7a, 0x4d, 0xe9, 0x32,
- 0xcc, 0x86, 0xc8, 0xc9, 0x56, 0x70, 0xe3, 0xd8, 0x5c, 0xde, 0x92, 0xfe, 0x10, 0x28, 0x5e, 0xef,
- 0x62, 0x57, 0x21, 0x56, 0xa2, 0x8b, 0x90, 0xf4, 0x52, 0x75, 0xb0, 0x56, 0xf5, 0x3b, 0x83, 0xf5,
- 0xaa, 0xe8, 0xd5, 0xab, 0xb1, 0x5e, 0xbd, 0xfa, 0x11, 0x9c, 0xe2, 0xf5, 0xaa, 0x97, 0xbc, 0x59,
- 0xb4, 0x2a, 0x8c, 0x17, 0xc7, 0xb7, 0xbd, 0xfa, 0x9c, 0xd1, 0xce, 0x30, 0x2e, 0x2f, 0x87, 0xde,
- 0x82, 0x78, 0xdb, 0x56, 0xac, 0x3d, 0xee, 0x15, 0x57, 0xc7, 0x2c, 0x15, 0x6f, 0x11, 0x0c, 0x23,
- 0x64, 0x78, 0x62, 0xa5, 0x8a, 0x75, 0x1c, 0xb0, 0x32, 0x7e, 0x1c, 0x2b, 0x19, 0x97, 0x67, 0x65,
- 0x0d, 0xe2, 0x8e, 0x4b, 0xf4, 0x23, 0xe1, 0xec, 0x54, 0x64, 0xec, 0x08, 0x6f, 0x41, 0xbe, 0x4e,
- 0xc0, 0xdc, 0x5c, 0x4a, 0x84, 0xde, 0x0e, 0xd5, 0x0e, 0xd3, 0xbd, 0x8d, 0xe9, 0x2b, 0x20, 0x1a,
- 0x7d, 0x75, 0x2b, 0x0b, 0x5d, 0xdf, 0x9d, 0xf4, 0xf5, 0xfe, 0x39, 0xe1, 0x41, 0x2c, 0x40, 0x89,
- 0xbe, 0x03, 0xe0, 0xb8, 0x8a, 0xed, 0xb2, 0xab, 0x44, 0x6a, 0xbc, 0xab, 0x44, 0x8a, 0x42, 0xe8,
- 0x4d, 0x62, 0x15, 0x92, 0xd8, 0x50, 0x19, 0x1a, 0xc6, 0x43, 0x4f, 0x63, 0x43, 0xa5, 0xd8, 0x80,
- 0x08, 0xdd, 0xae, 0xa6, 0x66, 0xd3, 0x83, 0x22, 0xec, 0x76, 0x35, 0x35, 0x77, 0x03, 0x66, 0x43,
- 0x4b, 0x98, 0x28, 0xb9, 0x5f, 0x83, 0x38, 0xdd, 0x00, 0x94, 0x86, 0xe9, 0xdd, 0xea, 0x9d, 0xea,
- 0xf6, 0xfd, 0x6a, 0xe6, 0x04, 0x69, 0xd4, 0xca, 0xd5, 0x52, 0xa5, 0x7a, 0x2b, 0x23, 0x90, 0x86,
- 0xbc, 0x5b, 0xad, 0x92, 0x86, 0x88, 0x92, 0x30, 0x55, 0xda, 0xae, 0x96, 0x33, 0x31, 0xc9, 0x80,
- 0x4c, 0xd8, 0x3f, 0x88, 0xd1, 0xfe, 0x95, 0xd3, 0x2f, 0x10, 0xb8, 0xd1, 0xfe, 0x40, 0x45, 0x45,
- 0xe7, 0x20, 0x8e, 0x6d, 0x9b, 0xd7, 0xa3, 0x7c, 0x02, 0xeb, 0x21, 0x37, 0x47, 0x95, 0x54, 0x4b,
- 0xe4, 0x1c, 0x25, 0xf9, 0xcd, 0x91, 0x74, 0x48, 0xf7, 0x61, 0xa6, 0xcf, 0xc3, 0x49, 0x34, 0x33,
- 0x4c, 0x95, 0x9f, 0xf3, 0xf4, 0xca, 0x95, 0x31, 0x77, 0xbe, 0x6a, 0xaa, 0x9e, 0xbb, 0x51, 0xb8,
- 0xf4, 0x17, 0x11, 0x4e, 0x06, 0x07, 0xd1, 0x85, 0x50, 0x85, 0xc3, 0x66, 0x7b, 0x65, 0xce, 0xb7,
- 0x8f, 0xca, 0x47, 0x34, 0xf2, 0xb3, 0xb9, 0xc3, 0x92, 0x12, 0xca, 0x41, 0x82, 0x64, 0x16, 0x4d,
- 0x65, 0x69, 0x80, 0xdb, 0xf0, 0xc8, 0x6c, 0x56, 0xd4, 0xde, 0x21, 0x8a, 0x4f, 0x74, 0x88, 0x88,
- 0xb9, 0x79, 0xf2, 0xcf, 0xe0, 0x21, 0xf2, 0x25, 0x4e, 0x84, 0x25, 0x96, 0x1e, 0x43, 0xca, 0xc7,
- 0xa0, 0xf3, 0x30, 0x5f, 0xdd, 0x2e, 0x95, 0x1b, 0xf5, 0x9d, 0xe2, 0xce, 0x6e, 0xbd, 0xb1, 0x5b,
- 0xad, 0xd7, 0xca, 0xeb, 0x95, 0x8d, 0x4a, 0xb9, 0xc4, 0xfc, 0x60, 0x6d, 0x6b, 0x7b, 0xfd, 0x4e,
- 0xb9, 0x94, 0x11, 0xd0, 0x49, 0x48, 0x12, 0x3f, 0x28, 0xae, 0x6d, 0x95, 0x33, 0x62, 0xd0, 0x2b,
- 0x62, 0x68, 0x06, 0x52, 0xeb, 0xdb, 0x77, 0x6b, 0x5b, 0xe5, 0x9d, 0x72, 0x29, 0x33, 0x85, 0x00,
- 0x12, 0x1b, 0xc5, 0xca, 0x56, 0xb9, 0x94, 0x89, 0x4b, 0xbf, 0x13, 0x60, 0x61, 0x9d, 0x86, 0xb5,
- 0xf0, 0x1d, 0x48, 0xc6, 0xfb, 0x5d, 0xec, 0xb8, 0x24, 0x9b, 0x58, 0x8a, 0x4d, 0xae, 0xc4, 0x4c,
- 0xed, 0x77, 0x3f, 0x2b, 0x8a, 0x5f, 0x14, 0x97, 0xd1, 0xd8, 0xb7, 0x3f, 0x99, 0xe3, 0x51, 0x2d,
- 0x10, 0xcd, 0xc5, 0xb1, 0x22, 0x5c, 0x98, 0x8a, 0x7d, 0xc1, 0xf0, 0x59, 0xa4, 0xef, 0x41, 0xee,
- 0x16, 0x76, 0x8f, 0xb2, 0xbc, 0xd4, 0xf7, 0x95, 0x83, 0xdb, 0x3d, 0xfe, 0xad, 0x95, 0xd7, 0x0e,
- 0xd9, 0x50, 0x8a, 0xf1, 0xb3, 0x8b, 0xf4, 0x85, 0x08, 0x52, 0xc5, 0x70, 0x5c, 0xc5, 0x70, 0xb5,
- 0x11, 0x02, 0xfe, 0x8f, 0xcd, 0x40, 0x6f, 0x41, 0x5a, 0xa3, 0x56, 0xb4, 0x70, 0xcf, 0x7b, 0xc5,
- 0xac, 0x20, 0x83, 0xd7, 0x5d, 0x51, 0xd1, 0x02, 0x80, 0xcd, 0xec, 0x21, 0x73, 0xe2, 0x34, 0xce,
- 0xa4, 0x78, 0x4f, 0x45, 0x45, 0xfb, 0x7d, 0xb1, 0x9a, 0x5d, 0xd5, 0x3e, 0x88, 0xd8, 0x9c, 0xe8,
- 0xa5, 0x8f, 0x8a, 0xde, 0xc7, 0x8d, 0x8c, 0x3f, 0x12, 0x61, 0x29, 0x60, 0x41, 0xc5, 0xd0, 0x35,
- 0xe3, 0xcb, 0xe8, 0xc3, 0xe8, 0xe2, 0x90, 0xed, 0x1b, 0xb1, 0x75, 0x53, 0xa1, 0xad, 0x93, 0xf6,
- 0x61, 0x61, 0x97, 0x7e, 0x1d, 0x3b, 0x6a, 0xf1, 0xb5, 0x50, 0x11, 0x75, 0xfc, 0x63, 0xf7, 0x2b,
- 0x01, 0x2e, 0x6c, 0x69, 0xce, 0xc0, 0xc1, 0x73, 0xfe, 0xfb, 0x7a, 0x9f, 0x87, 0x94, 0xa5, 0xb4,
- 0x71, 0xc3, 0xd1, 0x9e, 0x61, 0xee, 0xf8, 0x49, 0xd2, 0x51, 0xd7, 0x9e, 0x91, 0xea, 0x0f, 0xe8,
- 0xa0, 0x6b, 0x3e, 0xc6, 0x5e, 0xf5, 0x4e, 0xa7, 0xef, 0x90, 0x0e, 0xe9, 0x97, 0x02, 0x2c, 0x1c,
- 0x61, 0xa6, 0x63, 0x99, 0x86, 0x83, 0x91, 0x0c, 0x29, 0xff, 0x8b, 0x34, 0xcf, 0x53, 0x6f, 0xa2,
- 0x4d, 0x4c, 0xee, 0xd1, 0xa0, 0x2b, 0x30, 0x6b, 0xe0, 0xa7, 0x6e, 0x23, 0x60, 0x59, 0x20, 0x8d,
- 0xce, 0x90, 0xb1, 0x9a, 0x6f, 0xe2, 0xf7, 0x61, 0xa1, 0x44, 0xcb, 0xb5, 0xff, 0x53, 0xf0, 0x58,
- 0xf9, 0xe7, 0x69, 0x98, 0x0f, 0x83, 0xea, 0xd8, 0x3e, 0xd0, 0x5a, 0x18, 0xbd, 0x14, 0x61, 0x6e,
- 0x78, 0x6e, 0x40, 0xd7, 0xa3, 0x4a, 0xd3, 0x51, 0x29, 0x25, 0x37, 0xa9, 0xc6, 0xd2, 0xaf, 0x85,
- 0xd7, 0xc5, 0x0c, 0xf3, 0x88, 0xab, 0x8b, 0x9e, 0xd4, 0x3f, 0xf8, 0xf3, 0xdf, 0x7f, 0x2a, 0xfe,
- 0x44, 0x90, 0xae, 0xf9, 0x9f, 0xdb, 0x9f, 0xb3, 0x29, 0x37, 0xfc, 0x4f, 0x84, 0xcb, 0xfe, 0x57,
- 0xc6, 0xe5, 0x21, 0x1f, 0x04, 0x57, 0x7d, 0x8f, 0x7e, 0xb0, 0x21, 0xad, 0x8e, 0x62, 0xe9, 0x7d,
- 0x60, 0x1c, 0xcd, 0x83, 0x7e, 0x2c, 0xc2, 0x99, 0x21, 0x19, 0x09, 0x45, 0x7d, 0xf6, 0x3a, 0x3a,
- 0x8b, 0x4d, 0x2e, 0xd6, 0x0f, 0x85, 0xd7, 0x45, 0xba, 0xed, 0x54, 0xa0, 0xa7, 0x28, 0xa0, 0x0f,
- 0xe9, 0x1d, 0xaa, 0xce, 0x90, 0xaf, 0xa5, 0xcb, 0x2f, 0x1e, 0x5c, 0x47, 0xab, 0x47, 0x63, 0x03,
- 0x9a, 0x0c, 0x45, 0xa3, 0x7f, 0x88, 0x70, 0x7e, 0x44, 0x8e, 0x40, 0xc5, 0x63, 0xe7, 0x97, 0xdc,
- 0x82, 0x47, 0x11, 0xf8, 0x55, 0x25, 0xef, 0xd7, 0xbb, 0xd2, 0xdf, 0x84, 0x57, 0xc5, 0xcb, 0x70,
- 0x36, 0x5c, 0xd3, 0x97, 0x3b, 0x96, 0x7b, 0x88, 0x06, 0x6e, 0x9b, 0x5c, 0xb5, 0xd7, 0xc5, 0x0c,
- 0xf9, 0xef, 0xea, 0x62, 0x2f, 0x57, 0x51, 0x21, 0x7f, 0x26, 0x48, 0xa5, 0x37, 0x55, 0x72, 0x55,
- 0xeb, 0xad, 0x65, 0x55, 0x58, 0x7e, 0x70, 0x47, 0xda, 0x78, 0x73, 0x61, 0x43, 0x64, 0xe8, 0xe3,
- 0x18, 0x5c, 0x8a, 0xcc, 0x84, 0xe8, 0xd6, 0xf8, 0x6a, 0x8f, 0xcc, 0xa5, 0x51, 0x9a, 0x7f, 0x3e,
- 0xa1, 0xe6, 0xc3, 0x8f, 0xf5, 0x4b, 0x41, 0xda, 0x3a, 0xc6, 0x81, 0xd4, 0xc2, 0x8b, 0x09, 0x1c,
- 0xf5, 0x7b, 0xd2, 0xed, 0x37, 0x0e, 0x18, 0x23, 0x78, 0xd1, 0xa7, 0x22, 0xcc, 0x0d, 0x4f, 0xc4,
- 0x91, 0xd1, 0x72, 0x64, 0xfe, 0x9e, 0x3c, 0x00, 0xbc, 0x14, 0x5e, 0x17, 0x93, 0x7d, 0x72, 0xfe,
- 0x42, 0xc8, 0x15, 0x7b, 0x8b, 0xf6, 0x86, 0xf2, 0x13, 0x3a, 0x71, 0x4f, 0xc3, 0xed, 0xdc, 0xfa,
- 0x18, 0x74, 0x91, 0x8e, 0xdc, 0x13, 0xef, 0xe7, 0x22, 0x9c, 0x1d, 0x9a, 0xaa, 0x51, 0xd4, 0xcf,
- 0x7b, 0xa3, 0xea, 0x90, 0xdc, 0xf5, 0x37, 0x03, 0xb3, 0xea, 0x40, 0xfa, 0x44, 0x78, 0x5d, 0xe4,
- 0x75, 0xc8, 0x60, 0x28, 0x9d, 0xcc, 0x73, 0xfa, 0x43, 0xe9, 0xa4, 0xfe, 0x8c, 0x3e, 0x17, 0x60,
- 0x6e, 0x78, 0x9d, 0x10, 0xe9, 0x5b, 0x23, 0xcb, 0x8b, 0xdc, 0x5c, 0x7e, 0xe8, 0x41, 0x0d, 0xe7,
- 0x90, 0xe5, 0x63, 0xe4, 0x90, 0xe5, 0x63, 0xe4, 0x90, 0xdc, 0x9d, 0x57, 0xc5, 0xf9, 0x23, 0x6a,
- 0x9d, 0x3f, 0x15, 0xf3, 0x7b, 0xae, 0x6b, 0x39, 0xab, 0x85, 0xc2, 0x93, 0x27, 0x4f, 0xc2, 0x85,
- 0x90, 0xd2, 0x75, 0xf7, 0xd8, 0xaf, 0xf2, 0xef, 0x10, 0xb6, 0x87, 0xa6, 0xdd, 0x59, 0xfb, 0x58,
- 0x80, 0x4b, 0x2d, 0xb3, 0x33, 0x5a, 0xb0, 0xb5, 0xb9, 0x01, 0x87, 0xa8, 0x11, 0x6d, 0x6a, 0xc2,
- 0x83, 0x32, 0x07, 0xb6, 0x4d, 0x5d, 0x31, 0xda, 0x79, 0xd3, 0x6e, 0x17, 0xda, 0xd8, 0xa0, 0xca,
- 0x15, 0x7a, 0xaf, 0x3f, 0xe2, 0x6f, 0x01, 0xde, 0xf7, 0x3a, 0x9a, 0x09, 0x8a, 0xf8, 0xc6, 0x7f,
- 0x02, 0x00, 0x00, 0xff, 0xff, 0x99, 0xc4, 0x31, 0x6d, 0x34, 0x21, 0x00, 0x00,
+ // 2357 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5a, 0xcf, 0x6f, 0xdb, 0xc8,
+ 0xf5, 0x0f, 0x29, 0x4b, 0x96, 0x9e, 0xe2, 0x58, 0x99, 0x7c, 0xe3, 0x28, 0x4a, 0x8c, 0x38, 0x5c,
+ 0x7c, 0xb7, 0x8e, 0x93, 0x95, 0xb6, 0x2e, 0xda, 0x66, 0xbd, 0x49, 0x1b, 0xd9, 0x92, 0x63, 0x25,
+ 0x8e, 0xac, 0x50, 0x76, 0xb2, 0xc8, 0x1e, 0x04, 0x4a, 0x9c, 0xc8, 0x4c, 0x28, 0x92, 0x26, 0x29,
+ 0x27, 0x4e, 0x1a, 0x14, 0x28, 0xb6, 0x5d, 0x14, 0xe8, 0xad, 0x40, 0x4f, 0x45, 0x51, 0x14, 0x45,
+ 0xcf, 0x01, 0x8a, 0x5e, 0xb6, 0xf7, 0x1e, 0x02, 0xf4, 0xd0, 0xf6, 0x96, 0x1e, 0xba, 0x40, 0xdb,
+ 0x43, 0xfb, 0x07, 0xec, 0x61, 0x4f, 0xc5, 0xfc, 0x20, 0x45, 0xd1, 0x92, 0x28, 0xd9, 0x2d, 0x8a,
+ 0x5e, 0x12, 0xce, 0x8f, 0xf7, 0xe1, 0x9b, 0xcf, 0xbc, 0x79, 0x9f, 0x37, 0x94, 0xe1, 0x1b, 0x6d,
+ 0xd3, 0x6c, 0xeb, 0xb8, 0xd0, 0xd2, 0xcd, 0xae, 0x5a, 0x50, 0x15, 0x57, 0xb1, 0x6c, 0xb3, 0x55,
+ 0xd8, 0xff, 0x6a, 0x13, 0xbb, 0xca, 0x72, 0xe1, 0x99, 0x69, 0x3f, 0x7d, 0xac, 0x9b, 0xcf, 0x1a,
+ 0x2e, 0xee, 0x58, 0xba, 0xe2, 0x62, 0x27, 0x6f, 0xd9, 0xa6, 0x6b, 0xa2, 0x79, 0x66, 0x97, 0xa7,
+ 0x76, 0x79, 0xcf, 0x2e, 0xcf, 0xed, 0x72, 0x17, 0x39, 0xac, 0x62, 0x69, 0x05, 0xc5, 0x30, 0x4c,
+ 0x57, 0x71, 0x35, 0xd3, 0xe0, 0xc6, 0xb9, 0x73, 0x81, 0xd1, 0x96, 0xae, 0x61, 0xc3, 0xe5, 0x03,
+ 0x97, 0x02, 0x03, 0x8f, 0x35, 0xac, 0xab, 0x8d, 0x26, 0xde, 0x55, 0xf6, 0x35, 0xd3, 0xe6, 0x13,
+ 0xce, 0x07, 0x26, 0xd8, 0xd8, 0x31, 0xbb, 0x76, 0x0b, 0xf3, 0xa1, 0x6b, 0xa3, 0x57, 0xd2, 0xd2,
+ 0xbb, 0x8e, 0x8b, 0x6d, 0xcf, 0x85, 0xc5, 0xd1, 0xb3, 0x9f, 0x98, 0x4d, 0x6f, 0xe6, 0x3b, 0x7c,
+ 0xa6, 0x6e, 0x1a, 0x6d, 0xbb, 0x6b, 0x18, 0x9a, 0xd1, 0x2e, 0x98, 0x16, 0xb6, 0xfb, 0x56, 0x74,
+ 0x81, 0x4f, 0xa2, 0xad, 0x66, 0xf7, 0x71, 0x01, 0x77, 0x2c, 0xf7, 0x20, 0xb4, 0x2a, 0x7f, 0xd0,
+ 0xd5, 0x3a, 0xd8, 0x71, 0x95, 0x8e, 0xc5, 0x26, 0x48, 0xbf, 0x4e, 0x40, 0xe6, 0x21, 0x67, 0x7a,
+ 0x9b, 0x13, 0x8d, 0xce, 0x80, 0xa8, 0xa9, 0x59, 0x71, 0x41, 0x58, 0x4c, 0xad, 0xc6, 0x3e, 0x2f,
+ 0x8a, 0xb2, 0xa8, 0xa9, 0xe8, 0x1c, 0x4c, 0x19, 0x4a, 0x07, 0x67, 0x05, 0xaf, 0x3b, 0x26, 0xd3,
+ 0x0e, 0x34, 0x0f, 0xd3, 0xfb, 0xd8, 0x76, 0x34, 0xd3, 0xc8, 0xc6, 0x16, 0x84, 0xc5, 0x38, 0x19,
+ 0x13, 0x64, 0xaf, 0x0f, 0xdd, 0x82, 0x74, 0xcb, 0xc6, 0x8a, 0x8b, 0x1b, 0xe4, 0xdd, 0xd9, 0xa9,
+ 0x05, 0x61, 0x31, 0xbd, 0x9c, 0xcb, 0xf3, 0x4d, 0xf4, 0x1c, 0xcb, 0x6f, 0x7b, 0x8e, 0x31, 0x68,
+ 0x60, 0x36, 0xa4, 0x97, 0x20, 0x74, 0x2d, 0xd5, 0x47, 0x88, 0x8f, 0x89, 0xc0, 0x6c, 0x28, 0xc2,
+ 0x47, 0x90, 0xd0, 0x95, 0x26, 0xd6, 0x9d, 0x6c, 0x62, 0x21, 0xb6, 0x98, 0x5e, 0xfe, 0x30, 0x3f,
+ 0x32, 0x86, 0xf2, 0x61, 0x46, 0xf2, 0x9b, 0xd4, 0xba, 0x6c, 0xb8, 0xf6, 0x01, 0x5b, 0x1e, 0xc7,
+ 0x43, 0x0f, 0x20, 0x65, 0xe9, 0x4a, 0x0b, 0x77, 0xb0, 0xe1, 0x66, 0xa7, 0xa9, 0x67, 0xd7, 0x27,
+ 0x04, 0xaf, 0x79, 0xf6, 0x72, 0x0f, 0x0a, 0xdd, 0x84, 0x29, 0x12, 0x08, 0xd9, 0x24, 0xf5, 0xf7,
+ 0x4a, 0x04, 0xe4, 0x96, 0xad, 0x62, 0x1b, 0xab, 0x77, 0xcc, 0xa6, 0x4c, 0xcd, 0xd0, 0x0e, 0x80,
+ 0xa5, 0xd8, 0x4a, 0x07, 0x93, 0xb8, 0xcb, 0xa6, 0x28, 0xc8, 0xfb, 0x11, 0x20, 0xbe, 0x3f, 0x9e,
+ 0x21, 0x5b, 0x69, 0x00, 0x28, 0xf7, 0x01, 0xa4, 0x03, 0x4c, 0xa0, 0x0c, 0xc4, 0x9e, 0xe2, 0x03,
+ 0x16, 0x11, 0x32, 0x79, 0x44, 0xff, 0x07, 0xf1, 0x7d, 0x45, 0xef, 0x62, 0x16, 0x3c, 0x32, 0x6b,
+ 0xac, 0x88, 0xd7, 0x85, 0x95, 0x37, 0xc2, 0x3f, 0x8b, 0xbf, 0x13, 0x60, 0xd1, 0x7f, 0x2d, 0x73,
+ 0x46, 0xb1, 0x34, 0x27, 0xdf, 0x32, 0x3b, 0x85, 0x43, 0x41, 0x58, 0xb1, 0x6c, 0xf3, 0x09, 0x6e,
+ 0xb9, 0x4e, 0xe1, 0x25, 0x7f, 0x7a, 0x55, 0xb0, 0x71, 0x9b, 0x44, 0x7e, 0xe1, 0x25, 0x7b, 0x78,
+ 0xe5, 0x27, 0x09, 0xcf, 0xca, 0x29, 0xbc, 0x3c, 0x94, 0x37, 0x5e, 0xa1, 0x7b, 0x03, 0xa0, 0x74,
+ 0xb3, 0xc5, 0x8e, 0x51, 0xe1, 0xa5, 0xf7, 0x38, 0x26, 0xdc, 0x82, 0x20, 0xfd, 0x45, 0x80, 0xf3,
+ 0x43, 0xb7, 0x11, 0x7d, 0x04, 0xb3, 0x1d, 0xc5, 0x50, 0xda, 0x58, 0x6d, 0xf0, 0xa3, 0x4f, 0x29,
+ 0x4a, 0x2f, 0xbf, 0x17, 0xb1, 0x03, 0xf7, 0x98, 0xd5, 0x1a, 0x33, 0xda, 0x38, 0x21, 0x9f, 0xea,
+ 0xf4, 0xf5, 0xa0, 0x8f, 0x21, 0xc3, 0x11, 0x1b, 0x0e, 0xd6, 0x71, 0xcb, 0x35, 0x6d, 0xca, 0x74,
+ 0x7a, 0x39, 0x1f, 0x01, 0xcd, 0x11, 0xea, 0xdc, 0x6a, 0xe3, 0x84, 0x3c, 0xdb, 0xea, 0xef, 0x5a,
+ 0x4d, 0x07, 0x42, 0x59, 0xfa, 0x54, 0x84, 0x53, 0xfd, 0xee, 0xa0, 0xcb, 0x70, 0xd2, 0x7b, 0x39,
+ 0x4d, 0x04, 0x6c, 0x8b, 0xd3, 0xbc, 0xaf, 0x4a, 0x52, 0x41, 0x09, 0x12, 0x2d, 0xd3, 0x78, 0xac,
+ 0xb5, 0x69, 0x26, 0x48, 0x2f, 0x5f, 0x1b, 0xcf, 0xab, 0x35, 0x6a, 0x23, 0x73, 0x5b, 0x74, 0xdf,
+ 0x3f, 0xad, 0x53, 0x34, 0x70, 0x3f, 0x98, 0x88, 0xb6, 0xe0, 0x59, 0xf5, 0x8e, 0xe9, 0x31, 0x02,
+ 0x57, 0xfa, 0x83, 0x00, 0xb3, 0x21, 0xf6, 0x10, 0x82, 0xa9, 0x17, 0xa6, 0xc1, 0x73, 0xa1, 0x4c,
+ 0x9f, 0xd1, 0x2e, 0x9c, 0xf2, 0xe8, 0xe1, 0xde, 0x8b, 0xd4, 0xfb, 0xe2, 0x64, 0x3b, 0xe3, 0xb5,
+ 0x83, 0xab, 0x98, 0x69, 0x05, 0xfb, 0x72, 0xb7, 0x00, 0x1d, 0x9e, 0x34, 0xd1, 0x9a, 0x7e, 0x31,
+ 0x0d, 0xd0, 0xcb, 0x19, 0xe8, 0x22, 0x4c, 0x3b, 0x2e, 0xb6, 0x1a, 0x9a, 0xda, 0xcb, 0xee, 0xa2,
+ 0x9c, 0x20, 0x7d, 0x15, 0x15, 0x55, 0x00, 0x76, 0x15, 0xd5, 0x34, 0xad, 0xc6, 0x13, 0xb3, 0xc9,
+ 0xc3, 0x6d, 0x31, 0x62, 0x51, 0x1b, 0xd4, 0xe0, 0x8e, 0xd9, 0xdc, 0x38, 0x21, 0xa7, 0x76, 0xbd,
+ 0x06, 0x5a, 0x87, 0x94, 0x63, 0x29, 0xf6, 0x53, 0x8a, 0xc4, 0x42, 0xe4, 0x2b, 0x11, 0x48, 0x75,
+ 0x32, 0x9f, 0x01, 0x25, 0x1d, 0xfe, 0x8c, 0x36, 0x21, 0x6d, 0x1d, 0xf4, 0x90, 0x98, 0xa6, 0x44,
+ 0x25, 0xc9, 0xda, 0x41, 0x00, 0x0b, 0xb8, 0x3d, 0x41, 0x5b, 0x83, 0xe4, 0xae, 0xb6, 0x8f, 0x29,
+ 0x14, 0x13, 0x97, 0x77, 0xa3, 0x96, 0xa7, 0xed, 0x63, 0x86, 0x33, 0xbd, 0xcb, 0x1e, 0xd1, 0x2d,
+ 0x98, 0xb6, 0xb4, 0x36, 0xc5, 0x48, 0x50, 0x8c, 0xff, 0x8f, 0x72, 0x47, 0x6b, 0x33, 0x88, 0x84,
+ 0x45, 0x9f, 0xd0, 0x1d, 0x48, 0xb3, 0x25, 0xd9, 0x14, 0x25, 0x3d, 0x16, 0xd1, 0x74, 0x49, 0x32,
+ 0x27, 0xda, 0xf1, 0x1a, 0xa8, 0x06, 0x33, 0x0c, 0xcb, 0xd9, 0xd3, 0x29, 0x1a, 0x93, 0xa6, 0xa5,
+ 0x71, 0xd0, 0xea, 0x7b, 0x3a, 0xc3, 0x63, 0xee, 0xb0, 0x26, 0x89, 0x02, 0xcb, 0xc6, 0x8e, 0x6b,
+ 0x52, 0xb8, 0x93, 0x63, 0x39, 0x57, 0xa3, 0x06, 0xdc, 0x39, 0xcb, 0x6b, 0x20, 0xd9, 0x3f, 0xdf,
+ 0x4c, 0xdd, 0xbe, 0x3e, 0xb6, 0xba, 0x0d, 0xd7, 0xe1, 0xfb, 0x00, 0x4e, 0x6b, 0x17, 0xab, 0x5d,
+ 0x5d, 0x33, 0xda, 0xd9, 0xd4, 0x58, 0xd9, 0xe7, 0x8e, 0xd9, 0xac, 0xfb, 0x36, 0x5c, 0xec, 0x7a,
+ 0x20, 0xe8, 0x9b, 0x70, 0xd6, 0xb2, 0xb1, 0x8d, 0xf7, 0xba, 0x9a, 0xa3, 0xb9, 0xb8, 0xc1, 0x8f,
+ 0x88, 0x93, 0x85, 0x85, 0x18, 0x3b, 0x23, 0x82, 0x7c, 0x26, 0x38, 0xa3, 0x4e, 0xcf, 0xcb, 0x71,
+ 0x92, 0xcd, 0x2a, 0x40, 0xf2, 0x89, 0xd9, 0x6c, 0xb8, 0x07, 0x16, 0x96, 0x7e, 0x23, 0xc0, 0xe9,
+ 0x43, 0x9a, 0x4c, 0x52, 0x4f, 0xaf, 0x0c, 0xe3, 0x15, 0xd8, 0x1c, 0x24, 0x68, 0xc9, 0xca, 0x52,
+ 0x4e, 0x4a, 0xe6, 0x2d, 0xb4, 0x00, 0x69, 0x15, 0x3b, 0x2d, 0x5b, 0xb3, 0x5c, 0xaf, 0x3a, 0x4b,
+ 0xc9, 0xc1, 0x2e, 0x24, 0x03, 0xec, 0x2b, 0xba, 0xa6, 0x52, 0xfd, 0xe3, 0xe7, 0x68, 0x39, 0x6a,
+ 0x57, 0x3d, 0x5f, 0x1e, 0xf8, 0x96, 0x72, 0x00, 0x45, 0xfa, 0x4c, 0x80, 0x33, 0x03, 0xe6, 0xa0,
+ 0x75, 0x88, 0xdb, 0xb8, 0x8d, 0x9f, 0x73, 0x31, 0x8c, 0x52, 0x2c, 0x99, 0xcc, 0xed, 0x99, 0x6f,
+ 0x9c, 0x90, 0x99, 0x39, 0xda, 0x80, 0x04, 0x25, 0xcc, 0x19, 0x53, 0xfa, 0x1e, 0x90, 0xc9, 0x7d,
+ 0x40, 0xdc, 0x7e, 0xf5, 0x34, 0xcc, 0xf6, 0xfc, 0x66, 0xa4, 0x5f, 0x85, 0xd9, 0xd0, 0x8b, 0x51,
+ 0x16, 0xa6, 0xe9, 0x8b, 0xb1, 0x93, 0x15, 0x28, 0xbd, 0x5e, 0x53, 0xba, 0x02, 0xb3, 0x21, 0x70,
+ 0xb2, 0x15, 0xdc, 0x39, 0x36, 0x97, 0xb7, 0xa4, 0xdf, 0x07, 0xea, 0xec, 0x7b, 0xd8, 0x55, 0x88,
+ 0x97, 0xe8, 0x12, 0x24, 0xbd, 0xaa, 0x22, 0x58, 0x56, 0xfb, 0x9d, 0xc1, 0xd2, 0x5a, 0xf4, 0x4a,
+ 0xeb, 0x58, 0xaf, 0xb4, 0xfe, 0x18, 0x4e, 0xf1, 0xd2, 0xda, 0xab, 0x33, 0x58, 0x4e, 0x2d, 0x8c,
+ 0x27, 0x39, 0x5b, 0xde, 0x55, 0x82, 0xc1, 0xce, 0x30, 0x2c, 0x4f, 0xee, 0x6f, 0x43, 0xbc, 0x6d,
+ 0x2b, 0xd6, 0x2e, 0x8f, 0x8a, 0x6b, 0x63, 0x56, 0xb5, 0xb7, 0x89, 0x0d, 0x03, 0x64, 0xf6, 0xc4,
+ 0x4b, 0x15, 0xeb, 0x38, 0xe0, 0x65, 0xfc, 0x38, 0x5e, 0x32, 0x2c, 0xcf, 0xcb, 0x1a, 0xc4, 0x1d,
+ 0x97, 0xf0, 0x47, 0x92, 0xee, 0xa9, 0xc8, 0x54, 0x12, 0xde, 0x82, 0x7c, 0x9d, 0x18, 0x73, 0x77,
+ 0x29, 0x10, 0x7a, 0x37, 0x54, 0xe6, 0x4c, 0xf7, 0x36, 0xa6, 0xaf, 0xd6, 0x69, 0xf4, 0x95, 0xd8,
+ 0x2c, 0x93, 0x7d, 0x7b, 0xd2, 0xd7, 0xfb, 0xe7, 0x84, 0x2b, 0x7d, 0x00, 0x12, 0x7d, 0x0b, 0xc0,
+ 0x71, 0x15, 0xdb, 0x65, 0xb7, 0x9e, 0xd4, 0x78, 0xb7, 0x9e, 0x14, 0x35, 0xa1, 0x97, 0x9e, 0x15,
+ 0x48, 0x62, 0x43, 0x65, 0xd6, 0x30, 0x9e, 0xf5, 0x34, 0x36, 0x54, 0x6a, 0x1b, 0x20, 0xa1, 0xdb,
+ 0xd5, 0x54, 0x2a, 0x46, 0x21, 0x12, 0x76, 0xba, 0x9a, 0x9a, 0xbb, 0x09, 0xb3, 0xa1, 0x25, 0x4c,
+ 0x54, 0x87, 0x5c, 0x87, 0x38, 0xdd, 0x00, 0x94, 0x86, 0xe9, 0x9d, 0xea, 0xdd, 0xea, 0xd6, 0xc3,
+ 0x6a, 0xe6, 0x04, 0x69, 0xd4, 0xca, 0xd5, 0x52, 0xa5, 0x7a, 0x3b, 0x23, 0x90, 0x86, 0xbc, 0x53,
+ 0xad, 0x92, 0x86, 0x88, 0x92, 0x30, 0x55, 0xda, 0xaa, 0x96, 0x33, 0x31, 0xc9, 0x80, 0x4c, 0x38,
+ 0x3e, 0x88, 0xd3, 0xfe, 0xed, 0xb8, 0xaf, 0x96, 0x89, 0xc9, 0x69, 0x7f, 0xa0, 0xa2, 0xa2, 0xf3,
+ 0x10, 0xc7, 0xb6, 0xcd, 0x4b, 0x67, 0x3e, 0x81, 0xf5, 0x90, 0x4b, 0xae, 0x4a, 0x0a, 0x3b, 0x72,
+ 0x8e, 0x92, 0xfc, 0x92, 0x4b, 0x3a, 0xa4, 0x87, 0x30, 0xd3, 0x17, 0xe1, 0x24, 0x9b, 0x19, 0xa6,
+ 0xca, 0xcf, 0x79, 0x7a, 0xf9, 0xea, 0x98, 0x3b, 0x5f, 0x35, 0x55, 0x2f, 0xdc, 0xa8, 0xb9, 0xf4,
+ 0x67, 0x11, 0x4e, 0x06, 0x07, 0x07, 0x16, 0x63, 0x31, 0xbf, 0x18, 0x1b, 0x2a, 0x4a, 0xa2, 0x27,
+ 0x4a, 0xb1, 0x81, 0xa2, 0x84, 0x72, 0x90, 0x20, 0xca, 0xa2, 0xa9, 0x4c, 0x06, 0xb8, 0x0f, 0x4f,
+ 0xcc, 0x66, 0x45, 0xed, 0x1d, 0xa2, 0xf8, 0x44, 0x87, 0x88, 0xb8, 0x9b, 0x27, 0xff, 0x1c, 0x3e,
+ 0x44, 0x3e, 0xc5, 0x89, 0x30, 0xc5, 0xd2, 0x53, 0x48, 0xf9, 0x36, 0xe8, 0x02, 0x9c, 0xab, 0x6e,
+ 0x95, 0xca, 0x8d, 0xfa, 0x76, 0x71, 0x7b, 0xa7, 0xde, 0xd8, 0xa9, 0xd6, 0x6b, 0xe5, 0xb5, 0xca,
+ 0x7a, 0xa5, 0x5c, 0x62, 0x71, 0xb0, 0xba, 0xb9, 0xb5, 0x76, 0xb7, 0x5c, 0xca, 0x08, 0xe8, 0x24,
+ 0x24, 0x49, 0x1c, 0x14, 0x57, 0x37, 0xcb, 0x19, 0x31, 0x18, 0x15, 0x31, 0x34, 0x03, 0xa9, 0xb5,
+ 0xad, 0x7b, 0xb5, 0xcd, 0xf2, 0x76, 0xb9, 0x94, 0x99, 0x42, 0x00, 0x89, 0xf5, 0x62, 0x65, 0xb3,
+ 0x5c, 0xca, 0xc4, 0xa5, 0xdf, 0x0a, 0x30, 0xbf, 0x46, 0xd3, 0x5a, 0xf8, 0xba, 0x26, 0xe3, 0xbd,
+ 0x2e, 0x76, 0x5c, 0xa2, 0x26, 0x96, 0x62, 0x93, 0xdb, 0x3b, 0x63, 0xfb, 0xfd, 0xcf, 0x8b, 0xe2,
+ 0x97, 0xc5, 0x25, 0x34, 0xf6, 0x45, 0x55, 0xe6, 0xf6, 0xa8, 0x16, 0xc8, 0xe6, 0xe2, 0x58, 0x19,
+ 0x2e, 0x0c, 0xc5, 0xea, 0x6e, 0x1f, 0x45, 0xfa, 0x0e, 0xe4, 0x6e, 0x63, 0x77, 0x98, 0xe7, 0xa5,
+ 0xbe, 0x0f, 0x32, 0xdc, 0xef, 0xf1, 0x2f, 0xd8, 0xbc, 0x76, 0xc8, 0x86, 0x24, 0xc6, 0x57, 0x17,
+ 0xe9, 0x4b, 0x11, 0xa4, 0x8a, 0xe1, 0xb8, 0x8a, 0xe1, 0x6a, 0x23, 0x08, 0xfc, 0x0f, 0xbb, 0x81,
+ 0xde, 0x81, 0xb4, 0x46, 0xbd, 0x68, 0xe1, 0x5e, 0xf4, 0x8a, 0x59, 0x41, 0x06, 0xaf, 0xbb, 0xa2,
+ 0xa2, 0x79, 0x00, 0x9b, 0xf9, 0x43, 0xe6, 0xc4, 0x69, 0x9e, 0x49, 0xf1, 0x9e, 0x8a, 0x8a, 0xf6,
+ 0xfa, 0x72, 0x35, 0xbb, 0x55, 0xde, 0x8f, 0xd8, 0x9c, 0xe8, 0xa5, 0x8f, 0xca, 0xde, 0xc7, 0xcd,
+ 0x8c, 0x3f, 0x10, 0x61, 0x31, 0xe0, 0x41, 0xc5, 0xd0, 0x35, 0xe3, 0x7f, 0x31, 0x86, 0xd1, 0xa5,
+ 0x01, 0xdb, 0x37, 0x62, 0xeb, 0xa6, 0x42, 0x5b, 0x27, 0xed, 0xc1, 0xfc, 0x0e, 0xfd, 0x90, 0x37,
+ 0x6c, 0xf1, 0xb5, 0x50, 0x11, 0x75, 0xfc, 0x63, 0xf7, 0x4b, 0x01, 0x2e, 0x6e, 0x6a, 0xce, 0xa1,
+ 0x83, 0xe7, 0xfc, 0xfb, 0xf9, 0xbe, 0x00, 0x29, 0x4b, 0x69, 0xe3, 0x86, 0xa3, 0xbd, 0xc0, 0x3c,
+ 0xf0, 0x93, 0xa4, 0xa3, 0xae, 0xbd, 0x20, 0xd5, 0x1f, 0xd0, 0x41, 0xd7, 0x7c, 0x8a, 0xbd, 0xea,
+ 0x9d, 0x4e, 0xdf, 0x26, 0x1d, 0xd2, 0xcf, 0x05, 0x98, 0x1f, 0xe2, 0xa6, 0x63, 0x99, 0x86, 0x83,
+ 0x91, 0x0c, 0x29, 0xff, 0xe3, 0x39, 0xd7, 0xa9, 0xa3, 0x70, 0x13, 0x93, 0x7b, 0x30, 0xe8, 0x2a,
+ 0xcc, 0x1a, 0xf8, 0xb9, 0xdb, 0x08, 0x78, 0x16, 0x90, 0xd1, 0x19, 0x32, 0x56, 0xf3, 0x5d, 0xfc,
+ 0x2e, 0xcc, 0x97, 0x68, 0xb9, 0xf6, 0x5f, 0x4a, 0x1e, 0xcb, 0xff, 0x38, 0x0d, 0xe7, 0xc2, 0x46,
+ 0x75, 0x6c, 0xef, 0x6b, 0x2d, 0x8c, 0x5e, 0x8b, 0x30, 0x37, 0x58, 0x1b, 0xd0, 0x8d, 0xa8, 0xd2,
+ 0x74, 0x94, 0xa4, 0xe4, 0x26, 0xe5, 0x58, 0xfa, 0x95, 0xf0, 0xb6, 0x98, 0x61, 0x11, 0x71, 0x6d,
+ 0xc1, 0xa3, 0xfa, 0x7b, 0x7f, 0xfa, 0xdb, 0x8f, 0xc5, 0x1f, 0x09, 0xd2, 0x75, 0xff, 0x97, 0x81,
+ 0x97, 0x6c, 0xca, 0x4d, 0xff, 0x6b, 0xe6, 0x92, 0xff, 0x41, 0x74, 0x69, 0xc0, 0xb7, 0xcb, 0x15,
+ 0x3f, 0xa2, 0x1f, 0xad, 0x4b, 0x2b, 0xa3, 0x50, 0x7a, 0xdf, 0x42, 0x47, 0xe3, 0xa0, 0x1f, 0x8a,
+ 0x70, 0x66, 0x80, 0x22, 0xa1, 0xa8, 0x2f, 0x74, 0xc3, 0x55, 0x6c, 0x72, 0xb2, 0xbe, 0x2f, 0xbc,
+ 0x2d, 0xd2, 0x6d, 0xa7, 0x04, 0x3d, 0x47, 0x01, 0x7e, 0x48, 0xef, 0x40, 0x76, 0x06, 0x7c, 0xd8,
+ 0x5d, 0x7a, 0xf5, 0xe8, 0x06, 0x5a, 0x19, 0x6e, 0x1b, 0xe0, 0x64, 0xa0, 0x35, 0xfa, 0xbb, 0x08,
+ 0x17, 0x46, 0x68, 0x04, 0x2a, 0x1e, 0x5b, 0x5f, 0x72, 0xf3, 0x1e, 0x44, 0xe0, 0x07, 0xa0, 0xbc,
+ 0x5f, 0xef, 0x4a, 0x7f, 0x15, 0xde, 0x14, 0xaf, 0xc0, 0xd9, 0x70, 0x4d, 0x5f, 0xee, 0x58, 0xee,
+ 0x01, 0x3a, 0x74, 0xdb, 0xe4, 0xac, 0xbd, 0x2d, 0x66, 0xc8, 0x7f, 0xd7, 0x16, 0x7a, 0x5a, 0x45,
+ 0x89, 0xfc, 0x89, 0x20, 0x95, 0x8e, 0xca, 0xe4, 0x8a, 0xd6, 0x5b, 0xcb, 0x8a, 0xb0, 0xf4, 0xe8,
+ 0xae, 0xb4, 0x7e, 0x74, 0x62, 0x43, 0x60, 0xe8, 0x93, 0x18, 0x5c, 0x8e, 0x54, 0x42, 0x74, 0x7b,
+ 0x7c, 0xb6, 0x47, 0x6a, 0x69, 0x14, 0xe7, 0x5f, 0x4c, 0xc8, 0xf9, 0xe0, 0x63, 0xfd, 0x5a, 0x90,
+ 0x36, 0x8f, 0x71, 0x20, 0xb5, 0xf0, 0x62, 0x02, 0x47, 0xfd, 0x81, 0x74, 0xe7, 0xc8, 0x09, 0x63,
+ 0x04, 0x2e, 0xfa, 0x4c, 0x84, 0xb9, 0xc1, 0x42, 0x1c, 0x99, 0x2d, 0x47, 0xea, 0xf7, 0xe4, 0x09,
+ 0xe0, 0xb5, 0xf0, 0xb6, 0x98, 0xec, 0xa3, 0xf3, 0x67, 0x42, 0xae, 0xd8, 0x5b, 0xb4, 0x37, 0x94,
+ 0x9f, 0x30, 0x88, 0x7b, 0x1c, 0x6e, 0xe5, 0xd6, 0xc6, 0x80, 0x8b, 0x0c, 0xe4, 0x1e, 0x79, 0x3f,
+ 0x15, 0xe1, 0xec, 0x40, 0xa9, 0x46, 0x51, 0xbf, 0x44, 0x8e, 0xaa, 0x43, 0x72, 0x37, 0x8e, 0x66,
+ 0xcc, 0xaa, 0x03, 0xe9, 0x53, 0xe1, 0x6d, 0x91, 0xd7, 0x21, 0x87, 0x53, 0xe9, 0x64, 0x91, 0xd3,
+ 0x9f, 0x4a, 0x27, 0x8d, 0x67, 0xf4, 0x85, 0x00, 0x73, 0x83, 0xeb, 0x84, 0xc8, 0xd8, 0x1a, 0x59,
+ 0x5e, 0xe4, 0xe6, 0xf2, 0x03, 0x0f, 0x6a, 0x58, 0x43, 0x96, 0x8e, 0xa1, 0x21, 0x4b, 0xc7, 0xd0,
+ 0x90, 0xdc, 0xdd, 0x37, 0xc5, 0x73, 0x43, 0x6a, 0x9d, 0x3f, 0x16, 0xf3, 0xbb, 0xae, 0x6b, 0x39,
+ 0x2b, 0x85, 0xc2, 0xb3, 0x67, 0xcf, 0xc2, 0x85, 0x90, 0xd2, 0x75, 0x77, 0xd9, 0x1f, 0x10, 0xbc,
+ 0x47, 0xd0, 0x1e, 0x9b, 0x76, 0x67, 0xf5, 0x13, 0x01, 0x2e, 0xb7, 0xcc, 0xce, 0x68, 0xc2, 0x56,
+ 0xe7, 0x0e, 0x05, 0x44, 0x8d, 0x70, 0x53, 0x13, 0x1e, 0x95, 0xb9, 0x61, 0xdb, 0xd4, 0x15, 0xa3,
+ 0x9d, 0x37, 0xed, 0x76, 0xa1, 0x8d, 0x0d, 0xca, 0x5c, 0xa1, 0xf7, 0xfa, 0x21, 0x7f, 0xb6, 0xf0,
+ 0xa1, 0xd7, 0xd1, 0x4c, 0x50, 0x8b, 0xaf, 0xfd, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x35, 0x2a, 0x69,
+ 0x73, 0xdf, 0x21, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -2047,8 +2080,7 @@
// Instantiates a template and begins execution.
//
// This method is equivalent to executing the sequence
- // [CreateWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.CreateWorkflowTemplate],
- // [InstantiateWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.InstantiateWorkflowTemplate],
+ // [CreateWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.CreateWorkflowTemplate], [InstantiateWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.InstantiateWorkflowTemplate],
// [DeleteWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.DeleteWorkflowTemplate].
//
// The returned Operation can be used to track execution of
@@ -2183,8 +2215,7 @@
// Instantiates a template and begins execution.
//
// This method is equivalent to executing the sequence
- // [CreateWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.CreateWorkflowTemplate],
- // [InstantiateWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.InstantiateWorkflowTemplate],
+ // [CreateWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.CreateWorkflowTemplate], [InstantiateWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.InstantiateWorkflowTemplate],
// [DeleteWorkflowTemplate][google.cloud.dataproc.v1beta2.WorkflowTemplateService.DeleteWorkflowTemplate].
//
// The returned Operation can be used to track execution of
diff --git a/googleapis/cloud/kms/v1/resources.pb.go b/googleapis/cloud/kms/v1/resources.pb.go
index 09d471b..58b104d 100644
--- a/googleapis/cloud/kms/v1/resources.pb.go
+++ b/googleapis/cloud/kms/v1/resources.pb.go
@@ -210,6 +210,8 @@
CryptoKeyVersion_EC_SIGN_P256_SHA256 CryptoKeyVersion_CryptoKeyVersionAlgorithm = 12
// ECDSA on the NIST P-384 curve with a SHA384 digest.
CryptoKeyVersion_EC_SIGN_P384_SHA384 CryptoKeyVersion_CryptoKeyVersionAlgorithm = 13
+ // Algorithm representing symmetric encryption by an external key manager.
+ CryptoKeyVersion_EXTERNAL_SYMMETRIC_ENCRYPTION CryptoKeyVersion_CryptoKeyVersionAlgorithm = 18
)
var CryptoKeyVersion_CryptoKeyVersionAlgorithm_name = map[int32]string{
@@ -229,6 +231,7 @@
17: "RSA_DECRYPT_OAEP_4096_SHA512",
12: "EC_SIGN_P256_SHA256",
13: "EC_SIGN_P384_SHA384",
+ 18: "EXTERNAL_SYMMETRIC_ENCRYPTION",
}
var CryptoKeyVersion_CryptoKeyVersionAlgorithm_value = map[string]int32{
@@ -248,6 +251,7 @@
"RSA_DECRYPT_OAEP_4096_SHA512": 17,
"EC_SIGN_P256_SHA256": 12,
"EC_SIGN_P384_SHA384": 13,
+ "EXTERNAL_SYMMETRIC_ENCRYPTION": 18,
}
func (x CryptoKeyVersion_CryptoKeyVersionAlgorithm) String() string {
@@ -813,10 +817,14 @@
// Output only. The root cause of an import failure. Only present if
// [state][google.cloud.kms.v1.CryptoKeyVersion.state] is
// [IMPORT_FAILED][google.cloud.kms.v1.CryptoKeyVersion.CryptoKeyVersionState.IMPORT_FAILED].
- ImportFailureReason string `protobuf:"bytes,16,opt,name=import_failure_reason,json=importFailureReason,proto3" json:"import_failure_reason,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ ImportFailureReason string `protobuf:"bytes,16,opt,name=import_failure_reason,json=importFailureReason,proto3" json:"import_failure_reason,omitempty"`
+ // ExternalProtectionLevelOptions stores a group of additional fields for
+ // configuring a [CryptoKeyVersion][google.cloud.kms.v1.CryptoKeyVersion] that are specific to the
+ // [EXTERNAL][google.cloud.kms.v1.ProtectionLevel.EXTERNAL] protection level.
+ ExternalProtectionLevelOptions *ExternalProtectionLevelOptions `protobuf:"bytes,17,opt,name=external_protection_level_options,json=externalProtectionLevelOptions,proto3" json:"external_protection_level_options,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *CryptoKeyVersion) Reset() { *m = CryptoKeyVersion{} }
@@ -928,6 +936,13 @@
return ""
}
+func (m *CryptoKeyVersion) GetExternalProtectionLevelOptions() *ExternalProtectionLevelOptions {
+ if m != nil {
+ return m.ExternalProtectionLevelOptions
+ }
+ return nil
+}
+
// The public key for a given [CryptoKeyVersion][google.cloud.kms.v1.CryptoKeyVersion]. Obtained via
// [GetPublicKey][google.cloud.kms.v1.KeyManagementService.GetPublicKey].
type PublicKey struct {
@@ -1191,6 +1206,49 @@
return ""
}
+// ExternalProtectionLevelOptions stores a group of additional fields for
+// configuring a [CryptoKeyVersion][google.cloud.kms.v1.CryptoKeyVersion] that are specific to the
+// [EXTERNAL][google.cloud.kms.v1.ProtectionLevel.EXTERNAL] protection level.
+type ExternalProtectionLevelOptions struct {
+ // The URI for an external resource that this [CryptoKeyVersion][google.cloud.kms.v1.CryptoKeyVersion] represents.
+ ExternalKeyUri string `protobuf:"bytes,1,opt,name=external_key_uri,json=externalKeyUri,proto3" json:"external_key_uri,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *ExternalProtectionLevelOptions) Reset() { *m = ExternalProtectionLevelOptions{} }
+func (m *ExternalProtectionLevelOptions) String() string { return proto.CompactTextString(m) }
+func (*ExternalProtectionLevelOptions) ProtoMessage() {}
+func (*ExternalProtectionLevelOptions) Descriptor() ([]byte, []int) {
+ return fileDescriptor_e40e1384d35a80c5, []int{7}
+}
+
+func (m *ExternalProtectionLevelOptions) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ExternalProtectionLevelOptions.Unmarshal(m, b)
+}
+func (m *ExternalProtectionLevelOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ExternalProtectionLevelOptions.Marshal(b, m, deterministic)
+}
+func (m *ExternalProtectionLevelOptions) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ExternalProtectionLevelOptions.Merge(m, src)
+}
+func (m *ExternalProtectionLevelOptions) XXX_Size() int {
+ return xxx_messageInfo_ExternalProtectionLevelOptions.Size(m)
+}
+func (m *ExternalProtectionLevelOptions) XXX_DiscardUnknown() {
+ xxx_messageInfo_ExternalProtectionLevelOptions.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ExternalProtectionLevelOptions proto.InternalMessageInfo
+
+func (m *ExternalProtectionLevelOptions) GetExternalKeyUri() string {
+ if m != nil {
+ return m.ExternalKeyUri
+ }
+ return ""
+}
+
func init() {
proto.RegisterEnum("google.cloud.kms.v1.ProtectionLevel", ProtectionLevel_name, ProtectionLevel_value)
proto.RegisterEnum("google.cloud.kms.v1.CryptoKey_CryptoKeyPurpose", CryptoKey_CryptoKeyPurpose_name, CryptoKey_CryptoKeyPurpose_value)
@@ -1209,6 +1267,7 @@
proto.RegisterType((*PublicKey)(nil), "google.cloud.kms.v1.PublicKey")
proto.RegisterType((*ImportJob)(nil), "google.cloud.kms.v1.ImportJob")
proto.RegisterType((*ImportJob_WrappingPublicKey)(nil), "google.cloud.kms.v1.ImportJob.WrappingPublicKey")
+ proto.RegisterType((*ExternalProtectionLevelOptions)(nil), "google.cloud.kms.v1.ExternalProtectionLevelOptions")
}
func init() {
@@ -1216,115 +1275,121 @@
}
var fileDescriptor_e40e1384d35a80c5 = []byte{
- // 1745 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4b, 0x77, 0xdb, 0xc6,
- 0x15, 0x0e, 0x48, 0x8a, 0x14, 0x2f, 0xf5, 0x80, 0x46, 0x76, 0x4c, 0xab, 0x8e, 0xad, 0x32, 0xc9,
- 0xa9, 0x4e, 0x9a, 0x10, 0x16, 0xfd, 0x88, 0x63, 0x9f, 0xd3, 0x06, 0x24, 0x21, 0x89, 0xe6, 0x03,
- 0x2c, 0x00, 0xd1, 0x72, 0xeb, 0x16, 0x07, 0xa4, 0xc6, 0x34, 0x22, 0xe2, 0x71, 0x00, 0x50, 0x35,
- 0xab, 0x6a, 0xd3, 0xff, 0xd0, 0x5d, 0x57, 0x5d, 0x74, 0x91, 0x7f, 0xd1, 0x55, 0xcf, 0xe9, 0xa6,
- 0x3f, 0xa0, 0x9b, 0xac, 0xbd, 0xeb, 0xae, 0xcb, 0x9c, 0x19, 0x0c, 0x48, 0x90, 0xa2, 0x5e, 0x89,
- 0xb3, 0xd2, 0xf0, 0xde, 0xfb, 0x7d, 0x77, 0xe6, 0xce, 0x7d, 0x0c, 0x04, 0x1f, 0xf7, 0x1d, 0xa7,
- 0x3f, 0xc0, 0x42, 0x6f, 0xe0, 0x0c, 0x0f, 0x85, 0x23, 0xcb, 0x17, 0x8e, 0xb7, 0x05, 0x0f, 0xfb,
- 0xce, 0xd0, 0xeb, 0x61, 0xbf, 0xe8, 0x7a, 0x4e, 0xe0, 0xa0, 0xf5, 0xd0, 0xa8, 0x48, 0x8d, 0x8a,
- 0x47, 0x96, 0x5f, 0x3c, 0xde, 0xde, 0xb8, 0xc3, 0x90, 0x86, 0x6b, 0x0a, 0x86, 0x6d, 0x3b, 0x81,
- 0x11, 0x98, 0x8e, 0xcd, 0x20, 0x1b, 0xf7, 0x62, 0xda, 0xd7, 0x26, 0x1e, 0x1c, 0xea, 0x5d, 0xfc,
- 0xc6, 0x38, 0x36, 0x1d, 0x8f, 0x19, 0xdc, 0x8e, 0x19, 0x44, 0xfe, 0x98, 0xea, 0x2e, 0x53, 0xd1,
- 0x5f, 0xdd, 0xe1, 0x6b, 0xe1, 0x70, 0xe8, 0x51, 0xf2, 0x19, 0xee, 0xb1, 0x3e, 0x30, 0x2d, 0xec,
- 0x07, 0x86, 0xe5, 0x86, 0x06, 0x85, 0x7f, 0x71, 0x90, 0xa9, 0xe3, 0x91, 0x62, 0xda, 0x7d, 0x74,
- 0x0b, 0x52, 0xb6, 0x61, 0xe1, 0x3c, 0xb7, 0xc9, 0x6d, 0x65, 0xcb, 0xc9, 0xef, 0xc4, 0xa4, 0x42,
- 0x05, 0xe8, 0x6b, 0xc8, 0xf5, 0x3c, 0x6c, 0x04, 0x58, 0x27, 0xf0, 0x7c, 0x62, 0x93, 0xdb, 0xca,
- 0x95, 0x36, 0x8a, 0xec, 0xa8, 0x11, 0x77, 0x51, 0x8b, 0xb8, 0x43, 0x2c, 0x84, 0x18, 0x22, 0x7d,
- 0x6a, 0xbc, 0x13, 0xff, 0x00, 0xf7, 0x68, 0x50, 0x48, 0x4c, 0x42, 0xa4, 0xe1, 0x9a, 0x7e, 0xb1,
- 0xe7, 0x58, 0x42, 0xb4, 0x81, 0x67, 0xae, 0xe7, 0x7c, 0x83, 0x7b, 0x81, 0x2f, 0x9c, 0xb0, 0xd5,
- 0xa9, 0x30, 0x70, 0x7a, 0x61, 0xb4, 0x84, 0x93, 0x68, 0x79, 0x2a, 0x1c, 0x85, 0x00, 0x5f, 0x38,
- 0x39, 0xc2, 0x23, 0xdd, 0x33, 0xed, 0xfe, 0x69, 0xe1, 0x7f, 0x69, 0xc8, 0x56, 0xbc, 0x91, 0x1b,
- 0x38, 0x75, 0x3c, 0x3a, 0xff, 0x2c, 0x55, 0xc8, 0xb8, 0x9e, 0x69, 0x19, 0xde, 0x88, 0x9d, 0xe3,
- 0xd3, 0xe2, 0x9c, 0x2b, 0x2b, 0x8e, 0x99, 0x3a, 0xd8, 0xf3, 0x4d, 0xc7, 0x0e, 0x29, 0x22, 0x28,
- 0x6a, 0x41, 0xc6, 0x1d, 0x7a, 0xae, 0xe3, 0xe3, 0x7c, 0x72, 0x93, 0xdb, 0x5a, 0x29, 0x09, 0x17,
- 0xb3, 0x4c, 0x56, 0xed, 0x10, 0x46, 0xf8, 0x16, 0x94, 0x88, 0x64, 0x36, 0xc2, 0x0b, 0xd7, 0x8e,
- 0x30, 0xda, 0x03, 0x64, 0xe3, 0xb7, 0x81, 0xee, 0xb1, 0xec, 0x0a, 0x89, 0x32, 0x97, 0x11, 0x29,
- 0x3c, 0x41, 0x29, 0x0c, 0x44, 0x99, 0xaa, 0xb0, 0x3a, 0x26, 0x71, 0xb1, 0x67, 0x3a, 0x87, 0xf9,
- 0x45, 0x4a, 0x73, 0xfb, 0x0c, 0x4d, 0x95, 0x65, 0xdb, 0xde, 0x07, 0xca, 0x4a, 0x84, 0x69, 0x53,
- 0x08, 0x3a, 0x00, 0xfe, 0x38, 0x0c, 0x9d, 0x1e, 0x60, 0xcb, 0x1d, 0x18, 0x01, 0xce, 0xe7, 0x28,
- 0xcd, 0x17, 0x57, 0x0a, 0xb8, 0xc6, 0x40, 0xca, 0xea, 0xf1, 0xb4, 0x00, 0x95, 0x21, 0x3d, 0x30,
- 0xba, 0x78, 0xe0, 0xe7, 0x61, 0x33, 0xb9, 0x95, 0x2b, 0x7d, 0x76, 0x49, 0xe8, 0x1b, 0xd4, 0x58,
- 0xb2, 0x03, 0x6f, 0xa4, 0x30, 0xe4, 0xc6, 0x57, 0x90, 0x8b, 0x89, 0x11, 0x0f, 0xc9, 0x23, 0x3c,
- 0x0a, 0x93, 0x45, 0x21, 0x4b, 0x74, 0x03, 0x16, 0x8e, 0x8d, 0xc1, 0x30, 0x4c, 0xf6, 0xac, 0x12,
- 0xfe, 0x78, 0x9a, 0x78, 0xc2, 0x15, 0xde, 0x02, 0x3f, 0x7b, 0x99, 0xa8, 0x00, 0x77, 0x2b, 0xca,
- 0xcb, 0xb6, 0x26, 0xeb, 0x75, 0xe9, 0xa5, 0xde, 0xde, 0x57, 0xda, 0xb2, 0x2a, 0xe9, 0xfb, 0x2d,
- 0xb5, 0x2d, 0x55, 0x6a, 0x3b, 0x35, 0xa9, 0xca, 0x7f, 0x80, 0xd6, 0x61, 0x55, 0x6a, 0x51, 0x2b,
- 0xbd, 0x2a, 0xd1, 0xbf, 0x3c, 0x47, 0x84, 0xa2, 0xfa, 0xb2, 0xd9, 0x94, 0x34, 0xa5, 0x56, 0xd1,
- 0xd5, 0xda, 0x6e, 0x8b, 0x5f, 0x40, 0x1f, 0x02, 0x8a, 0x09, 0x23, 0xe3, 0xf4, 0xd3, 0x93, 0x77,
- 0xe2, 0x5b, 0xf8, 0xf9, 0x79, 0x45, 0x34, 0xc9, 0x7d, 0xf5, 0x47, 0x94, 0x91, 0xd0, 0x8b, 0x68,
- 0x7c, 0xe1, 0x24, 0x5c, 0xeb, 0x47, 0x78, 0x74, 0x5a, 0x5e, 0x87, 0xb5, 0x71, 0x56, 0xf8, 0xbd,
- 0x37, 0xf8, 0x70, 0x38, 0xc0, 0x85, 0xff, 0x70, 0x90, 0x3f, 0xef, 0xe2, 0x90, 0x0c, 0x3c, 0x49,
- 0x14, 0xdc, 0xa3, 0x98, 0x01, 0x3e, 0xc6, 0x03, 0x1a, 0xe1, 0x95, 0xd2, 0x27, 0x73, 0x6f, 0xac,
- 0x3d, 0x36, 0x6e, 0x10, 0x5b, 0x65, 0xd5, 0x9d, 0x16, 0xa0, 0x2e, 0x64, 0x8d, 0x41, 0xdf, 0xf1,
- 0xcc, 0xe0, 0x8d, 0xc5, 0xca, 0xee, 0xd7, 0x57, 0xca, 0xa5, 0x33, 0x02, 0x31, 0xa2, 0x21, 0x75,
- 0x94, 0x50, 0x26, 0xb4, 0x85, 0xbf, 0x24, 0xe0, 0x56, 0x1d, 0x8f, 0x64, 0x17, 0x87, 0x99, 0x2d,
- 0x06, 0x01, 0x29, 0x14, 0xb2, 0x44, 0xbf, 0x83, 0xf4, 0x6b, 0xc7, 0xb3, 0x8c, 0x20, 0x9f, 0xa2,
- 0xce, 0x7f, 0x35, 0xd7, 0xf9, 0x39, 0xe8, 0x62, 0x6c, 0xbd, 0x43, 0x59, 0xc2, 0x1a, 0x66, 0x94,
- 0xe8, 0x23, 0xc8, 0xf4, 0x1c, 0x3b, 0xc0, 0x76, 0x40, 0xab, 0x7f, 0x89, 0x35, 0x1c, 0x26, 0x2b,
- 0x1c, 0xc1, 0xda, 0x19, 0x02, 0x92, 0x76, 0xa2, 0xa6, 0x49, 0xaa, 0x26, 0x6a, 0x35, 0xb9, 0xa5,
- 0xef, 0xc8, 0x4a, 0x53, 0xd4, 0x66, 0xd2, 0x2e, 0x0f, 0x37, 0x2a, 0x62, 0xa7, 0xb6, 0xdf, 0xd4,
- 0x3b, 0xdb, 0x7a, 0x45, 0x6e, 0xb6, 0x15, 0x49, 0x55, 0xa5, 0x2a, 0x9f, 0x8c, 0x6b, 0x4a, 0x71,
- 0x4d, 0xaa, 0xf0, 0xf7, 0x95, 0x58, 0x8e, 0xb3, 0x90, 0x9d, 0xdf, 0x51, 0x7f, 0x03, 0x0b, 0x64,
- 0x5b, 0x51, 0x27, 0x7c, 0xf6, 0xc3, 0xae, 0x44, 0x25, 0x14, 0x4a, 0xc8, 0x84, 0xb4, 0x39, 0xa9,
- 0x93, 0xb9, 0x7a, 0xea, 0x84, 0xbb, 0xbb, 0x38, 0x7f, 0xe0, 0xbd, 0xe5, 0x4f, 0x32, 0x96, 0x3f,
- 0x48, 0x85, 0x9c, 0x31, 0xb9, 0x27, 0xd6, 0x38, 0x3f, 0xbf, 0x4e, 0xa2, 0x84, 0x94, 0x71, 0x96,
- 0xd9, 0xe9, 0x90, 0xba, 0xfe, 0x74, 0xa8, 0xc2, 0x72, 0x1f, 0xdb, 0xc4, 0x19, 0xe3, 0xc8, 0x5d,
- 0x8d, 0x63, 0x29, 0x42, 0x51, 0x96, 0x32, 0x2c, 0x1d, 0x62, 0x3f, 0xf0, 0x9c, 0xd1, 0xb5, 0xc6,
- 0x54, 0x8e, 0x81, 0x28, 0x47, 0x13, 0x50, 0xc4, 0x81, 0x8f, 0xb1, 0x1d, 0x84, 0x4c, 0xe9, 0xab,
- 0x31, 0xf1, 0x0c, 0x2a, 0x11, 0x24, 0xa5, 0x2b, 0x00, 0x98, 0x96, 0xeb, 0x78, 0x81, 0xfe, 0x8d,
- 0xd3, 0xcd, 0xaf, 0x4c, 0x72, 0x33, 0x1b, 0x8a, 0x9f, 0x3b, 0x5d, 0x12, 0x3e, 0x66, 0x43, 0x7d,
- 0xad, 0x5e, 0x31, 0x7c, 0x21, 0x86, 0x7a, 0xf9, 0x12, 0x6e, 0x32, 0x86, 0xd7, 0x86, 0x39, 0x18,
- 0x7a, 0x58, 0xf7, 0xb0, 0xe1, 0x3b, 0x76, 0x9e, 0x9f, 0x38, 0x5c, 0x0f, 0x2d, 0x76, 0x42, 0x03,
- 0x85, 0xea, 0x0b, 0x7f, 0x4b, 0xc1, 0xed, 0x73, 0x93, 0x07, 0x7d, 0x0e, 0x5b, 0xb1, 0xb1, 0xd1,
- 0x91, 0x14, 0x95, 0x94, 0xb1, 0xd8, 0xd8, 0x95, 0x95, 0x9a, 0xb6, 0xd7, 0x9c, 0xa9, 0xe4, 0x7b,
- 0xf0, 0xb3, 0x5d, 0x59, 0xde, 0x6d, 0x48, 0xfa, 0x64, 0x38, 0xb0, 0x89, 0x52, 0x93, 0x5b, 0x3c,
- 0x87, 0xee, 0x40, 0x5e, 0x51, 0x45, 0x3a, 0x45, 0xf4, 0xb6, 0xaa, 0xea, 0xa5, 0xfb, 0x0f, 0x9f,
- 0xe8, 0xea, 0x9e, 0x58, 0x7a, 0xf4, 0x98, 0x4f, 0x9c, 0xd1, 0x3e, 0xb8, 0xff, 0x65, 0x29, 0xd2,
- 0x26, 0xcf, 0x68, 0x1f, 0xde, 0xff, 0xea, 0x71, 0xa4, 0x4d, 0x9d, 0xab, 0x7d, 0xb4, 0x5d, 0xe2,
- 0x57, 0xd1, 0x5d, 0xd8, 0x98, 0x68, 0xeb, 0x15, 0x75, 0x7b, 0xca, 0xf3, 0xc2, 0x1c, 0x7d, 0xdc,
- 0x77, 0x7a, 0x8e, 0x3e, 0xee, 0x3d, 0x73, 0x81, 0x9e, 0xf8, 0xe7, 0xd1, 0x26, 0xdc, 0x21, 0x7a,
- 0x36, 0x28, 0x75, 0x59, 0x94, 0xda, 0x53, 0x3b, 0x58, 0x9c, 0x6b, 0x11, 0xdf, 0x43, 0x76, 0xae,
- 0x45, 0x7c, 0x17, 0x70, 0xa1, 0x05, 0xd9, 0xc7, 0x1a, 0xba, 0x05, 0xeb, 0x52, 0x85, 0x6d, 0xb3,
- 0xf4, 0x68, 0x0c, 0x5d, 0x9a, 0x52, 0x3c, 0x78, 0xf2, 0x90, 0x28, 0x1e, 0x3c, 0x79, 0xc8, 0x2f,
- 0x17, 0xfe, 0xc9, 0xc1, 0xcd, 0xb9, 0x8d, 0x10, 0x6d, 0xc1, 0x27, 0x73, 0x52, 0x83, 0x74, 0xfa,
- 0xd9, 0x77, 0xc5, 0x87, 0x80, 0xda, 0x52, 0xab, 0x5a, 0x6b, 0xed, 0xea, 0xbb, 0x52, 0x4b, 0x52,
- 0xe8, 0x2c, 0xe0, 0x17, 0x50, 0x0e, 0x32, 0x52, 0x4b, 0x2c, 0x37, 0xa4, 0x2a, 0xcf, 0xa1, 0x25,
- 0x58, 0xac, 0xd6, 0xd4, 0xf0, 0x57, 0x02, 0x2d, 0x43, 0xb6, 0x2a, 0xa9, 0x9a, 0x22, 0xbf, 0xa4,
- 0x83, 0xe0, 0x26, 0xac, 0xb1, 0x9f, 0xba, 0x5a, 0xd9, 0x93, 0xaa, 0xfb, 0xc4, 0x2a, 0x85, 0x10,
- 0xac, 0x44, 0xc4, 0xb5, 0x66, 0x5b, 0x56, 0x34, 0x3e, 0x8d, 0xd6, 0x60, 0x39, 0x5c, 0xeb, 0x3b,
- 0x62, 0x8d, 0x98, 0x65, 0x0a, 0x35, 0xb8, 0x31, 0x7b, 0x84, 0x8e, 0x89, 0xff, 0x88, 0x7e, 0x01,
- 0x1f, 0xcf, 0x39, 0x41, 0xa7, 0x26, 0xbd, 0x98, 0x39, 0xc0, 0x22, 0xa4, 0x76, 0xf6, 0x1b, 0x0d,
- 0x9e, 0x7b, 0xfa, 0x2d, 0xf7, 0x4e, 0xfc, 0x07, 0x07, 0x5b, 0x97, 0x3e, 0x71, 0xa2, 0x99, 0xf4,
- 0xa7, 0x9f, 0xe0, 0xa5, 0x33, 0x91, 0x33, 0x2f, 0x53, 0x6a, 0x9d, 0xbd, 0x46, 0x4f, 0x0b, 0x7f,
- 0x86, 0x6c, 0x7b, 0xd8, 0x1d, 0x98, 0x3d, 0xf2, 0xe4, 0xe2, 0x21, 0xe9, 0x62, 0x2b, 0x7a, 0x40,
- 0xba, 0xd8, 0x42, 0xbf, 0x8f, 0x0f, 0x9b, 0xc4, 0x7b, 0x19, 0x36, 0xf1, 0x77, 0xca, 0x7f, 0x17,
- 0x21, 0x5b, 0x1b, 0x77, 0xb8, 0x73, 0x67, 0xf3, 0x01, 0x2c, 0xb3, 0xc6, 0x65, 0xe1, 0xe0, 0x8d,
- 0x73, 0xc8, 0x76, 0xf2, 0xcb, 0xb9, 0x3b, 0x19, 0xf3, 0xb1, 0x55, 0x93, 0x42, 0xca, 0xe9, 0xef,
- 0xc4, 0x04, 0xf9, 0x58, 0x59, 0x32, 0x63, 0x52, 0xf4, 0x62, 0xce, 0x88, 0xce, 0x5e, 0x63, 0x44,
- 0x47, 0xac, 0x67, 0xa6, 0xf4, 0xcc, 0xb0, 0x4b, 0xbe, 0x87, 0x61, 0x97, 0xfa, 0x21, 0xc3, 0xee,
- 0x6b, 0xc8, 0xe1, 0xb7, 0xae, 0xe9, 0x5d, 0xf3, 0x93, 0x2c, 0xc4, 0x50, 0x86, 0x3a, 0xac, 0x31,
- 0x86, 0xd8, 0xa4, 0x83, 0xab, 0xf1, 0xac, 0x86, 0xc8, 0xc9, 0xa0, 0xdb, 0x8b, 0x5e, 0x59, 0x69,
- 0x1a, 0xe4, 0x2f, 0xae, 0x74, 0x83, 0xcf, 0x9d, 0x2e, 0x6d, 0x27, 0x21, 0xe7, 0xf8, 0x71, 0x05,
- 0x2e, 0x4d, 0x5c, 0x92, 0xcf, 0xec, 0x0b, 0xf1, 0xfe, 0x25, 0x74, 0x2f, 0x3c, 0xc3, 0x75, 0x4d,
- 0xbb, 0x3f, 0xce, 0x78, 0x36, 0x64, 0xdd, 0x71, 0x05, 0xfc, 0x14, 0x0f, 0x9f, 0x8d, 0x4f, 0x61,
- 0xed, 0x8c, 0xe7, 0xb3, 0xb5, 0x56, 0xb0, 0x60, 0x29, 0x9e, 0xb1, 0xe8, 0x23, 0xb8, 0xcd, 0xba,
- 0x54, 0x53, 0xd2, 0xf6, 0xe4, 0xea, 0x4c, 0xc3, 0x61, 0xf3, 0x64, 0x6a, 0x0a, 0x6c, 0xeb, 0xa2,
- 0xa4, 0xea, 0xa4, 0x5d, 0x73, 0x53, 0xfa, 0xa8, 0xc3, 0x4f, 0xf4, 0x89, 0x42, 0x0f, 0x56, 0xa6,
- 0xc3, 0x4b, 0x66, 0x03, 0x73, 0xf8, 0x5c, 0x2e, 0x5f, 0xa3, 0x4b, 0x73, 0x08, 0x20, 0x2d, 0x56,
- 0xb4, 0x5a, 0x47, 0xe2, 0x13, 0xb4, 0x63, 0x1f, 0xb4, 0x6b, 0x0a, 0x69, 0xca, 0x97, 0x7c, 0xec,
- 0x4d, 0x4a, 0xff, 0x47, 0x7d, 0xec, 0x8d, 0xdf, 0x48, 0xbe, 0x70, 0x32, 0x79, 0x46, 0x9d, 0x7e,
- 0x76, 0x00, 0xab, 0x33, 0xf5, 0x4a, 0x8e, 0xd8, 0x56, 0x64, 0x4d, 0xaa, 0xd0, 0x4f, 0x8d, 0x86,
- 0xd4, 0x91, 0x1a, 0x33, 0x47, 0x5c, 0x82, 0x45, 0x55, 0xde, 0xd1, 0x5e, 0x88, 0x8a, 0xc4, 0x73,
- 0x28, 0x03, 0xc9, 0x3d, 0xb5, 0xc9, 0x27, 0x88, 0x58, 0x3a, 0xd0, 0x24, 0xa5, 0x25, 0x36, 0xf8,
- 0x64, 0xf9, 0xaf, 0x1c, 0xdc, 0xea, 0x39, 0xd6, 0xbc, 0xbc, 0x28, 0xaf, 0xd5, 0x2d, 0x5f, 0x89,
- 0xfe, 0x9f, 0x46, 0xfc, 0x3b, 0x6d, 0xee, 0xb7, 0x8f, 0x99, 0x65, 0xdf, 0x19, 0x18, 0x76, 0xbf,
- 0xe8, 0x78, 0x7d, 0xa1, 0x8f, 0x6d, 0x5a, 0x36, 0xc2, 0x24, 0x28, 0x53, 0xff, 0x94, 0x7b, 0x76,
- 0x64, 0xf9, 0xff, 0xe7, 0xb8, 0x6f, 0x13, 0xeb, 0xbb, 0x21, 0xb6, 0x42, 0xbd, 0xd4, 0x2d, 0xbf,
- 0xd8, 0xd9, 0xfe, 0x77, 0x24, 0x7d, 0x45, 0xa5, 0xaf, 0xea, 0x96, 0xff, 0xaa, 0xb3, 0xdd, 0x4d,
- 0x53, 0xc6, 0x07, 0xdf, 0x07, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x67, 0x51, 0x84, 0xe5, 0x13, 0x00,
- 0x00,
+ // 1846 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xcd, 0x72, 0xdb, 0xc8,
+ 0x11, 0x5e, 0x90, 0x12, 0x29, 0x36, 0xf5, 0x03, 0x8d, 0xd6, 0x6b, 0x5a, 0xb1, 0x65, 0x99, 0xbb,
+ 0x5b, 0x51, 0x6d, 0x76, 0x09, 0x8b, 0xb2, 0xbd, 0x5e, 0xb9, 0x2a, 0x59, 0x88, 0x84, 0x24, 0x9a,
+ 0x3f, 0x60, 0x00, 0x88, 0x96, 0x13, 0x27, 0x28, 0x88, 0x1a, 0xd3, 0x58, 0x11, 0x3f, 0x05, 0x80,
+ 0x8a, 0x18, 0x95, 0x72, 0x48, 0xe5, 0x15, 0xf2, 0x0a, 0x39, 0xb8, 0x2a, 0x79, 0x85, 0x54, 0x0e,
+ 0xa9, 0x54, 0xe5, 0x92, 0x07, 0xc8, 0x65, 0xcf, 0xbe, 0xe5, 0x96, 0x63, 0x6a, 0x06, 0x03, 0x12,
+ 0xa4, 0xa8, 0xbf, 0x5d, 0x6f, 0xe5, 0xc4, 0x41, 0x77, 0x7f, 0x5f, 0x37, 0x7a, 0x7a, 0xa6, 0x1b,
+ 0x84, 0x8f, 0x3b, 0x8e, 0xd3, 0xe9, 0x62, 0xa1, 0xdd, 0x75, 0x7a, 0x87, 0xc2, 0x91, 0xe5, 0x0b,
+ 0xc7, 0xeb, 0x82, 0x87, 0x7d, 0xa7, 0xe7, 0xb5, 0xb1, 0x5f, 0x70, 0x3d, 0x27, 0x70, 0xd0, 0x52,
+ 0x68, 0x54, 0xa0, 0x46, 0x85, 0x23, 0xcb, 0x2f, 0x1c, 0xaf, 0x2f, 0xdf, 0x67, 0x48, 0xc3, 0x35,
+ 0x85, 0xd7, 0x26, 0xee, 0x1e, 0xea, 0x07, 0xf8, 0x8d, 0x71, 0x6c, 0x3a, 0x5e, 0x88, 0x5a, 0xbe,
+ 0x13, 0x33, 0x88, 0x18, 0x99, 0x6a, 0x85, 0xa9, 0xe8, 0xd3, 0x41, 0xef, 0xb5, 0x70, 0xd8, 0xf3,
+ 0x8c, 0xc0, 0x74, 0x6c, 0xa6, 0xbf, 0x3f, 0xae, 0x0f, 0x4c, 0x0b, 0xfb, 0x81, 0x61, 0xb9, 0xcc,
+ 0xe0, 0x6e, 0x8c, 0xdb, 0xb0, 0x6d, 0x27, 0xa0, 0x68, 0x16, 0x6f, 0xfe, 0x1f, 0x1c, 0xa4, 0xab,
+ 0xb8, 0xaf, 0x98, 0x76, 0x07, 0xdd, 0x86, 0x29, 0xdb, 0xb0, 0x70, 0x8e, 0x5b, 0xe5, 0xd6, 0x32,
+ 0x5b, 0xc9, 0x6f, 0xc5, 0xa4, 0x42, 0x05, 0xe8, 0x6b, 0xc8, 0xb6, 0x3d, 0x6c, 0x04, 0x58, 0x27,
+ 0xe4, 0xb9, 0xc4, 0x2a, 0xb7, 0x96, 0x2d, 0x2e, 0x17, 0xd8, 0xab, 0x46, 0x9e, 0x0b, 0x5a, 0xe4,
+ 0x39, 0xc4, 0x42, 0x88, 0x21, 0xd2, 0x4d, 0xe3, 0x9d, 0xf8, 0x6b, 0xb8, 0x4f, 0x93, 0x42, 0x72,
+ 0x12, 0x22, 0x0d, 0xd7, 0xf4, 0x0b, 0x6d, 0xc7, 0x12, 0xa2, 0x00, 0x9e, 0xb9, 0x9e, 0xf3, 0x0d,
+ 0x6e, 0x07, 0xbe, 0x70, 0xca, 0x56, 0x67, 0x42, 0xd7, 0x69, 0x87, 0x01, 0x0b, 0xa7, 0xd1, 0xf2,
+ 0x4c, 0x38, 0x0a, 0x01, 0xbe, 0x70, 0x7a, 0x84, 0xfb, 0xba, 0x67, 0xda, 0x9d, 0xb3, 0xfc, 0x7f,
+ 0x52, 0x90, 0x29, 0x79, 0x7d, 0x37, 0x70, 0xaa, 0xb8, 0x7f, 0xf1, 0xbb, 0x94, 0x21, 0xed, 0x7a,
+ 0xa6, 0x65, 0x78, 0x7d, 0xf6, 0x1e, 0x9f, 0x16, 0x26, 0x6c, 0x59, 0x61, 0xc0, 0xd4, 0xc2, 0x9e,
+ 0x6f, 0x3a, 0x76, 0x48, 0x11, 0x41, 0x51, 0x03, 0xd2, 0x6e, 0xcf, 0x73, 0x1d, 0x1f, 0xe7, 0x92,
+ 0xab, 0xdc, 0xda, 0x7c, 0x51, 0xb8, 0x9c, 0x65, 0xb8, 0x6a, 0x86, 0x30, 0xc2, 0x37, 0xad, 0x44,
+ 0x24, 0xe3, 0x19, 0x9e, 0xbe, 0x71, 0x86, 0xd1, 0x2e, 0x20, 0x1b, 0x9f, 0x04, 0xba, 0xc7, 0x36,
+ 0x38, 0x24, 0x4a, 0x5f, 0x45, 0xa4, 0xf0, 0x04, 0xa5, 0x30, 0x10, 0x65, 0x2a, 0xc3, 0xc2, 0x80,
+ 0xc4, 0xc5, 0x9e, 0xe9, 0x1c, 0xe6, 0x66, 0x28, 0xcd, 0x9d, 0x73, 0x34, 0x65, 0x56, 0x8b, 0xbb,
+ 0x1f, 0x28, 0xf3, 0x11, 0xa6, 0x49, 0x21, 0x68, 0x1f, 0xf8, 0xe3, 0x30, 0x75, 0x7a, 0x80, 0x2d,
+ 0xb7, 0x6b, 0x04, 0x38, 0x97, 0xa5, 0x34, 0x5f, 0x5c, 0x2b, 0xe1, 0x1a, 0x03, 0x29, 0x0b, 0xc7,
+ 0xa3, 0x02, 0xb4, 0x05, 0xa9, 0xae, 0x71, 0x80, 0xbb, 0x7e, 0x0e, 0x56, 0x93, 0x6b, 0xd9, 0xe2,
+ 0x67, 0x57, 0xa4, 0xbe, 0x46, 0x8d, 0x25, 0x3b, 0xf0, 0xfa, 0x0a, 0x43, 0x2e, 0x7f, 0x05, 0xd9,
+ 0x98, 0x18, 0xf1, 0x90, 0x3c, 0xc2, 0xfd, 0xb0, 0x58, 0x14, 0xb2, 0x44, 0x1f, 0xc2, 0xf4, 0xb1,
+ 0xd1, 0xed, 0x85, 0xc5, 0x9e, 0x51, 0xc2, 0x87, 0xcd, 0xc4, 0x53, 0x2e, 0x7f, 0x02, 0xfc, 0xf8,
+ 0x66, 0xa2, 0x3c, 0xac, 0x94, 0x94, 0x97, 0x4d, 0x4d, 0xd6, 0xab, 0xd2, 0x4b, 0xbd, 0xb9, 0xa7,
+ 0x34, 0x65, 0x55, 0xd2, 0xf7, 0x1a, 0x6a, 0x53, 0x2a, 0x55, 0xb6, 0x2b, 0x52, 0x99, 0xff, 0x00,
+ 0x2d, 0xc1, 0x82, 0xd4, 0xa0, 0x56, 0x7a, 0x59, 0xa2, 0xbf, 0x3c, 0x47, 0x84, 0xa2, 0xfa, 0xb2,
+ 0x5e, 0x97, 0x34, 0xa5, 0x52, 0xd2, 0xd5, 0xca, 0x4e, 0x83, 0x9f, 0x46, 0x1f, 0x01, 0x8a, 0x09,
+ 0x23, 0xe3, 0xd4, 0xe6, 0xe9, 0x3b, 0xf1, 0x04, 0x1e, 0x5c, 0x74, 0x88, 0x86, 0xb5, 0xaf, 0x7e,
+ 0x8f, 0x63, 0x24, 0xb4, 0x23, 0x1a, 0x5f, 0x38, 0x0d, 0xd7, 0xfa, 0x11, 0xee, 0x9f, 0x6d, 0x2d,
+ 0xc1, 0xe2, 0xa0, 0x2a, 0xfc, 0xf6, 0x1b, 0x7c, 0xd8, 0xeb, 0xe2, 0xfc, 0xbf, 0x38, 0xc8, 0x5d,
+ 0xb4, 0x71, 0x48, 0x06, 0x9e, 0x14, 0x0a, 0x6e, 0x53, 0x4c, 0x17, 0x1f, 0xe3, 0x2e, 0xcd, 0xf0,
+ 0x7c, 0xf1, 0x93, 0x89, 0x3b, 0xd6, 0x1c, 0x18, 0xd7, 0x88, 0xad, 0xb2, 0xe0, 0x8e, 0x0a, 0xd0,
+ 0x01, 0x64, 0x8c, 0x6e, 0xc7, 0xf1, 0xcc, 0xe0, 0x8d, 0xc5, 0x8e, 0xdd, 0xcf, 0xae, 0x55, 0x4b,
+ 0xe7, 0x04, 0x62, 0x44, 0x43, 0xce, 0x51, 0x42, 0x19, 0xd2, 0xe6, 0x7f, 0x9f, 0x80, 0xdb, 0x55,
+ 0xdc, 0x97, 0x5d, 0x1c, 0x56, 0xb6, 0x18, 0x04, 0xe4, 0xa0, 0x90, 0x25, 0xfa, 0x25, 0xa4, 0x5e,
+ 0x3b, 0x9e, 0x65, 0x04, 0xb9, 0x29, 0xea, 0xfc, 0xa7, 0x13, 0x9d, 0x5f, 0x80, 0x2e, 0xc4, 0xd6,
+ 0xdb, 0x94, 0x25, 0x3c, 0xc3, 0x8c, 0x12, 0xdd, 0x83, 0x74, 0xdb, 0xb1, 0x03, 0x6c, 0x07, 0xf4,
+ 0xf4, 0xcf, 0xb2, 0x0b, 0x87, 0xc9, 0xf2, 0x47, 0xb0, 0x78, 0x8e, 0x80, 0x94, 0x9d, 0xa8, 0x69,
+ 0x92, 0xaa, 0x89, 0x5a, 0x45, 0x6e, 0xe8, 0xdb, 0xb2, 0x52, 0x17, 0xb5, 0xb1, 0xb2, 0xcb, 0xc1,
+ 0x87, 0x25, 0xb1, 0x55, 0xd9, 0xab, 0xeb, 0xad, 0x75, 0xbd, 0x24, 0xd7, 0x9b, 0x8a, 0xa4, 0xaa,
+ 0x52, 0x99, 0x4f, 0xc6, 0x35, 0xc5, 0xb8, 0x66, 0x2a, 0xff, 0xf7, 0x85, 0x58, 0x8d, 0xb3, 0x94,
+ 0x5d, 0x7c, 0xa3, 0xfe, 0x1c, 0xa6, 0x49, 0x58, 0xd1, 0x4d, 0xf8, 0xec, 0xbb, 0x6d, 0x89, 0x4a,
+ 0x28, 0x94, 0x90, 0x09, 0x69, 0x13, 0x4a, 0x27, 0x7d, 0xfd, 0xd2, 0x09, 0xa3, 0xbb, 0xbc, 0x7e,
+ 0xe0, 0xbd, 0xd5, 0x4f, 0x32, 0x56, 0x3f, 0x48, 0x85, 0xac, 0x31, 0xdc, 0x27, 0x76, 0x71, 0x7e,
+ 0x7e, 0x93, 0x42, 0x09, 0x29, 0xe3, 0x2c, 0xe3, 0xdd, 0x61, 0xea, 0xe6, 0xdd, 0xa1, 0x0c, 0x73,
+ 0x1d, 0x6c, 0x13, 0x67, 0x8c, 0x23, 0x7b, 0x3d, 0x8e, 0xd9, 0x08, 0x45, 0x59, 0xb6, 0x60, 0xf6,
+ 0x10, 0xfb, 0x81, 0xe7, 0xf4, 0x6f, 0xd4, 0xa6, 0xb2, 0x0c, 0x44, 0x39, 0xea, 0x80, 0x22, 0x0e,
+ 0x7c, 0x8c, 0xed, 0x20, 0x64, 0x4a, 0x5d, 0x8f, 0x89, 0x67, 0x50, 0x89, 0x20, 0x29, 0x5d, 0x1e,
+ 0xc0, 0xb4, 0x5c, 0xc7, 0x0b, 0xf4, 0x6f, 0x9c, 0x83, 0xdc, 0xfc, 0xb0, 0x36, 0x33, 0xa1, 0xf8,
+ 0xb9, 0x73, 0x40, 0xd2, 0xc7, 0x6c, 0xa8, 0xaf, 0x85, 0x6b, 0xa6, 0x2f, 0xc4, 0x50, 0x2f, 0x5f,
+ 0xc2, 0x2d, 0xc6, 0xf0, 0xda, 0x30, 0xbb, 0x3d, 0x0f, 0xeb, 0x1e, 0x36, 0x7c, 0xc7, 0xce, 0xf1,
+ 0x43, 0x87, 0x4b, 0xa1, 0xc5, 0x76, 0x68, 0xa0, 0x50, 0x3d, 0xfa, 0x1d, 0x3c, 0xc0, 0x27, 0x01,
+ 0xf6, 0x6c, 0xa3, 0xab, 0x8f, 0x57, 0xb4, 0xee, 0xb8, 0xf4, 0x46, 0xce, 0x2d, 0xd2, 0x80, 0x36,
+ 0x26, 0x16, 0x89, 0xc4, 0xd0, 0x63, 0x15, 0x2e, 0x87, 0x50, 0x65, 0x05, 0x5f, 0xaa, 0xcf, 0xff,
+ 0x75, 0x0a, 0xee, 0x5c, 0x58, 0xbc, 0xe8, 0x73, 0x58, 0x8b, 0xb5, 0xad, 0x96, 0xa4, 0xa8, 0xe4,
+ 0x1a, 0x11, 0x6b, 0x3b, 0xb2, 0x52, 0xd1, 0x76, 0xeb, 0x63, 0x37, 0xc9, 0x7d, 0xf8, 0xd1, 0x8e,
+ 0x2c, 0xef, 0xd4, 0x24, 0x7d, 0xd8, 0x9c, 0x58, 0x47, 0xab, 0xc8, 0x0d, 0x9e, 0x43, 0x77, 0x21,
+ 0xa7, 0xa8, 0x22, 0xed, 0x62, 0x7a, 0x53, 0x55, 0xf5, 0xe2, 0xc3, 0x47, 0x4f, 0x75, 0x75, 0x57,
+ 0x2c, 0x3e, 0x7e, 0xc2, 0x27, 0xce, 0x69, 0x37, 0x1e, 0x7e, 0x59, 0x8c, 0xb4, 0xc9, 0x73, 0xda,
+ 0x47, 0x0f, 0xbf, 0x7a, 0x12, 0x69, 0xa7, 0x2e, 0xd4, 0x3e, 0x5e, 0x2f, 0xf2, 0x0b, 0x68, 0x05,
+ 0x96, 0x87, 0xda, 0x6a, 0x49, 0x5d, 0x1f, 0xf1, 0x3c, 0x3d, 0x41, 0x1f, 0xf7, 0x9d, 0x9a, 0xa0,
+ 0x8f, 0x7b, 0x4f, 0x5f, 0xa2, 0x27, 0xfe, 0x79, 0xb4, 0x0a, 0x77, 0x89, 0x9e, 0x35, 0x6a, 0x5d,
+ 0x16, 0xa5, 0xe6, 0x48, 0x04, 0x33, 0x13, 0x2d, 0xe2, 0x31, 0x64, 0x26, 0x5a, 0xc4, 0xa3, 0x80,
+ 0x4b, 0x2d, 0x48, 0x1c, 0x8b, 0xe8, 0x36, 0x2c, 0x49, 0x25, 0x16, 0x66, 0xf1, 0xf1, 0x00, 0x3a,
+ 0x3b, 0xa2, 0xd8, 0x78, 0xfa, 0x88, 0x28, 0x36, 0x9e, 0x3e, 0xe2, 0xe7, 0xd0, 0x03, 0xb8, 0x27,
+ 0xed, 0x6b, 0x92, 0xd2, 0x10, 0x6b, 0x93, 0x37, 0x15, 0xe5, 0xff, 0xc6, 0xc1, 0xad, 0x89, 0x77,
+ 0x35, 0x5a, 0x83, 0x4f, 0x26, 0x54, 0x0f, 0x69, 0x46, 0xe3, 0xa3, 0xcf, 0x47, 0x80, 0x9a, 0x52,
+ 0xa3, 0x5c, 0x69, 0xec, 0xe8, 0x3b, 0x52, 0x43, 0x52, 0x68, 0xbb, 0xe2, 0xa7, 0x51, 0x16, 0xd2,
+ 0x52, 0x43, 0xdc, 0xaa, 0x49, 0x65, 0x9e, 0x43, 0xb3, 0x30, 0x53, 0xae, 0xa8, 0xe1, 0x53, 0x02,
+ 0xcd, 0x41, 0xa6, 0x2c, 0xa9, 0x9a, 0x22, 0xbf, 0xa4, 0xbd, 0xea, 0x16, 0x2c, 0xb2, 0x47, 0x5d,
+ 0x2d, 0xed, 0x4a, 0xe5, 0x3d, 0x62, 0x35, 0x85, 0x10, 0xcc, 0x47, 0xc4, 0x95, 0x7a, 0x53, 0x56,
+ 0x34, 0x3e, 0x85, 0x16, 0x61, 0x2e, 0x5c, 0xeb, 0xdb, 0x62, 0x85, 0x98, 0xa5, 0xf3, 0x15, 0xf8,
+ 0x70, 0xfc, 0x15, 0x5a, 0x26, 0xfe, 0x0d, 0xfa, 0x31, 0x7c, 0x3c, 0xe1, 0x0d, 0x5a, 0x15, 0xe9,
+ 0xc5, 0xd8, 0x0b, 0xcc, 0xc0, 0xd4, 0xf6, 0x5e, 0xad, 0xc6, 0x73, 0x9b, 0x6f, 0xb9, 0x77, 0xe2,
+ 0x9f, 0x38, 0x58, 0xbb, 0x72, 0x0a, 0x8b, 0xda, 0xe6, 0x6f, 0x7f, 0x80, 0x61, 0x6c, 0x28, 0x67,
+ 0x5e, 0x46, 0xd4, 0x3a, 0x1b, 0x98, 0xcf, 0xf2, 0x7f, 0x4e, 0x40, 0xa6, 0xd9, 0x3b, 0xe8, 0x9a,
+ 0x6d, 0x32, 0x16, 0xf2, 0x90, 0x74, 0xb1, 0x15, 0x0d, 0xb9, 0x2e, 0xb6, 0xd0, 0xaf, 0xe2, 0x0d,
+ 0x31, 0xf1, 0x5e, 0x1a, 0x62, 0xac, 0x17, 0x6e, 0xfe, 0x85, 0x7b, 0x27, 0xbe, 0xe5, 0x2e, 0x9e,
+ 0x58, 0x87, 0xa1, 0xfd, 0x81, 0xfb, 0xff, 0x65, 0x49, 0x70, 0xa3, 0x30, 0xf2, 0xff, 0x9e, 0x81,
+ 0x4c, 0x65, 0xd0, 0x36, 0x2e, 0x1c, 0x78, 0xf6, 0x61, 0x8e, 0x75, 0x03, 0x0b, 0x07, 0x6f, 0x9c,
+ 0x43, 0x96, 0xba, 0x9f, 0x4c, 0x4c, 0xdd, 0x80, 0x8f, 0xad, 0xea, 0x14, 0xb2, 0x95, 0xfa, 0x56,
+ 0x4c, 0x90, 0x2f, 0xc0, 0x59, 0x33, 0x26, 0x45, 0x2f, 0x26, 0xcc, 0x3d, 0x99, 0x1b, 0xcc, 0x3d,
+ 0x11, 0xeb, 0xb9, 0xd1, 0x67, 0x6c, 0x82, 0x48, 0xbe, 0x87, 0x09, 0x62, 0xea, 0xbb, 0x4c, 0x10,
+ 0x5f, 0x43, 0x16, 0x9f, 0xb8, 0xa6, 0x77, 0xc3, 0xef, 0xdc, 0x10, 0x43, 0x19, 0xaa, 0xb0, 0xc8,
+ 0x18, 0x62, 0xe3, 0x03, 0x5c, 0x8f, 0x67, 0x21, 0x44, 0x0e, 0xa7, 0x87, 0xdd, 0x68, 0x74, 0x4d,
+ 0xd1, 0x24, 0x7f, 0x71, 0xad, 0x1d, 0x7c, 0xee, 0x1c, 0xd0, 0x0b, 0x30, 0xe4, 0x1c, 0x4c, 0xac,
+ 0x10, 0xd6, 0x11, 0xa9, 0x2d, 0xf6, 0xd9, 0xfd, 0xf0, 0x0a, 0xba, 0x17, 0x9e, 0xe1, 0xba, 0xa6,
+ 0xdd, 0x19, 0x9c, 0x03, 0x36, 0xb9, 0x0c, 0x0a, 0xf2, 0x07, 0x99, 0x26, 0x97, 0x3f, 0x85, 0xc5,
+ 0x73, 0x9e, 0xcf, 0x5f, 0x0e, 0x79, 0x0b, 0x66, 0xe3, 0x15, 0x8b, 0xee, 0xc1, 0x1d, 0x76, 0xaf,
+ 0xd6, 0x25, 0x6d, 0x57, 0x2e, 0x8f, 0x5d, 0x91, 0xac, 0x49, 0x8e, 0xb4, 0xb6, 0x75, 0x5d, 0x94,
+ 0x54, 0x9d, 0xf4, 0x20, 0x6e, 0x44, 0x1f, 0xb5, 0xad, 0xa1, 0x3e, 0x91, 0x6f, 0xc3, 0xfc, 0x68,
+ 0x7a, 0x49, 0xc3, 0x63, 0x0e, 0x9f, 0xcb, 0x5b, 0x37, 0xe8, 0x2b, 0x1c, 0x02, 0x48, 0x89, 0x25,
+ 0xad, 0xd2, 0x92, 0xf8, 0x04, 0xed, 0x31, 0xfb, 0xcd, 0x8a, 0x42, 0xda, 0xc8, 0x15, 0x5f, 0xd0,
+ 0xc3, 0xa3, 0xff, 0xbd, 0xbe, 0xa0, 0x07, 0x83, 0xa7, 0x2f, 0x9c, 0x0e, 0x67, 0xd3, 0xb3, 0xfc,
+ 0x73, 0x58, 0xb9, 0x7c, 0x9a, 0x43, 0x6b, 0xc0, 0x0f, 0xa6, 0x45, 0xc2, 0xd7, 0xf3, 0x4c, 0xb6,
+ 0x23, 0xf3, 0x91, 0xbc, 0x8a, 0xfb, 0x7b, 0x9e, 0xf9, 0xd9, 0x3e, 0x2c, 0x8c, 0x71, 0x90, 0x74,
+ 0x35, 0x15, 0x59, 0x93, 0x4a, 0xf4, 0x5b, 0xb0, 0x26, 0xb5, 0xa4, 0xda, 0x58, 0xba, 0x66, 0x61,
+ 0x46, 0x95, 0xb7, 0xb5, 0x17, 0xa2, 0x22, 0xf1, 0x1c, 0x4a, 0x43, 0x72, 0x57, 0xad, 0xf3, 0x09,
+ 0x22, 0x8e, 0x86, 0x00, 0x3e, 0xb9, 0xf5, 0x47, 0x0e, 0x6e, 0xb7, 0x1d, 0x6b, 0x52, 0x8d, 0x6d,
+ 0x2d, 0x56, 0x2d, 0x5f, 0x89, 0xfe, 0xf0, 0x24, 0xfe, 0x9d, 0x26, 0xf7, 0x8b, 0x27, 0xcc, 0xb2,
+ 0xe3, 0x74, 0x0d, 0xbb, 0x53, 0x70, 0xbc, 0x8e, 0xd0, 0xc1, 0x36, 0x3d, 0x82, 0xc2, 0x30, 0xc1,
+ 0x23, 0xff, 0x9a, 0x3e, 0x3b, 0xb2, 0xfc, 0xff, 0x72, 0xdc, 0xdb, 0xc4, 0xd2, 0x4e, 0x88, 0x2d,
+ 0x51, 0x2f, 0x55, 0xcb, 0x2f, 0xb4, 0xd6, 0xff, 0x19, 0x49, 0x5f, 0x51, 0xe9, 0xab, 0xaa, 0xe5,
+ 0xbf, 0x6a, 0xad, 0x1f, 0xa4, 0x28, 0xe3, 0xc6, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf3, 0xf7,
+ 0xb1, 0x02, 0x86, 0x15, 0x00, 0x00,
}
diff --git a/googleapis/cloud/kms/v1/service.pb.go b/googleapis/cloud/kms/v1/service.pb.go
index be2b324..b0baa6a 100644
--- a/googleapis/cloud/kms/v1/service.pb.go
+++ b/googleapis/cloud/kms/v1/service.pb.go
@@ -1947,7 +1947,11 @@
// Indicates whether [CryptoKeys][google.cloud.kms.v1.CryptoKey] with
// [protection_level][google.cloud.kms.v1.CryptoKeyVersionTemplate.protection_level]
// [HSM][google.cloud.kms.v1.ProtectionLevel.HSM] can be created in this location.
- HsmAvailable bool `protobuf:"varint,1,opt,name=hsm_available,json=hsmAvailable,proto3" json:"hsm_available,omitempty"`
+ HsmAvailable bool `protobuf:"varint,1,opt,name=hsm_available,json=hsmAvailable,proto3" json:"hsm_available,omitempty"`
+ // Indicates whether [CryptoKeys][google.cloud.kms.v1.CryptoKey] with
+ // [protection_level][google.cloud.kms.v1.CryptoKeyVersionTemplate.protection_level]
+ // [EXTERNAL][google.cloud.kms.v1.ProtectionLevel.EXTERNAL] can be created in this location.
+ EkmAvailable bool `protobuf:"varint,2,opt,name=ekm_available,json=ekmAvailable,proto3" json:"ekm_available,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1985,6 +1989,13 @@
return false
}
+func (m *LocationMetadata) GetEkmAvailable() bool {
+ if m != nil {
+ return m.EkmAvailable
+ }
+ return false
+}
+
func init() {
proto.RegisterType((*ListKeyRingsRequest)(nil), "google.cloud.kms.v1.ListKeyRingsRequest")
proto.RegisterType((*ListCryptoKeysRequest)(nil), "google.cloud.kms.v1.ListCryptoKeysRequest")
@@ -2026,151 +2037,152 @@
}
var fileDescriptor_723aeaeb61739a25 = []byte{
- // 2304 bytes of a gzipped FileDescriptorProto
+ // 2314 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcd, 0x6f, 0x1b, 0xc7,
- 0x15, 0xcf, 0xd0, 0xb6, 0x2c, 0x3d, 0xc9, 0x92, 0x3d, 0xb2, 0x65, 0x99, 0xb6, 0x64, 0x7b, 0x95,
- 0x3a, 0xb6, 0xe2, 0x70, 0x2b, 0x3a, 0x76, 0x6d, 0xba, 0x86, 0xbb, 0xb2, 0x12, 0x5b, 0x51, 0x9c,
- 0x0a, 0xf4, 0x57, 0x9b, 0xaa, 0xdd, 0x8c, 0xc8, 0x11, 0xb5, 0x21, 0x77, 0x97, 0xd9, 0x5d, 0x52,
+ 0x15, 0xcf, 0xd0, 0xb1, 0x2c, 0x3d, 0xc9, 0x92, 0x3d, 0xb2, 0x65, 0x99, 0xb6, 0x64, 0x7b, 0x95,
+ 0x3a, 0xb6, 0xe2, 0x70, 0x2b, 0x3a, 0x36, 0x6c, 0xba, 0x86, 0xbb, 0xb2, 0x12, 0xdb, 0x51, 0x9c,
+ 0x0a, 0xf4, 0x57, 0x9b, 0xaa, 0xdd, 0x0c, 0xc9, 0x11, 0xb5, 0x21, 0x77, 0x97, 0xd9, 0x5d, 0x52,
0x61, 0xda, 0x5c, 0x0a, 0xa4, 0x40, 0x81, 0x02, 0x3d, 0xe4, 0xd0, 0x02, 0x45, 0x8a, 0xa2, 0xc7,
0x5e, 0x9b, 0xf6, 0xd0, 0x0f, 0xa0, 0xa7, 0x1e, 0xd2, 0x43, 0xd1, 0x8f, 0x93, 0x02, 0x04, 0x3e,
- 0xf4, 0x0f, 0x28, 0x7a, 0x2a, 0xda, 0x4b, 0xb0, 0x33, 0xb3, 0x9f, 0xdc, 0x25, 0x29, 0x6a, 0x0d,
- 0xe4, 0x66, 0xce, 0xbe, 0x79, 0xf3, 0xfb, 0xbd, 0x79, 0xef, 0xcd, 0xcc, 0xcf, 0x82, 0xf3, 0x35,
- 0xd3, 0xac, 0x35, 0xa8, 0x5c, 0x69, 0x98, 0xad, 0xaa, 0x5c, 0xd7, 0x6d, 0xb9, 0xbd, 0x24, 0xdb,
- 0xd4, 0x6a, 0x6b, 0x15, 0x5a, 0x68, 0x5a, 0xa6, 0x63, 0xe2, 0x69, 0x6e, 0x52, 0x60, 0x26, 0x85,
- 0xba, 0x6e, 0x17, 0xda, 0x4b, 0xf9, 0x33, 0x62, 0x1e, 0x69, 0x6a, 0x32, 0x31, 0x0c, 0xd3, 0x21,
- 0x8e, 0x66, 0x1a, 0x36, 0x9f, 0x92, 0x3f, 0x19, 0xfa, 0x5a, 0x69, 0x68, 0xd4, 0x70, 0xc4, 0x87,
- 0xb3, 0xa1, 0x0f, 0x5b, 0x1a, 0x6d, 0x54, 0xd5, 0x4d, 0xba, 0x4d, 0xda, 0x9a, 0x69, 0x09, 0x83,
- 0x53, 0x21, 0x03, 0x8b, 0xda, 0x66, 0xcb, 0xf2, 0x70, 0xe4, 0x17, 0x92, 0xa0, 0x7a, 0x36, 0xde,
- 0xca, 0xe7, 0x84, 0x11, 0xfb, 0xb5, 0xd9, 0xda, 0x12, 0xab, 0xe8, 0xc4, 0xae, 0x73, 0x0b, 0xe9,
- 0x53, 0x04, 0xd3, 0xaf, 0x6b, 0xb6, 0xb3, 0x46, 0x3b, 0x65, 0xcd, 0xa8, 0xd9, 0x65, 0xfa, 0x4e,
- 0x8b, 0xda, 0x0e, 0x56, 0x60, 0xa4, 0x49, 0x2c, 0x6a, 0x38, 0xb3, 0xe8, 0x1c, 0xba, 0x38, 0xb6,
- 0x7c, 0xe9, 0xa9, 0x92, 0xfb, 0x9f, 0xb2, 0x00, 0xe7, 0x1b, 0x66, 0x45, 0x90, 0xe3, 0xbe, 0x49,
- 0x53, 0xb3, 0x0b, 0x15, 0x53, 0x97, 0x5f, 0x17, 0x1f, 0xca, 0x62, 0x22, 0x3e, 0x07, 0x63, 0x4d,
- 0x52, 0xa3, 0xaa, 0xad, 0xbd, 0x47, 0x67, 0x73, 0xe7, 0xd0, 0xc5, 0x43, 0xcb, 0x07, 0x9e, 0x2a,
- 0xa8, 0x3c, 0xea, 0x8e, 0x3e, 0xd0, 0xde, 0xa3, 0x58, 0x02, 0x60, 0x16, 0x8e, 0x59, 0xa7, 0xc6,
- 0xec, 0x01, 0xb6, 0x10, 0x33, 0x61, 0x13, 0x1f, 0xba, 0xa3, 0xf8, 0x34, 0x8c, 0x6c, 0x69, 0x0d,
- 0x87, 0x5a, 0xb3, 0x07, 0x83, 0xef, 0x62, 0x08, 0xcf, 0xc3, 0xa8, 0x69, 0x55, 0xa9, 0xa5, 0x6e,
- 0x76, 0x66, 0x0f, 0x05, 0x9f, 0x0f, 0xb3, 0xc1, 0xe5, 0x8e, 0xf4, 0xbb, 0x1c, 0x9c, 0x70, 0xd9,
- 0xdd, 0xb1, 0x3a, 0x4d, 0xc7, 0x5c, 0xa3, 0x1d, 0x9f, 0xdf, 0xed, 0x18, 0xbf, 0x17, 0x18, 0xbf,
- 0xf3, 0x70, 0x96, 0xc5, 0xd3, 0xdd, 0xd6, 0x18, 0x3d, 0x11, 0xa0, 0x8c, 0xd9, 0x7d, 0x1b, 0x26,
- 0xda, 0xd4, 0xb2, 0x35, 0xd3, 0x50, 0xdb, 0x1a, 0xdd, 0x61, 0x1c, 0x27, 0x8b, 0xa5, 0x42, 0x42,
- 0x92, 0x15, 0x7c, 0x12, 0x8f, 0xf9, 0x8c, 0xae, 0x81, 0xc7, 0x1a, 0xdd, 0x29, 0x8f, 0xb7, 0x83,
- 0x1f, 0xa1, 0xe0, 0x1d, 0xea, 0x1d, 0xbc, 0x91, 0x84, 0xe0, 0x7d, 0x9c, 0x83, 0x33, 0x91, 0xe0,
- 0x89, 0x65, 0xfa, 0xe7, 0x48, 0x5a, 0x0c, 0x7d, 0x4f, 0x19, 0x47, 0xf1, 0x0d, 0x38, 0x98, 0x51,
- 0xf4, 0x98, 0x9f, 0xfd, 0x85, 0xed, 0x53, 0xc4, 0x73, 0x6e, 0x55, 0x6f, 0x9a, 0x96, 0xf3, 0x9a,
- 0xb9, 0xf9, 0x45, 0xcb, 0xb9, 0x7d, 0x55, 0xd4, 0x4f, 0x11, 0x1c, 0x8f, 0xf6, 0x0b, 0xbb, 0x69,
- 0x1a, 0x36, 0xc5, 0x37, 0x60, 0xac, 0x4e, 0x3b, 0xaa, 0xe5, 0x0e, 0xce, 0xa2, 0x73, 0x07, 0x2e,
- 0x8e, 0x17, 0xcf, 0x24, 0x6e, 0x84, 0x47, 0x6a, 0xb4, 0x2e, 0x5c, 0xe0, 0x0b, 0x30, 0x65, 0xd0,
- 0x77, 0x1d, 0x35, 0x84, 0xdc, 0x25, 0x37, 0x56, 0x3e, 0xe2, 0x0e, 0xaf, 0xfb, 0xc0, 0xe7, 0x00,
- 0x1c, 0xd3, 0x21, 0x0d, 0xce, 0xdf, 0x25, 0x77, 0xa8, 0x3c, 0xc6, 0x46, 0x5c, 0xee, 0xd2, 0x2f,
- 0x10, 0xcc, 0xc4, 0x8b, 0x5d, 0x80, 0xbb, 0x0d, 0xe3, 0x15, 0x36, 0xaa, 0xd6, 0x69, 0xc7, 0x83,
- 0x37, 0xdf, 0x3b, 0x4f, 0xca, 0x50, 0xf1, 0x1d, 0x65, 0x05, 0xf1, 0x8f, 0x08, 0xe6, 0x52, 0x4a,
- 0x4a, 0x20, 0x7d, 0x04, 0xd3, 0x01, 0x52, 0x55, 0xd4, 0xb2, 0x87, 0xf8, 0x4b, 0x03, 0x65, 0x76,
- 0xf9, 0x58, 0x25, 0xee, 0x3e, 0xeb, 0x10, 0x87, 0x73, 0x3b, 0x08, 0xb1, 0xc6, 0x46, 0xd5, 0xb7,
- 0xcd, 0xcd, 0xde, 0x21, 0xf6, 0x67, 0x97, 0x41, 0xf3, 0x1d, 0x65, 0x05, 0x71, 0x1d, 0x8e, 0xdd,
- 0xa5, 0x5e, 0x7a, 0x7a, 0x95, 0x77, 0x13, 0x0e, 0x1a, 0x44, 0xa7, 0x7b, 0xad, 0x3b, 0x36, 0x49,
- 0x7a, 0x08, 0xd3, 0x77, 0x69, 0xb0, 0x65, 0x9e, 0xcf, 0x5b, 0x11, 0x9f, 0x7b, 0xe8, 0x7d, 0xdc,
- 0xeb, 0x26, 0xe4, 0xc3, 0x5e, 0xbd, 0xbd, 0x13, 0xce, 0x57, 0x22, 0xce, 0xbf, 0xcc, 0x9c, 0x2f,
- 0xc2, 0xc5, 0xbe, 0xce, 0x3d, 0x37, 0x7c, 0x8d, 0x6f, 0x31, 0xe4, 0xeb, 0xad, 0xcd, 0x86, 0x56,
- 0x09, 0x21, 0xcf, 0xc6, 0x39, 0x0f, 0x4b, 0xb0, 0x97, 0xc3, 0x85, 0x25, 0x98, 0xcf, 0xbd, 0xfe,
- 0x01, 0xc1, 0xf1, 0x3b, 0x16, 0x25, 0x0e, 0x8d, 0x6d, 0x61, 0x06, 0x17, 0x92, 0x05, 0x18, 0xf7,
- 0x5a, 0x94, 0xaa, 0x55, 0x79, 0x76, 0xb9, 0xed, 0x2d, 0x57, 0x1e, 0x13, 0xbd, 0x68, 0xb5, 0x8a,
- 0xbf, 0x0a, 0xa3, 0x9e, 0x11, 0x4b, 0xae, 0x3e, 0x6d, 0x8c, 0xcf, 0x3f, 0x2c, 0xe6, 0x4b, 0x3f,
- 0xcc, 0xc1, 0x0c, 0x87, 0xdf, 0x95, 0x2f, 0xfb, 0xee, 0xfe, 0x2f, 0xc0, 0x91, 0x50, 0x6b, 0x88,
- 0x12, 0x18, 0xf7, 0x4b, 0x7e, 0xb5, 0x8a, 0x97, 0x01, 0x02, 0x43, 0x41, 0xa2, 0x4f, 0xb3, 0x13,
- 0x61, 0xf0, 0xbd, 0x60, 0x05, 0xe6, 0xec, 0xba, 0xd6, 0x54, 0x35, 0x43, 0x73, 0x34, 0xd2, 0xf0,
- 0x3a, 0x91, 0x5a, 0x71, 0xc9, 0x69, 0xa6, 0xc1, 0x0e, 0x87, 0xd1, 0x72, 0xde, 0x35, 0x5a, 0xe5,
- 0x36, 0x22, 0x3d, 0xee, 0x08, 0x0b, 0x77, 0x2b, 0xe7, 0x62, 0xb1, 0x88, 0x65, 0x79, 0x06, 0x17,
- 0x88, 0x6f, 0x00, 0xee, 0xee, 0x97, 0x2c, 0x32, 0x83, 0xb6, 0x4b, 0x4e, 0xfd, 0x68, 0xbc, 0x67,
- 0x4a, 0xbf, 0xce, 0xc1, 0x1c, 0xcf, 0xce, 0x67, 0x08, 0x7f, 0x13, 0xc6, 0x48, 0xa3, 0x66, 0x5a,
- 0x9a, 0xb3, 0xad, 0x33, 0xd4, 0x93, 0xc5, 0xdb, 0xc3, 0x5d, 0x5f, 0x14, 0xcf, 0x8d, 0xd8, 0x4a,
- 0xdf, 0xad, 0x7b, 0x27, 0x08, 0x3a, 0x73, 0x70, 0xe6, 0xe7, 0xca, 0x63, 0x7e, 0xf7, 0xc5, 0x32,
- 0x4c, 0x5b, 0x36, 0x51, 0x09, 0xb5, 0xd5, 0x1d, 0x8b, 0x34, 0x9b, 0xb4, 0xca, 0x72, 0xc7, 0xdd,
- 0xe4, 0x89, 0x7b, 0xcf, 0x95, 0x8f, 0x5a, 0x36, 0x51, 0xa8, 0xfd, 0x84, 0x7f, 0x72, 0xf3, 0x65,
- 0x06, 0x8e, 0x87, 0x0c, 0x55, 0x9d, 0x38, 0xd4, 0xd2, 0x48, 0x43, 0xfa, 0x33, 0xf2, 0x0a, 0xa0,
- 0xab, 0x33, 0x64, 0x51, 0x00, 0x01, 0x91, 0x78, 0x01, 0xf8, 0x5c, 0x78, 0x01, 0x84, 0x18, 0xf7,
- 0x2a, 0x00, 0x1f, 0x64, 0x3c, 0x22, 0xd2, 0xcf, 0x11, 0xcc, 0x3c, 0x6a, 0x56, 0x93, 0x2a, 0x39,
- 0x5a, 0x5f, 0x68, 0xa8, 0xfa, 0xfa, 0x1a, 0x8c, 0xb7, 0x98, 0x77, 0xf6, 0x18, 0x13, 0x09, 0x9b,
- 0xf7, 0x9c, 0x78, 0xef, 0xb5, 0xc2, 0xab, 0xee, 0x7b, 0xed, 0x3e, 0xb1, 0xeb, 0xdc, 0x01, 0xf0,
- 0x39, 0xee, 0x80, 0xf4, 0x7b, 0x04, 0x73, 0x31, 0x80, 0xb1, 0xfc, 0x4c, 0xae, 0x0d, 0xb4, 0xff,
- 0xda, 0xc8, 0x00, 0xfd, 0xcf, 0x10, 0x4c, 0xbe, 0x62, 0x30, 0xc7, 0x1e, 0xdc, 0xb9, 0xc8, 0xc9,
- 0x31, 0xc6, 0xb2, 0xe3, 0x00, 0xa0, 0x45, 0x7e, 0x32, 0xe0, 0xf3, 0x30, 0xd6, 0x6c, 0x10, 0xcd,
- 0x70, 0xe8, 0xbb, 0x0e, 0x5b, 0x71, 0x42, 0x04, 0xd5, 0x1f, 0xc5, 0x77, 0x61, 0x8e, 0x54, 0xab,
- 0x9a, 0xdb, 0x7d, 0x48, 0x43, 0x25, 0x2d, 0x67, 0x9b, 0x1a, 0x8e, 0x56, 0x21, 0x0e, 0xad, 0xaa,
- 0x55, 0xe2, 0x10, 0x96, 0x0a, 0x13, 0xfc, 0x46, 0x7b, 0x3a, 0xb0, 0x54, 0xc2, 0x86, 0x2b, 0xc4,
- 0x21, 0xee, 0x3d, 0x6d, 0x72, 0x85, 0x46, 0xd0, 0xed, 0xef, 0xb8, 0xc7, 0x0b, 0x00, 0x15, 0xad,
- 0xb9, 0x4d, 0xad, 0x38, 0xfc, 0xd0, 0x70, 0x76, 0xf8, 0x7f, 0x82, 0xe0, 0x84, 0x62, 0x77, 0x74,
- 0x9d, 0x3a, 0x96, 0x56, 0x79, 0xa0, 0xd5, 0xb2, 0xbd, 0x58, 0xe0, 0xeb, 0x30, 0x52, 0xd5, 0x6a,
- 0xd4, 0x76, 0x44, 0x71, 0x9d, 0x4e, 0xcc, 0xa6, 0x15, 0x66, 0xc2, 0x69, 0x0a, 0x7b, 0xe9, 0x03,
- 0x04, 0xb3, 0x01, 0xb2, 0x58, 0x8c, 0xb3, 0x01, 0x17, 0x0d, 0xf5, 0x81, 0xc4, 0x50, 0x4b, 0x32,
- 0x4c, 0xf9, 0x8b, 0x8b, 0x1b, 0xec, 0x99, 0x70, 0x82, 0xb9, 0x10, 0x26, 0x42, 0xb9, 0x25, 0xbd,
- 0x02, 0x53, 0x7e, 0xbe, 0x8a, 0x09, 0x38, 0x0c, 0x57, 0x2c, 0x3e, 0xdf, 0xbd, 0xcf, 0x91, 0x75,
- 0xaf, 0xc1, 0x4c, 0x7c, 0x63, 0x82, 0xe5, 0x6d, 0xad, 0x66, 0x10, 0xa7, 0x65, 0x51, 0x6f, 0x79,
- 0x7f, 0x40, 0xba, 0x01, 0xa7, 0x12, 0xc2, 0x36, 0x10, 0xf2, 0x8f, 0x10, 0x3c, 0x1f, 0x6b, 0x14,
- 0xeb, 0x96, 0xa6, 0x13, 0x2b, 0xde, 0x2f, 0xf6, 0x99, 0xe2, 0xd7, 0xe0, 0x44, 0x77, 0xbb, 0x89,
- 0xb5, 0x69, 0x1c, 0x6f, 0x25, 0xab, 0x55, 0x69, 0x0b, 0xe6, 0x57, 0xa8, 0xed, 0x58, 0x66, 0xe7,
- 0xd9, 0xde, 0x86, 0xb7, 0x60, 0xbe, 0x4c, 0x6d, 0xc7, 0xb4, 0xe8, 0xb3, 0x5d, 0xe7, 0x2d, 0x18,
- 0xe1, 0x99, 0x8f, 0x67, 0x61, 0xc4, 0xde, 0x26, 0xc5, 0xab, 0xd7, 0xf8, 0xa6, 0xdc, 0x7b, 0xae,
- 0x2c, 0x7e, 0x8b, 0x2f, 0x57, 0xae, 0xbf, 0xcc, 0x53, 0x44, 0x7c, 0xb9, 0x72, 0xfd, 0x65, 0xf1,
- 0xe5, 0xea, 0x52, 0x91, 0x67, 0xae, 0xf8, 0x72, 0x75, 0xa9, 0xb8, 0x3c, 0xea, 0x15, 0x9d, 0xf4,
- 0x15, 0x38, 0xea, 0x5d, 0x6e, 0xef, 0x53, 0x87, 0xb8, 0xad, 0x01, 0x2f, 0xc0, 0x91, 0x6d, 0x5b,
- 0x57, 0x49, 0x9b, 0x68, 0x0d, 0xb2, 0xd9, 0xe0, 0x24, 0x46, 0xcb, 0x13, 0xdb, 0xb6, 0xae, 0x78,
- 0x63, 0xc5, 0x1f, 0x5c, 0x80, 0xe3, 0x6b, 0xb4, 0x73, 0x9f, 0x18, 0xa4, 0x46, 0x75, 0x6a, 0x38,
- 0x0f, 0xb8, 0xb6, 0x89, 0x7f, 0x89, 0x60, 0x22, 0xfc, 0xac, 0xc7, 0x17, 0x13, 0x2b, 0x3a, 0x41,
- 0x29, 0xcc, 0x5f, 0x1a, 0xc0, 0x92, 0xe7, 0xa9, 0x74, 0x6b, 0x57, 0x11, 0x67, 0xf9, 0xf7, 0xff,
- 0xf1, 0xaf, 0x0f, 0x73, 0x05, 0x7c, 0x59, 0x6e, 0x2f, 0xc9, 0xdf, 0xe5, 0x43, 0xb7, 0x9a, 0x96,
- 0xf9, 0x36, 0xad, 0x38, 0xb6, 0xbc, 0x28, 0xfb, 0x77, 0x7a, 0x79, 0xf1, 0x7d, 0xd9, 0xd7, 0x09,
- 0x7e, 0x83, 0x60, 0x32, 0xfa, 0xc0, 0xc7, 0x8b, 0xa9, 0x8b, 0x77, 0x49, 0x7e, 0xf9, 0x17, 0x07,
- 0xb2, 0x15, 0x50, 0x5f, 0x8b, 0x42, 0xbd, 0x89, 0x6f, 0xf4, 0x87, 0xea, 0x23, 0x75, 0x51, 0x87,
- 0xc4, 0x83, 0xcf, 0x50, 0x4c, 0x85, 0xf4, 0x9f, 0xe5, 0x4b, 0xfd, 0x21, 0xc5, 0x44, 0xb7, 0x7c,
- 0x71, 0x2f, 0x53, 0x04, 0x99, 0xef, 0x44, 0xc9, 0x7c, 0x1d, 0xdf, 0xdf, 0x13, 0x99, 0x10, 0x97,
- 0x08, 0x33, 0x9f, 0x86, 0xb7, 0x31, 0x81, 0x2c, 0xd0, 0x63, 0x63, 0xba, 0x74, 0xb1, 0x1e, 0x1b,
- 0xd3, 0xad, 0x33, 0xec, 0x7f, 0x63, 0x42, 0x92, 0xc3, 0x8f, 0x11, 0x40, 0x20, 0x16, 0xe0, 0x0b,
- 0x89, 0x38, 0xba, 0xd4, 0x84, 0x7c, 0xcf, 0x07, 0xa1, 0x74, 0x73, 0x57, 0x61, 0x7d, 0x20, 0x92,
- 0xe2, 0xee, 0xc0, 0x00, 0xe0, 0x58, 0x1d, 0x86, 0x65, 0x81, 0x94, 0x3a, 0x4c, 0xd0, 0x23, 0xf2,
- 0x7d, 0x6e, 0xa0, 0xd2, 0xbd, 0x30, 0x2e, 0x2f, 0x6c, 0x83, 0xe1, 0x8a, 0x26, 0x00, 0xfe, 0x0b,
- 0x8a, 0x2a, 0x22, 0xde, 0xad, 0x50, 0xee, 0x8b, 0x35, 0xda, 0x6f, 0xf3, 0x83, 0x5d, 0x42, 0xa5,
- 0x8d, 0x30, 0x72, 0x2f, 0x79, 0x87, 0x40, 0xde, 0x9d, 0xb9, 0x2e, 0x9b, 0x3f, 0xf1, 0x90, 0xfb,
- 0x2a, 0x49, 0x7a, 0xc8, 0xe3, 0x42, 0x4a, 0x4a, 0xc8, 0x7d, 0x33, 0x69, 0x2b, 0x0c, 0xfc, 0x9b,
- 0xf8, 0x49, 0xa6, 0xc0, 0xe5, 0xa6, 0x8f, 0x58, 0x64, 0x8d, 0x5f, 0x2d, 0xe9, 0x14, 0xe2, 0x8f,
- 0xb2, 0x7c, 0x9f, 0x67, 0xd1, 0xbe, 0xb2, 0x26, 0xa8, 0x34, 0x37, 0xce, 0xbf, 0x45, 0x70, 0x24,
- 0xa2, 0xec, 0xe0, 0x4b, 0x29, 0xdb, 0xdf, 0xad, 0xfe, 0xf4, 0x29, 0xb9, 0x8d, 0x5d, 0xe5, 0x34,
- 0x6f, 0x00, 0x97, 0x43, 0x02, 0x8f, 0xff, 0x6f, 0x86, 0xfd, 0xba, 0xb4, 0xa7, 0xc3, 0xa6, 0xe4,
- 0xab, 0x40, 0xf8, 0xaf, 0x08, 0xa6, 0x62, 0x3a, 0x06, 0x7e, 0xb1, 0x07, 0xf4, 0x3d, 0x57, 0xa6,
- 0xb9, 0xab, 0x9c, 0x15, 0xf0, 0x23, 0x02, 0x4f, 0xe8, 0x17, 0xa3, 0x70, 0x57, 0x1a, 0xfe, 0x10,
- 0x2a, 0x85, 0x9e, 0xac, 0xf8, 0xff, 0xa8, 0x4b, 0xa5, 0xf2, 0x6a, 0xb8, 0x38, 0x08, 0xb1, 0xe1,
- 0xca, 0xf8, 0x03, 0xb4, 0xab, 0x9c, 0xea, 0xe6, 0x29, 0x2e, 0x8a, 0x8c, 0x61, 0x45, 0xca, 0xf6,
- 0x64, 0x2a, 0x25, 0x3c, 0x80, 0xf1, 0x3f, 0x11, 0xcc, 0x24, 0x0b, 0x3b, 0x29, 0xec, 0x7b, 0xaa,
- 0x40, 0x83, 0xb2, 0x57, 0x79, 0x13, 0x90, 0x1e, 0x66, 0x4b, 0x90, 0xd7, 0x58, 0x09, 0x2d, 0x86,
- 0xd2, 0x34, 0xe8, 0x03, 0xbd, 0xd2, 0x74, 0xcf, 0xad, 0x20, 0x94, 0xa6, 0x11, 0x19, 0x26, 0xf4,
- 0x6b, 0xc8, 0x34, 0x0d, 0x1a, 0x45, 0x29, 0x24, 0xdc, 0xe0, 0xbf, 0x21, 0x98, 0x8a, 0x3d, 0x5c,
- 0x52, 0x18, 0x25, 0x0b, 0x35, 0x7d, 0x0b, 0xef, 0x9d, 0x5d, 0x65, 0x26, 0x48, 0x90, 0xcb, 0x21,
- 0x49, 0x83, 0x11, 0x29, 0x17, 0x57, 0x18, 0x91, 0xc0, 0xa4, 0x30, 0xcc, 0x79, 0x19, 0x29, 0xbd,
- 0x0f, 0x73, 0x5d, 0xb2, 0x52, 0xef, 0xe4, 0xeb, 0x29, 0xf1, 0x0c, 0x9a, 0x7c, 0x1f, 0xa1, 0x5d,
- 0x65, 0xbe, 0xbb, 0x14, 0xba, 0x18, 0xb7, 0x8b, 0x6f, 0xc5, 0x18, 0x7b, 0xa6, 0x85, 0xac, 0x8e,
- 0xad, 0xc4, 0x92, 0xfc, 0x18, 0xc1, 0x61, 0xf1, 0xba, 0xc6, 0x0b, 0x89, 0x94, 0xa2, 0x5a, 0x51,
- 0xfe, 0xf9, 0xde, 0x46, 0xc1, 0xbd, 0x77, 0xd2, 0xc5, 0x7d, 0xd9, 0x7f, 0x0c, 0x8b, 0x04, 0x5d,
- 0x1e, 0xf6, 0x24, 0x5e, 0x7c, 0xbf, 0x44, 0xf9, 0x22, 0x6e, 0xc9, 0xb9, 0xb0, 0xc5, 0x5b, 0x3c,
- 0x05, 0x76, 0x54, 0xe0, 0x48, 0x81, 0x1d, 0x7b, 0xce, 0xbb, 0xb0, 0xa7, 0x18, 0xec, 0x40, 0x37,
- 0x60, 0xb8, 0x5f, 0x95, 0x94, 0xa1, 0x2f, 0x6d, 0xa5, 0x2a, 0xf5, 0x61, 0x3f, 0x45, 0x30, 0x19,
- 0x15, 0x21, 0x52, 0xae, 0xeb, 0x89, 0x12, 0x52, 0xca, 0x75, 0x3d, 0x59, 0xd5, 0x90, 0x5a, 0xbb,
- 0xca, 0x38, 0xe3, 0xc2, 0x9f, 0xae, 0x8c, 0x07, 0x91, 0x36, 0x32, 0xbd, 0x09, 0x95, 0x48, 0x64,
- 0x6d, 0x97, 0xe2, 0xbf, 0x11, 0x1c, 0xeb, 0xd2, 0x4b, 0xf0, 0x4b, 0x7d, 0x90, 0xc7, 0x76, 0xab,
- 0x30, 0xa8, 0xb9, 0xe0, 0xfa, 0xbd, 0x94, 0x7d, 0xab, 0x4a, 0xea, 0xb3, 0xe2, 0xbb, 0x12, 0xec,
- 0xea, 0x7f, 0xba, 0xf5, 0xe0, 0xa8, 0xcc, 0x83, 0x6f, 0x0c, 0xd2, 0x60, 0x12, 0xa5, 0xa1, 0xbe,
- 0x9d, 0xb4, 0xbd, 0xab, 0xe4, 0x39, 0xf5, 0x24, 0x05, 0x88, 0x45, 0xe1, 0x81, 0xf4, 0xc6, 0xf0,
- 0xd9, 0xcb, 0x1b, 0x55, 0x14, 0x9b, 0x4b, 0xfa, 0x33, 0x04, 0x27, 0x53, 0xc4, 0x23, 0x7c, 0x25,
- 0xa5, 0xd8, 0x7a, 0x49, 0x4d, 0x83, 0x36, 0xd4, 0x5a, 0xf8, 0x5a, 0xfc, 0xa6, 0xf4, 0x28, 0xdb,
- 0xfd, 0xad, 0x72, 0x8c, 0x1e, 0xc1, 0x14, 0xd5, 0x2a, 0x85, 0x60, 0x6f, 0x8d, 0xeb, 0x8b, 0x41,
- 0xd0, 0xe2, 0x18, 0x4b, 0x68, 0x31, 0xef, 0x7c, 0xa2, 0x9c, 0x4c, 0x11, 0xd8, 0xfe, 0xae, 0x3c,
- 0xd9, 0x76, 0x9c, 0xa6, 0x5d, 0x92, 0xe5, 0x9d, 0x9d, 0x9d, 0xb8, 0xfa, 0x46, 0x5a, 0xce, 0x36,
- 0xff, 0xeb, 0xb7, 0x97, 0x9a, 0x0d, 0xe2, 0x6c, 0x99, 0x96, 0x7e, 0x79, 0x20, 0xf3, 0xba, 0x6e,
- 0x2f, 0xff, 0x08, 0xc1, 0xc9, 0x8a, 0xa9, 0x27, 0xc5, 0x62, 0x79, 0x74, 0x4d, 0xb7, 0xd7, 0x2d,
- 0xd3, 0x31, 0xd7, 0xd1, 0x9b, 0xd7, 0x84, 0x41, 0xcd, 0x6c, 0x10, 0xa3, 0x56, 0x30, 0xad, 0x9a,
- 0x5c, 0xa3, 0x06, 0xfb, 0x0f, 0x0e, 0x39, 0x58, 0x20, 0xf2, 0x47, 0x78, 0x37, 0xeb, 0xba, 0xfd,
- 0x5f, 0x84, 0x7e, 0x95, 0x9b, 0xbe, 0xcb, 0xe7, 0xde, 0x61, 0xce, 0xd7, 0x74, 0xbb, 0xf0, 0x78,
- 0xe9, 0x13, 0x6f, 0x74, 0x83, 0x8d, 0x6e, 0xac, 0xe9, 0xf6, 0xc6, 0xe3, 0xa5, 0xcd, 0x11, 0xe6,
- 0xf1, 0xca, 0xe7, 0x01, 0x00, 0x00, 0xff, 0xff, 0x07, 0x13, 0xb6, 0xbb, 0x80, 0x28, 0x00, 0x00,
+ 0xf4, 0x0f, 0x28, 0x7a, 0x2a, 0xda, 0x4b, 0xb1, 0x33, 0xb3, 0x9f, 0xdc, 0x25, 0x29, 0x6a, 0x0d,
+ 0xe4, 0x66, 0xce, 0xbe, 0x79, 0xf3, 0xfb, 0xbd, 0x79, 0xef, 0xcd, 0xcc, 0xcf, 0x82, 0x73, 0x75,
+ 0xd3, 0xac, 0x37, 0xa9, 0x5c, 0x6d, 0x9a, 0xed, 0x9a, 0xdc, 0xd0, 0x6d, 0xb9, 0xb3, 0x22, 0xdb,
+ 0xd4, 0xea, 0x68, 0x55, 0x5a, 0x68, 0x59, 0xa6, 0x63, 0xe2, 0x59, 0x6e, 0x52, 0x60, 0x26, 0x85,
+ 0x86, 0x6e, 0x17, 0x3a, 0x2b, 0xf9, 0xd3, 0x62, 0x1e, 0x69, 0x69, 0x32, 0x31, 0x0c, 0xd3, 0x21,
+ 0x8e, 0x66, 0x1a, 0x36, 0x9f, 0x92, 0x3f, 0x11, 0xfa, 0x5a, 0x6d, 0x6a, 0xd4, 0x70, 0xc4, 0x87,
+ 0x33, 0xa1, 0x0f, 0x5b, 0x1a, 0x6d, 0xd6, 0xd4, 0x0a, 0xdd, 0x26, 0x1d, 0xcd, 0xb4, 0x84, 0xc1,
+ 0xc9, 0x90, 0x81, 0x45, 0x6d, 0xb3, 0x6d, 0x79, 0x38, 0xf2, 0x4b, 0x49, 0x50, 0x3d, 0x1b, 0x6f,
+ 0xe5, 0xb3, 0xc2, 0x88, 0xfd, 0xaa, 0xb4, 0xb7, 0xc4, 0x2a, 0x3a, 0xb1, 0x1b, 0xdc, 0x42, 0xfa,
+ 0x0c, 0xc1, 0xec, 0x1b, 0x9a, 0xed, 0xac, 0xd3, 0x6e, 0x59, 0x33, 0xea, 0x76, 0x99, 0xbe, 0xdb,
+ 0xa6, 0xb6, 0x83, 0x15, 0x18, 0x6b, 0x11, 0x8b, 0x1a, 0xce, 0x3c, 0x3a, 0x8b, 0x2e, 0x4c, 0xac,
+ 0x5e, 0x7c, 0xaa, 0xe4, 0xfe, 0xab, 0x2c, 0xc1, 0xb9, 0xa6, 0x59, 0x15, 0xe4, 0xb8, 0x6f, 0xd2,
+ 0xd2, 0xec, 0x42, 0xd5, 0xd4, 0xe5, 0x37, 0xc4, 0x87, 0xb2, 0x98, 0x88, 0xcf, 0xc2, 0x44, 0x8b,
+ 0xd4, 0xa9, 0x6a, 0x6b, 0xef, 0xd3, 0xf9, 0xdc, 0x59, 0x74, 0xe1, 0xe0, 0xea, 0x81, 0xa7, 0x0a,
+ 0x2a, 0x8f, 0xbb, 0xa3, 0x0f, 0xb4, 0xf7, 0x29, 0x96, 0x00, 0x98, 0x85, 0x63, 0x36, 0xa8, 0x31,
+ 0x7f, 0x80, 0x2d, 0xc4, 0x4c, 0xd8, 0xc4, 0x87, 0xee, 0x28, 0x3e, 0x05, 0x63, 0x5b, 0x5a, 0xd3,
+ 0xa1, 0xd6, 0xfc, 0xf3, 0xc1, 0x77, 0x31, 0x84, 0x17, 0x61, 0xdc, 0xb4, 0x6a, 0xd4, 0x52, 0x2b,
+ 0xdd, 0xf9, 0x83, 0xc1, 0xe7, 0x43, 0x6c, 0x70, 0xb5, 0x2b, 0xfd, 0x36, 0x07, 0xc7, 0x5d, 0x76,
+ 0xb7, 0xad, 0x6e, 0xcb, 0x31, 0xd7, 0x69, 0xd7, 0xe7, 0x77, 0x2b, 0xc6, 0xef, 0x45, 0xc6, 0xef,
+ 0x1c, 0x9c, 0x61, 0xf1, 0x74, 0xb7, 0x35, 0x46, 0x4f, 0x04, 0x28, 0x63, 0x76, 0xdf, 0x82, 0xa9,
+ 0x0e, 0xb5, 0x6c, 0xcd, 0x34, 0xd4, 0x8e, 0x46, 0x77, 0x18, 0xc7, 0xe9, 0x62, 0xa9, 0x90, 0x90,
+ 0x64, 0x05, 0x9f, 0xc4, 0x63, 0x3e, 0xa3, 0x67, 0xe0, 0xb1, 0x46, 0x77, 0xca, 0x93, 0x9d, 0xe0,
+ 0x47, 0x28, 0x78, 0x07, 0xfb, 0x07, 0x6f, 0x2c, 0x21, 0x78, 0x9f, 0xe4, 0xe0, 0x74, 0x24, 0x78,
+ 0x62, 0x99, 0xc1, 0x39, 0x92, 0x16, 0x43, 0xdf, 0x53, 0xc6, 0x51, 0x7c, 0x13, 0x9e, 0xcf, 0x28,
+ 0x7a, 0xcc, 0xcf, 0xfe, 0xc2, 0xf6, 0x19, 0xe2, 0x39, 0x77, 0x4f, 0x6f, 0x99, 0x96, 0xf3, 0xba,
+ 0x59, 0xf9, 0xa2, 0xe5, 0xdc, 0xbe, 0x2a, 0xea, 0x27, 0x08, 0x8e, 0x45, 0xfb, 0x85, 0xdd, 0x32,
+ 0x0d, 0x9b, 0xe2, 0xeb, 0x30, 0xd1, 0xa0, 0x5d, 0xd5, 0x72, 0x07, 0xe7, 0xd1, 0xd9, 0x03, 0x17,
+ 0x26, 0x8b, 0xa7, 0x13, 0x37, 0xc2, 0x23, 0x35, 0xde, 0x10, 0x2e, 0xf0, 0x79, 0x98, 0x31, 0xe8,
+ 0x7b, 0x8e, 0x1a, 0x42, 0xee, 0x92, 0x9b, 0x28, 0x1f, 0x76, 0x87, 0x37, 0x7c, 0xe0, 0x0b, 0x00,
+ 0x8e, 0xe9, 0x90, 0x26, 0xe7, 0xef, 0x92, 0x3b, 0x58, 0x9e, 0x60, 0x23, 0x2e, 0x77, 0xe9, 0xe7,
+ 0x08, 0xe6, 0xe2, 0xc5, 0x2e, 0xc0, 0xdd, 0x82, 0xc9, 0x2a, 0x1b, 0x55, 0x1b, 0xb4, 0xeb, 0xc1,
+ 0x5b, 0xec, 0x9f, 0x27, 0x65, 0xa8, 0xfa, 0x8e, 0xb2, 0x82, 0xf8, 0x07, 0x04, 0x0b, 0x29, 0x25,
+ 0x25, 0x90, 0x3e, 0x82, 0xd9, 0x00, 0xa9, 0x2a, 0x6a, 0xd9, 0x43, 0xfc, 0xa5, 0xa1, 0x32, 0xbb,
+ 0x7c, 0xb4, 0x1a, 0x77, 0x9f, 0x75, 0x88, 0xc3, 0xb9, 0x1d, 0x84, 0x58, 0x63, 0xa3, 0xea, 0x3b,
+ 0x66, 0xa5, 0x7f, 0x88, 0xfd, 0xd9, 0x65, 0xd0, 0x7c, 0x47, 0x59, 0x41, 0xdc, 0x80, 0xa3, 0x77,
+ 0xa8, 0x97, 0x9e, 0x5e, 0xe5, 0xdd, 0x80, 0xe7, 0x0d, 0xa2, 0xd3, 0xbd, 0xd6, 0x1d, 0x9b, 0x24,
+ 0x3d, 0x84, 0xd9, 0x3b, 0x34, 0xd8, 0x32, 0xcf, 0xe7, 0xcd, 0x88, 0xcf, 0x3d, 0xf4, 0x3e, 0xee,
+ 0xb5, 0x02, 0xf9, 0xb0, 0x57, 0x6f, 0xef, 0x84, 0xf3, 0xb5, 0x88, 0xf3, 0x2f, 0x33, 0xe7, 0xcb,
+ 0x70, 0x61, 0xa0, 0x73, 0xcf, 0x0d, 0x5f, 0xe3, 0x9b, 0x0c, 0xf9, 0x46, 0xbb, 0xd2, 0xd4, 0xaa,
+ 0x21, 0xe4, 0xd9, 0x38, 0xe7, 0x61, 0x09, 0xf6, 0x72, 0xb4, 0xb0, 0x04, 0xf3, 0xb9, 0xd7, 0xdf,
+ 0x23, 0x38, 0x76, 0xdb, 0xa2, 0xc4, 0xa1, 0xb1, 0x2d, 0xcc, 0xe0, 0x42, 0xb2, 0x04, 0x93, 0x5e,
+ 0x8b, 0x52, 0xb5, 0x1a, 0xcf, 0x2e, 0xb7, 0xbd, 0xe5, 0xca, 0x13, 0xa2, 0x17, 0xdd, 0xab, 0xe1,
+ 0xaf, 0xc0, 0xb8, 0x67, 0xc4, 0x92, 0x6b, 0x40, 0x1b, 0xe3, 0xf3, 0x0f, 0x89, 0xf9, 0xd2, 0x0f,
+ 0x72, 0x30, 0xc7, 0xe1, 0xf7, 0xe4, 0xcb, 0xbe, 0xbb, 0xff, 0x8b, 0x70, 0x38, 0xd4, 0x1a, 0xa2,
+ 0x04, 0x26, 0xfd, 0x92, 0xbf, 0x57, 0xc3, 0xab, 0x00, 0x81, 0xa1, 0x20, 0x31, 0xa0, 0xd9, 0x89,
+ 0x30, 0xf8, 0x5e, 0xb0, 0x02, 0x0b, 0x76, 0x43, 0x6b, 0xa9, 0x9a, 0xa1, 0x39, 0x1a, 0x69, 0x7a,
+ 0x9d, 0x48, 0xad, 0xba, 0xe4, 0x34, 0xd3, 0x60, 0x87, 0xc3, 0x78, 0x39, 0xef, 0x1a, 0xdd, 0xe3,
+ 0x36, 0x22, 0x3d, 0x6e, 0x0b, 0x0b, 0x77, 0x2b, 0x17, 0x62, 0xb1, 0x88, 0x65, 0x79, 0x06, 0x17,
+ 0x88, 0xaf, 0x03, 0xee, 0xed, 0x97, 0x2c, 0x32, 0xc3, 0xb6, 0x4b, 0x4e, 0xfd, 0x48, 0xbc, 0x67,
+ 0x4a, 0xbf, 0xca, 0xc1, 0x02, 0xcf, 0xce, 0x67, 0x08, 0xbf, 0x02, 0x13, 0xa4, 0x59, 0x37, 0x2d,
+ 0xcd, 0xd9, 0xd6, 0x19, 0xea, 0xe9, 0xe2, 0xad, 0xd1, 0xae, 0x2f, 0x8a, 0xe7, 0x46, 0x6c, 0xa5,
+ 0xef, 0xd6, 0xbd, 0x13, 0x04, 0x9d, 0x39, 0x38, 0xf3, 0x73, 0xe5, 0x09, 0xbf, 0xfb, 0x62, 0x19,
+ 0x66, 0x2d, 0x9b, 0xa8, 0x84, 0xda, 0xea, 0x8e, 0x45, 0x5a, 0x2d, 0x5a, 0x63, 0xb9, 0xe3, 0x6e,
+ 0xf2, 0xd4, 0xdd, 0xe7, 0xca, 0x47, 0x2c, 0x9b, 0x28, 0xd4, 0x7e, 0xc2, 0x3f, 0xb9, 0xf9, 0x32,
+ 0x07, 0xc7, 0x42, 0x86, 0xaa, 0x4e, 0x1c, 0x6a, 0x69, 0xa4, 0x29, 0xfd, 0x09, 0x79, 0x05, 0xd0,
+ 0xd3, 0x19, 0xb2, 0x28, 0x80, 0x80, 0x48, 0xbc, 0x00, 0x7c, 0x2e, 0xbc, 0x00, 0x42, 0x8c, 0xfb,
+ 0x15, 0x80, 0x0f, 0x32, 0x1e, 0x11, 0xe9, 0x67, 0x08, 0xe6, 0x1e, 0xb5, 0x6a, 0x49, 0x95, 0x1c,
+ 0xad, 0x2f, 0x34, 0x52, 0x7d, 0x7d, 0x15, 0x26, 0xdb, 0xcc, 0x3b, 0x7b, 0x8c, 0x89, 0x84, 0xcd,
+ 0x7b, 0x4e, 0xbc, 0xf7, 0x5a, 0xe1, 0x35, 0xf7, 0xbd, 0x76, 0x9f, 0xd8, 0x0d, 0xee, 0x00, 0xf8,
+ 0x1c, 0x77, 0x40, 0xfa, 0x1d, 0x82, 0x85, 0x18, 0xc0, 0x58, 0x7e, 0x26, 0xd7, 0x06, 0xda, 0x7f,
+ 0x6d, 0x64, 0x80, 0xfe, 0xa7, 0x08, 0xa6, 0x5f, 0x35, 0x98, 0x63, 0x0f, 0xee, 0x42, 0xe4, 0xe4,
+ 0x98, 0x60, 0xd9, 0x71, 0x00, 0xd0, 0x32, 0x3f, 0x19, 0xf0, 0x39, 0x98, 0x68, 0x35, 0x89, 0x66,
+ 0x38, 0xf4, 0x3d, 0x87, 0xad, 0x38, 0x25, 0x82, 0xea, 0x8f, 0xe2, 0x3b, 0xb0, 0x40, 0x6a, 0x35,
+ 0xcd, 0xed, 0x3e, 0xa4, 0xa9, 0x92, 0xb6, 0xb3, 0x4d, 0x0d, 0x47, 0xab, 0x12, 0x87, 0xd6, 0xd4,
+ 0x1a, 0x71, 0x08, 0x4b, 0x85, 0x29, 0x7e, 0xa3, 0x3d, 0x15, 0x58, 0x2a, 0x61, 0xc3, 0x35, 0xe2,
+ 0x10, 0xf7, 0x9e, 0x36, 0xbd, 0x46, 0x23, 0xe8, 0xf6, 0x77, 0xdc, 0xe3, 0x25, 0x80, 0xaa, 0xd6,
+ 0xda, 0xa6, 0x56, 0x1c, 0x7e, 0x68, 0x38, 0x3b, 0xfc, 0x3f, 0x46, 0x70, 0x5c, 0xb1, 0xbb, 0xba,
+ 0x4e, 0x1d, 0x4b, 0xab, 0x3e, 0xd0, 0xea, 0xd9, 0x5e, 0x2c, 0xf0, 0x35, 0x18, 0xab, 0x69, 0x75,
+ 0x6a, 0x3b, 0xa2, 0xb8, 0x4e, 0x25, 0x66, 0xd3, 0x1a, 0x33, 0xe1, 0x34, 0x85, 0xbd, 0xf4, 0x21,
+ 0x82, 0xf9, 0x00, 0x59, 0x2c, 0xc6, 0xd9, 0x80, 0x8b, 0x86, 0xfa, 0x40, 0x62, 0xa8, 0x25, 0x19,
+ 0x66, 0xfc, 0xc5, 0xc5, 0x0d, 0xf6, 0x74, 0x38, 0xc1, 0x5c, 0x08, 0x53, 0xa1, 0xdc, 0x92, 0x5e,
+ 0x85, 0x19, 0x3f, 0x5f, 0xc5, 0x04, 0x1c, 0x86, 0x2b, 0x16, 0x5f, 0xec, 0xdd, 0xe7, 0xc8, 0xba,
+ 0x57, 0x61, 0x2e, 0xbe, 0x31, 0xc1, 0xf2, 0xb6, 0x56, 0x37, 0x88, 0xd3, 0xb6, 0xa8, 0xb7, 0xbc,
+ 0x3f, 0x20, 0x5d, 0x87, 0x93, 0x09, 0x61, 0x1b, 0x0a, 0xf9, 0xc7, 0x08, 0x5e, 0x88, 0x35, 0x8a,
+ 0x0d, 0x4b, 0xd3, 0x89, 0x15, 0xef, 0x17, 0xfb, 0x4c, 0xf1, 0xab, 0x70, 0xbc, 0xb7, 0xdd, 0xc4,
+ 0xda, 0x34, 0x8e, 0xb7, 0x92, 0x7b, 0x35, 0x69, 0x0b, 0x16, 0xd7, 0xa8, 0xed, 0x58, 0x66, 0xf7,
+ 0xd9, 0xde, 0x86, 0xb7, 0x60, 0xb1, 0x4c, 0x6d, 0xc7, 0xb4, 0xe8, 0xb3, 0x5d, 0xe7, 0x6d, 0x18,
+ 0xe3, 0x99, 0x8f, 0xe7, 0x61, 0xcc, 0xde, 0x26, 0xc5, 0x2b, 0x57, 0xf9, 0xa6, 0xdc, 0x7d, 0xae,
+ 0x2c, 0x7e, 0x8b, 0x2f, 0x97, 0xaf, 0xbd, 0xc2, 0x53, 0x44, 0x7c, 0xb9, 0x7c, 0xed, 0x15, 0xf1,
+ 0xe5, 0xca, 0x4a, 0x91, 0x67, 0xae, 0xf8, 0x72, 0x65, 0xa5, 0xb8, 0x3a, 0xee, 0x15, 0x9d, 0xb4,
+ 0x09, 0x47, 0xbc, 0xcb, 0xed, 0x7d, 0xea, 0x10, 0xb7, 0x35, 0xe0, 0x25, 0x38, 0xbc, 0x6d, 0xeb,
+ 0x2a, 0xe9, 0x10, 0xad, 0x49, 0x2a, 0x4d, 0x4e, 0x62, 0xbc, 0x3c, 0xb5, 0x6d, 0xeb, 0x8a, 0x37,
+ 0xe6, 0x1a, 0xd1, 0x46, 0xd8, 0x28, 0xc7, 0x8d, 0x68, 0x23, 0x30, 0x2a, 0x7e, 0xff, 0x3c, 0x1c,
+ 0x5b, 0xa7, 0xdd, 0xfb, 0xc4, 0x20, 0x75, 0xaa, 0x53, 0xc3, 0x79, 0xc0, 0x05, 0x50, 0xfc, 0x0b,
+ 0x04, 0x53, 0xe1, 0xb7, 0x3f, 0xbe, 0x90, 0x58, 0xf6, 0x09, 0x72, 0x62, 0xfe, 0xe2, 0x10, 0x96,
+ 0x3c, 0x99, 0xa5, 0x9b, 0xbb, 0x8a, 0x38, 0xf0, 0xbf, 0xf7, 0xf7, 0x7f, 0x7e, 0x94, 0x2b, 0xe0,
+ 0x4b, 0x72, 0x67, 0x45, 0xfe, 0x0e, 0x1f, 0xba, 0xd9, 0xb2, 0xcc, 0x77, 0x68, 0xd5, 0xb1, 0xe5,
+ 0x65, 0xd9, 0xbf, 0xf8, 0xcb, 0xcb, 0x1f, 0xc8, 0xbe, 0x98, 0xf0, 0x6b, 0x04, 0xd3, 0x51, 0x15,
+ 0x00, 0x2f, 0xa7, 0x2e, 0xde, 0xa3, 0x0b, 0xe6, 0x5f, 0x1a, 0xca, 0x56, 0x40, 0x7d, 0x3d, 0x0a,
+ 0xf5, 0x06, 0xbe, 0x3e, 0x18, 0xaa, 0x8f, 0xd4, 0x45, 0x1d, 0x52, 0x18, 0x3e, 0x47, 0x31, 0xa9,
+ 0xd2, 0x7f, 0xbb, 0xaf, 0x0c, 0x86, 0x14, 0x53, 0xe6, 0xf2, 0xc5, 0xbd, 0x4c, 0x11, 0x64, 0xbe,
+ 0x1d, 0x25, 0xf3, 0x35, 0x7c, 0x7f, 0x4f, 0x64, 0x42, 0x5c, 0x22, 0xcc, 0x7c, 0x1a, 0xde, 0xc6,
+ 0x04, 0xda, 0x41, 0x9f, 0x8d, 0xe9, 0x11, 0xcf, 0xfa, 0x6c, 0x4c, 0xaf, 0x18, 0xb1, 0xff, 0x8d,
+ 0x09, 0xe9, 0x12, 0x3f, 0x42, 0x00, 0x81, 0xa2, 0x80, 0xcf, 0x27, 0xe2, 0xe8, 0x91, 0x1c, 0xf2,
+ 0x7d, 0x5f, 0x8d, 0xd2, 0x8d, 0x5d, 0x85, 0x35, 0x8b, 0x48, 0x8a, 0xbb, 0x03, 0x43, 0x80, 0x63,
+ 0x75, 0x18, 0xd6, 0x0e, 0x52, 0xea, 0x30, 0x41, 0xb4, 0xc8, 0x0f, 0xb8, 0xa6, 0x4a, 0x77, 0xc3,
+ 0xb8, 0xbc, 0xb0, 0x0d, 0x87, 0x2b, 0x9a, 0x00, 0xf8, 0xcf, 0x28, 0x2a, 0x9b, 0x78, 0x57, 0x47,
+ 0x79, 0x20, 0xd6, 0x68, 0x53, 0xce, 0x0f, 0x77, 0x53, 0x95, 0x36, 0xc3, 0xc8, 0xbd, 0xe4, 0x1d,
+ 0x01, 0x79, 0x6f, 0xe6, 0xba, 0x6c, 0xfe, 0xc8, 0x43, 0xee, 0x4b, 0x29, 0xe9, 0x21, 0x8f, 0xab,
+ 0x2d, 0x29, 0x21, 0xf7, 0xcd, 0xa4, 0xad, 0x30, 0xf0, 0x6f, 0xe0, 0x27, 0x99, 0x02, 0x97, 0x5b,
+ 0x3e, 0x62, 0x91, 0x35, 0x7e, 0xb5, 0xa4, 0x53, 0x88, 0xbf, 0xdc, 0xf2, 0x03, 0xde, 0x4e, 0xfb,
+ 0xca, 0x9a, 0xa0, 0xd2, 0xdc, 0x38, 0xff, 0x06, 0xc1, 0xe1, 0x88, 0xfc, 0x83, 0x2f, 0xa6, 0x6c,
+ 0x7f, 0xaf, 0x44, 0x34, 0xa0, 0xe4, 0x36, 0x77, 0x95, 0x53, 0xbc, 0x01, 0x5c, 0x0a, 0xa9, 0x40,
+ 0xfe, 0xbf, 0x19, 0xf6, 0x6b, 0xd2, 0x9e, 0x0e, 0x9b, 0x92, 0x2f, 0x15, 0xe1, 0xbf, 0x20, 0x98,
+ 0x89, 0x89, 0x1d, 0xf8, 0xa5, 0x3e, 0xd0, 0xf7, 0x5c, 0x99, 0xe6, 0xae, 0x72, 0x46, 0xc0, 0x8f,
+ 0xa8, 0x40, 0xa1, 0x5f, 0x8c, 0xc2, 0x1d, 0x69, 0xf4, 0x43, 0xa8, 0x14, 0x7a, 0xd7, 0xe2, 0xff,
+ 0xa1, 0x1e, 0x29, 0xcb, 0xab, 0xe1, 0xe2, 0x30, 0xc4, 0x46, 0x2b, 0xe3, 0x0f, 0xd1, 0xae, 0x72,
+ 0xb2, 0x97, 0xa7, 0xb8, 0x4d, 0x32, 0x86, 0x55, 0x29, 0xdb, 0x93, 0xa9, 0x94, 0xf0, 0x4a, 0xc6,
+ 0xff, 0x40, 0x30, 0x97, 0xac, 0xfe, 0xa4, 0xb0, 0xef, 0x2b, 0x15, 0x0d, 0xcb, 0x5e, 0xe5, 0x4d,
+ 0x40, 0x7a, 0x98, 0x2d, 0x41, 0x5e, 0x63, 0x25, 0xb4, 0x1c, 0x4a, 0xd3, 0xa0, 0x0f, 0xf4, 0x4b,
+ 0xd3, 0x3d, 0xb7, 0x82, 0x50, 0x9a, 0x46, 0xb4, 0x9a, 0xd0, 0xaf, 0x11, 0xd3, 0x34, 0x68, 0x14,
+ 0xa5, 0x90, 0xba, 0x83, 0xff, 0x8a, 0x60, 0x26, 0xf6, 0xba, 0x49, 0x61, 0x94, 0xac, 0xe6, 0x0c,
+ 0x2c, 0xbc, 0x77, 0x77, 0x95, 0xb9, 0x20, 0x41, 0x2e, 0x85, 0x74, 0x0f, 0x46, 0xa4, 0x5c, 0x5c,
+ 0x63, 0x44, 0x02, 0x93, 0xc2, 0x28, 0xe7, 0x65, 0xa4, 0xf4, 0x3e, 0xca, 0xf5, 0x68, 0x4f, 0xfd,
+ 0x93, 0xaf, 0xaf, 0x0e, 0x34, 0x6c, 0xf2, 0x7d, 0x8c, 0x76, 0x95, 0xc5, 0xde, 0x52, 0xe8, 0x61,
+ 0xdc, 0x29, 0xbe, 0x1d, 0x63, 0xec, 0x99, 0x16, 0xb2, 0x3a, 0xb6, 0x12, 0x4b, 0xf2, 0x13, 0x04,
+ 0x87, 0xc4, 0x13, 0x1c, 0x2f, 0x25, 0x52, 0x8a, 0x0a, 0x4a, 0xf9, 0x17, 0xfa, 0x1b, 0x05, 0xf7,
+ 0xde, 0x69, 0x17, 0xf7, 0x25, 0xff, 0xc5, 0x2c, 0x12, 0x74, 0x75, 0xd4, 0x93, 0x78, 0xf9, 0x83,
+ 0x12, 0xe5, 0x8b, 0xb8, 0x25, 0xe7, 0xc2, 0x16, 0x0f, 0xf6, 0x14, 0xd8, 0x51, 0x15, 0x24, 0x05,
+ 0x76, 0xec, 0xcd, 0xef, 0xc2, 0x9e, 0x61, 0xb0, 0x03, 0x71, 0x81, 0xe1, 0x7e, 0x4d, 0x52, 0x46,
+ 0xbe, 0xb4, 0x95, 0x6a, 0xd4, 0x87, 0xfd, 0x14, 0xc1, 0x74, 0x54, 0xa9, 0x48, 0xb9, 0xae, 0x27,
+ 0xea, 0x4c, 0x29, 0xd7, 0xf5, 0x64, 0xe9, 0x43, 0x6a, 0xef, 0x2a, 0x93, 0x8c, 0x0b, 0x7f, 0xdf,
+ 0x32, 0x1e, 0x44, 0xda, 0xcc, 0xf4, 0x26, 0x54, 0x22, 0x91, 0xb5, 0x5d, 0x8a, 0xff, 0x42, 0x70,
+ 0xb4, 0x47, 0x54, 0xc1, 0x2f, 0x0f, 0x40, 0x1e, 0xdb, 0xad, 0xc2, 0xb0, 0xe6, 0x82, 0xeb, 0x77,
+ 0x53, 0xf6, 0xad, 0x26, 0xa9, 0xcf, 0x8a, 0xef, 0x5a, 0xb0, 0xab, 0xff, 0xee, 0x15, 0x8d, 0xa3,
+ 0x5a, 0x10, 0xbe, 0x3e, 0x4c, 0x83, 0x49, 0xd4, 0x8f, 0x06, 0x76, 0xd2, 0xce, 0xae, 0x92, 0xe7,
+ 0xd4, 0x93, 0x64, 0x22, 0x16, 0x85, 0x07, 0xd2, 0x9b, 0xa3, 0x67, 0x2f, 0x6f, 0x54, 0x51, 0x6c,
+ 0x2e, 0xe9, 0xcf, 0x11, 0x9c, 0x48, 0x51, 0x98, 0xf0, 0xe5, 0x94, 0x62, 0xeb, 0xa7, 0x47, 0x0d,
+ 0xdb, 0x50, 0xeb, 0xe1, 0x6b, 0xf1, 0x5b, 0xd2, 0xa3, 0x6c, 0xf7, 0xb7, 0xc6, 0x31, 0x7a, 0x04,
+ 0x53, 0xa4, 0xad, 0x14, 0x82, 0xfd, 0x85, 0xb0, 0x2f, 0x06, 0x41, 0x8b, 0x63, 0x2c, 0xa1, 0xe5,
+ 0xbc, 0xf3, 0xa9, 0x72, 0x22, 0x45, 0x85, 0xfb, 0x9b, 0xf2, 0x64, 0xdb, 0x71, 0x5a, 0x76, 0x49,
+ 0x96, 0x77, 0x76, 0x76, 0xe2, 0x12, 0x1d, 0x69, 0x3b, 0xdb, 0xfc, 0x4f, 0xe4, 0x5e, 0x6e, 0x35,
+ 0x89, 0xb3, 0x65, 0x5a, 0xfa, 0xa5, 0xa1, 0xcc, 0x1b, 0xba, 0xbd, 0xfa, 0x43, 0x04, 0x27, 0xaa,
+ 0xa6, 0x9e, 0x14, 0x8b, 0xd5, 0xf1, 0x75, 0xdd, 0xde, 0xb0, 0x4c, 0xc7, 0xdc, 0x40, 0x6f, 0x5d,
+ 0x15, 0x06, 0x75, 0xb3, 0x49, 0x8c, 0x7a, 0xc1, 0xb4, 0xea, 0x72, 0x9d, 0x1a, 0xec, 0x7f, 0x41,
+ 0xe4, 0x60, 0x81, 0xc8, 0x5f, 0xea, 0xdd, 0x68, 0xe8, 0xf6, 0x7f, 0x10, 0xfa, 0x65, 0x6e, 0xf6,
+ 0x0e, 0x9f, 0x7b, 0x9b, 0x39, 0x5f, 0xd7, 0xed, 0xc2, 0xe3, 0x95, 0x4f, 0xbd, 0xd1, 0x4d, 0x36,
+ 0xba, 0xb9, 0xae, 0xdb, 0x9b, 0x8f, 0x57, 0x2a, 0x63, 0xcc, 0xe3, 0xe5, 0xff, 0x07, 0x00, 0x00,
+ 0xff, 0xff, 0x97, 0x2c, 0x57, 0x2d, 0xa5, 0x28, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/googleapis/cloud/osconfig/v1beta/guest_policies.pb.go b/googleapis/cloud/osconfig/v1beta/guest_policies.pb.go
index e5b0b8a..80769b7 100644
--- a/googleapis/cloud/osconfig/v1beta/guest_policies.pb.go
+++ b/googleapis/cloud/osconfig/v1beta/guest_policies.pb.go
@@ -2682,157 +2682,156 @@
}
var fileDescriptor_54240e33d5980434 = []byte{
- // 2419 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x59, 0x4b, 0x73, 0x1b, 0xc7,
- 0xf1, 0x27, 0xde, 0x40, 0x83, 0x04, 0xa1, 0xb1, 0x6c, 0x41, 0xf0, 0x43, 0x34, 0xfc, 0xd7, 0xdf,
- 0x8a, 0xed, 0x80, 0x65, 0x3a, 0x2f, 0xcb, 0x49, 0xc9, 0x20, 0xb1, 0x22, 0x11, 0x93, 0x12, 0x32,
- 0x00, 0x69, 0x8b, 0x79, 0x6c, 0x2d, 0x16, 0xc3, 0xd5, 0x84, 0x8b, 0x9d, 0xf5, 0xce, 0x82, 0x12,
- 0xe4, 0x72, 0x0e, 0xa9, 0x72, 0xca, 0xc7, 0x54, 0xaa, 0x52, 0x39, 0xe4, 0x92, 0xdc, 0x53, 0xa9,
- 0x54, 0x25, 0xa7, 0x7c, 0x8c, 0x7c, 0x01, 0xfb, 0x9c, 0x6b, 0x6e, 0x39, 0xa5, 0xe6, 0xb1, 0xc0,
- 0x82, 0x04, 0x29, 0x80, 0x4c, 0x55, 0x4e, 0xd8, 0xee, 0x99, 0xfe, 0x4d, 0x4f, 0x77, 0x4f, 0x4f,
- 0x4f, 0x03, 0xde, 0x75, 0x18, 0x73, 0x5c, 0xb2, 0x6e, 0xbb, 0x6c, 0xd8, 0x5f, 0x67, 0xdc, 0x66,
- 0xde, 0x11, 0x75, 0xd6, 0x4f, 0xde, 0xed, 0x91, 0xd0, 0x5a, 0x77, 0x86, 0x84, 0x87, 0xa6, 0xcf,
- 0x5c, 0x6a, 0x53, 0xc2, 0xeb, 0x7e, 0xc0, 0x42, 0x86, 0x5e, 0x51, 0x22, 0x75, 0x29, 0x52, 0x8f,
- 0x44, 0xea, 0x4a, 0xa4, 0x7a, 0x4b, 0x03, 0x5a, 0x3e, 0x5d, 0x3f, 0xa2, 0xc4, 0xed, 0x9b, 0x3d,
- 0xf2, 0xd8, 0x3a, 0xa1, 0x2c, 0x50, 0xe2, 0xd5, 0x9b, 0xb1, 0x09, 0x01, 0xe1, 0x6c, 0x18, 0xd8,
- 0x44, 0x0f, 0xad, 0xe9, 0x21, 0x49, 0xf5, 0x86, 0x47, 0x1a, 0x60, 0x60, 0xf1, 0x63, 0x3d, 0xe3,
- 0xd6, 0xe9, 0x19, 0x21, 0x1d, 0x10, 0x1e, 0x5a, 0x03, 0x5f, 0x4d, 0xa8, 0x7d, 0x91, 0x81, 0xe2,
- 0xb6, 0xd0, 0xba, 0x2d, 0x94, 0x1e, 0xa1, 0x1b, 0x90, 0xf6, 0xac, 0x01, 0xa9, 0x24, 0xd6, 0x12,
- 0x77, 0x0a, 0x9b, 0xa9, 0xaf, 0x1b, 0x49, 0x2c, 0x19, 0x68, 0x0d, 0x8a, 0x7d, 0xc2, 0xed, 0x80,
- 0xfa, 0x21, 0x65, 0x5e, 0x25, 0x29, 0xc6, 0x71, 0x9c, 0x85, 0x3e, 0x84, 0xa2, 0x1d, 0x10, 0x2b,
- 0x24, 0xa6, 0x58, 0xa4, 0x92, 0x5a, 0x4b, 0xdc, 0x29, 0x6e, 0x54, 0xeb, 0x7a, 0xf7, 0x91, 0x06,
- 0xf5, 0x6e, 0xa4, 0x81, 0x40, 0x4f, 0x61, 0x50, 0x32, 0x82, 0x2b, 0x10, 0x86, 0x7e, 0x7f, 0x8c,
- 0x90, 0x9e, 0x13, 0x41, 0xc9, 0x48, 0x84, 0x3d, 0x00, 0x8b, 0x73, 0xea, 0x78, 0x03, 0xe2, 0x85,
- 0x95, 0xac, 0x04, 0xb8, 0x53, 0xbf, 0xc8, 0x01, 0xf5, 0xc6, 0x78, 0xbe, 0xda, 0x6e, 0x0c, 0x00,
- 0x35, 0x20, 0xef, 0x5b, 0xf6, 0xb1, 0xe5, 0x10, 0x5e, 0xc9, 0xad, 0xa5, 0xee, 0x14, 0x37, 0x6e,
- 0x5f, 0x0c, 0xd6, 0x56, 0xb3, 0xf1, 0x58, 0x0c, 0xf5, 0xe0, 0xba, 0xfe, 0x36, 0x03, 0xe2, 0x33,
- 0x4e, 0x43, 0x16, 0x50, 0xc2, 0x2b, 0x79, 0x09, 0xb7, 0x3e, 0x1f, 0x5c, 0x24, 0x38, 0xc2, 0x2f,
- 0xf8, 0xa7, 0x58, 0x94, 0x70, 0x74, 0x1f, 0x72, 0x01, 0xb1, 0xa9, 0x4f, 0x78, 0xa5, 0x20, 0x61,
- 0xdf, 0xb9, 0x18, 0xb6, 0xc3, 0x8e, 0xc2, 0x27, 0x56, 0x40, 0xb0, 0x14, 0xc2, 0x91, 0x30, 0x42,
- 0x90, 0x26, 0xa1, 0xe5, 0x54, 0x40, 0x3a, 0x57, 0x7e, 0xdf, 0x25, 0xff, 0x6c, 0xf4, 0xe0, 0x8d,
- 0x31, 0x82, 0xc2, 0xb5, 0x7c, 0xca, 0xeb, 0x36, 0x1b, 0xac, 0xc7, 0x43, 0xe7, 0x7d, 0x3f, 0x60,
- 0x3f, 0x27, 0x76, 0xc8, 0xd7, 0x3f, 0xd3, 0x5f, 0xa6, 0x37, 0x1c, 0xf4, 0x48, 0xf0, 0xb9, 0x3a,
- 0x17, 0x6d, 0x7d, 0x2c, 0xd6, 0x3f, 0x8b, 0x1d, 0x93, 0x91, 0x49, 0xfb, 0x9f, 0xaf, 0x25, 0x6b,
- 0x7f, 0x4d, 0x03, 0x4c, 0x3c, 0x81, 0x0e, 0x60, 0xd9, 0x09, 0xd8, 0xd0, 0x37, 0x5d, 0xab, 0x47,
- 0x5c, 0x5e, 0x49, 0xc8, 0x6d, 0xbd, 0x37, 0xaf, 0x27, 0xeb, 0xdb, 0x42, 0x78, 0x57, 0xc8, 0xe2,
- 0xa2, 0x33, 0xfe, 0xe6, 0xe8, 0x3a, 0x64, 0x9e, 0x31, 0x8f, 0xf0, 0x4a, 0x72, 0x2d, 0x75, 0xa7,
- 0x80, 0x15, 0x81, 0x5e, 0x81, 0x02, 0xf5, 0x78, 0x68, 0x79, 0x36, 0xe1, 0x95, 0x94, 0x1c, 0x99,
- 0x30, 0xd0, 0xb7, 0xe0, 0xa5, 0x88, 0x30, 0xc5, 0x51, 0x30, 0xfd, 0x80, 0x1c, 0xd1, 0xa7, 0x84,
- 0x57, 0xd2, 0x72, 0xea, 0xf5, 0x68, 0xf4, 0x81, 0x35, 0x20, 0x6d, 0x3d, 0x86, 0x7e, 0x08, 0x79,
- 0xc6, 0xcd, 0x70, 0x24, 0x9c, 0x92, 0x99, 0xc7, 0xd7, 0x31, 0xed, 0x1f, 0xf2, 0xee, 0x48, 0xf8,
- 0x85, 0xc9, 0x5f, 0x5e, 0xfd, 0x43, 0x02, 0x60, 0xb2, 0x23, 0xf4, 0x31, 0x64, 0xa7, 0xcc, 0x72,
- 0xef, 0x12, 0x66, 0xa9, 0x2b, 0x83, 0x18, 0x5e, 0x18, 0x8c, 0xb0, 0x86, 0xab, 0xbe, 0x0f, 0xc5,
- 0x18, 0x1b, 0x95, 0x21, 0x75, 0x4c, 0x46, 0x2a, 0x15, 0x60, 0xf1, 0x29, 0xcc, 0x77, 0x62, 0xb9,
- 0x43, 0xa2, 0x8f, 0xbf, 0x22, 0xee, 0x26, 0xbf, 0x97, 0xa8, 0x86, 0x90, 0x55, 0x5a, 0xa3, 0x1a,
- 0xac, 0x30, 0x6e, 0xf2, 0xc7, 0x2c, 0x08, 0xcd, 0x49, 0x2a, 0xc1, 0x45, 0xc6, 0x3b, 0x82, 0x27,
- 0x8c, 0x84, 0x5e, 0x05, 0x60, 0xdc, 0x3c, 0x21, 0x01, 0x9f, 0xe4, 0x92, 0x02, 0xe3, 0x07, 0x8a,
- 0x81, 0xde, 0x84, 0x55, 0xc6, 0x4d, 0x2b, 0xb0, 0x1f, 0xd3, 0x90, 0xd8, 0xe1, 0x30, 0x50, 0xd9,
- 0xa4, 0x80, 0x4b, 0x8c, 0x37, 0x62, 0xdc, 0xda, 0xaf, 0x93, 0x90, 0xd3, 0x67, 0xe4, 0xfc, 0xcc,
- 0xf5, 0x10, 0x56, 0xfa, 0x84, 0xd3, 0x80, 0xf4, 0x4d, 0x1e, 0x5a, 0xa1, 0x52, 0xbe, 0xb4, 0xf1,
- 0xd6, 0xc5, 0x56, 0x6b, 0x2a, 0x91, 0x8e, 0x90, 0xc0, 0xcb, 0xfd, 0x18, 0x85, 0xb6, 0x21, 0x37,
- 0xb0, 0x3c, 0xcb, 0x21, 0x81, 0x54, 0xab, 0xb4, 0xf1, 0xcd, 0xb9, 0x4e, 0x71, 0x7d, 0x4f, 0x09,
- 0xe1, 0x48, 0xba, 0x86, 0x21, 0xa7, 0x79, 0xe8, 0x06, 0xbc, 0xb0, 0xd7, 0x78, 0xd0, 0xd8, 0x36,
- 0xb0, 0xb9, 0xff, 0xa0, 0xd3, 0x36, 0xb6, 0x5a, 0xf7, 0x5b, 0x46, 0xb3, 0xbc, 0x84, 0x72, 0x90,
- 0x6a, 0x3c, 0x78, 0x54, 0x4e, 0xc8, 0x8f, 0x76, 0xb7, 0x9c, 0x14, 0x1f, 0x8f, 0xf6, 0xf7, 0xca,
- 0x29, 0x04, 0x90, 0x3d, 0x7c, 0xd4, 0x6e, 0x1b, 0xb8, 0x9c, 0x16, 0xcc, 0xed, 0x87, 0x0f, 0xcb,
- 0x99, 0xda, 0x9f, 0x92, 0xb0, 0xd2, 0xf0, 0xc3, 0x49, 0xca, 0x40, 0x87, 0xb0, 0x2c, 0x4d, 0x79,
- 0x42, 0x64, 0x38, 0x4a, 0x03, 0x95, 0x36, 0xbe, 0xfb, 0x9c, 0xa0, 0x89, 0x43, 0xd4, 0x1b, 0x4a,
- 0x5e, 0x46, 0x65, 0xd1, 0x9a, 0x10, 0xe8, 0x45, 0x48, 0x0d, 0x03, 0xaa, 0x3c, 0xa8, 0x6c, 0x2e,
- 0x68, 0xf4, 0x26, 0x2c, 0xf7, 0x29, 0x0f, 0x03, 0xda, 0x1b, 0xca, 0xdb, 0x22, 0x35, 0x19, 0x9f,
- 0x1a, 0x40, 0x6f, 0x00, 0xd8, 0x6c, 0xe0, 0x33, 0x8f, 0x78, 0xa1, 0x3e, 0x4f, 0x3a, 0x0b, 0x4f,
- 0xd8, 0xe8, 0x06, 0xe4, 0x1c, 0xdf, 0x31, 0x45, 0x2c, 0x66, 0x64, 0x18, 0x64, 0x1d, 0xdf, 0xf9,
- 0x88, 0x8c, 0x6a, 0x0d, 0x28, 0xc6, 0x34, 0x43, 0xaf, 0x40, 0xa5, 0x81, 0xb7, 0x76, 0x5a, 0x07,
- 0x86, 0xd9, 0x7d, 0xd4, 0x36, 0xce, 0x1a, 0xb2, 0x69, 0x6c, 0x96, 0x13, 0xa8, 0x08, 0xb9, 0xa6,
- 0xb1, 0x69, 0x76, 0xf0, 0x56, 0x39, 0x59, 0xfb, 0x65, 0x02, 0x56, 0x1e, 0x0d, 0x07, 0x31, 0x73,
- 0xbd, 0x00, 0x49, 0xda, 0x8f, 0x47, 0x51, 0x92, 0xf6, 0xd1, 0xeb, 0x72, 0x43, 0xbe, 0x6b, 0x8d,
- 0x54, 0x4c, 0x47, 0xd7, 0x9f, 0xe2, 0xc9, 0x98, 0x7e, 0x0d, 0xf2, 0x3d, 0x8b, 0x13, 0x73, 0x18,
- 0xb8, 0xf1, 0xfd, 0xe6, 0x04, 0x73, 0x3f, 0x70, 0xd1, 0x4d, 0xc8, 0xeb, 0x5d, 0x44, 0x89, 0x23,
- 0xa7, 0xb6, 0xc1, 0x6b, 0x5f, 0x24, 0xa0, 0x7c, 0x38, 0xf2, 0x7d, 0x12, 0xfc, 0x6f, 0xf5, 0xb8,
- 0x07, 0x2b, 0xdb, 0x8c, 0xc5, 0x74, 0x38, 0xf7, 0x4c, 0x49, 0xbf, 0xbb, 0xa7, 0xfc, 0xee, 0xd6,
- 0xfe, 0x9c, 0x84, 0x6b, 0x67, 0xee, 0x2c, 0x74, 0x0f, 0x52, 0x96, 0x1f, 0x4a, 0x90, 0xe2, 0xc6,
- 0xdb, 0x0b, 0xc4, 0xdd, 0xce, 0x12, 0x16, 0x92, 0x02, 0x60, 0x34, 0x1c, 0xc8, 0xd5, 0x9e, 0x0b,
- 0x30, 0xe5, 0x4c, 0x01, 0x30, 0x1a, 0x0e, 0xd0, 0x0e, 0x64, 0x9f, 0x49, 0xfb, 0xea, 0xaa, 0xa4,
- 0x7e, 0x31, 0xc6, 0x69, 0x5f, 0xec, 0x2c, 0x61, 0x2d, 0x2f, 0x54, 0x71, 0x18, 0xd3, 0xa5, 0xc9,
- 0x73, 0x54, 0x99, 0xb2, 0xa5, 0x50, 0xc5, 0x61, 0x6c, 0x73, 0x19, 0x60, 0x5c, 0x07, 0x8c, 0x6a,
- 0x5f, 0x5d, 0x87, 0xd2, 0xf4, 0x6d, 0x7c, 0xbe, 0xcd, 0x2b, 0x90, 0x9b, 0xce, 0x98, 0x11, 0x89,
- 0x3a, 0x50, 0xb0, 0x82, 0x90, 0x1e, 0x59, 0x76, 0xa8, 0xee, 0xaf, 0xe2, 0xc6, 0xb7, 0x17, 0xa9,
- 0x00, 0xea, 0x0d, 0x2d, 0x8d, 0x27, 0x38, 0xe8, 0x00, 0x56, 0xe4, 0xc5, 0xe6, 0xba, 0x26, 0x0f,
- 0x89, 0xaf, 0x82, 0xa5, 0xb8, 0xf1, 0xee, 0x42, 0xc0, 0x9d, 0x90, 0xf8, 0x78, 0x59, 0xe3, 0x08,
- 0x82, 0xa3, 0x2e, 0x2c, 0xeb, 0x22, 0x4f, 0xc1, 0x66, 0x2e, 0x0b, 0xab, 0x6b, 0x45, 0x85, 0x7a,
- 0x26, 0xc9, 0x67, 0xaf, 0x96, 0xe4, 0xab, 0x5f, 0xa6, 0x20, 0x1f, 0x99, 0x65, 0xf6, 0x59, 0x3c,
- 0x80, 0x6c, 0x40, 0x06, 0x4c, 0x5f, 0x28, 0xc5, 0x8d, 0xef, 0x5f, 0xca, 0xe4, 0x75, 0x2c, 0x31,
- 0x44, 0x88, 0x29, 0x34, 0xb4, 0x07, 0x29, 0xc7, 0xe6, 0x3a, 0x52, 0xdf, 0xbf, 0x1c, 0xe8, 0xb6,
- 0xcd, 0x65, 0xc0, 0xd9, 0x1c, 0xdd, 0x86, 0x92, 0xe5, 0xba, 0xec, 0x89, 0x49, 0x3d, 0x4e, 0x6c,
- 0x71, 0x97, 0x8a, 0xe0, 0xcd, 0xe3, 0x15, 0xc9, 0x6d, 0x69, 0x66, 0xf5, 0x3b, 0x90, 0x55, 0x9a,
- 0x88, 0x6b, 0x5f, 0xe4, 0x74, 0x7d, 0xed, 0x8b, 0x74, 0x5e, 0x85, 0xbc, 0xfd, 0x98, 0xd8, 0xc7,
- 0x5c, 0x1f, 0xc2, 0x02, 0x1e, 0xd3, 0xd5, 0x7d, 0x48, 0x6d, 0xdb, 0x1c, 0xbd, 0x04, 0xd9, 0xde,
- 0xd0, 0x3e, 0x26, 0xa1, 0x96, 0xd3, 0x94, 0xe0, 0xb3, 0x9e, 0xa8, 0x05, 0xb5, 0xa0, 0xa6, 0xd0,
- 0x6b, 0x00, 0x0e, 0xf1, 0x48, 0x60, 0x8d, 0xef, 0x87, 0x14, 0x8e, 0x71, 0x36, 0x01, 0xf2, 0x51,
- 0x28, 0x56, 0xff, 0x5e, 0x82, 0xb4, 0xf0, 0x32, 0x7a, 0x04, 0x85, 0x23, 0xea, 0x12, 0xd3, 0x66,
- 0xfe, 0x48, 0xa7, 0x93, 0xbb, 0x0b, 0xc7, 0x4d, 0x7d, 0x8b, 0xf9, 0xa3, 0xfb, 0xd4, 0x15, 0x26,
- 0xcf, 0x0b, 0x38, 0x41, 0xa3, 0x4f, 0x01, 0x45, 0x97, 0x24, 0x79, 0x1a, 0x06, 0x96, 0x3d, 0x7e,
- 0xe5, 0x14, 0x37, 0x3e, 0x5c, 0x7c, 0x0d, 0x43, 0x61, 0xe8, 0xdb, 0x69, 0x67, 0x09, 0x5f, 0xd3,
- 0xe8, 0xc6, 0x18, 0x1c, 0x51, 0x28, 0x0f, 0x38, 0x35, 0xf5, 0xe1, 0x98, 0x18, 0x62, 0xd1, 0x48,
- 0x92, 0x0b, 0xb6, 0x14, 0xca, 0x1e, 0xa7, 0x3b, 0x4b, 0x78, 0x75, 0xc0, 0x69, 0x2b, 0x06, 0x8b,
- 0x5c, 0xb8, 0xd6, 0xf7, 0x8f, 0x9d, 0xe9, 0xb5, 0x54, 0x0e, 0xfb, 0xc1, 0xa5, 0xd7, 0x6a, 0xfa,
- 0xc7, 0xce, 0xce, 0x12, 0x2e, 0x0b, 0xe4, 0xa9, 0xd5, 0x28, 0x94, 0x03, 0x7f, 0x30, 0xbd, 0x58,
- 0xe6, 0x8a, 0x1b, 0xc3, 0xfe, 0x40, 0x6c, 0x2c, 0xf0, 0x07, 0x53, 0x4b, 0x45, 0x11, 0x41, 0x9e,
- 0x12, 0x5b, 0x3f, 0xf7, 0xee, 0x5e, 0xc6, 0x5b, 0xc4, 0x8e, 0x47, 0x84, 0xa0, 0xd1, 0x4f, 0x00,
- 0xd4, 0xdb, 0xd6, 0x0c, 0x86, 0x5e, 0x25, 0x27, 0xb1, 0x3f, 0x58, 0x1c, 0x1b, 0x0f, 0xbd, 0x8e,
- 0x84, 0xd9, 0x59, 0xc2, 0x05, 0x05, 0x88, 0x87, 0x5e, 0xf5, 0x77, 0x09, 0xc8, 0x47, 0x81, 0x88,
- 0xfe, 0x0f, 0x8a, 0x51, 0xb0, 0x9b, 0xd3, 0x79, 0x06, 0x22, 0x7e, 0xab, 0x8f, 0x6e, 0xcb, 0x17,
- 0x78, 0x48, 0x3d, 0x6b, 0xf2, 0x02, 0x57, 0xb3, 0xe2, 0x7c, 0xf1, 0x98, 0x61, 0x27, 0x24, 0x78,
- 0x12, 0xd0, 0x50, 0x95, 0xcd, 0x79, 0x3c, 0x61, 0x88, 0x67, 0xbc, 0x4f, 0x82, 0x01, 0xe5, 0xe2,
- 0xe2, 0xe0, 0x32, 0x06, 0x0a, 0x38, 0xce, 0xaa, 0xfe, 0x2d, 0x09, 0xa5, 0xe9, 0xf0, 0x9d, 0x53,
- 0xbf, 0xb5, 0x19, 0xfa, 0x4d, 0xab, 0x46, 0x20, 0x2d, 0x2b, 0x50, 0x55, 0x35, 0xef, 0x5e, 0xf5,
- 0x58, 0xc5, 0xcb, 0x52, 0x7d, 0x51, 0x0a, 0xf8, 0x1a, 0x5f, 0xb0, 0x2c, 0xec, 0x36, 0x70, 0x39,
- 0x81, 0x96, 0x21, 0xdf, 0x6d, 0x60, 0x73, 0xfb, 0xb0, 0xd5, 0x2e, 0x27, 0x23, 0x6a, 0x53, 0x50,
- 0xa9, 0x88, 0xda, 0x3d, 0xdc, 0x6b, 0x94, 0xd3, 0xa2, 0xee, 0x16, 0xd4, 0x27, 0x87, 0xe5, 0x8c,
- 0x10, 0x17, 0x53, 0x8a, 0xd5, 0x13, 0x80, 0xc9, 0x19, 0x9c, 0xd3, 0x62, 0xd7, 0x21, 0x73, 0xe4,
- 0x5a, 0xce, 0xf8, 0x35, 0x2a, 0x09, 0xf4, 0x0e, 0x20, 0x99, 0x9a, 0x49, 0xdf, 0x24, 0x4f, 0x69,
- 0x68, 0xda, 0xac, 0xaf, 0x9f, 0xa5, 0x19, 0x5c, 0xd6, 0x23, 0xc6, 0x53, 0x1a, 0x6e, 0x09, 0x7e,
- 0xf5, 0x3d, 0x28, 0xc6, 0xce, 0xe3, 0x7c, 0x0b, 0x57, 0x37, 0xc6, 0xca, 0x62, 0x7f, 0x30, 0xa7,
- 0xcc, 0x1f, 0x13, 0x90, 0x8f, 0x0e, 0x0a, 0x7a, 0x7d, 0x86, 0xc8, 0xce, 0xd2, 0xd4, 0xe6, 0x6e,
- 0x01, 0xb8, 0xcc, 0xb6, 0x5c, 0xd3, 0xb7, 0xc2, 0xc7, 0x2a, 0x1a, 0xc4, 0x11, 0x90, 0xbc, 0xb6,
- 0x15, 0x3e, 0x46, 0x08, 0xd2, 0x56, 0xe0, 0x44, 0x0f, 0x6e, 0xf9, 0x7d, 0xce, 0xde, 0xd3, 0xb3,
- 0xf7, 0xbe, 0xb9, 0x0a, 0x2b, 0x02, 0x4e, 0xc4, 0x96, 0x7c, 0xda, 0x54, 0xbf, 0x4c, 0x42, 0x61,
- 0x7c, 0xe0, 0xd0, 0xcb, 0x90, 0x55, 0x07, 0x2e, 0xbe, 0x25, 0xcd, 0x3a, 0x67, 0xa5, 0xe4, 0xec,
- 0x95, 0x10, 0x85, 0x22, 0xf5, 0x42, 0x12, 0xf8, 0x01, 0x09, 0xc7, 0xcf, 0xbe, 0xed, 0x2b, 0x64,
- 0x83, 0x7a, 0x6b, 0x02, 0x87, 0xe3, 0xd8, 0x35, 0x43, 0x38, 0x74, 0x4c, 0xa2, 0x97, 0xe1, 0x46,
- 0xeb, 0x41, 0xd7, 0xc0, 0x6d, 0x6c, 0x74, 0xcf, 0x3c, 0x0e, 0x0b, 0x90, 0xe9, 0xec, 0x18, 0xbb,
- 0xbb, 0xe5, 0x04, 0x2a, 0x01, 0xb4, 0x1f, 0x7e, 0x6c, 0x60, 0x45, 0xa7, 0x36, 0xb3, 0x90, 0x16,
- 0xf5, 0x55, 0xed, 0xab, 0x04, 0x54, 0xb6, 0x64, 0x8b, 0x2d, 0xd6, 0xab, 0xc1, 0xe4, 0x53, 0x41,
- 0xa0, 0x2d, 0xc8, 0xfa, 0x56, 0x40, 0xbc, 0xc8, 0x42, 0x6f, 0x7f, 0xdd, 0x48, 0xfe, 0xbb, 0x71,
- 0x1b, 0xcd, 0xd3, 0xef, 0xc1, 0x5a, 0x14, 0xbd, 0x0d, 0xab, 0xa7, 0x1a, 0x3a, 0xf1, 0xdc, 0xb4,
- 0x32, 0xe9, 0xfd, 0x8c, 0x5a, 0x7d, 0xf4, 0x23, 0x58, 0x8e, 0x4f, 0xd6, 0x17, 0xde, 0x37, 0x9e,
- 0x53, 0x48, 0x4f, 0x20, 0x74, 0xc2, 0x8b, 0x81, 0xd6, 0x3e, 0x81, 0x17, 0xb7, 0x49, 0x38, 0x63,
- 0x77, 0xf7, 0xa6, 0x2a, 0x69, 0xbd, 0xb7, 0xb9, 0x7a, 0x59, 0xaa, 0xe2, 0xae, 0xfd, 0x3e, 0x01,
- 0x95, 0x5d, 0xca, 0x63, 0xd8, 0x94, 0xf0, 0xff, 0xaa, 0xed, 0x5e, 0x86, 0x82, 0x6f, 0x39, 0xc4,
- 0xe4, 0xf4, 0x99, 0x2a, 0x23, 0x33, 0x38, 0x2f, 0x18, 0x1d, 0xfa, 0x4c, 0x76, 0x49, 0xe4, 0x60,
- 0xc8, 0x8e, 0x89, 0x7e, 0x43, 0x63, 0x39, 0xbd, 0x2b, 0x18, 0xb5, 0xdf, 0x26, 0xe0, 0xe6, 0x0c,
- 0xed, 0xb8, 0xcf, 0x3c, 0x4e, 0x50, 0x1b, 0x4a, 0xd3, 0xdd, 0x68, 0xdd, 0x2c, 0x9a, 0xdf, 0xd4,
- 0x71, 0xd7, 0x51, 0xc2, 0xd1, 0xff, 0xc3, 0xaa, 0x47, 0x9e, 0x86, 0x66, 0x4c, 0x27, 0x95, 0xe3,
- 0x57, 0x04, 0xbb, 0x3d, 0xd6, 0xeb, 0x1f, 0x09, 0xa8, 0xec, 0xcb, 0xd2, 0x7c, 0x86, 0x4f, 0x46,
- 0xa7, 0xfc, 0x9f, 0x58, 0xd4, 0xff, 0x0b, 0xb9, 0x31, 0x1e, 0x27, 0xe8, 0x83, 0x71, 0x77, 0x79,
- 0x60, 0xf1, 0x63, 0x5d, 0xdb, 0x9d, 0xed, 0x2e, 0xdf, 0xa7, 0xc4, 0xed, 0xef, 0x59, 0xfc, 0x38,
- 0x6a, 0x2c, 0x8b, 0xef, 0xda, 0x8f, 0xa1, 0xd2, 0x24, 0x2e, 0x99, 0xb9, 0xa7, 0x2b, 0xc7, 0xd9,
- 0x5f, 0x12, 0xf0, 0xfa, 0x2e, 0x63, 0xc7, 0x43, 0xdf, 0x38, 0x3a, 0x22, 0x76, 0x48, 0x4f, 0x66,
- 0x2d, 0x73, 0x0b, 0xf2, 0x51, 0xa7, 0x31, 0x9e, 0xd0, 0xc6, 0xcc, 0xb3, 0x9d, 0xb7, 0xe4, 0xf3,
- 0x3a, 0x6f, 0xa9, 0x39, 0x3a, 0x6f, 0xe9, 0x99, 0x9d, 0xb7, 0x7f, 0x65, 0xe0, 0xfa, 0x2c, 0x65,
- 0xd1, 0x4f, 0x63, 0x2d, 0x73, 0x15, 0x71, 0x8d, 0x8b, 0x9d, 0x3b, 0x0b, 0xa5, 0xde, 0x91, 0x7f,
- 0x73, 0xf4, 0xcf, 0xb6, 0xd3, 0x7f, 0x71, 0x4e, 0x3b, 0x3d, 0x29, 0x97, 0xfa, 0xe8, 0xea, 0x4b,
- 0x3d, 0xa7, 0xd5, 0xce, 0xa1, 0xcc, 0x75, 0x5e, 0x37, 0xa3, 0x9e, 0xbb, 0x7a, 0x71, 0xef, 0x5c,
- 0x7e, 0xed, 0x53, 0xfd, 0xf8, 0x55, 0x3e, 0x45, 0xf3, 0x2a, 0x85, 0xd2, 0xb4, 0x96, 0xe2, 0x59,
- 0xa5, 0xfe, 0x09, 0x8a, 0x9e, 0x5b, 0x8a, 0x42, 0xf7, 0x20, 0xa7, 0xb5, 0xd6, 0xf1, 0x3d, 0xe7,
- 0xff, 0x15, 0x91, 0x54, 0xf5, 0x37, 0x09, 0xa8, 0x9c, 0x67, 0x91, 0x73, 0x57, 0xfd, 0x19, 0xa0,
- 0x33, 0x4e, 0x19, 0x69, 0x05, 0x16, 0xfe, 0x87, 0xe3, 0xda, 0x69, 0xb3, 0x8f, 0xaa, 0xbf, 0x4a,
- 0xc0, 0x8b, 0x33, 0x4d, 0x75, 0xae, 0x46, 0xfb, 0xb0, 0x7a, 0xca, 0x4d, 0x5a, 0x9d, 0xc5, 0xfe,
- 0x19, 0x29, 0x4d, 0x7b, 0xe2, 0xad, 0x03, 0x58, 0x8e, 0xb7, 0x0c, 0xd0, 0xab, 0x70, 0xb3, 0x69,
- 0x74, 0x5a, 0xd8, 0x68, 0x9a, 0x9d, 0x6e, 0xa3, 0x7b, 0xba, 0xb6, 0x5c, 0x81, 0x42, 0xeb, 0x41,
- 0xa7, 0xdb, 0xd8, 0xdd, 0x35, 0x9a, 0xaa, 0xf1, 0xb8, 0xdf, 0x6e, 0x36, 0xba, 0x46, 0xb3, 0x9c,
- 0x14, 0x04, 0x36, 0xf6, 0x1e, 0x1e, 0x18, 0xcd, 0x72, 0x6a, 0xf3, 0x09, 0xac, 0xd9, 0x6c, 0x70,
- 0xa1, 0x6a, 0x9b, 0x2b, 0x53, 0x79, 0xfe, 0xb0, 0xa9, 0x27, 0x3b, 0xcc, 0xb5, 0x3c, 0xa7, 0xce,
- 0x02, 0x67, 0xdd, 0x21, 0x9e, 0xcc, 0x62, 0xeb, 0x93, 0x84, 0x33, 0xfb, 0x7f, 0xca, 0x0f, 0x22,
- 0xba, 0x97, 0x95, 0x02, 0xef, 0xfd, 0x27, 0x00, 0x00, 0xff, 0xff, 0x37, 0x2b, 0xed, 0xcb, 0xd7,
- 0x1c, 0x00, 0x00,
+ // 2413 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x59, 0xcb, 0x6f, 0x23, 0xc7,
+ 0xd1, 0x17, 0xdf, 0x64, 0x51, 0x94, 0xb8, 0xed, 0xb5, 0x97, 0x4b, 0x3f, 0x56, 0xa6, 0xbf, 0xfd,
+ 0xbc, 0xb1, 0x1d, 0x0a, 0x96, 0xf3, 0xf2, 0x3a, 0xc1, 0x9a, 0x12, 0x67, 0x25, 0xc6, 0xd2, 0x2e,
+ 0xd3, 0xa4, 0x64, 0xaf, 0xf2, 0x18, 0x0c, 0x87, 0xad, 0xd9, 0x8e, 0x86, 0xd3, 0xe3, 0xe9, 0xa1,
+ 0x56, 0x5c, 0xc3, 0x39, 0x04, 0x70, 0xe0, 0x63, 0x10, 0x20, 0xc8, 0x21, 0x97, 0xe4, 0x1a, 0x04,
+ 0x41, 0x80, 0xe4, 0x94, 0x7f, 0xc6, 0x3e, 0xe7, 0x9a, 0x5b, 0x4e, 0x41, 0x3f, 0x86, 0x1c, 0x4a,
+ 0x94, 0x44, 0x49, 0x01, 0x72, 0xe2, 0x54, 0x75, 0xd7, 0xaf, 0xab, 0xab, 0xaa, 0xab, 0xab, 0x8b,
+ 0xf0, 0xae, 0xc3, 0x98, 0xe3, 0x92, 0x55, 0xdb, 0x65, 0xc3, 0xfe, 0x2a, 0xe3, 0x36, 0xf3, 0x0e,
+ 0xa8, 0xb3, 0x7a, 0xf4, 0x6e, 0x8f, 0x84, 0xd6, 0xaa, 0x33, 0x24, 0x3c, 0x34, 0x7d, 0xe6, 0x52,
+ 0x9b, 0x12, 0x5e, 0xf7, 0x03, 0x16, 0x32, 0xf4, 0x8a, 0x12, 0xa9, 0x4b, 0x91, 0x7a, 0x24, 0x52,
+ 0x57, 0x22, 0xd5, 0x3b, 0x1a, 0xd0, 0xf2, 0xe9, 0xea, 0x01, 0x25, 0x6e, 0xdf, 0xec, 0x91, 0xa7,
+ 0xd6, 0x11, 0x65, 0x81, 0x12, 0xaf, 0xde, 0x8e, 0x4d, 0x08, 0x08, 0x67, 0xc3, 0xc0, 0x26, 0x7a,
+ 0x68, 0x45, 0x0f, 0x49, 0xaa, 0x37, 0x3c, 0xd0, 0x00, 0x03, 0x8b, 0x1f, 0xea, 0x19, 0x77, 0x4e,
+ 0xce, 0x08, 0xe9, 0x80, 0xf0, 0xd0, 0x1a, 0xf8, 0x6a, 0x42, 0xed, 0x8b, 0x0c, 0x14, 0x37, 0x85,
+ 0xd6, 0x6d, 0xa1, 0xf4, 0x08, 0xdd, 0x82, 0xb4, 0x67, 0x0d, 0x48, 0x25, 0xb1, 0x92, 0xb8, 0x57,
+ 0x58, 0x4f, 0x7d, 0xdd, 0x48, 0x62, 0xc9, 0x40, 0x2b, 0x50, 0xec, 0x13, 0x6e, 0x07, 0xd4, 0x0f,
+ 0x29, 0xf3, 0x2a, 0x49, 0x31, 0x8e, 0xe3, 0x2c, 0xf4, 0x21, 0x14, 0xed, 0x80, 0x58, 0x21, 0x31,
+ 0xc5, 0x22, 0x95, 0xd4, 0x4a, 0xe2, 0x5e, 0x71, 0xad, 0x5a, 0xd7, 0xbb, 0x8f, 0x34, 0xa8, 0x77,
+ 0x23, 0x0d, 0x04, 0x7a, 0x0a, 0x83, 0x92, 0x11, 0x5c, 0x81, 0x30, 0xf4, 0xfb, 0x63, 0x84, 0xf4,
+ 0x9c, 0x08, 0x4a, 0x46, 0x22, 0xec, 0x00, 0x58, 0x9c, 0x53, 0xc7, 0x1b, 0x10, 0x2f, 0xac, 0x64,
+ 0x25, 0xc0, 0xbd, 0xfa, 0x79, 0x0e, 0xa8, 0x37, 0xc6, 0xf3, 0xd5, 0x76, 0x63, 0x00, 0xa8, 0x01,
+ 0x79, 0xdf, 0xb2, 0x0f, 0x2d, 0x87, 0xf0, 0x4a, 0x6e, 0x25, 0x75, 0xaf, 0xb8, 0x76, 0xf7, 0x7c,
+ 0xb0, 0xb6, 0x9a, 0x8d, 0xc7, 0x62, 0xa8, 0x07, 0x37, 0xf5, 0xb7, 0x19, 0x10, 0x9f, 0x71, 0x1a,
+ 0xb2, 0x80, 0x12, 0x5e, 0xc9, 0x4b, 0xb8, 0xd5, 0xf9, 0xe0, 0x22, 0xc1, 0x11, 0x7e, 0xc1, 0x3f,
+ 0xc1, 0xa2, 0x84, 0xa3, 0x87, 0x90, 0x0b, 0x88, 0x4d, 0x7d, 0xc2, 0x2b, 0x05, 0x09, 0xfb, 0xce,
+ 0xf9, 0xb0, 0x1d, 0x76, 0x10, 0x3e, 0xb3, 0x02, 0x82, 0xa5, 0x10, 0x8e, 0x84, 0x11, 0x82, 0x34,
+ 0x09, 0x2d, 0xa7, 0x02, 0xd2, 0xb9, 0xf2, 0xfb, 0x3e, 0xf9, 0x67, 0xa3, 0x07, 0x6f, 0x8c, 0x11,
+ 0x14, 0xae, 0xe5, 0x53, 0x5e, 0xb7, 0xd9, 0x60, 0x35, 0x1e, 0x3a, 0xef, 0xfb, 0x01, 0xfb, 0x39,
+ 0xb1, 0x43, 0xbe, 0xfa, 0x99, 0xfe, 0x32, 0xbd, 0xe1, 0xa0, 0x47, 0x82, 0xcf, 0xd5, 0xb9, 0x68,
+ 0xeb, 0x63, 0xb1, 0xfa, 0x59, 0xec, 0x98, 0x8c, 0x4c, 0xda, 0xff, 0x7c, 0x25, 0x59, 0xfb, 0x5b,
+ 0x1a, 0x60, 0xe2, 0x09, 0xb4, 0x07, 0x8b, 0x4e, 0xc0, 0x86, 0xbe, 0xe9, 0x5a, 0x3d, 0xe2, 0xf2,
+ 0x4a, 0x42, 0x6e, 0xeb, 0xbd, 0x79, 0x3d, 0x59, 0xdf, 0x14, 0xc2, 0xdb, 0x42, 0x16, 0x17, 0x9d,
+ 0xf1, 0x37, 0x47, 0x37, 0x21, 0xf3, 0x9c, 0x79, 0x84, 0x57, 0x92, 0x2b, 0xa9, 0x7b, 0x05, 0xac,
+ 0x08, 0xf4, 0x0a, 0x14, 0xa8, 0xc7, 0x43, 0xcb, 0xb3, 0x09, 0xaf, 0xa4, 0xe4, 0xc8, 0x84, 0x81,
+ 0xbe, 0x05, 0x2f, 0x45, 0x84, 0x29, 0x8e, 0x82, 0xe9, 0x07, 0xe4, 0x80, 0x1e, 0x13, 0x5e, 0x49,
+ 0xcb, 0xa9, 0x37, 0xa3, 0xd1, 0x47, 0xd6, 0x80, 0xb4, 0xf5, 0x18, 0xfa, 0x21, 0xe4, 0x19, 0x37,
+ 0xc3, 0x91, 0x70, 0x4a, 0x66, 0x1e, 0x5f, 0xc7, 0xb4, 0x7f, 0xcc, 0xbb, 0x23, 0xe1, 0x17, 0x26,
+ 0x7f, 0x79, 0xf5, 0x0f, 0x09, 0x80, 0xc9, 0x8e, 0xd0, 0xc7, 0x90, 0x9d, 0x32, 0xcb, 0x83, 0x2b,
+ 0x98, 0xa5, 0xae, 0x0c, 0x62, 0x78, 0x61, 0x30, 0xc2, 0x1a, 0xae, 0xfa, 0x3e, 0x14, 0x63, 0x6c,
+ 0x54, 0x86, 0xd4, 0x21, 0x19, 0xa9, 0x54, 0x80, 0xc5, 0xa7, 0x30, 0xdf, 0x91, 0xe5, 0x0e, 0x89,
+ 0x3e, 0xfe, 0x8a, 0xb8, 0x9f, 0xfc, 0x5e, 0xa2, 0x1a, 0x42, 0x56, 0x69, 0x8d, 0x6a, 0x50, 0x62,
+ 0xdc, 0xe4, 0x4f, 0x59, 0x10, 0x9a, 0x93, 0x54, 0x82, 0x8b, 0x8c, 0x77, 0x04, 0x4f, 0x18, 0x09,
+ 0xbd, 0x0a, 0xc0, 0xb8, 0x79, 0x44, 0x02, 0x3e, 0xc9, 0x25, 0x05, 0xc6, 0xf7, 0x14, 0x03, 0xbd,
+ 0x09, 0xcb, 0x8c, 0x9b, 0x56, 0x60, 0x3f, 0xa5, 0x21, 0xb1, 0xc3, 0x61, 0xa0, 0xb2, 0x49, 0x01,
+ 0x2f, 0x31, 0xde, 0x88, 0x71, 0x6b, 0xbf, 0x4e, 0x42, 0x4e, 0x9f, 0x91, 0xb3, 0x33, 0xd7, 0x63,
+ 0x28, 0xf5, 0x09, 0xa7, 0x01, 0xe9, 0x9b, 0x3c, 0xb4, 0x42, 0xa5, 0xfc, 0xd2, 0xda, 0x5b, 0xe7,
+ 0x5b, 0xad, 0xa9, 0x44, 0x3a, 0x42, 0x02, 0x2f, 0xf6, 0x63, 0x14, 0xda, 0x84, 0xdc, 0xc0, 0xf2,
+ 0x2c, 0x87, 0x04, 0x52, 0xad, 0xa5, 0xb5, 0x6f, 0xce, 0x75, 0x8a, 0xeb, 0x3b, 0x4a, 0x08, 0x47,
+ 0xd2, 0x35, 0x0c, 0x39, 0xcd, 0x43, 0xb7, 0xe0, 0x85, 0x9d, 0xc6, 0xa3, 0xc6, 0xa6, 0x81, 0xcd,
+ 0xdd, 0x47, 0x9d, 0xb6, 0xb1, 0xd1, 0x7a, 0xd8, 0x32, 0x9a, 0xe5, 0x05, 0x94, 0x83, 0x54, 0xe3,
+ 0xd1, 0x93, 0x72, 0x42, 0x7e, 0xb4, 0xbb, 0xe5, 0xa4, 0xf8, 0x78, 0xb2, 0xbb, 0x53, 0x4e, 0x21,
+ 0x80, 0xec, 0xfe, 0x93, 0x76, 0xdb, 0xc0, 0xe5, 0xb4, 0x60, 0x6e, 0x3e, 0x7e, 0x5c, 0xce, 0xd4,
+ 0xfe, 0x9c, 0x84, 0x52, 0xc3, 0x0f, 0x27, 0x29, 0x03, 0xed, 0xc3, 0xa2, 0x34, 0xe5, 0x11, 0x91,
+ 0xe1, 0x28, 0x0d, 0xb4, 0xb4, 0xf6, 0xdd, 0x0b, 0x82, 0x26, 0x0e, 0x51, 0x6f, 0x28, 0x79, 0x19,
+ 0x95, 0x45, 0x6b, 0x42, 0xa0, 0x17, 0x21, 0x35, 0x0c, 0xa8, 0xf2, 0xa0, 0xb2, 0xb9, 0xa0, 0xd1,
+ 0x9b, 0xb0, 0xd8, 0xa7, 0x3c, 0x0c, 0x68, 0x6f, 0x28, 0x6f, 0x8b, 0xd4, 0x64, 0x7c, 0x6a, 0x00,
+ 0xbd, 0x01, 0x60, 0xb3, 0x81, 0xcf, 0x3c, 0xe2, 0x85, 0xfa, 0x3c, 0xe9, 0x2c, 0x3c, 0x61, 0xa3,
+ 0x5b, 0x90, 0x73, 0x7c, 0xc7, 0x14, 0xb1, 0x98, 0x91, 0x61, 0x90, 0x75, 0x7c, 0xe7, 0x23, 0x32,
+ 0xaa, 0x35, 0xa0, 0x18, 0xd3, 0x0c, 0xbd, 0x02, 0x95, 0x06, 0xde, 0xd8, 0x6a, 0xed, 0x19, 0x66,
+ 0xf7, 0x49, 0xdb, 0x38, 0x6d, 0xc8, 0xa6, 0xb1, 0x5e, 0x4e, 0xa0, 0x22, 0xe4, 0x9a, 0xc6, 0xba,
+ 0xd9, 0xc1, 0x1b, 0xe5, 0x64, 0xed, 0x97, 0x09, 0x28, 0x3d, 0x19, 0x0e, 0x62, 0xe6, 0x7a, 0x01,
+ 0x92, 0xb4, 0x1f, 0x8f, 0xa2, 0x24, 0xed, 0xa3, 0xd7, 0xe5, 0x86, 0x7c, 0xd7, 0x1a, 0xa9, 0x98,
+ 0x8e, 0xae, 0x3f, 0xc5, 0x93, 0x31, 0xfd, 0x1a, 0xe4, 0x7b, 0x16, 0x27, 0xe6, 0x30, 0x70, 0xe3,
+ 0xfb, 0xcd, 0x09, 0xe6, 0x6e, 0xe0, 0xa2, 0xdb, 0x90, 0xd7, 0xbb, 0x88, 0x12, 0x47, 0x4e, 0x6d,
+ 0x83, 0xd7, 0xbe, 0x48, 0x40, 0x79, 0x7f, 0xe4, 0xfb, 0x24, 0xf8, 0xdf, 0xea, 0xf1, 0x00, 0x4a,
+ 0x9b, 0x8c, 0xc5, 0x74, 0x38, 0xf3, 0x4c, 0x49, 0xbf, 0xbb, 0x27, 0xfc, 0xee, 0xd6, 0xfe, 0x92,
+ 0x84, 0x1b, 0xa7, 0xee, 0x2c, 0xf4, 0x00, 0x52, 0x96, 0x1f, 0x4a, 0x90, 0xe2, 0xda, 0xdb, 0x97,
+ 0x88, 0xbb, 0xad, 0x05, 0x2c, 0x24, 0x05, 0xc0, 0x68, 0x38, 0x90, 0xab, 0x5d, 0x08, 0x30, 0xe5,
+ 0x4c, 0x01, 0x30, 0x1a, 0x0e, 0xd0, 0x16, 0x64, 0x9f, 0x4b, 0xfb, 0xea, 0xaa, 0xa4, 0x7e, 0x3e,
+ 0xc6, 0x49, 0x5f, 0x6c, 0x2d, 0x60, 0x2d, 0x2f, 0x54, 0x71, 0x18, 0xd3, 0xa5, 0xc9, 0x05, 0xaa,
+ 0x4c, 0xd9, 0x52, 0xa8, 0xe2, 0x30, 0xb6, 0xbe, 0x08, 0x30, 0xae, 0x03, 0x46, 0xb5, 0xaf, 0x6e,
+ 0xc2, 0xd2, 0xf4, 0x6d, 0x7c, 0xb6, 0xcd, 0x2b, 0x90, 0x9b, 0xce, 0x98, 0x11, 0x89, 0x3a, 0x50,
+ 0xb0, 0x82, 0x90, 0x1e, 0x58, 0x76, 0xa8, 0xee, 0xaf, 0xe2, 0xda, 0xb7, 0x2f, 0x53, 0x01, 0xd4,
+ 0x1b, 0x5a, 0x1a, 0x4f, 0x70, 0xd0, 0x1e, 0x94, 0xe4, 0xc5, 0xe6, 0xba, 0x26, 0x0f, 0x89, 0xaf,
+ 0x82, 0xa5, 0xb8, 0xf6, 0xee, 0xa5, 0x80, 0x3b, 0x21, 0xf1, 0xf1, 0xa2, 0xc6, 0x11, 0x04, 0x47,
+ 0x5d, 0x58, 0xd4, 0x45, 0x9e, 0x82, 0xcd, 0x5c, 0x15, 0x56, 0xd7, 0x8a, 0x0a, 0xf5, 0x54, 0x92,
+ 0xcf, 0x5e, 0x2f, 0xc9, 0x57, 0xbf, 0x4c, 0x41, 0x3e, 0x32, 0xcb, 0xec, 0xb3, 0xb8, 0x07, 0xd9,
+ 0x80, 0x0c, 0x98, 0xbe, 0x50, 0x8a, 0x6b, 0xdf, 0xbf, 0x92, 0xc9, 0xeb, 0x58, 0x62, 0x88, 0x10,
+ 0x53, 0x68, 0x68, 0x07, 0x52, 0x8e, 0xcd, 0x75, 0xa4, 0xbe, 0x7f, 0x35, 0xd0, 0x4d, 0x9b, 0xcb,
+ 0x80, 0xb3, 0x39, 0xba, 0x0b, 0x4b, 0x96, 0xeb, 0xb2, 0x67, 0x26, 0xf5, 0x38, 0xb1, 0xc5, 0x5d,
+ 0x2a, 0x82, 0x37, 0x8f, 0x4b, 0x92, 0xdb, 0xd2, 0xcc, 0xea, 0x77, 0x20, 0xab, 0x34, 0x11, 0xd7,
+ 0xbe, 0xc8, 0xe9, 0xfa, 0xda, 0x17, 0xe9, 0xbc, 0x0a, 0x79, 0xfb, 0x29, 0xb1, 0x0f, 0xb9, 0x3e,
+ 0x84, 0x05, 0x3c, 0xa6, 0xab, 0xbb, 0x90, 0xda, 0xb4, 0x39, 0x7a, 0x09, 0xb2, 0xbd, 0xa1, 0x7d,
+ 0x48, 0x42, 0x2d, 0xa7, 0x29, 0xc1, 0x67, 0x3d, 0x51, 0x0b, 0x6a, 0x41, 0x4d, 0xa1, 0xd7, 0x00,
+ 0x1c, 0xe2, 0x91, 0xc0, 0x1a, 0xdf, 0x0f, 0x29, 0x1c, 0xe3, 0xac, 0x03, 0xe4, 0xa3, 0x50, 0xac,
+ 0xfe, 0x63, 0x09, 0xd2, 0xc2, 0xcb, 0xe8, 0x09, 0x14, 0x0e, 0xa8, 0x4b, 0x4c, 0x9b, 0xf9, 0x23,
+ 0x9d, 0x4e, 0xee, 0x5f, 0x3a, 0x6e, 0xea, 0x1b, 0xcc, 0x1f, 0x3d, 0xa4, 0xae, 0x30, 0x79, 0x5e,
+ 0xc0, 0x09, 0x1a, 0x7d, 0x0a, 0x28, 0xba, 0x24, 0xc9, 0x71, 0x18, 0x58, 0xf6, 0xf8, 0x95, 0x53,
+ 0x5c, 0xfb, 0xf0, 0xf2, 0x6b, 0x18, 0x0a, 0x43, 0xdf, 0x4e, 0x5b, 0x0b, 0xf8, 0x86, 0x46, 0x37,
+ 0xc6, 0xe0, 0x88, 0x42, 0x79, 0xc0, 0xa9, 0xa9, 0x0f, 0xc7, 0xc4, 0x10, 0x97, 0x8d, 0x24, 0xb9,
+ 0x60, 0x4b, 0xa1, 0xec, 0x70, 0xba, 0xb5, 0x80, 0x97, 0x07, 0x9c, 0xb6, 0x62, 0xb0, 0xc8, 0x85,
+ 0x1b, 0x7d, 0xff, 0xd0, 0x99, 0x5e, 0x4b, 0xe5, 0xb0, 0x1f, 0x5c, 0x79, 0xad, 0xa6, 0x7f, 0xe8,
+ 0x6c, 0x2d, 0xe0, 0xb2, 0x40, 0x9e, 0x5a, 0x8d, 0x42, 0x39, 0xf0, 0x07, 0xd3, 0x8b, 0x65, 0xae,
+ 0xb9, 0x31, 0xec, 0x0f, 0xc4, 0xc6, 0x02, 0x7f, 0x30, 0xb5, 0x54, 0x14, 0x11, 0xe4, 0x98, 0xd8,
+ 0xfa, 0xb9, 0x77, 0xff, 0x2a, 0xde, 0x22, 0x76, 0x3c, 0x22, 0x04, 0x8d, 0x7e, 0x02, 0xa0, 0xde,
+ 0xb6, 0x66, 0x30, 0xf4, 0x2a, 0x39, 0x89, 0xfd, 0xc1, 0xe5, 0xb1, 0xf1, 0xd0, 0xeb, 0x48, 0x98,
+ 0xad, 0x05, 0x5c, 0x50, 0x80, 0x78, 0xe8, 0x55, 0x7f, 0x97, 0x80, 0x7c, 0x14, 0x88, 0xe8, 0xff,
+ 0xa0, 0x18, 0x05, 0xbb, 0x39, 0x9d, 0x67, 0x20, 0xe2, 0xb7, 0xfa, 0xe8, 0xae, 0x7c, 0x81, 0x87,
+ 0xd4, 0xb3, 0x26, 0x2f, 0x70, 0x35, 0x2b, 0xce, 0x17, 0x8f, 0x19, 0x76, 0x44, 0x82, 0x67, 0x01,
+ 0x0d, 0x55, 0xd9, 0x9c, 0xc7, 0x13, 0x86, 0x78, 0xc6, 0xfb, 0x24, 0x18, 0x50, 0x2e, 0x2e, 0x0e,
+ 0x2e, 0x63, 0xa0, 0x80, 0xe3, 0xac, 0xea, 0xdf, 0x93, 0xb0, 0x34, 0x1d, 0xbe, 0x73, 0xea, 0xb7,
+ 0x32, 0x43, 0xbf, 0x69, 0xd5, 0x08, 0xa4, 0x65, 0x05, 0xaa, 0xaa, 0xe6, 0xed, 0xeb, 0x1e, 0xab,
+ 0x78, 0x59, 0xaa, 0x2f, 0x4a, 0x01, 0x5f, 0xe3, 0x97, 0x2c, 0x0b, 0xbb, 0x0d, 0x5c, 0x4e, 0xa0,
+ 0x45, 0xc8, 0x77, 0x1b, 0xd8, 0xdc, 0xdc, 0x6f, 0xb5, 0xcb, 0xc9, 0x88, 0x5a, 0x17, 0x54, 0x2a,
+ 0xa2, 0xb6, 0xf7, 0x77, 0x1a, 0xe5, 0xb4, 0xa8, 0xbb, 0x05, 0xf5, 0xc9, 0x7e, 0x39, 0x23, 0xc4,
+ 0xc5, 0x94, 0x62, 0xf5, 0x08, 0x60, 0x72, 0x06, 0xe7, 0xb4, 0xd8, 0x4d, 0xc8, 0x1c, 0xb8, 0x96,
+ 0x33, 0x7e, 0x8d, 0x4a, 0x02, 0xbd, 0x03, 0x48, 0xa6, 0x66, 0xd2, 0x37, 0xc9, 0x31, 0x0d, 0x4d,
+ 0x9b, 0xf5, 0xf5, 0xb3, 0x34, 0x83, 0xcb, 0x7a, 0xc4, 0x38, 0xa6, 0xe1, 0x86, 0xe0, 0x57, 0xdf,
+ 0x83, 0x62, 0xec, 0x3c, 0xce, 0xb7, 0x70, 0x75, 0x6d, 0xac, 0x2c, 0xf6, 0x07, 0x73, 0xca, 0xfc,
+ 0x31, 0x01, 0xf9, 0xe8, 0xa0, 0xa0, 0xd7, 0x67, 0x88, 0x6c, 0x2d, 0x4c, 0x6d, 0xee, 0x0e, 0x80,
+ 0xcb, 0x6c, 0xcb, 0x35, 0x7d, 0x2b, 0x7c, 0xaa, 0xa2, 0x41, 0x1c, 0x01, 0xc9, 0x6b, 0x5b, 0xe1,
+ 0x53, 0x84, 0x20, 0x6d, 0x05, 0x4e, 0xf4, 0xe0, 0x96, 0xdf, 0x67, 0xec, 0x3d, 0x3d, 0x7b, 0xef,
+ 0xeb, 0xcb, 0x50, 0x12, 0x70, 0x22, 0xb6, 0xe4, 0xd3, 0xa6, 0xfa, 0x65, 0x12, 0x0a, 0xe3, 0x03,
+ 0x87, 0x5e, 0x86, 0xac, 0x3a, 0x70, 0xf1, 0x2d, 0x69, 0xd6, 0x19, 0x2b, 0x25, 0x67, 0xaf, 0x84,
+ 0x28, 0x14, 0xa9, 0x17, 0x92, 0xc0, 0x0f, 0x48, 0x38, 0x7e, 0xf6, 0x6d, 0x5e, 0x23, 0x1b, 0xd4,
+ 0x5b, 0x13, 0x38, 0x1c, 0xc7, 0xae, 0x19, 0xc2, 0xa1, 0x63, 0x12, 0xbd, 0x0c, 0xb7, 0x5a, 0x8f,
+ 0xba, 0x06, 0x6e, 0x63, 0xa3, 0x7b, 0xea, 0x71, 0x58, 0x80, 0x4c, 0x67, 0xcb, 0xd8, 0xde, 0x2e,
+ 0x27, 0xd0, 0x12, 0x40, 0xfb, 0xf1, 0xc7, 0x06, 0x56, 0x74, 0x6a, 0x3d, 0x0b, 0x69, 0x51, 0x5f,
+ 0xd5, 0xbe, 0x4a, 0x40, 0x65, 0x43, 0xb6, 0xd8, 0x62, 0xbd, 0x1a, 0x4c, 0x3e, 0x15, 0x04, 0xda,
+ 0x80, 0xac, 0x6f, 0x05, 0xc4, 0x8b, 0x2c, 0xf4, 0xf6, 0xd7, 0x8d, 0xe4, 0xbf, 0x1b, 0x77, 0xd1,
+ 0x3c, 0xfd, 0x1e, 0xac, 0x45, 0xd1, 0xdb, 0xb0, 0x7c, 0xa2, 0xa1, 0x13, 0xcf, 0x4d, 0xa5, 0x49,
+ 0xef, 0x67, 0xd4, 0xea, 0xa3, 0x1f, 0xc1, 0x62, 0x7c, 0xb2, 0xbe, 0xf0, 0xbe, 0x71, 0x41, 0x21,
+ 0x3d, 0x81, 0xd0, 0x09, 0x2f, 0x06, 0x5a, 0xfb, 0x04, 0x5e, 0xdc, 0x24, 0xe1, 0x8c, 0xdd, 0x3d,
+ 0x98, 0xaa, 0xa4, 0xf5, 0xde, 0xe6, 0xea, 0x65, 0xa9, 0x8a, 0xbb, 0xf6, 0xfb, 0x04, 0x54, 0xb6,
+ 0x29, 0x8f, 0x61, 0x53, 0xc2, 0xff, 0xab, 0xb6, 0x7b, 0x19, 0x0a, 0xbe, 0xe5, 0x10, 0x93, 0xd3,
+ 0xe7, 0xaa, 0x8c, 0xcc, 0xe0, 0xbc, 0x60, 0x74, 0xe8, 0x73, 0xd9, 0x25, 0x91, 0x83, 0x21, 0x3b,
+ 0x24, 0xfa, 0x0d, 0x8d, 0xe5, 0xf4, 0xae, 0x60, 0xd4, 0x7e, 0x9b, 0x80, 0xdb, 0x33, 0xb4, 0xe3,
+ 0x3e, 0xf3, 0x38, 0x41, 0x6d, 0x58, 0x9a, 0xee, 0x46, 0xeb, 0x66, 0xd1, 0xfc, 0xa6, 0x8e, 0xbb,
+ 0x8e, 0x12, 0x8e, 0xfe, 0x1f, 0x96, 0x3d, 0x72, 0x1c, 0x9a, 0x31, 0x9d, 0x54, 0x8e, 0x2f, 0x09,
+ 0x76, 0x7b, 0xac, 0xd7, 0x9f, 0x12, 0x50, 0xd9, 0x95, 0xa5, 0xf9, 0x0c, 0x9f, 0x9c, 0xf4, 0x7f,
+ 0xe2, 0xda, 0xfe, 0x47, 0x1f, 0x8c, 0xbb, 0xc6, 0x03, 0x8b, 0x1f, 0xea, 0x9a, 0xed, 0x74, 0xd7,
+ 0xf8, 0x21, 0x25, 0x6e, 0x7f, 0xc7, 0xe2, 0x87, 0x51, 0xc3, 0x58, 0x7c, 0xd7, 0x7e, 0x0c, 0x95,
+ 0x26, 0x71, 0xc9, 0x4c, 0x5d, 0xaf, 0x1d, 0x3f, 0x7f, 0x4d, 0xc0, 0xeb, 0xdb, 0x8c, 0x1d, 0x0e,
+ 0x7d, 0xe3, 0xe0, 0x80, 0xd8, 0x21, 0x3d, 0x9a, 0xb5, 0xcc, 0x1d, 0xc8, 0x47, 0x1d, 0xc4, 0x78,
+ 0xa2, 0x1a, 0x33, 0x4f, 0x77, 0xd4, 0x92, 0x17, 0x75, 0xd4, 0x52, 0x73, 0x74, 0xd4, 0xd2, 0x33,
+ 0x3b, 0x6a, 0xff, 0xca, 0xc0, 0xcd, 0x59, 0xca, 0xa2, 0x9f, 0xc6, 0x5a, 0xe1, 0x2a, 0x92, 0x1a,
+ 0xe7, 0x3b, 0x6d, 0x16, 0x4a, 0xbd, 0x23, 0xff, 0xbe, 0xe8, 0x9f, 0x6e, 0x93, 0xff, 0xe2, 0x8c,
+ 0x36, 0x79, 0x52, 0x2e, 0xf5, 0xd1, 0xf5, 0x97, 0xba, 0xa0, 0x85, 0xce, 0xa1, 0xcc, 0x75, 0xbe,
+ 0x36, 0xa3, 0x5e, 0xba, 0x7a, 0x49, 0x6f, 0x5d, 0x7d, 0xed, 0x13, 0x7d, 0xf6, 0x65, 0x3e, 0x45,
+ 0xf3, 0x2a, 0x15, 0x8f, 0xff, 0xb8, 0x96, 0xe2, 0xb9, 0xa4, 0xfe, 0xe1, 0x89, 0x9e, 0x51, 0x8a,
+ 0x42, 0x0f, 0x20, 0xa7, 0xb5, 0xd6, 0xf1, 0x3d, 0xe7, 0xff, 0x10, 0x91, 0x54, 0xf5, 0x37, 0x09,
+ 0xa8, 0x9c, 0x65, 0x91, 0x33, 0x57, 0xfd, 0x19, 0xa0, 0x53, 0x4e, 0x19, 0x69, 0x05, 0x2e, 0xfd,
+ 0xcf, 0xc5, 0x8d, 0x93, 0x66, 0x1f, 0x55, 0x7f, 0x95, 0x80, 0x17, 0x67, 0x9a, 0xea, 0x4c, 0x8d,
+ 0x76, 0x61, 0xf9, 0x84, 0x9b, 0xb4, 0x3a, 0x97, 0xfb, 0xc7, 0x63, 0x69, 0xda, 0x13, 0x6f, 0xed,
+ 0xc1, 0x62, 0xbc, 0x15, 0x80, 0x5e, 0x85, 0xdb, 0x4d, 0xa3, 0xd3, 0xc2, 0x46, 0xd3, 0xec, 0x74,
+ 0x1b, 0xdd, 0x93, 0x35, 0x63, 0x09, 0x0a, 0xad, 0x47, 0x9d, 0x6e, 0x63, 0x7b, 0xdb, 0x68, 0xaa,
+ 0x86, 0xe2, 0x6e, 0xbb, 0xd9, 0xe8, 0x1a, 0xcd, 0x72, 0x52, 0x10, 0xd8, 0xd8, 0x79, 0xbc, 0x67,
+ 0x34, 0xcb, 0xa9, 0xf5, 0x67, 0xb0, 0x62, 0xb3, 0xc1, 0xb9, 0xaa, 0xad, 0x97, 0xa6, 0xf2, 0xf7,
+ 0x7e, 0x53, 0x4f, 0x76, 0x98, 0x6b, 0x79, 0x4e, 0x9d, 0x05, 0xce, 0xaa, 0x43, 0x3c, 0x99, 0xc5,
+ 0x56, 0x27, 0x09, 0x67, 0xf6, 0xff, 0x8f, 0x1f, 0x44, 0x74, 0x2f, 0x2b, 0x05, 0xde, 0xfb, 0x4f,
+ 0x00, 0x00, 0x00, 0xff, 0xff, 0xda, 0xd9, 0x37, 0xec, 0xaf, 0x1c, 0x00, 0x00,
}