Merge pull request #33970 from yifan-gu/remove_names

Automatic merge from submit-queue

CRI: Remove the mount name and port name.

Per discussion on https://github.com/kubernetes/kubernetes/issues/33873.

Currently the mount name is not being used and also involves some
incorrect usage (sometimes it's referencing a mount name, sometimes
it's referecing a volume name), so we decide to remove it from CRI.

The port name is also not used, so remove it as well.

Fix #33873
Fix #33526 

/cc @kubernetes/sig-node @kubernetes/sig-rktnetes
pull/6/head
Kubernetes Submit Queue 2016-10-04 17:08:20 -07:00 committed by GitHub
commit 3f4a66f3d6
6 changed files with 200 additions and 225 deletions

View File

@ -44,9 +44,9 @@ cluster/saltbase/salt/etcd/etcd.manifest: "value": "{{ storage_backend }}
cluster/saltbase/salt/etcd/etcd.manifest:{% set storage_backend = pillar.get('storage_backend', 'etcd2') -%}
cluster/saltbase/salt/kube-admission-controls/init.sls:{% if 'LimitRanger' in pillar.get('admission_control', '') %}
cluster/saltbase/salt/kube-apiserver/kube-apiserver.manifest:{% set params = address + " " + storage_backend + " " + etcd_servers + " " + etcd_servers_overrides + " " + cloud_provider + " " + cloud_config + " " + runtime_config + " " + feature_gates + " " + admission_control + " " + target_ram_mb + " " + service_cluster_ip_range + " " + client_ca_file + basic_auth_file + " " + min_request_timeout + " " + enable_garbage_collector -%}
cluster/saltbase/salt/kube-controller-manager/kube-controller-manager.manifest:{% if pillar.get('enable_hostpath_provisioner', '').lower() == 'true' -%}
cluster/saltbase/salt/kube-controller-manager/kube-controller-manager.manifest:{% set params = "--master=127.0.0.1:8080" + " " + cluster_name + " " + cluster_cidr + " " + allocate_node_cidrs + " " + service_cluster_ip_range + " " + terminated_pod_gc + " " + enable_garbage_collector + " " + cloud_provider + " " + cloud_config + " " + service_account_key + " " + log_level + " " + root_ca_file -%}
cluster/saltbase/salt/kube-controller-manager/kube-controller-manager.manifest:{% set params = params + " " + feature_gates -%}
cluster/saltbase/salt/kube-controller-manager/kube-controller-manager.manifest:{% if pillar.get('enable_hostpath_provisioner', '').lower() == 'true' -%}
cluster/saltbase/salt/kube-proxy/kube-proxy.manifest: {% set api_servers_with_port = api_servers + ":6443" -%}
cluster/saltbase/salt/kube-proxy/kube-proxy.manifest: {% set api_servers_with_port = api_servers -%}
cluster/saltbase/salt/kube-proxy/kube-proxy.manifest: {% set cluster_cidr=" --cluster-cidr=" + pillar['cluster_cidr'] %}
@ -97,9 +97,9 @@ hack/test-update-storage-objects.sh: local storage_media_type=${3:-""}
hack/test-update-storage-objects.sh: local storage_versions=${2:-""}
hack/test-update-storage-objects.sh: source_file=${test_data[0]}
hack/test-update-storage-objects.sh:# source_file,resource,namespace,name,old_version,new_version
pkg/kubelet/api/v1alpha1/runtime/api.pb.go: ContainerPort *int32 `protobuf:"varint,3,opt,name=container_port,json=containerPort" json:"container_port,omitempty"`
pkg/kubelet/api/v1alpha1/runtime/api.pb.go: ContainerPort *int32 `protobuf:"varint,2,opt,name=container_port,json=containerPort" json:"container_port,omitempty"`
pkg/kubelet/api/v1alpha1/runtime/api.pb.go: OomScoreAdj *int64 `protobuf:"varint,5,opt,name=oom_score_adj,json=oomScoreAdj" json:"oom_score_adj,omitempty"`
pkg/kubelet/api/v1alpha1/runtime/api.proto: optional int32 container_port = 3;
pkg/kubelet/api/v1alpha1/runtime/api.proto: optional int32 container_port = 2;
pkg/kubelet/api/v1alpha1/runtime/api.proto: optional int64 oom_score_adj = 5;
pkg/kubelet/cm/container_manager_linux.go: glog.V(3).Infof("Failed to apply oom_score_adj %d for pid %d: %v", oomScoreAdj, pid, err)
pkg/kubelet/cm/container_manager_linux.go: glog.V(5).Infof("attempting to apply oom_score_adj of %d to pid %d", oomScoreAdj, pid)

View File

@ -321,16 +321,14 @@ func (m *DNSConfig) GetOptions() []string {
// PortMapping specifies the port mapping configurations of a sandbox.
type PortMapping struct {
// The name of the port mapping
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
// The protocol of the port mapping.
Protocol *Protocol `protobuf:"varint,2,opt,name=protocol,enum=runtime.Protocol" json:"protocol,omitempty"`
Protocol *Protocol `protobuf:"varint,1,opt,name=protocol,enum=runtime.Protocol" json:"protocol,omitempty"`
// The port number within the container.
ContainerPort *int32 `protobuf:"varint,3,opt,name=container_port,json=containerPort" json:"container_port,omitempty"`
ContainerPort *int32 `protobuf:"varint,2,opt,name=container_port,json=containerPort" json:"container_port,omitempty"`
// The port number on the host.
HostPort *int32 `protobuf:"varint,4,opt,name=host_port,json=hostPort" json:"host_port,omitempty"`
HostPort *int32 `protobuf:"varint,3,opt,name=host_port,json=hostPort" json:"host_port,omitempty"`
// The host IP.
HostIp *string `protobuf:"bytes,5,opt,name=host_ip,json=hostIp" json:"host_ip,omitempty"`
HostIp *string `protobuf:"bytes,4,opt,name=host_ip,json=hostIp" json:"host_ip,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
@ -339,13 +337,6 @@ func (m *PortMapping) String() string { return proto.CompactTextStrin
func (*PortMapping) ProtoMessage() {}
func (*PortMapping) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{3} }
func (m *PortMapping) GetName() string {
if m != nil && m.Name != nil {
return *m.Name
}
return ""
}
func (m *PortMapping) GetProtocol() Protocol {
if m != nil && m.Protocol != nil {
return *m.Protocol
@ -376,16 +367,14 @@ func (m *PortMapping) GetHostIp() string {
// Mount specifies a host volume to mount into a container.
type Mount struct {
// The name of the volume mount.
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
// The path of the mount within the container.
ContainerPath *string `protobuf:"bytes,2,opt,name=container_path,json=containerPath" json:"container_path,omitempty"`
ContainerPath *string `protobuf:"bytes,1,opt,name=container_path,json=containerPath" json:"container_path,omitempty"`
// The path of the mount on the host.
HostPath *string `protobuf:"bytes,3,opt,name=host_path,json=hostPath" json:"host_path,omitempty"`
HostPath *string `protobuf:"bytes,2,opt,name=host_path,json=hostPath" json:"host_path,omitempty"`
// If set, the mount is read-only.
Readonly *bool `protobuf:"varint,4,opt,name=readonly" json:"readonly,omitempty"`
Readonly *bool `protobuf:"varint,3,opt,name=readonly" json:"readonly,omitempty"`
// If set, the mount needs SELinux relabeling
SelinuxRelabel *bool `protobuf:"varint,5,opt,name=selinux_relabel,json=selinuxRelabel" json:"selinux_relabel,omitempty"`
SelinuxRelabel *bool `protobuf:"varint,4,opt,name=selinux_relabel,json=selinuxRelabel" json:"selinux_relabel,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
@ -394,13 +383,6 @@ func (m *Mount) String() string { return proto.CompactTextString(m) }
func (*Mount) ProtoMessage() {}
func (*Mount) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{4} }
func (m *Mount) GetName() string {
if m != nil && m.Name != nil {
return *m.Name
}
return ""
}
func (m *Mount) GetContainerPath() string {
if m != nil && m.ContainerPath != nil {
return *m.ContainerPath
@ -3150,185 +3132,185 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{
}
var fileDescriptorApi = []byte{
// 2874 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x5a, 0xcd, 0x72, 0x1b, 0xc7,
0xf1, 0x37, 0x08, 0x82, 0x04, 0x1a, 0x04, 0x08, 0x8e, 0x28, 0x12, 0x86, 0x64, 0x89, 0x5a, 0x5b,
0xff, 0xbf, 0x44, 0x5b, 0x2c, 0x19, 0x49, 0x49, 0x91, 0x6c, 0xcb, 0xa6, 0x49, 0x5a, 0x45, 0x4b,
0xa2, 0x98, 0x85, 0xa4, 0x58, 0x95, 0xc3, 0xd6, 0x0a, 0xbb, 0x24, 0x57, 0x02, 0x76, 0xd7, 0xbb,
0x0b, 0x46, 0xcc, 0x35, 0x97, 0x1c, 0xf2, 0x10, 0x39, 0xb8, 0x2a, 0x87, 0x54, 0x2e, 0xa9, 0x4a,
0x55, 0xae, 0x39, 0xa7, 0xf2, 0x20, 0x79, 0x82, 0xe4, 0x98, 0x9e, 0x8f, 0x9d, 0x9d, 0xfd, 0xa2,
0x40, 0xa5, 0x2a, 0xd6, 0x6d, 0xa7, 0xa7, 0x67, 0xa6, 0xa7, 0xbb, 0xa7, 0xbb, 0x7f, 0x33, 0x0b,
0x0d, 0xd3, 0x77, 0x36, 0xfc, 0xc0, 0x8b, 0x3c, 0x32, 0x1f, 0x4c, 0xdc, 0xc8, 0x19, 0xdb, 0xda,
0x3a, 0xb4, 0x9f, 0xd9, 0x41, 0xe8, 0x78, 0xae, 0x6e, 0x7f, 0x3f, 0xb1, 0xc3, 0x88, 0x74, 0x61,
0xfe, 0x98, 0x53, 0xba, 0x95, 0xb5, 0xca, 0xb5, 0x86, 0x1e, 0x37, 0xb5, 0x3f, 0x54, 0x60, 0x51,
0x32, 0x87, 0xbe, 0xe7, 0x86, 0x76, 0x39, 0x37, 0xb9, 0x02, 0x0b, 0x62, 0x11, 0xc3, 0x35, 0xc7,
0x76, 0x77, 0x86, 0x75, 0x37, 0x05, 0x6d, 0x0f, 0x49, 0xe4, 0xff, 0x61, 0x31, 0x66, 0x89, 0x27,
0xa9, 0x32, 0xae, 0xb6, 0x20, 0x8b, 0xd5, 0xc8, 0x06, 0x9c, 0x8b, 0x19, 0x71, 0x0f, 0x92, 0x79,
0x96, 0x31, 0x2f, 0x89, 0xae, 0x4d, 0xdf, 0x11, 0xfc, 0xda, 0x2f, 0xa1, 0xb1, 0xbd, 0x37, 0xd8,
0xf2, 0xdc, 0x03, 0xe7, 0x90, 0x8a, 0x18, 0xda, 0x01, 0x1d, 0x83, 0x22, 0x56, 0xa9, 0x88, 0xa2,
0x49, 0x7a, 0x50, 0x0f, 0x6d, 0x33, 0x18, 0x1e, 0xd9, 0x21, 0x8a, 0x47, 0xbb, 0x64, 0x9b, 0x8e,
0xf2, 0xfc, 0x08, 0x27, 0x0b, 0x51, 0x26, 0x36, 0x4a, 0x34, 0xb5, 0x3f, 0x55, 0xa0, 0xb9, 0xef,
0x05, 0xd1, 0x23, 0xd3, 0xf7, 0x1d, 0xf7, 0x90, 0x10, 0x98, 0x65, 0x1b, 0xe4, 0xfb, 0x67, 0xdf,
0xe4, 0x06, 0xd4, 0x99, 0xa2, 0x87, 0xde, 0x88, 0x6d, 0xbc, 0xdd, 0x5f, 0xda, 0x10, 0x62, 0x6e,
0xec, 0x8b, 0x0e, 0x5d, 0xb2, 0x90, 0xab, 0xd0, 0x1e, 0x7a, 0x6e, 0x64, 0x3a, 0xae, 0x1d, 0x18,
0x3e, 0xce, 0xcd, 0xf4, 0x50, 0xd3, 0x5b, 0x92, 0x4a, 0x17, 0x24, 0x17, 0xa0, 0x71, 0xe4, 0x85,
0x11, 0xe7, 0x98, 0x65, 0x1c, 0x75, 0x4a, 0x60, 0x9d, 0xab, 0x30, 0xcf, 0x3a, 0x1d, 0xbf, 0x5b,
0x63, 0x92, 0xcc, 0xd1, 0xe6, 0xae, 0xaf, 0xfd, 0x50, 0x81, 0xda, 0x23, 0x0f, 0x17, 0x2f, 0x94,
0x34, 0xbd, 0xb4, 0x19, 0x1d, 0x09, 0x43, 0x29, 0x4b, 0x23, 0x31, 0x59, 0x9a, 0x72, 0x70, 0x23,
0xf1, 0xa5, 0x69, 0x27, 0xea, 0x31, 0xb0, 0x4d, 0xcb, 0x73, 0x47, 0x27, 0x4c, 0xac, 0xba, 0x2e,
0xdb, 0xd4, 0xc6, 0xa1, 0x3d, 0x72, 0xdc, 0xc9, 0x6b, 0x23, 0xb0, 0x47, 0xe6, 0x0b, 0x7b, 0xc4,
0xc4, 0xab, 0xeb, 0x6d, 0x41, 0xd6, 0x39, 0x55, 0x7b, 0x09, 0x8b, 0xd4, 0x29, 0x42, 0xdf, 0x1c,
0xda, 0x8f, 0x99, 0xaa, 0xa9, 0x0b, 0xb1, 0x45, 0x5d, 0x3b, 0xfa, 0x95, 0x17, 0xbc, 0x62, 0x72,
0xd7, 0xf5, 0x26, 0xa5, 0xed, 0x71, 0x12, 0x79, 0x1f, 0xea, 0x5c, 0x2e, 0xc7, 0x62, 0x82, 0xd7,
0x75, 0xa6, 0x85, 0x7d, 0xc7, 0x92, 0x5d, 0x8e, 0x3f, 0x64, 0x12, 0x8b, 0xae, 0x5d, 0x7f, 0xa8,
0xfd, 0xa6, 0x02, 0xe7, 0x1f, 0xd2, 0xc5, 0xf7, 0x3d, 0x6b, 0x60, 0xba, 0xd6, 0x0b, 0xef, 0xb5,
0x70, 0x96, 0x0f, 0xa1, 0x35, 0x3c, 0x0c, 0xbc, 0x89, 0x8f, 0x3b, 0x0d, 0x6c, 0x37, 0x12, 0xba,
0x5a, 0xe0, 0xc4, 0x7d, 0x46, 0x23, 0x3b, 0xb0, 0xe4, 0xc6, 0xa2, 0x1a, 0xb1, 0x97, 0xd0, 0xd5,
0x9b, 0xfd, 0xae, 0x34, 0x73, 0x66, 0x33, 0x7a, 0xc7, 0x4d, 0x13, 0x42, 0x2d, 0x00, 0x92, 0xac,
0xff, 0xc8, 0x8e, 0x4c, 0xcb, 0x8c, 0xcc, 0x42, 0x23, 0x75, 0xa0, 0x3a, 0x11, 0x1b, 0x6c, 0xe8,
0xf4, 0x93, 0x5c, 0x84, 0x86, 0x9c, 0x4f, 0xd8, 0x23, 0x21, 0x50, 0xe7, 0x35, 0xa3, 0xc8, 0x1e,
0xfb, 0xdc, 0x4d, 0x5a, 0x7a, 0xdc, 0xd4, 0xfe, 0x3a, 0x0b, 0x9d, 0xdc, 0xa6, 0x6f, 0x43, 0x7d,
0x2c, 0x96, 0x67, 0xcb, 0x36, 0xfb, 0x17, 0x12, 0x6f, 0xcd, 0x49, 0xa8, 0x4b, 0x66, 0x6a, 0x78,
0xaa, 0x52, 0xe5, 0x7c, 0xcb, 0x36, 0xd5, 0xe4, 0xc8, 0x3b, 0x34, 0x2c, 0x27, 0xb0, 0x87, 0x91,
0x17, 0x9c, 0x08, 0x29, 0x17, 0x90, 0xb8, 0x1d, 0xd3, 0xc8, 0xa7, 0x00, 0x96, 0x1b, 0x1a, 0x43,
0x26, 0x07, 0x93, 0xb5, 0xd9, 0x27, 0x72, 0x6d, 0x79, 0x86, 0xf5, 0x06, 0x72, 0x09, 0x61, 0xef,
0x40, 0x8b, 0xfa, 0xbf, 0x31, 0xe6, 0xc7, 0x2f, 0x44, 0x77, 0xaa, 0xe2, 0xa8, 0x65, 0x45, 0x62,
0x79, 0x36, 0xf5, 0x05, 0x3f, 0x69, 0x84, 0xe4, 0x0b, 0x98, 0x63, 0xbe, 0x16, 0x76, 0xe7, 0xd8,
0x98, 0xab, 0x05, 0xbb, 0xe4, 0xab, 0x6c, 0x3c, 0x64, 0x7c, 0x3b, 0x6e, 0x14, 0x9c, 0xe8, 0x62,
0x10, 0x79, 0x08, 0x4d, 0xd3, 0x75, 0xbd, 0xc8, 0xe4, 0x06, 0x9f, 0x67, 0x73, 0xac, 0x97, 0xcf,
0xb1, 0x99, 0x30, 0xf3, 0x89, 0xd4, 0xe1, 0xe4, 0xa7, 0x50, 0x63, 0xfe, 0xdf, 0xad, 0xb3, 0x5d,
0x5f, 0x92, 0xf3, 0x14, 0x3a, 0xa6, 0xce, 0x99, 0x7b, 0x77, 0xa0, 0xa9, 0x88, 0x46, 0x1d, 0xe3,
0x95, 0x7d, 0x22, 0x7c, 0x85, 0x7e, 0x92, 0x65, 0xa8, 0x1d, 0x9b, 0xa3, 0x49, 0x6c, 0x0f, 0xde,
0xb8, 0x3b, 0xf3, 0xb3, 0x4a, 0xef, 0x1e, 0x74, 0xb2, 0x12, 0x9d, 0x65, 0xbc, 0xb6, 0x0b, 0xcb,
0xfa, 0xc4, 0x4d, 0x04, 0x8b, 0x13, 0xc6, 0xa7, 0x30, 0x27, 0xec, 0xc7, 0x7d, 0xe7, 0xfd, 0x52,
0x8d, 0xe8, 0x82, 0x51, 0xfb, 0x02, 0xce, 0x67, 0xa6, 0x12, 0xe9, 0xe4, 0x23, 0x68, 0xfb, 0x9e,
0x65, 0x84, 0x9c, 0x6c, 0xa0, 0xcf, 0x8b, 0xf3, 0xe7, 0x4b, 0xde, 0x5d, 0x8b, 0x0e, 0x1f, 0x44,
0x9e, 0x9f, 0x17, 0x65, 0xba, 0xe1, 0x5d, 0x58, 0xc9, 0x0e, 0xe7, 0xcb, 0x6b, 0x5f, 0xc2, 0xaa,
0x6e, 0x8f, 0xbd, 0x63, 0xfb, 0x6d, 0xa7, 0xee, 0x41, 0x37, 0x3f, 0x41, 0x32, 0x79, 0x42, 0x1d,
0xa0, 0x19, 0x26, 0xe1, 0xd9, 0x26, 0xbf, 0xae, 0x4e, 0x20, 0x02, 0x20, 0x9f, 0x87, 0xb4, 0x61,
0x06, 0xe3, 0x3e, 0x1f, 0x84, 0x5f, 0xda, 0x73, 0x68, 0xec, 0xa9, 0xd1, 0x40, 0x8d, 0xa0, 0x98,
0xca, 0x44, 0x93, 0xf4, 0x93, 0x24, 0xf7, 0xa6, 0xf0, 0x25, 0xd3, 0xdf, 0x83, 0x5c, 0xe8, 0x14,
0x32, 0xf4, 0x01, 0x64, 0x04, 0x0a, 0x85, 0x2f, 0x90, 0xfc, 0x7c, 0xba, 0xc2, 0xa5, 0xfd, 0x90,
0x0a, 0x47, 0xca, 0x66, 0x2c, 0xb9, 0x19, 0x2b, 0x15, 0x9e, 0x66, 0xce, 0x12, 0x9e, 0x36, 0xa0,
0x16, 0xe2, 0x94, 0x3c, 0x40, 0xb6, 0x95, 0xcd, 0x89, 0x51, 0x5f, 0xf3, 0x25, 0x6d, 0x9d, 0xb3,
0x91, 0x0f, 0x00, 0x86, 0x98, 0xb8, 0x22, 0xdb, 0x32, 0x4c, 0x1e, 0x39, 0xab, 0x7a, 0x43, 0x50,
0x36, 0x23, 0x72, 0x37, 0xd1, 0x63, 0x8d, 0x89, 0xb1, 0x56, 0x20, 0x46, 0xca, 0x2e, 0x89, 0xa6,
0xe5, 0x69, 0x9f, 0x3b, 0xfd, 0xb4, 0x8b, 0x71, 0x9c, 0x59, 0x09, 0x58, 0xf3, 0xa5, 0x01, 0x8b,
0x8f, 0x98, 0x26, 0x60, 0xd5, 0x4b, 0x03, 0x96, 0x98, 0xe3, 0xd4, 0x80, 0xf5, 0x63, 0x86, 0x9e,
0x47, 0xd0, 0xcd, 0x1f, 0x1d, 0x11, 0x32, 0x30, 0xfc, 0x84, 0x8c, 0x72, 0x4a, 0xf8, 0x11, 0x43,
0x04, 0xa3, 0xf6, 0xcf, 0x8a, 0xea, 0x75, 0xdf, 0x38, 0xa3, 0xc8, 0x0e, 0x72, 0x5e, 0x27, 0x9d,
0x67, 0x66, 0x3a, 0xe7, 0x19, 0x40, 0x9b, 0xa9, 0xdd, 0xc0, 0xba, 0x86, 0x65, 0x37, 0x56, 0x37,
0x36, 0xfb, 0x9f, 0x14, 0xc8, 0xc3, 0x97, 0xe4, 0x36, 0x1b, 0x08, 0x76, 0xae, 0xf1, 0xd6, 0x48,
0xa5, 0xf5, 0xbe, 0x02, 0x92, 0x67, 0x3a, 0x93, 0xea, 0xbe, 0xa5, 0xc7, 0x95, 0x96, 0x88, 0x05,
0x61, 0xfb, 0x80, 0x89, 0x71, 0x8a, 0xde, 0xb8, 0x9c, 0xba, 0x60, 0xd4, 0x7e, 0x5f, 0x05, 0x48,
0x3a, 0xdf, 0xd9, 0x73, 0x7a, 0x5b, 0x9e, 0x1a, 0x5e, 0x1a, 0x5c, 0x2e, 0x90, 0xa2, 0xf0, 0xbc,
0x7c, 0x93, 0x3e, 0x2f, 0xbc, 0x48, 0xf8, 0xa8, 0x68, 0xf4, 0x3b, 0x7b, 0x52, 0xb6, 0x60, 0x25,
0x6b, 0x6e, 0x71, 0x4e, 0xae, 0x43, 0xcd, 0xc1, 0x1a, 0x90, 0x83, 0xa0, 0x66, 0xff, 0x5c, 0xc1,
0xb6, 0x74, 0xce, 0xa1, 0x5d, 0x81, 0xc6, 0xee, 0xd8, 0x3c, 0xb4, 0x07, 0xbe, 0x3d, 0xa4, 0x6b,
0x39, 0xb4, 0x21, 0xd6, 0xe7, 0x0d, 0xad, 0x0f, 0xf5, 0x07, 0xf6, 0xc9, 0x33, 0xba, 0xee, 0xb4,
0xf2, 0x69, 0x7f, 0xaf, 0xc0, 0x2a, 0x0b, 0x77, 0x5b, 0x31, 0xb4, 0x40, 0xe1, 0xbc, 0x49, 0x80,
0x89, 0x80, 0x99, 0xd4, 0x9f, 0x18, 0xbe, 0x1d, 0x38, 0x1e, 0xf7, 0x29, 0x6a, 0x52, 0x7f, 0xb2,
0xcf, 0x08, 0x14, 0x7e, 0xd0, 0xee, 0xef, 0x27, 0x9e, 0xf0, 0xad, 0xaa, 0x5e, 0x47, 0xc2, 0xcf,
0x69, 0x3b, 0x1e, 0x1b, 0x1e, 0x61, 0x75, 0x1e, 0x32, 0x1f, 0xe2, 0x63, 0x07, 0x8c, 0x80, 0x8e,
0x7e, 0x7e, 0x8c, 0x39, 0x39, 0x38, 0x31, 0x46, 0xce, 0xd8, 0x41, 0x3c, 0xe0, 0x1a, 0x2f, 0x4e,
0x22, 0xe4, 0xe4, 0x8e, 0x43, 0x78, 0xe7, 0x43, 0xda, 0xb7, 0xeb, 0x7e, 0x4d, 0x7b, 0x88, 0x06,
0x2d, 0xcf, 0x1b, 0x1b, 0xe1, 0xd0, 0x0b, 0x10, 0x71, 0x5a, 0x2f, 0x59, 0xbc, 0xaf, 0xea, 0x4d,
0x24, 0x0e, 0x28, 0x6d, 0xd3, 0x7a, 0xa9, 0x99, 0xd0, 0x1a, 0xec, 0xb0, 0xed, 0x08, 0xb4, 0x82,
0x85, 0xfb, 0x24, 0x14, 0xc7, 0x09, 0x0b, 0x77, 0xfa, 0x4d, 0x69, 0x81, 0x37, 0x8a, 0xf5, 0xc0,
0xbe, 0x29, 0x2d, 0x3a, 0xf1, 0xe3, 0xaa, 0x9d, 0x7d, 0x53, 0x85, 0x8d, 0xec, 0x63, 0xc4, 0x46,
0x1c, 0xd2, 0xf2, 0x86, 0x66, 0x01, 0x6c, 0x99, 0xbe, 0xf9, 0xc2, 0x19, 0x39, 0xd1, 0x09, 0x1a,
0xb0, 0x63, 0x5a, 0x96, 0x31, 0x8c, 0x29, 0x8e, 0x1d, 0x03, 0xda, 0x45, 0xa4, 0x6f, 0x29, 0x64,
0xf2, 0x31, 0x2c, 0x59, 0x81, 0xe7, 0xa7, 0x79, 0x39, 0xc2, 0xed, 0xd0, 0x0e, 0x95, 0x59, 0xfb,
0x77, 0x05, 0x96, 0xd3, 0x66, 0x11, 0x95, 0xf6, 0x3d, 0x68, 0x04, 0xb1, 0x81, 0x44, 0x90, 0x58,
0x4b, 0xe7, 0xad, 0xbc, 0x21, 0xf5, 0x64, 0x08, 0x9e, 0xc3, 0x85, 0x8c, 0x00, 0x95, 0x94, 0xe3,
0x25, 0x7b, 0xd3, 0x53, 0x8c, 0xe4, 0xcb, 0x04, 0x33, 0x26, 0x18, 0x9c, 0x8e, 0x5d, 0x91, 0x63,
0x53, 0xaa, 0x97, 0x58, 0x52, 0x20, 0x2b, 0xf2, 0x7f, 0xc2, 0x14, 0x59, 0x40, 0xc1, 0xc6, 0x3c,
0xc5, 0x1e, 0x6e, 0x1e, 0xed, 0x3b, 0x68, 0x48, 0x52, 0x0c, 0xb2, 0xb8, 0xef, 0x31, 0x90, 0x85,
0x94, 0x43, 0x01, 0xbb, 0x90, 0x82, 0x9f, 0x14, 0xcd, 0xa2, 0xae, 0x1d, 0xba, 0x8a, 0x39, 0x32,
0x90, 0xc2, 0x6f, 0x07, 0xaa, 0x7a, 0x3b, 0x21, 0xdf, 0x47, 0xaa, 0xb6, 0x09, 0x4b, 0x52, 0x39,
0xa7, 0x42, 0x3b, 0x05, 0xaa, 0xcd, 0xa4, 0xa1, 0xda, 0xbf, 0x6a, 0xb0, 0x98, 0x35, 0xc9, 0xad,
0x1c, 0x52, 0xeb, 0x25, 0xea, 0xcc, 0xae, 0xa7, 0x44, 0xd8, 0x6b, 0xf1, 0x21, 0x9e, 0xc9, 0x68,
0x44, 0x9e, 0x73, 0x71, 0xb0, 0xa9, 0x3c, 0x43, 0x6f, 0x3c, 0xc6, 0x80, 0x10, 0xdf, 0x7b, 0x88,
0x26, 0x95, 0xde, 0x0c, 0x0e, 0xe9, 0xb1, 0xa1, 0x64, 0xf6, 0x4d, 0x2e, 0x43, 0x93, 0x96, 0x37,
0x88, 0xae, 0x28, 0xd0, 0x13, 0x17, 0x0f, 0x20, 0x48, 0x08, 0xf3, 0xc8, 0x55, 0x98, 0xb5, 0xdd,
0xe3, 0x38, 0x96, 0x26, 0x97, 0x20, 0x71, 0xf0, 0xd0, 0x59, 0x37, 0x1a, 0x6c, 0x6e, 0x4c, 0xaf,
0x28, 0xe2, 0x42, 0xa7, 0x2d, 0x19, 0xd9, 0xcd, 0x85, 0x2e, 0x7a, 0xc9, 0xe7, 0x32, 0xb4, 0xd7,
0x33, 0xc1, 0x39, 0xa3, 0xa9, 0xc2, 0xf8, 0xfe, 0x20, 0x1d, 0xdf, 0x1b, 0x6c, 0x8a, 0xeb, 0xa5,
0x53, 0x9c, 0x8e, 0xdf, 0x2e, 0x01, 0xf8, 0x81, 0x73, 0xec, 0x8c, 0xec, 0x43, 0xdb, 0xea, 0x02,
0xbb, 0x60, 0x50, 0x28, 0xec, 0x72, 0x4b, 0x5c, 0x82, 0x18, 0x81, 0xe7, 0x45, 0x07, 0x61, 0xb7,
0xc9, 0x2f, 0x3e, 0x62, 0xb2, 0xce, 0xa8, 0xf4, 0x9e, 0x82, 0x02, 0x65, 0x76, 0xb3, 0xb2, 0xc0,
0xeb, 0x73, 0x6c, 0xb3, 0x8b, 0x95, 0x65, 0x9a, 0x18, 0x2d, 0xc7, 0xed, 0xb6, 0xd8, 0x48, 0xde,
0xa0, 0xf1, 0x8e, 0x7d, 0x18, 0x9e, 0x8b, 0xe0, 0xbf, 0xcd, 0xba, 0x1a, 0x8c, 0xf2, 0x18, 0x09,
0xd4, 0x6b, 0xa3, 0xe8, 0xa4, 0xbb, 0xc8, 0xe8, 0xf4, 0x93, 0xfc, 0x24, 0x2e, 0x3e, 0x3b, 0xcc,
0xfa, 0x1f, 0x94, 0x1c, 0xe2, 0x77, 0x06, 0x69, 0xfe, 0xb9, 0x02, 0x2b, 0x5b, 0x2c, 0x9d, 0x2b,
0x01, 0xe6, 0x0c, 0x48, 0x89, 0xdc, 0x94, 0x90, 0x34, 0x0b, 0x6b, 0xb2, 0x9b, 0x15, 0x7c, 0xe4,
0x2b, 0x68, 0xc7, 0x73, 0x8a, 0x91, 0xd5, 0x37, 0x81, 0xd9, 0x56, 0xa8, 0x36, 0xb5, 0xcf, 0x61,
0x35, 0x27, 0xb3, 0x48, 0xbd, 0x57, 0x30, 0x10, 0xca, 0x3b, 0x36, 0x29, 0x72, 0x53, 0xd2, 0x10,
0xdb, 0xdd, 0xa5, 0x90, 0xd6, 0x0c, 0xa2, 0xdc, 0x86, 0xa7, 0x18, 0xcb, 0xf0, 0x6c, 0x7a, 0xac,
0x80, 0x9c, 0x03, 0x58, 0xa6, 0x48, 0xf7, 0x2d, 0x26, 0xa5, 0x71, 0x80, 0x6e, 0xdb, 0x9b, 0x44,
0x22, 0xfe, 0xc5, 0x4d, 0x6d, 0x95, 0xa3, 0xef, 0xfc, 0x6a, 0x9f, 0xc1, 0x0a, 0x07, 0xbf, 0x6f,
0xb3, 0x89, 0xf7, 0x63, 0xe8, 0x9d, 0x9f, 0xf7, 0x77, 0x33, 0x4a, 0x20, 0x2c, 0xa9, 0xd6, 0x6f,
0xa4, 0xab, 0xf5, 0xd5, 0xbc, 0xc1, 0x53, 0x15, 0x64, 0xde, 0x8d, 0xaa, 0x05, 0x6e, 0xa4, 0xe7,
0x4a, 0xfa, 0x59, 0x16, 0x32, 0x3e, 0xce, 0xcf, 0xfe, 0x3f, 0xac, 0xe8, 0x77, 0x79, 0x45, 0x2f,
0x97, 0x96, 0xb7, 0x08, 0x37, 0x33, 0x15, 0x7d, 0xb7, 0x4c, 0x4c, 0x59, 0xd0, 0xff, 0x76, 0x16,
0x1a, 0xb2, 0x2f, 0xa7, 0xd3, 0xbc, 0x92, 0x66, 0x0a, 0x94, 0xa4, 0xa6, 0xa4, 0xea, 0xdb, 0xa4,
0xa4, 0xd9, 0x37, 0xa5, 0x24, 0x2c, 0xfe, 0xd8, 0x87, 0x11, 0xd8, 0x07, 0x22, 0xc5, 0xd4, 0x19,
0x41, 0xb7, 0x0f, 0x12, 0xc3, 0xcf, 0x4d, 0x65, 0xf8, 0x34, 0x74, 0x98, 0xcf, 0x42, 0x87, 0x5b,
0x99, 0xfc, 0x72, 0x29, 0x3f, 0x5d, 0x61, 0x66, 0xd9, 0x29, 0xca, 0x2c, 0x1f, 0x16, 0x0c, 0x7e,
0x67, 0x81, 0xc3, 0x43, 0x0e, 0x1c, 0x54, 0xaf, 0x12, 0xd1, 0xab, 0x8f, 0x2a, 0x93, 0x54, 0x81,
0x1e, 0x48, 0x7e, 0x6b, 0xba, 0xc2, 0x45, 0x43, 0x41, 0x4a, 0xff, 0xc9, 0x55, 0xd7, 0x14, 0xa1,
0xe0, 0x8f, 0x6a, 0xe1, 0x53, 0x72, 0x27, 0x74, 0x2b, 0x87, 0x35, 0xa7, 0xf3, 0xba, 0x1b, 0x69,
0xa8, 0x79, 0x36, 0x77, 0xc9, 0x21, 0x4d, 0x96, 0x89, 0x31, 0xf2, 0xf2, 0x6e, 0x0e, 0x12, 0x1a,
0x82, 0x82, 0xdd, 0x58, 0x1d, 0x1d, 0x38, 0xae, 0x13, 0x1e, 0xf1, 0xfe, 0x39, 0xd6, 0x0f, 0x31,
0x69, 0x93, 0x3d, 0xe8, 0xd8, 0xaf, 0x11, 0x92, 0x0c, 0x3d, 0xcb, 0x66, 0xce, 0x58, 0xd3, 0xeb,
0x94, 0xb0, 0x85, 0xed, 0xe4, 0x80, 0xd4, 0xcf, 0x74, 0x40, 0x1a, 0x99, 0x03, 0xb2, 0x02, 0x73,
0x28, 0x6f, 0xe8, 0xb9, 0xac, 0x46, 0x69, 0xe8, 0xa2, 0x45, 0x03, 0xfc, 0xd8, 0x0e, 0x43, 0xba,
0x40, 0x93, 0x57, 0x1d, 0xa2, 0xa9, 0x14, 0x59, 0x0b, 0x65, 0x45, 0xd6, 0x29, 0x97, 0x4e, 0x99,
0x22, 0xab, 0x55, 0x56, 0x64, 0x4d, 0x73, 0xe7, 0xa4, 0xd4, 0x85, 0xed, 0xd3, 0xea, 0xc2, 0x1f,
0xf3, 0xe0, 0x3c, 0xc0, 0xbc, 0x9f, 0x75, 0x75, 0x71, 0x72, 0x6e, 0x66, 0xae, 0xa6, 0xba, 0x65,
0x5a, 0x90, 0x37, 0x53, 0x2f, 0xa1, 0xb9, 0xf3, 0x1a, 0x0d, 0x3b, 0x7d, 0x9e, 0x46, 0x51, 0x87,
0x63, 0x4b, 0x80, 0x3b, 0xfa, 0x19, 0xd7, 0x7f, 0xd5, 0xa4, 0xfe, 0x93, 0x65, 0x24, 0x75, 0xe0,
0x05, 0x51, 0x46, 0x6a, 0xf7, 0x60, 0x81, 0xaf, 0x25, 0xa4, 0x5d, 0xa1, 0xd2, 0x5a, 0x34, 0xe1,
0x57, 0x18, 0x9b, 0x68, 0x09, 0xba, 0x1d, 0x04, 0x6c, 0xef, 0x9c, 0x8e, 0x2d, 0xed, 0x36, 0x34,
0x99, 0x27, 0x8a, 0x8c, 0x7c, 0x4d, 0xbd, 0x27, 0x38, 0xcd, 0x5d, 0x29, 0x36, 0xa2, 0xa1, 0x86,
0xd1, 0x65, 0x5c, 0xf8, 0x24, 0x93, 0xbc, 0x96, 0xd3, 0xe3, 0x33, 0x89, 0xeb, 0x15, 0xd4, 0x18,
0x39, 0x17, 0x17, 0x2e, 0x50, 0xcc, 0xea, 0x7b, 0x46, 0x64, 0x1e, 0xca, 0x37, 0x5d, 0x4a, 0x78,
0x82, 0x6d, 0xf6, 0x24, 0x4d, 0x3b, 0x2d, 0x07, 0x17, 0x8e, 0xe2, 0x87, 0xdd, 0x26, 0xa5, 0x6d,
0x73, 0x12, 0x05, 0x39, 0xa1, 0xf3, 0x6b, 0x9e, 0x94, 0x66, 0x75, 0xf6, 0x8d, 0x95, 0x1d, 0x51,
0xe5, 0x15, 0xea, 0x42, 0xd7, 0x64, 0xdb, 0x89, 0x43, 0x62, 0x3b, 0x2d, 0xb0, 0x2e, 0x7a, 0x51,
0xcd, 0x84, 0x6b, 0x20, 0x15, 0x06, 0xa7, 0xd7, 0xd6, 0x67, 0x70, 0x2e, 0x35, 0x5e, 0xbe, 0x94,
0xa4, 0x26, 0xc8, 0xae, 0x2e, 0x06, 0xff, 0xa3, 0x02, 0xb0, 0x39, 0x89, 0x8e, 0x04, 0x7c, 0xec,
0x41, 0x9d, 0xe2, 0x5e, 0x05, 0x84, 0xca, 0x36, 0xed, 0xf3, 0xcd, 0x30, 0x44, 0xec, 0x16, 0xe7,
0x79, 0xd9, 0x66, 0xd0, 0x6f, 0x22, 0x1f, 0x7e, 0xd9, 0x37, 0x7d, 0x38, 0xe6, 0xef, 0xe8, 0x06,
0x42, 0x5f, 0x04, 0xfd, 0xa1, 0xb8, 0xbb, 0x68, 0x71, 0xea, 0x26, 0x27, 0x52, 0x36, 0xc7, 0xb2,
0x51, 0xb4, 0xe8, 0xc4, 0x88, 0xbc, 0x57, 0xb6, 0x2b, 0x32, 0x78, 0x2b, 0xa6, 0x3e, 0xa1, 0x44,
0xca, 0x16, 0xd8, 0x87, 0xa8, 0xe5, 0x20, 0x66, 0x9b, 0xe3, 0x6c, 0x31, 0x95, 0xb1, 0xd1, 0x5f,
0x10, 0x3a, 0xfb, 0x93, 0xd1, 0x88, 0x6f, 0xf2, 0xac, 0xba, 0x44, 0x4c, 0xc6, 0xf7, 0x91, 0xbd,
0x89, 0x48, 0x54, 0x24, 0x36, 0xf7, 0xdf, 0xc3, 0x81, 0x73, 0xb0, 0xa4, 0x08, 0x2a, 0x2a, 0x59,
0xf4, 0x05, 0x5e, 0xe4, 0xbe, 0x9d, 0xfc, 0xda, 0x79, 0x38, 0x97, 0x1a, 0xcf, 0xa7, 0x5d, 0xbf,
0x08, 0xf5, 0xf8, 0xa7, 0x02, 0x32, 0x0f, 0xd5, 0x27, 0x5b, 0xfb, 0x9d, 0xf7, 0xe8, 0xc7, 0xd3,
0xed, 0xfd, 0x4e, 0x65, 0x7d, 0x1d, 0x16, 0x33, 0xf7, 0xa8, 0xa4, 0x01, 0x35, 0x7d, 0x67, 0x73,
0xfb, 0x39, 0xb2, 0x2d, 0x40, 0x7d, 0xef, 0xf1, 0x13, 0xde, 0xaa, 0xac, 0x6f, 0x41, 0x3b, 0x9d,
0x08, 0x49, 0x13, 0xe6, 0xb7, 0xb0, 0xf7, 0xc9, 0xce, 0x36, 0x32, 0x63, 0x43, 0x7f, 0xba, 0xb7,
0xb7, 0xbb, 0x77, 0xbf, 0x53, 0x21, 0x00, 0x73, 0x3b, 0xdf, 0xed, 0xd2, 0x8e, 0x19, 0xda, 0xf1,
0x74, 0xef, 0xc1, 0xde, 0xe3, 0x5f, 0xec, 0x75, 0xaa, 0xfd, 0xbf, 0xd5, 0xa1, 0xad, 0xf3, 0x2d,
0x0c, 0xd0, 0x17, 0x1c, 0xc4, 0xa4, 0xf7, 0x60, 0x3e, 0xfe, 0x97, 0x23, 0x49, 0xb9, 0xe9, 0x1f,
0x4f, 0x7a, 0xdd, 0x7c, 0x87, 0x50, 0xdb, 0x7b, 0x64, 0x1f, 0x5a, 0xa9, 0x07, 0x43, 0x92, 0x60,
0xd8, 0xa2, 0x37, 0xc9, 0xde, 0xa5, 0xb2, 0x6e, 0x39, 0xe3, 0x00, 0xda, 0xe9, 0x47, 0x40, 0x92,
0x8c, 0x29, 0x7c, 0x5c, 0xec, 0x5d, 0x2e, 0xed, 0x97, 0x93, 0x3e, 0x87, 0x4e, 0xf6, 0xf9, 0x8f,
0x24, 0x57, 0x66, 0x25, 0x4f, 0x8b, 0xbd, 0x2b, 0xa7, 0x70, 0xa8, 0x53, 0xe7, 0x1e, 0xca, 0xd6,
0xca, 0x9f, 0x3a, 0x72, 0x53, 0x97, 0xbd, 0x9f, 0x70, 0x55, 0xa4, 0xef, 0x8c, 0x89, 0xfa, 0x3c,
0x55, 0xf0, 0x76, 0xa0, 0xa8, 0xa2, 0xf8, 0xb2, 0x19, 0x27, 0x7d, 0x86, 0x35, 0x5c, 0x1a, 0x0e,
0x93, 0x64, 0x54, 0x31, 0xb8, 0xef, 0xad, 0x95, 0x33, 0xa4, 0xed, 0xa6, 0x82, 0xdd, 0x94, 0xdd,
0x0a, 0x10, 0x74, 0xca, 0x6e, 0x85, 0x28, 0x99, 0xb9, 0x57, 0x0a, 0xd2, 0x2a, 0xee, 0x55, 0x84,
0x9f, 0x7b, 0x97, 0xca, 0xba, 0xd5, 0xed, 0x67, 0xe0, 0xac, 0xb2, 0xfd, 0x62, 0x94, 0xdc, 0x5b,
0x2b, 0x67, 0xc8, 0xda, 0x2a, 0x29, 0xd3, 0x33, 0xb6, 0xca, 0xa1, 0xc2, 0x8c, 0xad, 0xf2, 0xf5,
0xbd, 0xb0, 0x55, 0xa6, 0xde, 0xbe, 0x5c, 0x5a, 0xaa, 0xe4, 0x6d, 0x55, 0x5c, 0xfd, 0xe0, 0xbc,
0x77, 0x60, 0x96, 0x56, 0x18, 0x24, 0xc9, 0xe5, 0x4a, 0x71, 0xd3, 0x3b, 0x9f, 0xa1, 0xc6, 0xc3,
0xae, 0x55, 0x6e, 0x56, 0xfa, 0x7f, 0x99, 0x81, 0x05, 0x1e, 0xfe, 0x44, 0x04, 0xb9, 0x0f, 0x90,
0x24, 0x61, 0xd2, 0x4b, 0x6d, 0x2a, 0x55, 0x49, 0xf4, 0x2e, 0x14, 0xf6, 0x49, 0xa1, 0xbe, 0x15,
0x65, 0x8b, 0xd8, 0xe8, 0x85, 0x4c, 0xb4, 0x4d, 0x6d, 0xf2, 0x62, 0x71, 0xa7, 0x9c, 0x6b, 0x1b,
0x1a, 0x32, 0xc8, 0x13, 0x25, 0x37, 0x64, 0x32, 0x54, 0xaf, 0x57, 0xd4, 0xa5, 0x4a, 0xa4, 0x44,
0x75, 0x45, 0xa2, 0x7c, 0xae, 0x50, 0x24, 0x2a, 0x48, 0x04, 0xda, 0x7b, 0xff, 0x09, 0x00, 0x00,
0xff, 0xff, 0x97, 0xd8, 0x06, 0xb3, 0xe4, 0x27, 0x00, 0x00,
// 2873 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x5a, 0xcf, 0x73, 0xdb, 0xc6,
0xf5, 0x0f, 0x45, 0x51, 0x22, 0x1f, 0x45, 0x8a, 0x5a, 0xcb, 0x12, 0x43, 0x3b, 0xb6, 0x8c, 0xc4,
0xdf, 0xaf, 0xad, 0xc4, 0x1a, 0x87, 0xed, 0xd8, 0xb5, 0x93, 0x38, 0x51, 0x24, 0xc5, 0xa3, 0xd8,
0x96, 0x55, 0xd0, 0x76, 0xe3, 0xe9, 0x01, 0x03, 0x13, 0x90, 0x04, 0x9b, 0x04, 0x10, 0x00, 0x54,
0xad, 0x5e, 0x7b, 0xe9, 0xa1, 0x87, 0x5e, 0x7b, 0xeb, 0xa1, 0x33, 0x3d, 0xf4, 0xd6, 0x99, 0xce,
0xf4, 0xda, 0x73, 0xa7, 0x7f, 0x48, 0xff, 0x82, 0xf6, 0xd8, 0xb7, 0x3f, 0xb0, 0x58, 0xfc, 0x92,
0x29, 0x77, 0xa6, 0xf1, 0x0d, 0xfb, 0xf6, 0xed, 0xee, 0xdb, 0xf7, 0xde, 0xbe, 0xf7, 0x3e, 0xbb,
0x80, 0x86, 0xe9, 0x3b, 0x1b, 0x7e, 0xe0, 0x45, 0x1e, 0x99, 0x0f, 0x26, 0x6e, 0xe4, 0x8c, 0x6d,
0x6d, 0x1d, 0xda, 0xcf, 0xec, 0x20, 0x74, 0x3c, 0x57, 0xb7, 0xbf, 0x9f, 0xd8, 0x61, 0x44, 0xba,
0x30, 0x7f, 0xcc, 0x29, 0xdd, 0xca, 0x5a, 0xe5, 0x5a, 0x43, 0x8f, 0x9b, 0xda, 0x1f, 0x2b, 0xb0,
0x28, 0x99, 0x43, 0xdf, 0x73, 0x43, 0xbb, 0x9c, 0x9b, 0x5c, 0x81, 0x05, 0xb1, 0x88, 0xe1, 0x9a,
0x63, 0xbb, 0x3b, 0xc3, 0xba, 0x9b, 0x82, 0xb6, 0x87, 0x24, 0xf2, 0xff, 0xb0, 0x18, 0xb3, 0xc4,
0x93, 0x54, 0x19, 0x57, 0x5b, 0x90, 0xc5, 0x6a, 0x64, 0x03, 0xce, 0xc5, 0x8c, 0xb8, 0x07, 0xc9,
0x3c, 0xcb, 0x98, 0x97, 0x44, 0xd7, 0xa6, 0xef, 0x08, 0x7e, 0xed, 0xe7, 0xd0, 0xd8, 0xde, 0x1b,
0x6c, 0x79, 0xee, 0x81, 0x73, 0x48, 0x45, 0x0c, 0xed, 0x80, 0x8e, 0x41, 0x11, 0xab, 0x54, 0x44,
0xd1, 0x24, 0x3d, 0xa8, 0x87, 0xb6, 0x19, 0x0c, 0x8f, 0xec, 0x10, 0xc5, 0xa3, 0x5d, 0xb2, 0x4d,
0x47, 0x79, 0x7e, 0x84, 0x93, 0x85, 0x28, 0x13, 0x1b, 0x25, 0x9a, 0xda, 0xef, 0x2a, 0xd0, 0xdc,
0xf7, 0x82, 0xe8, 0x91, 0xe9, 0xfb, 0x8e, 0x7b, 0x48, 0x6e, 0x40, 0x9d, 0x29, 0x75, 0xe8, 0x8d,
0x98, 0x0e, 0xda, 0xfd, 0xa5, 0x0d, 0x21, 0xd2, 0xc6, 0xbe, 0xe8, 0xd0, 0x25, 0x0b, 0xb9, 0x0a,
0xed, 0xa1, 0xe7, 0x46, 0xa6, 0xe3, 0xda, 0x81, 0xe1, 0xe3, 0x3c, 0x4c, 0x33, 0x35, 0xbd, 0x25,
0xa9, 0x74, 0x72, 0x72, 0x01, 0x1a, 0x47, 0x5e, 0x18, 0x71, 0x8e, 0x2a, 0xe3, 0xa8, 0x53, 0x02,
0xeb, 0x5c, 0x85, 0x79, 0xd6, 0xe9, 0xf8, 0x42, 0x07, 0x73, 0xb4, 0xb9, 0xeb, 0x6b, 0xbf, 0xad,
0x40, 0xed, 0x91, 0x87, 0x8b, 0x67, 0x96, 0x31, 0xa3, 0x23, 0x61, 0x1f, 0x65, 0x19, 0x24, 0x26,
0xcb, 0x50, 0x0e, 0x6e, 0x22, 0xbe, 0x0c, 0xed, 0x44, 0xfd, 0x04, 0xb6, 0x69, 0x79, 0xee, 0xe8,
0x84, 0x89, 0x50, 0xd7, 0x65, 0x9b, 0xda, 0x2e, 0xb4, 0x47, 0x8e, 0x3b, 0x79, 0x6d, 0x04, 0xf6,
0xc8, 0x7c, 0x61, 0x8f, 0x98, 0x28, 0x75, 0xbd, 0x2d, 0xc8, 0x3a, 0xa7, 0x6a, 0x2f, 0x61, 0x91,
0x1a, 0x3b, 0xf4, 0xcd, 0xa1, 0xfd, 0x98, 0xa9, 0x90, 0xba, 0x06, 0x5b, 0xd4, 0xb5, 0xa3, 0x5f,
0x78, 0xc1, 0x2b, 0x26, 0x59, 0x5d, 0x6f, 0x52, 0xda, 0x1e, 0x27, 0x91, 0xf7, 0xa1, 0xce, 0xe5,
0x72, 0x2c, 0x26, 0x56, 0x5d, 0x67, 0x3b, 0xde, 0x77, 0x2c, 0xd9, 0xe5, 0xf8, 0x43, 0x21, 0xd5,
0x3c, 0xdf, 0xfd, 0x50, 0xfb, 0x55, 0x05, 0xce, 0x3f, 0xa4, 0x8b, 0xef, 0x7b, 0xd6, 0xc0, 0x74,
0xad, 0x17, 0xde, 0x6b, 0xe1, 0x04, 0x1f, 0x42, 0x6b, 0x78, 0x18, 0x78, 0x13, 0x1f, 0x77, 0x1a,
0xd8, 0x6e, 0x24, 0xb4, 0xb1, 0xc0, 0x89, 0xfb, 0x8c, 0x46, 0x76, 0x60, 0xc9, 0x8d, 0x45, 0x35,
0x62, 0xeb, 0xd3, 0xd5, 0x9b, 0xfd, 0xae, 0x34, 0x69, 0x66, 0x33, 0x7a, 0xc7, 0x4d, 0x13, 0x42,
0x2d, 0x00, 0x92, 0xac, 0xff, 0xc8, 0x8e, 0x4c, 0xcb, 0x8c, 0x4c, 0x42, 0x60, 0x96, 0x9d, 0x03,
0xbe, 0x30, 0xfb, 0x26, 0x1d, 0xa8, 0x4e, 0xc4, 0x06, 0x1b, 0x3a, 0xfd, 0x24, 0x17, 0xa1, 0x21,
0xe7, 0x13, 0x87, 0x21, 0x21, 0x50, 0xa7, 0x34, 0xa3, 0xc8, 0x1e, 0xfb, 0x11, 0x53, 0x76, 0x4b,
0x8f, 0x9b, 0xda, 0x5f, 0x67, 0xa1, 0x93, 0xdb, 0xf4, 0x6d, 0xa8, 0x8f, 0xc5, 0xf2, 0x6c, 0xd9,
0x66, 0xff, 0x42, 0xe2, 0x99, 0x39, 0x09, 0x75, 0xc9, 0x4c, 0x0d, 0x4f, 0x55, 0xaa, 0x9c, 0x5b,
0xd9, 0xa6, 0x9a, 0x1c, 0x79, 0x87, 0x86, 0xe5, 0x04, 0xf6, 0x30, 0xf2, 0x82, 0x13, 0x21, 0xe5,
0x02, 0x12, 0xb7, 0x63, 0x1a, 0xf9, 0x14, 0xc0, 0x72, 0x43, 0x63, 0xc8, 0xe4, 0x60, 0xb2, 0x36,
0xfb, 0x44, 0xae, 0x2d, 0xcf, 0xa6, 0xde, 0x40, 0x2e, 0x21, 0xec, 0x1d, 0x68, 0x51, 0x5f, 0x37,
0xc6, 0xfc, 0x58, 0x85, 0xdd, 0x1a, 0x1e, 0xbb, 0x66, 0x7f, 0x59, 0x91, 0x58, 0x9e, 0x39, 0x7d,
0xc1, 0x4f, 0x1a, 0x21, 0xf9, 0x02, 0xe6, 0x98, 0xaf, 0x85, 0xdd, 0x39, 0x36, 0xe6, 0x6a, 0xc1,
0x2e, 0xf9, 0x2a, 0x1b, 0x0f, 0x19, 0xdf, 0x8e, 0x1b, 0x05, 0x27, 0xba, 0x18, 0x44, 0x1e, 0x42,
0xd3, 0x74, 0x5d, 0x2f, 0x32, 0xb9, 0xc1, 0xe7, 0xd9, 0x1c, 0xeb, 0xe5, 0x73, 0x6c, 0x26, 0xcc,
0x7c, 0x22, 0x75, 0x38, 0xf9, 0x31, 0xd4, 0x98, 0xff, 0x77, 0xeb, 0x6c, 0xd7, 0x97, 0xe4, 0x3c,
0x85, 0x8e, 0xa9, 0x73, 0xe6, 0xde, 0x1d, 0x68, 0x2a, 0xa2, 0x51, 0xc7, 0x78, 0x65, 0x9f, 0x08,
0x5f, 0xa1, 0x9f, 0x64, 0x19, 0x6a, 0xc7, 0xe6, 0x68, 0x12, 0xdb, 0x83, 0x37, 0xee, 0xce, 0xfc,
0xa4, 0xd2, 0xbb, 0x07, 0x9d, 0xac, 0x44, 0x67, 0x19, 0xaf, 0xed, 0xc2, 0xb2, 0x3e, 0x71, 0x13,
0xc1, 0xe2, 0x44, 0xf0, 0x29, 0xcc, 0x09, 0xfb, 0x71, 0xdf, 0x79, 0xbf, 0x54, 0x23, 0xba, 0x60,
0xd4, 0xbe, 0x80, 0xf3, 0x99, 0xa9, 0x44, 0x9a, 0xf8, 0x08, 0xda, 0xbe, 0x67, 0x19, 0x21, 0x27,
0x1b, 0xe8, 0xf3, 0xe2, 0xfc, 0xf9, 0x92, 0x77, 0xd7, 0xa2, 0xc3, 0x07, 0x91, 0xe7, 0xe7, 0x45,
0x99, 0x6e, 0x78, 0x17, 0x56, 0xb2, 0xc3, 0xf9, 0xf2, 0xda, 0x97, 0xb0, 0xaa, 0xdb, 0x63, 0xef,
0xd8, 0x7e, 0xdb, 0xa9, 0x7b, 0xd0, 0xcd, 0x4f, 0x90, 0x4c, 0x9e, 0x50, 0x07, 0x68, 0x86, 0x49,
0x78, 0xb6, 0xc9, 0xaf, 0xab, 0x13, 0x88, 0x00, 0xc8, 0xe7, 0x21, 0x6d, 0x98, 0xc1, 0x18, 0xcf,
0x07, 0xe1, 0x97, 0xf6, 0x1c, 0x1a, 0x7b, 0x6a, 0x34, 0x50, 0x23, 0x28, 0xa6, 0x28, 0xd1, 0x24,
0xfd, 0x24, 0x79, 0xbd, 0x29, 0x7c, 0xc9, 0xb4, 0xf6, 0x20, 0x17, 0x3a, 0x85, 0x0c, 0x7d, 0x00,
0x19, 0x81, 0x42, 0xe1, 0x0b, 0x24, 0x3f, 0x9f, 0xae, 0x70, 0x69, 0x7f, 0x48, 0x85, 0x23, 0x65,
0x33, 0x96, 0xdc, 0x8c, 0x95, 0x0a, 0x4f, 0x33, 0x67, 0x09, 0x4f, 0x1b, 0x50, 0x0b, 0x71, 0x4a,
0x1e, 0x20, 0xdb, 0xca, 0xe6, 0xc4, 0xa8, 0xaf, 0xf9, 0x92, 0xb6, 0xce, 0xd9, 0xc8, 0x07, 0x00,
0x43, 0x4c, 0x5c, 0x91, 0x6d, 0x19, 0x26, 0x8f, 0x9c, 0x55, 0xbd, 0x21, 0x28, 0x9b, 0x11, 0xb9,
0x9b, 0xe8, 0xb1, 0xc6, 0xc4, 0x58, 0x2b, 0x10, 0x23, 0x65, 0x97, 0x44, 0xd3, 0xf2, 0xb4, 0xcf,
0x9d, 0x7e, 0xda, 0xc5, 0x38, 0xce, 0xac, 0x04, 0xac, 0xf9, 0xd2, 0x80, 0xc5, 0x47, 0x4c, 0x13,
0xb0, 0xea, 0xa5, 0x01, 0x4b, 0xcc, 0x71, 0x6a, 0xc0, 0xfa, 0x21, 0x43, 0xcf, 0x23, 0xe8, 0xe6,
0x8f, 0x8e, 0x08, 0x19, 0x18, 0x7e, 0x42, 0x46, 0x39, 0x25, 0xfc, 0x88, 0x21, 0x82, 0x51, 0xfb,
0x67, 0x45, 0xf5, 0xba, 0x6f, 0x9c, 0x51, 0x64, 0x07, 0x39, 0xaf, 0x93, 0xce, 0x33, 0x33, 0x9d,
0xf3, 0x0c, 0xa0, 0xcd, 0xd4, 0x6e, 0x60, 0x5d, 0xc3, 0xb2, 0x1b, 0xab, 0x07, 0x9b, 0xfd, 0x4f,
0x0a, 0xe4, 0xe1, 0x4b, 0x72, 0x9b, 0x0d, 0x04, 0x3b, 0xd7, 0x78, 0x6b, 0xa4, 0xd2, 0x7a, 0x5f,
0x01, 0xc9, 0x33, 0x9d, 0x49, 0x75, 0xdf, 0xd2, 0xe3, 0x4a, 0xcb, 0xc1, 0x82, 0xb0, 0x7d, 0xc0,
0xc4, 0x38, 0x45, 0x6f, 0x5c, 0x4e, 0x5d, 0x30, 0x6a, 0xbf, 0xaf, 0x02, 0x24, 0x9d, 0xef, 0xec,
0x39, 0xbd, 0x2d, 0x4f, 0x0d, 0x2f, 0x0d, 0x2e, 0x17, 0x48, 0x51, 0x78, 0x5e, 0xbe, 0x49, 0x9f,
0x17, 0x5e, 0x24, 0x7c, 0x54, 0x34, 0xfa, 0x9d, 0x3d, 0x29, 0x5b, 0xb0, 0x92, 0x35, 0xb7, 0x38,
0x27, 0xd7, 0xa1, 0xe6, 0x60, 0x0d, 0xc8, 0xc1, 0x4d, 0xb3, 0x7f, 0xae, 0x60, 0x5b, 0x3a, 0xe7,
0xd0, 0xae, 0x40, 0x63, 0x77, 0x6c, 0x1e, 0xda, 0x03, 0xdf, 0x1e, 0xd2, 0xb5, 0x1c, 0xda, 0x10,
0xeb, 0xf3, 0x86, 0xd6, 0x87, 0xfa, 0x03, 0xfb, 0xe4, 0x19, 0x5d, 0x77, 0x5a, 0xf9, 0xb4, 0xbf,
0x57, 0x60, 0x95, 0x85, 0xbb, 0xad, 0x18, 0x5a, 0xa0, 0x70, 0xde, 0x24, 0xc0, 0x44, 0xc0, 0x4c,
0xea, 0x4f, 0x0c, 0xdf, 0x0e, 0x1c, 0x8f, 0xfb, 0x14, 0x35, 0xa9, 0x3f, 0xd9, 0x67, 0x04, 0x0a,
0x3f, 0x68, 0xf7, 0xf7, 0x13, 0x4f, 0xf8, 0x56, 0x55, 0xaf, 0x23, 0xe1, 0xa7, 0xb4, 0x1d, 0x8f,
0x0d, 0x8f, 0xb0, 0x3a, 0x0f, 0x99, 0x0f, 0xf1, 0xb1, 0x03, 0x46, 0x40, 0x47, 0x3f, 0x3f, 0xc6,
0x9c, 0x1c, 0x9c, 0x18, 0x23, 0x67, 0xec, 0x20, 0x1e, 0x70, 0x8d, 0x17, 0x27, 0x11, 0x72, 0x72,
0xc7, 0x21, 0xbc, 0xf3, 0x21, 0xed, 0xdb, 0x75, 0xbf, 0xa6, 0x3d, 0x44, 0x83, 0x96, 0xe7, 0x8d,
0x8d, 0x70, 0xe8, 0x05, 0x88, 0x24, 0xad, 0x97, 0x2c, 0xde, 0x57, 0xf5, 0x26, 0x12, 0x07, 0x94,
0xb6, 0x69, 0xbd, 0xd4, 0x4c, 0x68, 0x0d, 0x76, 0xd8, 0x76, 0x04, 0x5a, 0xc1, 0xc2, 0x7d, 0x12,
0x8a, 0xe3, 0x84, 0x85, 0x3b, 0xfd, 0xa6, 0xb4, 0xc0, 0x1b, 0xc5, 0x7a, 0x60, 0xdf, 0x94, 0x16,
0x9d, 0xf8, 0x71, 0xd5, 0xce, 0xbe, 0xa9, 0xc2, 0x46, 0xf6, 0xb1, 0xc0, 0x46, 0xa8, 0x30, 0xd6,
0xd0, 0x2c, 0x80, 0x2d, 0xd3, 0x37, 0x5f, 0x38, 0x23, 0x27, 0x3a, 0x41, 0x03, 0x76, 0x4c, 0xcb,
0x32, 0x86, 0x31, 0xc5, 0xb1, 0x63, 0xa0, 0xba, 0x88, 0xf4, 0x2d, 0x85, 0x4c, 0x3e, 0x86, 0x25,
0x2b, 0xf0, 0xfc, 0x34, 0x2f, 0x47, 0xae, 0x1d, 0xda, 0xa1, 0x32, 0x6b, 0xff, 0xae, 0xc0, 0x72,
0xda, 0x2c, 0xa2, 0xd2, 0xbe, 0x07, 0x8d, 0x20, 0x36, 0x90, 0x08, 0x12, 0x6b, 0xe9, 0xbc, 0x95,
0x37, 0xa4, 0x9e, 0x0c, 0xc1, 0x73, 0xb8, 0x90, 0x11, 0xa0, 0x92, 0x72, 0xbc, 0x64, 0x6f, 0x7a,
0x8a, 0x91, 0x7c, 0x99, 0x60, 0xc6, 0x04, 0x5b, 0xd3, 0xb1, 0x2b, 0x72, 0x6c, 0x4a, 0xf5, 0x12,
0x4b, 0x0a, 0x64, 0x45, 0xfe, 0x4f, 0x98, 0x22, 0x0b, 0x28, 0xd8, 0x98, 0xa7, 0xd8, 0xc3, 0xcd,
0xa3, 0x7d, 0x07, 0x0d, 0x49, 0x8a, 0x41, 0x16, 0xf7, 0x3d, 0x06, 0xb2, 0x90, 0x72, 0x28, 0x60,
0x17, 0x52, 0xf0, 0x93, 0xa2, 0x59, 0xd4, 0xb5, 0x43, 0x57, 0x31, 0x47, 0x06, 0x52, 0x38, 0xea,
0xaf, 0xea, 0xed, 0x84, 0x7c, 0x1f, 0xa9, 0xda, 0x26, 0x2c, 0x49, 0xe5, 0x9c, 0x0a, 0xed, 0x14,
0xa8, 0x36, 0x93, 0x86, 0x6a, 0xff, 0xaa, 0xc1, 0x62, 0xd6, 0x24, 0xb7, 0x72, 0x48, 0xad, 0x97,
0xa8, 0x33, 0xbb, 0x9e, 0x12, 0x61, 0xaf, 0xc5, 0x87, 0x78, 0x26, 0xa3, 0x11, 0x79, 0xce, 0xc5,
0xc1, 0xa6, 0xf2, 0x0c, 0xbd, 0xf1, 0x18, 0x03, 0x42, 0x7c, 0x9f, 0x21, 0x9a, 0x54, 0x7a, 0x33,
0x38, 0xa4, 0xc7, 0x86, 0x92, 0xd9, 0x37, 0xb9, 0x0c, 0x4d, 0x5a, 0xde, 0x20, 0xba, 0xa2, 0x40,
0x8f, 0x1d, 0x93, 0x86, 0x0e, 0x82, 0x84, 0x30, 0x8f, 0x5c, 0x85, 0x59, 0xdb, 0x3d, 0x8e, 0x63,
0x69, 0x72, 0xe1, 0x11, 0x07, 0x0f, 0x9d, 0x75, 0xa3, 0xc1, 0xe6, 0xc6, 0xf4, 0x3a, 0x22, 0x2e,
0x74, 0xda, 0x92, 0x91, 0xdd, 0x52, 0xe8, 0xa2, 0x97, 0x7c, 0x2e, 0x43, 0x7b, 0x3d, 0x13, 0x9c,
0x33, 0x9a, 0x2a, 0x8c, 0xef, 0x0f, 0xd2, 0xf1, 0xbd, 0xc1, 0xa6, 0xb8, 0x5e, 0x3a, 0xc5, 0xe9,
0xf8, 0xed, 0x12, 0x80, 0x1f, 0x38, 0xc7, 0xce, 0xc8, 0x3e, 0xb4, 0xad, 0x2e, 0xb0, 0x0b, 0x06,
0x85, 0xc2, 0x2e, 0xad, 0xc4, 0x25, 0x88, 0x11, 0x78, 0x5e, 0x74, 0x10, 0x76, 0x9b, 0xfc, 0xe2,
0x23, 0x26, 0xeb, 0x8c, 0x4a, 0xef, 0x29, 0x28, 0x50, 0x66, 0x37, 0x2b, 0x0b, 0xbc, 0x3e, 0xc7,
0x36, 0xbb, 0x58, 0x59, 0xa6, 0x89, 0xd1, 0x72, 0xdc, 0x6e, 0x8b, 0x8d, 0xe4, 0x0d, 0x1a, 0xef,
0xd8, 0x87, 0xe1, 0xb9, 0x08, 0xfe, 0xdb, 0xac, 0xab, 0xc1, 0x28, 0x8f, 0x91, 0x40, 0xbd, 0x36,
0x8a, 0x4e, 0xba, 0x8b, 0x8c, 0x4e, 0x3f, 0xc9, 0x8f, 0xe2, 0xe2, 0xb3, 0xc3, 0xac, 0xff, 0x41,
0xc9, 0x21, 0x7e, 0x67, 0x90, 0xe6, 0x9f, 0x2b, 0xb0, 0xb2, 0xc5, 0xd2, 0xb9, 0x12, 0x60, 0xce,
0x80, 0x94, 0xc8, 0x4d, 0x09, 0x49, 0xb3, 0xb0, 0x26, 0xbb, 0x59, 0xc1, 0x47, 0xbe, 0x82, 0x76,
0x3c, 0xa7, 0x18, 0x59, 0x7d, 0x13, 0x98, 0x6d, 0x85, 0x6a, 0x53, 0xfb, 0x1c, 0x56, 0x73, 0x32,
0x8b, 0xd4, 0x7b, 0x05, 0x03, 0xa1, 0xbc, 0x63, 0x93, 0x22, 0x37, 0x25, 0x0d, 0xb1, 0xdd, 0x5d,
0x0a, 0x69, 0xcd, 0x20, 0xca, 0x6d, 0x78, 0x8a, 0xb1, 0x0c, 0xcf, 0xa6, 0xc7, 0x0a, 0xc8, 0x39,
0x80, 0x65, 0x8a, 0x74, 0xdf, 0x62, 0x52, 0x1a, 0x07, 0xe8, 0xb6, 0xbd, 0x49, 0x24, 0xe2, 0x5f,
0xdc, 0xd4, 0x56, 0x39, 0xfa, 0xce, 0xaf, 0xf6, 0x19, 0xac, 0x70, 0xf0, 0xfb, 0x36, 0x9b, 0x78,
0x3f, 0x86, 0xde, 0xf9, 0x79, 0x7f, 0x33, 0xa3, 0x04, 0xc2, 0x92, 0x6a, 0xfd, 0x46, 0xba, 0x5a,
0x5f, 0xcd, 0x1b, 0x3c, 0x55, 0x41, 0xe6, 0xdd, 0xa8, 0x5a, 0xe0, 0x46, 0x7a, 0xae, 0xa4, 0x9f,
0x65, 0x21, 0xe3, 0xe3, 0xfc, 0xec, 0xff, 0xc3, 0x8a, 0x7e, 0x97, 0x57, 0xf4, 0x72, 0x69, 0x79,
0x8b, 0x70, 0x33, 0x53, 0xd1, 0x77, 0xcb, 0xc4, 0x94, 0x05, 0xfd, 0xaf, 0x67, 0xa1, 0x21, 0xfb,
0x72, 0x3a, 0xcd, 0x2b, 0x69, 0xa6, 0x40, 0x49, 0x6a, 0x4a, 0xaa, 0xbe, 0x4d, 0x4a, 0x9a, 0x7d,
0x53, 0x4a, 0xc2, 0xe2, 0x8f, 0x7d, 0x18, 0x81, 0x7d, 0x20, 0x52, 0x4c, 0x9d, 0x11, 0x74, 0xfb,
0x20, 0x31, 0xfc, 0xdc, 0x54, 0x86, 0x4f, 0x43, 0x87, 0xf9, 0x2c, 0x74, 0xb8, 0x95, 0xc9, 0x2f,
0x97, 0xf2, 0xd3, 0x15, 0x66, 0x96, 0x9d, 0xa2, 0xcc, 0xf2, 0x61, 0xc1, 0xe0, 0x77, 0x16, 0x38,
0x3c, 0xe4, 0xc0, 0x41, 0xf5, 0x2a, 0x11, 0xbd, 0xfa, 0xa8, 0x32, 0x49, 0x15, 0xe8, 0x81, 0xe4,
0xb7, 0xa6, 0x2b, 0x5c, 0x34, 0x14, 0xa4, 0xf4, 0x9f, 0x5c, 0x75, 0x4d, 0x11, 0x0a, 0xfe, 0xa4,
0x16, 0x3e, 0x25, 0x77, 0x42, 0xb7, 0x72, 0x58, 0x73, 0x3a, 0xaf, 0xbb, 0x91, 0x86, 0x9a, 0x67,
0x73, 0x97, 0x1c, 0xd2, 0x64, 0x99, 0x18, 0x23, 0x2f, 0xef, 0xe6, 0x20, 0xa1, 0x21, 0x28, 0xd8,
0x8d, 0xd5, 0xd1, 0x81, 0xe3, 0x3a, 0xe1, 0x11, 0xef, 0x9f, 0x63, 0xfd, 0x10, 0x93, 0x36, 0xd9,
0xe3, 0x8d, 0xfd, 0x1a, 0x21, 0xc9, 0xd0, 0xb3, 0x6c, 0xe6, 0x8c, 0x35, 0xbd, 0x4e, 0x09, 0x5b,
0xd8, 0x4e, 0x0e, 0x48, 0xfd, 0x4c, 0x07, 0xa4, 0x91, 0x39, 0x20, 0x2b, 0x30, 0x87, 0xf2, 0x86,
0x9e, 0xcb, 0x6a, 0x94, 0x86, 0x2e, 0x5a, 0x34, 0xc0, 0x8f, 0xed, 0x30, 0xa4, 0x0b, 0x34, 0x79,
0xd5, 0x21, 0x9a, 0x4a, 0x91, 0xb5, 0x50, 0x56, 0x64, 0x9d, 0x72, 0xe9, 0x94, 0x29, 0xb2, 0x5a,
0x65, 0x45, 0xd6, 0x34, 0x77, 0x4e, 0x4a, 0x5d, 0xd8, 0x3e, 0xad, 0x2e, 0xfc, 0x21, 0x0f, 0xce,
0x03, 0xcc, 0xfb, 0x59, 0x57, 0x17, 0x27, 0xe7, 0x66, 0xe6, 0x6a, 0xaa, 0x5b, 0xa6, 0x05, 0x79,
0x33, 0xf5, 0x12, 0x9a, 0x3b, 0xaf, 0xd1, 0xb0, 0xd3, 0xe7, 0x69, 0x14, 0x75, 0x38, 0xb6, 0x04,
0xb8, 0xa3, 0x9f, 0x71, 0xfd, 0x57, 0x4d, 0xea, 0x3f, 0x59, 0x46, 0x52, 0x07, 0x5e, 0x10, 0x65,
0xa4, 0x76, 0x0f, 0x16, 0xf8, 0x5a, 0x42, 0xda, 0x15, 0x2a, 0xad, 0x45, 0x13, 0x7e, 0x85, 0xb1,
0x89, 0x96, 0xa0, 0xdb, 0x41, 0xc0, 0xf6, 0xce, 0xe9, 0xd8, 0xd2, 0x6e, 0x43, 0x93, 0x79, 0xa2,
0xc8, 0xc8, 0xd7, 0xd4, 0x7b, 0x82, 0xd3, 0xdc, 0x95, 0x62, 0x23, 0x1a, 0x6a, 0x18, 0x5d, 0xc6,
0x85, 0x4f, 0x32, 0xc9, 0x6b, 0x39, 0x3d, 0x3e, 0x93, 0xb8, 0x5e, 0x41, 0x8d, 0x91, 0x73, 0x71,
0xe1, 0x02, 0xc5, 0xac, 0xbe, 0x67, 0x44, 0xe6, 0xa1, 0x7c, 0xab, 0xa5, 0x84, 0x27, 0xd8, 0x66,
0x4f, 0xcd, 0xb4, 0xd3, 0x72, 0x70, 0xe1, 0x28, 0x7e, 0xb0, 0x6d, 0x52, 0xda, 0x36, 0x27, 0x51,
0x90, 0x13, 0x3a, 0xbf, 0xe4, 0x49, 0x69, 0x56, 0x67, 0xdf, 0x58, 0xd9, 0x11, 0x55, 0x5e, 0xa1,
0x2e, 0x74, 0x4d, 0xb6, 0x9d, 0x38, 0x24, 0xb6, 0xd3, 0x02, 0xeb, 0xa2, 0x17, 0xd5, 0x4c, 0xb8,
0x06, 0x52, 0x61, 0x70, 0x7a, 0x6d, 0x7d, 0x06, 0xe7, 0x52, 0xe3, 0xe5, 0x4b, 0x49, 0x6a, 0x82,
0xec, 0xea, 0x62, 0xf0, 0x3f, 0x2a, 0x00, 0x9b, 0x93, 0xe8, 0x48, 0xc0, 0xc7, 0x1e, 0xd4, 0x29,
0xee, 0x55, 0x40, 0xa8, 0x6c, 0xd3, 0x3e, 0xdf, 0x0c, 0x43, 0xc4, 0x6e, 0x71, 0x9e, 0x97, 0x6d,
0x06, 0xfd, 0x70, 0x96, 0xf8, 0xca, 0x82, 0x7e, 0xd3, 0x87, 0x63, 0xfe, 0x3e, 0x6e, 0x20, 0xf4,
0x45, 0xd0, 0x1f, 0x8a, 0xbb, 0x8b, 0x16, 0xa7, 0x6e, 0x72, 0x22, 0x65, 0x73, 0x2c, 0x1b, 0x45,
0x8b, 0x4e, 0x8c, 0xc8, 0x7b, 0x65, 0xbb, 0x22, 0x83, 0xb7, 0x62, 0xea, 0x13, 0x4a, 0xa4, 0x6c,
0x81, 0x7d, 0x88, 0x5a, 0x0e, 0x62, 0xb6, 0x39, 0xce, 0x16, 0x53, 0x19, 0x1b, 0xfd, 0xb5, 0xa0,
0xb3, 0x3f, 0x19, 0x8d, 0xf8, 0x26, 0xcf, 0xaa, 0x4b, 0xc4, 0x64, 0x7c, 0x1f, 0xd9, 0x9b, 0x88,
0x44, 0x45, 0x62, 0x73, 0xff, 0x3d, 0x1c, 0x38, 0x07, 0x4b, 0x8a, 0xa0, 0xa2, 0x92, 0x45, 0x5f,
0xe0, 0x45, 0xee, 0xdb, 0xc9, 0xaf, 0x9d, 0x87, 0x73, 0xa9, 0xf1, 0x7c, 0xda, 0xf5, 0x8b, 0x50,
0x8f, 0x7f, 0x20, 0x20, 0xf3, 0x50, 0x7d, 0xb2, 0xb5, 0xdf, 0x79, 0x8f, 0x7e, 0x3c, 0xdd, 0xde,
0xef, 0x54, 0xd6, 0xd7, 0x61, 0x31, 0x73, 0x8f, 0x4a, 0x1a, 0x50, 0xd3, 0x77, 0x36, 0xb7, 0x9f,
0x23, 0xdb, 0x02, 0xd4, 0xf7, 0x1e, 0x3f, 0xe1, 0xad, 0xca, 0xfa, 0x16, 0xb4, 0xd3, 0x89, 0x90,
0x34, 0x61, 0x7e, 0x0b, 0x7b, 0x9f, 0xec, 0x6c, 0x23, 0x33, 0x36, 0xf4, 0xa7, 0x7b, 0x7b, 0xbb,
0x7b, 0xf7, 0x3b, 0x15, 0x02, 0x30, 0xb7, 0xf3, 0xdd, 0x2e, 0xed, 0x98, 0xa1, 0x1d, 0x4f, 0xf7,
0x1e, 0xec, 0x3d, 0xfe, 0xd9, 0x5e, 0xa7, 0xda, 0xff, 0x5b, 0x1d, 0xda, 0x3a, 0xdf, 0xc2, 0x00,
0x7d, 0xc1, 0x41, 0x4c, 0x7a, 0x0f, 0xe6, 0xe3, 0x7f, 0x34, 0x92, 0x94, 0x9b, 0xfe, 0xa1, 0xa4,
0xd7, 0xcd, 0x77, 0x08, 0xb5, 0xbd, 0x47, 0xf6, 0xa1, 0x95, 0x7a, 0x30, 0x24, 0x09, 0x86, 0x2d,
0x7a, 0x93, 0xec, 0x5d, 0x2a, 0xeb, 0x96, 0x33, 0x0e, 0xa0, 0x9d, 0x7e, 0x04, 0x24, 0xc9, 0x98,
0xc2, 0xc7, 0xc5, 0xde, 0xe5, 0xd2, 0x7e, 0x39, 0xe9, 0x73, 0xe8, 0x64, 0x9f, 0xff, 0x48, 0x72,
0x65, 0x56, 0xf2, 0xb4, 0xd8, 0xbb, 0x72, 0x0a, 0x87, 0x3a, 0x75, 0xee, 0xa1, 0x6c, 0xad, 0xfc,
0xa9, 0x23, 0x37, 0x75, 0xd9, 0xfb, 0x09, 0x57, 0x45, 0xfa, 0xce, 0x98, 0xa8, 0xcf, 0x53, 0x05,
0x6f, 0x07, 0x8a, 0x2a, 0x8a, 0x2f, 0x9b, 0x71, 0xd2, 0x67, 0x58, 0xc3, 0xa5, 0xe1, 0x30, 0x49,
0x46, 0x15, 0x83, 0xfb, 0xde, 0x5a, 0x39, 0x43, 0xda, 0x6e, 0x2a, 0xd8, 0x4d, 0xd9, 0xad, 0x00,
0x41, 0xa7, 0xec, 0x56, 0x88, 0x92, 0x99, 0x7b, 0xa5, 0x20, 0xad, 0xe2, 0x5e, 0x45, 0xf8, 0xb9,
0x77, 0xa9, 0xac, 0x5b, 0xdd, 0x7e, 0x06, 0xce, 0x2a, 0xdb, 0x2f, 0x46, 0xc9, 0xbd, 0xb5, 0x72,
0x86, 0xac, 0xad, 0x92, 0x32, 0x3d, 0x63, 0xab, 0x1c, 0x2a, 0xcc, 0xd8, 0x2a, 0x5f, 0xdf, 0x0b,
0x5b, 0x65, 0xea, 0xed, 0xcb, 0xa5, 0xa5, 0x4a, 0xde, 0x56, 0xc5, 0xd5, 0x0f, 0xce, 0x7b, 0x07,
0x66, 0x69, 0x85, 0x41, 0x92, 0x5c, 0xae, 0x14, 0x37, 0xbd, 0xf3, 0x19, 0x6a, 0x3c, 0xec, 0x5a,
0xe5, 0x66, 0xa5, 0xff, 0x97, 0x19, 0x58, 0xe0, 0xe1, 0x4f, 0x44, 0x90, 0xfb, 0x00, 0x49, 0x12,
0x26, 0xbd, 0xd4, 0xa6, 0x52, 0x95, 0x44, 0xef, 0x42, 0x61, 0x9f, 0x14, 0xea, 0x5b, 0x51, 0xb6,
0x88, 0x8d, 0x5e, 0xc8, 0x44, 0xdb, 0xd4, 0x26, 0x2f, 0x16, 0x77, 0xca, 0xb9, 0xb6, 0xa1, 0x21,
0x83, 0x3c, 0x51, 0x72, 0x43, 0x26, 0x43, 0xf5, 0x7a, 0x45, 0x5d, 0xaa, 0x44, 0x4a, 0x54, 0x57,
0x24, 0xca, 0xe7, 0x0a, 0x45, 0xa2, 0x82, 0x44, 0xa0, 0xbd, 0xf7, 0x9f, 0x00, 0x00, 0x00, 0xff,
0xff, 0xcd, 0x48, 0x29, 0xea, 0xbc, 0x27, 0x00, 0x00,
}

View File

@ -91,30 +91,26 @@ enum Protocol {
// PortMapping specifies the port mapping configurations of a sandbox.
message PortMapping {
// The name of the port mapping
optional string name = 1;
// The protocol of the port mapping.
optional Protocol protocol = 2;
optional Protocol protocol = 1;
// The port number within the container.
optional int32 container_port = 3;
optional int32 container_port = 2;
// The port number on the host.
optional int32 host_port = 4;
optional int32 host_port = 3;
// The host IP.
optional string host_ip = 5;
optional string host_ip = 4;
}
// Mount specifies a host volume to mount into a container.
message Mount {
// The name of the volume mount.
optional string name = 1;
// The path of the mount within the container.
optional string container_path = 2;
optional string container_path = 1;
// The path of the mount on the host.
optional string host_path = 3;
optional string host_path = 2;
// If set, the mount is read-only.
optional bool readonly = 4;
optional bool readonly = 3;
// If set, the mount needs SELinux relabeling
optional bool selinux_relabel = 5;
optional bool selinux_relabel = 4;
}
// NamespaceOption provides options for Linux namespaces.

View File

@ -235,7 +235,6 @@ func (ds *dockerService) ContainerStatus(containerID string) (*runtimeApi.Contai
m := r.Mounts[i]
readonly := !m.RW
mounts = append(mounts, &runtimeApi.Mount{
Name: &m.Name,
HostPath: &m.Source,
ContainerPath: &m.Destination,
Readonly: &readonly,

View File

@ -249,7 +249,6 @@ func makeMounts(opts *kubecontainer.RunContainerOptions, container *api.Containe
for idx := range opts.Mounts {
v := opts.Mounts[idx]
m := &runtimeApi.Mount{
Name: &v.Name,
HostPath: &v.HostPath,
ContainerPath: &v.ContainerPath,
Readonly: &v.ReadOnly,

View File

@ -101,7 +101,6 @@ func (m *kubeGenericRuntimeManager) generatePodSandboxConfig(pod *api.Pod, attem
HostPort: &hostPort,
ContainerPort: &containerPort,
Protocol: &protocol,
Name: &port.Name,
})
}