diff --git a/googleapis/cloud/bigquery/datatransfer/v1/datatransfer.pb.go b/googleapis/cloud/bigquery/datatransfer/v1/datatransfer.pb.go
index 00d87d84d6aa18d79d30a8acf380b72ca4d0259e..2afc5724dd1d999388db99e630c63413639b2c7a 100644
--- a/googleapis/cloud/bigquery/datatransfer/v1/datatransfer.pb.go
+++ b/googleapis/cloud/bigquery/datatransfer/v1/datatransfer.pb.go
@@ -406,7 +406,7 @@ type DataSource struct {
 	// Disables backfilling and manual run scheduling
 	// for the data source.
 	ManualRunsDisabled bool `protobuf:"varint,17,opt,name=manual_runs_disabled,json=manualRunsDisabled" json:"manual_runs_disabled,omitempty"`
-	// The minimum interval between two consecutive scheduled runs.
+	// The minimum interval for scheduler to schedule runs.
 	MinimumScheduleInterval *google_protobuf4.Duration `protobuf:"bytes,18,opt,name=minimum_schedule_interval,json=minimumScheduleInterval" json:"minimum_schedule_interval,omitempty"`
 }
 
@@ -640,10 +640,8 @@ func (m *ListDataSourcesResponse) GetNextPageToken() string {
 type CreateTransferConfigRequest struct {
 	// The BigQuery project id where the transfer configuration should be created.
 	// Must be in the format /projects/{project_id}/locations/{location_id}
-	// or
-	// /projects/{project_id}/locations/-
-	// In case when '-' is specified as location_id, location is infered from
-	// the destination dataset region.
+	// If specified location and location of the destination bigquery dataset
+	// do not match - the request will fail.
 	Parent string `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"`
 	// Data transfer configuration to create.
 	TransferConfig *TransferConfig `protobuf:"bytes,2,opt,name=transfer_config,json=transferConfig" json:"transfer_config,omitempty"`
@@ -1230,7 +1228,7 @@ type DataTransferServiceClient interface {
 	GetTransferConfig(ctx context.Context, in *GetTransferConfigRequest, opts ...grpc.CallOption) (*TransferConfig, error)
 	// Returns information about all data transfers in the project.
 	ListTransferConfigs(ctx context.Context, in *ListTransferConfigsRequest, opts ...grpc.CallOption) (*ListTransferConfigsResponse, error)
-	// Creates transfer runs for a time range [range_start_time, range_end_time].
+	// Creates transfer runs for a time range [start_time, end_time].
 	// For each date - or whatever granularity the data source supports - in the
 	// range, one transfer run is created.
 	// Note that runs are created per UTC time in the time range.
@@ -1398,7 +1396,7 @@ type DataTransferServiceServer interface {
 	GetTransferConfig(context.Context, *GetTransferConfigRequest) (*TransferConfig, error)
 	// Returns information about all data transfers in the project.
 	ListTransferConfigs(context.Context, *ListTransferConfigsRequest) (*ListTransferConfigsResponse, error)
-	// Creates transfer runs for a time range [range_start_time, range_end_time].
+	// Creates transfer runs for a time range [start_time, end_time].
 	// For each date - or whatever granularity the data source supports - in the
 	// range, one transfer run is created.
 	// Note that runs are created per UTC time in the time range.
diff --git a/googleapis/cloud/bigquery/datatransfer/v1/transfer.pb.go b/googleapis/cloud/bigquery/datatransfer/v1/transfer.pb.go
index dabe0fe9ad4cb11bacc4ba1e48c3bd9f338b8d30..7d51fe9d63b6f4fcd7d7ae57512d254204908700 100644
--- a/googleapis/cloud/bigquery/datatransfer/v1/transfer.pb.go
+++ b/googleapis/cloud/bigquery/datatransfer/v1/transfer.pb.go
@@ -9,7 +9,7 @@ import math "math"
 import _ "google.golang.org/genproto/googleapis/api/annotations"
 import google_protobuf1 "github.com/golang/protobuf/ptypes/struct"
 import google_protobuf2 "github.com/golang/protobuf/ptypes/timestamp"
-import _ "google.golang.org/genproto/googleapis/rpc/status"
+import google_rpc "google.golang.org/genproto/googleapis/rpc/status"
 
 // Reference imports to suppress errors if they are not otherwise used.
 var _ = proto.Marshal
@@ -51,8 +51,6 @@ type TransferState int32
 const (
 	// State placeholder.
 	TransferState_TRANSFER_STATE_UNSPECIFIED TransferState = 0
-	// Data transfer is inactive.
-	TransferState_INACTIVE TransferState = 1
 	// Data transfer is scheduled and is waiting to be picked up by
 	// data transfer backend.
 	TransferState_PENDING TransferState = 2
@@ -68,7 +66,6 @@ const (
 
 var TransferState_name = map[int32]string{
 	0: "TRANSFER_STATE_UNSPECIFIED",
-	1: "INACTIVE",
 	2: "PENDING",
 	3: "RUNNING",
 	4: "SUCCEEDED",
@@ -77,7 +74,6 @@ var TransferState_name = map[int32]string{
 }
 var TransferState_value = map[string]int32{
 	"TRANSFER_STATE_UNSPECIFIED": 0,
-	"INACTIVE":                   1,
 	"PENDING":                    2,
 	"RUNNING":                    3,
 	"SUCCEEDED":                  4,
@@ -130,6 +126,7 @@ func (TransferMessage_MessageSeverity) EnumDescriptor() ([]byte, []int) {
 // When a new transfer configuration is created, the specified
 // `destination_dataset_id` is created when needed and shared with the
 // appropriate data source service account.
+// Next id: 20
 type TransferConfig struct {
 	// The resource name of the transfer config.
 	// Transfer config names have the form
@@ -178,6 +175,8 @@ type TransferConfig struct {
 	// Output only. Unique ID of the user on whose behalf transfer is done.
 	// Applicable only to data sources that do not support service accounts.
 	// When set to 0, the data source service account credentials are used.
+	// May be negative. Note, that this identifier is not stable.
+	// It may change over time even for the same user.
 	UserId int64 `protobuf:"varint,11,opt,name=user_id,json=userId" json:"user_id,omitempty"`
 	// Output only. Region in which BigQuery dataset is located.
 	DatasetRegion string `protobuf:"bytes,14,opt,name=dataset_region,json=datasetRegion" json:"dataset_region,omitempty"`
@@ -280,22 +279,20 @@ func (m *TransferConfig) GetDatasetRegion() string {
 }
 
 // Represents a data transfer run.
-// Next id: 23
+// Next id: 27
 type TransferRun struct {
 	// The resource name of the transfer run.
 	// Transfer run names have the form
 	// `projects/{project_id}/locations/{location}/transferConfigs/{config_id}/runs/{run_id}`.
 	// The name is ignored when creating a transfer run.
 	Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
-	// The BigQuery target dataset id.
-	DestinationDatasetId string `protobuf:"bytes,2,opt,name=destination_dataset_id,json=destinationDatasetId" json:"destination_dataset_id,omitempty"`
 	// Minimum time after which a transfer run can be started.
 	ScheduleTime *google_protobuf2.Timestamp `protobuf:"bytes,3,opt,name=schedule_time,json=scheduleTime" json:"schedule_time,omitempty"`
-	// Data transfer specific parameters.
-	Params *google_protobuf1.Struct `protobuf:"bytes,9,opt,name=params" json:"params,omitempty"`
 	// For batch transfer runs, specifies the date and time that
 	// data should be ingested.
 	RunTime *google_protobuf2.Timestamp `protobuf:"bytes,10,opt,name=run_time,json=runTime" json:"run_time,omitempty"`
+	// Status of the transfer run.
+	ErrorStatus *google_rpc.Status `protobuf:"bytes,21,opt,name=error_status,json=errorStatus" json:"error_status,omitempty"`
 	// Output only. Time when transfer run was started.
 	// Parameter ignored by server for input requests.
 	StartTime *google_protobuf2.Timestamp `protobuf:"bytes,4,opt,name=start_time,json=startTime" json:"start_time,omitempty"`
@@ -304,6 +301,10 @@ type TransferRun struct {
 	EndTime *google_protobuf2.Timestamp `protobuf:"bytes,5,opt,name=end_time,json=endTime" json:"end_time,omitempty"`
 	// Output only. Last time the data transfer run state was updated.
 	UpdateTime *google_protobuf2.Timestamp `protobuf:"bytes,6,opt,name=update_time,json=updateTime" json:"update_time,omitempty"`
+	// Output only. Data transfer specific parameters.
+	Params *google_protobuf1.Struct `protobuf:"bytes,9,opt,name=params" json:"params,omitempty"`
+	// Output only. The BigQuery target dataset id.
+	DestinationDatasetId string `protobuf:"bytes,2,opt,name=destination_dataset_id,json=destinationDatasetId" json:"destination_dataset_id,omitempty"`
 	// Output only. Data source id.
 	DataSourceId string `protobuf:"bytes,7,opt,name=data_source_id,json=dataSourceId" json:"data_source_id,omitempty"`
 	// Data transfer run state. Ignored for input requests.
@@ -311,7 +312,8 @@ type TransferRun struct {
 	// Output only. Unique ID of the user on whose behalf transfer is done.
 	// Applicable only to data sources that do not support service accounts.
 	// When set to 0, the data source service account credentials are used.
-	// May be negative.
+	// May be negative. Note, that this identifier is not stable.
+	// It may change over time even for the same user.
 	UserId int64 `protobuf:"varint,11,opt,name=user_id,json=userId" json:"user_id,omitempty"`
 	// Output only. Describes the schedule of this transfer run if it was
 	// created as part of a regular schedule. For batch transfer runs that are
@@ -333,13 +335,6 @@ func (m *TransferRun) GetName() string {
 	return ""
 }
 
-func (m *TransferRun) GetDestinationDatasetId() string {
-	if m != nil {
-		return m.DestinationDatasetId
-	}
-	return ""
-}
-
 func (m *TransferRun) GetScheduleTime() *google_protobuf2.Timestamp {
 	if m != nil {
 		return m.ScheduleTime
@@ -347,16 +342,16 @@ func (m *TransferRun) GetScheduleTime() *google_protobuf2.Timestamp {
 	return nil
 }
 
-func (m *TransferRun) GetParams() *google_protobuf1.Struct {
+func (m *TransferRun) GetRunTime() *google_protobuf2.Timestamp {
 	if m != nil {
-		return m.Params
+		return m.RunTime
 	}
 	return nil
 }
 
-func (m *TransferRun) GetRunTime() *google_protobuf2.Timestamp {
+func (m *TransferRun) GetErrorStatus() *google_rpc.Status {
 	if m != nil {
-		return m.RunTime
+		return m.ErrorStatus
 	}
 	return nil
 }
@@ -382,6 +377,20 @@ func (m *TransferRun) GetUpdateTime() *google_protobuf2.Timestamp {
 	return nil
 }
 
+func (m *TransferRun) GetParams() *google_protobuf1.Struct {
+	if m != nil {
+		return m.Params
+	}
+	return nil
+}
+
+func (m *TransferRun) GetDestinationDatasetId() string {
+	if m != nil {
+		return m.DestinationDatasetId
+	}
+	return ""
+}
+
 func (m *TransferRun) GetDataSourceId() string {
 	if m != nil {
 		return m.DataSourceId
@@ -460,62 +469,63 @@ func init() {
 }
 
 var fileDescriptor1 = []byte{
-	// 910 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xdf, 0x6e, 0xe3, 0xc4,
-	0x17, 0xfe, 0xb9, 0xf9, 0x7f, 0xf2, 0x67, 0xa3, 0xd1, 0x0f, 0x6a, 0xaa, 0x05, 0x42, 0x45, 0xa5,
-	0xb0, 0x17, 0xb6, 0x5a, 0xba, 0x42, 0x68, 0x05, 0x28, 0x71, 0x9c, 0x60, 0xb4, 0xf5, 0x66, 0xc7,
-	0x6e, 0x57, 0x8b, 0x2a, 0x59, 0x93, 0x78, 0xea, 0xb5, 0x94, 0xd8, 0xc1, 0x33, 0xee, 0x36, 0x97,
-	0xbc, 0x0a, 0x97, 0x5c, 0xf0, 0x20, 0x5c, 0x70, 0xc9, 0x2b, 0xf0, 0x1a, 0x68, 0xc6, 0x76, 0x94,
-	0xcd, 0x22, 0xa5, 0x95, 0xe0, 0x2a, 0x9e, 0x73, 0xbe, 0xef, 0x9b, 0x6f, 0xce, 0x39, 0x33, 0x81,
-	0xf3, 0x20, 0x8e, 0x83, 0x05, 0xd5, 0xe7, 0x8b, 0x38, 0xf5, 0xf5, 0x59, 0x18, 0xfc, 0x94, 0xd2,
-	0x64, 0xad, 0xfb, 0x84, 0x13, 0x9e, 0x90, 0x88, 0xdd, 0xd0, 0x44, 0xbf, 0x3d, 0xd5, 0x8b, 0x6f,
-	0x6d, 0x95, 0xc4, 0x3c, 0x46, 0x27, 0x19, 0x4b, 0x93, 0x2c, 0xad, 0x60, 0x69, 0xdb, 0x2c, 0xed,
-	0xf6, 0xf4, 0xe8, 0x71, 0x2e, 0x4e, 0x56, 0xa1, 0x4e, 0xa2, 0x28, 0xe6, 0x84, 0x87, 0x71, 0xc4,
-	0x32, 0x91, 0x4d, 0x56, 0xae, 0x66, 0xe9, 0x8d, 0xce, 0x78, 0x92, 0xce, 0x79, 0x9e, 0xfd, 0x74,
-	0x37, 0xcb, 0xc3, 0x25, 0x65, 0x9c, 0x2c, 0x57, 0x39, 0xe0, 0x30, 0x07, 0x24, 0xab, 0xb9, 0xce,
-	0x38, 0xe1, 0x69, 0xae, 0x7b, 0xfc, 0x47, 0x19, 0x3a, 0x6e, 0xee, 0xc2, 0x88, 0xa3, 0x9b, 0x30,
-	0x40, 0x08, 0xca, 0x11, 0x59, 0x52, 0x55, 0xe9, 0x29, 0xfd, 0x06, 0x96, 0xdf, 0xe8, 0x1c, 0x3e,
-	0xf4, 0x29, 0xe3, 0x61, 0x24, 0x4d, 0x79, 0xc2, 0x3b, 0xa3, 0xdc, 0x0b, 0x7d, 0xf5, 0x40, 0xa2,
-	0xfe, 0xbf, 0x95, 0x1d, 0x65, 0x49, 0xcb, 0x47, 0x9f, 0x41, 0xcb, 0x0f, 0xd9, 0x6a, 0x41, 0xd6,
-	0x9e, 0x54, 0x2c, 0x49, 0x6c, 0x33, 0x8f, 0xd9, 0x42, 0xf8, 0x73, 0xe8, 0x08, 0x31, 0x8f, 0xc5,
-	0x69, 0x32, 0xa7, 0x42, 0xb0, 0x22, 0x41, 0x2d, 0x11, 0x75, 0x64, 0xd0, 0xf2, 0x91, 0x0e, 0xd5,
-	0x15, 0x49, 0xc8, 0x92, 0xa9, 0x8d, 0x9e, 0xd2, 0x6f, 0x9e, 0x1d, 0x6a, 0x79, 0x4d, 0x8b, 0x03,
-	0x6b, 0x8e, 0x2c, 0x07, 0xce, 0x61, 0xe8, 0x08, 0xea, 0x6c, 0xfe, 0x86, 0xfa, 0xe9, 0x82, 0xaa,
-	0x35, 0x29, 0xb8, 0x59, 0xa3, 0xaf, 0x40, 0x95, 0x5b, 0x26, 0xf4, 0x26, 0xa1, 0xec, 0x8d, 0xf7,
-	0x36, 0x8c, 0xfc, 0xf8, 0xad, 0xe7, 0x93, 0x35, 0x53, 0x5b, 0x3d, 0xa5, 0x5f, 0xc1, 0x1f, 0x88,
-	0x3c, 0xce, 0xd2, 0xaf, 0x64, 0x76, 0x44, 0xd6, 0x52, 0xd4, 0x0f, 0x19, 0x99, 0x2d, 0xa8, 0xaf,
-	0xb6, 0x7b, 0x4a, 0xbf, 0x8e, 0x37, 0x6b, 0xf4, 0x0c, 0x9a, 0xe9, 0xca, 0x27, 0x9c, 0x7a, 0xa2,
-	0xf4, 0x6a, 0x59, 0xda, 0x3c, 0x7a, 0xcf, 0xa6, 0x5b, 0xf4, 0x05, 0x43, 0x06, 0x17, 0x01, 0xf4,
-	0x2d, 0xb4, 0x23, 0x7a, 0xc7, 0xbd, 0x24, 0x8d, 0x32, 0x7a, 0x7d, 0x2f, 0xbd, 0x29, 0x08, 0x38,
-	0x8d, 0x24, 0xff, 0x07, 0xa8, 0x88, 0xa6, 0x52, 0x15, 0x7a, 0x4a, 0xbf, 0x73, 0x76, 0xae, 0xdd,
-	0x6b, 0xe2, 0xb4, 0xa2, 0xef, 0x8e, 0xe0, 0xe2, 0x4c, 0x02, 0x1d, 0x42, 0x2d, 0x65, 0x34, 0x11,
-	0x9d, 0x68, 0xf6, 0x94, 0x7e, 0x09, 0x57, 0xc5, 0xd2, 0xf2, 0xd1, 0x49, 0xd6, 0x29, 0xd1, 0xf6,
-	0x84, 0x06, 0x61, 0x1c, 0xa9, 0x1d, 0x59, 0xd8, 0x76, 0x1e, 0xc5, 0x32, 0x78, 0xfc, 0x67, 0x19,
-	0x9a, 0x85, 0x30, 0x4e, 0xa3, 0x7f, 0x71, 0x9a, 0xbe, 0x83, 0x76, 0xd1, 0xc3, 0xac, 0x4a, 0xa5,
-	0xbd, 0x55, 0x6a, 0x15, 0x04, 0x59, 0xa6, 0x07, 0x4f, 0xd1, 0x53, 0xa8, 0x6f, 0x5a, 0x02, 0x7b,
-	0x37, 0xab, 0x25, 0x79, 0x3b, 0xbe, 0x06, 0x60, 0x9c, 0x24, 0xfc, 0xbe, 0xa3, 0xd0, 0x90, 0x68,
-	0x49, 0x7d, 0x0a, 0x75, 0x1a, 0xf9, 0x19, 0xb1, 0xb2, 0x7f, 0x47, 0x1a, 0xf9, 0x92, 0xb6, 0x33,
-	0x7d, 0xd5, 0x07, 0x4d, 0xdf, 0xfb, 0x57, 0xb0, 0xf6, 0x0f, 0x57, 0x70, 0x33, 0x63, 0xf5, 0xff,
-	0x70, 0xc6, 0xb6, 0xaf, 0x6d, 0xeb, 0xdd, 0x6b, 0x7b, 0xfc, 0xdb, 0x01, 0x3c, 0x2a, 0xd4, 0x2e,
-	0x28, 0x63, 0x24, 0xa0, 0xe8, 0x1b, 0x68, 0x2d, 0xb3, 0xcf, 0xec, 0xe0, 0xca, 0xfe, 0x7b, 0x93,
-	0xe3, 0xe5, 0xc9, 0x67, 0x50, 0x67, 0xf4, 0x96, 0x26, 0x21, 0x5f, 0xcb, 0xc9, 0xeb, 0x9c, 0x8d,
-	0x1f, 0x78, 0xac, 0xdc, 0x88, 0x96, 0xff, 0x3a, 0xb9, 0x1a, 0xde, 0xe8, 0x8a, 0x37, 0x70, 0x63,
-	0x91, 0xde, 0xf1, 0xe2, 0x0d, 0x2c, 0x6c, 0xd0, 0x3b, 0x7e, 0x7c, 0x09, 0x8f, 0x76, 0xf8, 0xa8,
-	0x07, 0x8f, 0x2f, 0x4c, 0xc7, 0x19, 0x4c, 0x4c, 0xcf, 0x31, 0xaf, 0x4c, 0x6c, 0xb9, 0xaf, 0xbd,
-	0x4b, 0xdb, 0x99, 0x9a, 0x86, 0x35, 0xb6, 0xcc, 0x51, 0xf7, 0x7f, 0xa8, 0x0e, 0x65, 0xcb, 0x1e,
-	0xbf, 0xe8, 0x2a, 0xa8, 0x09, 0xb5, 0x57, 0x03, 0x6c, 0x5b, 0xf6, 0xa4, 0x7b, 0x80, 0x1a, 0x50,
-	0x31, 0x31, 0x7e, 0x81, 0xbb, 0xa5, 0x27, 0x13, 0x68, 0x15, 0x36, 0xdd, 0xf5, 0x8a, 0xa2, 0x8f,
-	0xe1, 0x23, 0x17, 0x0f, 0x6c, 0x67, 0x6c, 0x62, 0xcf, 0x7d, 0x3d, 0x35, 0x77, 0x04, 0x1b, 0x50,
-	0x19, 0x0e, 0x5c, 0xe3, 0xfb, 0xae, 0x82, 0xda, 0xd0, 0x70, 0x5c, 0x6c, 0x0e, 0x2e, 0xa4, 0xe6,
-	0x93, 0x9f, 0x15, 0x68, 0xbf, 0xd3, 0x47, 0xf4, 0x09, 0x1c, 0x6d, 0xa4, 0x1c, 0x77, 0xe0, 0xee,
-	0x6a, 0xb5, 0xa0, 0x6e, 0xd9, 0x03, 0xc3, 0xb5, 0xae, 0xcc, 0xcc, 0xe0, 0xd4, 0xb4, 0x47, 0x99,
-	0xc1, 0x26, 0xd4, 0xf0, 0xa5, 0x2d, 0xdd, 0x96, 0xe4, 0x46, 0x97, 0x86, 0x61, 0x9a, 0x23, 0x73,
-	0xd4, 0x2d, 0x23, 0x80, 0xea, 0x78, 0x60, 0x3d, 0x37, 0x47, 0xdd, 0x8a, 0x48, 0x19, 0x03, 0xdb,
-	0x30, 0x9f, 0x8b, 0x65, 0x75, 0xf8, 0x97, 0x02, 0x5f, 0xcc, 0xe3, 0xe5, 0xfd, 0xda, 0x33, 0xdc,
-	0xd8, 0x9d, 0x8a, 0x09, 0x98, 0x2a, 0x3f, 0xbe, 0xcc, 0x79, 0x41, 0xbc, 0x20, 0x51, 0xa0, 0xc5,
-	0x49, 0xa0, 0x07, 0x34, 0x92, 0xf3, 0xa1, 0x67, 0x29, 0xb2, 0x0a, 0xd9, 0x9e, 0x3f, 0xf6, 0x67,
-	0xdb, 0xeb, 0x5f, 0x0e, 0x2a, 0x13, 0x63, 0x38, 0x72, 0x7f, 0x3d, 0x38, 0x99, 0x64, 0xda, 0x86,
-	0xf4, 0x34, 0x0c, 0x83, 0x97, 0xd2, 0x93, 0x78, 0xb8, 0x0a, 0x1b, 0xda, 0xd5, 0xe9, 0xef, 0x05,
-	0xee, 0x5a, 0xe2, 0xae, 0x0b, 0xdc, 0xf5, 0x36, 0xee, 0xfa, 0xea, 0x74, 0x56, 0x95, 0xae, 0xbe,
-	0xfc, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xf0, 0xc4, 0x0e, 0x43, 0x6d, 0x08, 0x00, 0x00,
+	// 922 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x6e, 0xe3, 0x44,
+	0x14, 0xc6, 0xf9, 0xcf, 0x71, 0x92, 0x8d, 0x46, 0x2c, 0x35, 0xd5, 0x02, 0xa1, 0xa2, 0x52, 0xd8,
+	0x0b, 0x5b, 0x2d, 0x5d, 0x21, 0xb4, 0x02, 0x94, 0x1f, 0x27, 0x04, 0x6d, 0xb3, 0xd9, 0xb1, 0xdb,
+	0xd5, 0xa2, 0x4a, 0xd6, 0x24, 0x9e, 0x7a, 0x2d, 0x25, 0xb6, 0x99, 0x19, 0x77, 0x9b, 0x87, 0xe0,
+	0x25, 0xb8, 0xe4, 0x82, 0x07, 0xe1, 0x82, 0xd7, 0xe0, 0x35, 0x90, 0xc7, 0x76, 0x94, 0xcd, 0x56,
+	0x4a, 0x8b, 0xc4, 0x55, 0xe7, 0xcc, 0xf9, 0xbe, 0xaf, 0xdf, 0x9c, 0x1f, 0x2b, 0x70, 0xe6, 0x85,
+	0xa1, 0xb7, 0xa4, 0xc6, 0x62, 0x19, 0xc6, 0xae, 0x31, 0xf7, 0xbd, 0x5f, 0x63, 0xca, 0xd6, 0x86,
+	0x4b, 0x04, 0x11, 0x8c, 0x04, 0xfc, 0x9a, 0x32, 0xe3, 0xe6, 0xc4, 0xc8, 0xcf, 0x7a, 0xc4, 0x42,
+	0x11, 0xa2, 0xe3, 0x94, 0xa5, 0x4b, 0x96, 0x9e, 0xb3, 0xf4, 0x6d, 0x96, 0x7e, 0x73, 0x72, 0xf8,
+	0x24, 0x13, 0x27, 0x91, 0x6f, 0x90, 0x20, 0x08, 0x05, 0x11, 0x7e, 0x18, 0xf0, 0x54, 0x64, 0x93,
+	0x95, 0xd1, 0x3c, 0xbe, 0x36, 0xb8, 0x60, 0xf1, 0x42, 0x64, 0xd9, 0x2f, 0x76, 0xb3, 0xc2, 0x5f,
+	0x51, 0x2e, 0xc8, 0x2a, 0xca, 0x00, 0x07, 0x19, 0x80, 0x45, 0x0b, 0x83, 0x0b, 0x22, 0xe2, 0x4c,
+	0xf7, 0xe8, 0xef, 0x12, 0xb4, 0xec, 0xcc, 0xc5, 0x20, 0x0c, 0xae, 0x7d, 0x0f, 0x21, 0x28, 0x05,
+	0x64, 0x45, 0x35, 0xa5, 0xa3, 0x74, 0xeb, 0x58, 0x9e, 0xd1, 0x19, 0x7c, 0xe2, 0x52, 0x2e, 0xfc,
+	0x40, 0x9a, 0x72, 0x12, 0xef, 0x9c, 0x0a, 0xc7, 0x77, 0xb5, 0x82, 0x44, 0x7d, 0xbc, 0x95, 0x1d,
+	0xa6, 0xc9, 0x89, 0x8b, 0xbe, 0x84, 0x86, 0xeb, 0xf3, 0x68, 0x49, 0xd6, 0x8e, 0x54, 0x2c, 0x4a,
+	0xac, 0x9a, 0xdd, 0x4d, 0x13, 0xe1, 0xaf, 0xa0, 0x95, 0x88, 0x39, 0x3c, 0x8c, 0xd9, 0x82, 0x26,
+	0x82, 0x65, 0x09, 0x6a, 0x24, 0xb7, 0x96, 0xbc, 0x9c, 0xb8, 0xc8, 0x80, 0x4a, 0x44, 0x18, 0x59,
+	0x71, 0xad, 0xde, 0x51, 0xba, 0xea, 0xe9, 0x81, 0x9e, 0xd5, 0x34, 0x7f, 0xb0, 0x6e, 0xc9, 0x72,
+	0xe0, 0x0c, 0x86, 0x0e, 0xa1, 0xc6, 0x17, 0x6f, 0xa9, 0x1b, 0x2f, 0xa9, 0x56, 0x95, 0x82, 0x9b,
+	0x18, 0x7d, 0x0b, 0x9a, 0xfc, 0x97, 0x8c, 0x5e, 0x33, 0xca, 0xdf, 0x3a, 0xef, 0xfc, 0xc0, 0x0d,
+	0xdf, 0x39, 0x2e, 0x59, 0x73, 0xad, 0xd1, 0x51, 0xba, 0x65, 0xfc, 0x38, 0xc9, 0xe3, 0x34, 0xfd,
+	0x5a, 0x66, 0x87, 0x64, 0x2d, 0x45, 0x5d, 0x9f, 0x93, 0xf9, 0x92, 0xba, 0x5a, 0xb3, 0xa3, 0x74,
+	0x6b, 0x78, 0x13, 0xa3, 0xe7, 0xa0, 0xc6, 0x91, 0x4b, 0x04, 0x75, 0x92, 0xd2, 0x6b, 0x25, 0x69,
+	0xf3, 0xf0, 0x03, 0x9b, 0x76, 0xde, 0x17, 0x0c, 0x29, 0x3c, 0xb9, 0x40, 0x3f, 0x40, 0x33, 0xa0,
+	0xb7, 0xc2, 0x61, 0x71, 0x90, 0xd2, 0x6b, 0x7b, 0xe9, 0x6a, 0x42, 0xc0, 0x71, 0x20, 0xf9, 0x3f,
+	0x43, 0x39, 0x69, 0x2a, 0xd5, 0xa0, 0xa3, 0x74, 0x5b, 0xa7, 0x67, 0xfa, 0xbd, 0x26, 0x4e, 0xcf,
+	0xfb, 0x6e, 0x25, 0x5c, 0x9c, 0x4a, 0xa0, 0x03, 0xa8, 0xc6, 0x9c, 0xb2, 0xa4, 0x13, 0x6a, 0x47,
+	0xe9, 0x16, 0x71, 0x25, 0x09, 0x27, 0x2e, 0x3a, 0x4e, 0x3b, 0x95, 0xb4, 0x9d, 0x51, 0xcf, 0x0f,
+	0x03, 0xad, 0x25, 0x0b, 0xdb, 0xcc, 0x6e, 0xb1, 0xbc, 0x3c, 0xfa, 0xad, 0x0c, 0x6a, 0x2e, 0x8c,
+	0xe3, 0xe0, 0xce, 0x69, 0xfa, 0x11, 0x9a, 0x79, 0x37, 0xd2, 0xf7, 0x16, 0xf7, 0xbe, 0xb7, 0x91,
+	0x13, 0xe4, 0x83, 0x9f, 0x41, 0x6d, 0x53, 0x2b, 0xd8, 0xcb, 0xad, 0xb2, 0xac, 0x4e, 0xcf, 0xa0,
+	0x41, 0x19, 0x0b, 0x99, 0x93, 0xae, 0x80, 0xf6, 0x58, 0x52, 0x51, 0x4e, 0x65, 0xd1, 0x42, 0xb7,
+	0x64, 0x06, 0xab, 0x12, 0x97, 0x06, 0xe8, 0x3b, 0x00, 0x2e, 0x08, 0x13, 0xf7, 0x6d, 0x6d, 0x5d,
+	0xa2, 0x73, 0xa3, 0x34, 0x70, 0x53, 0x62, 0x79, 0xbf, 0x51, 0x1a, 0xb8, 0x92, 0xb6, 0x33, 0x4d,
+	0x95, 0x07, 0x4d, 0xd3, 0x83, 0x97, 0xe5, 0xbf, 0x2d, 0xf7, 0x87, 0x9b, 0x5b, 0xbd, 0x63, 0x73,
+	0x37, 0xa3, 0x59, 0xfb, 0x1f, 0x47, 0x73, 0x7b, 0xdb, 0x1b, 0xef, 0x6f, 0xfb, 0xd1, 0x9f, 0x05,
+	0x78, 0x94, 0xab, 0x9d, 0x53, 0xce, 0x89, 0x47, 0xd1, 0xf7, 0xd0, 0x58, 0xa5, 0xc7, 0xb4, 0xbe,
+	0xca, 0xfe, 0x75, 0xcb, 0xf0, 0xb2, 0xc0, 0x73, 0xa8, 0x71, 0x7a, 0x43, 0x99, 0x2f, 0xd6, 0xb2,
+	0x42, 0xad, 0xd3, 0xd1, 0x03, 0x9f, 0x95, 0x19, 0xd1, 0xb3, 0xbf, 0x56, 0xa6, 0x86, 0x37, 0xba,
+	0xc9, 0xa7, 0x73, 0x63, 0x91, 0xde, 0x8a, 0xfc, 0xd3, 0x99, 0xdb, 0xa0, 0xb7, 0xe2, 0xe8, 0x02,
+	0x1e, 0xed, 0xf0, 0x51, 0x07, 0x9e, 0x9c, 0x9b, 0x96, 0xd5, 0x1b, 0x9b, 0x8e, 0x65, 0x5e, 0x9a,
+	0x78, 0x62, 0xbf, 0x71, 0x2e, 0xa6, 0xd6, 0xcc, 0x1c, 0x4c, 0x46, 0x13, 0x73, 0xd8, 0xfe, 0x08,
+	0xd5, 0xa0, 0x34, 0x99, 0x8e, 0x5e, 0xb6, 0x15, 0xa4, 0x42, 0xf5, 0x75, 0x0f, 0x4f, 0x27, 0xd3,
+	0x71, 0xbb, 0x80, 0xea, 0x50, 0x36, 0x31, 0x7e, 0x89, 0xdb, 0xc5, 0xa7, 0x63, 0x68, 0xe4, 0x36,
+	0xed, 0x75, 0x44, 0xd1, 0x67, 0xf0, 0xa9, 0x8d, 0x7b, 0x53, 0x6b, 0x64, 0x62, 0xc7, 0x7e, 0x33,
+	0x33, 0x77, 0x04, 0xeb, 0x50, 0xee, 0xf7, 0xec, 0xc1, 0x4f, 0x6d, 0x05, 0x35, 0xa1, 0x6e, 0xd9,
+	0xd8, 0xec, 0x9d, 0x4b, 0xcd, 0xa7, 0x1c, 0x9a, 0xef, 0xb5, 0x11, 0x7d, 0x0e, 0x87, 0x1b, 0x25,
+	0xcb, 0xee, 0xd9, 0xbb, 0x52, 0x2a, 0x54, 0x67, 0xe6, 0x74, 0x98, 0x3a, 0x52, 0xa1, 0x8a, 0x2f,
+	0xa6, 0xd2, 0x5e, 0x51, 0x2a, 0x5f, 0x0c, 0x06, 0xa6, 0x39, 0x34, 0x87, 0xed, 0x12, 0x02, 0xa8,
+	0x8c, 0x7a, 0x93, 0x17, 0xe6, 0xb0, 0x5d, 0x4e, 0x52, 0x83, 0xde, 0x74, 0x60, 0xbe, 0x48, 0xc2,
+	0x4a, 0xff, 0x1f, 0x05, 0xbe, 0x5e, 0x84, 0xab, 0xfb, 0xf5, 0xa3, 0xbf, 0x31, 0x38, 0x4b, 0x5a,
+	0x3e, 0x53, 0x7e, 0x79, 0x95, 0xf1, 0xbc, 0x70, 0x49, 0x02, 0x4f, 0x0f, 0x99, 0x67, 0x78, 0x34,
+	0x90, 0x03, 0x61, 0xa4, 0x29, 0x12, 0xf9, 0x7c, 0xcf, 0x0f, 0x80, 0xe7, 0xdb, 0xf1, 0xef, 0x85,
+	0xf2, 0x78, 0xd0, 0x1f, 0xda, 0x7f, 0x14, 0x8e, 0xc7, 0xa9, 0xf6, 0x40, 0x7a, 0xea, 0xfb, 0xde,
+	0x2b, 0xe9, 0x29, 0xd9, 0xa8, 0xdc, 0x86, 0x7e, 0x79, 0xf2, 0x57, 0x8e, 0xbb, 0x92, 0xb8, 0xab,
+	0x1c, 0x77, 0xb5, 0x8d, 0xbb, 0xba, 0x3c, 0x99, 0x57, 0xa4, 0xab, 0x6f, 0xfe, 0x0d, 0x00, 0x00,
+	0xff, 0xff, 0x0d, 0x74, 0xf0, 0x31, 0x95, 0x08, 0x00, 0x00,
 }
diff --git a/googleapis/cloud/dialogflow/v2beta1/agent.pb.go b/googleapis/cloud/dialogflow/v2beta1/agent.pb.go
index fae63a5b1be3537401849c5defeb287ea40216a1..204423db30ea27a2f9e529f99e0c140c66457224 100644
--- a/googleapis/cloud/dialogflow/v2beta1/agent.pb.go
+++ b/googleapis/cloud/dialogflow/v2beta1/agent.pb.go
@@ -367,6 +367,7 @@ type ExportAgentRequest struct {
 	Parent string `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"`
 	// Warning: Exporting agents to a URI is not implemented yet.
 	// This feature is coming soon.
+	//
 	// Optional. The Google Cloud Storage URI to export the agent to.
 	// Note: The URI must start with
 	// "gs://". If left unspecified, the serialized agent is returned inline.
diff --git a/googleapis/cloud/dialogflow/v2beta1/context.pb.go b/googleapis/cloud/dialogflow/v2beta1/context.pb.go
index 6fde89dad0ad40ded0a5fb47c46d1b0ddbb8e3ad..dafb43531e181f1e32d0de40f97a1587847b2181 100644
--- a/googleapis/cloud/dialogflow/v2beta1/context.pb.go
+++ b/googleapis/cloud/dialogflow/v2beta1/context.pb.go
@@ -185,8 +185,7 @@ func (m *CreateContextRequest) GetContext() *Context {
 // The request message for
 // [Contexts.UpdateContext][google.cloud.dialogflow.v2beta1.Contexts.UpdateContext].
 type UpdateContextRequest struct {
-	// Required. The context to update. Format:
-	// `projects/<Project ID>/agent/sessions/<Session ID>/contexts/<Context ID>`.
+	// Required. The context to update.
 	Context *Context `protobuf:"bytes,1,opt,name=context" json:"context,omitempty"`
 	// Optional. The mask to control which fields get updated.
 	UpdateMask *google_protobuf3.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask" json:"update_mask,omitempty"`
diff --git a/googleapis/cloud/dialogflow/v2beta1/intent.pb.go b/googleapis/cloud/dialogflow/v2beta1/intent.pb.go
index 533a24c9a29c309f0df245bb9ae9b019723db2c6..b343de048a05985199069a49ded328657b6641f8 100644
--- a/googleapis/cloud/dialogflow/v2beta1/intent.pb.go
+++ b/googleapis/cloud/dialogflow/v2beta1/intent.pb.go
@@ -991,6 +991,9 @@ func (m *Intent_Message_Text) GetText() []string {
 type Intent_Message_Image struct {
 	// Optional. The public URI to an image file.
 	ImageUri string `protobuf:"bytes,1,opt,name=image_uri,json=imageUri" json:"image_uri,omitempty"`
+	// Optional. A text description of the image to be used for accessibility,
+	// e.g., screen readers.
+	AccessibilityText string `protobuf:"bytes,2,opt,name=accessibility_text,json=accessibilityText" json:"accessibility_text,omitempty"`
 }
 
 func (m *Intent_Message_Image) Reset()                    { *m = Intent_Message_Image{} }
@@ -1005,6 +1008,13 @@ func (m *Intent_Message_Image) GetImageUri() string {
 	return ""
 }
 
+func (m *Intent_Message_Image) GetAccessibilityText() string {
+	if m != nil {
+		return m.AccessibilityText
+	}
+	return ""
+}
+
 // The quick replies response message.
 type Intent_Message_QuickReplies struct {
 	// Optional. The title of the collection of quick replies.
@@ -2376,165 +2386,167 @@ var _Intents_serviceDesc = grpc.ServiceDesc{
 func init() { proto.RegisterFile("google/cloud/dialogflow/v2beta1/intent.proto", fileDescriptor3) }
 
 var fileDescriptor3 = []byte{
-	// 2555 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4d, 0x73, 0x23, 0x47,
-	0xf9, 0xf7, 0xe8, 0xc5, 0x92, 0x1e, 0xc9, 0xb2, 0xdc, 0xde, 0x6c, 0xb4, 0x93, 0xa4, 0xe2, 0x28,
-	0x2f, 0x7f, 0xc7, 0xff, 0x20, 0x11, 0x25, 0xe4, 0xc5, 0x4b, 0x76, 0x91, 0x6d, 0xd9, 0x16, 0x96,
-	0x2d, 0xed, 0x58, 0xde, 0x65, 0xb7, 0x80, 0xa9, 0x91, 0xd4, 0xd6, 0x0e, 0x1e, 0xcd, 0xcc, 0x4e,
-	0xb7, 0xec, 0x28, 0x90, 0x2a, 0x8a, 0x2a, 0xe0, 0xc0, 0x85, 0x2a, 0x4e, 0x14, 0x37, 0x38, 0x85,
-	0xe2, 0x40, 0xe5, 0xc6, 0x27, 0xa0, 0x38, 0x70, 0xe2, 0x98, 0x03, 0x45, 0x41, 0xf1, 0x19, 0xb8,
-	0x41, 0xf5, 0xcb, 0x48, 0x23, 0x4b, 0x8b, 0x24, 0x7b, 0xe1, 0xc2, 0x6d, 0xfa, 0xe9, 0xee, 0xdf,
-	0xf3, 0xd6, 0xfd, 0x7b, 0xba, 0x5b, 0x82, 0xb7, 0x3a, 0x8e, 0xd3, 0xb1, 0x70, 0xa1, 0x65, 0x39,
-	0xbd, 0x76, 0xa1, 0x6d, 0x1a, 0x96, 0xd3, 0x39, 0xb5, 0x9c, 0x8b, 0xc2, 0x79, 0xb1, 0x89, 0xa9,
-	0xf1, 0x76, 0xc1, 0xb4, 0x29, 0xb6, 0x69, 0xde, 0xf5, 0x1c, 0xea, 0xa0, 0x97, 0xc5, 0xe8, 0x3c,
-	0x1f, 0x9d, 0x1f, 0x8e, 0xce, 0xcb, 0xd1, 0xea, 0x8b, 0x12, 0xce, 0x70, 0xcd, 0x82, 0x61, 0xdb,
-	0x0e, 0x35, 0xa8, 0xe9, 0xd8, 0x44, 0x4c, 0x57, 0xbf, 0x34, 0x4d, 0x59, 0xcb, 0xb1, 0x29, 0xfe,
-	0x58, 0x6a, 0x53, 0x5f, 0x95, 0xc3, 0x2d, 0xc7, 0xee, 0x78, 0x3d, 0xdb, 0x36, 0xed, 0x4e, 0xc1,
-	0x71, 0xb1, 0x37, 0x82, 0xf9, 0x82, 0x1c, 0xc4, 0x5b, 0xcd, 0xde, 0x69, 0x01, 0x77, 0x5d, 0xda,
-	0x97, 0x9d, 0x6b, 0x97, 0x3b, 0x4f, 0x4d, 0x6c, 0xb5, 0xf5, 0xae, 0x41, 0xce, 0xe4, 0x88, 0x17,
-	0x2f, 0x8f, 0x20, 0xd4, 0xeb, 0xb5, 0xa4, 0x05, 0xb9, 0xdf, 0xbf, 0x09, 0x8b, 0x15, 0x1e, 0x00,
-	0x84, 0x20, 0x62, 0x1b, 0x5d, 0x9c, 0x55, 0xd6, 0x94, 0xf5, 0x84, 0xc6, 0xbf, 0xd1, 0x2b, 0x90,
-	0x6a, 0x9b, 0xc4, 0xb5, 0x8c, 0xbe, 0xce, 0xfb, 0x42, 0xbc, 0x2f, 0x29, 0x65, 0x47, 0x6c, 0xc8,
-	0x43, 0x58, 0xba, 0xc0, 0xcd, 0xc7, 0x8e, 0x73, 0xa6, 0x13, 0x6a, 0x50, 0x9c, 0x5d, 0x5c, 0x53,
-	0xd6, 0xd3, 0xc5, 0x77, 0xf3, 0x53, 0x22, 0x99, 0x17, 0x6a, 0xf3, 0x0f, 0xc4, 0xe4, 0x63, 0x36,
-	0x57, 0x4b, 0x5d, 0x04, 0x5a, 0x48, 0x85, 0xb8, 0xeb, 0x99, 0x8e, 0x67, 0xd2, 0x7e, 0x36, 0xbc,
-	0xa6, 0xac, 0x47, 0xb5, 0x41, 0x1b, 0xbd, 0x0c, 0x49, 0x93, 0xe8, 0xa7, 0x86, 0x65, 0x35, 0x8d,
-	0xd6, 0x59, 0x36, 0xb2, 0xa6, 0xac, 0xc7, 0x35, 0x30, 0xc9, 0xae, 0x94, 0xa0, 0x97, 0x00, 0xba,
-	0x96, 0x8e, 0x6d, 0xa3, 0x69, 0xe1, 0x76, 0x36, 0xca, 0xfb, 0x13, 0x5d, 0xab, 0x2c, 0x04, 0x28,
-	0x0f, 0xab, 0xa6, 0xed, 0xf6, 0xa8, 0x2e, 0x33, 0xc2, 0xfd, 0x23, 0xd9, 0xd8, 0x5a, 0x78, 0x3d,
-	0xa1, 0xad, 0xf0, 0xae, 0x6d, 0xd1, 0xc3, 0xbc, 0x24, 0xe8, 0x26, 0x2c, 0xe2, 0x73, 0x6c, 0x53,
-	0x92, 0x8d, 0xf3, 0x21, 0xb2, 0x85, 0x0c, 0xc8, 0x50, 0xcf, 0x30, 0x59, 0xea, 0x74, 0xf7, 0xb1,
-	0x67, 0x10, 0x4c, 0xb2, 0x89, 0xb5, 0xf0, 0x7a, 0xb2, 0xf8, 0xde, 0xac, 0x11, 0x68, 0xc8, 0xf9,
-	0x75, 0x3e, 0x5d, 0x5b, 0xa6, 0x23, 0x6d, 0xae, 0xda, 0x68, 0xb1, 0x15, 0x91, 0x05, 0x1e, 0x7e,
-	0xd9, 0x42, 0xf7, 0x60, 0xd9, 0xe9, 0xd1, 0x80, 0x0f, 0x24, 0x9b, 0xe4, 0x9a, 0xd7, 0xa7, 0x6a,
-	0x96, 0xae, 0x69, 0x69, 0x01, 0x20, 0x9b, 0x04, 0xbd, 0x0e, 0x69, 0x0f, 0x13, 0x1c, 0x40, 0x4c,
-	0xf1, 0xc0, 0x2d, 0x71, 0xe9, 0x60, 0xd8, 0x3d, 0x00, 0xd7, 0xf0, 0x8c, 0x2e, 0xa6, 0xd8, 0x23,
-	0xd9, 0x25, 0xae, 0xf4, 0xed, 0x59, 0xdd, 0xad, 0xfb, 0x33, 0xb5, 0x00, 0x08, 0x3a, 0x80, 0x78,
-	0x17, 0x13, 0x62, 0x74, 0x30, 0xc9, 0xa6, 0x39, 0x60, 0x61, 0x56, 0xc0, 0x43, 0x31, 0x4f, 0x1b,
-	0x00, 0xa0, 0x73, 0x50, 0xdb, 0xf8, 0xd4, 0xe8, 0x59, 0x54, 0xf7, 0x30, 0x71, 0x1d, 0x9b, 0x60,
-	0xdd, 0xb5, 0x0c, 0x7a, 0xea, 0x78, 0x5d, 0x92, 0x5d, 0x5e, 0x0b, 0xaf, 0xa7, 0x8b, 0x1f, 0xcc,
-	0x09, 0x9f, 0xaf, 0x4b, 0x00, 0x2d, 0x2b, 0xb1, 0x35, 0x09, 0xed, 0x77, 0x10, 0xf4, 0x21, 0xdc,
-	0xf2, 0x1c, 0x87, 0xea, 0xa7, 0x8e, 0x65, 0x39, 0x17, 0x3d, 0x57, 0x17, 0xdc, 0x22, 0xf6, 0x4e,
-	0x86, 0x27, 0xef, 0x26, 0x1b, 0xb0, 0x2b, 0xfb, 0x85, 0x06, 0xbe, 0x8d, 0x3e, 0x82, 0x17, 0x5c,
-	0xc3, 0x63, 0x83, 0x27, 0x4e, 0x5e, 0xe1, 0x93, 0xb3, 0x62, 0xc8, 0x84, 0xe9, 0x16, 0xdc, 0xb8,
-	0x3c, 0xcf, 0xb4, 0x4f, 0x9d, 0x2c, 0xe2, 0xa1, 0xdc, 0x9c, 0xd5, 0xd7, 0x51, 0xe4, 0x8a, 0x7d,
-	0xea, 0x68, 0xe8, 0x74, 0x4c, 0xa6, 0xfe, 0x2a, 0x0c, 0xe9, 0xd1, 0x55, 0x3b, 0x91, 0x3d, 0x6a,
-	0x10, 0xa1, 0x7d, 0x57, 0xb0, 0x46, 0xba, 0x78, 0xfb, 0x6a, 0xfb, 0x21, 0xdf, 0xe8, 0xbb, 0x58,
-	0xe3, 0x40, 0xe8, 0x1e, 0x44, 0x5d, 0xc3, 0xa3, 0x24, 0x1b, 0xe6, 0x6e, 0x5d, 0x15, 0xb1, 0x6e,
-	0x78, 0x54, 0x13, 0x48, 0x68, 0x03, 0x56, 0xa8, 0xd9, 0xc5, 0x44, 0x37, 0xda, 0x6d, 0xdc, 0xd6,
-	0x5b, 0x4e, 0xcf, 0xa6, 0x9c, 0x4d, 0xa2, 0xda, 0x32, 0xef, 0x28, 0x31, 0xf9, 0x36, 0x13, 0xab,
-	0x14, 0x22, 0x6c, 0x2a, 0xf3, 0x95, 0xed, 0x03, 0xdf, 0x57, 0xf6, 0xcd, 0xf8, 0x08, 0xdb, 0xd4,
-	0xa4, 0x7d, 0x7d, 0xe0, 0x72, 0x42, 0x03, 0x21, 0x62, 0x1e, 0xa0, 0x1b, 0x10, 0x35, 0x2c, 0xd3,
-	0x20, 0x9c, 0xc9, 0x12, 0x9a, 0x68, 0x30, 0x82, 0xed, 0x11, 0xec, 0xe9, 0x6d, 0x7c, 0x6a, 0xda,
-	0xb8, 0x2d, 0x79, 0x2c, 0xc9, 0x64, 0x3b, 0x42, 0x94, 0x7b, 0x1f, 0x22, 0x12, 0x20, 0xd3, 0x78,
-	0x58, 0x2f, 0xeb, 0x27, 0x47, 0xc7, 0xf5, 0xf2, 0x76, 0x65, 0xb7, 0x52, 0xde, 0xc9, 0x2c, 0xa0,
-	0x24, 0xc4, 0xca, 0xdf, 0x28, 0x1d, 0xd6, 0xab, 0xe5, 0x8c, 0x82, 0x52, 0x10, 0x6f, 0x94, 0x0f,
-	0xeb, 0xd5, 0x52, 0xa3, 0x9c, 0x09, 0xa9, 0x3f, 0x0e, 0x41, 0x62, 0xb0, 0xd9, 0xae, 0x4a, 0xef,
-	0x37, 0x20, 0x7a, 0x6e, 0x58, 0x3d, 0xec, 0x9b, 0xcd, 0x1b, 0xe8, 0x55, 0x58, 0xf2, 0x37, 0x98,
-	0xe8, 0x8d, 0xf0, 0xde, 0x94, 0x14, 0xde, 0xe7, 0x83, 0xde, 0x87, 0x6c, 0x20, 0x24, 0xfa, 0x88,
-	0xa6, 0x28, 0x1f, 0xff, 0xdc, 0x30, 0x3e, 0x3b, 0x01, 0x9d, 0x2f, 0x42, 0xa2, 0x6b, 0xd8, 0x6d,
-	0x83, 0x3a, 0x5e, 0x9f, 0x97, 0x13, 0xc6, 0xdc, 0xbe, 0x00, 0x65, 0x21, 0xe6, 0x7a, 0x4e, 0xd7,
-	0xa5, 0x3e, 0x5b, 0xfb, 0x4d, 0xf4, 0x3c, 0xc4, 0x4c, 0xa2, 0x5b, 0x26, 0xa1, 0xd9, 0x38, 0x9f,
-	0xb5, 0x68, 0x92, 0xaa, 0x49, 0xa8, 0xfa, 0xd7, 0x5b, 0x10, 0x93, 0xdb, 0x18, 0x7d, 0x3d, 0x90,
-	0xbc, 0xe4, 0xec, 0x65, 0xca, 0x67, 0x81, 0x06, 0xfe, 0x98, 0xee, 0x2f, 0xc8, 0xa4, 0x1f, 0x42,
-	0xd4, 0xec, 0x1a, 0x1d, 0x11, 0xb8, 0x64, 0xf1, 0x2b, 0xf3, 0x82, 0x55, 0xd8, 0xe4, 0xfd, 0x05,
-	0x4d, 0xa0, 0xa0, 0x16, 0x2c, 0x3d, 0xe9, 0x99, 0xad, 0x33, 0xdd, 0xc3, 0xae, 0x65, 0x62, 0xb1,
-	0x54, 0x92, 0xc5, 0xaf, 0xce, 0x0b, 0x7b, 0x8f, 0x81, 0x68, 0x02, 0x63, 0x7f, 0x41, 0x4b, 0x3d,
-	0x09, 0xb4, 0x99, 0xff, 0x2d, 0xc3, 0x13, 0x2b, 0xed, 0x0a, 0xfe, 0x6f, 0x1b, 0x5e, 0x9b, 0xf9,
-	0xcf, 0x30, 0xd0, 0x3b, 0x10, 0x73, 0x8d, 0xbe, 0xe5, 0x18, 0xa2, 0xc0, 0x26, 0x8b, 0xcf, 0xfb,
-	0x70, 0xfe, 0x69, 0x23, 0x7f, 0xcc, 0x4f, 0x1b, 0xfb, 0x0b, 0x9a, 0x3f, 0x12, 0x59, 0x90, 0x21,
-	0x66, 0xd7, 0xb5, 0xf0, 0x80, 0x9b, 0x59, 0x22, 0xd9, 0xec, 0xbb, 0xf3, 0x1a, 0x73, 0xcc, 0x71,
-	0x7c, 0x1e, 0x66, 0xbe, 0x2e, 0x93, 0x51, 0x11, 0x7a, 0x04, 0xd0, 0x34, 0x88, 0xd9, 0xd2, 0xb9,
-	0xd3, 0x71, 0xae, 0xe7, 0xc3, 0x79, 0xf5, 0x6c, 0x31, 0x04, 0xe9, 0x79, 0xa2, 0xe9, 0x37, 0x90,
-	0x0e, 0x49, 0xd2, 0xeb, 0x74, 0x30, 0xe1, 0xc7, 0xb5, 0x6c, 0x82, 0x83, 0xdf, 0x9e, 0xdb, 0x89,
-	0x21, 0xc4, 0xfe, 0x82, 0x16, 0x44, 0x44, 0x04, 0x56, 0x2d, 0xd3, 0x3e, 0xd3, 0x9d, 0x1e, 0xd5,
-	0x87, 0x72, 0x7e, 0x0c, 0x48, 0x16, 0x4b, 0xf3, 0x2a, 0xaa, 0x9a, 0xf6, 0x59, 0xad, 0x47, 0x87,
-	0xfa, 0xf6, 0x17, 0xb4, 0x15, 0xeb, 0xb2, 0x10, 0x7d, 0x0b, 0x92, 0x6c, 0x0b, 0xe9, 0x04, 0x5b,
-	0xb8, 0x45, 0xb3, 0x49, 0xae, 0x6c, 0x73, 0x7e, 0x65, 0x84, 0x1e, 0x73, 0x84, 0xfd, 0x05, 0x0d,
-	0xac, 0x41, 0x0b, 0x99, 0xb0, 0xdc, 0x32, 0x3c, 0xa7, 0x47, 0xb0, 0xe5, 0xab, 0x48, 0x71, 0x15,
-	0x77, 0xae, 0xb0, 0x14, 0x39, 0xcc, 0x40, 0x4d, 0xba, 0x35, 0x22, 0x41, 0x0d, 0x88, 0xfb, 0x55,
-	0x5f, 0x9e, 0x4a, 0xaf, 0x5e, 0xf4, 0x07, 0x48, 0xaa, 0x0a, 0x11, 0x46, 0x02, 0x81, 0x2a, 0x10,
-	0xf6, 0xab, 0x80, 0xfa, 0x1a, 0x44, 0xf9, 0x9e, 0x46, 0x2f, 0x40, 0x82, 0xef, 0x69, 0xbd, 0xe7,
-	0x99, 0x92, 0x72, 0xe3, 0x5c, 0x70, 0xe2, 0x99, 0x6a, 0x05, 0x52, 0xc1, 0x2d, 0xca, 0x38, 0x96,
-	0x9a, 0xd4, 0xf2, 0xb9, 0x59, 0x34, 0x18, 0xc7, 0x8e, 0xb2, 0x41, 0x88, 0x2b, 0x1a, 0xd9, 0xcd,
-	0xea, 0xdf, 0x15, 0x88, 0xf0, 0xb5, 0x38, 0x19, 0x43, 0x85, 0x38, 0xe9, 0x35, 0x45, 0x87, 0x20,
-	0xf7, 0x41, 0x7b, 0xd4, 0xc4, 0xf0, 0xa8, 0x89, 0xe8, 0x04, 0x62, 0xcd, 0x1e, 0xa5, 0x6c, 0x59,
-	0x47, 0xe6, 0xab, 0xb5, 0x41, 0xa2, 0xc8, 0x6f, 0x71, 0x0c, 0xcd, 0xc7, 0x52, 0x3f, 0x80, 0x45,
-	0x21, 0x9a, 0x58, 0x43, 0xd9, 0x79, 0xdf, 0x21, 0x94, 0x1f, 0xe8, 0xa5, 0xb5, 0x7e, 0x5b, 0xed,
-	0x42, 0x7a, 0x74, 0xb7, 0xa3, 0xd7, 0x20, 0xcd, 0x0f, 0xee, 0xd4, 0xd1, 0x89, 0x8b, 0x71, 0xeb,
-	0xb1, 0xc4, 0x4a, 0x31, 0x69, 0xc3, 0x39, 0xe6, 0x32, 0xa6, 0x87, 0x90, 0xae, 0x25, 0xf1, 0xf8,
-	0x77, 0xb0, 0xec, 0x71, 0x1b, 0xc2, 0x23, 0x65, 0x8f, 0x25, 0x57, 0xfd, 0x1e, 0x2c, 0x5f, 0x22,
-	0x17, 0x64, 0x4e, 0xe0, 0x2d, 0x85, 0xc7, 0xe6, 0xce, 0xf5, 0x78, 0x6b, 0x8c, 0xb4, 0xd4, 0x3f,
-	0x84, 0x21, 0x31, 0xe0, 0x9c, 0x2b, 0xa4, 0xf6, 0x75, 0x48, 0xb3, 0xa5, 0x6a, 0x50, 0x8a, 0xdb,
-	0x41, 0x17, 0x97, 0x06, 0x52, 0xbe, 0x82, 0x0f, 0xfc, 0xf2, 0x15, 0xb9, 0x46, 0xf9, 0xf2, 0x8b,
-	0xd7, 0xa3, 0xe1, 0x8a, 0x89, 0xf2, 0xa8, 0x7c, 0xed, 0xca, 0x2c, 0x3b, 0xb6, 0x6c, 0x7e, 0xa7,
-	0x0c, 0xd6, 0xcd, 0xe4, 0x60, 0x9c, 0xc3, 0xb2, 0xe3, 0x62, 0x9b, 0x2d, 0x65, 0x5d, 0xde, 0x95,
-	0x44, 0x49, 0x3e, 0xba, 0xae, 0x11, 0xf9, 0x9a, 0x8b, 0xed, 0x13, 0xcf, 0x2c, 0x71, 0x54, 0x6d,
-	0xc9, 0x09, 0x36, 0xd5, 0x57, 0x60, 0x69, 0xa4, 0x1f, 0x65, 0x20, 0x3c, 0xdc, 0xf1, 0xec, 0x53,
-	0xcd, 0x01, 0x04, 0xc8, 0x75, 0xa2, 0xf9, 0xea, 0x19, 0x24, 0x03, 0x55, 0x00, 0x7d, 0x73, 0xb4,
-	0xae, 0x28, 0xf3, 0x9d, 0xe1, 0xc7, 0xeb, 0xca, 0x48, 0x51, 0x51, 0xeb, 0xb0, 0x32, 0x56, 0x09,
-	0xd0, 0x9b, 0x90, 0x69, 0xb3, 0x4f, 0x9b, 0x3f, 0x3d, 0xe8, 0x81, 0x93, 0xe2, 0x72, 0x40, 0xce,
-	0x4f, 0x67, 0xd2, 0xc5, 0xd0, 0xd0, 0xc5, 0x2f, 0x42, 0x00, 0x43, 0xbe, 0x7f, 0x4a, 0x8a, 0x4e,
-	0x20, 0x6a, 0x52, 0xdc, 0x15, 0x34, 0x76, 0x85, 0x5a, 0x3f, 0x54, 0x90, 0xaf, 0x50, 0xdc, 0xd5,
-	0x04, 0x9a, 0xfa, 0x67, 0x05, 0x22, 0xac, 0x8d, 0x34, 0x88, 0xf0, 0x1b, 0x8f, 0x72, 0xb5, 0x62,
-	0x22, 0xa0, 0x19, 0x12, 0xbf, 0xf5, 0x70, 0xac, 0xa1, 0x27, 0xa1, 0xa0, 0x27, 0x6b, 0x90, 0x6c,
-	0x63, 0xd2, 0xf2, 0x4c, 0x97, 0x2f, 0x34, 0x9f, 0x3d, 0x86, 0xa2, 0x67, 0xba, 0xb1, 0xd4, 0x3f,
-	0x86, 0x20, 0x3d, 0x5a, 0xea, 0xd0, 0x43, 0x3f, 0x96, 0x62, 0x69, 0x6c, 0x5f, 0xaf, 0x72, 0xfe,
-	0x8f, 0xc5, 0xf3, 0x0e, 0xa4, 0x47, 0x8d, 0x63, 0x2b, 0xfa, 0x0c, 0xf7, 0xfd, 0x4d, 0x7b, 0x86,
-	0xfb, 0x9c, 0x5c, 0xfb, 0xb6, 0x63, 0xf7, 0xbb, 0x7e, 0xd9, 0x1d, 0xb4, 0x73, 0x3f, 0x51, 0x20,
-	0xee, 0x1f, 0x0b, 0x50, 0x16, 0x6e, 0xb0, 0xeb, 0xd6, 0x6e, 0x4d, 0x3b, 0xbc, 0x74, 0x31, 0x4b,
-	0x41, 0x7c, 0xb7, 0xb4, 0x5d, 0xde, 0xaa, 0xd5, 0x0e, 0x32, 0x0a, 0x4a, 0x40, 0xf4, 0xb8, 0x5a,
-	0xda, 0x3e, 0xc8, 0x84, 0xc4, 0x25, 0xad, 0x5a, 0xde, 0xd3, 0x4a, 0x87, 0x99, 0x30, 0x8a, 0x41,
-	0xf8, 0xa0, 0x72, 0x90, 0x89, 0xf0, 0x11, 0x07, 0x0f, 0xeb, 0xe5, 0x4c, 0x14, 0xc5, 0x21, 0x52,
-	0xad, 0x1c, 0x95, 0x33, 0x8b, 0x4c, 0x78, 0xbf, 0xb2, 0x55, 0xd6, 0x32, 0x31, 0xf4, 0x1c, 0xac,
-	0x94, 0xb6, 0x1b, 0x95, 0xda, 0xd1, 0xb1, 0x5e, 0x3b, 0xd2, 0xf7, 0x6a, 0xb5, 0xbd, 0x6a, 0x39,
-	0x13, 0xdf, 0x4a, 0x40, 0x4c, 0x3e, 0x7b, 0xa8, 0x3f, 0x54, 0x00, 0x8d, 0x5f, 0xe0, 0xd1, 0x97,
-	0xc7, 0x9f, 0x06, 0x02, 0xdb, 0xfb, 0xd2, 0xf5, 0x7e, 0x96, 0xb7, 0x88, 0xd0, 0xbf, 0x7f, 0x8b,
-	0xc8, 0x51, 0x48, 0x05, 0x1f, 0xf5, 0xd0, 0x4b, 0x70, 0xeb, 0x41, 0x79, 0x6b, 0xbf, 0x56, 0x3b,
-	0xd0, 0x8f, 0x1b, 0xa5, 0xc6, 0xe5, 0x1b, 0xec, 0x2d, 0x78, 0x6e, 0xb4, 0xbb, 0x7c, 0x54, 0xda,
-	0xaa, 0x96, 0x77, 0x32, 0x0a, 0xda, 0x80, 0x37, 0x26, 0x76, 0xe9, 0xbb, 0x35, 0x4d, 0x3f, 0xae,
-	0xd6, 0x1a, 0xfa, 0x6e, 0xa5, 0x5a, 0xad, 0x1c, 0xed, 0x65, 0x42, 0xb9, 0x2f, 0x14, 0x40, 0x8c,
-	0x23, 0x84, 0x21, 0x44, 0xc3, 0x4f, 0x7a, 0x98, 0x50, 0x74, 0x13, 0x16, 0x85, 0xa1, 0xd2, 0x5f,
-	0xd9, 0x62, 0xa7, 0x2b, 0xcb, 0xb0, 0x3b, 0x3d, 0x76, 0x00, 0x6a, 0x39, 0x6d, 0xdf, 0xab, 0x94,
-	0x2f, 0xdc, 0x76, 0xda, 0x18, 0x55, 0x21, 0x29, 0x1d, 0x3f, 0x37, 0xf1, 0x05, 0x5f, 0x99, 0xe9,
-	0xe2, 0xff, 0xcf, 0xb8, 0xfa, 0xee, 0x9b, 0xf8, 0x42, 0x03, 0x73, 0xf0, 0xcd, 0x0e, 0x5c, 0x2e,
-	0x53, 0x47, 0xcc, 0x4f, 0xb0, 0x7c, 0x62, 0x88, 0x33, 0xc1, 0xb1, 0xf9, 0x09, 0x0b, 0x12, 0xf0,
-	0x4e, 0xea, 0x9c, 0x61, 0x5b, 0x5e, 0x8f, 0xf9, 0xf0, 0x06, 0x13, 0xe4, 0xbe, 0xaf, 0xc0, 0xea,
-	0x88, 0x77, 0xf2, 0x10, 0x54, 0x82, 0x98, 0xd0, 0xe0, 0x73, 0xc1, 0xff, 0xcd, 0x68, 0x9d, 0xe6,
-	0xcf, 0x43, 0x6f, 0xc0, 0xb2, 0xcd, 0xce, 0x51, 0x01, 0xf5, 0x22, 0x16, 0x4b, 0x4c, 0x5c, 0x1f,
-	0x98, 0xf0, 0x73, 0x05, 0x32, 0x7b, 0x58, 0x5a, 0xe0, 0x87, 0x77, 0xd2, 0xab, 0xc2, 0x7f, 0x3f,
-	0xb4, 0xb9, 0xbf, 0x28, 0xb0, 0xba, 0xed, 0x61, 0x83, 0xe2, 0x51, 0xf3, 0x9e, 0x96, 0xfd, 0xbb,
-	0xb0, 0x28, 0x66, 0xcb, 0x63, 0xc2, 0xcc, 0x51, 0x93, 0xd3, 0xc6, 0x7d, 0x0c, 0x4f, 0xf7, 0x31,
-	0x72, 0x3d, 0x1f, 0x7f, 0x14, 0x82, 0xd5, 0x13, 0xb7, 0x3d, 0xe6, 0xe3, 0xd0, 0x17, 0xe5, 0x19,
-	0xf9, 0x32, 0x29, 0x5f, 0xb7, 0x21, 0xd9, 0xe3, 0xca, 0xf9, 0x6f, 0x0b, 0xf2, 0x65, 0x42, 0x1d,
-	0xbb, 0xee, 0xef, 0x9a, 0xd8, 0x6a, 0x1f, 0x1a, 0xe4, 0x4c, 0x03, 0x31, 0x9c, 0x7d, 0x3f, 0xe3,
-	0x40, 0xbc, 0x09, 0xab, 0x3b, 0xd8, 0xc2, 0x97, 0xe3, 0x30, 0x61, 0x29, 0xe6, 0xfe, 0x19, 0x82,
-	0x5b, 0x5b, 0x06, 0x6d, 0x3d, 0x0e, 0x06, 0x6e, 0x2a, 0x37, 0x6c, 0x40, 0x46, 0x9a, 0xdb, 0x64,
-	0x73, 0xf5, 0xc1, 0x71, 0x87, 0xdd, 0x31, 0x45, 0x8f, 0x00, 0xf5, 0x4c, 0xf4, 0x6d, 0x58, 0x1d,
-	0x19, 0x6b, 0xda, 0x96, 0x69, 0x63, 0x19, 0x9f, 0xb7, 0x66, 0x74, 0x91, 0xa3, 0xb1, 0xdb, 0x78,
-	0x00, 0xbc, 0xc2, 0x81, 0xc6, 0x93, 0x13, 0x99, 0x9e, 0x9c, 0xe8, 0x75, 0x92, 0xb3, 0x78, 0xad,
-	0xe4, 0x6c, 0xa5, 0x21, 0x15, 0x8c, 0x47, 0x4e, 0x07, 0x75, 0x52, 0x02, 0x9e, 0x19, 0x7d, 0xe5,
-	0xce, 0x65, 0x86, 0x83, 0x4b, 0x62, 0x6a, 0x86, 0x03, 0x7a, 0x43, 0x57, 0xd4, 0x5b, 0x87, 0x64,
-	0x20, 0x79, 0xcf, 0xc0, 0x93, 0x8d, 0xbb, 0x00, 0x95, 0x60, 0xb5, 0x78, 0xbe, 0x72, 0xd4, 0x28,
-	0x1f, 0x35, 0xf4, 0xfb, 0x95, 0xf2, 0x83, 0x4b, 0x35, 0xf3, 0x06, 0x64, 0x82, 0x9d, 0xbb, 0x27,
-	0xd5, 0x6a, 0x46, 0x29, 0x7e, 0x9e, 0x80, 0x98, 0x0c, 0x00, 0xfa, 0x8d, 0x02, 0xc9, 0x40, 0xc1,
-	0x40, 0xef, 0x4c, 0x35, 0x67, 0xbc, 0x78, 0xaa, 0xef, 0xce, 0x37, 0x49, 0x24, 0x35, 0x57, 0xfc,
-	0xc1, 0x9f, 0xfe, 0xf6, 0xb3, 0xd0, 0x5b, 0x68, 0x63, 0xf0, 0xab, 0xe7, 0x77, 0x45, 0xd8, 0x3f,
-	0x72, 0x3d, 0xe7, 0x3b, 0xb8, 0x45, 0x49, 0x61, 0xa3, 0x60, 0x74, 0xb0, 0x4d, 0x3f, 0x2d, 0xf8,
-	0x45, 0xe8, 0x17, 0x0a, 0x24, 0x06, 0xc5, 0x05, 0x4d, 0xff, 0x2d, 0xe9, 0x72, 0x21, 0x52, 0x67,
-	0x0d, 0xf7, 0x24, 0xeb, 0x18, 0x55, 0x8c, 0xd9, 0xe6, 0x9b, 0x56, 0xd8, 0xf8, 0x14, 0x7d, 0xa6,
-	0x40, 0x2a, 0x58, 0x5e, 0xd0, 0xf4, 0xc0, 0x4c, 0xa8, 0x46, 0xb3, 0xdb, 0xb8, 0xc9, 0x6d, 0x7c,
-	0x37, 0x37, 0x47, 0x04, 0x37, 0x7d, 0x36, 0xff, 0xad, 0x02, 0xa9, 0xe0, 0x66, 0x9b, 0xc1, 0xd6,
-	0x09, 0x55, 0x65, 0x76, 0x5b, 0x4b, 0xdc, 0xd6, 0xdb, 0xc5, 0xb7, 0x87, 0xb6, 0xca, 0x5f, 0xd4,
-	0xa7, 0x85, 0x75, 0x60, 0xf2, 0x4f, 0x15, 0x48, 0x05, 0xb7, 0xef, 0x0c, 0x26, 0x4f, 0x28, 0x00,
-	0xea, 0xcd, 0x31, 0xc2, 0x2b, 0x77, 0x5d, 0xda, 0xf7, 0x33, 0xbe, 0x31, 0x4f, 0xc6, 0x3f, 0x57,
-	0x00, 0x8d, 0xf3, 0x16, 0x9a, 0x7e, 0x09, 0x7f, 0x6a, 0xb5, 0x51, 0x5f, 0xf2, 0xe7, 0x06, 0x7e,
-	0xed, 0xcf, 0xd7, 0xfc, 0x5f, 0xfb, 0xfd, 0x38, 0xe6, 0xde, 0x9b, 0x23, 0xe7, 0xcd, 0xa1, 0xb2,
-	0x4d, 0x65, 0x63, 0x68, 0xf4, 0x08, 0x17, 0xce, 0x6a, 0xf4, 0x24, 0x02, 0xfd, 0x8f, 0x19, 0x2d,
-	0x94, 0x6d, 0x2a, 0x1b, 0x5b, 0x9f, 0x29, 0xf0, 0x6a, 0xcb, 0xe9, 0x4e, 0xb3, 0x71, 0x4b, 0xb2,
-	0x6d, 0x9d, 0xe5, 0xb6, 0xae, 0x3c, 0xaa, 0xc8, 0xf1, 0x1d, 0x87, 0x55, 0xc2, 0xbc, 0xe3, 0x75,
-	0x0a, 0x1d, 0x6c, 0xf3, 0xcc, 0x17, 0x44, 0x97, 0xe1, 0x9a, 0xe4, 0xa9, 0x7f, 0xc4, 0xb8, 0x3d,
-	0x14, 0xfd, 0x43, 0x51, 0x7e, 0x19, 0x0a, 0xed, 0xec, 0xfe, 0x3a, 0xf4, 0xf2, 0x9e, 0xc0, 0xdc,
-	0xe6, 0x36, 0xec, 0x0c, 0x6d, 0xb8, 0x2f, 0x26, 0x35, 0x17, 0x39, 0xfe, 0x3b, 0xff, 0x0a, 0x00,
-	0x00, 0xff, 0xff, 0xb5, 0x89, 0xf2, 0x83, 0x54, 0x22, 0x00, 0x00,
+	// 2577 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcd, 0x73, 0x23, 0x47,
+	0xd9, 0xf7, 0xe8, 0xc3, 0x96, 0x1e, 0xc9, 0xb2, 0xdc, 0xde, 0x6c, 0xb4, 0x93, 0xa4, 0xe2, 0x28,
+	0x6f, 0xf2, 0x3a, 0x7e, 0x13, 0xe9, 0x8d, 0x92, 0x37, 0x1f, 0xbb, 0x6f, 0x12, 0x64, 0x5b, 0x5e,
+	0x0b, 0xcb, 0x96, 0x76, 0x2c, 0x6f, 0xd8, 0x14, 0x30, 0x35, 0x92, 0xda, 0xda, 0xc6, 0xa3, 0x99,
+	0xc9, 0x74, 0xcb, 0x1b, 0x05, 0x52, 0x45, 0x51, 0x05, 0x1c, 0xb8, 0x50, 0x70, 0xa2, 0xb8, 0xc1,
+	0x29, 0x14, 0x07, 0x2a, 0x37, 0xfe, 0x04, 0x0e, 0x9c, 0x38, 0xe6, 0x40, 0x51, 0x45, 0xf1, 0x27,
+	0x50, 0xdc, 0xa0, 0xfa, 0x63, 0xa4, 0x91, 0xa5, 0x45, 0x92, 0xbd, 0x70, 0xe1, 0x36, 0xfd, 0x74,
+	0xf7, 0xef, 0xf9, 0xea, 0xfe, 0x3d, 0xdd, 0x2d, 0xc1, 0xab, 0x5d, 0xd7, 0xed, 0xda, 0xb8, 0xd8,
+	0xb6, 0xdd, 0x7e, 0xa7, 0xd8, 0x21, 0x96, 0xed, 0x76, 0xcf, 0x6c, 0xf7, 0x51, 0xf1, 0xa2, 0xd4,
+	0xc2, 0xcc, 0x7a, 0xbd, 0x48, 0x1c, 0x86, 0x1d, 0x56, 0xf0, 0x7c, 0x97, 0xb9, 0xe8, 0x79, 0x39,
+	0xba, 0x20, 0x46, 0x17, 0x46, 0xa3, 0x0b, 0x6a, 0xb4, 0xfe, 0xac, 0x82, 0xb3, 0x3c, 0x52, 0xb4,
+	0x1c, 0xc7, 0x65, 0x16, 0x23, 0xae, 0x43, 0xe5, 0x74, 0xfd, 0xb5, 0x59, 0xca, 0xda, 0xae, 0xc3,
+	0xf0, 0x27, 0x4a, 0x9b, 0xfe, 0xa2, 0x1a, 0x6e, 0xbb, 0x4e, 0xd7, 0xef, 0x3b, 0x0e, 0x71, 0xba,
+	0x45, 0xd7, 0xc3, 0xfe, 0x18, 0xe6, 0x33, 0x6a, 0x90, 0x68, 0xb5, 0xfa, 0x67, 0x45, 0xdc, 0xf3,
+	0xd8, 0x40, 0x75, 0x6e, 0x5e, 0xee, 0x3c, 0x23, 0xd8, 0xee, 0x98, 0x3d, 0x8b, 0x9e, 0xab, 0x11,
+	0xcf, 0x5e, 0x1e, 0x41, 0x99, 0xdf, 0x6f, 0x2b, 0x0b, 0xf2, 0x7f, 0x7d, 0x05, 0x96, 0xab, 0x22,
+	0x00, 0x08, 0x41, 0xcc, 0xb1, 0x7a, 0x38, 0xa7, 0x6d, 0x6a, 0x5b, 0x49, 0x43, 0x7c, 0xa3, 0x17,
+	0x20, 0xdd, 0x21, 0xd4, 0xb3, 0xad, 0x81, 0x29, 0xfa, 0x22, 0xa2, 0x2f, 0xa5, 0x64, 0xc7, 0x7c,
+	0xc8, 0x03, 0x58, 0x7d, 0x84, 0x5b, 0x0f, 0x5d, 0xf7, 0xdc, 0xa4, 0xcc, 0x62, 0x38, 0xb7, 0xbc,
+	0xa9, 0x6d, 0x65, 0x4a, 0x6f, 0x16, 0x66, 0x44, 0xb2, 0x20, 0xd5, 0x16, 0x3e, 0x94, 0x93, 0x4f,
+	0xf8, 0x5c, 0x23, 0xfd, 0x28, 0xd4, 0x42, 0x3a, 0x24, 0x3c, 0x9f, 0xb8, 0x3e, 0x61, 0x83, 0x5c,
+	0x74, 0x53, 0xdb, 0x8a, 0x1b, 0xc3, 0x36, 0x7a, 0x1e, 0x52, 0x84, 0x9a, 0x67, 0x96, 0x6d, 0xb7,
+	0xac, 0xf6, 0x79, 0x2e, 0xb6, 0xa9, 0x6d, 0x25, 0x0c, 0x20, 0x74, 0x5f, 0x49, 0xd0, 0x73, 0x00,
+	0x3d, 0xdb, 0xc4, 0x8e, 0xd5, 0xb2, 0x71, 0x27, 0x17, 0x17, 0xfd, 0xc9, 0x9e, 0x5d, 0x91, 0x02,
+	0x54, 0x80, 0x0d, 0xe2, 0x78, 0x7d, 0x66, 0xaa, 0x8c, 0x08, 0xff, 0x68, 0x6e, 0x65, 0x33, 0xba,
+	0x95, 0x34, 0xd6, 0x45, 0xd7, 0xae, 0xec, 0xe1, 0x5e, 0x52, 0x74, 0x13, 0x96, 0xf1, 0x05, 0x76,
+	0x18, 0xcd, 0x25, 0xc4, 0x10, 0xd5, 0x42, 0x16, 0x64, 0x99, 0x6f, 0x11, 0x9e, 0x3a, 0xd3, 0x7b,
+	0xe8, 0x5b, 0x14, 0xd3, 0x5c, 0x72, 0x33, 0xba, 0x95, 0x2a, 0xbd, 0x35, 0x6f, 0x04, 0x9a, 0x6a,
+	0x7e, 0x43, 0x4c, 0x37, 0xd6, 0xd8, 0x58, 0x5b, 0xa8, 0xb6, 0xda, 0x7c, 0x45, 0xe4, 0x40, 0x84,
+	0x5f, 0xb5, 0xd0, 0x3d, 0x58, 0x73, 0xfb, 0x2c, 0xe4, 0x03, 0xcd, 0xa5, 0x84, 0xe6, 0xad, 0x99,
+	0x9a, 0x95, 0x6b, 0x46, 0x46, 0x02, 0xa8, 0x26, 0x45, 0x2f, 0x41, 0xc6, 0xc7, 0x14, 0x87, 0x10,
+	0xd3, 0x22, 0x70, 0xab, 0x42, 0x3a, 0x1c, 0x76, 0x0f, 0xc0, 0xb3, 0x7c, 0xab, 0x87, 0x19, 0xf6,
+	0x69, 0x6e, 0x55, 0x28, 0x7d, 0x7d, 0x5e, 0x77, 0x1b, 0xc1, 0x4c, 0x23, 0x04, 0x82, 0x0e, 0x21,
+	0xd1, 0xc3, 0x94, 0x5a, 0x5d, 0x4c, 0x73, 0x19, 0x01, 0x58, 0x9c, 0x17, 0xf0, 0x48, 0xce, 0x33,
+	0x86, 0x00, 0xe8, 0x02, 0xf4, 0x0e, 0x3e, 0xb3, 0xfa, 0x36, 0x33, 0x7d, 0x4c, 0x3d, 0xd7, 0xa1,
+	0xd8, 0xf4, 0x6c, 0x8b, 0x9d, 0xb9, 0x7e, 0x8f, 0xe6, 0xd6, 0x36, 0xa3, 0x5b, 0x99, 0xd2, 0x3b,
+	0x0b, 0xc2, 0x17, 0x1a, 0x0a, 0xc0, 0xc8, 0x29, 0x6c, 0x43, 0x41, 0x07, 0x1d, 0x14, 0xbd, 0x0b,
+	0xb7, 0x7c, 0xd7, 0x65, 0xe6, 0x99, 0x6b, 0xdb, 0xee, 0xa3, 0xbe, 0x67, 0x4a, 0x6e, 0x91, 0x7b,
+	0x27, 0x2b, 0x92, 0x77, 0x93, 0x0f, 0xd8, 0x57, 0xfd, 0x52, 0x83, 0xd8, 0x46, 0xef, 0xc1, 0x33,
+	0x9e, 0xe5, 0xf3, 0xc1, 0x53, 0x27, 0xaf, 0x8b, 0xc9, 0x39, 0x39, 0x64, 0xca, 0x74, 0x1b, 0x6e,
+	0x5c, 0x9e, 0x47, 0x9c, 0x33, 0x37, 0x87, 0x44, 0x28, 0x6f, 0xcf, 0xeb, 0xeb, 0x38, 0x72, 0xd5,
+	0x39, 0x73, 0x0d, 0x74, 0x36, 0x21, 0xd3, 0x7f, 0x19, 0x85, 0xcc, 0xf8, 0xaa, 0x9d, 0xca, 0x1e,
+	0x75, 0x88, 0xb1, 0x81, 0x27, 0x59, 0x23, 0x53, 0xba, 0x73, 0xb5, 0xfd, 0x50, 0x68, 0x0e, 0x3c,
+	0x6c, 0x08, 0x20, 0x74, 0x0f, 0xe2, 0x9e, 0xe5, 0x33, 0x9a, 0x8b, 0x0a, 0xb7, 0xae, 0x8a, 0xd8,
+	0xb0, 0x7c, 0x66, 0x48, 0x24, 0xb4, 0x0d, 0xeb, 0x8c, 0xf4, 0x30, 0x35, 0xad, 0x4e, 0x07, 0x77,
+	0xcc, 0xb6, 0xdb, 0x77, 0x98, 0x60, 0x93, 0xb8, 0xb1, 0x26, 0x3a, 0xca, 0x5c, 0xbe, 0xcb, 0xc5,
+	0x3a, 0x83, 0x18, 0x9f, 0xca, 0x7d, 0xe5, 0xfb, 0x20, 0xf0, 0x95, 0x7f, 0x73, 0x3e, 0xc2, 0x0e,
+	0x23, 0x6c, 0x60, 0x0e, 0x5d, 0x4e, 0x1a, 0x20, 0x45, 0xdc, 0x03, 0x74, 0x03, 0xe2, 0x96, 0x4d,
+	0x2c, 0x2a, 0x98, 0x2c, 0x69, 0xc8, 0x06, 0x27, 0xd8, 0x3e, 0xc5, 0xbe, 0xd9, 0xc1, 0x67, 0xc4,
+	0xc1, 0x1d, 0xc5, 0x63, 0x29, 0x2e, 0xdb, 0x93, 0xa2, 0xfc, 0xdb, 0x10, 0x53, 0x00, 0xd9, 0xe6,
+	0x83, 0x46, 0xc5, 0x3c, 0x3d, 0x3e, 0x69, 0x54, 0x76, 0xab, 0xfb, 0xd5, 0xca, 0x5e, 0x76, 0x09,
+	0xa5, 0x60, 0xa5, 0xf2, 0xb5, 0xf2, 0x51, 0xa3, 0x56, 0xc9, 0x6a, 0x28, 0x0d, 0x89, 0x66, 0xe5,
+	0xa8, 0x51, 0x2b, 0x37, 0x2b, 0xd9, 0x88, 0xfe, 0xc3, 0x08, 0x24, 0x87, 0x9b, 0xed, 0xaa, 0xf4,
+	0x7e, 0x03, 0xe2, 0x17, 0x96, 0xdd, 0xc7, 0x81, 0xd9, 0xa2, 0x81, 0x5e, 0x84, 0xd5, 0x60, 0x83,
+	0xc9, 0xde, 0x98, 0xe8, 0x4d, 0x2b, 0xe1, 0x7d, 0x31, 0xe8, 0x6d, 0xc8, 0x85, 0x42, 0x62, 0x8e,
+	0x69, 0x8a, 0x8b, 0xf1, 0x4f, 0x8d, 0xe2, 0xb3, 0x17, 0xd2, 0xf9, 0x2c, 0x24, 0x7b, 0x96, 0xd3,
+	0xb1, 0x98, 0xeb, 0x0f, 0x44, 0x39, 0xe1, 0xcc, 0x1d, 0x08, 0x50, 0x0e, 0x56, 0x3c, 0xdf, 0xed,
+	0x79, 0x2c, 0x60, 0xeb, 0xa0, 0x89, 0x9e, 0x86, 0x15, 0x42, 0x4d, 0x9b, 0x50, 0x96, 0x4b, 0x88,
+	0x59, 0xcb, 0x84, 0xd6, 0x08, 0x65, 0xfa, 0x4f, 0x74, 0x58, 0x51, 0xdb, 0x18, 0x7d, 0x35, 0x94,
+	0xbc, 0xd4, 0xfc, 0x65, 0x2a, 0x60, 0x81, 0x26, 0xfe, 0x84, 0x1d, 0x2c, 0xa9, 0xa4, 0x1f, 0x41,
+	0x9c, 0xf4, 0xac, 0xae, 0x0c, 0x5c, 0xaa, 0xf4, 0x7f, 0x8b, 0x82, 0x55, 0xf9, 0xe4, 0x83, 0x25,
+	0x43, 0xa2, 0xa0, 0x36, 0xac, 0x7e, 0xdc, 0x27, 0xed, 0x73, 0xd3, 0xc7, 0x9e, 0x4d, 0xb0, 0x5c,
+	0x2a, 0xa9, 0xd2, 0xff, 0x2f, 0x0a, 0x7b, 0x8f, 0x83, 0x18, 0x12, 0xe3, 0x60, 0xc9, 0x48, 0x7f,
+	0x1c, 0x6a, 0x73, 0xff, 0xdb, 0x96, 0x2f, 0x57, 0xda, 0x15, 0xfc, 0xdf, 0xb5, 0xfc, 0x0e, 0xf7,
+	0x9f, 0x63, 0xa0, 0x37, 0x60, 0xc5, 0xb3, 0x06, 0xb6, 0x6b, 0xc9, 0x02, 0x9b, 0x2a, 0x3d, 0x1d,
+	0xc0, 0x05, 0xa7, 0x8d, 0xc2, 0x89, 0x38, 0x6d, 0x1c, 0x2c, 0x19, 0xc1, 0x48, 0x64, 0x43, 0x96,
+	0x92, 0x9e, 0x67, 0xe3, 0x21, 0x37, 0xf3, 0x44, 0xf2, 0xd9, 0x1f, 0x2c, 0x6a, 0xcc, 0x89, 0xc0,
+	0x09, 0x78, 0x98, 0xfb, 0xba, 0x46, 0xc7, 0x45, 0xe8, 0x23, 0x80, 0x96, 0x45, 0x49, 0xdb, 0x14,
+	0x4e, 0x27, 0x84, 0x9e, 0x77, 0x17, 0xd5, 0xb3, 0xc3, 0x11, 0x94, 0xe7, 0xc9, 0x56, 0xd0, 0x40,
+	0x26, 0xa4, 0x68, 0xbf, 0xdb, 0xc5, 0x54, 0x1c, 0xd7, 0x72, 0x49, 0x01, 0x7e, 0x67, 0x61, 0x27,
+	0x46, 0x10, 0x07, 0x4b, 0x46, 0x18, 0x11, 0x51, 0xd8, 0xb0, 0x89, 0x73, 0x6e, 0xba, 0x7d, 0x66,
+	0x8e, 0xe4, 0xe2, 0x18, 0x90, 0x2a, 0x95, 0x17, 0x55, 0x54, 0x23, 0xce, 0x79, 0xbd, 0xcf, 0x46,
+	0xfa, 0x0e, 0x96, 0x8c, 0x75, 0xfb, 0xb2, 0x10, 0x7d, 0x03, 0x52, 0x7c, 0x0b, 0x99, 0x14, 0xdb,
+	0xb8, 0xcd, 0x72, 0x29, 0xa1, 0xec, 0xf6, 0xe2, 0xca, 0x28, 0x3b, 0x11, 0x08, 0x07, 0x4b, 0x06,
+	0xd8, 0xc3, 0x16, 0x22, 0xb0, 0xd6, 0xb6, 0x7c, 0xb7, 0x4f, 0xb1, 0x1d, 0xa8, 0x48, 0x0b, 0x15,
+	0xef, 0x5f, 0x61, 0x29, 0x0a, 0x98, 0xa1, 0x9a, 0x4c, 0x7b, 0x4c, 0x82, 0x9a, 0x90, 0x08, 0xaa,
+	0xbe, 0x3a, 0x95, 0x5e, 0xbd, 0xe8, 0x0f, 0x91, 0x74, 0x1d, 0x62, 0x9c, 0x04, 0x42, 0x55, 0x20,
+	0x1a, 0x54, 0x01, 0xfd, 0x04, 0xe2, 0x62, 0x4f, 0xa3, 0x67, 0x20, 0x29, 0xf6, 0xb4, 0xd9, 0xf7,
+	0x89, 0xa2, 0xdc, 0x84, 0x10, 0x9c, 0xfa, 0x04, 0xbd, 0x06, 0xc8, 0x6a, 0xb7, 0x31, 0xa5, 0xa4,
+	0x45, 0x6c, 0xc1, 0x8f, 0x1c, 0x47, 0x92, 0xef, 0xfa, 0x58, 0x0f, 0x57, 0xa4, 0x57, 0x21, 0x1d,
+	0xde, 0xd1, 0x9c, 0x92, 0x19, 0x61, 0x76, 0x40, 0xe5, 0xb2, 0xc1, 0x29, 0x79, 0x9c, 0x3c, 0x22,
+	0xc2, 0xae, 0xb1, 0xcd, 0xaf, 0xff, 0x45, 0x83, 0x98, 0x58, 0xba, 0xd3, 0x31, 0x74, 0x48, 0xd0,
+	0x7e, 0x4b, 0x76, 0x48, 0x73, 0x86, 0xed, 0x71, 0x8f, 0xa2, 0x97, 0x3c, 0x3a, 0x85, 0x95, 0x56,
+	0x9f, 0x31, 0xbe, 0x0b, 0x62, 0x8b, 0x95, 0xe6, 0x30, 0xaf, 0x14, 0x76, 0x04, 0x86, 0x11, 0x60,
+	0xe9, 0xef, 0xc0, 0xb2, 0x14, 0x4d, 0x2d, 0xb9, 0xfc, 0x7a, 0xe0, 0x52, 0x26, 0xce, 0xff, 0xca,
+	0xda, 0xa0, 0xad, 0xf7, 0x20, 0x33, 0x4e, 0x0e, 0xe8, 0xbf, 0x20, 0x23, 0xce, 0xf9, 0xcc, 0x35,
+	0xa9, 0x87, 0x71, 0xfb, 0xa1, 0xc2, 0x4a, 0x73, 0x69, 0xd3, 0x3d, 0x11, 0x32, 0xae, 0x87, 0xd2,
+	0x9e, 0xad, 0xf0, 0xc4, 0x77, 0xb8, 0x4a, 0x0a, 0x1b, 0xa2, 0x63, 0x55, 0x52, 0xa4, 0xe8, 0x3b,
+	0xb0, 0x76, 0x89, 0x8b, 0x10, 0x99, 0x42, 0x73, 0x9a, 0x88, 0xcd, 0xfb, 0xd7, 0xa3, 0xb9, 0x09,
+	0x8e, 0xd3, 0x7f, 0x17, 0x85, 0xe4, 0x90, 0xa2, 0xae, 0x90, 0xda, 0x97, 0x20, 0xc3, 0x57, 0xb6,
+	0xc5, 0x18, 0xee, 0x84, 0x5d, 0x5c, 0x1d, 0x4a, 0xc5, 0x82, 0x3f, 0x0c, 0xaa, 0x5d, 0xec, 0x1a,
+	0xd5, 0x2e, 0xa8, 0x75, 0x1f, 0x8d, 0x56, 0x4c, 0x5c, 0x44, 0xe5, 0x2b, 0x57, 0x26, 0xe5, 0x89,
+	0x65, 0xf3, 0x5b, 0x6d, 0xb8, 0x6e, 0xa6, 0x07, 0xe3, 0x02, 0xd6, 0x5c, 0x0f, 0x3b, 0x7c, 0x29,
+	0x9b, 0xea, 0x6a, 0x25, 0x2b, 0xf8, 0xf1, 0x75, 0x8d, 0x28, 0xd4, 0x3d, 0xec, 0x9c, 0xfa, 0xa4,
+	0x2c, 0x50, 0x8d, 0x55, 0x37, 0xdc, 0xd4, 0x5f, 0x80, 0xd5, 0xb1, 0x7e, 0x94, 0x85, 0xe8, 0x88,
+	0x20, 0xf8, 0xa7, 0x9e, 0x07, 0x08, 0x71, 0xf1, 0x54, 0xf3, 0xf5, 0x73, 0x48, 0x85, 0x8a, 0x06,
+	0xfa, 0xfa, 0x78, 0x19, 0xd2, 0x16, 0x3b, 0xf2, 0x4f, 0x96, 0xa1, 0xb1, 0x1a, 0xa4, 0x37, 0x60,
+	0x7d, 0xa2, 0x70, 0xa0, 0x57, 0x20, 0xdb, 0xe1, 0x9f, 0x8e, 0x78, 0xa9, 0x30, 0x43, 0x07, 0xcb,
+	0xb5, 0x90, 0x5c, 0x1c, 0xe6, 0x94, 0x8b, 0x91, 0x91, 0x8b, 0x5f, 0x46, 0x00, 0x46, 0xe5, 0xe1,
+	0x31, 0x29, 0x3a, 0x85, 0x38, 0x61, 0xb8, 0x27, 0x69, 0xec, 0x0a, 0x47, 0x83, 0x91, 0x82, 0x42,
+	0x95, 0xe1, 0x9e, 0x21, 0xd1, 0xf4, 0x3f, 0x6a, 0x10, 0xe3, 0x6d, 0x64, 0x40, 0x4c, 0x5c, 0x90,
+	0xb4, 0xab, 0xd5, 0x1e, 0x09, 0xcd, 0x91, 0xc4, 0x25, 0x49, 0x60, 0x8d, 0x3c, 0x89, 0x84, 0x3d,
+	0xd9, 0x84, 0x54, 0x07, 0xd3, 0xb6, 0x4f, 0x3c, 0xb1, 0xd0, 0x02, 0xf6, 0x18, 0x89, 0x9e, 0xe8,
+	0xc6, 0xd2, 0x7f, 0x1f, 0x81, 0xcc, 0x78, 0x65, 0x44, 0x0f, 0x82, 0x58, 0xca, 0xa5, 0xb1, 0x7b,
+	0xbd, 0x42, 0xfb, 0x1f, 0x16, 0xcf, 0xf7, 0x21, 0x33, 0x6e, 0x1c, 0x5f, 0xd1, 0xe7, 0x78, 0x10,
+	0x6c, 0xda, 0x73, 0x3c, 0x10, 0xe4, 0x3a, 0x70, 0x5c, 0x67, 0xd0, 0x0b, 0xca, 0xee, 0xb0, 0x9d,
+	0xff, 0x91, 0x06, 0x89, 0xe0, 0x14, 0x81, 0x72, 0x70, 0x83, 0xdf, 0xce, 0xf6, 0xeb, 0xc6, 0xd1,
+	0xa5, 0x7b, 0x5c, 0x1a, 0x12, 0xfb, 0xe5, 0xdd, 0xca, 0x4e, 0xbd, 0x7e, 0x98, 0xd5, 0x50, 0x12,
+	0xe2, 0x27, 0xb5, 0xf2, 0xee, 0x61, 0x36, 0x22, 0xef, 0x74, 0xb5, 0xca, 0x5d, 0xa3, 0x7c, 0x94,
+	0x8d, 0xa2, 0x15, 0x88, 0x1e, 0x56, 0x0f, 0xb3, 0x31, 0x31, 0xe2, 0xf0, 0x41, 0xa3, 0x92, 0x8d,
+	0xa3, 0x04, 0xc4, 0x6a, 0xd5, 0xe3, 0x4a, 0x76, 0x99, 0x0b, 0xef, 0x57, 0x77, 0x2a, 0x46, 0x76,
+	0x05, 0x3d, 0x05, 0xeb, 0xe5, 0xdd, 0x66, 0xb5, 0x7e, 0x7c, 0x62, 0xd6, 0x8f, 0xcd, 0xbb, 0xf5,
+	0xfa, 0xdd, 0x5a, 0x25, 0x9b, 0xd8, 0x49, 0xc2, 0x8a, 0x7a, 0x25, 0xd1, 0xbf, 0xaf, 0x01, 0x9a,
+	0xbc, 0xef, 0xa3, 0xff, 0x9d, 0x7c, 0x49, 0x08, 0x6d, 0xef, 0x4b, 0xaf, 0x01, 0xf3, 0x3c, 0x5d,
+	0x44, 0xfe, 0xf9, 0xd3, 0x45, 0x9e, 0x41, 0x3a, 0xfc, 0x06, 0x88, 0x9e, 0x83, 0x5b, 0x1f, 0x56,
+	0x76, 0x0e, 0xea, 0xf5, 0x43, 0xf3, 0xa4, 0x59, 0x6e, 0x5e, 0xbe, 0xf0, 0xde, 0x82, 0xa7, 0xc6,
+	0xbb, 0x2b, 0xc7, 0xe5, 0x9d, 0x5a, 0x65, 0x2f, 0xab, 0xa1, 0x6d, 0x78, 0x79, 0x6a, 0x97, 0xb9,
+	0x5f, 0x37, 0xcc, 0x93, 0x5a, 0xbd, 0x69, 0xee, 0x57, 0x6b, 0xb5, 0xea, 0xf1, 0xdd, 0x6c, 0x24,
+	0xff, 0xa5, 0x06, 0x88, 0x73, 0x84, 0x34, 0x84, 0x1a, 0xf8, 0xe3, 0x3e, 0xa6, 0x0c, 0xdd, 0x84,
+	0x65, 0x69, 0xa8, 0xf2, 0x57, 0xb5, 0xf8, 0xe9, 0xca, 0xb6, 0x9c, 0x6e, 0x9f, 0x1f, 0x80, 0xda,
+	0x6e, 0x27, 0xf0, 0x2a, 0x1d, 0x08, 0x77, 0xdd, 0x0e, 0x46, 0x35, 0x48, 0x29, 0xc7, 0x2f, 0x08,
+	0x7e, 0x24, 0x56, 0x66, 0xa6, 0xf4, 0x3f, 0x73, 0xae, 0xbe, 0xfb, 0x04, 0x3f, 0x32, 0x80, 0x0c,
+	0xbf, 0xf9, 0x81, 0xcb, 0xe3, 0xea, 0x28, 0xf9, 0x14, 0xab, 0x17, 0x89, 0x04, 0x17, 0x9c, 0x90,
+	0x4f, 0x79, 0x90, 0x40, 0x74, 0x32, 0xf7, 0x1c, 0x3b, 0xea, 0x36, 0x2d, 0x86, 0x37, 0xb9, 0x20,
+	0xff, 0x5d, 0x0d, 0x36, 0xc6, 0xbc, 0x53, 0x87, 0xa0, 0x32, 0xac, 0x48, 0x0d, 0x01, 0x17, 0xfc,
+	0xf7, 0x9c, 0xd6, 0x19, 0xc1, 0x3c, 0xf4, 0x32, 0xac, 0x39, 0xfc, 0x1c, 0x15, 0x52, 0x2f, 0x63,
+	0xb1, 0xca, 0xc5, 0x8d, 0xa1, 0x09, 0x3f, 0xd3, 0x20, 0x7b, 0x17, 0x2b, 0x0b, 0x82, 0xf0, 0x4e,
+	0x7b, 0x84, 0xf8, 0xf7, 0x87, 0x36, 0xff, 0x27, 0x0d, 0x36, 0x76, 0x7d, 0x6c, 0x31, 0x3c, 0x6e,
+	0xde, 0xe3, 0xb2, 0xff, 0x01, 0x2c, 0xcb, 0xd9, 0xea, 0x98, 0x30, 0x77, 0xd4, 0xd4, 0xb4, 0x49,
+	0x1f, 0xa3, 0xb3, 0x7d, 0x8c, 0x5d, 0xcf, 0xc7, 0x1f, 0x44, 0x60, 0xe3, 0xd4, 0xeb, 0x4c, 0xf8,
+	0x38, 0xf2, 0x45, 0x7b, 0x42, 0xbe, 0x4c, 0xcb, 0xd7, 0x1d, 0x48, 0xf5, 0x85, 0x72, 0xf1, 0x53,
+	0x84, 0x7a, 0xc8, 0xd0, 0x27, 0x5e, 0x07, 0xf6, 0x09, 0xb6, 0x3b, 0x47, 0x16, 0x3d, 0x37, 0x40,
+	0x0e, 0xe7, 0xdf, 0x4f, 0x38, 0x10, 0xaf, 0xc0, 0xc6, 0x1e, 0xb6, 0xf1, 0xe5, 0x38, 0x4c, 0x59,
+	0x8a, 0xf9, 0xbf, 0x47, 0xe0, 0xd6, 0x8e, 0xc5, 0xda, 0x0f, 0xc3, 0x81, 0x9b, 0xc9, 0x0d, 0xdb,
+	0x90, 0x55, 0xe6, 0xb6, 0xf8, 0x5c, 0x73, 0x78, 0xdc, 0xe1, 0x57, 0x52, 0xd9, 0x23, 0x41, 0x7d,
+	0x82, 0xbe, 0x09, 0x1b, 0x63, 0x63, 0x89, 0x63, 0x13, 0x07, 0xab, 0xf8, 0xbc, 0x3a, 0xa7, 0x8b,
+	0x02, 0x8d, 0x5f, 0xde, 0x43, 0xe0, 0x55, 0x01, 0x34, 0x99, 0x9c, 0xd8, 0xec, 0xe4, 0xc4, 0xaf,
+	0x93, 0x9c, 0xe5, 0x6b, 0x25, 0x67, 0x27, 0x03, 0xe9, 0x70, 0x3c, 0xf2, 0x26, 0xe8, 0xd3, 0x12,
+	0xf0, 0xc4, 0xe8, 0x2b, 0x7f, 0xa1, 0x32, 0x1c, 0x5e, 0x12, 0x33, 0x33, 0x1c, 0xd2, 0x1b, 0xb9,
+	0xa2, 0xde, 0x06, 0xa4, 0x42, 0xc9, 0x7b, 0x02, 0x9e, 0x6c, 0x7f, 0x00, 0x50, 0x0d, 0x57, 0x8b,
+	0xa7, 0xab, 0xc7, 0xcd, 0xca, 0x71, 0xd3, 0xbc, 0x5f, 0xad, 0x7c, 0x78, 0xa9, 0x66, 0xde, 0x80,
+	0x6c, 0xb8, 0x73, 0xff, 0xb4, 0x56, 0xcb, 0x6a, 0xa5, 0x2f, 0x92, 0xb0, 0xa2, 0x02, 0x80, 0x7e,
+	0xad, 0x41, 0x2a, 0x54, 0x30, 0xd0, 0x1b, 0x33, 0xcd, 0x99, 0x2c, 0x9e, 0xfa, 0x9b, 0x8b, 0x4d,
+	0x92, 0x49, 0xcd, 0x97, 0xbe, 0xf7, 0x87, 0x3f, 0xff, 0x34, 0xf2, 0x2a, 0xda, 0x1e, 0xfe, 0x48,
+	0xfa, 0x6d, 0x19, 0xf6, 0xf7, 0x3c, 0xdf, 0xfd, 0x16, 0x6e, 0x33, 0x5a, 0xdc, 0x2e, 0x5a, 0x5d,
+	0xec, 0xb0, 0xcf, 0x8a, 0x41, 0x11, 0xfa, 0xb9, 0x06, 0xc9, 0x61, 0x71, 0x41, 0xb3, 0x7f, 0x7a,
+	0xba, 0x5c, 0x88, 0xf4, 0x79, 0xc3, 0x3d, 0xcd, 0x3a, 0x4e, 0x15, 0x13, 0xb6, 0x05, 0xa6, 0x15,
+	0xb7, 0x3f, 0x43, 0x9f, 0x6b, 0x90, 0x0e, 0x97, 0x17, 0x34, 0x3b, 0x30, 0x53, 0xaa, 0xd1, 0xfc,
+	0x36, 0xde, 0x16, 0x36, 0xbe, 0x99, 0x5f, 0x20, 0x82, 0xb7, 0x03, 0x36, 0xff, 0x8d, 0x06, 0xe9,
+	0xf0, 0x66, 0x9b, 0xc3, 0xd6, 0x29, 0x55, 0x65, 0x7e, 0x5b, 0xcb, 0xc2, 0xd6, 0x3b, 0xa5, 0xd7,
+	0x47, 0xb6, 0xaa, 0x1f, 0xe0, 0x67, 0x85, 0x75, 0x68, 0xf2, 0x8f, 0x35, 0x48, 0x87, 0xb7, 0xef,
+	0x1c, 0x26, 0x4f, 0x29, 0x00, 0xfa, 0xcd, 0x09, 0xc2, 0xab, 0xf4, 0x3c, 0x36, 0x08, 0x32, 0xbe,
+	0xbd, 0x48, 0xc6, 0xbf, 0xd0, 0x00, 0x4d, 0xf2, 0x16, 0x9a, 0x7d, 0x09, 0x7f, 0x6c, 0xb5, 0xd1,
+	0x9f, 0x0b, 0xe6, 0x86, 0xfe, 0x1c, 0x50, 0xa8, 0x07, 0x7f, 0x0e, 0x08, 0xe2, 0x98, 0x7f, 0x6b,
+	0x81, 0x9c, 0xb7, 0x46, 0xca, 0x6e, 0x6b, 0xdb, 0x23, 0xa3, 0xc7, 0xb8, 0x70, 0x5e, 0xa3, 0xa7,
+	0x11, 0xe8, 0xbf, 0xcc, 0x68, 0xa9, 0xec, 0xb6, 0xb6, 0xbd, 0xf3, 0xb9, 0x06, 0x2f, 0xb6, 0xdd,
+	0xde, 0x2c, 0x1b, 0x77, 0x14, 0xdb, 0x36, 0x78, 0x6e, 0x1b, 0xda, 0x47, 0x55, 0x35, 0xbe, 0xeb,
+	0xf2, 0x4a, 0x58, 0x70, 0xfd, 0x6e, 0xb1, 0x8b, 0x1d, 0x91, 0xf9, 0xa2, 0xec, 0xb2, 0x3c, 0x42,
+	0x1f, 0xfb, 0xbf, 0x8d, 0x3b, 0x23, 0xd1, 0xdf, 0x34, 0xed, 0x17, 0x91, 0xc8, 0xde, 0xfe, 0xaf,
+	0x22, 0xcf, 0xdf, 0x95, 0x98, 0xbb, 0xc2, 0x86, 0xbd, 0x91, 0x0d, 0xf7, 0xe5, 0xa4, 0xd6, 0xb2,
+	0xc0, 0x7f, 0xe3, 0x1f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x83, 0x8c, 0xb5, 0x01, 0x83, 0x22, 0x00,
+	0x00,
 }
diff --git a/googleapis/cloud/dialogflow/v2beta1/session.pb.go b/googleapis/cloud/dialogflow/v2beta1/session.pb.go
index 81ba15e49f5aa7ff959ddcf7ec1b4ec6ca6e9126..fa627cb9a0b4ac287cb48bdb2f870b905e7f519d 100644
--- a/googleapis/cloud/dialogflow/v2beta1/session.pb.go
+++ b/googleapis/cloud/dialogflow/v2beta1/session.pb.go
@@ -468,11 +468,15 @@ type QueryResult struct {
 	// See [Language Support](https://dialogflow.com/docs/reference/language)
 	// for a list of the currently supported language codes.
 	LanguageCode string `protobuf:"bytes,15,opt,name=language_code,json=languageCode" json:"language_code,omitempty"`
-	// The confidence estimate between 0.0 and 1.0. A higher number
+	// The Speech recognition confidence between 0.0 and 1.0. A higher number
 	// indicates an estimated greater likelihood that the recognized words are
 	// correct. The default of 0.0 is a sentinel value indicating that confidence
-	// was not set. This field is populated if natural speech audio was provided
-	// as input.
+	// was not set.
+	//
+	// You should not rely on this field as it isn't guaranteed to be accurate, or
+	// even set. In particular this field isn't set in Webhook calls and for
+	// StreamingDetectIntent since the streaming endpoint has separate confidence
+	// estimates per portion of the audio in StreamingRecognitionResult.
 	SpeechRecognitionConfidence float32 `protobuf:"fixed32,2,opt,name=speech_recognition_confidence,json=speechRecognitionConfidence" json:"speech_recognition_confidence,omitempty"`
 	// The action name from the matched intent.
 	Action string `protobuf:"bytes,3,opt,name=action" json:"action,omitempty"`
@@ -792,11 +796,20 @@ type StreamingRecognitionResult struct {
 	// Transcript text representing the words that the user spoke.
 	// Populated if and only if `event_type` = `RECOGNITION_EVENT_TRANSCRIPT`.
 	Transcript string `protobuf:"bytes,2,opt,name=transcript" json:"transcript,omitempty"`
+	// The default of 0.0 is a sentinel value indicating `confidence` was not set.
 	// If `false`, the `StreamingRecognitionResult` represents an
 	// interim result that may change. If `true`, the recognizer will not return
 	// any further hypotheses about this piece of the audio. May only be populated
 	// for `event_type` = `RECOGNITION_EVENT_TRANSCRIPT`.
 	IsFinal bool `protobuf:"varint,3,opt,name=is_final,json=isFinal" json:"is_final,omitempty"`
+	// The Speech confidence between 0.0 and 1.0 for the current portion of audio.
+	// A higher number indicates an estimated greater likelihood that the
+	// recognized words are correct. The default of 0.0 is a sentinel value
+	// indicating that confidence was not set.
+	//
+	// This field is typically only provided if `is_final` is true and you should
+	// not rely on it being accurate or even set.
+	Confidence float32 `protobuf:"fixed32,4,opt,name=confidence" json:"confidence,omitempty"`
 }
 
 func (m *StreamingRecognitionResult) Reset()                    { *m = StreamingRecognitionResult{} }
@@ -825,6 +838,13 @@ func (m *StreamingRecognitionResult) GetIsFinal() bool {
 	return false
 }
 
+func (m *StreamingRecognitionResult) GetConfidence() float32 {
+	if m != nil {
+		return m.Confidence
+	}
+	return 0
+}
+
 // Instructs the speech recognizer how to process the audio content.
 type InputAudioConfig struct {
 	// Required. Audio encoding of the audio content to process.
@@ -1124,104 +1144,104 @@ var _Sessions_serviceDesc = grpc.ServiceDesc{
 func init() { proto.RegisterFile("google/cloud/dialogflow/v2beta1/session.proto", fileDescriptor4) }
 
 var fileDescriptor4 = []byte{
-	// 1572 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x57, 0x4f, 0x73, 0x1b, 0xb7,
-	0x15, 0xf7, 0x52, 0xd6, 0xbf, 0x47, 0x4a, 0x62, 0x60, 0x27, 0x5e, 0x4b, 0x76, 0xec, 0x32, 0x93,
-	0x29, 0xad, 0xa6, 0x64, 0xac, 0xb6, 0xe9, 0x24, 0x1e, 0xa7, 0xa6, 0xc8, 0x95, 0xc4, 0x19, 0x9a,
-	0x62, 0x40, 0x2a, 0x4e, 0x72, 0xc1, 0x40, 0x4b, 0x70, 0xb5, 0xee, 0x12, 0x58, 0x2d, 0xc0, 0x24,
-	0x4a, 0xa7, 0x3d, 0xf4, 0x2b, 0xf4, 0xd6, 0x99, 0x5e, 0x7a, 0xe9, 0x4c, 0xae, 0xbd, 0xf4, 0x9e,
-	0x8f, 0xd0, 0x73, 0x6f, 0x3d, 0xb6, 0xa7, 0xf6, 0xd0, 0x99, 0x5e, 0x3a, 0x0b, 0x60, 0x49, 0x9a,
-	0x92, 0x43, 0xba, 0xed, 0x29, 0xb7, 0xc5, 0x7b, 0xbf, 0xf7, 0xf0, 0xde, 0xc3, 0x0f, 0xef, 0x61,
-	0xe1, 0x87, 0x81, 0x10, 0x41, 0xc4, 0xaa, 0x7e, 0x24, 0x46, 0xfd, 0x6a, 0x3f, 0xa4, 0x91, 0x08,
-	0x06, 0x91, 0xf8, 0xa2, 0xfa, 0xf9, 0xde, 0x29, 0x53, 0xf4, 0x61, 0x55, 0x32, 0x29, 0x43, 0xc1,
-	0x2b, 0x71, 0x22, 0x94, 0x40, 0xf7, 0x0c, 0xbc, 0xa2, 0xe1, 0x95, 0x09, 0xbc, 0x62, 0xe1, 0xdb,
-	0x77, 0xac, 0x3f, 0x1a, 0x87, 0x55, 0xca, 0xb9, 0x50, 0x54, 0x85, 0x82, 0x4b, 0x63, 0xbe, 0x3d,
-	0x77, 0x37, 0x5f, 0x70, 0xc5, 0xbe, 0x54, 0x16, 0xfe, 0xce, 0x3c, 0x78, 0xc8, 0x15, 0xe3, 0x19,
-	0xfa, 0xfd, 0x05, 0x53, 0x21, 0x8c, 0xab, 0x50, 0x5d, 0x10, 0x75, 0x11, 0x33, 0x6b, 0x9a, 0x45,
-	0xad, 0x57, 0xa7, 0xa3, 0x41, 0x55, 0xaa, 0x64, 0xe4, 0x67, 0x8e, 0x6f, 0x59, 0x6d, 0x12, 0xfb,
-	0x55, 0xa9, 0xa8, 0x1a, 0x65, 0xe9, 0xb8, 0x56, 0x91, 0x7a, 0xaa, 0x46, 0x54, 0x45, 0x3c, 0x30,
-	0x9a, 0xd2, 0x3f, 0x1c, 0xb8, 0xd1, 0x60, 0x8a, 0xf9, 0xaa, 0xa9, 0x43, 0xc4, 0xec, 0x7c, 0xc4,
-	0xa4, 0x42, 0x2e, 0xac, 0xda, 0x28, 0x5c, 0xe7, 0xbe, 0x53, 0x5e, 0xc7, 0xd9, 0x12, 0x75, 0xa1,
-	0x70, 0x3e, 0x62, 0xc9, 0x05, 0x89, 0x69, 0x42, 0x87, 0xd2, 0xcd, 0xdd, 0x77, 0xca, 0xf9, 0xbd,
-	0x77, 0x2b, 0x73, 0x0a, 0x5e, 0xf9, 0x28, 0x35, 0xea, 0xa4, 0x36, 0x4c, 0xb1, 0x44, 0xe2, 0xfc,
-	0xf9, 0x58, 0x20, 0x51, 0x0b, 0xcc, 0x92, 0x84, 0x3c, 0x1e, 0x29, 0x77, 0x49, 0xfb, 0xfc, 0xc1,
-	0x62, 0x3e, 0x9b, 0xa9, 0x09, 0x86, 0xf3, 0xf1, 0x37, 0xba, 0x07, 0x79, 0xed, 0x87, 0xd0, 0x51,
-	0x3f, 0x14, 0xee, 0xf2, 0x7d, 0xa7, 0x5c, 0xc0, 0xa0, 0x45, 0xb5, 0x54, 0x52, 0xfa, 0xc6, 0x81,
-	0x9b, 0x2f, 0x66, 0x2d, 0x63, 0xc1, 0x25, 0x4b, 0x2d, 0x13, 0xfb, 0x4d, 0xc2, 0xbe, 0x4d, 0x1d,
-	0x32, 0x51, 0xb3, 0x8f, 0x8e, 0xb3, 0xec, 0x13, 0x26, 0x47, 0x91, 0xb2, 0xd9, 0xbf, 0xb3, 0x58,
-	0xa4, 0x58, 0xdb, 0xd8, 0xcc, 0xcd, 0x02, 0xbd, 0x0f, 0x9b, 0x5f, 0xb0, 0xd3, 0x33, 0x21, 0x7e,
-	0x4e, 0xcc, 0x91, 0xd9, 0xe4, 0x51, 0xe6, 0x32, 0x89, 0xfd, 0x4a, 0x57, 0x6b, 0xf0, 0x86, 0x45,
-	0x9a, 0x65, 0xe9, 0x6f, 0x39, 0xd8, 0x9a, 0xa9, 0x2a, 0xda, 0x81, 0x75, 0x15, 0x0e, 0x19, 0xf9,
-	0x4a, 0x70, 0x66, 0xc3, 0x5f, 0x4b, 0x05, 0x9f, 0x09, 0xce, 0xd0, 0x7b, 0x50, 0x08, 0x98, 0x20,
-	0x91, 0xf0, 0x35, 0xd9, 0x6d, 0xf0, 0x37, 0xb2, 0x9d, 0x34, 0xcf, 0x5a, 0x54, 0xb5, 0x78, 0x80,
-	0xf3, 0x01, 0x13, 0x2d, 0x8b, 0x43, 0x0d, 0x58, 0xb3, 0x7c, 0x4f, 0xa3, 0x5b, 0x2a, 0xe7, 0xf7,
-	0xca, 0x73, 0x13, 0xae, 0x1b, 0x03, 0x3c, 0xb6, 0x44, 0x6f, 0xc3, 0x66, 0xc2, 0x24, 0x53, 0x64,
-	0xec, 0xeb, 0xfa, 0x7d, 0xa7, 0xbc, 0x86, 0x37, 0xb4, 0xb4, 0x9e, 0xc1, 0xfa, 0x70, 0xf3, 0x0a,
-	0xfe, 0x4b, 0x77, 0x59, 0x6f, 0xbc, 0x37, 0x77, 0xe3, 0xae, 0x31, 0xf6, 0xb4, 0x6d, 0xef, 0x22,
-	0x66, 0x18, 0xc9, 0x59, 0x91, 0x44, 0x0f, 0x61, 0x35, 0xa6, 0x17, 0x91, 0xa0, 0x7d, 0x77, 0x45,
-	0x57, 0xe1, 0x56, 0xe6, 0x38, 0xbb, 0x5a, 0x95, 0xae, 0xbe, 0x5a, 0x38, 0xc3, 0x95, 0xfe, 0xe9,
-	0x00, 0x4c, 0x08, 0x87, 0x3e, 0x86, 0x82, 0xa6, 0x57, 0x9a, 0xce, 0x20, 0x0c, 0x74, 0xb1, 0xf3,
-	0x7b, 0x0f, 0xe7, 0xc6, 0xd7, 0x1c, 0xd3, 0xb0, 0xae, 0x0d, 0x8f, 0xae, 0xe1, 0x3c, 0x9d, 0x2c,
-	0xd1, 0x13, 0xb8, 0x9e, 0x16, 0xc2, 0x1e, 0xce, 0xee, 0x5c, 0x7f, 0x3d, 0xf6, 0xa5, 0xd2, 0x3e,
-	0x8f, 0xae, 0x61, 0x6d, 0x89, 0xea, 0xb0, 0xcc, 0x3e, 0x67, 0x7c, 0xf1, 0x6b, 0xe4, 0xa5, 0xe8,
-	0xcc, 0x87, 0xb1, 0xdd, 0x5f, 0x85, 0x65, 0x7d, 0x61, 0x4a, 0x7f, 0x5c, 0x81, 0xfc, 0x14, 0x7b,
-	0xd1, 0x5d, 0x30, 0x57, 0x8d, 0xe8, 0x28, 0x0d, 0xc5, 0xd6, 0xb5, 0x24, 0x8d, 0x04, 0xbd, 0x05,
-	0x1b, 0x11, 0xe5, 0xc1, 0x88, 0x06, 0x8c, 0xf8, 0xa2, 0xcf, 0xdc, 0x2d, 0x8d, 0x28, 0x64, 0xc2,
-	0xba, 0xe8, 0x33, 0xb4, 0x0f, 0x77, 0x65, 0xcc, 0x98, 0x7f, 0x46, 0x12, 0xe6, 0x8b, 0x80, 0x87,
-	0x29, 0xcd, 0x4c, 0x21, 0xfb, 0x8c, 0xfb, 0x4c, 0x27, 0x9f, 0xc3, 0x3b, 0x06, 0x84, 0x27, 0x98,
-	0xfa, 0x18, 0x82, 0xde, 0x80, 0x15, 0xea, 0x6b, 0x1a, 0x2f, 0xe9, 0x1d, 0xec, 0x0a, 0xfd, 0x14,
-	0x20, 0x1e, 0xdf, 0x07, 0x4d, 0xb1, 0x6f, 0x39, 0xdc, 0x29, 0x28, 0x7a, 0x0c, 0x3b, 0x34, 0x8a,
-	0x48, 0xc2, 0xce, 0x47, 0x61, 0xc2, 0xfa, 0xb6, 0xbf, 0x91, 0x38, 0xa5, 0x27, 0x57, 0xba, 0x8b,
-	0xac, 0x61, 0x97, 0x46, 0x11, 0xb6, 0x08, 0xd3, 0xbb, 0x3a, 0x46, 0x8f, 0x1e, 0x40, 0x71, 0x30,
-	0x8a, 0x06, 0x61, 0x14, 0x0d, 0x19, 0x57, 0xa6, 0x3a, 0x2b, 0x3a, 0xb2, 0xad, 0x29, 0xb9, 0xae,
-	0xd1, 0x29, 0xdc, 0x9c, 0x86, 0x0e, 0x99, 0x94, 0x34, 0x60, 0xd2, 0x5d, 0xd5, 0x14, 0xaf, 0x2e,
-	0x40, 0x21, 0x3d, 0x4d, 0x9e, 0x1a, 0x3b, 0x7c, 0x63, 0xca, 0x99, 0x95, 0xe9, 0xdb, 0x36, 0xee,
-	0x2b, 0x62, 0x94, 0xf8, 0xcc, 0x5d, 0xd3, 0xc1, 0x8c, 0x7b, 0x88, 0x16, 0xa2, 0x27, 0xb0, 0x95,
-	0xc1, 0xb2, 0xfb, 0xb0, 0xfe, 0xed, 0x25, 0xcb, 0xdc, 0x76, 0x0c, 0x1c, 0x7d, 0x04, 0x5b, 0x62,
-	0xa4, 0xd2, 0x6e, 0x3b, 0xbe, 0xd7, 0xf0, 0x8a, 0x3d, 0x62, 0xd3, 0x38, 0x18, 0xb7, 0x80, 0x9f,
-	0xc1, 0x8a, 0x19, 0x98, 0x6e, 0x5e, 0xc7, 0xf2, 0xfd, 0x05, 0x2b, 0x82, 0xad, 0x19, 0xfa, 0x10,
-	0x76, 0xcc, 0x17, 0xe9, 0xeb, 0x2e, 0x3f, 0xc3, 0xae, 0x82, 0x66, 0xd7, 0x6d, 0x03, 0x69, 0x64,
-	0x88, 0x29, 0x6e, 0x3d, 0x81, 0xad, 0x7e, 0x48, 0x03, 0x2e, 0xa4, 0x0a, 0x7d, 0x12, 0xf2, 0x81,
-	0x70, 0x37, 0xe7, 0x54, 0x65, 0x82, 0x6f, 0xf2, 0x81, 0x28, 0xfd, 0x21, 0x07, 0x77, 0xba, 0x2a,
-	0x61, 0x74, 0x18, 0xf2, 0xe0, 0x3b, 0x37, 0x60, 0x1f, 0x40, 0x51, 0x86, 0x3c, 0x88, 0x18, 0x19,
-	0x29, 0xc5, 0x12, 0x9a, 0x16, 0xd5, 0x34, 0xf3, 0x2d, 0x23, 0x3f, 0xc9, 0xc4, 0xb3, 0xb3, 0x78,
-	0xe5, 0xd2, 0x2c, 0xfe, 0x53, 0x0e, 0xee, 0xbe, 0xa4, 0x52, 0x8b, 0x0e, 0xe5, 0xe7, 0x80, 0xa6,
-	0xfb, 0xc8, 0x0b, 0xa3, 0xf9, 0xd1, 0xfc, 0x81, 0x91, 0x6d, 0x3e, 0xd5, 0x67, 0xec, 0xa4, 0x7e,
-	0x2d, 0x99, 0x15, 0x5d, 0x7a, 0x00, 0x2c, 0xfd, 0xff, 0x1f, 0x00, 0xd7, 0x17, 0x7d, 0x00, 0xfc,
-	0x2e, 0x07, 0xdb, 0x2f, 0x8f, 0x1e, 0x3d, 0x87, 0x82, 0x6d, 0x2d, 0x7a, 0x84, 0xea, 0xc2, 0x6d,
-	0xee, 0x1d, 0xfe, 0x0f, 0x05, 0xc9, 0x5a, 0x8e, 0x1e, 0xab, 0xf9, 0xe1, 0x64, 0x81, 0xde, 0x04,
-	0x50, 0x09, 0xe5, 0xd2, 0x4f, 0xc2, 0xd8, 0x94, 0x7e, 0x1d, 0x4f, 0x49, 0xd0, 0x6d, 0x58, 0x0b,
-	0x25, 0x19, 0x84, 0x9c, 0x46, 0xba, 0x64, 0x6b, 0x78, 0x35, 0x94, 0x07, 0xe9, 0xb2, 0xf4, 0x09,
-	0xe4, 0xa7, 0xdc, 0xa2, 0x3b, 0xe0, 0x3e, 0xf5, 0xba, 0xdd, 0xda, 0xa1, 0x47, 0x7a, 0x9f, 0x76,
-	0x3c, 0x72, 0xd2, 0xee, 0x76, 0xbc, 0x7a, 0xf3, 0xa0, 0xe9, 0x35, 0x8a, 0xd7, 0xd0, 0x26, 0x40,
-	0x0f, 0xd7, 0xda, 0xdd, 0x3a, 0x6e, 0x76, 0x7a, 0x45, 0x07, 0xed, 0xc0, 0x2d, 0xaf, 0xdd, 0x20,
-	0xc7, 0x07, 0xa4, 0xdb, 0x6c, 0x1f, 0xb6, 0x3c, 0x72, 0xd2, 0xeb, 0x79, 0xb8, 0xd6, 0xae, 0x7b,
-	0xc5, 0x5c, 0xe9, 0x2f, 0x0e, 0x14, 0x67, 0xc7, 0x2d, 0x3a, 0x81, 0x4d, 0x33, 0xb7, 0x19, 0xf7,
-	0x45, 0x3f, 0xe4, 0x81, 0xad, 0x4b, 0x65, 0x6e, 0x5d, 0xb4, 0x17, 0xcf, 0x5a, 0xe1, 0x0d, 0x3a,
-	0xbd, 0x44, 0xbb, 0xf0, 0x9a, 0xa4, 0xc3, 0x38, 0x62, 0x24, 0xa1, 0x8a, 0x91, 0x33, 0x96, 0xa8,
-	0xaf, 0x74, 0x1d, 0x96, 0xf1, 0x96, 0x51, 0x60, 0xaa, 0xd8, 0x51, 0x2a, 0xbe, 0x3c, 0x23, 0x97,
-	0xae, 0x98, 0x91, 0xdf, 0x83, 0x42, 0x7c, 0x96, 0x50, 0xc9, 0xc8, 0x59, 0xc8, 0xf5, 0x63, 0x69,
-	0xa9, 0xbc, 0x8e, 0xf3, 0x46, 0x76, 0x94, 0x8a, 0x4a, 0x0d, 0x58, 0x1f, 0x4f, 0x7f, 0x84, 0xec,
-	0xbb, 0xc1, 0x5c, 0x0f, 0xf3, 0x12, 0xb8, 0xb4, 0x51, 0xee, 0xf2, 0x46, 0xa5, 0x5f, 0x01, 0x4c,
-	0x1e, 0x00, 0xa9, 0x1b, 0x4e, 0x87, 0xd9, 0xdb, 0x51, 0x7f, 0xcf, 0x8c, 0xd4, 0xdc, 0xe2, 0x23,
-	0x75, 0x91, 0x44, 0x77, 0xff, 0xed, 0xc0, 0xc6, 0x0b, 0xa5, 0x45, 0x6f, 0xc2, 0x76, 0xed, 0xa4,
-	0xd1, 0x3c, 0x26, 0x5e, 0xbb, 0x7e, 0xdc, 0x68, 0xb6, 0x0f, 0x67, 0x48, 0x70, 0x07, 0xdc, 0x19,
-	0x7d, 0xab, 0xd9, 0xf6, 0x6a, 0x98, 0x3c, 0x7c, 0xaf, 0xe8, 0xa0, 0x5b, 0x70, 0x63, 0x46, 0x7b,
-	0xd0, 0xaa, 0xd5, 0x8b, 0x39, 0xe4, 0xc2, 0xcd, 0x19, 0xc5, 0xd3, 0x93, 0x56, 0xed, 0x59, 0x71,
-	0x09, 0xbd, 0x01, 0x68, 0x46, 0x53, 0x7b, 0x8a, 0x8b, 0xd7, 0xd1, 0x6d, 0x78, 0xfd, 0xb2, 0x9c,
-	0x3c, 0xdb, 0x2f, 0x2e, 0xa7, 0xc4, 0x9b, 0x51, 0x1d, 0x1f, 0x1e, 0x92, 0xe3, 0xce, 0x49, 0xb7,
-	0xb8, 0x82, 0x1e, 0xc0, 0xdb, 0x33, 0xca, 0x6e, 0xc7, 0xf3, 0x3e, 0x21, 0xcf, 0x9a, 0xbd, 0x23,
-	0x72, 0xe4, 0xd5, 0x1a, 0x1e, 0x26, 0xfb, 0x9f, 0xf6, 0xbc, 0xe2, 0xea, 0xde, 0xdf, 0x73, 0xb0,
-	0x66, 0x9f, 0xac, 0x12, 0x7d, 0xe3, 0x40, 0x61, 0xba, 0x05, 0xa2, 0x1f, 0xcf, 0x25, 0xe5, 0x15,
-	0xb3, 0x65, 0xfb, 0x27, 0xaf, 0x68, 0x65, 0x1a, 0x69, 0xe9, 0xe0, 0xd7, 0x7f, 0xfe, 0xeb, 0x6f,
-	0x72, 0x4f, 0x4a, 0x8f, 0xc6, 0x3f, 0xa2, 0xbf, 0xb0, 0x33, 0xe9, 0x71, 0x9c, 0x88, 0xe7, 0xcc,
-	0x57, 0xb2, 0xba, 0x5b, 0xa5, 0x01, 0xe3, 0x2a, 0xfb, 0x45, 0x95, 0xd5, 0xdd, 0x5f, 0x7e, 0xd0,
-	0x9f, 0x72, 0xf6, 0x81, 0xb3, 0x8b, 0x7e, 0xeb, 0xc0, 0xeb, 0x57, 0x76, 0x74, 0xf4, 0x78, 0xf1,
-	0xde, 0x73, 0x55, 0x5e, 0x1f, 0xfe, 0xb7, 0xe6, 0x26, 0xc1, 0xb2, 0xf3, 0xae, 0xb3, 0xff, 0xb5,
-	0x03, 0x6f, 0xf9, 0x62, 0x38, 0xcf, 0xd3, 0x7e, 0xc1, 0x1e, 0x4a, 0x27, 0xa5, 0x77, 0xc7, 0xf9,
-	0xac, 0x69, 0x0d, 0x02, 0x91, 0x92, 0xb7, 0x22, 0x92, 0xa0, 0x1a, 0x30, 0xae, 0xc9, 0x5f, 0x35,
-	0x2a, 0x1a, 0x87, 0xf2, 0xa5, 0xff, 0xf4, 0x8f, 0x26, 0xa2, 0x7f, 0x39, 0xce, 0xef, 0x73, 0xb9,
-	0xc6, 0xc1, 0xd7, 0xb9, 0x7b, 0x87, 0xc6, 0x67, 0x5d, 0x07, 0xd1, 0x98, 0x04, 0xf1, 0xb1, 0x31,
-	0x3a, 0x5d, 0xd1, 0xfe, 0x7f, 0xf4, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7c, 0x60, 0x03, 0xc7,
-	0xfd, 0x10, 0x00, 0x00,
+	// 1580 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x57, 0x3f, 0x73, 0x1b, 0xc7,
+	0x15, 0xd7, 0x81, 0xff, 0x1f, 0x40, 0x12, 0x5e, 0xc9, 0xd6, 0x89, 0x94, 0x2c, 0x05, 0x1e, 0x4f,
+	0x28, 0xc6, 0x01, 0x2c, 0x26, 0x71, 0xc6, 0xd6, 0xc8, 0x11, 0x08, 0x1c, 0x49, 0xcc, 0x80, 0x20,
+	0xbc, 0x00, 0x2d, 0xdb, 0xcd, 0xce, 0xf2, 0xb0, 0x38, 0x9e, 0x72, 0xd8, 0x3d, 0xde, 0x2e, 0x6c,
+	0xd3, 0x99, 0xa4, 0xc8, 0x57, 0x48, 0x97, 0x32, 0x4d, 0x66, 0xdc, 0xa6, 0x49, 0x93, 0xca, 0x1f,
+	0x21, 0x75, 0xba, 0x94, 0x49, 0x95, 0x14, 0x99, 0x49, 0x93, 0xb9, 0xdd, 0x3d, 0x00, 0x02, 0x29,
+	0x03, 0x4a, 0x52, 0xb9, 0xc3, 0xbe, 0xf7, 0x7b, 0x6f, 0xdf, 0x7b, 0xf7, 0x7b, 0xef, 0x2d, 0xe0,
+	0x87, 0x81, 0x10, 0x41, 0xc4, 0x2a, 0x7e, 0x24, 0x86, 0xbd, 0x4a, 0x2f, 0xa4, 0x91, 0x08, 0xfa,
+	0x91, 0xf8, 0xa2, 0xf2, 0xf9, 0xde, 0x19, 0x53, 0xf4, 0x51, 0x45, 0x32, 0x29, 0x43, 0xc1, 0xcb,
+	0x71, 0x22, 0x94, 0x40, 0xf7, 0x0d, 0xbc, 0xac, 0xe1, 0xe5, 0x31, 0xbc, 0x6c, 0xe1, 0x5b, 0x77,
+	0xad, 0x3f, 0x1a, 0x87, 0x15, 0xca, 0xb9, 0x50, 0x54, 0x85, 0x82, 0x4b, 0x63, 0xbe, 0x35, 0xf3,
+	0x36, 0x5f, 0x70, 0xc5, 0xbe, 0x54, 0x16, 0xfe, 0xce, 0x2c, 0x78, 0xc8, 0x15, 0xe3, 0x19, 0xfa,
+	0xfd, 0x39, 0x53, 0x21, 0x8c, 0xab, 0x50, 0x5d, 0x12, 0x75, 0x19, 0x33, 0x6b, 0x9a, 0x45, 0xad,
+	0x4f, 0x67, 0xc3, 0x7e, 0x45, 0xaa, 0x64, 0xe8, 0x67, 0x8e, 0x6f, 0x5b, 0x6d, 0x12, 0xfb, 0x15,
+	0xa9, 0xa8, 0x1a, 0x66, 0xe9, 0xb8, 0x56, 0x91, 0x7a, 0xaa, 0x44, 0x54, 0x45, 0x3c, 0x30, 0x9a,
+	0xd2, 0x3f, 0x1c, 0xb8, 0x59, 0x67, 0x8a, 0xf9, 0xaa, 0xa1, 0x43, 0xc4, 0xec, 0x62, 0xc8, 0xa4,
+	0x42, 0x2e, 0xac, 0xd8, 0x28, 0x5c, 0xe7, 0x81, 0xb3, 0xb3, 0x86, 0xb3, 0x23, 0xea, 0x40, 0xe1,
+	0x62, 0xc8, 0x92, 0x4b, 0x12, 0xd3, 0x84, 0x0e, 0xa4, 0x9b, 0x7b, 0xe0, 0xec, 0xe4, 0xf7, 0xde,
+	0x2d, 0xcf, 0x28, 0x78, 0xf9, 0xa3, 0xd4, 0xa8, 0x9d, 0xda, 0x30, 0xc5, 0x12, 0x89, 0xf3, 0x17,
+	0x23, 0x81, 0x44, 0x4d, 0x30, 0x47, 0x12, 0xf2, 0x78, 0xa8, 0xdc, 0x05, 0xed, 0xf3, 0x07, 0xf3,
+	0xf9, 0x6c, 0xa4, 0x26, 0x18, 0x2e, 0x46, 0xbf, 0xd1, 0x7d, 0xc8, 0x6b, 0x3f, 0x84, 0x0e, 0x7b,
+	0xa1, 0x70, 0x97, 0x1e, 0x38, 0x3b, 0x05, 0x0c, 0x5a, 0x54, 0x4d, 0x25, 0xa5, 0x6f, 0x1c, 0xb8,
+	0xf5, 0x62, 0xd6, 0x32, 0x16, 0x5c, 0xb2, 0xd4, 0x32, 0xb1, 0xbf, 0x49, 0xd8, 0xb3, 0xa9, 0x43,
+	0x26, 0x6a, 0xf4, 0xd0, 0x49, 0x96, 0x7d, 0xc2, 0xe4, 0x30, 0x52, 0x36, 0xfb, 0x77, 0xe6, 0x8b,
+	0x14, 0x6b, 0x1b, 0x9b, 0xb9, 0x39, 0xa0, 0xf7, 0x61, 0xe3, 0x0b, 0x76, 0x76, 0x2e, 0xc4, 0xcf,
+	0x89, 0xf9, 0x64, 0x36, 0x79, 0x94, 0xb9, 0x4c, 0x62, 0xbf, 0xdc, 0xd1, 0x1a, 0xbc, 0x6e, 0x91,
+	0xe6, 0x58, 0xfa, 0x5b, 0x0e, 0x36, 0xa7, 0xaa, 0x8a, 0xb6, 0x61, 0x4d, 0x85, 0x03, 0x46, 0xbe,
+	0x12, 0x9c, 0xd9, 0xf0, 0x57, 0x53, 0xc1, 0x67, 0x82, 0x33, 0xf4, 0x1e, 0x14, 0x02, 0x26, 0x48,
+	0x24, 0x7c, 0x4d, 0x76, 0x1b, 0xfc, 0xcd, 0xec, 0x26, 0xcd, 0xb3, 0x26, 0x55, 0x4d, 0x1e, 0xe0,
+	0x7c, 0xc0, 0x44, 0xd3, 0xe2, 0x50, 0x1d, 0x56, 0x2d, 0xdf, 0xd3, 0xe8, 0x16, 0x76, 0xf2, 0x7b,
+	0x3b, 0x33, 0x13, 0xae, 0x19, 0x03, 0x3c, 0xb2, 0x44, 0x6f, 0xc3, 0x46, 0xc2, 0x24, 0x53, 0x64,
+	0xe4, 0x6b, 0xf1, 0x81, 0xb3, 0xb3, 0x8a, 0xd7, 0xb5, 0xb4, 0x96, 0xc1, 0x7a, 0x70, 0xeb, 0x1a,
+	0xfe, 0x4b, 0x77, 0x49, 0x5f, 0xbc, 0x37, 0xf3, 0xe2, 0x8e, 0x31, 0xf6, 0xb4, 0x6d, 0xf7, 0x32,
+	0x66, 0x18, 0xc9, 0x69, 0x91, 0x44, 0x8f, 0x60, 0x25, 0xa6, 0x97, 0x91, 0xa0, 0x3d, 0x77, 0x59,
+	0x57, 0xe1, 0x76, 0xe6, 0x38, 0x6b, 0xad, 0x72, 0x47, 0xb7, 0x16, 0xce, 0x70, 0xa5, 0x7f, 0x3a,
+	0x00, 0x63, 0xc2, 0xa1, 0x8f, 0xa1, 0xa0, 0xe9, 0x95, 0xa6, 0xd3, 0x0f, 0x03, 0x5d, 0xec, 0xfc,
+	0xde, 0xa3, 0x99, 0xf1, 0x35, 0x46, 0x34, 0xac, 0x69, 0xc3, 0xa3, 0x1b, 0x38, 0x4f, 0xc7, 0x47,
+	0xf4, 0x14, 0x16, 0xd3, 0x42, 0xd8, 0x8f, 0xb3, 0x3b, 0xd3, 0x5f, 0x97, 0x7d, 0xa9, 0xb4, 0xcf,
+	0xa3, 0x1b, 0x58, 0x5b, 0xa2, 0x1a, 0x2c, 0xb1, 0xcf, 0x19, 0x9f, 0xbf, 0x8d, 0xbc, 0x14, 0x9d,
+	0xf9, 0x30, 0xb6, 0xfb, 0x2b, 0xb0, 0xa4, 0x1b, 0xa6, 0xf4, 0x87, 0x65, 0xc8, 0x4f, 0xb0, 0x17,
+	0xdd, 0x03, 0xd3, 0x6a, 0x44, 0x47, 0x69, 0x28, 0xb6, 0xa6, 0x25, 0x69, 0x24, 0xe8, 0x2d, 0x58,
+	0x8f, 0x28, 0x0f, 0x86, 0x34, 0x60, 0xc4, 0x17, 0x3d, 0xe6, 0x6e, 0x6a, 0x44, 0x21, 0x13, 0xd6,
+	0x44, 0x8f, 0xa1, 0x7d, 0xb8, 0x27, 0x63, 0xc6, 0xfc, 0x73, 0x92, 0x30, 0x5f, 0x04, 0x3c, 0x4c,
+	0x69, 0x66, 0x0a, 0xd9, 0x63, 0xdc, 0x67, 0x3a, 0xf9, 0x1c, 0xde, 0x36, 0x20, 0x3c, 0xc6, 0xd4,
+	0x46, 0x10, 0xf4, 0x06, 0x2c, 0x53, 0x5f, 0xd3, 0x78, 0x41, 0xdf, 0x60, 0x4f, 0xe8, 0xa7, 0x00,
+	0xf1, 0xa8, 0x1f, 0x34, 0xc5, 0xbe, 0xe5, 0xe3, 0x4e, 0x40, 0xd1, 0x13, 0xd8, 0xa6, 0x51, 0x44,
+	0x12, 0x76, 0x31, 0x0c, 0x13, 0xd6, 0xb3, 0xf3, 0x8d, 0xc4, 0x29, 0x3d, 0xb9, 0xd2, 0x53, 0x64,
+	0x15, 0xbb, 0x34, 0x8a, 0xb0, 0x45, 0x98, 0xd9, 0xd5, 0x36, 0x7a, 0xf4, 0x10, 0x8a, 0xfd, 0x61,
+	0xd4, 0x0f, 0xa3, 0x68, 0xc0, 0xb8, 0x32, 0xd5, 0x59, 0xd6, 0x91, 0x6d, 0x4e, 0xc8, 0x75, 0x8d,
+	0xce, 0xe0, 0xd6, 0x24, 0x74, 0xc0, 0xa4, 0xa4, 0x01, 0x93, 0xee, 0x8a, 0xa6, 0x78, 0x65, 0x0e,
+	0x0a, 0xe9, 0x6d, 0x72, 0x6c, 0xec, 0xf0, 0xcd, 0x09, 0x67, 0x56, 0xa6, 0xbb, 0x6d, 0x34, 0x57,
+	0xc4, 0x30, 0xf1, 0x99, 0xbb, 0xaa, 0x83, 0x19, 0xcd, 0x10, 0x2d, 0x44, 0x4f, 0x61, 0x33, 0x83,
+	0x65, 0xfd, 0xb0, 0xf6, 0xed, 0x25, 0xcb, 0xdc, 0xb6, 0x0d, 0x1c, 0x7d, 0x04, 0x9b, 0x62, 0xa8,
+	0xd2, 0x69, 0x3b, 0xea, 0x6b, 0x78, 0xc5, 0x19, 0xb1, 0x61, 0x1c, 0x8c, 0x46, 0xc0, 0xcf, 0x60,
+	0xd9, 0x2c, 0x4c, 0x37, 0xaf, 0x63, 0xf9, 0xfe, 0x9c, 0x15, 0xc1, 0xd6, 0x0c, 0x7d, 0x08, 0xdb,
+	0xe6, 0x17, 0xe9, 0xe9, 0x29, 0x3f, 0xc5, 0xae, 0x82, 0x66, 0xd7, 0x1d, 0x03, 0xa9, 0x67, 0x88,
+	0x09, 0x6e, 0x3d, 0x85, 0xcd, 0x5e, 0x48, 0x03, 0x2e, 0xa4, 0x0a, 0x7d, 0x12, 0xf2, 0xbe, 0x70,
+	0x37, 0x66, 0x54, 0x65, 0x8c, 0x6f, 0xf0, 0xbe, 0x28, 0xfd, 0x3e, 0x07, 0x77, 0x3b, 0x2a, 0x61,
+	0x74, 0x10, 0xf2, 0xe0, 0x3b, 0xb7, 0x60, 0x1f, 0x42, 0x51, 0x86, 0x3c, 0x88, 0x18, 0x19, 0x2a,
+	0xc5, 0x12, 0x9a, 0x16, 0xd5, 0x0c, 0xf3, 0x4d, 0x23, 0x3f, 0xcd, 0xc4, 0xd3, 0xbb, 0x78, 0xf9,
+	0xca, 0x2e, 0xfe, 0x63, 0x0e, 0xee, 0xbd, 0xa4, 0x52, 0xf3, 0x2e, 0xe5, 0xe7, 0x80, 0x26, 0xe7,
+	0xc8, 0x0b, 0xab, 0xf9, 0xf1, 0xec, 0x85, 0x91, 0x5d, 0x3e, 0x31, 0x67, 0xec, 0xa6, 0x7e, 0x2d,
+	0x99, 0x16, 0x5d, 0x79, 0x00, 0x2c, 0xfc, 0xff, 0x1f, 0x00, 0x8b, 0xf3, 0x3e, 0x00, 0xfe, 0x94,
+	0x83, 0xad, 0x97, 0x47, 0x8f, 0x9e, 0x43, 0xc1, 0x8e, 0x16, 0xbd, 0x42, 0x75, 0xe1, 0x36, 0xf6,
+	0x0e, 0xff, 0x87, 0x82, 0x64, 0x23, 0x47, 0xaf, 0xd5, 0xfc, 0x60, 0x7c, 0x40, 0x6f, 0x02, 0xa8,
+	0x84, 0x72, 0xe9, 0x27, 0x61, 0x6c, 0x4a, 0xbf, 0x86, 0x27, 0x24, 0xe8, 0x0e, 0xac, 0x86, 0x92,
+	0xf4, 0x43, 0x4e, 0x23, 0x5d, 0xb2, 0x55, 0xbc, 0x12, 0xca, 0x83, 0xf4, 0x98, 0x9a, 0x4e, 0xf4,
+	0xe6, 0xa2, 0xee, 0xcd, 0x09, 0x49, 0xe9, 0x13, 0xc8, 0x4f, 0x5c, 0x8b, 0xee, 0x82, 0x7b, 0xec,
+	0x75, 0x3a, 0xd5, 0x43, 0x8f, 0x74, 0x3f, 0x6d, 0x7b, 0xe4, 0xb4, 0xd5, 0x69, 0x7b, 0xb5, 0xc6,
+	0x41, 0xc3, 0xab, 0x17, 0x6f, 0xa0, 0x0d, 0x80, 0x2e, 0xae, 0xb6, 0x3a, 0x35, 0xdc, 0x68, 0x77,
+	0x8b, 0x0e, 0xda, 0x86, 0xdb, 0x5e, 0xab, 0x4e, 0x4e, 0x0e, 0x48, 0xa7, 0xd1, 0x3a, 0x6c, 0x7a,
+	0xe4, 0xb4, 0xdb, 0xf5, 0x70, 0xb5, 0x55, 0xf3, 0x8a, 0xb9, 0xd2, 0x5f, 0x1c, 0x28, 0x4e, 0xaf,
+	0x63, 0x74, 0x0a, 0x1b, 0x66, 0xaf, 0x33, 0xee, 0x8b, 0x5e, 0xc8, 0x03, 0x5b, 0xb7, 0xf2, 0xcc,
+	0xba, 0x69, 0x2f, 0x9e, 0xb5, 0xc2, 0xeb, 0x74, 0xf2, 0x88, 0x76, 0xe1, 0x35, 0x49, 0x07, 0x71,
+	0xc4, 0x48, 0x42, 0x15, 0x23, 0xe7, 0x2c, 0x51, 0x5f, 0xe9, 0x3a, 0x2d, 0xe1, 0x4d, 0xa3, 0xc0,
+	0x54, 0xb1, 0xa3, 0x54, 0x7c, 0x75, 0x87, 0x2e, 0x5c, 0xb3, 0x43, 0xbf, 0x07, 0x85, 0xf8, 0x3c,
+	0xa1, 0x92, 0x91, 0xf3, 0x90, 0xeb, 0xc7, 0xd4, 0xc2, 0xce, 0x1a, 0xce, 0x1b, 0xd9, 0x51, 0x2a,
+	0x2a, 0xd5, 0x61, 0x6d, 0xf4, 0x3a, 0x40, 0xc8, 0xbe, 0x2b, 0x4c, 0xfb, 0x98, 0x97, 0xc2, 0x95,
+	0x8b, 0x72, 0x57, 0x2f, 0x2a, 0xfd, 0x0a, 0x60, 0xfc, 0x40, 0x48, 0xdd, 0x70, 0x3a, 0xc8, 0xde,
+	0x96, 0xfa, 0xf7, 0xd4, 0xca, 0xcd, 0xcd, 0xbf, 0x72, 0xe7, 0x49, 0x74, 0xf7, 0xdf, 0x0e, 0xac,
+	0xbf, 0x50, 0x5a, 0xf4, 0x26, 0x6c, 0x55, 0x4f, 0xeb, 0x8d, 0x13, 0xe2, 0xb5, 0x6a, 0x27, 0xf5,
+	0x46, 0xeb, 0x70, 0x8a, 0x04, 0x77, 0xc1, 0x9d, 0xd2, 0x37, 0x1b, 0x2d, 0xaf, 0x8a, 0xc9, 0xa3,
+	0xf7, 0x8a, 0x0e, 0xba, 0x0d, 0x37, 0xa7, 0xb4, 0x07, 0xcd, 0x6a, 0xad, 0x98, 0x43, 0x2e, 0xdc,
+	0x9a, 0x52, 0x1c, 0x9f, 0x36, 0xab, 0xcf, 0x8a, 0x0b, 0xe8, 0x0d, 0x40, 0x53, 0x9a, 0xea, 0x31,
+	0x2e, 0x2e, 0xa2, 0x3b, 0xf0, 0xfa, 0x55, 0x39, 0x79, 0xb6, 0x5f, 0x5c, 0x4a, 0x89, 0x37, 0xa5,
+	0x3a, 0x39, 0x3c, 0x24, 0x27, 0xed, 0xd3, 0x4e, 0x71, 0x19, 0x3d, 0x84, 0xb7, 0xa7, 0x94, 0x9d,
+	0xb6, 0xe7, 0x7d, 0x42, 0x9e, 0x35, 0xba, 0x47, 0xe4, 0xc8, 0xab, 0xd6, 0x3d, 0x4c, 0xf6, 0x3f,
+	0xed, 0x7a, 0xc5, 0x95, 0xbd, 0xbf, 0xe7, 0x60, 0xd5, 0x3e, 0x69, 0x25, 0xfa, 0xc6, 0x81, 0xc2,
+	0xe4, 0x88, 0x44, 0x3f, 0x9e, 0x49, 0xca, 0x6b, 0x76, 0xcf, 0xd6, 0x4f, 0x5e, 0xd1, 0xca, 0x0c,
+	0xda, 0xd2, 0xc1, 0xaf, 0xff, 0xfc, 0xd7, 0xdf, 0xe4, 0x9e, 0x96, 0x1e, 0x8f, 0xfe, 0xa8, 0xfe,
+	0xc2, 0xee, 0xac, 0x27, 0x71, 0x22, 0x9e, 0x33, 0x5f, 0xc9, 0xca, 0x6e, 0x85, 0x06, 0x8c, 0xab,
+	0xec, 0x2f, 0xac, 0xac, 0xec, 0xfe, 0xf2, 0x83, 0xde, 0x84, 0xb3, 0x0f, 0x9c, 0x5d, 0xf4, 0x5b,
+	0x07, 0x5e, 0xbf, 0x76, 0xe2, 0xa3, 0x27, 0xf3, 0xcf, 0xa6, 0xeb, 0xf2, 0xfa, 0xf0, 0xbf, 0x35,
+	0x37, 0x09, 0xee, 0x38, 0xef, 0x3a, 0xfb, 0x5f, 0x3b, 0xf0, 0x96, 0x2f, 0x06, 0xb3, 0x3c, 0xed,
+	0x17, 0xec, 0x47, 0x69, 0xa7, 0xf4, 0x6e, 0x3b, 0x9f, 0x35, 0xac, 0x41, 0x20, 0x52, 0xf2, 0x96,
+	0x45, 0x12, 0x54, 0x02, 0xc6, 0x35, 0xf9, 0x2b, 0x46, 0x45, 0xe3, 0x50, 0xbe, 0xf4, 0x3f, 0xff,
+	0xe3, 0xb1, 0xe8, 0x5f, 0x8e, 0xf3, 0xbb, 0x5c, 0xae, 0x7e, 0xf0, 0x75, 0xee, 0xfe, 0xa1, 0xf1,
+	0x59, 0xd3, 0x41, 0xd4, 0xc7, 0x41, 0x7c, 0x6c, 0x8c, 0xce, 0x96, 0xb5, 0xff, 0x1f, 0xfd, 0x27,
+	0x00, 0x00, 0xff, 0xff, 0x78, 0xce, 0xe5, 0x99, 0x1d, 0x11, 0x00, 0x00,
 }
diff --git a/googleapis/cloud/vision/v1/geometry.pb.go b/googleapis/cloud/vision/v1/geometry.pb.go
index ef01b7cbb90efe47f41d04096e892fcc7125d487..f6812d95e3e943423a69daf71eea937698fd0077 100644
--- a/googleapis/cloud/vision/v1/geometry.pb.go
+++ b/googleapis/cloud/vision/v1/geometry.pb.go
@@ -29,6 +29,7 @@ It has these top-level messages:
 	CropHint
 	CropHintsAnnotation
 	CropHintsParams
+	WebDetectionParams
 	ImageContext
 	AnnotateImageRequest
 	AnnotateImageResponse
diff --git a/googleapis/cloud/vision/v1/image_annotator.pb.go b/googleapis/cloud/vision/v1/image_annotator.pb.go
index d5ed6d63dd3bd25fbbeba7c03206493444205f66..231ac66d31799bf9c87dc90cc1b1add0f7b4615f 100644
--- a/googleapis/cloud/vision/v1/image_annotator.pb.go
+++ b/googleapis/cloud/vision/v1/image_annotator.pb.go
@@ -62,7 +62,7 @@ func (x Likelihood) String() string {
 }
 func (Likelihood) EnumDescriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }
 
-// Type of image feature.
+// Type of Google Cloud Vision API feature to be extracted.
 type Feature_Type int32
 
 const (
@@ -76,14 +76,18 @@ const (
 	Feature_LOGO_DETECTION Feature_Type = 3
 	// Run label detection.
 	Feature_LABEL_DETECTION Feature_Type = 4
-	// Run OCR.
+	// Run text detection / optical character recognition (OCR). Text detection
+	// is optimized for areas of text within a larger image; if the image is
+	// a document, use `DOCUMENT_TEXT_DETECTION` instead.
 	Feature_TEXT_DETECTION Feature_Type = 5
 	// Run dense text document OCR. Takes precedence when both
-	// DOCUMENT_TEXT_DETECTION and TEXT_DETECTION are present.
+	// `DOCUMENT_TEXT_DETECTION` and `TEXT_DETECTION` are present.
 	Feature_DOCUMENT_TEXT_DETECTION Feature_Type = 11
-	// Run computer vision models to compute image safe-search properties.
+	// Run Safe Search to detect potentially unsafe
+	// or undesirable content.
 	Feature_SAFE_SEARCH_DETECTION Feature_Type = 6
-	// Compute a set of image properties, such as the image's dominant colors.
+	// Compute a set of image properties, such as the
+	// image's dominant colors.
 	Feature_IMAGE_PROPERTIES Feature_Type = 7
 	// Run crop hints.
 	Feature_CROP_HINTS Feature_Type = 9
@@ -284,15 +288,19 @@ func (FaceAnnotation_Landmark_Type) EnumDescriptor() ([]byte, []int) {
 	return fileDescriptor1, []int{3, 0, 0}
 }
 
-// Users describe the type of Google Cloud Vision API tasks to perform over
-// images by using *Feature*s. Each Feature indicates a type of image
-// detection task to perform. Features encode the Cloud Vision API
-// vertical to operate on and the number of top-scoring results to return.
+// The type of Google Cloud Vision API detection to perform, and the maximum
+// number of results to return for that type. Multiple `Feature` objects can
+// be specified in the `features` list.
 type Feature struct {
 	// The feature type.
 	Type Feature_Type `protobuf:"varint,1,opt,name=type,enum=google.cloud.vision.v1.Feature_Type" json:"type,omitempty"`
-	// Maximum number of results of this type.
+	// Maximum number of results of this type. Does not apply to
+	// `TEXT_DETECTION`, `DOCUMENT_TEXT_DETECTION`, or `CROP_HINTS`.
 	MaxResults int32 `protobuf:"varint,2,opt,name=max_results,json=maxResults" json:"max_results,omitempty"`
+	// Model to use for the feature.
+	// Supported values: "builtin/stable" (the default if unset) and
+	// "builtin/latest".
+	Model string `protobuf:"bytes,3,opt,name=model" json:"model,omitempty"`
 }
 
 func (m *Feature) Reset()                    { *m = Feature{} }
@@ -314,24 +322,38 @@ func (m *Feature) GetMaxResults() int32 {
 	return 0
 }
 
-// External image source (Google Cloud Storage image location).
+func (m *Feature) GetModel() string {
+	if m != nil {
+		return m.Model
+	}
+	return ""
+}
+
+// External image source (Google Cloud Storage or web URL image location).
 type ImageSource struct {
-	// NOTE: For new code `image_uri` below is preferred.
-	// Google Cloud Storage image URI, which must be in the following form:
-	// `gs://bucket_name/object_name` (for details, see
+	// **Use `image_uri` instead.**
+	//
+	// The Google Cloud Storage  URI of the form
+	// `gs://bucket_name/object_name`. Object versioning is not supported. See
 	// [Google Cloud Storage Request
-	// URIs](https://cloud.google.com/storage/docs/reference-uris)).
-	// NOTE: Cloud Storage object versioning is not supported.
+	// URIs](https://cloud.google.com/storage/docs/reference-uris) for more info.
 	GcsImageUri string `protobuf:"bytes,1,opt,name=gcs_image_uri,json=gcsImageUri" json:"gcs_image_uri,omitempty"`
-	// Image URI which supports:
-	// 1) Google Cloud Storage image URI, which must be in the following form:
-	// `gs://bucket_name/object_name` (for details, see
-	// [Google Cloud Storage Request
-	// URIs](https://cloud.google.com/storage/docs/reference-uris)).
-	// NOTE: Cloud Storage object versioning is not supported.
-	// 2) Publicly accessible image HTTP/HTTPS URL.
-	// This is preferred over the legacy `gcs_image_uri` above. When both
-	// `gcs_image_uri` and `image_uri` are specified, `image_uri` takes
+	// The URI of the source image. Can be either:
+	//
+	// 1. A Google Cloud Storage URI of the form
+	//    `gs://bucket_name/object_name`. Object versioning is not supported. See
+	//    [Google Cloud Storage Request
+	//    URIs](https://cloud.google.com/storage/docs/reference-uris) for more
+	//    info.
+	//
+	// 2. A publicly-accessible image HTTP/HTTPS URL. When fetching images from
+	//    HTTP/HTTPS URLs, Google cannot guarantee that the request will be
+	//    completed. Your request may fail if the specified host denies the
+	//    request (e.g. due to request throttling or DOS prevention), or if Google
+	//    throttles requests to the site for abuse prevention. You should not
+	//    depend on externally-hosted images for production applications.
+	//
+	// When both `gcs_image_uri` and `image_uri` are specified, `image_uri` takes
 	// precedence.
 	ImageUri string `protobuf:"bytes,2,opt,name=image_uri,json=imageUri" json:"image_uri,omitempty"`
 }
@@ -358,12 +380,12 @@ func (m *ImageSource) GetImageUri() string {
 // Client image to perform Google Cloud Vision API tasks over.
 type Image struct {
 	// Image content, represented as a stream of bytes.
-	// Note: as with all `bytes` fields, protobuffers use a pure binary
+	// Note: As with all `bytes` fields, protobuffers use a pure binary
 	// representation, whereas JSON representations use base64.
 	Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
-	// Google Cloud Storage image location. If both `content` and `source`
-	// are provided for an image, `content` takes precedence and is
-	// used to perform the image annotation request.
+	// Google Cloud Storage image location, or publicly-accessible image
+	// URL. If both `content` and `source` are provided for an image, `content`
+	// takes precedence and is used to perform the image annotation request.
 	Source *ImageSource `protobuf:"bytes,2,opt,name=source" json:"source,omitempty"`
 }
 
@@ -547,10 +569,6 @@ func (m *FaceAnnotation) GetHeadwearLikelihood() Likelihood {
 }
 
 // A face-specific landmark (for example, a face feature).
-// Landmark positions may fall outside the bounds of the image
-// if the face is near one or more edges of the image.
-// Therefore it is NOT guaranteed that `0 <= x < width` or
-// `0 <= y < height`.
 type FaceAnnotation_Landmark struct {
 	// Face landmark type.
 	Type FaceAnnotation_Landmark_Type `protobuf:"varint,3,opt,name=type,enum=google.cloud.vision.v1.FaceAnnotation_Landmark_Type" json:"type,omitempty"`
@@ -601,6 +619,8 @@ type Property struct {
 	Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
 	// Value of the property.
 	Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
+	// Value of numeric properties.
+	Uint64Value uint64 `protobuf:"varint,3,opt,name=uint64_value,json=uint64Value" json:"uint64_value,omitempty"`
 }
 
 func (m *Property) Reset()                    { *m = Property{} }
@@ -622,10 +642,18 @@ func (m *Property) GetValue() string {
 	return ""
 }
 
+func (m *Property) GetUint64Value() uint64 {
+	if m != nil {
+		return m.Uint64Value
+	}
+	return 0
+}
+
 // Set of detected entity features.
 type EntityAnnotation struct {
 	// Opaque entity ID. Some IDs may be available in
-	// [Google Knowledge Graph Search API](https://developers.google.com/knowledge-graph/).
+	// [Google Knowledge Graph Search
+	// API](https://developers.google.com/knowledge-graph/).
 	Mid string `protobuf:"bytes,1,opt,name=mid" json:"mid,omitempty"`
 	// The language code for the locale in which the entity textual
 	// `description` is expressed.
@@ -634,6 +662,7 @@ type EntityAnnotation struct {
 	Description string `protobuf:"bytes,3,opt,name=description" json:"description,omitempty"`
 	// Overall score of the result. Range [0, 1].
 	Score float32 `protobuf:"fixed32,4,opt,name=score" json:"score,omitempty"`
+	// **Deprecated. Use `score` instead.**
 	// The accuracy of the entity detection in an image.
 	// For example, for an image in which the "Eiffel Tower" entity is detected,
 	// this field represents the confidence that there is a tower in the query
@@ -645,10 +674,8 @@ type EntityAnnotation struct {
 	// detected distant towering building, even though the confidence that
 	// there is a tower in each image may be the same. Range [0, 1].
 	Topicality float32 `protobuf:"fixed32,6,opt,name=topicality" json:"topicality,omitempty"`
-	// Image region to which this entity belongs. Currently not produced
-	// for `LABEL_DETECTION` features. For `TEXT_DETECTION` (OCR), `boundingPoly`s
-	// are produced for the entire text detected in an image region, followed by
-	// `boundingPoly`s for each word within the detected text.
+	// Image region to which this entity belongs. Not produced
+	// for `LABEL_DETECTION` features.
 	BoundingPoly *BoundingPoly `protobuf:"bytes,7,opt,name=bounding_poly,json=boundingPoly" json:"bounding_poly,omitempty"`
 	// The location information for the detected entity. Multiple
 	// `LocationInfo` elements can be present because one location may
@@ -733,7 +760,9 @@ func (m *EntityAnnotation) GetProperties() []*Property {
 // methods over safe-search verticals (for example, adult, spoof, medical,
 // violence).
 type SafeSearchAnnotation struct {
-	// Represents the adult content likelihood for the image.
+	// Represents the adult content likelihood for the image. Adult content may
+	// contain elements such as nudity, pornographic images or cartoons, or
+	// sexual activities.
 	Adult Likelihood `protobuf:"varint,1,opt,name=adult,enum=google.cloud.vision.v1.Likelihood" json:"adult,omitempty"`
 	// Spoof likelihood. The likelihood that an modification
 	// was made to the image's canonical version to make it appear
@@ -741,8 +770,13 @@ type SafeSearchAnnotation struct {
 	Spoof Likelihood `protobuf:"varint,2,opt,name=spoof,enum=google.cloud.vision.v1.Likelihood" json:"spoof,omitempty"`
 	// Likelihood that this is a medical image.
 	Medical Likelihood `protobuf:"varint,3,opt,name=medical,enum=google.cloud.vision.v1.Likelihood" json:"medical,omitempty"`
-	// Violence likelihood.
+	// Likelihood that this image contains violent content.
 	Violence Likelihood `protobuf:"varint,4,opt,name=violence,enum=google.cloud.vision.v1.Likelihood" json:"violence,omitempty"`
+	// Likelihood that the request image contains racy content. Racy content may
+	// include (but is not limited to) skimpy or sheer clothing, strategically
+	// covered nudity, lewd or provocative poses, or close-ups of sensitive
+	// body areas.
+	Racy Likelihood `protobuf:"varint,9,opt,name=racy,enum=google.cloud.vision.v1.Likelihood" json:"racy,omitempty"`
 }
 
 func (m *SafeSearchAnnotation) Reset()                    { *m = SafeSearchAnnotation{} }
@@ -778,6 +812,13 @@ func (m *SafeSearchAnnotation) GetViolence() Likelihood {
 	return Likelihood_UNKNOWN
 }
 
+func (m *SafeSearchAnnotation) GetRacy() Likelihood {
+	if m != nil {
+		return m.Racy
+	}
+	return Likelihood_UNKNOWN
+}
+
 // Rectangle determined by min and max `LatLng` pairs.
 type LatLongRect struct {
 	// Min lat/long pair.
@@ -919,6 +960,7 @@ func (m *CropHint) GetImportanceFraction() float32 {
 
 // Set of crop hints that are used to generate new crops when serving images.
 type CropHintsAnnotation struct {
+	// Crop hint results.
 	CropHints []*CropHint `protobuf:"bytes,1,rep,name=crop_hints,json=cropHints" json:"crop_hints,omitempty"`
 }
 
@@ -957,6 +999,24 @@ func (m *CropHintsParams) GetAspectRatios() []float32 {
 	return nil
 }
 
+// Parameters for web detection request.
+type WebDetectionParams struct {
+	// Whether to include results derived from the geo information in the image.
+	IncludeGeoResults bool `protobuf:"varint,2,opt,name=include_geo_results,json=includeGeoResults" json:"include_geo_results,omitempty"`
+}
+
+func (m *WebDetectionParams) Reset()                    { *m = WebDetectionParams{} }
+func (m *WebDetectionParams) String() string            { return proto.CompactTextString(m) }
+func (*WebDetectionParams) ProtoMessage()               {}
+func (*WebDetectionParams) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{15} }
+
+func (m *WebDetectionParams) GetIncludeGeoResults() bool {
+	if m != nil {
+		return m.IncludeGeoResults
+	}
+	return false
+}
+
 // Image context and/or feature-specific parameters.
 type ImageContext struct {
 	// lat/long rectangle that specifies the location of the image.
@@ -972,12 +1032,14 @@ type ImageContext struct {
 	LanguageHints []string `protobuf:"bytes,2,rep,name=language_hints,json=languageHints" json:"language_hints,omitempty"`
 	// Parameters for crop hints annotation request.
 	CropHintsParams *CropHintsParams `protobuf:"bytes,4,opt,name=crop_hints_params,json=cropHintsParams" json:"crop_hints_params,omitempty"`
+	// Parameters for web detection.
+	WebDetectionParams *WebDetectionParams `protobuf:"bytes,6,opt,name=web_detection_params,json=webDetectionParams" json:"web_detection_params,omitempty"`
 }
 
 func (m *ImageContext) Reset()                    { *m = ImageContext{} }
 func (m *ImageContext) String() string            { return proto.CompactTextString(m) }
 func (*ImageContext) ProtoMessage()               {}
-func (*ImageContext) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{15} }
+func (*ImageContext) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{16} }
 
 func (m *ImageContext) GetLatLongRect() *LatLongRect {
 	if m != nil {
@@ -1000,6 +1062,13 @@ func (m *ImageContext) GetCropHintsParams() *CropHintsParams {
 	return nil
 }
 
+func (m *ImageContext) GetWebDetectionParams() *WebDetectionParams {
+	if m != nil {
+		return m.WebDetectionParams
+	}
+	return nil
+}
+
 // Request for performing Google Cloud Vision API tasks over a user-provided
 // image, with user-requested features.
 type AnnotateImageRequest struct {
@@ -1014,7 +1083,7 @@ type AnnotateImageRequest struct {
 func (m *AnnotateImageRequest) Reset()                    { *m = AnnotateImageRequest{} }
 func (m *AnnotateImageRequest) String() string            { return proto.CompactTextString(m) }
 func (*AnnotateImageRequest) ProtoMessage()               {}
-func (*AnnotateImageRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{16} }
+func (*AnnotateImageRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{17} }
 
 func (m *AnnotateImageRequest) GetImage() *Image {
 	if m != nil {
@@ -1047,8 +1116,7 @@ type AnnotateImageResponse struct {
 	LogoAnnotations []*EntityAnnotation `protobuf:"bytes,3,rep,name=logo_annotations,json=logoAnnotations" json:"logo_annotations,omitempty"`
 	// If present, label detection has completed successfully.
 	LabelAnnotations []*EntityAnnotation `protobuf:"bytes,4,rep,name=label_annotations,json=labelAnnotations" json:"label_annotations,omitempty"`
-	// If present, text (OCR) detection or document (OCR) text detection has
-	// completed successfully.
+	// If present, text (OCR) detection has completed successfully.
 	TextAnnotations []*EntityAnnotation `protobuf:"bytes,5,rep,name=text_annotations,json=textAnnotations" json:"text_annotations,omitempty"`
 	// If present, text (OCR) detection or document (OCR) text detection has
 	// completed successfully.
@@ -1072,7 +1140,7 @@ type AnnotateImageResponse struct {
 func (m *AnnotateImageResponse) Reset()                    { *m = AnnotateImageResponse{} }
 func (m *AnnotateImageResponse) String() string            { return proto.CompactTextString(m) }
 func (*AnnotateImageResponse) ProtoMessage()               {}
-func (*AnnotateImageResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{17} }
+func (*AnnotateImageResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{18} }
 
 func (m *AnnotateImageResponse) GetFaceAnnotations() []*FaceAnnotation {
 	if m != nil {
@@ -1160,7 +1228,7 @@ type BatchAnnotateImagesRequest struct {
 func (m *BatchAnnotateImagesRequest) Reset()                    { *m = BatchAnnotateImagesRequest{} }
 func (m *BatchAnnotateImagesRequest) String() string            { return proto.CompactTextString(m) }
 func (*BatchAnnotateImagesRequest) ProtoMessage()               {}
-func (*BatchAnnotateImagesRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{18} }
+func (*BatchAnnotateImagesRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{19} }
 
 func (m *BatchAnnotateImagesRequest) GetRequests() []*AnnotateImageRequest {
 	if m != nil {
@@ -1178,7 +1246,7 @@ type BatchAnnotateImagesResponse struct {
 func (m *BatchAnnotateImagesResponse) Reset()                    { *m = BatchAnnotateImagesResponse{} }
 func (m *BatchAnnotateImagesResponse) String() string            { return proto.CompactTextString(m) }
 func (*BatchAnnotateImagesResponse) ProtoMessage()               {}
-func (*BatchAnnotateImagesResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{19} }
+func (*BatchAnnotateImagesResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{20} }
 
 func (m *BatchAnnotateImagesResponse) GetResponses() []*AnnotateImageResponse {
 	if m != nil {
@@ -1204,6 +1272,7 @@ func init() {
 	proto.RegisterType((*CropHint)(nil), "google.cloud.vision.v1.CropHint")
 	proto.RegisterType((*CropHintsAnnotation)(nil), "google.cloud.vision.v1.CropHintsAnnotation")
 	proto.RegisterType((*CropHintsParams)(nil), "google.cloud.vision.v1.CropHintsParams")
+	proto.RegisterType((*WebDetectionParams)(nil), "google.cloud.vision.v1.WebDetectionParams")
 	proto.RegisterType((*ImageContext)(nil), "google.cloud.vision.v1.ImageContext")
 	proto.RegisterType((*AnnotateImageRequest)(nil), "google.cloud.vision.v1.AnnotateImageRequest")
 	proto.RegisterType((*AnnotateImageResponse)(nil), "google.cloud.vision.v1.AnnotateImageResponse")
@@ -1291,148 +1360,154 @@ var _ImageAnnotator_serviceDesc = grpc.ServiceDesc{
 func init() { proto.RegisterFile("google/cloud/vision/v1/image_annotator.proto", fileDescriptor1) }
 
 var fileDescriptor1 = []byte{
-	// 2281 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x59, 0x4b, 0x73, 0x23, 0x49,
-	0xf1, 0x5f, 0xc9, 0x2f, 0x29, 0xf5, 0x6a, 0x97, 0x1f, 0xa3, 0xb1, 0xe7, 0xe1, 0xed, 0xfd, 0xcf,
-	0x1f, 0xc7, 0x30, 0xd8, 0x8c, 0x67, 0x21, 0x96, 0x9d, 0x09, 0x40, 0x92, 0xdb, 0xb6, 0x62, 0x64,
-	0x49, 0x5b, 0x92, 0xd7, 0x6b, 0x20, 0xe8, 0x68, 0xb7, 0x4a, 0x9a, 0x9e, 0x6d, 0x75, 0x35, 0xdd,
-	0xad, 0x19, 0xfb, 0x4a, 0x04, 0x11, 0xdc, 0xb9, 0x73, 0xe4, 0x4e, 0x04, 0x5f, 0x81, 0x03, 0x47,
-	0x62, 0xcf, 0xdc, 0xf8, 0x0c, 0x04, 0x47, 0xa2, 0x1e, 0xdd, 0x2a, 0x69, 0x2c, 0x8f, 0x4c, 0x70,
-	0x52, 0x57, 0x66, 0xfe, 0x7e, 0x59, 0x95, 0x55, 0x59, 0x59, 0x55, 0x82, 0x67, 0x03, 0x4a, 0x07,
-	0x2e, 0xd9, 0xb7, 0x5d, 0x3a, 0xea, 0xed, 0xbf, 0x73, 0x42, 0x87, 0x7a, 0xfb, 0xef, 0x9e, 0xef,
-	0x3b, 0x43, 0x6b, 0x40, 0x4c, 0xcb, 0xf3, 0x68, 0x64, 0x45, 0x34, 0xd8, 0xf3, 0x03, 0x1a, 0x51,
-	0xb4, 0x29, 0xac, 0xf7, 0xb8, 0xf5, 0x9e, 0xb0, 0xde, 0x7b, 0xf7, 0x7c, 0xeb, 0x81, 0x64, 0xb1,
-	0x7c, 0x67, 0x5f, 0x62, 0x1c, 0xea, 0x85, 0x02, 0xb5, 0xf5, 0x64, 0x86, 0x8f, 0x01, 0xa1, 0x43,
-	0x12, 0x05, 0xd7, 0xd2, 0x6c, 0x56, 0x57, 0x22, 0x72, 0x15, 0x99, 0x63, 0x56, 0x69, 0xfd, 0x74,
-	0x86, 0xf5, 0x7b, 0x72, 0x69, 0xf6, 0x48, 0x44, 0x6c, 0xc5, 0xf6, 0x9e, 0xb4, 0x0d, 0x7c, 0x7b,
-	0x3f, 0x8c, 0xac, 0x68, 0x14, 0x4e, 0x29, 0xa2, 0x6b, 0x9f, 0xec, 0xdb, 0xd4, 0x8d, 0x07, 0xba,
-	0x55, 0x56, 0x15, 0xae, 0x15, 0xb9, 0xde, 0x40, 0x68, 0xf4, 0x7f, 0xa4, 0x61, 0xe5, 0x88, 0x58,
-	0xd1, 0x28, 0x20, 0xe8, 0x0b, 0x58, 0x64, 0x06, 0xe5, 0xd4, 0x4e, 0x6a, 0xb7, 0x78, 0xf0, 0x7f,
-	0x7b, 0x37, 0x47, 0x67, 0x4f, 0x9a, 0xef, 0x75, 0xaf, 0x7d, 0x82, 0x39, 0x02, 0x3d, 0x86, 0xdc,
-	0xd0, 0xba, 0x32, 0x03, 0x12, 0x8e, 0xdc, 0x28, 0x2c, 0xa7, 0x77, 0x52, 0xbb, 0x4b, 0x18, 0x86,
-	0xd6, 0x15, 0x16, 0x12, 0xfd, 0x5f, 0x29, 0x58, 0x64, 0xf6, 0x68, 0x1d, 0xb4, 0xee, 0x45, 0xdb,
-	0x30, 0xcf, 0x9a, 0x9d, 0xb6, 0x51, 0xab, 0x1f, 0xd5, 0x8d, 0x43, 0xed, 0x13, 0x84, 0xa0, 0x78,
-	0x54, 0xa9, 0x19, 0xe6, 0xa1, 0xd1, 0x35, 0x6a, 0xdd, 0x7a, 0xab, 0xa9, 0xa5, 0xd0, 0x26, 0xa0,
-	0x46, 0xa5, 0x79, 0x78, 0x5a, 0xc1, 0xaf, 0x15, 0x79, 0x9a, 0xd9, 0x36, 0x5a, 0xc7, 0x2d, 0x45,
-	0xb6, 0x80, 0xd6, 0xa0, 0xd4, 0xa8, 0x54, 0x8d, 0x86, 0x22, 0x5c, 0x64, 0x86, 0x5d, 0xe3, 0x9b,
-	0xae, 0x22, 0x5b, 0x42, 0xdb, 0x70, 0xef, 0xb0, 0x55, 0x3b, 0x3b, 0x35, 0x9a, 0x5d, 0x73, 0x4a,
-	0x99, 0x43, 0xf7, 0x61, 0xa3, 0x53, 0x39, 0x32, 0xcc, 0x8e, 0x51, 0xc1, 0xb5, 0x13, 0x45, 0xb5,
-	0xcc, 0xba, 0x5d, 0x3f, 0xad, 0x1c, 0x1b, 0x66, 0x1b, 0xb7, 0xda, 0x06, 0xee, 0xd6, 0x8d, 0x8e,
-	0xb6, 0x82, 0x8a, 0x00, 0x35, 0xdc, 0x6a, 0x9b, 0x27, 0xf5, 0x66, 0xb7, 0xa3, 0x65, 0xd1, 0x2a,
-	0x14, 0xce, 0x8d, 0xaa, 0x02, 0x04, 0xbd, 0x09, 0xb9, 0x3a, 0x5b, 0x7b, 0x1d, 0x3a, 0x0a, 0x6c,
-	0x82, 0x74, 0x28, 0x0c, 0xec, 0xd0, 0x14, 0xcb, 0x71, 0x14, 0x38, 0x3c, 0xd6, 0x59, 0x9c, 0x1b,
-	0xd8, 0x21, 0x37, 0x3b, 0x0b, 0x1c, 0xb4, 0x0d, 0xd9, 0xb1, 0x3e, 0xcd, 0xf5, 0x19, 0x47, 0x2a,
-	0xf5, 0x5f, 0xc3, 0x12, 0x37, 0x44, 0x65, 0x58, 0xb1, 0xa9, 0x17, 0x11, 0x2f, 0xe2, 0x1c, 0x79,
-	0x1c, 0x37, 0xd1, 0x4b, 0x58, 0x0e, 0xb9, 0x37, 0x0e, 0xce, 0x1d, 0x7c, 0x36, 0x6b, 0x22, 0x95,
-	0x8e, 0x61, 0x09, 0xd1, 0xff, 0x5e, 0x82, 0xe2, 0x91, 0x65, 0x93, 0x4a, 0xb2, 0x40, 0x51, 0x1d,
-	0x0a, 0x97, 0x74, 0xe4, 0xf5, 0x1c, 0x6f, 0x60, 0xfa, 0xd4, 0xbd, 0xe6, 0xfe, 0x72, 0xb3, 0xd7,
-	0x47, 0x55, 0x1a, 0xb7, 0xa9, 0x7b, 0x8d, 0xf3, 0x97, 0x4a, 0x0b, 0x35, 0x41, 0xeb, 0xf7, 0xcc,
-	0x49, 0xb6, 0xf4, 0x1d, 0xd8, 0x8a, 0xfd, 0x9e, 0xda, 0x46, 0xa7, 0x90, 0x75, 0x2d, 0xaf, 0x37,
-	0xb4, 0x82, 0x6f, 0xc3, 0xf2, 0xc2, 0xce, 0xc2, 0x6e, 0xee, 0x60, 0x7f, 0xe6, 0xb2, 0x9d, 0x18,
-	0xd5, 0x5e, 0x43, 0xe2, 0xf0, 0x98, 0x01, 0x3d, 0x04, 0x08, 0xa8, 0xeb, 0x9a, 0x96, 0x37, 0x70,
-	0x49, 0x79, 0x71, 0x27, 0xb5, 0x9b, 0xc6, 0x59, 0x26, 0xa9, 0x30, 0x01, 0x9b, 0x18, 0xdf, 0xf2,
-	0xa4, 0x76, 0x89, 0x6b, 0x33, 0xbe, 0xe5, 0x09, 0xe5, 0x43, 0x80, 0xc8, 0x71, 0x23, 0xa9, 0x5d,
-	0x16, 0x58, 0x26, 0x11, 0xea, 0xe7, 0xb0, 0x9e, 0xa4, 0xb1, 0x69, 0x53, 0xaf, 0xef, 0xf4, 0x88,
-	0x67, 0x93, 0xf2, 0x0a, 0x37, 0x5c, 0x4b, 0x74, 0xb5, 0x44, 0x85, 0x7e, 0x04, 0x9b, 0x71, 0xd7,
-	0x58, 0xb0, 0x14, 0x50, 0x86, 0x83, 0x36, 0x14, 0xad, 0x02, 0xab, 0x43, 0xf1, 0x2d, 0xbd, 0x36,
-	0x5d, 0xe7, 0x5b, 0xe2, 0x3a, 0x6f, 0x28, 0xed, 0x95, 0xb3, 0x3c, 0x9f, 0xf5, 0x59, 0x81, 0x69,
-	0x24, 0x96, 0xb8, 0xf0, 0x96, 0x5e, 0x8f, 0x9b, 0xa8, 0x05, 0xab, 0x21, 0x0d, 0x02, 0xfa, 0x5e,
-	0x65, 0x83, 0xb9, 0xd9, 0x34, 0x01, 0x56, 0x08, 0x4f, 0x41, 0xb3, 0xbc, 0x01, 0x09, 0x54, 0xbe,
-	0xdc, 0xdc, 0x7c, 0x25, 0x8e, 0x55, 0xe8, 0x3a, 0xb0, 0x16, 0x8e, 0x02, 0x3f, 0x70, 0x42, 0xa2,
-	0x32, 0xe6, 0xe7, 0x66, 0x44, 0x31, 0x5c, 0x21, 0xfd, 0x15, 0x94, 0x47, 0x5e, 0x8f, 0x04, 0x26,
-	0xb9, 0xf2, 0x69, 0x48, 0x7a, 0x2a, 0x73, 0x61, 0x6e, 0xe6, 0x4d, 0xce, 0x61, 0x08, 0x0a, 0x85,
-	0xfd, 0x2b, 0x40, 0x97, 0xee, 0x28, 0x08, 0x26, 0x79, 0x8b, 0x73, 0xf3, 0xae, 0x4a, 0xf4, 0x64,
-	0x14, 0xde, 0x10, 0xab, 0xf7, 0x9e, 0x58, 0x13, 0x71, 0x2d, 0xcd, 0x1f, 0x85, 0x18, 0x3e, 0x96,
-	0x6d, 0xfd, 0x6d, 0x05, 0x32, 0x71, 0x8a, 0xa0, 0x13, 0x59, 0x18, 0x16, 0x38, 0xe5, 0xe7, 0x77,
-	0xcc, 0x30, 0xb5, 0x50, 0xbc, 0x82, 0x8c, 0x4f, 0x43, 0x87, 0xe9, 0x79, 0x7e, 0xe5, 0x0e, 0x76,
-	0x66, 0xb1, 0xb5, 0xa5, 0x1d, 0x4e, 0x10, 0xfa, 0x5f, 0x96, 0xc7, 0x55, 0xe4, 0xac, 0xf9, 0xba,
-	0xd9, 0x3a, 0x6f, 0x9a, 0x71, 0x8d, 0xd0, 0x3e, 0x41, 0x79, 0xc8, 0x34, 0x8c, 0xa3, 0xae, 0x69,
-	0x5c, 0x18, 0x5a, 0x0a, 0x15, 0x20, 0x8b, 0xeb, 0xc7, 0x27, 0xa2, 0x99, 0x46, 0x65, 0x58, 0xe7,
-	0xca, 0xd6, 0x91, 0x19, 0x1b, 0x55, 0x71, 0xeb, 0x5c, 0x5b, 0x60, 0xdb, 0xbe, 0x30, 0x9c, 0x56,
-	0x2d, 0x32, 0x55, 0x0c, 0x4a, 0xb8, 0xb8, 0x6a, 0x09, 0x6d, 0xc1, 0x66, 0x82, 0x9a, 0xd4, 0x2d,
-	0x33, 0xd8, 0x69, 0xfd, 0xb0, 0xdd, 0xaa, 0x37, 0xbb, 0x66, 0xd5, 0xe8, 0x9e, 0x1b, 0x46, 0x93,
-	0x69, 0x59, 0xc9, 0xc8, 0x43, 0xa6, 0xd9, 0xea, 0x18, 0x66, 0xb7, 0xde, 0xd6, 0x32, 0xac, 0x8f,
-	0x67, 0xed, 0xb6, 0x81, 0xcd, 0x46, 0xbd, 0xad, 0x65, 0x59, 0xb3, 0xd1, 0x3a, 0x97, 0x4d, 0x60,
-	0xe5, 0xe5, 0xb4, 0x75, 0xd6, 0x3d, 0xe1, 0xbd, 0xd2, 0x72, 0xa8, 0x04, 0x39, 0xd1, 0xe6, 0xfe,
-	0xb4, 0x3c, 0xd2, 0x20, 0x2f, 0x04, 0x35, 0xa3, 0xd9, 0x35, 0xb0, 0x56, 0x40, 0x1b, 0xb0, 0xca,
-	0xe9, 0xab, 0xad, 0x6e, 0xb7, 0x75, 0x2a, 0x0d, 0x8b, 0x2c, 0x5e, 0xaa, 0x98, 0xf3, 0x95, 0x58,
-	0x85, 0x55, 0xa5, 0x92, 0x44, 0x4b, 0x46, 0x6d, 0x5c, 0x18, 0x66, 0xb7, 0xd5, 0x36, 0xab, 0xad,
-	0xb3, 0xe6, 0x61, 0x05, 0x5f, 0x68, 0xab, 0x13, 0x2a, 0x31, 0xea, 0x5a, 0x0b, 0x37, 0x0d, 0xac,
-	0x21, 0xf4, 0x00, 0xca, 0x89, 0x4a, 0x32, 0x26, 0xc0, 0xb5, 0x24, 0xfc, 0x4c, 0xcb, 0x3f, 0x24,
-	0x6e, 0x7d, 0x1c, 0xc8, 0x0f, 0xdc, 0x6d, 0x4c, 0xea, 0x26, 0xfc, 0x6d, 0xa2, 0x87, 0x70, 0x7f,
-	0xac, 0x9b, 0x76, 0x78, 0x6f, 0x3c, 0xab, 0xd3, 0x1e, 0xcb, 0xe8, 0x31, 0x6c, 0xab, 0xf3, 0x6c,
-	0x8a, 0x29, 0x88, 0x67, 0x4c, 0xbb, 0x8f, 0x76, 0xe0, 0xc1, 0xc4, 0x94, 0x4e, 0x5b, 0x6c, 0xb1,
-	0x80, 0x0a, 0x8a, 0x0a, 0x36, 0xbb, 0xb8, 0x72, 0xcc, 0x8a, 0xfd, 0x36, 0x8b, 0xbe, 0xc4, 0x29,
-	0xe2, 0x07, 0xfc, 0xc4, 0x12, 0x8f, 0xbd, 0x7d, 0xd6, 0xae, 0x37, 0xb4, 0x87, 0xec, 0xc4, 0x32,
-	0xee, 0x9e, 0x10, 0x3e, 0x62, 0xf8, 0xa3, 0x16, 0x36, 0x4e, 0x8c, 0xca, 0xa1, 0x79, 0xcc, 0x0f,
-	0x34, 0x8d, 0x8a, 0xf6, 0x98, 0x1d, 0x2b, 0x6a, 0x27, 0xf5, 0xa6, 0x79, 0xdc, 0xac, 0x74, 0x4f,
-	0x18, 0xe5, 0x0e, 0xf3, 0xcf, 0x45, 0x9c, 0xf7, 0xb8, 0xd5, 0x64, 0xd2, 0x4f, 0x19, 0x9e, 0x4b,
-	0x05, 0xb3, 0x14, 0xeb, 0xfa, 0x2b, 0xc8, 0x37, 0xa8, 0xcd, 0x93, 0xb2, 0xee, 0xf5, 0x29, 0x7a,
-	0x06, 0x2b, 0xae, 0x15, 0x99, 0xae, 0x37, 0x90, 0xa5, 0x7c, 0x2d, 0xce, 0x41, 0x96, 0xa3, 0x7b,
-	0x0d, 0x2b, 0x6a, 0x78, 0x03, 0xbc, 0xec, 0xf2, 0x5f, 0xfd, 0x73, 0xc8, 0xb4, 0x03, 0xea, 0x93,
-	0x20, 0xba, 0x46, 0x08, 0x16, 0x3d, 0x6b, 0x48, 0xe4, 0xa9, 0x85, 0x7f, 0xa3, 0x75, 0x58, 0x7a,
-	0x67, 0xb9, 0x23, 0x22, 0x8f, 0x2a, 0xa2, 0xa1, 0xff, 0x6e, 0x01, 0x34, 0xc3, 0x8b, 0x9c, 0xe8,
-	0x5a, 0x39, 0x49, 0x68, 0xb0, 0x30, 0x74, 0x7a, 0x12, 0xcd, 0x3e, 0xd1, 0x26, 0x2c, 0xbb, 0xd4,
-	0xb6, 0xdc, 0x18, 0x2d, 0x5b, 0x68, 0x07, 0x72, 0x3d, 0x12, 0xda, 0x81, 0xe3, 0xf3, 0xad, 0x62,
-	0x41, 0x9c, 0x92, 0x14, 0x11, 0x73, 0x1b, 0xda, 0x34, 0x88, 0xcb, 0xb4, 0x68, 0xa0, 0x47, 0x00,
-	0x4a, 0x9d, 0x14, 0x35, 0x5a, 0x91, 0x30, 0x7d, 0x44, 0x7d, 0xc7, 0xb6, 0x5c, 0x27, 0xba, 0x96,
-	0x55, 0x5a, 0x91, 0x7c, 0x78, 0xd6, 0x59, 0xf9, 0xaf, 0xcf, 0x3a, 0x55, 0xc8, 0xba, 0x32, 0xea,
-	0x61, 0x39, 0xc3, 0xcf, 0x26, 0x33, 0x69, 0xd4, 0xe9, 0xc1, 0x63, 0x18, 0xfa, 0x39, 0x80, 0x2f,
-	0x62, 0xef, 0x90, 0xb0, 0x9c, 0xe5, 0x24, 0xb3, 0x37, 0x4c, 0x39, 0x4b, 0x58, 0xc1, 0xe8, 0xbf,
-	0x4f, 0xc3, 0x7a, 0xc7, 0xea, 0x93, 0x0e, 0xb1, 0x02, 0xfb, 0x8d, 0x32, 0x17, 0x5f, 0xc0, 0x92,
-	0xd5, 0x1b, 0xb9, 0x91, 0x3c, 0xed, 0xcf, 0x53, 0x27, 0x04, 0x80, 0x21, 0x43, 0x9f, 0xd2, 0x3e,
-	0x9f, 0xb2, 0x39, 0x91, 0x1c, 0x80, 0x5e, 0xc1, 0xca, 0x90, 0xf4, 0x58, 0xac, 0x65, 0x29, 0x99,
-	0x07, 0x1b, 0x43, 0xd0, 0x4f, 0x21, 0xf3, 0xce, 0xa1, 0x2e, 0x9f, 0xd9, 0xc5, 0xb9, 0xe1, 0x09,
-	0x46, 0x7f, 0x0f, 0x39, 0xb6, 0xb4, 0xa9, 0x37, 0xc0, 0xc4, 0x8e, 0xd0, 0x0b, 0xc8, 0x0d, 0x1d,
-	0xcf, 0x9c, 0x23, 0x13, 0xb2, 0x43, 0xc7, 0x13, 0x9f, 0x1c, 0x64, 0x5d, 0x25, 0xa0, 0xf4, 0x6d,
-	0x20, 0xeb, 0x4a, 0x7c, 0xea, 0x01, 0x64, 0x6b, 0xec, 0x32, 0xc6, 0x93, 0x6f, 0x17, 0x96, 0xf8,
-	0xcd, 0x4c, 0x3a, 0x44, 0x13, 0x58, 0x6e, 0x86, 0x85, 0xc1, 0x78, 0x85, 0xa7, 0xd5, 0x15, 0xfe,
-	0x04, 0x8a, 0xbe, 0x73, 0x45, 0x5c, 0xb3, 0x1f, 0x58, 0x76, 0x92, 0x1c, 0x69, 0x5c, 0xe0, 0xd2,
-	0x23, 0x29, 0xd4, 0xcf, 0xa0, 0x7c, 0x48, 0x87, 0x8e, 0x67, 0x79, 0x11, 0x27, 0x0d, 0x95, 0xa9,
-	0xff, 0x09, 0x2c, 0x73, 0x0f, 0x61, 0x39, 0xc5, 0x57, 0xd4, 0xa7, 0xb3, 0xc2, 0x98, 0xf4, 0x1a,
-	0x4b, 0x80, 0xee, 0x42, 0x89, 0xdf, 0x1a, 0xda, 0xc9, 0x0a, 0x43, 0x17, 0x50, 0xea, 0x49, 0x4f,
-	0x66, 0x42, 0xcb, 0x86, 0xf6, 0xc3, 0x59, 0xb4, 0xb3, 0x3a, 0x86, 0x8b, 0xbd, 0x09, 0x8d, 0xfe,
-	0xa7, 0x14, 0x64, 0x6a, 0x01, 0xf5, 0x4f, 0x1c, 0x2f, 0xfa, 0x5f, 0x5e, 0x43, 0x26, 0x77, 0x89,
-	0xf4, 0x07, 0xbb, 0xc4, 0x3e, 0xac, 0x39, 0x43, 0x9f, 0x06, 0x91, 0xe5, 0xd9, 0x64, 0x3a, 0xd0,
-	0x68, 0xac, 0x4a, 0xa2, 0xfd, 0x35, 0xac, 0xc5, 0xfd, 0x54, 0x03, 0xfd, 0x33, 0x00, 0x3b, 0xa0,
-	0xbe, 0xf9, 0x86, 0xc9, 0x65, 0xb0, 0x67, 0xa6, 0x6f, 0x4c, 0x80, 0xb3, 0x76, 0x4c, 0xa5, 0xff,
-	0x18, 0x4a, 0x09, 0x6f, 0xdb, 0x0a, 0xac, 0x61, 0x88, 0x3e, 0x83, 0x82, 0x15, 0xfa, 0xc4, 0x8e,
-	0xcc, 0x80, 0x39, 0x11, 0xb4, 0x69, 0x9c, 0x17, 0x42, 0xcc, 0x65, 0xfa, 0x77, 0x29, 0xc8, 0xf3,
-	0x79, 0xaa, 0xb1, 0x3b, 0xe1, 0x55, 0x84, 0x8e, 0xa1, 0xc0, 0xd7, 0x2c, 0xf5, 0x06, 0x66, 0x40,
-	0xec, 0x48, 0x06, 0x6f, 0xe6, 0xd5, 0x50, 0x49, 0x14, 0x9c, 0x73, 0x95, 0xac, 0x79, 0x02, 0x45,
-	0xd7, 0xf2, 0x06, 0x23, 0x76, 0x3f, 0x15, 0xc3, 0x4a, 0xef, 0x2c, 0xec, 0x66, 0x71, 0x21, 0x96,
-	0xf2, 0xbe, 0xa2, 0x0e, 0xac, 0x8e, 0x47, 0x6e, 0xfa, 0xbc, 0xeb, 0xf2, 0xc0, 0xf7, 0xbd, 0x8f,
-	0x05, 0x40, 0x8e, 0x14, 0x97, 0xec, 0x49, 0x01, 0x1b, 0xd5, 0xba, 0x8c, 0x2e, 0xe1, 0xa3, 0xc3,
-	0xe4, 0x37, 0x23, 0x12, 0xb2, 0x54, 0x5e, 0xe2, 0x17, 0x64, 0x39, 0xaa, 0x87, 0xb7, 0x5e, 0x78,
-	0xb1, 0xb0, 0x45, 0x2f, 0x21, 0xd3, 0x17, 0x2f, 0x19, 0x62, 0x0c, 0xb9, 0x83, 0xc7, 0x1f, 0x79,
-	0xf1, 0xc0, 0x09, 0x80, 0x2d, 0x46, 0x71, 0x47, 0xb7, 0x45, 0x80, 0xf9, 0xda, 0xb8, 0x65, 0x31,
-	0xaa, 0x93, 0x81, 0xf3, 0x8e, 0xd2, 0xd2, 0xff, 0xba, 0x02, 0x1b, 0x53, 0xa3, 0x0a, 0x7d, 0xea,
-	0x85, 0x04, 0x7d, 0x05, 0x5a, 0xdf, 0xb2, 0x89, 0xf2, 0x58, 0x14, 0x2f, 0xa2, 0xff, 0x9f, 0xef,
-	0x08, 0x8e, 0x4b, 0xfd, 0x89, 0x76, 0x88, 0x7e, 0x09, 0xeb, 0xf1, 0xad, 0x71, 0x82, 0x56, 0x04,
-	0x60, 0x77, 0x16, 0xed, 0x74, 0x25, 0xc7, 0x6b, 0x31, 0x8b, 0x4a, 0xde, 0x01, 0xcd, 0xa5, 0x03,
-	0x3a, 0x41, 0xbc, 0x70, 0x47, 0xe2, 0x12, 0x63, 0x50, 0x49, 0xcf, 0x60, 0xd5, 0xb5, 0x2e, 0x89,
-	0x3b, 0xc1, 0xba, 0x78, 0x47, 0x56, 0x8d, 0x53, 0x4c, 0xf5, 0x75, 0xea, 0x21, 0x2e, 0x2c, 0x2f,
-	0xdd, 0xb5, 0xaf, 0x8c, 0x41, 0x25, 0xfd, 0x06, 0xd6, 0xfb, 0x23, 0xd7, 0x35, 0xa7, 0x98, 0xf9,
-	0x85, 0xf4, 0x96, 0x49, 0xeb, 0x4e, 0xd0, 0x60, 0xc4, 0x38, 0x26, 0x65, 0xe8, 0x12, 0x36, 0x43,
-	0xab, 0x4f, 0xcc, 0x90, 0x97, 0x71, 0x95, 0x7b, 0x99, 0x73, 0x3f, 0x9b, 0xc5, 0x7d, 0x53, 0xed,
-	0xc7, 0xeb, 0xe1, 0x4d, 0x27, 0x82, 0x01, 0x6c, 0x8b, 0x35, 0x3d, 0x3e, 0x3e, 0xa8, 0x8e, 0x32,
-	0xb7, 0x67, 0xef, 0x54, 0x59, 0xc0, 0xf7, 0x9d, 0x49, 0x81, 0xe2, 0xc8, 0x84, 0x0d, 0x65, 0x73,
-	0x50, 0x5c, 0xe4, 0xb8, 0x8b, 0xef, 0x7f, 0x74, 0x83, 0x50, 0x17, 0xa2, 0x7d, 0xc3, 0xbe, 0x5b,
-	0x87, 0xc2, 0xc4, 0xbb, 0x29, 0xbf, 0xb7, 0xdf, 0x92, 0x9d, 0xe7, 0xe4, 0xf2, 0x30, 0xb6, 0xc5,
-	0xf9, 0xf7, 0x4a, 0x8b, 0x95, 0x6b, 0x12, 0x04, 0x34, 0xe0, 0x8f, 0x28, 0x4a, 0xb9, 0x0e, 0x7c,
-	0x7b, 0xaf, 0xc3, 0xdf, 0x5e, 0xb1, 0x30, 0xd0, 0xfb, 0xb0, 0x55, 0xb5, 0xa2, 0x24, 0xa2, 0x22,
-	0x97, 0xc3, 0x78, 0x8b, 0x3a, 0x81, 0x4c, 0x20, 0x3e, 0xe3, 0x1c, 0x9e, 0x39, 0x65, 0x37, 0x6d,
-	0x71, 0x38, 0x41, 0xeb, 0x6f, 0x61, 0xfb, 0x46, 0x3f, 0x72, 0xd3, 0x78, 0x0d, 0xd9, 0x40, 0x7e,
-	0xc7, 0x9e, 0x7e, 0x30, 0xa7, 0x27, 0x81, 0xc2, 0x63, 0xfc, 0x53, 0x02, 0xa0, 0x3c, 0x34, 0xe4,
-	0x60, 0x45, 0xde, 0xba, 0xb5, 0x4f, 0xd8, 0xa5, 0xe4, 0x6b, 0x03, 0x5f, 0x98, 0x67, 0xcd, 0x46,
-	0xfd, 0xb5, 0xd1, 0xb8, 0xd0, 0x52, 0xec, 0x6e, 0x9b, 0xb4, 0xd2, 0xac, 0xd5, 0x6e, 0x75, 0x3a,
-	0xf5, 0x6a, 0xc3, 0xd0, 0x16, 0x10, 0xc0, 0xb2, 0xd4, 0x2c, 0xb2, 0x7b, 0x2c, 0x87, 0x4a, 0xc1,
-	0xd2, 0xc1, 0x9f, 0x53, 0x50, 0xe4, 0x7d, 0xa8, 0xc4, 0x0f, 0xf4, 0xe8, 0x8f, 0x29, 0x58, 0xbb,
-	0x61, 0x98, 0xe8, 0x60, 0x66, 0xb9, 0x9f, 0x19, 0xfb, 0xad, 0x17, 0x77, 0xc2, 0x88, 0xb1, 0xeb,
-	0x8f, 0x7e, 0xfb, 0xdd, 0x3f, 0xff, 0x90, 0x2e, 0xeb, 0x6b, 0xc9, 0xdf, 0x07, 0xe1, 0x97, 0x72,
-	0xa9, 0x92, 0x2f, 0x53, 0x4f, 0xab, 0x11, 0x6c, 0xd9, 0x74, 0x38, 0x83, 0xb9, 0xba, 0x36, 0x39,
-	0x9c, 0x76, 0x40, 0x23, 0xda, 0x4e, 0xfd, 0xe2, 0x95, 0x34, 0x1f, 0x50, 0x56, 0x2e, 0xf7, 0x68,
-	0x30, 0xd8, 0x1f, 0x10, 0x8f, 0xbf, 0xc4, 0xef, 0x0b, 0x95, 0xe5, 0x3b, 0xe1, 0xf4, 0x9f, 0x00,
-	0x2f, 0xc5, 0xd7, 0xbf, 0x53, 0xa9, 0xcb, 0x65, 0x6e, 0xfb, 0xe2, 0x3f, 0x01, 0x00, 0x00, 0xff,
-	0xff, 0xe5, 0x59, 0xbe, 0xb0, 0xe8, 0x18, 0x00, 0x00,
+	// 2382 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x59, 0x4f, 0x6f, 0xe3, 0xc6,
+	0x15, 0x8f, 0xe4, 0x7f, 0xd2, 0x93, 0x2c, 0xd1, 0x23, 0xaf, 0xa3, 0xf5, 0xee, 0x66, 0x1d, 0xa6,
+	0x69, 0x8d, 0x6d, 0x2a, 0x37, 0x4e, 0x1a, 0xa4, 0xc9, 0xa2, 0xad, 0x24, 0xd3, 0xb6, 0xb0, 0xb2,
+	0xa4, 0x8c, 0xe4, 0x38, 0x6e, 0x83, 0x12, 0x34, 0x35, 0xd2, 0x32, 0xa1, 0x38, 0x2c, 0x49, 0xed,
+	0xda, 0xd7, 0x02, 0xfd, 0x04, 0xbd, 0xf7, 0xd8, 0x7b, 0x80, 0x7e, 0x80, 0x5e, 0x7a, 0xe8, 0xb1,
+	0xc8, 0x57, 0xe8, 0x37, 0x28, 0x50, 0xf4, 0x58, 0xcc, 0x1f, 0x52, 0x43, 0xad, 0xb5, 0x2b, 0x17,
+	0x3d, 0x89, 0xf3, 0xde, 0xfb, 0xfd, 0xde, 0xcc, 0x9b, 0x79, 0x33, 0x6f, 0x46, 0xf0, 0xc1, 0x98,
+	0xd2, 0xb1, 0x4b, 0x0e, 0x6c, 0x97, 0x4e, 0x87, 0x07, 0x2f, 0x9c, 0xd0, 0xa1, 0xde, 0xc1, 0x8b,
+	0x0f, 0x0f, 0x9c, 0x89, 0x35, 0x26, 0xa6, 0xe5, 0x79, 0x34, 0xb2, 0x22, 0x1a, 0xd4, 0xfc, 0x80,
+	0x46, 0x14, 0xed, 0x08, 0xeb, 0x1a, 0xb7, 0xae, 0x09, 0xeb, 0xda, 0x8b, 0x0f, 0x77, 0x1f, 0x4a,
+	0x16, 0xcb, 0x77, 0x0e, 0x24, 0xc6, 0xa1, 0x5e, 0x28, 0x50, 0xbb, 0xef, 0x2f, 0xf0, 0x31, 0x26,
+	0x74, 0x42, 0xa2, 0xe0, 0x46, 0x9a, 0x2d, 0xea, 0x4a, 0x44, 0xae, 0x23, 0x73, 0xc6, 0x2a, 0xad,
+	0x9f, 0x2c, 0xb0, 0x7e, 0x49, 0xae, 0xcc, 0x21, 0x89, 0x88, 0xad, 0xd8, 0xbe, 0x2d, 0x6d, 0x03,
+	0xdf, 0x3e, 0x08, 0x23, 0x2b, 0x9a, 0x86, 0x73, 0x8a, 0xe8, 0xc6, 0x27, 0x07, 0x36, 0x75, 0xe3,
+	0x81, 0xee, 0x56, 0x55, 0x85, 0x6b, 0x45, 0xae, 0x37, 0x16, 0x1a, 0xfd, 0x5f, 0x59, 0xd8, 0x38,
+	0x26, 0x56, 0x34, 0x0d, 0x08, 0xfa, 0x14, 0x56, 0x99, 0x41, 0x35, 0xb3, 0x97, 0xd9, 0x2f, 0x1d,
+	0xfe, 0xa0, 0x76, 0x7b, 0x74, 0x6a, 0xd2, 0xbc, 0x36, 0xb8, 0xf1, 0x09, 0xe6, 0x08, 0xf4, 0x18,
+	0x0a, 0x13, 0xeb, 0xda, 0x0c, 0x48, 0x38, 0x75, 0xa3, 0xb0, 0x9a, 0xdd, 0xcb, 0xec, 0xaf, 0x61,
+	0x98, 0x58, 0xd7, 0x58, 0x48, 0xd0, 0x36, 0xac, 0x4d, 0xe8, 0x90, 0xb8, 0xd5, 0x95, 0xbd, 0xcc,
+	0x7e, 0x1e, 0x8b, 0x86, 0xfe, 0xef, 0x0c, 0xac, 0x32, 0x16, 0xb4, 0x0d, 0xda, 0xe0, 0xb2, 0x67,
+	0x98, 0xe7, 0x9d, 0x7e, 0xcf, 0x68, 0xb6, 0x8e, 0x5b, 0xc6, 0x91, 0xf6, 0x16, 0x42, 0x50, 0x3a,
+	0xae, 0x37, 0x0d, 0xf3, 0xc8, 0x18, 0x18, 0xcd, 0x41, 0xab, 0xdb, 0xd1, 0x32, 0x68, 0x07, 0x50,
+	0xbb, 0xde, 0x39, 0x3a, 0xab, 0xe3, 0x67, 0x8a, 0x3c, 0xcb, 0x6c, 0xdb, 0xdd, 0x93, 0xae, 0x22,
+	0x5b, 0x41, 0x15, 0x28, 0xb7, 0xeb, 0x0d, 0xa3, 0xad, 0x08, 0x57, 0x99, 0xe1, 0xc0, 0xf8, 0x6a,
+	0xa0, 0xc8, 0xd6, 0xd0, 0x03, 0x78, 0xfb, 0xa8, 0xdb, 0x3c, 0x3f, 0x33, 0x3a, 0x03, 0x73, 0x4e,
+	0x59, 0x40, 0xf7, 0xe1, 0x5e, 0xbf, 0x7e, 0x6c, 0x98, 0x7d, 0xa3, 0x8e, 0x9b, 0xa7, 0x8a, 0x6a,
+	0x9d, 0x75, 0xbb, 0x75, 0x56, 0x3f, 0x31, 0xcc, 0x1e, 0xee, 0xf6, 0x0c, 0x3c, 0x68, 0x19, 0x7d,
+	0x6d, 0x03, 0x95, 0x00, 0x9a, 0xb8, 0xdb, 0x33, 0x4f, 0x5b, 0x9d, 0x41, 0x5f, 0xcb, 0xa3, 0x2d,
+	0xd8, 0xbc, 0x30, 0x1a, 0x0a, 0x10, 0xf4, 0x0e, 0x14, 0x5a, 0x6c, 0x45, 0xf6, 0xe9, 0x34, 0xb0,
+	0x09, 0xd2, 0x61, 0x73, 0x6c, 0x87, 0xa6, 0x58, 0xa4, 0xd3, 0xc0, 0xe1, 0x33, 0x90, 0xc7, 0x85,
+	0xb1, 0x1d, 0x72, 0xb3, 0xf3, 0xc0, 0x41, 0x0f, 0x20, 0x3f, 0xd3, 0x67, 0xb9, 0x3e, 0xe7, 0x48,
+	0xa5, 0xfe, 0x5b, 0x58, 0xe3, 0x86, 0xa8, 0x0a, 0x1b, 0x36, 0xf5, 0x22, 0xe2, 0x45, 0x9c, 0xa3,
+	0x88, 0xe3, 0x26, 0xfa, 0x1c, 0xd6, 0x43, 0xee, 0x8d, 0x83, 0x0b, 0x87, 0xef, 0x2d, 0x9a, 0x5e,
+	0xa5, 0x63, 0x58, 0x42, 0xf4, 0x7f, 0x94, 0xa1, 0x74, 0x6c, 0xd9, 0xa4, 0x9e, 0x2c, 0x5b, 0xd4,
+	0x82, 0xcd, 0x2b, 0x3a, 0xf5, 0x86, 0x8e, 0x37, 0x36, 0x7d, 0xea, 0xde, 0x70, 0x7f, 0x85, 0xc5,
+	0xab, 0xa6, 0x21, 0x8d, 0x7b, 0xd4, 0xbd, 0xc1, 0xc5, 0x2b, 0xa5, 0x85, 0x3a, 0xa0, 0x8d, 0x86,
+	0x66, 0x9a, 0x2d, 0x7b, 0x07, 0xb6, 0xd2, 0x68, 0xa8, 0xb6, 0xd1, 0x19, 0xe4, 0x5d, 0xcb, 0x1b,
+	0x4e, 0xac, 0xe0, 0xdb, 0xb0, 0xba, 0xb2, 0xb7, 0xb2, 0x5f, 0x38, 0x3c, 0x58, 0xb8, 0x98, 0x53,
+	0xa3, 0xaa, 0xb5, 0x25, 0x0e, 0xcf, 0x18, 0xd0, 0x23, 0x80, 0x80, 0xba, 0xae, 0x69, 0x79, 0x63,
+	0x97, 0x54, 0x57, 0xf7, 0x32, 0xfb, 0x59, 0x9c, 0x67, 0x92, 0x3a, 0x13, 0xb0, 0x89, 0xf1, 0x2d,
+	0x4f, 0x6a, 0xd7, 0xb8, 0x36, 0xe7, 0x5b, 0x9e, 0x50, 0x3e, 0x02, 0x88, 0x1c, 0x37, 0x92, 0xda,
+	0x75, 0x81, 0x65, 0x12, 0xa1, 0xfe, 0x10, 0xb6, 0x93, 0xe4, 0x36, 0x6d, 0xea, 0x8d, 0x9c, 0x21,
+	0xf1, 0x6c, 0x52, 0xdd, 0xe0, 0x86, 0x95, 0x44, 0xd7, 0x4c, 0x54, 0xe8, 0x67, 0xb0, 0x13, 0x77,
+	0x8d, 0x05, 0x4b, 0x01, 0xe5, 0x38, 0xe8, 0x9e, 0xa2, 0x55, 0x60, 0x2d, 0x28, 0x7d, 0x43, 0x6f,
+	0x4c, 0xd7, 0xf9, 0x96, 0xb8, 0xce, 0x73, 0x4a, 0x87, 0xd5, 0x3c, 0xcf, 0x72, 0x7d, 0x51, 0x60,
+	0xda, 0x89, 0x25, 0xde, 0xfc, 0x86, 0xde, 0xcc, 0x9a, 0xa8, 0x0b, 0x5b, 0x21, 0x0d, 0x02, 0xfa,
+	0x52, 0x65, 0x83, 0xa5, 0xd9, 0x34, 0x01, 0x56, 0x08, 0xcf, 0x40, 0xb3, 0xbc, 0x31, 0x09, 0x54,
+	0xbe, 0xc2, 0xd2, 0x7c, 0x65, 0x8e, 0x55, 0xe8, 0xfa, 0x50, 0x09, 0xa7, 0x81, 0x1f, 0x38, 0x21,
+	0x51, 0x19, 0x8b, 0x4b, 0x33, 0xa2, 0x18, 0xae, 0x90, 0x7e, 0x0d, 0xd5, 0xa9, 0x37, 0x24, 0x81,
+	0x49, 0xae, 0x7d, 0x1a, 0x92, 0xa1, 0xca, 0xbc, 0xb9, 0x34, 0xf3, 0x0e, 0xe7, 0x30, 0x04, 0x85,
+	0xc2, 0xfe, 0x05, 0xa0, 0x2b, 0x77, 0x1a, 0x04, 0x69, 0xde, 0xd2, 0xd2, 0xbc, 0x5b, 0x12, 0x9d,
+	0x8e, 0xc2, 0x73, 0x62, 0x0d, 0x5f, 0x12, 0x2b, 0x15, 0xd7, 0xf2, 0xf2, 0x51, 0x88, 0xe1, 0x33,
+	0xd9, 0xee, 0xdf, 0x37, 0x20, 0x17, 0xa7, 0x08, 0x3a, 0x95, 0xc7, 0xc5, 0x0a, 0xa7, 0xfc, 0xf8,
+	0x8e, 0x19, 0xa6, 0x1e, 0x1f, 0x4f, 0x21, 0xe7, 0xd3, 0xd0, 0x61, 0x7a, 0x9e, 0x5f, 0x85, 0xc3,
+	0xbd, 0x45, 0x6c, 0x3d, 0x69, 0x87, 0x13, 0x84, 0xfe, 0x97, 0xf5, 0xd9, 0x29, 0x72, 0xde, 0x79,
+	0xd6, 0xe9, 0x5e, 0x74, 0xcc, 0xf8, 0x8c, 0xd0, 0xde, 0x42, 0x45, 0xc8, 0xb5, 0x8d, 0xe3, 0x81,
+	0x69, 0x5c, 0x1a, 0x5a, 0x06, 0x6d, 0x42, 0x1e, 0xb7, 0x4e, 0x4e, 0x45, 0x33, 0x8b, 0xaa, 0xb0,
+	0xcd, 0x95, 0xdd, 0x63, 0x33, 0x36, 0x6a, 0xe0, 0xee, 0x85, 0xb6, 0xc2, 0xb6, 0x7d, 0x61, 0x38,
+	0xaf, 0x5a, 0x65, 0xaa, 0x18, 0x94, 0x70, 0x71, 0xd5, 0x1a, 0xda, 0x85, 0x9d, 0x04, 0x95, 0xd6,
+	0xad, 0x33, 0xd8, 0x59, 0xeb, 0xa8, 0xd7, 0x6d, 0x75, 0x06, 0x66, 0xc3, 0x18, 0x5c, 0x18, 0x46,
+	0x87, 0x69, 0xd9, 0x91, 0x51, 0x84, 0x5c, 0xa7, 0xdb, 0x37, 0xcc, 0x41, 0xab, 0xa7, 0xe5, 0x58,
+	0x1f, 0xcf, 0x7b, 0x3d, 0x03, 0x9b, 0xed, 0x56, 0x4f, 0xcb, 0xb3, 0x66, 0xbb, 0x7b, 0x21, 0x9b,
+	0xc0, 0x8e, 0x97, 0xb3, 0xee, 0xf9, 0xe0, 0x94, 0xf7, 0x4a, 0x2b, 0xa0, 0x32, 0x14, 0x44, 0x9b,
+	0xfb, 0xd3, 0x8a, 0x48, 0x83, 0xa2, 0x10, 0x34, 0x8d, 0xce, 0xc0, 0xc0, 0xda, 0x26, 0xba, 0x07,
+	0x5b, 0x9c, 0xbe, 0xd1, 0x1d, 0x0c, 0xba, 0x67, 0xd2, 0xb0, 0xc4, 0xe2, 0xa5, 0x8a, 0x39, 0x5f,
+	0x99, 0x9d, 0xb0, 0xaa, 0x54, 0x92, 0x68, 0xc9, 0xa8, 0x8d, 0x4b, 0xc3, 0x1c, 0x74, 0x7b, 0x66,
+	0xa3, 0x7b, 0xde, 0x39, 0xaa, 0xe3, 0x4b, 0x6d, 0x2b, 0xa5, 0x12, 0xa3, 0x6e, 0x76, 0x71, 0xc7,
+	0xc0, 0x1a, 0x42, 0x0f, 0xa1, 0x9a, 0xa8, 0x24, 0x63, 0x02, 0xac, 0x24, 0xe1, 0x67, 0x5a, 0xfe,
+	0x21, 0x71, 0xdb, 0xb3, 0x40, 0xbe, 0xe2, 0xee, 0x5e, 0x5a, 0x97, 0xf2, 0xb7, 0x83, 0x1e, 0xc1,
+	0xfd, 0x99, 0x6e, 0xde, 0xe1, 0xdb, 0xb3, 0x59, 0x9d, 0xf7, 0x58, 0x45, 0x8f, 0xe1, 0x81, 0x3a,
+	0xcf, 0xa6, 0x98, 0x82, 0x78, 0xc6, 0xb4, 0xfb, 0x68, 0x0f, 0x1e, 0xa6, 0xa6, 0x74, 0xde, 0x62,
+	0x97, 0x05, 0x54, 0x50, 0xd4, 0xb1, 0x39, 0xc0, 0xf5, 0x13, 0x76, 0xd8, 0x3f, 0x60, 0xd1, 0x97,
+	0x38, 0x45, 0xfc, 0x90, 0x57, 0x2c, 0xf1, 0xd8, 0x7b, 0xe7, 0xbd, 0x56, 0x5b, 0x7b, 0xc4, 0x2a,
+	0x96, 0x59, 0xf7, 0x84, 0xf0, 0x1d, 0x86, 0x3f, 0xee, 0x62, 0xe3, 0xd4, 0xa8, 0x1f, 0x99, 0x27,
+	0xbc, 0xa0, 0x69, 0xd7, 0xb5, 0xc7, 0xac, 0xac, 0x68, 0x9e, 0xb6, 0x3a, 0xe6, 0x49, 0xa7, 0x3e,
+	0x38, 0x65, 0x94, 0x7b, 0xcc, 0x3f, 0x17, 0x71, 0xde, 0x93, 0x6e, 0x87, 0x49, 0xdf, 0x65, 0x78,
+	0x2e, 0x15, 0xcc, 0x52, 0xac, 0xeb, 0x4f, 0xa1, 0xd8, 0xa6, 0x36, 0x4f, 0xca, 0x96, 0x37, 0xa2,
+	0xe8, 0x03, 0xd8, 0x70, 0xad, 0xc8, 0x74, 0xbd, 0xb1, 0x3c, 0xca, 0x2b, 0x71, 0x0e, 0xb2, 0x1c,
+	0xad, 0xb5, 0xad, 0xa8, 0xed, 0x8d, 0xf1, 0xba, 0xcb, 0x7f, 0xf5, 0x0b, 0xc8, 0xf5, 0x02, 0xea,
+	0x93, 0x20, 0xba, 0x41, 0x08, 0x56, 0x3d, 0x6b, 0x42, 0x64, 0xd5, 0xc2, 0xbf, 0x59, 0xc1, 0xf7,
+	0xc2, 0x72, 0xa7, 0x44, 0x96, 0x2a, 0xa2, 0x81, 0xde, 0x85, 0xe2, 0xd4, 0xf1, 0xa2, 0x4f, 0x3e,
+	0x36, 0x85, 0x92, 0x6d, 0x1d, 0xab, 0xb8, 0x20, 0x64, 0x5f, 0x32, 0x91, 0xfe, 0x87, 0x15, 0xd0,
+	0x0c, 0x2f, 0x72, 0xa2, 0x1b, 0xa5, 0xd8, 0xd0, 0x60, 0x65, 0xe2, 0x0c, 0xa5, 0x03, 0xf6, 0x89,
+	0x76, 0x60, 0xdd, 0xa5, 0xb6, 0xe5, 0xc6, 0x0e, 0x64, 0x0b, 0xed, 0x41, 0x61, 0x48, 0x42, 0x3b,
+	0x70, 0x7c, 0xbe, 0x9b, 0x88, 0x72, 0x53, 0x15, 0xb1, 0x9e, 0x85, 0x36, 0x0d, 0xe2, 0x93, 0x5c,
+	0x34, 0xd0, 0x3b, 0x00, 0xca, 0x51, 0x2a, 0x8e, 0x71, 0x45, 0xc2, 0xf4, 0x11, 0xf5, 0x1d, 0xdb,
+	0x72, 0x9d, 0xe8, 0x46, 0x1e, 0xe4, 0x8a, 0xe4, 0xd5, 0x72, 0x68, 0xe3, 0x7f, 0x2e, 0x87, 0x1a,
+	0x90, 0x77, 0xe5, 0xc4, 0x84, 0xd5, 0x1c, 0x2f, 0x5f, 0x16, 0xd2, 0xa8, 0x33, 0x88, 0x67, 0x30,
+	0xf4, 0x2b, 0x00, 0x5f, 0x4c, 0x8f, 0x43, 0xc2, 0x6a, 0x9e, 0x93, 0x2c, 0xde, 0x53, 0xe5, 0x44,
+	0x62, 0x05, 0xa3, 0xff, 0x35, 0x0b, 0xdb, 0x7d, 0x6b, 0x44, 0xfa, 0xc4, 0x0a, 0xec, 0xe7, 0xca,
+	0x5c, 0x7c, 0x0a, 0x6b, 0xd6, 0x70, 0xea, 0x46, 0xf2, 0x9a, 0xb0, 0xcc, 0x51, 0x22, 0x00, 0x0c,
+	0x19, 0xfa, 0x94, 0x8e, 0xf8, 0x94, 0x2d, 0x89, 0xe4, 0x00, 0xf4, 0x14, 0x36, 0x26, 0x64, 0xc8,
+	0x62, 0x2d, 0x4f, 0x9b, 0x65, 0xb0, 0x31, 0x04, 0xfd, 0x02, 0x72, 0x2f, 0x1c, 0xea, 0xf2, 0x99,
+	0x5d, 0x5d, 0x1a, 0x9e, 0x60, 0xd0, 0x27, 0xb0, 0x1a, 0x58, 0xf6, 0xcd, 0x1d, 0x2a, 0x26, 0x6e,
+	0xaf, 0xbf, 0x84, 0x02, 0xcb, 0x1a, 0xea, 0x8d, 0x31, 0xb1, 0x23, 0xf4, 0x11, 0x14, 0x26, 0x8e,
+	0x67, 0x2e, 0x91, 0x64, 0xf9, 0x89, 0xe3, 0x89, 0x4f, 0x0e, 0xb2, 0xae, 0x13, 0x50, 0xf6, 0x75,
+	0x20, 0xeb, 0x5a, 0x7c, 0xea, 0x01, 0xe4, 0x9b, 0xec, 0xf6, 0xc7, 0xf3, 0x7a, 0x1f, 0xd6, 0xf8,
+	0x55, 0x50, 0x3a, 0x44, 0x29, 0x2c, 0x37, 0xc3, 0xc2, 0x60, 0x96, 0x19, 0x59, 0x35, 0x33, 0xde,
+	0x87, 0x92, 0xef, 0x5c, 0x13, 0xd7, 0x1c, 0x05, 0x96, 0x9d, 0x24, 0x55, 0x16, 0x6f, 0x72, 0xe9,
+	0xb1, 0x14, 0xea, 0xe7, 0x50, 0x3d, 0xa2, 0x13, 0xc7, 0xb3, 0xbc, 0x88, 0x93, 0x86, 0xca, 0x92,
+	0xf9, 0x39, 0xac, 0x73, 0x0f, 0x61, 0x35, 0xc3, 0x57, 0xe2, 0xbb, 0x8b, 0x42, 0x98, 0xf4, 0x1a,
+	0x4b, 0x80, 0xee, 0x42, 0x99, 0x5f, 0x48, 0x7a, 0xc9, 0xca, 0x44, 0x97, 0x50, 0x1e, 0x4a, 0x4f,
+	0x66, 0x42, 0xcb, 0x86, 0xf6, 0xd3, 0x45, 0xb4, 0x8b, 0x3a, 0x86, 0x4b, 0xc3, 0x94, 0x46, 0xff,
+	0x73, 0x06, 0x72, 0xcd, 0x80, 0xfa, 0xa7, 0x8e, 0x17, 0xfd, 0x3f, 0x6f, 0x38, 0xe9, 0xdd, 0x25,
+	0xfb, 0xca, 0xee, 0x72, 0x00, 0x15, 0x67, 0xe2, 0xd3, 0x20, 0xb2, 0x3c, 0x9b, 0xcc, 0x07, 0x1a,
+	0xcd, 0x54, 0x49, 0xb4, 0xbf, 0x84, 0x4a, 0xdc, 0x4f, 0x35, 0xd0, 0xbf, 0x04, 0xb0, 0x03, 0xea,
+	0x9b, 0xcf, 0x99, 0x5c, 0x06, 0x7b, 0x61, 0xda, 0xc7, 0x04, 0x38, 0x6f, 0xc7, 0x54, 0xfa, 0x27,
+	0x50, 0x4e, 0x78, 0x7b, 0x56, 0x60, 0x4d, 0x42, 0xf4, 0x1e, 0x6c, 0x5a, 0xa1, 0x4f, 0xec, 0xc8,
+	0x0c, 0x98, 0x13, 0x41, 0x9b, 0xc5, 0x45, 0x21, 0xc4, 0x5c, 0xa6, 0x1f, 0x01, 0xba, 0x20, 0x57,
+	0x47, 0xf1, 0x7d, 0x45, 0x42, 0x6b, 0x50, 0x71, 0x3c, 0xdb, 0x9d, 0x0e, 0x89, 0x39, 0x26, 0x34,
+	0xf5, 0x3c, 0x90, 0xc3, 0x5b, 0x52, 0x75, 0x42, 0xa8, 0x7c, 0x25, 0xd0, 0xbf, 0xcb, 0x42, 0x91,
+	0xcf, 0x76, 0x93, 0x5d, 0x5a, 0xaf, 0x23, 0x74, 0x02, 0x9b, 0x7c, 0xe5, 0x53, 0x6f, 0x6c, 0x06,
+	0xc4, 0x8e, 0xe4, 0x14, 0x2c, 0xbc, 0xbb, 0x2a, 0xe9, 0x86, 0x0b, 0xae, 0x92, 0x7b, 0xef, 0x43,
+	0xc9, 0xb5, 0xbc, 0xf1, 0x94, 0x5d, 0xa0, 0x45, 0x70, 0xb2, 0x7b, 0x2b, 0xfb, 0x79, 0xbc, 0x19,
+	0x4b, 0xf9, 0x88, 0x51, 0x1f, 0xb6, 0x66, 0xf1, 0x33, 0x7d, 0x3e, 0x0a, 0x59, 0x91, 0xfe, 0xe8,
+	0x4d, 0x61, 0x94, 0xf1, 0xc2, 0x65, 0x7b, 0x2e, 0x80, 0x5f, 0xc3, 0x76, 0xea, 0x15, 0x27, 0xe6,
+	0x5d, 0xe7, 0xbc, 0x4f, 0x16, 0xf1, 0xbe, 0x1a, 0x4f, 0x8c, 0x5e, 0xbe, 0x22, 0xd3, 0xbf, 0xcf,
+	0xc0, 0xb6, 0x5c, 0x01, 0x84, 0xc7, 0x0e, 0x93, 0xdf, 0x4d, 0x49, 0xc8, 0xb6, 0x9b, 0x35, 0xfe,
+	0x3e, 0x20, 0x63, 0xf6, 0xe8, 0xb5, 0xf7, 0x7d, 0x2c, 0x6c, 0xd1, 0xe7, 0x90, 0x1b, 0x89, 0xe7,
+	0x1d, 0x11, 0xa1, 0xc2, 0xe1, 0xe3, 0x37, 0x3c, 0x03, 0xe1, 0x04, 0xc0, 0x12, 0x46, 0x3c, 0x51,
+	0xd8, 0x62, 0xfa, 0xf8, 0xfa, 0x7d, 0x4d, 0xc2, 0xa8, 0x53, 0x8d, 0x8b, 0x8e, 0xd2, 0xd2, 0xff,
+	0xb6, 0x01, 0xf7, 0xe6, 0x46, 0x15, 0xfa, 0xd4, 0x0b, 0x09, 0xfa, 0x02, 0xb4, 0x91, 0x65, 0x13,
+	0xe5, 0x05, 0x2d, 0x5e, 0xe8, 0x3f, 0x5c, 0xee, 0x06, 0x82, 0xcb, 0xa3, 0x54, 0x3b, 0x44, 0xbf,
+	0x81, 0xed, 0xf8, 0xd2, 0x9c, 0xa2, 0x15, 0x01, 0xd8, 0x5f, 0x44, 0x3b, 0x5f, 0xa5, 0xe0, 0x4a,
+	0xcc, 0xa2, 0x92, 0xf7, 0x41, 0x73, 0xe9, 0x98, 0xa6, 0x88, 0x57, 0xee, 0x48, 0x5c, 0x66, 0x0c,
+	0x2a, 0xe9, 0x39, 0x6c, 0xb9, 0xd6, 0x15, 0x71, 0x53, 0xac, 0xab, 0x77, 0x64, 0xd5, 0x38, 0xc5,
+	0x5c, 0x5f, 0xe7, 0x5e, 0x27, 0xc3, 0xea, 0xda, 0x5d, 0xfb, 0xca, 0x18, 0x54, 0xd2, 0xaf, 0x60,
+	0x7b, 0x34, 0x75, 0x5d, 0x73, 0x8e, 0x99, 0xdf, 0xc7, 0x5f, 0x33, 0x69, 0x83, 0x14, 0x0d, 0x46,
+	0x8c, 0x23, 0x2d, 0x43, 0x57, 0xb0, 0x13, 0x5a, 0x23, 0x62, 0x86, 0xbc, 0x44, 0x51, 0xb9, 0x45,
+	0x6a, 0x7d, 0xb0, 0x88, 0xfb, 0xb6, 0xba, 0x06, 0x6f, 0x87, 0xb7, 0x55, 0x3b, 0x63, 0x78, 0x20,
+	0xd6, 0xf4, 0xac, 0x34, 0x52, 0x1d, 0xe5, 0x5e, 0xbf, 0x37, 0xcc, 0x1d, 0x5d, 0xf8, 0xbe, 0x93,
+	0x16, 0x28, 0x8e, 0x4c, 0xb8, 0xa7, 0x6c, 0x3d, 0x8a, 0x8b, 0x02, 0x77, 0xf1, 0xe3, 0x37, 0x6e,
+	0x3f, 0xea, 0x42, 0xb4, 0x6f, 0x39, 0x1b, 0x5a, 0xb0, 0x99, 0xda, 0x86, 0xf8, 0xb3, 0xc5, 0x6b,
+	0xb2, 0x53, 0xdd, 0x7f, 0x70, 0x51, 0xdd, 0x79, 0x58, 0x49, 0x41, 0x82, 0x80, 0x06, 0xbc, 0x22,
+	0x52, 0x4a, 0x8a, 0xc0, 0xb7, 0x6b, 0x7d, 0xfe, 0x20, 0x8d, 0x85, 0x81, 0x3e, 0x82, 0xdd, 0x86,
+	0x15, 0x25, 0x11, 0x15, 0xb9, 0x1c, 0xc6, 0x5b, 0xd4, 0x29, 0xe4, 0x02, 0xf1, 0x19, 0xe7, 0xf0,
+	0xc2, 0x29, 0xbb, 0x6d, 0x8b, 0xc3, 0x09, 0x5a, 0xff, 0x06, 0x1e, 0xdc, 0xea, 0x47, 0x6e, 0x1a,
+	0xcf, 0x20, 0x1f, 0xc8, 0xef, 0xd8, 0xd3, 0x4f, 0x96, 0xf4, 0x24, 0x50, 0x78, 0x86, 0x7f, 0x42,
+	0x00, 0x94, 0x77, 0x96, 0x02, 0x6c, 0xc8, 0x47, 0x07, 0xed, 0x2d, 0x76, 0x27, 0xfb, 0xd2, 0xc0,
+	0x97, 0xe6, 0x79, 0xa7, 0xdd, 0x7a, 0x66, 0xb4, 0x2f, 0xb5, 0x0c, 0xbb, 0xda, 0x27, 0xad, 0x2c,
+	0x6b, 0xf5, 0xba, 0xfd, 0x7e, 0xab, 0xd1, 0x36, 0xb4, 0x15, 0x04, 0xb0, 0x2e, 0x35, 0xab, 0xec,
+	0x1a, 0xcf, 0xa1, 0x52, 0xb0, 0x76, 0xf8, 0x5d, 0x06, 0x4a, 0xbc, 0x0f, 0xf5, 0xf8, 0x5f, 0x0b,
+	0xf4, 0xa7, 0x0c, 0x54, 0x6e, 0x19, 0x26, 0x3a, 0x5c, 0x58, 0x92, 0x2c, 0x8c, 0xfd, 0xee, 0x47,
+	0x77, 0xc2, 0x88, 0xb1, 0xeb, 0xef, 0xfc, 0xfe, 0xfb, 0x7f, 0xfe, 0x31, 0x5b, 0xd5, 0x2b, 0xc9,
+	0x7f, 0x2a, 0xe1, 0x67, 0x72, 0xa9, 0x92, 0xcf, 0x32, 0x4f, 0x1a, 0x11, 0xec, 0xda, 0x74, 0xb2,
+	0x80, 0xb9, 0x51, 0x49, 0x0f, 0xa7, 0x17, 0xd0, 0x88, 0xf6, 0x32, 0xbf, 0x7e, 0x2a, 0xcd, 0xc7,
+	0x94, 0x1d, 0xc6, 0x35, 0x1a, 0x8c, 0x0f, 0xc6, 0xc4, 0xe3, 0x7f, 0x4f, 0x1c, 0x08, 0x95, 0xe5,
+	0x3b, 0xe1, 0xfc, 0x3f, 0x23, 0x9f, 0x8b, 0xaf, 0xff, 0x64, 0x32, 0x57, 0xeb, 0xdc, 0xf6, 0xa3,
+	0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xf4, 0xbf, 0x21, 0x35, 0xfd, 0x19, 0x00, 0x00,
 }
diff --git a/googleapis/cloud/vision/v1/text_annotation.pb.go b/googleapis/cloud/vision/v1/text_annotation.pb.go
index 566d5967037134f8e9b087b7aaad1b30fa2a3105..ebe524880310dcb53a35411a4c678165e6cfea7e 100644
--- a/googleapis/cloud/vision/v1/text_annotation.pb.go
+++ b/googleapis/cloud/vision/v1/text_annotation.pb.go
@@ -25,10 +25,9 @@ const (
 	TextAnnotation_DetectedBreak_SURE_SPACE TextAnnotation_DetectedBreak_BreakType = 2
 	// Line-wrapping break.
 	TextAnnotation_DetectedBreak_EOL_SURE_SPACE TextAnnotation_DetectedBreak_BreakType = 3
-	// End-line hyphen that is not present in text; does
+	// End-line hyphen that is not present in text; does not co-occur with
+	// `SPACE`, `LEADER_SPACE`, or `LINE_BREAK`.
 	TextAnnotation_DetectedBreak_HYPHEN TextAnnotation_DetectedBreak_BreakType = 4
-	// not co-occur with SPACE, LEADER_SPACE, or
-	// LINE_BREAK.
 	// Line break that ends a paragraph.
 	TextAnnotation_DetectedBreak_LINE_BREAK TextAnnotation_DetectedBreak_BreakType = 5
 )
@@ -101,9 +100,9 @@ func (Block_BlockType) EnumDescriptor() ([]byte, []int) { return fileDescriptor2
 // The hierarchy of an OCR extracted text structure is like this:
 //     TextAnnotation -> Page -> Block -> Paragraph -> Word -> Symbol
 // Each structural component, starting from Page, may further have their own
-// properties. Properties describe detected languages, breaks etc.. Please
-// refer to the [google.cloud.vision.v1.TextAnnotation.TextProperty][google.cloud.vision.v1.TextAnnotation.TextProperty] message
-// definition below for more detail.
+// properties. Properties describe detected languages, breaks etc.. Please refer
+// to the [TextAnnotation.TextProperty][google.cloud.vision.v1.TextAnnotation.TextProperty] message definition below for more
+// detail.
 type TextAnnotation struct {
 	// List of pages detected by OCR.
 	Pages []*Page `protobuf:"bytes,1,rep,name=pages" json:"pages,omitempty"`
@@ -163,6 +162,7 @@ func (m *TextAnnotation_DetectedLanguage) GetConfidence() float32 {
 
 // Detected start or end of a structural component.
 type TextAnnotation_DetectedBreak struct {
+	// Detected break type.
 	Type TextAnnotation_DetectedBreak_BreakType `protobuf:"varint,1,opt,name=type,enum=google.cloud.vision.v1.TextAnnotation_DetectedBreak_BreakType" json:"type,omitempty"`
 	// True if break prepends the element.
 	IsPrefix bool `protobuf:"varint,2,opt,name=is_prefix,json=isPrefix" json:"is_prefix,omitempty"`
@@ -224,6 +224,8 @@ type Page struct {
 	Height int32 `protobuf:"varint,3,opt,name=height" json:"height,omitempty"`
 	// List of blocks of text, images etc on this page.
 	Blocks []*Block `protobuf:"bytes,4,rep,name=blocks" json:"blocks,omitempty"`
+	// Confidence of the OCR results on the page. Range [0, 1].
+	Confidence float32 `protobuf:"fixed32,5,opt,name=confidence" json:"confidence,omitempty"`
 }
 
 func (m *Page) Reset()                    { *m = Page{} }
@@ -259,6 +261,13 @@ func (m *Page) GetBlocks() []*Block {
 	return nil
 }
 
+func (m *Page) GetConfidence() float32 {
+	if m != nil {
+		return m.Confidence
+	}
+	return 0
+}
+
 // Logical element on the page.
 type Block struct {
 	// Additional information detected for the block.
@@ -269,20 +278,27 @@ type Block struct {
 	// is represented as around the top-left corner as defined when the text is
 	// read in the 'natural' orientation.
 	// For example:
-	//   * when the text is horizontal it might look like:
-	//      0----1
-	//      |    |
-	//      3----2
-	//   * when it's rotated 180 degrees around the top-left corner it becomes:
-	//      2----3
-	//      |    |
-	//      1----0
+	//
+	// * when the text is horizontal it might look like:
+	//
+	//         0----1
+	//         |    |
+	//         3----2
+	//
+	// * when it's rotated 180 degrees around the top-left corner it becomes:
+	//
+	//         2----3
+	//         |    |
+	//         1----0
+	//
 	//   and the vertice order will still be (0, 1, 2, 3).
 	BoundingBox *BoundingPoly `protobuf:"bytes,2,opt,name=bounding_box,json=boundingBox" json:"bounding_box,omitempty"`
 	// List of paragraphs in this block (if this blocks is of type text).
 	Paragraphs []*Paragraph `protobuf:"bytes,3,rep,name=paragraphs" json:"paragraphs,omitempty"`
 	// Detected block type (text, image etc) for this block.
 	BlockType Block_BlockType `protobuf:"varint,4,opt,name=block_type,json=blockType,enum=google.cloud.vision.v1.Block_BlockType" json:"block_type,omitempty"`
+	// Confidence of the OCR results on the block. Range [0, 1].
+	Confidence float32 `protobuf:"fixed32,5,opt,name=confidence" json:"confidence,omitempty"`
 }
 
 func (m *Block) Reset()                    { *m = Block{} }
@@ -318,6 +334,13 @@ func (m *Block) GetBlockType() Block_BlockType {
 	return Block_UNKNOWN
 }
 
+func (m *Block) GetConfidence() float32 {
+	if m != nil {
+		return m.Confidence
+	}
+	return 0
+}
+
 // Structural unit of text representing a number of words in certain order.
 type Paragraph struct {
 	// Additional information detected for the paragraph.
@@ -340,6 +363,8 @@ type Paragraph struct {
 	BoundingBox *BoundingPoly `protobuf:"bytes,2,opt,name=bounding_box,json=boundingBox" json:"bounding_box,omitempty"`
 	// List of words in this paragraph.
 	Words []*Word `protobuf:"bytes,3,rep,name=words" json:"words,omitempty"`
+	// Confidence of the OCR results for the paragraph. Range [0, 1].
+	Confidence float32 `protobuf:"fixed32,4,opt,name=confidence" json:"confidence,omitempty"`
 }
 
 func (m *Paragraph) Reset()                    { *m = Paragraph{} }
@@ -368,6 +393,13 @@ func (m *Paragraph) GetWords() []*Word {
 	return nil
 }
 
+func (m *Paragraph) GetConfidence() float32 {
+	if m != nil {
+		return m.Confidence
+	}
+	return 0
+}
+
 // A word representation.
 type Word struct {
 	// Additional information detected for the word.
@@ -391,6 +423,8 @@ type Word struct {
 	// List of symbols in the word.
 	// The order of the symbols follows the natural reading order.
 	Symbols []*Symbol `protobuf:"bytes,3,rep,name=symbols" json:"symbols,omitempty"`
+	// Confidence of the OCR results for the word. Range [0, 1].
+	Confidence float32 `protobuf:"fixed32,4,opt,name=confidence" json:"confidence,omitempty"`
 }
 
 func (m *Word) Reset()                    { *m = Word{} }
@@ -419,6 +453,13 @@ func (m *Word) GetSymbols() []*Symbol {
 	return nil
 }
 
+func (m *Word) GetConfidence() float32 {
+	if m != nil {
+		return m.Confidence
+	}
+	return 0
+}
+
 // A single symbol representation.
 type Symbol struct {
 	// Additional information detected for the symbol.
@@ -441,6 +482,8 @@ type Symbol struct {
 	BoundingBox *BoundingPoly `protobuf:"bytes,2,opt,name=bounding_box,json=boundingBox" json:"bounding_box,omitempty"`
 	// The actual UTF-8 representation of the symbol.
 	Text string `protobuf:"bytes,3,opt,name=text" json:"text,omitempty"`
+	// Confidence of the OCR results for the symbol. Range [0, 1].
+	Confidence float32 `protobuf:"fixed32,4,opt,name=confidence" json:"confidence,omitempty"`
 }
 
 func (m *Symbol) Reset()                    { *m = Symbol{} }
@@ -469,6 +512,13 @@ func (m *Symbol) GetText() string {
 	return ""
 }
 
+func (m *Symbol) GetConfidence() float32 {
+	if m != nil {
+		return m.Confidence
+	}
+	return 0
+}
+
 func init() {
 	proto.RegisterType((*TextAnnotation)(nil), "google.cloud.vision.v1.TextAnnotation")
 	proto.RegisterType((*TextAnnotation_DetectedLanguage)(nil), "google.cloud.vision.v1.TextAnnotation.DetectedLanguage")
@@ -486,52 +536,53 @@ func init() {
 func init() { proto.RegisterFile("google/cloud/vision/v1/text_annotation.proto", fileDescriptor2) }
 
 var fileDescriptor2 = []byte{
-	// 744 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x55, 0x4f, 0x6f, 0xd3, 0x4e,
-	0x10, 0xfd, 0xb9, 0xb1, 0xd3, 0x78, 0xd2, 0x46, 0xfe, 0x2d, 0xa8, 0x8a, 0x42, 0xa9, 0x8a, 0x01,
-	0xd1, 0x03, 0x72, 0xd4, 0x14, 0x04, 0x12, 0x08, 0x29, 0x4e, 0x0d, 0xad, 0x1a, 0x25, 0xd6, 0x36,
-	0x51, 0xf9, 0x73, 0xb0, 0xfc, 0x67, 0xeb, 0x58, 0x4d, 0xbd, 0x96, 0xed, 0xb6, 0xc9, 0x8d, 0x4f,
-	0xc5, 0x89, 0x6f, 0xc1, 0x09, 0xee, 0x9c, 0xb9, 0x72, 0x44, 0x5e, 0xdb, 0x69, 0x52, 0x61, 0x04,
-	0x88, 0x43, 0x2f, 0xd6, 0xce, 0xe4, 0xed, 0xdb, 0xf7, 0x66, 0x33, 0x3b, 0xf0, 0xd0, 0xa5, 0xd4,
-	0x1d, 0x93, 0xa6, 0x3d, 0xa6, 0x67, 0x4e, 0xf3, 0xdc, 0x8b, 0x3c, 0xea, 0x37, 0xcf, 0xb7, 0x9b,
-	0x31, 0x99, 0xc4, 0x86, 0xe9, 0xfb, 0x34, 0x36, 0x63, 0x8f, 0xfa, 0x4a, 0x10, 0xd2, 0x98, 0xa2,
-	0xb5, 0x14, 0xad, 0x30, 0xb4, 0x92, 0xa2, 0x95, 0xf3, 0xed, 0xc6, 0x7a, 0xc6, 0x62, 0x06, 0x5e,
-	0xf3, 0x72, 0x53, 0x94, 0xee, 0x6a, 0xdc, 0x2f, 0x38, 0xc3, 0x25, 0xf4, 0x94, 0xc4, 0xe1, 0x34,
-	0x85, 0xc9, 0xdf, 0x78, 0xa8, 0x0d, 0xc8, 0x24, 0x6e, 0xcf, 0x08, 0x50, 0x0b, 0x84, 0xc0, 0x74,
-	0x49, 0x54, 0xe7, 0x36, 0x4b, 0x5b, 0xd5, 0xd6, 0xba, 0xf2, 0xf3, 0xf3, 0x15, 0xdd, 0x74, 0x09,
-	0x4e, 0xa1, 0x08, 0x01, 0x9f, 0x88, 0xaf, 0x2f, 0x6d, 0x72, 0x5b, 0x22, 0x66, 0xeb, 0xc6, 0x11,
-	0x48, 0xbb, 0x24, 0x26, 0x76, 0x4c, 0x9c, 0xae, 0xe9, 0xbb, 0x67, 0xa6, 0x4b, 0xd0, 0x5d, 0x58,
-	0x1d, 0x67, 0x6b, 0xc3, 0xa6, 0x0e, 0xa9, 0x73, 0x6c, 0xc3, 0x4a, 0x9e, 0xec, 0x50, 0x87, 0xa0,
-	0x0d, 0x00, 0x9b, 0xfa, 0xc7, 0x9e, 0x43, 0x7c, 0x9b, 0x30, 0xca, 0x25, 0x3c, 0x97, 0x69, 0x7c,
-	0xe5, 0x60, 0x35, 0x67, 0x56, 0x43, 0x62, 0x9e, 0x20, 0x0c, 0x7c, 0x3c, 0x0d, 0x52, 0xb6, 0x5a,
-	0xeb, 0x45, 0x91, 0xe2, 0x45, 0xa3, 0xca, 0x02, 0x87, 0xc2, 0xbe, 0x83, 0x69, 0x40, 0x30, 0xe3,
-	0x42, 0xb7, 0x40, 0xf4, 0x22, 0x23, 0x08, 0xc9, 0xb1, 0x37, 0x61, 0x22, 0x2a, 0xb8, 0xe2, 0x45,
-	0x3a, 0x8b, 0x65, 0x1b, 0xc4, 0x19, 0x1e, 0x55, 0x61, 0x79, 0xd8, 0x3b, 0xe8, 0xf5, 0x8f, 0x7a,
-	0xd2, 0x7f, 0x48, 0x04, 0xe1, 0x50, 0x6f, 0x77, 0x34, 0x89, 0x43, 0x35, 0x80, 0xc3, 0x21, 0xd6,
-	0x8c, 0x34, 0x5e, 0x42, 0x08, 0x6a, 0x5a, 0xbf, 0x6b, 0xcc, 0xe5, 0x4a, 0x08, 0xa0, 0xbc, 0xf7,
-	0x46, 0xdf, 0xd3, 0x7a, 0x12, 0x9f, 0xe0, 0xbb, 0xfb, 0x3d, 0xcd, 0x50, 0xb1, 0xd6, 0x3e, 0x90,
-	0x84, 0xc6, 0x27, 0x0e, 0x56, 0x12, 0xc9, 0x7a, 0x48, 0x03, 0x12, 0xc6, 0x53, 0x74, 0x0c, 0xc8,
-	0xc9, 0x34, 0x1b, 0x79, 0xc5, 0xf2, 0x6b, 0x7a, 0xf2, 0x87, 0xa6, 0xf3, 0x2b, 0xc1, 0xff, 0x3b,
-	0x57, 0x32, 0x11, 0x7a, 0x07, 0xb5, 0xd9, 0x39, 0x56, 0x62, 0x93, 0xf9, 0xaf, 0xb6, 0x1e, 0xfd,
-	0x4d, 0x61, 0xf1, 0xaa, 0x33, 0x1f, 0xca, 0x1f, 0x39, 0xe0, 0x93, 0xbf, 0x0e, 0xea, 0x43, 0x25,
-	0xc8, 0x9c, 0xb1, 0x8b, 0xab, 0xb6, 0x76, 0x7e, 0x93, 0x7f, 0xbe, 0x28, 0x78, 0x46, 0x82, 0x6e,
-	0x82, 0x70, 0xe1, 0x39, 0xf1, 0x88, 0xa9, 0x15, 0x70, 0x1a, 0xa0, 0x35, 0x28, 0x8f, 0x88, 0xe7,
-	0x8e, 0xe2, 0x7a, 0x89, 0xa5, 0xb3, 0x08, 0x3d, 0x86, 0xb2, 0x35, 0xa6, 0xf6, 0x49, 0x54, 0xe7,
-	0x59, 0x01, 0x6f, 0x17, 0x1d, 0xae, 0x26, 0x28, 0x9c, 0x81, 0xe5, 0xf7, 0x25, 0x10, 0x58, 0xe6,
-	0xdf, 0xeb, 0x7f, 0x05, 0x2b, 0x16, 0x3d, 0xf3, 0x1d, 0xcf, 0x77, 0x0d, 0x8b, 0x4e, 0xb2, 0xa2,
-	0xdf, 0x2b, 0xd4, 0x95, 0x61, 0x75, 0x3a, 0x9e, 0xe2, 0x6a, 0xbe, 0x53, 0xa5, 0x13, 0xd4, 0x06,
-	0x08, 0xcc, 0xd0, 0x74, 0x43, 0x33, 0x18, 0x45, 0xf5, 0x12, 0xb3, 0x77, 0xa7, 0xb8, 0x8d, 0x33,
-	0x24, 0x9e, 0xdb, 0x84, 0x5e, 0x02, 0x30, 0xc3, 0x06, 0xeb, 0x2b, 0x9e, 0xf5, 0xd5, 0x83, 0x5f,
-	0x56, 0x28, 0xfd, 0xb2, 0x06, 0x12, 0xad, 0x7c, 0x29, 0x63, 0x10, 0x67, 0xf9, 0xc5, 0x46, 0xa9,
-	0x00, 0x3f, 0xd0, 0x5e, 0x0f, 0x24, 0x2e, 0x69, 0x99, 0x41, 0x5b, 0xed, 0x26, 0x2d, 0x52, 0x85,
-	0x65, 0x7d, 0xbf, 0x33, 0x18, 0xe2, 0xa4, 0x37, 0x44, 0x10, 0xf0, 0xb0, 0xab, 0x61, 0x89, 0x4f,
-	0xf2, 0x6a, 0x1b, 0x77, 0xfa, 0xbb, 0x9a, 0x24, 0xc8, 0x9f, 0x39, 0x10, 0x67, 0xaa, 0xaf, 0xf1,
-	0x35, 0xb4, 0x40, 0xb8, 0xa0, 0xa1, 0x93, 0xdf, 0x40, 0xe1, 0x43, 0x7a, 0x44, 0x43, 0x07, 0xa7,
-	0x50, 0xf9, 0x0b, 0x07, 0x7c, 0x12, 0x5f, 0x63, 0x5b, 0x4f, 0x61, 0x39, 0x9a, 0x9e, 0x5a, 0x74,
-	0x9c, 0x1b, 0xdb, 0x28, 0xe2, 0x38, 0x64, 0x30, 0x9c, 0xc3, 0xe5, 0x0f, 0x1c, 0x94, 0xd3, 0xdc,
-	0x35, 0xb6, 0x97, 0x8f, 0xb2, 0xd2, 0xe5, 0x28, 0x53, 0x63, 0x68, 0xd8, 0xf4, 0xb4, 0x80, 0x4b,
-	0xbd, 0xb1, 0xa8, 0x50, 0x4f, 0x06, 0xab, 0xce, 0xbd, 0x7d, 0x9e, 0xc1, 0x5d, 0x9a, 0xbc, 0xd5,
-	0x0a, 0x0d, 0xdd, 0xa6, 0x4b, 0x7c, 0x36, 0x76, 0x9b, 0xe9, 0x4f, 0x66, 0xe0, 0x45, 0x57, 0x07,
-	0xf4, 0xb3, 0x74, 0xf5, 0x9d, 0xe3, 0xac, 0x32, 0xc3, 0xee, 0xfc, 0x08, 0x00, 0x00, 0xff, 0xff,
-	0x80, 0x29, 0x2a, 0x3b, 0x2f, 0x08, 0x00, 0x00,
+	// 763 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xcf, 0x6f, 0xd3, 0x4a,
+	0x10, 0x7e, 0x6e, 0xec, 0x34, 0x9e, 0xb4, 0x91, 0xdf, 0xbe, 0xa7, 0x2a, 0x0a, 0xa5, 0x2a, 0x01,
+	0x44, 0x0f, 0xc8, 0x51, 0x53, 0x10, 0x48, 0x20, 0xa4, 0x38, 0x35, 0xb4, 0x6a, 0x94, 0x58, 0xdb,
+	0x44, 0xe5, 0xc7, 0xc1, 0xf2, 0x8f, 0xad, 0x63, 0x35, 0xf5, 0x5a, 0xb6, 0xdb, 0x26, 0xff, 0x0d,
+	0xff, 0x13, 0x12, 0x27, 0xae, 0x9c, 0xb9, 0x02, 0x27, 0xe4, 0xb5, 0x9d, 0x26, 0x01, 0x53, 0x40,
+	0x1c, 0x7a, 0xb1, 0x76, 0x26, 0xdf, 0x7c, 0x33, 0xdf, 0x8c, 0x27, 0x6b, 0xb8, 0xef, 0x50, 0xea,
+	0x8c, 0x48, 0xc3, 0x1a, 0xd1, 0x33, 0xbb, 0x71, 0xee, 0x86, 0x2e, 0xf5, 0x1a, 0xe7, 0xdb, 0x8d,
+	0x88, 0x8c, 0x23, 0xdd, 0xf0, 0x3c, 0x1a, 0x19, 0x91, 0x4b, 0x3d, 0xd9, 0x0f, 0x68, 0x44, 0xd1,
+	0x5a, 0x82, 0x96, 0x19, 0x5a, 0x4e, 0xd0, 0xf2, 0xf9, 0x76, 0x6d, 0x3d, 0x65, 0x31, 0x7c, 0xb7,
+	0x71, 0x19, 0x14, 0x26, 0x51, 0xb5, 0xbb, 0x39, 0x39, 0x1c, 0x42, 0x4f, 0x49, 0x14, 0x4c, 0x12,
+	0x58, 0xfd, 0x13, 0x0f, 0x95, 0x3e, 0x19, 0x47, 0xad, 0x29, 0x01, 0x6a, 0x82, 0xe0, 0x1b, 0x0e,
+	0x09, 0xab, 0xdc, 0x66, 0x61, 0xab, 0xdc, 0x5c, 0x97, 0x7f, 0x9c, 0x5f, 0xd6, 0x0c, 0x87, 0xe0,
+	0x04, 0x8a, 0x10, 0xf0, 0x71, 0xf1, 0xd5, 0xa5, 0x4d, 0x6e, 0x4b, 0xc4, 0xec, 0x5c, 0x3b, 0x02,
+	0x69, 0x97, 0x44, 0xc4, 0x8a, 0x88, 0xdd, 0x31, 0x3c, 0xe7, 0xcc, 0x70, 0x08, 0xba, 0x0d, 0xab,
+	0xa3, 0xf4, 0xac, 0x5b, 0xd4, 0x26, 0x55, 0x8e, 0x05, 0xac, 0x64, 0xce, 0x36, 0xb5, 0x09, 0xda,
+	0x00, 0xb0, 0xa8, 0x77, 0xec, 0xda, 0xc4, 0xb3, 0x08, 0xa3, 0x5c, 0xc2, 0x33, 0x9e, 0xda, 0x47,
+	0x0e, 0x56, 0x33, 0x66, 0x25, 0x20, 0xc6, 0x09, 0xc2, 0xc0, 0x47, 0x13, 0x3f, 0x61, 0xab, 0x34,
+	0x9f, 0xe5, 0x55, 0x3c, 0x2f, 0x54, 0x9e, 0xe3, 0x90, 0xd9, 0xb3, 0x3f, 0xf1, 0x09, 0x66, 0x5c,
+	0xe8, 0x06, 0x88, 0x6e, 0xa8, 0xfb, 0x01, 0x39, 0x76, 0xc7, 0xac, 0x88, 0x12, 0x2e, 0xb9, 0xa1,
+	0xc6, 0xec, 0xba, 0x05, 0xe2, 0x14, 0x8f, 0xca, 0xb0, 0x3c, 0xe8, 0x1e, 0x74, 0x7b, 0x47, 0x5d,
+	0xe9, 0x1f, 0x24, 0x82, 0x70, 0xa8, 0xb5, 0xda, 0xaa, 0xc4, 0xa1, 0x0a, 0xc0, 0xe1, 0x00, 0xab,
+	0x7a, 0x62, 0x2f, 0x21, 0x04, 0x15, 0xb5, 0xd7, 0xd1, 0x67, 0x7c, 0x05, 0x04, 0x50, 0xdc, 0x7b,
+	0xa5, 0xed, 0xa9, 0x5d, 0x89, 0x8f, 0xf1, 0x9d, 0xfd, 0xae, 0xaa, 0x2b, 0x58, 0x6d, 0x1d, 0x48,
+	0x42, 0xed, 0x1d, 0x07, 0x2b, 0x71, 0xc9, 0x5a, 0x40, 0x7d, 0x12, 0x44, 0x13, 0x74, 0x0c, 0xc8,
+	0x4e, 0x6b, 0xd6, 0xb3, 0x8e, 0x65, 0x63, 0x7a, 0xf4, 0x9b, 0xa2, 0xb3, 0x91, 0xe0, 0x7f, 0xed,
+	0x05, 0x4f, 0x88, 0xde, 0x40, 0x65, 0x9a, 0xc7, 0x8c, 0x65, 0x32, 0xfd, 0xe5, 0xe6, 0x83, 0x3f,
+	0x69, 0x2c, 0x5e, 0xb5, 0x67, 0xcd, 0xfa, 0x07, 0x0e, 0xf8, 0xf8, 0xd5, 0x41, 0x3d, 0x28, 0xf9,
+	0xa9, 0x32, 0x36, 0xb8, 0x72, 0x73, 0xe7, 0x17, 0xf9, 0x67, 0x9b, 0x82, 0xa7, 0x24, 0xe8, 0x7f,
+	0x10, 0x2e, 0x5c, 0x3b, 0x1a, 0xb2, 0x6a, 0x05, 0x9c, 0x18, 0x68, 0x0d, 0x8a, 0x43, 0xe2, 0x3a,
+	0xc3, 0xa8, 0x5a, 0x60, 0xee, 0xd4, 0x42, 0x0f, 0xa1, 0x68, 0x8e, 0xa8, 0x75, 0x12, 0x56, 0x79,
+	0xd6, 0xc0, 0x9b, 0x79, 0xc9, 0x95, 0x18, 0x85, 0x53, 0xf0, 0xc2, 0xcb, 0x29, 0x2c, 0xbe, 0x9c,
+	0xf5, 0xb7, 0x05, 0x10, 0x58, 0xc4, 0xdf, 0xd7, 0xf7, 0x02, 0x56, 0x4c, 0x7a, 0xe6, 0xd9, 0xae,
+	0xe7, 0xe8, 0x26, 0x1d, 0xa7, 0x43, 0xb9, 0x93, 0x5b, 0x77, 0x8a, 0xd5, 0xe8, 0x68, 0x82, 0xcb,
+	0x59, 0xa4, 0x42, 0xc7, 0xa8, 0x05, 0xe0, 0x1b, 0x81, 0xe1, 0x04, 0x86, 0x3f, 0x0c, 0xab, 0x05,
+	0x26, 0xff, 0x56, 0xfe, 0x9a, 0xa7, 0x48, 0x3c, 0x13, 0x84, 0x9e, 0x03, 0xb0, 0x86, 0xe8, 0x6c,
+	0xef, 0x78, 0xb6, 0x77, 0xf7, 0x7e, 0xda, 0xc1, 0xe4, 0xc9, 0x16, 0x4c, 0x34, 0xb3, 0xe3, 0x95,
+	0xed, 0xc4, 0x20, 0x4e, 0xe3, 0xe6, 0x17, 0xad, 0x04, 0x7c, 0x5f, 0x7d, 0xd9, 0x97, 0xb8, 0x78,
+	0xe5, 0xfa, 0x2d, 0xa5, 0x13, 0xaf, 0x58, 0x19, 0x96, 0xb5, 0xfd, 0x76, 0x7f, 0x80, 0xe3, 0xdd,
+	0x12, 0x41, 0xc0, 0x83, 0x8e, 0x8a, 0x25, 0x3e, 0xf6, 0x2b, 0x2d, 0xdc, 0xee, 0xed, 0xaa, 0x92,
+	0x50, 0xff, 0xc2, 0x81, 0x38, 0x55, 0x75, 0x8d, 0xc7, 0xd4, 0x04, 0xe1, 0x82, 0x06, 0x76, 0x36,
+	0xa1, 0xdc, 0x3f, 0xe2, 0x23, 0x1a, 0xd8, 0x38, 0x81, 0x2e, 0xf4, 0x93, 0xff, 0xae, 0x9f, 0x5f,
+	0x39, 0xe0, 0x63, 0xfc, 0x35, 0x96, 0xfd, 0x18, 0x96, 0xc3, 0xc9, 0xa9, 0x49, 0x47, 0x99, 0xf0,
+	0x8d, 0x3c, 0x8e, 0x43, 0x06, 0xc3, 0x19, 0xfc, 0x4a, 0xf1, 0xef, 0x39, 0x28, 0x26, 0x31, 0xd7,
+	0x58, 0x7e, 0x76, 0x95, 0x16, 0x2e, 0xaf, 0xd2, 0xab, 0x84, 0x29, 0x11, 0xd4, 0x2c, 0x7a, 0x9a,
+	0x93, 0x4b, 0xf9, 0x6f, 0x5e, 0x81, 0x16, 0x5f, 0xfc, 0x1a, 0xf7, 0xfa, 0x69, 0x0a, 0x77, 0x68,
+	0x7c, 0x97, 0xc8, 0x34, 0x70, 0x1a, 0x0e, 0xf1, 0xd8, 0x67, 0x41, 0x23, 0xf9, 0xc9, 0xf0, 0xdd,
+	0x70, 0xf1, 0x03, 0xe2, 0x49, 0x72, 0xfa, 0xcc, 0x71, 0x66, 0x91, 0x61, 0x77, 0xbe, 0x05, 0x00,
+	0x00, 0xff, 0xff, 0x3f, 0x4a, 0xe7, 0xb0, 0xcf, 0x08, 0x00, 0x00,
 }
diff --git a/googleapis/cloud/vision/v1/web_detection.pb.go b/googleapis/cloud/vision/v1/web_detection.pb.go
index 2f4089cf4c2a1da8717fc474b1f621b989f209e5..921ce4a9a86a97b3511e37201b76d81304619f37 100644
--- a/googleapis/cloud/vision/v1/web_detection.pb.go
+++ b/googleapis/cloud/vision/v1/web_detection.pb.go
@@ -18,8 +18,7 @@ type WebDetection struct {
 	// Deduced entities from similar images on the Internet.
 	WebEntities []*WebDetection_WebEntity `protobuf:"bytes,1,rep,name=web_entities,json=webEntities" json:"web_entities,omitempty"`
 	// Fully matching images from the Internet.
-	// They're definite neardups and most often a copy of the query image with
-	// merely a size change.
+	// Can include resized copies of the query image.
 	FullMatchingImages []*WebDetection_WebImage `protobuf:"bytes,2,rep,name=full_matching_images,json=fullMatchingImages" json:"full_matching_images,omitempty"`
 	// Partial matching images from the Internet.
 	// Those images are similar enough to share some key-point features. For
@@ -27,6 +26,10 @@ type WebDetection struct {
 	PartialMatchingImages []*WebDetection_WebImage `protobuf:"bytes,3,rep,name=partial_matching_images,json=partialMatchingImages" json:"partial_matching_images,omitempty"`
 	// Web pages containing the matching images from the Internet.
 	PagesWithMatchingImages []*WebDetection_WebPage `protobuf:"bytes,4,rep,name=pages_with_matching_images,json=pagesWithMatchingImages" json:"pages_with_matching_images,omitempty"`
+	// The visually similar image results.
+	VisuallySimilarImages []*WebDetection_WebImage `protobuf:"bytes,6,rep,name=visually_similar_images,json=visuallySimilarImages" json:"visually_similar_images,omitempty"`
+	// Best guess text labels for the request image.
+	BestGuessLabels []*WebDetection_WebLabel `protobuf:"bytes,8,rep,name=best_guess_labels,json=bestGuessLabels" json:"best_guess_labels,omitempty"`
 }
 
 func (m *WebDetection) Reset()                    { *m = WebDetection{} }
@@ -62,6 +65,20 @@ func (m *WebDetection) GetPagesWithMatchingImages() []*WebDetection_WebPage {
 	return nil
 }
 
+func (m *WebDetection) GetVisuallySimilarImages() []*WebDetection_WebImage {
+	if m != nil {
+		return m.VisuallySimilarImages
+	}
+	return nil
+}
+
+func (m *WebDetection) GetBestGuessLabels() []*WebDetection_WebLabel {
+	if m != nil {
+		return m.BestGuessLabels
+	}
+	return nil
+}
+
 // Entity deduced from similar images on the Internet.
 type WebDetection_WebEntity struct {
 	// Opaque entity ID.
@@ -103,8 +120,7 @@ func (m *WebDetection_WebEntity) GetDescription() string {
 type WebDetection_WebImage struct {
 	// The result image URL.
 	Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
-	// Overall relevancy score for the image.
-	// Not normalized and not comparable across different image queries.
+	// (Deprecated) Overall relevancy score for the image.
 	Score float32 `protobuf:"fixed32,2,opt,name=score" json:"score,omitempty"`
 }
 
@@ -131,9 +147,18 @@ func (m *WebDetection_WebImage) GetScore() float32 {
 type WebDetection_WebPage struct {
 	// The result web page URL.
 	Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
-	// Overall relevancy score for the web page.
-	// Not normalized and not comparable across different image queries.
+	// (Deprecated) Overall relevancy score for the web page.
 	Score float32 `protobuf:"fixed32,2,opt,name=score" json:"score,omitempty"`
+	// Title for the web page, may contain HTML markups.
+	PageTitle string `protobuf:"bytes,3,opt,name=page_title,json=pageTitle" json:"page_title,omitempty"`
+	// Fully matching images on the page.
+	// Can include resized copies of the query image.
+	FullMatchingImages []*WebDetection_WebImage `protobuf:"bytes,4,rep,name=full_matching_images,json=fullMatchingImages" json:"full_matching_images,omitempty"`
+	// Partial matching images on the page.
+	// Those images are similar enough to share some key-point features. For
+	// example an original image will likely have partial matching for its
+	// crops.
+	PartialMatchingImages []*WebDetection_WebImage `protobuf:"bytes,5,rep,name=partial_matching_images,json=partialMatchingImages" json:"partial_matching_images,omitempty"`
 }
 
 func (m *WebDetection_WebPage) Reset()                    { *m = WebDetection_WebPage{} }
@@ -155,39 +180,98 @@ func (m *WebDetection_WebPage) GetScore() float32 {
 	return 0
 }
 
+func (m *WebDetection_WebPage) GetPageTitle() string {
+	if m != nil {
+		return m.PageTitle
+	}
+	return ""
+}
+
+func (m *WebDetection_WebPage) GetFullMatchingImages() []*WebDetection_WebImage {
+	if m != nil {
+		return m.FullMatchingImages
+	}
+	return nil
+}
+
+func (m *WebDetection_WebPage) GetPartialMatchingImages() []*WebDetection_WebImage {
+	if m != nil {
+		return m.PartialMatchingImages
+	}
+	return nil
+}
+
+// Label to provide extra metadata for the web detection.
+type WebDetection_WebLabel struct {
+	// Label for extra metadata.
+	Label string `protobuf:"bytes,1,opt,name=label" json:"label,omitempty"`
+	// The BCP-47 language code for `label`, such as "en-US" or "sr-Latn".
+	// For more information, see
+	// http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
+	LanguageCode string `protobuf:"bytes,2,opt,name=language_code,json=languageCode" json:"language_code,omitempty"`
+}
+
+func (m *WebDetection_WebLabel) Reset()                    { *m = WebDetection_WebLabel{} }
+func (m *WebDetection_WebLabel) String() string            { return proto.CompactTextString(m) }
+func (*WebDetection_WebLabel) ProtoMessage()               {}
+func (*WebDetection_WebLabel) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{0, 3} }
+
+func (m *WebDetection_WebLabel) GetLabel() string {
+	if m != nil {
+		return m.Label
+	}
+	return ""
+}
+
+func (m *WebDetection_WebLabel) GetLanguageCode() string {
+	if m != nil {
+		return m.LanguageCode
+	}
+	return ""
+}
+
 func init() {
 	proto.RegisterType((*WebDetection)(nil), "google.cloud.vision.v1.WebDetection")
 	proto.RegisterType((*WebDetection_WebEntity)(nil), "google.cloud.vision.v1.WebDetection.WebEntity")
 	proto.RegisterType((*WebDetection_WebImage)(nil), "google.cloud.vision.v1.WebDetection.WebImage")
 	proto.RegisterType((*WebDetection_WebPage)(nil), "google.cloud.vision.v1.WebDetection.WebPage")
+	proto.RegisterType((*WebDetection_WebLabel)(nil), "google.cloud.vision.v1.WebDetection.WebLabel")
 }
 
 func init() { proto.RegisterFile("google/cloud/vision/v1/web_detection.proto", fileDescriptor3) }
 
 var fileDescriptor3 = []byte{
-	// 383 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x41, 0x4f, 0xea, 0x40,
-	0x14, 0x85, 0x53, 0xca, 0x7b, 0x0f, 0x06, 0x16, 0xcf, 0x09, 0x4a, 0x53, 0x5d, 0x34, 0xae, 0x88,
-	0xd1, 0x69, 0xc0, 0xa5, 0xae, 0x88, 0x2e, 0x58, 0x98, 0x60, 0x37, 0x24, 0x6e, 0xea, 0xd0, 0x8e,
-	0xc3, 0x4d, 0xca, 0x4c, 0xd3, 0x19, 0x20, 0xfc, 0x58, 0xff, 0x87, 0x4b, 0x33, 0xd3, 0x62, 0x10,
-	0x30, 0x21, 0xee, 0xee, 0xdc, 0x9e, 0xf3, 0x9d, 0xf6, 0xf6, 0x0e, 0xba, 0xe2, 0x52, 0xf2, 0x8c,
-	0x85, 0x49, 0x26, 0x17, 0x69, 0xb8, 0x04, 0x05, 0x52, 0x84, 0xcb, 0x7e, 0xb8, 0x62, 0xd3, 0x38,
-	0x65, 0x9a, 0x25, 0x1a, 0xa4, 0x20, 0x79, 0x21, 0xb5, 0xc4, 0x67, 0xa5, 0x96, 0x58, 0x2d, 0x29,
-	0xb5, 0x64, 0xd9, 0xf7, 0x2f, 0x2a, 0x06, 0xcd, 0x21, 0xa4, 0x42, 0x48, 0x4d, 0x8d, 0x49, 0x95,
-	0xae, 0xcb, 0xf7, 0x3a, 0x6a, 0x4f, 0xd8, 0xf4, 0x61, 0x03, 0xc3, 0xcf, 0xa8, 0x6d, 0xe8, 0x4c,
-	0x68, 0xd0, 0xc0, 0x94, 0xe7, 0x04, 0x6e, 0xaf, 0x35, 0x20, 0xe4, 0x30, 0x9d, 0x6c, 0x7b, 0xcd,
-	0xe1, 0xd1, 0xf8, 0xd6, 0x51, 0x6b, 0x55, 0x95, 0xc0, 0x14, 0x8e, 0x51, 0xe7, 0x6d, 0x91, 0x65,
-	0xf1, 0x9c, 0xea, 0x64, 0x06, 0x82, 0xc7, 0x30, 0xa7, 0x9c, 0x29, 0xaf, 0x66, 0xd1, 0x37, 0xc7,
-	0xa2, 0x47, 0xc6, 0x15, 0x61, 0x83, 0x7a, 0xaa, 0x48, 0xb6, 0xa5, 0x30, 0x43, 0xdd, 0x9c, 0x16,
-	0x1a, 0xe8, 0x7e, 0x86, 0xfb, 0x9b, 0x8c, 0xd3, 0x8a, 0xb6, 0x13, 0x03, 0xc8, 0xcf, 0x4d, 0x11,
-	0xaf, 0x40, 0xcf, 0xf6, 0x92, 0xea, 0x36, 0xe9, 0xfa, 0xd8, 0xa4, 0xb1, 0x09, 0xea, 0x5a, 0xde,
-	0x04, 0xf4, 0xec, 0x7b, 0x94, 0xff, 0x8a, 0x9a, 0x5f, 0xc3, 0xc4, 0xe7, 0xa8, 0x69, 0x7f, 0xc7,
-	0x3a, 0x86, 0xd4, 0x73, 0x02, 0xa7, 0xd7, 0x8c, 0x1a, 0x65, 0x63, 0x94, 0xe2, 0x0e, 0xfa, 0xa3,
-	0x12, 0x59, 0x30, 0xaf, 0x16, 0x38, 0xbd, 0x5a, 0x54, 0x1e, 0x70, 0x80, 0x5a, 0x29, 0x53, 0x49,
-	0x01, 0xb9, 0xc9, 0xf3, 0x5c, 0x6b, 0xda, 0x6e, 0xf9, 0x03, 0xd4, 0xd8, 0x7c, 0x2f, 0xfe, 0x8f,
-	0xdc, 0x45, 0x91, 0x55, 0x68, 0x53, 0x1e, 0xa6, 0xfa, 0x7d, 0xf4, 0xaf, 0x7a, 0xf3, 0x63, 0x2d,
-	0xc3, 0x02, 0xf9, 0x89, 0x9c, 0xff, 0x30, 0x94, 0xe1, 0xc9, 0xf6, 0x54, 0xc6, 0x66, 0x21, 0xc7,
-	0xce, 0xcb, 0x7d, 0x25, 0xe6, 0x32, 0xa3, 0x82, 0x13, 0x59, 0xf0, 0x90, 0x33, 0x61, 0xd7, 0x35,
-	0x2c, 0x1f, 0xd1, 0x1c, 0xd4, 0xee, 0x9d, 0xb8, 0x2b, 0xab, 0x0f, 0xc7, 0x99, 0xfe, 0xb5, 0xda,
-	0xdb, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x66, 0xd9, 0xde, 0x3f, 0x3e, 0x03, 0x00, 0x00,
+	// 505 bytes of a gzipped FileDescriptorProto
+	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0xd1, 0x8b, 0xd3, 0x4e,
+	0x10, 0xc7, 0x49, 0x7b, 0x77, 0xbf, 0x76, 0xdb, 0x1f, 0x7a, 0xcb, 0xe9, 0x85, 0xa8, 0x50, 0xf4,
+	0xa5, 0x88, 0x26, 0xdc, 0xf9, 0xa8, 0x4f, 0xa7, 0x87, 0x1c, 0x28, 0xd4, 0x28, 0x1c, 0xfa, 0xb2,
+	0x6e, 0x92, 0x35, 0x1d, 0xd8, 0x66, 0x43, 0x76, 0xd3, 0xd2, 0xff, 0xc4, 0xbf, 0xca, 0xbf, 0xc7,
+	0x47, 0x99, 0xdd, 0x8d, 0x94, 0xeb, 0x1d, 0xd4, 0x43, 0x7c, 0x9b, 0x99, 0xcc, 0xf7, 0xf3, 0xdd,
+	0x9d, 0x0c, 0x4b, 0x9e, 0x96, 0x4a, 0x95, 0x52, 0x24, 0xb9, 0x54, 0x6d, 0x91, 0x2c, 0x41, 0x83,
+	0xaa, 0x92, 0xe5, 0x49, 0xb2, 0x12, 0x19, 0x2b, 0x84, 0x11, 0xb9, 0x01, 0x55, 0xc5, 0x75, 0xa3,
+	0x8c, 0xa2, 0xf7, 0x5d, 0x6f, 0x6c, 0x7b, 0x63, 0xd7, 0x1b, 0x2f, 0x4f, 0xa2, 0x87, 0x9e, 0xc1,
+	0x6b, 0x48, 0x78, 0x55, 0x29, 0xc3, 0x51, 0xa4, 0x9d, 0xea, 0xf1, 0x8f, 0x01, 0x19, 0x5f, 0x8a,
+	0xec, 0x4d, 0x07, 0xa3, 0x1f, 0xc8, 0x18, 0xe9, 0xa2, 0x32, 0x60, 0x40, 0xe8, 0x30, 0x98, 0xf4,
+	0xa7, 0xa3, 0xd3, 0x38, 0xbe, 0x9e, 0x1e, 0x6f, 0x6a, 0x31, 0x39, 0x47, 0xdd, 0x3a, 0x1d, 0xad,
+	0x7c, 0x08, 0x42, 0x53, 0x46, 0x8e, 0xbe, 0xb5, 0x52, 0xb2, 0x05, 0x37, 0xf9, 0x1c, 0xaa, 0x92,
+	0xc1, 0x82, 0x97, 0x42, 0x87, 0x3d, 0x8b, 0x7e, 0xbe, 0x2b, 0xfa, 0x02, 0x55, 0x29, 0x45, 0xd4,
+	0x7b, 0x4f, 0xb2, 0x25, 0x4d, 0x05, 0x39, 0xae, 0x79, 0x63, 0x80, 0x6f, 0x7b, 0xf4, 0x6f, 0xe3,
+	0x71, 0xcf, 0xd3, 0xae, 0xd8, 0x00, 0x89, 0x6a, 0x0c, 0xd8, 0x0a, 0xcc, 0x7c, 0xcb, 0x69, 0xcf,
+	0x3a, 0x3d, 0xdb, 0xd5, 0x69, 0x86, 0x46, 0xc7, 0x96, 0x77, 0x09, 0x66, 0xbe, 0x7d, 0xa3, 0x25,
+	0xe8, 0x96, 0x4b, 0xb9, 0x66, 0x1a, 0x16, 0x20, 0x79, 0xd3, 0xf9, 0x1c, 0xdc, 0xea, 0x46, 0x1d,
+	0xed, 0xa3, 0x83, 0x79, 0x9b, 0xcf, 0xe4, 0x30, 0x13, 0xda, 0xb0, 0xb2, 0x15, 0x5a, 0x33, 0xc9,
+	0x33, 0x21, 0x75, 0x38, 0xf8, 0x33, 0x83, 0x77, 0xa8, 0x4a, 0xef, 0x20, 0xe7, 0x2d, 0x62, 0x6c,
+	0xae, 0xa3, 0xaf, 0x64, 0xf8, 0x7b, 0x1d, 0xe8, 0x03, 0x32, 0xb4, 0x0b, 0xb5, 0x66, 0x50, 0x84,
+	0xc1, 0x24, 0x98, 0x0e, 0xd3, 0x81, 0x2b, 0x5c, 0x14, 0xf4, 0x88, 0xec, 0xeb, 0x5c, 0x35, 0x22,
+	0xec, 0x4d, 0x82, 0x69, 0x2f, 0x75, 0x09, 0x9d, 0x90, 0x51, 0x21, 0x74, 0xde, 0x40, 0x8d, 0x46,
+	0x61, 0xdf, 0x8a, 0x36, 0x4b, 0xd1, 0x29, 0x19, 0x74, 0xf7, 0xa3, 0x77, 0x49, 0xbf, 0x6d, 0xa4,
+	0x47, 0x63, 0x78, 0x3d, 0x35, 0xfa, 0xde, 0x23, 0xff, 0xf9, 0xe1, 0xef, 0xaa, 0xa1, 0x8f, 0x08,
+	0xc1, 0xdf, 0xc4, 0x0c, 0x18, 0x29, 0xfc, 0x41, 0x86, 0x58, 0xf9, 0x84, 0x85, 0x1b, 0xb7, 0x7b,
+	0xef, 0x1f, 0x6c, 0xf7, 0xfe, 0xdf, 0xdb, 0xee, 0xe8, 0xdc, 0x8e, 0xd3, 0xfe, 0x3d, 0x1c, 0x84,
+	0x5d, 0x06, 0x3f, 0x1c, 0x97, 0xd0, 0x27, 0xe4, 0x7f, 0xc9, 0xab, 0xb2, 0xc5, 0x61, 0xe4, 0xaa,
+	0x70, 0x63, 0x1a, 0xa6, 0xe3, 0xae, 0xf8, 0x5a, 0x15, 0xe2, 0xac, 0x21, 0x51, 0xae, 0x16, 0x37,
+	0x9c, 0xe8, 0xec, 0x70, 0xf3, 0x48, 0x33, 0x7c, 0x81, 0x66, 0xc1, 0x97, 0x57, 0xbe, 0xb9, 0x54,
+	0x48, 0x8a, 0x55, 0x53, 0x26, 0xa5, 0xa8, 0xec, 0xfb, 0x94, 0xb8, 0x4f, 0xbc, 0x06, 0x7d, 0xf5,
+	0x11, 0x7c, 0xe9, 0xa2, 0x9f, 0x41, 0x90, 0x1d, 0xd8, 0xde, 0x17, 0xbf, 0x02, 0x00, 0x00, 0xff,
+	0xff, 0x1c, 0xe5, 0x3e, 0x5b, 0x2f, 0x05, 0x00, 0x00,
 }
diff --git a/googleapis/devtools/remoteexecution/v1test/remote_execution.pb.go b/googleapis/devtools/remoteexecution/v1test/remote_execution.pb.go
index c6cfc2807d31aea22368a053790e39f8253f55ae..21fe781bda59ef0d2a692abe8395468daa95031d 100644
--- a/googleapis/devtools/remoteexecution/v1test/remote_execution.pb.go
+++ b/googleapis/devtools/remoteexecution/v1test/remote_execution.pb.go
@@ -311,7 +311,7 @@ func (m *Command_EnvironmentVariable) GetValue() string {
 	return ""
 }
 
-// A `Platform` is a set of requirements, such as hardware, operation system, or
+// A `Platform` is a set of requirements, such as hardware, operating system, or
 // compiler toolchain, for an
 // [Action][google.devtools.remoteexecution.v1test.Action]'s execution
 // environment. A `Platform` is represented as a series of key-value pairs
@@ -1274,7 +1274,6 @@ func (m *BatchUpdateBlobsResponse_Response) GetStatus() *google_rpc.Status {
 
 // A request message for
 // [ContentAddressableStorage.GetTree][google.devtools.remoteexecution.v1test.ContentAddressableStorage.GetTree].
-// This message is deprecated and should no longer be used.
 type GetTreeRequest struct {
 	// The instance of the execution system to operate against. A server may
 	// support multiple instances of the execution system (with their own workers,
@@ -1333,7 +1332,6 @@ func (m *GetTreeRequest) GetPageToken() string {
 
 // A response message for
 // [ContentAddressableStorage.GetTree][google.devtools.remoteexecution.v1test.ContentAddressableStorage.GetTree].
-// This message is deprecated and should no longer be used.
 type GetTreeResponse struct {
 	// The directories descended from the requested root.
 	Directories []*Directory `protobuf:"bytes,1,rep,name=directories" json:"directories,omitempty"`
@@ -1832,7 +1830,21 @@ type ContentAddressableStorageClient interface {
 	// [Digest][google.devtools.remoteexecution.v1test.Digest] does not match the
 	// provided data.
 	BatchUpdateBlobs(ctx context.Context, in *BatchUpdateBlobsRequest, opts ...grpc.CallOption) (*BatchUpdateBlobsResponse, error)
-	// DEPRECATED: This method is deprecated and should no longer be used.
+	// Fetch the entire directory tree rooted at a node.
+	//
+	// This request must be targeted at a
+	// [Directory][google.devtools.remoteexecution.v1test.Directory] stored in the
+	// [ContentAddressableStorage][google.devtools.remoteexecution.v1test.ContentAddressableStorage]
+	// (CAS). The server will enumerate the `Directory` tree recursively and
+	// return every node descended from the root.
+	// The exact traversal order is unspecified and, unless retrieving subsequent
+	// pages from an earlier request, is not guaranteed to be stable across
+	// multiple invocations of `GetTree`.
+	//
+	// If part of the tree is missing from the CAS, the server will return the
+	// portion present and omit the rest.
+	//
+	// * `NOT_FOUND`: The requested tree root is not present in the CAS.
 	GetTree(ctx context.Context, in *GetTreeRequest, opts ...grpc.CallOption) (*GetTreeResponse, error)
 }
 
@@ -1901,7 +1913,21 @@ type ContentAddressableStorageServer interface {
 	// [Digest][google.devtools.remoteexecution.v1test.Digest] does not match the
 	// provided data.
 	BatchUpdateBlobs(context.Context, *BatchUpdateBlobsRequest) (*BatchUpdateBlobsResponse, error)
-	// DEPRECATED: This method is deprecated and should no longer be used.
+	// Fetch the entire directory tree rooted at a node.
+	//
+	// This request must be targeted at a
+	// [Directory][google.devtools.remoteexecution.v1test.Directory] stored in the
+	// [ContentAddressableStorage][google.devtools.remoteexecution.v1test.ContentAddressableStorage]
+	// (CAS). The server will enumerate the `Directory` tree recursively and
+	// return every node descended from the root.
+	// The exact traversal order is unspecified and, unless retrieving subsequent
+	// pages from an earlier request, is not guaranteed to be stable across
+	// multiple invocations of `GetTree`.
+	//
+	// If part of the tree is missing from the CAS, the server will return the
+	// portion present and omit the rest.
+	//
+	// * `NOT_FOUND`: The requested tree root is not present in the CAS.
 	GetTree(context.Context, *GetTreeRequest) (*GetTreeResponse, error)
 }