From 1a2452462085da8e73d29e8d9c0b8873e129a058 Mon Sep 17 00:00:00 2001 From: Simon Ferquel Date: Fri, 4 Aug 2017 12:01:49 +0200 Subject: [PATCH 1/2] Add an "isolation" field to container spec For executors supporting multiple isolation levels (ie: Docker API on Windows), added an "isolation" field in the container spec, so that we can schedule services with different isolation modes than the system defaults Signed-off-by: Simon Ferquel --- agent/exec/dockerapi/container.go | 5 + agent/exec/dockerapi/container_test.go | 20 ++ api/api.pb.txt | 22 ++ api/specs.pb.go | 300 ++++++++++++++----------- api/specs.proto | 5 + 5 files changed, 225 insertions(+), 127 deletions(-) diff --git a/agent/exec/dockerapi/container.go b/agent/exec/dockerapi/container.go index 99e746e0f4..3cc528b33b 100644 --- a/agent/exec/dockerapi/container.go +++ b/agent/exec/dockerapi/container.go @@ -120,6 +120,10 @@ func (c *containerConfig) portBindings() nat.PortMap { return portBindings } +func (c *containerConfig) isolation() enginecontainer.Isolation { + return enginecontainer.Isolation(c.spec().Isolation) +} + func (c *containerConfig) exposedPorts() map[nat.Port]struct{} { exposedPorts := make(map[nat.Port]struct{}) if c.task.Endpoint == nil { @@ -196,6 +200,7 @@ func (c *containerConfig) hostConfig() *enginecontainer.HostConfig { GroupAdd: c.spec().Groups, PortBindings: c.portBindings(), Init: c.init(), + Isolation: c.isolation(), } // The format of extra hosts on swarmkit is specified in: diff --git a/agent/exec/dockerapi/container_test.go b/agent/exec/dockerapi/container_test.go index 685f64ab20..d928d7fdc2 100644 --- a/agent/exec/dockerapi/container_test.go +++ b/agent/exec/dockerapi/container_test.go @@ -176,3 +176,23 @@ func TestInit(t *testing.T) { t.Fatalf("expected &true, got %v", actual) } } + +func TestIsolation(t *testing.T) { + c := containerConfig{ + task: &api.Task{ + Spec: api.TaskSpec{ + Runtime: &api.TaskSpec_Container{ + Container: &api.ContainerSpec{ + Isolation: "test", + }, + }, + }, + }, + } + + expected := "test" + actual := string(c.hostConfig().Isolation) + if actual != expected { + t.Fatalf("expected %s, got %s", expected, actual) + } +} diff --git a/api/api.pb.txt b/api/api.pb.txt index 3bf5091888..30224674a0 100755 --- a/api/api.pb.txt +++ b/api/api.pb.txt @@ -710,6 +710,13 @@ file { type: TYPE_STRING json_name: "swiftPrefix" } + field { + name: "php_class_prefix" + number: 40 + label: LABEL_OPTIONAL + type: TYPE_STRING + json_name: "phpClassPrefix" + } field { name: "uninterpreted_option" number: 999 @@ -791,6 +798,10 @@ file { start: 8 end: 9 } + reserved_range { + start: 9 + end: 10 + } } message_type { name: "FieldOptions" @@ -934,6 +945,10 @@ file { start: 1000 end: 536870912 } + reserved_range { + start: 5 + end: 6 + } } message_type { name: "EnumValueOptions" @@ -4728,6 +4743,13 @@ file { type_name: ".docker.swarmkit.v1.HealthConfig" json_name: "healthcheck" } + field { + name: "isolation" + number: 24 + label: LABEL_OPTIONAL + type: TYPE_STRING + json_name: "isolation" + } nested_type { name: "LabelsEntry" field { diff --git a/api/specs.pb.go b/api/specs.pb.go index 4e4254c0f1..7db23e363f 100644 --- a/api/specs.pb.go +++ b/api/specs.pb.go @@ -588,6 +588,10 @@ type ContainerSpec struct { // task will exit and a new task will be rescheduled elsewhere. A container // is considered unhealthy after `Retries` number of consecutive failures. Healthcheck *HealthConfig `protobuf:"bytes,16,opt,name=healthcheck" json:"healthcheck,omitempty"` + // Isolation defines the isolation level for engines supporting multiple isolation modes + // ie: docker on windows server supports "process" or "hyperv" + // on engines that does not support it, value should be either "" or "default" + Isolation string `protobuf:"bytes,24,opt,name=isolation,proto3" json:"isolation,omitempty"` } func (m *ContainerSpec) Reset() { *m = ContainerSpec{} } @@ -2015,6 +2019,14 @@ func (m *ContainerSpec) MarshalTo(dAtA []byte) (int, error) { } i += n24 } + if len(m.Isolation) > 0 { + dAtA[i] = 0xc2 + i++ + dAtA[i] = 0x1 + i++ + i = encodeVarintSpecs(dAtA, i, uint64(len(m.Isolation))) + i += copy(dAtA[i:], m.Isolation) + } return i, nil } @@ -2744,6 +2756,10 @@ func (m *ContainerSpec) Size() (n int) { l = m.Init.Size() n += 2 + l + sovSpecs(uint64(l)) } + l = len(m.Isolation) + if l > 0 { + n += 2 + l + sovSpecs(uint64(l)) + } return n } @@ -3090,6 +3106,7 @@ func (this *ContainerSpec) String() string { `Configs:` + strings.Replace(fmt.Sprintf("%v", this.Configs), "ConfigReference", "ConfigReference", 1) + `,`, `Privileges:` + strings.Replace(fmt.Sprintf("%v", this.Privileges), "Privileges", "Privileges", 1) + `,`, `Init:` + strings.Replace(fmt.Sprintf("%v", this.Init), "BoolValue", "google_protobuf4.BoolValue", 1) + `,`, + `Isolation:` + fmt.Sprintf("%v", this.Isolation) + `,`, `}`, }, "") return s @@ -5198,6 +5215,35 @@ func (m *ContainerSpec) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 24: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Isolation", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowSpecs + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthSpecs + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Isolation = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSpecs(dAtA[iNdEx:]) @@ -6509,131 +6555,131 @@ var ( func init() { proto.RegisterFile("github.com/docker/swarmkit/api/specs.proto", fileDescriptorSpecs) } var fileDescriptorSpecs = []byte{ - // 2005 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcf, 0x6f, 0x1b, 0xb9, - 0xf5, 0xb7, 0x6c, 0x59, 0x3f, 0xde, 0xc8, 0x89, 0xc2, 0x4d, 0xb2, 0x13, 0xe5, 0xbb, 0xb6, 0xa2, - 0xcd, 0xe6, 0xeb, 0xdd, 0x45, 0x65, 0xd4, 0x2d, 0xb6, 0xd9, 0x4d, 0xb7, 0xad, 0x64, 0xa9, 0x8e, - 0x9b, 0xc6, 0x11, 0x68, 0x6f, 0xda, 0x00, 0x05, 0x04, 0x7a, 0x86, 0x96, 0x08, 0x8f, 0x86, 0x53, - 0x0e, 0xc7, 0x81, 0x6e, 0x3d, 0x2e, 0xd2, 0xbf, 0x21, 0xe8, 0xa1, 0xe8, 0xbd, 0xff, 0x43, 0x2f, - 0x39, 0xf6, 0xd8, 0x5e, 0x8c, 0xae, 0xfe, 0x85, 0xde, 0x7a, 0x69, 0x41, 0x0e, 0x67, 0x34, 0x72, - 0xc6, 0x76, 0x80, 0xe6, 0xd0, 0x1b, 0xf9, 0xf8, 0xf9, 0x3c, 0xfe, 0xfa, 0x3c, 0xbe, 0x47, 0xf8, - 0x6c, 0xc4, 0xe4, 0x38, 0x3a, 0x6a, 0x3b, 0x7c, 0xb2, 0xe5, 0x72, 0xe7, 0x84, 0x8a, 0xad, 0xf0, - 0x25, 0x11, 0x93, 0x13, 0x26, 0xb7, 0x48, 0xc0, 0xb6, 0xc2, 0x80, 0x3a, 0x61, 0x3b, 0x10, 0x5c, - 0x72, 0x84, 0x62, 0x40, 0x3b, 0x01, 0xb4, 0x4f, 0xbf, 0xdf, 0xb8, 0x8a, 0x2f, 0xa7, 0x01, 0x35, - 0xfc, 0xc6, 0xcd, 0x11, 0x1f, 0x71, 0xdd, 0xdc, 0x52, 0x2d, 0x63, 0x5d, 0x1f, 0x71, 0x3e, 0xf2, - 0xe8, 0x96, 0xee, 0x1d, 0x45, 0xc7, 0x5b, 0x6e, 0x24, 0x88, 0x64, 0xdc, 0x37, 0xe3, 0x77, 0xce, - 0x8f, 0x13, 0x7f, 0x7a, 0x11, 0xf5, 0xa5, 0x20, 0x41, 0x40, 0x85, 0x99, 0xb0, 0xf5, 0xba, 0x08, - 0x95, 0x7d, 0xee, 0xd2, 0x83, 0x80, 0x3a, 0x68, 0x17, 0x2c, 0xe2, 0xfb, 0x5c, 0x6a, 0xdf, 0xa1, - 0x5d, 0x68, 0x16, 0x36, 0xad, 0xed, 0x8d, 0xf6, 0xdb, 0x7b, 0x6a, 0x77, 0xe6, 0xb0, 0x6e, 0xf1, - 0xcd, 0xd9, 0xc6, 0x12, 0xce, 0x32, 0xd1, 0x4f, 0xa1, 0xe6, 0xd2, 0x90, 0x09, 0xea, 0x0e, 0x05, - 0xf7, 0xa8, 0xbd, 0xdc, 0x2c, 0x6c, 0x5e, 0xdb, 0xfe, 0xbf, 0x3c, 0x4f, 0x6a, 0x72, 0xcc, 0x3d, - 0x8a, 0x2d, 0xc3, 0x50, 0x1d, 0xb4, 0x0b, 0x30, 0xa1, 0x93, 0x23, 0x2a, 0xc2, 0x31, 0x0b, 0xec, - 0x15, 0x4d, 0xff, 0xff, 0x8b, 0xe8, 0x6a, 0xed, 0xed, 0xa7, 0x29, 0x1c, 0x67, 0xa8, 0xe8, 0x29, - 0xd4, 0xc8, 0x29, 0x61, 0x1e, 0x39, 0x62, 0x1e, 0x93, 0x53, 0xbb, 0xa8, 0x5d, 0x7d, 0x7a, 0xa9, - 0xab, 0x4e, 0x86, 0x80, 0x17, 0xe8, 0x2d, 0x17, 0x60, 0x3e, 0x11, 0x7a, 0x00, 0xe5, 0x41, 0x7f, - 0xbf, 0xb7, 0xb7, 0xbf, 0x5b, 0x5f, 0x6a, 0xdc, 0x79, 0xf5, 0xba, 0x79, 0x4b, 0xf9, 0x98, 0x03, - 0x06, 0xd4, 0x77, 0x99, 0x3f, 0x42, 0x9b, 0x50, 0xe9, 0xec, 0xec, 0xf4, 0x07, 0x87, 0xfd, 0x5e, - 0xbd, 0xd0, 0x68, 0xbc, 0x7a, 0xdd, 0xbc, 0xbd, 0x08, 0xec, 0x38, 0x0e, 0x0d, 0x24, 0x75, 0x1b, - 0xc5, 0x6f, 0xff, 0xb8, 0xbe, 0xd4, 0xfa, 0xb6, 0x00, 0xb5, 0xec, 0x22, 0xd0, 0x03, 0x28, 0x75, - 0x76, 0x0e, 0xf7, 0x9e, 0xf7, 0xeb, 0x4b, 0x73, 0x7a, 0x16, 0xd1, 0x71, 0x24, 0x3b, 0xa5, 0xe8, - 0x3e, 0xac, 0x0e, 0x3a, 0xdf, 0x1c, 0xf4, 0xeb, 0x85, 0xf9, 0x72, 0xb2, 0xb0, 0x01, 0x89, 0x42, - 0x8d, 0xea, 0xe1, 0xce, 0xde, 0x7e, 0x7d, 0x39, 0x1f, 0xd5, 0x13, 0x84, 0xf9, 0x66, 0x29, 0x7f, - 0x28, 0x82, 0x75, 0x40, 0xc5, 0x29, 0x73, 0xde, 0xb3, 0x44, 0xbe, 0x80, 0xa2, 0x24, 0xe1, 0x89, - 0x96, 0x86, 0x95, 0x2f, 0x8d, 0x43, 0x12, 0x9e, 0xa8, 0x49, 0x0d, 0x5d, 0xe3, 0x95, 0x32, 0x04, - 0x0d, 0x3c, 0xe6, 0x10, 0x49, 0x5d, 0xad, 0x0c, 0x6b, 0xfb, 0x93, 0x3c, 0x36, 0x4e, 0x51, 0x66, - 0xfd, 0x8f, 0x97, 0x70, 0x86, 0x8a, 0x1e, 0x41, 0x69, 0xe4, 0xf1, 0x23, 0xe2, 0x69, 0x4d, 0x58, - 0xdb, 0xf7, 0xf2, 0x9c, 0xec, 0x6a, 0xc4, 0xdc, 0x81, 0xa1, 0xa0, 0x87, 0x50, 0x8a, 0x02, 0x97, - 0x48, 0x6a, 0x97, 0x34, 0xb9, 0x99, 0x47, 0xfe, 0x46, 0x23, 0x76, 0xb8, 0x7f, 0xcc, 0x46, 0xd8, - 0xe0, 0xd1, 0x13, 0xa8, 0xf8, 0x54, 0xbe, 0xe4, 0xe2, 0x24, 0xb4, 0xcb, 0xcd, 0x95, 0x4d, 0x6b, - 0xfb, 0xf3, 0x5c, 0x31, 0xc6, 0x98, 0x8e, 0x94, 0xc4, 0x19, 0x4f, 0xa8, 0x2f, 0x63, 0x37, 0xdd, - 0x65, 0xbb, 0x80, 0x53, 0x07, 0xe8, 0xc7, 0x50, 0xa1, 0xbe, 0x1b, 0x70, 0xe6, 0x4b, 0xbb, 0x72, - 0xf1, 0x42, 0xfa, 0x06, 0xa3, 0x0e, 0x13, 0xa7, 0x0c, 0xc5, 0x16, 0xdc, 0xf3, 0x8e, 0x88, 0x73, - 0x62, 0x57, 0xdf, 0x71, 0x1b, 0x29, 0xa3, 0x5b, 0x82, 0xe2, 0x84, 0xbb, 0xb4, 0xb5, 0x05, 0x37, - 0xde, 0x3a, 0x6a, 0xd4, 0x80, 0x8a, 0x39, 0xea, 0x58, 0x23, 0x45, 0x9c, 0xf6, 0x5b, 0xd7, 0x61, - 0x6d, 0xe1, 0x58, 0x5b, 0x7f, 0x5e, 0x85, 0x4a, 0x72, 0xd7, 0xa8, 0x03, 0x55, 0x87, 0xfb, 0x92, - 0x30, 0x9f, 0x0a, 0x23, 0xaf, 0xdc, 0x9b, 0xd9, 0x49, 0x40, 0x8a, 0xf5, 0x78, 0x09, 0xcf, 0x59, - 0xe8, 0xe7, 0x50, 0x15, 0x34, 0xe4, 0x91, 0x70, 0x68, 0x68, 0xf4, 0xb5, 0x99, 0xaf, 0x90, 0x18, - 0x84, 0xe9, 0x6f, 0x23, 0x26, 0xa8, 0x3a, 0xe5, 0x10, 0xcf, 0xa9, 0xe8, 0x11, 0x94, 0x05, 0x0d, - 0x25, 0x11, 0xf2, 0x32, 0x89, 0xe0, 0x18, 0x32, 0xe0, 0x1e, 0x73, 0xa6, 0x38, 0x61, 0xa0, 0x47, - 0x50, 0x0d, 0x3c, 0xe2, 0x68, 0xaf, 0xf6, 0xaa, 0xa6, 0x7f, 0x94, 0x47, 0x1f, 0x24, 0x20, 0x3c, - 0xc7, 0xa3, 0x2f, 0x01, 0x3c, 0x3e, 0x1a, 0xba, 0x82, 0x9d, 0x52, 0x61, 0x24, 0xd6, 0xc8, 0x63, - 0xf7, 0x34, 0x02, 0x57, 0x3d, 0x3e, 0x8a, 0x9b, 0x68, 0xf7, 0xbf, 0xd2, 0x57, 0x46, 0x5b, 0x4f, - 0x00, 0x48, 0x3a, 0x6a, 0xd4, 0xf5, 0xe9, 0x3b, 0xb9, 0x32, 0x37, 0x92, 0xa1, 0xa3, 0x7b, 0x50, - 0x3b, 0xe6, 0xc2, 0xa1, 0x43, 0x13, 0x35, 0x55, 0xad, 0x09, 0x4b, 0xdb, 0x62, 0x7d, 0xa1, 0x2e, - 0x94, 0x47, 0xd4, 0xa7, 0x82, 0x39, 0x36, 0xe8, 0xc9, 0x1e, 0xe4, 0x06, 0x64, 0x0c, 0xc1, 0x91, - 0x2f, 0xd9, 0x84, 0x9a, 0x99, 0x12, 0x22, 0xfa, 0x0d, 0x7c, 0x90, 0x5c, 0xdf, 0x50, 0xd0, 0x63, - 0x2a, 0xa8, 0xaf, 0x34, 0x60, 0xe9, 0x73, 0xf8, 0xe4, 0x72, 0x0d, 0x18, 0xb4, 0x79, 0x6c, 0x90, - 0x38, 0x3f, 0x10, 0x76, 0xab, 0x50, 0x16, 0xf1, 0xbc, 0xad, 0xdf, 0x17, 0x94, 0xea, 0xcf, 0x21, - 0xd0, 0x16, 0x58, 0xe9, 0xf4, 0xcc, 0xd5, 0xea, 0xad, 0x76, 0xaf, 0xcd, 0xce, 0x36, 0x20, 0xc1, - 0xee, 0xf5, 0xd4, 0x1b, 0x64, 0xda, 0x2e, 0xea, 0xc3, 0x5a, 0x4a, 0x50, 0x65, 0x80, 0x49, 0x94, - 0xcd, 0xcb, 0x56, 0x7a, 0x38, 0x0d, 0x28, 0xae, 0x89, 0x4c, 0xaf, 0xf5, 0x6b, 0x40, 0x6f, 0x9f, - 0x0b, 0x42, 0x50, 0x3c, 0x61, 0xbe, 0x59, 0x06, 0xd6, 0x6d, 0xd4, 0x86, 0x72, 0x40, 0xa6, 0x1e, - 0x27, 0xae, 0x09, 0x8c, 0x9b, 0xed, 0xb8, 0x40, 0x68, 0x27, 0x05, 0x42, 0xbb, 0xe3, 0x4f, 0x71, - 0x02, 0x6a, 0x3d, 0x81, 0x5b, 0xb9, 0xd7, 0x8b, 0xb6, 0xa1, 0x96, 0x06, 0xdc, 0x7c, 0xaf, 0xd7, - 0x67, 0x67, 0x1b, 0x56, 0x1a, 0x99, 0x7b, 0x3d, 0x6c, 0xa5, 0xa0, 0x3d, 0xb7, 0xf5, 0x97, 0x2a, - 0xac, 0x2d, 0x84, 0x2d, 0xba, 0x09, 0xab, 0x6c, 0x42, 0x46, 0xd4, 0xac, 0x31, 0xee, 0xa0, 0x3e, - 0x94, 0x3c, 0x72, 0x44, 0x3d, 0x15, 0xbc, 0xea, 0xe2, 0xbe, 0x77, 0x65, 0xfc, 0xb7, 0x7f, 0xa9, - 0xf1, 0x7d, 0x5f, 0x8a, 0x29, 0x36, 0x64, 0x64, 0x43, 0xd9, 0xe1, 0x93, 0x09, 0xf1, 0x55, 0x9a, - 0x58, 0xd9, 0xac, 0xe2, 0xa4, 0xab, 0x4e, 0x86, 0x88, 0x51, 0x68, 0x17, 0xb5, 0x59, 0xb7, 0x51, - 0x1d, 0x56, 0xa8, 0x7f, 0x6a, 0xaf, 0x6a, 0x93, 0x6a, 0x2a, 0x8b, 0xcb, 0xe2, 0xe8, 0xab, 0x62, - 0xd5, 0x54, 0xbc, 0x28, 0xa4, 0xc2, 0x2e, 0xc7, 0x27, 0xaa, 0xda, 0xe8, 0x47, 0x50, 0x9a, 0xf0, - 0xc8, 0x97, 0xa1, 0x5d, 0xd1, 0x8b, 0xbd, 0x93, 0xb7, 0xd8, 0xa7, 0x0a, 0x61, 0x94, 0x65, 0xe0, - 0xa8, 0x0f, 0x37, 0x42, 0xc9, 0x83, 0xe1, 0x48, 0x10, 0x87, 0x0e, 0x03, 0x2a, 0x18, 0x77, 0xcd, - 0x33, 0x7c, 0xe7, 0xad, 0x4b, 0xe9, 0x99, 0x82, 0x0f, 0x5f, 0x57, 0x9c, 0x5d, 0x45, 0x19, 0x68, - 0x06, 0x1a, 0x40, 0x2d, 0x88, 0x3c, 0x6f, 0xc8, 0x83, 0x38, 0x23, 0xc7, 0xb1, 0xf3, 0x0e, 0x47, - 0x36, 0x88, 0x3c, 0xef, 0x59, 0x4c, 0xc2, 0x56, 0x30, 0xef, 0xa0, 0xdb, 0x50, 0x1a, 0x09, 0x1e, - 0x05, 0x71, 0xdc, 0x54, 0xb1, 0xe9, 0xa1, 0xaf, 0xa1, 0x1c, 0x52, 0x47, 0x50, 0x19, 0xda, 0x35, - 0xbd, 0xd5, 0x8f, 0xf3, 0x26, 0x39, 0xd0, 0x90, 0x34, 0x26, 0x70, 0xc2, 0x41, 0x77, 0x60, 0x45, - 0xca, 0xa9, 0xbd, 0xd6, 0x2c, 0x6c, 0x56, 0xba, 0xe5, 0xd9, 0xd9, 0xc6, 0xca, 0xe1, 0xe1, 0x0b, - 0xac, 0x6c, 0x2a, 0x5b, 0x8c, 0x79, 0x28, 0x7d, 0x32, 0xa1, 0xf6, 0x35, 0x7d, 0xb6, 0x69, 0x1f, - 0xbd, 0x00, 0x70, 0xfd, 0x70, 0xe8, 0xe8, 0xe7, 0xc9, 0xbe, 0xae, 0x77, 0xf7, 0xf9, 0xd5, 0xbb, - 0xeb, 0xed, 0x1f, 0x98, 0x8c, 0xb9, 0x36, 0x3b, 0xdb, 0xa8, 0xa6, 0x5d, 0x5c, 0x75, 0xfd, 0x30, - 0x6e, 0xa2, 0x2e, 0x58, 0x63, 0x4a, 0x3c, 0x39, 0x76, 0xc6, 0xd4, 0x39, 0xb1, 0xeb, 0x17, 0xa7, - 0xc0, 0xc7, 0x1a, 0x66, 0x3c, 0x64, 0x49, 0x4a, 0xc1, 0x6a, 0xa9, 0xa1, 0x7d, 0x43, 0x9f, 0x55, - 0xdc, 0x41, 0x1f, 0x01, 0xf0, 0x80, 0xfa, 0xc3, 0x50, 0xba, 0xcc, 0xb7, 0x91, 0xda, 0x32, 0xae, - 0x2a, 0xcb, 0x81, 0x32, 0xa0, 0xbb, 0x2a, 0x41, 0x11, 0x77, 0xc8, 0x7d, 0x6f, 0x6a, 0x7f, 0xa0, - 0x47, 0x2b, 0xca, 0xf0, 0xcc, 0xf7, 0xa6, 0x68, 0x03, 0x2c, 0xad, 0x8b, 0x90, 0x8d, 0x7c, 0xe2, - 0xd9, 0x37, 0xf5, 0x79, 0x80, 0x32, 0x1d, 0x68, 0x8b, 0xba, 0x87, 0xf8, 0x34, 0x42, 0xfb, 0xd6, - 0xc5, 0xf7, 0x60, 0x16, 0x3b, 0xbf, 0x07, 0xc3, 0x41, 0x3f, 0x01, 0x08, 0x04, 0x3b, 0x65, 0x1e, - 0x1d, 0xd1, 0xd0, 0xbe, 0xad, 0x37, 0xbd, 0x9e, 0x9b, 0x99, 0x52, 0x14, 0xce, 0x30, 0x50, 0x1b, - 0x8a, 0xcc, 0x67, 0xd2, 0xfe, 0xd0, 0x64, 0xa5, 0xf3, 0x52, 0xed, 0x72, 0xee, 0x3d, 0x27, 0x5e, - 0x44, 0xb1, 0xc6, 0x35, 0xbe, 0x04, 0x2b, 0x13, 0x9d, 0x2a, 0xaa, 0x4e, 0xe8, 0xd4, 0x04, 0xbc, - 0x6a, 0xaa, 0x23, 0x3c, 0x55, 0x78, 0xfd, 0x22, 0x55, 0x71, 0xdc, 0xf9, 0x6a, 0xf9, 0x61, 0xa1, - 0xb1, 0x0d, 0x56, 0x46, 0xa5, 0xe8, 0x63, 0xf5, 0x5a, 0x8e, 0x58, 0x28, 0xc5, 0x74, 0x48, 0x22, - 0x39, 0xb6, 0x7f, 0xa6, 0x09, 0xb5, 0xc4, 0xd8, 0x89, 0xe4, 0xb8, 0x31, 0x84, 0xf9, 0x65, 0xa3, - 0x26, 0x58, 0x4a, 0x44, 0x21, 0x15, 0xa7, 0x54, 0xa8, 0x4a, 0x44, 0xdd, 0x51, 0xd6, 0xa4, 0xc4, - 0x1e, 0x52, 0x22, 0x9c, 0xb1, 0x7e, 0x6b, 0xaa, 0xd8, 0xf4, 0xd4, 0xe3, 0x91, 0x44, 0x94, 0x79, - 0x3c, 0x4c, 0xb7, 0xf5, 0xcf, 0x02, 0xd4, 0xb2, 0x05, 0x15, 0xda, 0x89, 0x0b, 0x21, 0xbd, 0xa5, - 0x6b, 0xdb, 0x5b, 0x57, 0x15, 0x60, 0xfa, 0x21, 0xf7, 0x22, 0xe5, 0xec, 0xa9, 0xfa, 0xfb, 0x68, - 0x32, 0xfa, 0x21, 0xac, 0x06, 0x5c, 0xc8, 0xe4, 0xc9, 0xcb, 0xbf, 0x10, 0x2e, 0x92, 0x34, 0x1d, - 0x83, 0x5b, 0x63, 0xb8, 0xb6, 0xe8, 0x0d, 0xdd, 0x87, 0x95, 0xe7, 0x7b, 0x83, 0xfa, 0x52, 0xe3, - 0xee, 0xab, 0xd7, 0xcd, 0x0f, 0x17, 0x07, 0x9f, 0x33, 0x21, 0x23, 0xe2, 0xed, 0x0d, 0xd0, 0x67, - 0xb0, 0xda, 0xdb, 0x3f, 0xc0, 0xb8, 0x5e, 0x68, 0x6c, 0xbc, 0x7a, 0xdd, 0xbc, 0xbb, 0x88, 0x53, - 0x43, 0x3c, 0xf2, 0x5d, 0xcc, 0x8f, 0xd2, 0x7f, 0xc0, 0xbf, 0x96, 0xc1, 0x32, 0x99, 0xe0, 0x7d, - 0x7f, 0x15, 0xd7, 0xe2, 0x32, 0x27, 0x09, 0xf1, 0xe5, 0x2b, 0xab, 0x9d, 0x5a, 0x4c, 0x30, 0x77, - 0x7c, 0x0f, 0x6a, 0x2c, 0x38, 0xfd, 0x62, 0x48, 0x7d, 0x72, 0xe4, 0x99, 0x2f, 0x41, 0x05, 0x5b, - 0xca, 0xd6, 0x8f, 0x4d, 0xea, 0x7d, 0x61, 0xbe, 0xa4, 0xc2, 0x37, 0xc5, 0x7e, 0x05, 0xa7, 0x7d, - 0xf4, 0x35, 0x14, 0x59, 0x40, 0x26, 0xa6, 0x44, 0xcb, 0xdd, 0xc1, 0xde, 0xa0, 0xf3, 0xd4, 0x68, - 0xb0, 0x5b, 0x99, 0x9d, 0x6d, 0x14, 0x95, 0x01, 0x6b, 0x1a, 0x5a, 0x4f, 0xaa, 0x24, 0x35, 0x93, - 0xce, 0x15, 0x15, 0x9c, 0xb1, 0x28, 0x1d, 0x31, 0x7f, 0x24, 0x68, 0x18, 0xea, 0xac, 0x51, 0xc1, - 0x49, 0x17, 0x35, 0xa0, 0x6c, 0x6a, 0x2d, 0x5d, 0x5c, 0x55, 0x55, 0x1d, 0x63, 0x0c, 0xdd, 0x35, - 0xb0, 0xe2, 0xd3, 0x18, 0x1e, 0x0b, 0x3e, 0x69, 0xfd, 0xbb, 0x08, 0xd6, 0x8e, 0x17, 0x85, 0xd2, - 0xa4, 0xcd, 0xf7, 0x76, 0xf8, 0x2f, 0xe0, 0x06, 0xd1, 0x5f, 0x4f, 0xe2, 0xab, 0x1c, 0xa4, 0x4b, - 0x58, 0x73, 0x01, 0xf7, 0x73, 0xdd, 0xa5, 0xe0, 0xb8, 0xdc, 0xed, 0x96, 0x94, 0x4f, 0xbb, 0x80, - 0xeb, 0xe4, 0xdc, 0x08, 0x3a, 0x80, 0x35, 0x2e, 0x9c, 0x31, 0x0d, 0x65, 0x9c, 0xb9, 0xcc, 0x57, - 0x2d, 0xf7, 0x13, 0xff, 0x2c, 0x0b, 0x34, 0xcf, 0x76, 0xbc, 0xda, 0x45, 0x1f, 0xe8, 0x21, 0x14, - 0x05, 0x39, 0x4e, 0xca, 0xf1, 0xdc, 0x20, 0xc1, 0xe4, 0x58, 0x2e, 0xb8, 0xd0, 0x0c, 0xf4, 0x0b, - 0x00, 0x97, 0x85, 0x01, 0x91, 0xce, 0x98, 0x0a, 0x73, 0xd9, 0xb9, 0x5b, 0xec, 0xa5, 0xa8, 0x05, - 0x2f, 0x19, 0x36, 0x7a, 0x02, 0x55, 0x87, 0x24, 0x72, 0x2d, 0x5d, 0xfc, 0x7f, 0xdd, 0xe9, 0x18, - 0x17, 0x75, 0xe5, 0x62, 0x76, 0xb6, 0x51, 0x49, 0x2c, 0xb8, 0xe2, 0x10, 0x23, 0xdf, 0x27, 0xb0, - 0xa6, 0xfe, 0xb5, 0x43, 0x97, 0x1e, 0x93, 0xc8, 0x93, 0xb1, 0x4c, 0x2e, 0x48, 0x43, 0xea, 0x93, - 0xd4, 0x33, 0x38, 0xb3, 0xae, 0x9a, 0xcc, 0xd8, 0xd0, 0xaf, 0xe0, 0x06, 0xf5, 0x1d, 0x31, 0xd5, - 0x62, 0x4d, 0x56, 0x58, 0xb9, 0x78, 0xb3, 0xfd, 0x14, 0xbc, 0xb0, 0xd9, 0x3a, 0x3d, 0x67, 0x6f, - 0xfd, 0xbd, 0x00, 0x10, 0x67, 0xf6, 0xf7, 0x2b, 0x40, 0x04, 0x45, 0x97, 0x48, 0xa2, 0x35, 0x57, - 0xc3, 0xba, 0x8d, 0xbe, 0x02, 0x90, 0x74, 0x12, 0x78, 0x44, 0x32, 0x7f, 0x64, 0x64, 0x73, 0xd9, - 0x73, 0x90, 0x41, 0xa3, 0x6d, 0x28, 0x99, 0x4f, 0x53, 0xf1, 0x4a, 0x9e, 0x41, 0xb6, 0xfe, 0x54, - 0x00, 0x88, 0xb7, 0xf9, 0x3f, 0xbd, 0xb7, 0xae, 0xfd, 0xe6, 0xbb, 0xf5, 0xa5, 0xbf, 0x7d, 0xb7, - 0xbe, 0xf4, 0xbb, 0xd9, 0x7a, 0xe1, 0xcd, 0x6c, 0xbd, 0xf0, 0xd7, 0xd9, 0x7a, 0xe1, 0x1f, 0xb3, - 0xf5, 0xc2, 0x51, 0x49, 0x27, 0xdf, 0x1f, 0xfc, 0x27, 0x00, 0x00, 0xff, 0xff, 0x94, 0x09, 0xb7, - 0xb7, 0xaa, 0x14, 0x00, 0x00, + // 2016 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4f, 0x6f, 0x1b, 0xb9, + 0x15, 0xb7, 0x6c, 0x59, 0x7f, 0xde, 0xc8, 0x89, 0xc2, 0x4d, 0xb2, 0x13, 0x65, 0xd7, 0x56, 0xb4, + 0xd9, 0xd4, 0xbb, 0x8b, 0xca, 0xa8, 0x5b, 0x6c, 0xb3, 0x9b, 0x6e, 0x5b, 0xc9, 0x52, 0x1d, 0x37, + 0x8d, 0x23, 0xd0, 0xde, 0xb4, 0x01, 0x0a, 0x08, 0xf4, 0x0c, 0x2d, 0x11, 0x1e, 0x0d, 0xa7, 0x1c, + 0x8e, 0x03, 0xdd, 0x7a, 0x5c, 0xa4, 0x9f, 0x21, 0xe8, 0xa1, 0xe8, 0xbd, 0x1f, 0x23, 0xc7, 0x1e, + 0xdb, 0x8b, 0xd1, 0xe8, 0x2b, 0xf4, 0xd6, 0x4b, 0x0b, 0x72, 0x38, 0xa3, 0x91, 0x33, 0x8e, 0x03, + 0x34, 0x87, 0xbd, 0x91, 0x8f, 0xbf, 0xdf, 0xe3, 0xbf, 0xdf, 0xe3, 0x7b, 0x84, 0xcf, 0x47, 0x4c, + 0x8e, 0xa3, 0xa3, 0xb6, 0xc3, 0x27, 0x5b, 0x2e, 0x77, 0x4e, 0xa8, 0xd8, 0x0a, 0x9f, 0x13, 0x31, + 0x39, 0x61, 0x72, 0x8b, 0x04, 0x6c, 0x2b, 0x0c, 0xa8, 0x13, 0xb6, 0x03, 0xc1, 0x25, 0x47, 0x28, + 0x06, 0xb4, 0x13, 0x40, 0xfb, 0xf4, 0x47, 0x8d, 0xcb, 0xf8, 0x72, 0x1a, 0x50, 0xc3, 0x6f, 0x5c, + 0x1f, 0xf1, 0x11, 0xd7, 0xcd, 0x2d, 0xd5, 0x32, 0xd6, 0xf5, 0x11, 0xe7, 0x23, 0x8f, 0x6e, 0xe9, + 0xde, 0x51, 0x74, 0xbc, 0xe5, 0x46, 0x82, 0x48, 0xc6, 0x7d, 0x33, 0x7e, 0xeb, 0xfc, 0x38, 0xf1, + 0xa7, 0x17, 0x51, 0x9f, 0x0b, 0x12, 0x04, 0x54, 0x98, 0x09, 0x5b, 0x2f, 0x8b, 0x50, 0xd9, 0xe7, + 0x2e, 0x3d, 0x08, 0xa8, 0x83, 0x76, 0xc1, 0x22, 0xbe, 0xcf, 0xa5, 0xf6, 0x1d, 0xda, 0x85, 0x66, + 0x61, 0xd3, 0xda, 0xde, 0x68, 0xbf, 0xb9, 0xa7, 0x76, 0x67, 0x0e, 0xeb, 0x16, 0x5f, 0x9d, 0x6d, + 0x2c, 0xe1, 0x2c, 0x13, 0xfd, 0x02, 0x6a, 0x2e, 0x0d, 0x99, 0xa0, 0xee, 0x50, 0x70, 0x8f, 0xda, + 0xcb, 0xcd, 0xc2, 0xe6, 0x95, 0xed, 0x8f, 0xf2, 0x3c, 0xa9, 0xc9, 0x31, 0xf7, 0x28, 0xb6, 0x0c, + 0x43, 0x75, 0xd0, 0x2e, 0xc0, 0x84, 0x4e, 0x8e, 0xa8, 0x08, 0xc7, 0x2c, 0xb0, 0x57, 0x34, 0xfd, + 0x07, 0x17, 0xd1, 0xd5, 0xda, 0xdb, 0x8f, 0x53, 0x38, 0xce, 0x50, 0xd1, 0x63, 0xa8, 0x91, 0x53, + 0xc2, 0x3c, 0x72, 0xc4, 0x3c, 0x26, 0xa7, 0x76, 0x51, 0xbb, 0xfa, 0xec, 0xad, 0xae, 0x3a, 0x19, + 0x02, 0x5e, 0xa0, 0xb7, 0x5c, 0x80, 0xf9, 0x44, 0xe8, 0x1e, 0x94, 0x07, 0xfd, 0xfd, 0xde, 0xde, + 0xfe, 0x6e, 0x7d, 0xa9, 0x71, 0xeb, 0xc5, 0xcb, 0xe6, 0x0d, 0xe5, 0x63, 0x0e, 0x18, 0x50, 0xdf, + 0x65, 0xfe, 0x08, 0x6d, 0x42, 0xa5, 0xb3, 0xb3, 0xd3, 0x1f, 0x1c, 0xf6, 0x7b, 0xf5, 0x42, 0xa3, + 0xf1, 0xe2, 0x65, 0xf3, 0xe6, 0x22, 0xb0, 0xe3, 0x38, 0x34, 0x90, 0xd4, 0x6d, 0x14, 0xbf, 0xfb, + 0xcb, 0xfa, 0x52, 0xeb, 0xbb, 0x02, 0xd4, 0xb2, 0x8b, 0x40, 0xf7, 0xa0, 0xd4, 0xd9, 0x39, 0xdc, + 0x7b, 0xda, 0xaf, 0x2f, 0xcd, 0xe9, 0x59, 0x44, 0xc7, 0x91, 0xec, 0x94, 0xa2, 0xbb, 0xb0, 0x3a, + 0xe8, 0x7c, 0x7b, 0xd0, 0xaf, 0x17, 0xe6, 0xcb, 0xc9, 0xc2, 0x06, 0x24, 0x0a, 0x35, 0xaa, 0x87, + 0x3b, 0x7b, 0xfb, 0xf5, 0xe5, 0x7c, 0x54, 0x4f, 0x10, 0xe6, 0x9b, 0xa5, 0xfc, 0xb9, 0x08, 0xd6, + 0x01, 0x15, 0xa7, 0xcc, 0x79, 0xcf, 0x12, 0xf9, 0x12, 0x8a, 0x92, 0x84, 0x27, 0x5a, 0x1a, 0x56, + 0xbe, 0x34, 0x0e, 0x49, 0x78, 0xa2, 0x26, 0x35, 0x74, 0x8d, 0x57, 0xca, 0x10, 0x34, 0xf0, 0x98, + 0x43, 0x24, 0x75, 0xb5, 0x32, 0xac, 0xed, 0x4f, 0xf3, 0xd8, 0x38, 0x45, 0x99, 0xf5, 0x3f, 0x5c, + 0xc2, 0x19, 0x2a, 0x7a, 0x00, 0xa5, 0x91, 0xc7, 0x8f, 0x88, 0xa7, 0x35, 0x61, 0x6d, 0xdf, 0xc9, + 0x73, 0xb2, 0xab, 0x11, 0x73, 0x07, 0x86, 0x82, 0xee, 0x43, 0x29, 0x0a, 0x5c, 0x22, 0xa9, 0x5d, + 0xd2, 0xe4, 0x66, 0x1e, 0xf9, 0x5b, 0x8d, 0xd8, 0xe1, 0xfe, 0x31, 0x1b, 0x61, 0x83, 0x47, 0x8f, + 0xa0, 0xe2, 0x53, 0xf9, 0x9c, 0x8b, 0x93, 0xd0, 0x2e, 0x37, 0x57, 0x36, 0xad, 0xed, 0x2f, 0x72, + 0xc5, 0x18, 0x63, 0x3a, 0x52, 0x12, 0x67, 0x3c, 0xa1, 0xbe, 0x8c, 0xdd, 0x74, 0x97, 0xed, 0x02, + 0x4e, 0x1d, 0xa0, 0x9f, 0x41, 0x85, 0xfa, 0x6e, 0xc0, 0x99, 0x2f, 0xed, 0xca, 0xc5, 0x0b, 0xe9, + 0x1b, 0x8c, 0x3a, 0x4c, 0x9c, 0x32, 0x14, 0x5b, 0x70, 0xcf, 0x3b, 0x22, 0xce, 0x89, 0x5d, 0x7d, + 0xc7, 0x6d, 0xa4, 0x8c, 0x6e, 0x09, 0x8a, 0x13, 0xee, 0xd2, 0xd6, 0x16, 0x5c, 0x7b, 0xe3, 0xa8, + 0x51, 0x03, 0x2a, 0xe6, 0xa8, 0x63, 0x8d, 0x14, 0x71, 0xda, 0x6f, 0x5d, 0x85, 0xb5, 0x85, 0x63, + 0x6d, 0xfd, 0x6d, 0x15, 0x2a, 0xc9, 0x5d, 0xa3, 0x0e, 0x54, 0x1d, 0xee, 0x4b, 0xc2, 0x7c, 0x2a, + 0x8c, 0xbc, 0x72, 0x6f, 0x66, 0x27, 0x01, 0x29, 0xd6, 0xc3, 0x25, 0x3c, 0x67, 0xa1, 0x5f, 0x41, + 0x55, 0xd0, 0x90, 0x47, 0xc2, 0xa1, 0xa1, 0xd1, 0xd7, 0x66, 0xbe, 0x42, 0x62, 0x10, 0xa6, 0x7f, + 0x88, 0x98, 0xa0, 0xea, 0x94, 0x43, 0x3c, 0xa7, 0xa2, 0x07, 0x50, 0x16, 0x34, 0x94, 0x44, 0xc8, + 0xb7, 0x49, 0x04, 0xc7, 0x90, 0x01, 0xf7, 0x98, 0x33, 0xc5, 0x09, 0x03, 0x3d, 0x80, 0x6a, 0xe0, + 0x11, 0x47, 0x7b, 0xb5, 0x57, 0x35, 0xfd, 0xe3, 0x3c, 0xfa, 0x20, 0x01, 0xe1, 0x39, 0x1e, 0x7d, + 0x05, 0xe0, 0xf1, 0xd1, 0xd0, 0x15, 0xec, 0x94, 0x0a, 0x23, 0xb1, 0x46, 0x1e, 0xbb, 0xa7, 0x11, + 0xb8, 0xea, 0xf1, 0x51, 0xdc, 0x44, 0xbb, 0xff, 0x97, 0xbe, 0x32, 0xda, 0x7a, 0x04, 0x40, 0xd2, + 0x51, 0xa3, 0xae, 0xcf, 0xde, 0xc9, 0x95, 0xb9, 0x91, 0x0c, 0x1d, 0xdd, 0x81, 0xda, 0x31, 0x17, + 0x0e, 0x1d, 0x9a, 0xa8, 0xa9, 0x6a, 0x4d, 0x58, 0xda, 0x16, 0xeb, 0x0b, 0x75, 0xa1, 0x3c, 0xa2, + 0x3e, 0x15, 0xcc, 0xb1, 0x41, 0x4f, 0x76, 0x2f, 0x37, 0x20, 0x63, 0x08, 0x8e, 0x7c, 0xc9, 0x26, + 0xd4, 0xcc, 0x94, 0x10, 0xd1, 0xef, 0xe1, 0x83, 0xe4, 0xfa, 0x86, 0x82, 0x1e, 0x53, 0x41, 0x7d, + 0xa5, 0x01, 0x4b, 0x9f, 0xc3, 0xa7, 0x6f, 0xd7, 0x80, 0x41, 0x9b, 0xc7, 0x06, 0x89, 0xf3, 0x03, + 0x61, 0xb7, 0x0a, 0x65, 0x11, 0xcf, 0xdb, 0xfa, 0x53, 0x41, 0xa9, 0xfe, 0x1c, 0x02, 0x6d, 0x81, + 0x95, 0x4e, 0xcf, 0x5c, 0xad, 0xde, 0x6a, 0xf7, 0xca, 0xec, 0x6c, 0x03, 0x12, 0xec, 0x5e, 0x4f, + 0xbd, 0x41, 0xa6, 0xed, 0xa2, 0x3e, 0xac, 0xa5, 0x04, 0x55, 0x06, 0x98, 0x44, 0xd9, 0x7c, 0xdb, + 0x4a, 0x0f, 0xa7, 0x01, 0xc5, 0x35, 0x91, 0xe9, 0xb5, 0x7e, 0x07, 0xe8, 0xcd, 0x73, 0x41, 0x08, + 0x8a, 0x27, 0xcc, 0x37, 0xcb, 0xc0, 0xba, 0x8d, 0xda, 0x50, 0x0e, 0xc8, 0xd4, 0xe3, 0xc4, 0x35, + 0x81, 0x71, 0xbd, 0x1d, 0x17, 0x08, 0xed, 0xa4, 0x40, 0x68, 0x77, 0xfc, 0x29, 0x4e, 0x40, 0xad, + 0x47, 0x70, 0x23, 0xf7, 0x7a, 0xd1, 0x36, 0xd4, 0xd2, 0x80, 0x9b, 0xef, 0xf5, 0xea, 0xec, 0x6c, + 0xc3, 0x4a, 0x23, 0x73, 0xaf, 0x87, 0xad, 0x14, 0xb4, 0xe7, 0xb6, 0x5e, 0x57, 0x61, 0x6d, 0x21, + 0x6c, 0xd1, 0x75, 0x58, 0x65, 0x13, 0x32, 0xa2, 0x66, 0x8d, 0x71, 0x07, 0xf5, 0xa1, 0xe4, 0x91, + 0x23, 0xea, 0xa9, 0xe0, 0x55, 0x17, 0xf7, 0xc3, 0x4b, 0xe3, 0xbf, 0xfd, 0x1b, 0x8d, 0xef, 0xfb, + 0x52, 0x4c, 0xb1, 0x21, 0x23, 0x1b, 0xca, 0x0e, 0x9f, 0x4c, 0x88, 0xaf, 0xd2, 0xc4, 0xca, 0x66, + 0x15, 0x27, 0x5d, 0x75, 0x32, 0x44, 0x8c, 0x42, 0xbb, 0xa8, 0xcd, 0xba, 0x8d, 0xea, 0xb0, 0x42, + 0xfd, 0x53, 0x7b, 0x55, 0x9b, 0x54, 0x53, 0x59, 0x5c, 0x16, 0x47, 0x5f, 0x15, 0xab, 0xa6, 0xe2, + 0x45, 0x21, 0x15, 0x76, 0x39, 0x3e, 0x51, 0xd5, 0x46, 0x3f, 0x85, 0xd2, 0x84, 0x47, 0xbe, 0x0c, + 0xed, 0x8a, 0x5e, 0xec, 0xad, 0xbc, 0xc5, 0x3e, 0x56, 0x08, 0xa3, 0x2c, 0x03, 0x47, 0x7d, 0xb8, + 0x16, 0x4a, 0x1e, 0x0c, 0x47, 0x82, 0x38, 0x74, 0x18, 0x50, 0xc1, 0xb8, 0x6b, 0x9e, 0xe1, 0x5b, + 0x6f, 0x5c, 0x4a, 0xcf, 0x14, 0x7c, 0xf8, 0xaa, 0xe2, 0xec, 0x2a, 0xca, 0x40, 0x33, 0xd0, 0x00, + 0x6a, 0x41, 0xe4, 0x79, 0x43, 0x1e, 0xc4, 0x19, 0x39, 0x8e, 0x9d, 0x77, 0x38, 0xb2, 0x41, 0xe4, + 0x79, 0x4f, 0x62, 0x12, 0xb6, 0x82, 0x79, 0x07, 0xdd, 0x84, 0xd2, 0x48, 0xf0, 0x28, 0x88, 0xe3, + 0xa6, 0x8a, 0x4d, 0x0f, 0x7d, 0x03, 0xe5, 0x90, 0x3a, 0x82, 0xca, 0xd0, 0xae, 0xe9, 0xad, 0x7e, + 0x92, 0x37, 0xc9, 0x81, 0x86, 0xa4, 0x31, 0x81, 0x13, 0x0e, 0xba, 0x05, 0x2b, 0x52, 0x4e, 0xed, + 0xb5, 0x66, 0x61, 0xb3, 0xd2, 0x2d, 0xcf, 0xce, 0x36, 0x56, 0x0e, 0x0f, 0x9f, 0x61, 0x65, 0x53, + 0xd9, 0x62, 0xcc, 0x43, 0xe9, 0x93, 0x09, 0xb5, 0xaf, 0xe8, 0xb3, 0x4d, 0xfb, 0xe8, 0x19, 0x80, + 0xeb, 0x87, 0x43, 0x47, 0x3f, 0x4f, 0xf6, 0x55, 0xbd, 0xbb, 0x2f, 0x2e, 0xdf, 0x5d, 0x6f, 0xff, + 0xc0, 0x64, 0xcc, 0xb5, 0xd9, 0xd9, 0x46, 0x35, 0xed, 0xe2, 0xaa, 0xeb, 0x87, 0x71, 0x13, 0x75, + 0xc1, 0x1a, 0x53, 0xe2, 0xc9, 0xb1, 0x33, 0xa6, 0xce, 0x89, 0x5d, 0xbf, 0x38, 0x05, 0x3e, 0xd4, + 0x30, 0xe3, 0x21, 0x4b, 0x52, 0x0a, 0x56, 0x4b, 0x0d, 0xed, 0x6b, 0xfa, 0xac, 0xe2, 0x0e, 0xfa, + 0x18, 0x80, 0x07, 0xd4, 0x1f, 0x86, 0xd2, 0x65, 0xbe, 0x8d, 0xd4, 0x96, 0x71, 0x55, 0x59, 0x0e, + 0x94, 0x01, 0xdd, 0x56, 0x09, 0x8a, 0xb8, 0x43, 0xee, 0x7b, 0x53, 0xfb, 0x03, 0x3d, 0x5a, 0x51, + 0x86, 0x27, 0xbe, 0x37, 0x45, 0x1b, 0x60, 0x69, 0x5d, 0x84, 0x6c, 0xe4, 0x13, 0xcf, 0xbe, 0xae, + 0xcf, 0x03, 0x94, 0xe9, 0x40, 0x5b, 0xd4, 0x3d, 0xc4, 0xa7, 0x11, 0xda, 0x37, 0x2e, 0xbe, 0x07, + 0xb3, 0xd8, 0xf9, 0x3d, 0x18, 0x0e, 0xfa, 0x39, 0x40, 0x20, 0xd8, 0x29, 0xf3, 0xe8, 0x88, 0x86, + 0xf6, 0x4d, 0xbd, 0xe9, 0xf5, 0xdc, 0xcc, 0x94, 0xa2, 0x70, 0x86, 0x81, 0xda, 0x50, 0x64, 0x3e, + 0x93, 0xf6, 0x87, 0x26, 0x2b, 0x9d, 0x97, 0x6a, 0x97, 0x73, 0xef, 0x29, 0xf1, 0x22, 0x8a, 0x35, + 0x0e, 0x7d, 0x04, 0x55, 0x16, 0x72, 0x4f, 0xcb, 0xd7, 0xb6, 0xf5, 0x6e, 0xe6, 0x86, 0xc6, 0x57, + 0x60, 0x65, 0x62, 0x57, 0xc5, 0xdc, 0x09, 0x9d, 0x9a, 0xe7, 0x40, 0x35, 0xd5, 0x01, 0x9f, 0x2a, + 0x6f, 0xfa, 0xbd, 0xaa, 0xe2, 0xb8, 0xf3, 0xf5, 0xf2, 0xfd, 0x42, 0x63, 0x1b, 0xac, 0x8c, 0x86, + 0xd1, 0x27, 0xea, 0x2d, 0x1d, 0xb1, 0x50, 0x8a, 0xe9, 0x90, 0x44, 0x72, 0x6c, 0xff, 0x52, 0x13, + 0x6a, 0x89, 0xb1, 0x13, 0xc9, 0x71, 0x63, 0x08, 0x73, 0x29, 0xa0, 0x26, 0x58, 0x4a, 0x62, 0x21, + 0x15, 0xa7, 0x54, 0xa8, 0x3a, 0x45, 0xdd, 0x60, 0xd6, 0xa4, 0x42, 0x21, 0xa4, 0x44, 0x38, 0x63, + 0xfd, 0x12, 0x55, 0xb1, 0xe9, 0xa9, 0xa7, 0x25, 0x89, 0x37, 0xf3, 0xb4, 0x98, 0x6e, 0xeb, 0xdf, + 0x05, 0xa8, 0x65, 0xcb, 0x2d, 0xb4, 0x13, 0x97, 0x49, 0x7a, 0x4b, 0x57, 0xb6, 0xb7, 0x2e, 0x2b, + 0xcf, 0xf4, 0x33, 0xef, 0x45, 0xca, 0xd9, 0x63, 0xf5, 0x33, 0xd2, 0x64, 0xf4, 0x13, 0x58, 0x0d, + 0xb8, 0x90, 0xc9, 0x83, 0x98, 0x7f, 0x5d, 0x5c, 0x24, 0x49, 0x3c, 0x06, 0xb7, 0xc6, 0x70, 0x65, + 0xd1, 0x1b, 0xba, 0x0b, 0x2b, 0x4f, 0xf7, 0x06, 0xf5, 0xa5, 0xc6, 0xed, 0x17, 0x2f, 0x9b, 0x1f, + 0x2e, 0x0e, 0x3e, 0x65, 0x42, 0x46, 0xc4, 0xdb, 0x1b, 0xa0, 0xcf, 0x61, 0xb5, 0xb7, 0x7f, 0x80, + 0x71, 0xbd, 0xd0, 0xd8, 0x78, 0xf1, 0xb2, 0x79, 0x7b, 0x11, 0xa7, 0x86, 0x78, 0xe4, 0xbb, 0x98, + 0x1f, 0xa5, 0xbf, 0x84, 0xff, 0x2c, 0x83, 0x65, 0xf2, 0xc4, 0xfb, 0xfe, 0x48, 0xae, 0xc5, 0x45, + 0x50, 0xf2, 0x00, 0x2c, 0x5f, 0x5a, 0x0b, 0xd5, 0x62, 0x82, 0xb9, 0xe3, 0x3b, 0x50, 0x63, 0xc1, + 0xe9, 0x97, 0x43, 0xea, 0x93, 0x23, 0xcf, 0x7c, 0x18, 0x2a, 0xd8, 0x52, 0xb6, 0x7e, 0x6c, 0x52, + 0xaf, 0x0f, 0xf3, 0x25, 0x15, 0xbe, 0xf9, 0x0a, 0x54, 0x70, 0xda, 0x47, 0xdf, 0x40, 0x91, 0x05, + 0x64, 0x62, 0x0a, 0xb8, 0xdc, 0x1d, 0xec, 0x0d, 0x3a, 0x8f, 0x8d, 0x06, 0xbb, 0x95, 0xd9, 0xd9, + 0x46, 0x51, 0x19, 0xb0, 0xa6, 0xa1, 0xf5, 0xa4, 0x86, 0x52, 0x33, 0xe9, 0x4c, 0x52, 0xc1, 0x19, + 0x8b, 0xd2, 0x11, 0xf3, 0x47, 0x82, 0x86, 0xa1, 0xce, 0x29, 0x15, 0x9c, 0x74, 0x51, 0x03, 0xca, + 0xa6, 0x12, 0xd3, 0xa5, 0x57, 0x55, 0x55, 0x39, 0xc6, 0xd0, 0x5d, 0x03, 0x2b, 0x3e, 0x8d, 0xe1, + 0xb1, 0xe0, 0x93, 0xd6, 0x7f, 0x8b, 0x60, 0xed, 0x78, 0x51, 0x28, 0x4d, 0x52, 0x7d, 0x6f, 0x87, + 0xff, 0x0c, 0xae, 0x11, 0xfd, 0x31, 0x25, 0xbe, 0xca, 0x50, 0xba, 0xc0, 0x35, 0x17, 0x70, 0x37, + 0xd7, 0x5d, 0x0a, 0x8e, 0x8b, 0xe1, 0x6e, 0x49, 0xf9, 0xb4, 0x0b, 0xb8, 0x4e, 0xce, 0x8d, 0xa0, + 0x03, 0x58, 0xe3, 0xc2, 0x19, 0xd3, 0x50, 0xc6, 0x79, 0xcd, 0x7c, 0xe4, 0x72, 0xbf, 0xf8, 0x4f, + 0xb2, 0x40, 0xf3, 0xa8, 0xc7, 0xab, 0x5d, 0xf4, 0x81, 0xee, 0x43, 0x51, 0x90, 0xe3, 0xa4, 0x58, + 0xcf, 0x0d, 0x12, 0x4c, 0x8e, 0xe5, 0x82, 0x0b, 0xcd, 0x40, 0xbf, 0x06, 0x70, 0x59, 0x18, 0x10, + 0xe9, 0x8c, 0xa9, 0x30, 0x97, 0x9d, 0xbb, 0xc5, 0x5e, 0x8a, 0x5a, 0xf0, 0x92, 0x61, 0xa3, 0x47, + 0x50, 0x75, 0x48, 0x22, 0xd7, 0xd2, 0xc5, 0xbf, 0xdb, 0x9d, 0x8e, 0x71, 0x51, 0x57, 0x2e, 0x66, + 0x67, 0x1b, 0x95, 0xc4, 0x82, 0x2b, 0x0e, 0x31, 0xf2, 0x7d, 0x04, 0x6b, 0xea, 0xd7, 0x3b, 0x74, + 0xe9, 0x31, 0x89, 0x3c, 0x19, 0xcb, 0xe4, 0x82, 0x24, 0xa5, 0xbe, 0x50, 0x3d, 0x83, 0x33, 0xeb, + 0xaa, 0xc9, 0x8c, 0x0d, 0xfd, 0x16, 0xae, 0x51, 0xdf, 0x11, 0x53, 0x2d, 0xd6, 0x64, 0x85, 0x95, + 0x8b, 0x37, 0xdb, 0x4f, 0xc1, 0x0b, 0x9b, 0xad, 0xd3, 0x73, 0xf6, 0xd6, 0x3f, 0x0b, 0x00, 0x71, + 0xde, 0x7f, 0xbf, 0x02, 0x44, 0x50, 0x74, 0x89, 0x24, 0x5a, 0x73, 0x35, 0xac, 0xdb, 0xe8, 0x6b, + 0x00, 0x49, 0x27, 0x81, 0x4a, 0x1f, 0xfe, 0xc8, 0xc8, 0xe6, 0x6d, 0xcf, 0x41, 0x06, 0x8d, 0xb6, + 0xa1, 0x64, 0xbe, 0x54, 0xc5, 0x4b, 0x79, 0x06, 0xd9, 0xfa, 0x6b, 0x01, 0x20, 0xde, 0xe6, 0xf7, + 0x7a, 0x6f, 0x5d, 0xfb, 0xd5, 0xeb, 0xf5, 0xa5, 0x7f, 0xbc, 0x5e, 0x5f, 0xfa, 0xe3, 0x6c, 0xbd, + 0xf0, 0x6a, 0xb6, 0x5e, 0xf8, 0xfb, 0x6c, 0xbd, 0xf0, 0xaf, 0xd9, 0x7a, 0xe1, 0xa8, 0xa4, 0x53, + 0xf3, 0x8f, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0x1a, 0xfc, 0xe2, 0x84, 0xc8, 0x14, 0x00, 0x00, } diff --git a/api/specs.proto b/api/specs.proto index bef387faf3..75c12686e4 100644 --- a/api/specs.proto +++ b/api/specs.proto @@ -297,6 +297,11 @@ message ContainerSpec { // task will exit and a new task will be rescheduled elsewhere. A container // is considered unhealthy after `Retries` number of consecutive failures. HealthConfig healthcheck = 16; + + // Isolation defines the isolation level for engines supporting multiple isolation modes + // ie: docker on windows server supports "process" or "hyperv" + // on engines that does not support it, value should be either "" or "default" + string isolation = 24; } // EndpointSpec defines the properties that can be configured to From 7d10d6000e1b2020d1b3408188cc018eadd1f982 Mon Sep 17 00:00:00 2001 From: Simon Ferquel Date: Fri, 22 Sep 2017 15:30:31 +0200 Subject: [PATCH 2/2] Use an enum for isolation Signed-off-by: Simon Ferquel --- agent/exec/dockerapi/container.go | 10 +- agent/exec/dockerapi/container_test.go | 4 +- api/api.pb.txt | 30 ++- api/specs.pb.go | 326 +++++++++++++------------ api/specs.proto | 20 +- 5 files changed, 231 insertions(+), 159 deletions(-) diff --git a/agent/exec/dockerapi/container.go b/agent/exec/dockerapi/container.go index 3cc528b33b..c8e4c13af8 100644 --- a/agent/exec/dockerapi/container.go +++ b/agent/exec/dockerapi/container.go @@ -121,7 +121,15 @@ func (c *containerConfig) portBindings() nat.PortMap { } func (c *containerConfig) isolation() enginecontainer.Isolation { - return enginecontainer.Isolation(c.spec().Isolation) + switch c.spec().Isolation { + case api.ContainerIsolationDefault: + return enginecontainer.Isolation("default") + case api.ContainerIsolationHyperV: + return enginecontainer.Isolation("hyperv") + case api.ContainerIsolationProcess: + return enginecontainer.Isolation("process") + } + return enginecontainer.Isolation("") } func (c *containerConfig) exposedPorts() map[nat.Port]struct{} { diff --git a/agent/exec/dockerapi/container_test.go b/agent/exec/dockerapi/container_test.go index d928d7fdc2..22fb5a676d 100644 --- a/agent/exec/dockerapi/container_test.go +++ b/agent/exec/dockerapi/container_test.go @@ -183,14 +183,14 @@ func TestIsolation(t *testing.T) { Spec: api.TaskSpec{ Runtime: &api.TaskSpec_Container{ Container: &api.ContainerSpec{ - Isolation: "test", + Isolation: api.ContainerIsolationHyperV, }, }, }, }, } - expected := "test" + expected := "hyperv" actual := string(c.hostConfig().Isolation) if actual != expected { t.Fatalf("expected %s, got %s", expected, actual) diff --git a/api/api.pb.txt b/api/api.pb.txt index 30224674a0..1ff0e01bec 100755 --- a/api/api.pb.txt +++ b/api/api.pb.txt @@ -4747,7 +4747,8 @@ file { name: "isolation" number: 24 label: LABEL_OPTIONAL - type: TYPE_STRING + type: TYPE_ENUM + type_name: ".docker.swarmkit.v1.ContainerSpec.Isolation" json_name: "isolation" } nested_type { @@ -4804,6 +4805,33 @@ file { json_name: "options" } } + enum_type { + name: "Isolation" + value { + name: "ISOLATION_DEFAULT" + number: 0 + options { + 66001: "ContainerIsolationDefault" + } + } + value { + name: "ISOLATION_PROCESS" + number: 1 + options { + 66001: "ContainerIsolationProcess" + } + } + value { + name: "ISOLATION_HYPERV" + number: 2 + options { + 66001: "ContainerIsolationHyperV" + } + } + options { + 62001: 0 + } + } } message_type { name: "EndpointSpec" diff --git a/api/specs.pb.go b/api/specs.pb.go index 7db23e363f..b150d6f81e 100644 --- a/api/specs.pb.go +++ b/api/specs.pb.go @@ -75,6 +75,35 @@ func (x NodeSpec_Availability) String() string { } func (NodeSpec_Availability) EnumDescriptor() ([]byte, []int) { return fileDescriptorSpecs, []int{0, 1} } +type ContainerSpec_Isolation int32 + +const ( + // ISOLATION_DEFAULT uses whatever default value from the container runtime + ContainerIsolationDefault ContainerSpec_Isolation = 0 + // ISOLATION_PROCESS forces windows container isolation + ContainerIsolationProcess ContainerSpec_Isolation = 1 + // ISOLATION_HYPERV forces Hyper-V isolation + ContainerIsolationHyperV ContainerSpec_Isolation = 2 +) + +var ContainerSpec_Isolation_name = map[int32]string{ + 0: "ISOLATION_DEFAULT", + 1: "ISOLATION_PROCESS", + 2: "ISOLATION_HYPERV", +} +var ContainerSpec_Isolation_value = map[string]int32{ + "ISOLATION_DEFAULT": 0, + "ISOLATION_PROCESS": 1, + "ISOLATION_HYPERV": 2, +} + +func (x ContainerSpec_Isolation) String() string { + return proto.EnumName(ContainerSpec_Isolation_name, int32(x)) +} +func (ContainerSpec_Isolation) EnumDescriptor() ([]byte, []int) { + return fileDescriptorSpecs, []int{8, 0} +} + // ResolutionMode specifies the mode of resolution to use for // internal loadbalancing between tasks which are all within // the cluster. This is sometimes calls east-west data path. @@ -588,10 +617,9 @@ type ContainerSpec struct { // task will exit and a new task will be rescheduled elsewhere. A container // is considered unhealthy after `Retries` number of consecutive failures. Healthcheck *HealthConfig `protobuf:"bytes,16,opt,name=healthcheck" json:"healthcheck,omitempty"` - // Isolation defines the isolation level for engines supporting multiple isolation modes - // ie: docker on windows server supports "process" or "hyperv" - // on engines that does not support it, value should be either "" or "default" - Isolation string `protobuf:"bytes,24,opt,name=isolation,proto3" json:"isolation,omitempty"` + // Isolation defines the isolation level for windows containers (default, process, hyperv). + // Runtimes that don't support it ignore that field + Isolation ContainerSpec_Isolation `protobuf:"varint,24,opt,name=isolation,proto3,enum=docker.swarmkit.v1.ContainerSpec_Isolation" json:"isolation,omitempty"` } func (m *ContainerSpec) Reset() { *m = ContainerSpec{} } @@ -837,6 +865,7 @@ func init() { proto.RegisterType((*ConfigSpec)(nil), "docker.swarmkit.v1.ConfigSpec") proto.RegisterEnum("docker.swarmkit.v1.NodeSpec_Membership", NodeSpec_Membership_name, NodeSpec_Membership_value) proto.RegisterEnum("docker.swarmkit.v1.NodeSpec_Availability", NodeSpec_Availability_name, NodeSpec_Availability_value) + proto.RegisterEnum("docker.swarmkit.v1.ContainerSpec_Isolation", ContainerSpec_Isolation_name, ContainerSpec_Isolation_value) proto.RegisterEnum("docker.swarmkit.v1.EndpointSpec_ResolutionMode", EndpointSpec_ResolutionMode_name, EndpointSpec_ResolutionMode_value) } @@ -2019,13 +2048,12 @@ func (m *ContainerSpec) MarshalTo(dAtA []byte) (int, error) { } i += n24 } - if len(m.Isolation) > 0 { - dAtA[i] = 0xc2 + if m.Isolation != 0 { + dAtA[i] = 0xc0 i++ dAtA[i] = 0x1 i++ - i = encodeVarintSpecs(dAtA, i, uint64(len(m.Isolation))) - i += copy(dAtA[i:], m.Isolation) + i = encodeVarintSpecs(dAtA, i, uint64(m.Isolation)) } return i, nil } @@ -2756,9 +2784,8 @@ func (m *ContainerSpec) Size() (n int) { l = m.Init.Size() n += 2 + l + sovSpecs(uint64(l)) } - l = len(m.Isolation) - if l > 0 { - n += 2 + l + sovSpecs(uint64(l)) + if m.Isolation != 0 { + n += 2 + sovSpecs(uint64(m.Isolation)) } return n } @@ -5216,10 +5243,10 @@ func (m *ContainerSpec) Unmarshal(dAtA []byte) error { } iNdEx = postIndex case 24: - if wireType != 2 { + if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Isolation", wireType) } - var stringLen uint64 + m.Isolation = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowSpecs @@ -5229,21 +5256,11 @@ func (m *ContainerSpec) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= (uint64(b) & 0x7F) << shift + m.Isolation |= (ContainerSpec_Isolation(b) & 0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthSpecs - } - postIndex := iNdEx + intStringLen - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Isolation = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipSpecs(dAtA[iNdEx:]) @@ -6555,131 +6572,138 @@ var ( func init() { proto.RegisterFile("github.com/docker/swarmkit/api/specs.proto", fileDescriptorSpecs) } var fileDescriptorSpecs = []byte{ - // 2016 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4f, 0x6f, 0x1b, 0xb9, - 0x15, 0xb7, 0x6c, 0x59, 0x7f, 0xde, 0xc8, 0x89, 0xc2, 0x4d, 0xb2, 0x13, 0x65, 0xd7, 0x56, 0xb4, - 0xd9, 0xd4, 0xbb, 0x8b, 0xca, 0xa8, 0x5b, 0x6c, 0xb3, 0x9b, 0x6e, 0x5b, 0xc9, 0x52, 0x1d, 0x37, - 0x8d, 0x23, 0xd0, 0xde, 0xb4, 0x01, 0x0a, 0x08, 0xf4, 0x0c, 0x2d, 0x11, 0x1e, 0x0d, 0xa7, 0x1c, - 0x8e, 0x03, 0xdd, 0x7a, 0x5c, 0xa4, 0x9f, 0x21, 0xe8, 0xa1, 0xe8, 0xbd, 0x1f, 0x23, 0xc7, 0x1e, - 0xdb, 0x8b, 0xd1, 0xe8, 0x2b, 0xf4, 0xd6, 0x4b, 0x0b, 0x72, 0x38, 0xa3, 0x91, 0x33, 0x8e, 0x03, - 0x34, 0x87, 0xbd, 0x91, 0x8f, 0xbf, 0xdf, 0xe3, 0xbf, 0xdf, 0xe3, 0x7b, 0x84, 0xcf, 0x47, 0x4c, - 0x8e, 0xa3, 0xa3, 0xb6, 0xc3, 0x27, 0x5b, 0x2e, 0x77, 0x4e, 0xa8, 0xd8, 0x0a, 0x9f, 0x13, 0x31, - 0x39, 0x61, 0x72, 0x8b, 0x04, 0x6c, 0x2b, 0x0c, 0xa8, 0x13, 0xb6, 0x03, 0xc1, 0x25, 0x47, 0x28, - 0x06, 0xb4, 0x13, 0x40, 0xfb, 0xf4, 0x47, 0x8d, 0xcb, 0xf8, 0x72, 0x1a, 0x50, 0xc3, 0x6f, 0x5c, - 0x1f, 0xf1, 0x11, 0xd7, 0xcd, 0x2d, 0xd5, 0x32, 0xd6, 0xf5, 0x11, 0xe7, 0x23, 0x8f, 0x6e, 0xe9, - 0xde, 0x51, 0x74, 0xbc, 0xe5, 0x46, 0x82, 0x48, 0xc6, 0x7d, 0x33, 0x7e, 0xeb, 0xfc, 0x38, 0xf1, - 0xa7, 0x17, 0x51, 0x9f, 0x0b, 0x12, 0x04, 0x54, 0x98, 0x09, 0x5b, 0x2f, 0x8b, 0x50, 0xd9, 0xe7, - 0x2e, 0x3d, 0x08, 0xa8, 0x83, 0x76, 0xc1, 0x22, 0xbe, 0xcf, 0xa5, 0xf6, 0x1d, 0xda, 0x85, 0x66, - 0x61, 0xd3, 0xda, 0xde, 0x68, 0xbf, 0xb9, 0xa7, 0x76, 0x67, 0x0e, 0xeb, 0x16, 0x5f, 0x9d, 0x6d, - 0x2c, 0xe1, 0x2c, 0x13, 0xfd, 0x02, 0x6a, 0x2e, 0x0d, 0x99, 0xa0, 0xee, 0x50, 0x70, 0x8f, 0xda, - 0xcb, 0xcd, 0xc2, 0xe6, 0x95, 0xed, 0x8f, 0xf2, 0x3c, 0xa9, 0xc9, 0x31, 0xf7, 0x28, 0xb6, 0x0c, - 0x43, 0x75, 0xd0, 0x2e, 0xc0, 0x84, 0x4e, 0x8e, 0xa8, 0x08, 0xc7, 0x2c, 0xb0, 0x57, 0x34, 0xfd, - 0x07, 0x17, 0xd1, 0xd5, 0xda, 0xdb, 0x8f, 0x53, 0x38, 0xce, 0x50, 0xd1, 0x63, 0xa8, 0x91, 0x53, - 0xc2, 0x3c, 0x72, 0xc4, 0x3c, 0x26, 0xa7, 0x76, 0x51, 0xbb, 0xfa, 0xec, 0xad, 0xae, 0x3a, 0x19, - 0x02, 0x5e, 0xa0, 0xb7, 0x5c, 0x80, 0xf9, 0x44, 0xe8, 0x1e, 0x94, 0x07, 0xfd, 0xfd, 0xde, 0xde, - 0xfe, 0x6e, 0x7d, 0xa9, 0x71, 0xeb, 0xc5, 0xcb, 0xe6, 0x0d, 0xe5, 0x63, 0x0e, 0x18, 0x50, 0xdf, - 0x65, 0xfe, 0x08, 0x6d, 0x42, 0xa5, 0xb3, 0xb3, 0xd3, 0x1f, 0x1c, 0xf6, 0x7b, 0xf5, 0x42, 0xa3, - 0xf1, 0xe2, 0x65, 0xf3, 0xe6, 0x22, 0xb0, 0xe3, 0x38, 0x34, 0x90, 0xd4, 0x6d, 0x14, 0xbf, 0xfb, - 0xcb, 0xfa, 0x52, 0xeb, 0xbb, 0x02, 0xd4, 0xb2, 0x8b, 0x40, 0xf7, 0xa0, 0xd4, 0xd9, 0x39, 0xdc, - 0x7b, 0xda, 0xaf, 0x2f, 0xcd, 0xe9, 0x59, 0x44, 0xc7, 0x91, 0xec, 0x94, 0xa2, 0xbb, 0xb0, 0x3a, - 0xe8, 0x7c, 0x7b, 0xd0, 0xaf, 0x17, 0xe6, 0xcb, 0xc9, 0xc2, 0x06, 0x24, 0x0a, 0x35, 0xaa, 0x87, - 0x3b, 0x7b, 0xfb, 0xf5, 0xe5, 0x7c, 0x54, 0x4f, 0x10, 0xe6, 0x9b, 0xa5, 0xfc, 0xb9, 0x08, 0xd6, - 0x01, 0x15, 0xa7, 0xcc, 0x79, 0xcf, 0x12, 0xf9, 0x12, 0x8a, 0x92, 0x84, 0x27, 0x5a, 0x1a, 0x56, - 0xbe, 0x34, 0x0e, 0x49, 0x78, 0xa2, 0x26, 0x35, 0x74, 0x8d, 0x57, 0xca, 0x10, 0x34, 0xf0, 0x98, - 0x43, 0x24, 0x75, 0xb5, 0x32, 0xac, 0xed, 0x4f, 0xf3, 0xd8, 0x38, 0x45, 0x99, 0xf5, 0x3f, 0x5c, - 0xc2, 0x19, 0x2a, 0x7a, 0x00, 0xa5, 0x91, 0xc7, 0x8f, 0x88, 0xa7, 0x35, 0x61, 0x6d, 0xdf, 0xc9, - 0x73, 0xb2, 0xab, 0x11, 0x73, 0x07, 0x86, 0x82, 0xee, 0x43, 0x29, 0x0a, 0x5c, 0x22, 0xa9, 0x5d, - 0xd2, 0xe4, 0x66, 0x1e, 0xf9, 0x5b, 0x8d, 0xd8, 0xe1, 0xfe, 0x31, 0x1b, 0x61, 0x83, 0x47, 0x8f, - 0xa0, 0xe2, 0x53, 0xf9, 0x9c, 0x8b, 0x93, 0xd0, 0x2e, 0x37, 0x57, 0x36, 0xad, 0xed, 0x2f, 0x72, - 0xc5, 0x18, 0x63, 0x3a, 0x52, 0x12, 0x67, 0x3c, 0xa1, 0xbe, 0x8c, 0xdd, 0x74, 0x97, 0xed, 0x02, - 0x4e, 0x1d, 0xa0, 0x9f, 0x41, 0x85, 0xfa, 0x6e, 0xc0, 0x99, 0x2f, 0xed, 0xca, 0xc5, 0x0b, 0xe9, - 0x1b, 0x8c, 0x3a, 0x4c, 0x9c, 0x32, 0x14, 0x5b, 0x70, 0xcf, 0x3b, 0x22, 0xce, 0x89, 0x5d, 0x7d, - 0xc7, 0x6d, 0xa4, 0x8c, 0x6e, 0x09, 0x8a, 0x13, 0xee, 0xd2, 0xd6, 0x16, 0x5c, 0x7b, 0xe3, 0xa8, - 0x51, 0x03, 0x2a, 0xe6, 0xa8, 0x63, 0x8d, 0x14, 0x71, 0xda, 0x6f, 0x5d, 0x85, 0xb5, 0x85, 0x63, - 0x6d, 0xfd, 0x6d, 0x15, 0x2a, 0xc9, 0x5d, 0xa3, 0x0e, 0x54, 0x1d, 0xee, 0x4b, 0xc2, 0x7c, 0x2a, - 0x8c, 0xbc, 0x72, 0x6f, 0x66, 0x27, 0x01, 0x29, 0xd6, 0xc3, 0x25, 0x3c, 0x67, 0xa1, 0x5f, 0x41, - 0x55, 0xd0, 0x90, 0x47, 0xc2, 0xa1, 0xa1, 0xd1, 0xd7, 0x66, 0xbe, 0x42, 0x62, 0x10, 0xa6, 0x7f, - 0x88, 0x98, 0xa0, 0xea, 0x94, 0x43, 0x3c, 0xa7, 0xa2, 0x07, 0x50, 0x16, 0x34, 0x94, 0x44, 0xc8, - 0xb7, 0x49, 0x04, 0xc7, 0x90, 0x01, 0xf7, 0x98, 0x33, 0xc5, 0x09, 0x03, 0x3d, 0x80, 0x6a, 0xe0, - 0x11, 0x47, 0x7b, 0xb5, 0x57, 0x35, 0xfd, 0xe3, 0x3c, 0xfa, 0x20, 0x01, 0xe1, 0x39, 0x1e, 0x7d, - 0x05, 0xe0, 0xf1, 0xd1, 0xd0, 0x15, 0xec, 0x94, 0x0a, 0x23, 0xb1, 0x46, 0x1e, 0xbb, 0xa7, 0x11, - 0xb8, 0xea, 0xf1, 0x51, 0xdc, 0x44, 0xbb, 0xff, 0x97, 0xbe, 0x32, 0xda, 0x7a, 0x04, 0x40, 0xd2, - 0x51, 0xa3, 0xae, 0xcf, 0xde, 0xc9, 0x95, 0xb9, 0x91, 0x0c, 0x1d, 0xdd, 0x81, 0xda, 0x31, 0x17, - 0x0e, 0x1d, 0x9a, 0xa8, 0xa9, 0x6a, 0x4d, 0x58, 0xda, 0x16, 0xeb, 0x0b, 0x75, 0xa1, 0x3c, 0xa2, - 0x3e, 0x15, 0xcc, 0xb1, 0x41, 0x4f, 0x76, 0x2f, 0x37, 0x20, 0x63, 0x08, 0x8e, 0x7c, 0xc9, 0x26, - 0xd4, 0xcc, 0x94, 0x10, 0xd1, 0xef, 0xe1, 0x83, 0xe4, 0xfa, 0x86, 0x82, 0x1e, 0x53, 0x41, 0x7d, - 0xa5, 0x01, 0x4b, 0x9f, 0xc3, 0xa7, 0x6f, 0xd7, 0x80, 0x41, 0x9b, 0xc7, 0x06, 0x89, 0xf3, 0x03, - 0x61, 0xb7, 0x0a, 0x65, 0x11, 0xcf, 0xdb, 0xfa, 0x53, 0x41, 0xa9, 0xfe, 0x1c, 0x02, 0x6d, 0x81, - 0x95, 0x4e, 0xcf, 0x5c, 0xad, 0xde, 0x6a, 0xf7, 0xca, 0xec, 0x6c, 0x03, 0x12, 0xec, 0x5e, 0x4f, - 0xbd, 0x41, 0xa6, 0xed, 0xa2, 0x3e, 0xac, 0xa5, 0x04, 0x55, 0x06, 0x98, 0x44, 0xd9, 0x7c, 0xdb, - 0x4a, 0x0f, 0xa7, 0x01, 0xc5, 0x35, 0x91, 0xe9, 0xb5, 0x7e, 0x07, 0xe8, 0xcd, 0x73, 0x41, 0x08, - 0x8a, 0x27, 0xcc, 0x37, 0xcb, 0xc0, 0xba, 0x8d, 0xda, 0x50, 0x0e, 0xc8, 0xd4, 0xe3, 0xc4, 0x35, - 0x81, 0x71, 0xbd, 0x1d, 0x17, 0x08, 0xed, 0xa4, 0x40, 0x68, 0x77, 0xfc, 0x29, 0x4e, 0x40, 0xad, - 0x47, 0x70, 0x23, 0xf7, 0x7a, 0xd1, 0x36, 0xd4, 0xd2, 0x80, 0x9b, 0xef, 0xf5, 0xea, 0xec, 0x6c, - 0xc3, 0x4a, 0x23, 0x73, 0xaf, 0x87, 0xad, 0x14, 0xb4, 0xe7, 0xb6, 0x5e, 0x57, 0x61, 0x6d, 0x21, - 0x6c, 0xd1, 0x75, 0x58, 0x65, 0x13, 0x32, 0xa2, 0x66, 0x8d, 0x71, 0x07, 0xf5, 0xa1, 0xe4, 0x91, - 0x23, 0xea, 0xa9, 0xe0, 0x55, 0x17, 0xf7, 0xc3, 0x4b, 0xe3, 0xbf, 0xfd, 0x1b, 0x8d, 0xef, 0xfb, - 0x52, 0x4c, 0xb1, 0x21, 0x23, 0x1b, 0xca, 0x0e, 0x9f, 0x4c, 0x88, 0xaf, 0xd2, 0xc4, 0xca, 0x66, - 0x15, 0x27, 0x5d, 0x75, 0x32, 0x44, 0x8c, 0x42, 0xbb, 0xa8, 0xcd, 0xba, 0x8d, 0xea, 0xb0, 0x42, - 0xfd, 0x53, 0x7b, 0x55, 0x9b, 0x54, 0x53, 0x59, 0x5c, 0x16, 0x47, 0x5f, 0x15, 0xab, 0xa6, 0xe2, - 0x45, 0x21, 0x15, 0x76, 0x39, 0x3e, 0x51, 0xd5, 0x46, 0x3f, 0x85, 0xd2, 0x84, 0x47, 0xbe, 0x0c, - 0xed, 0x8a, 0x5e, 0xec, 0xad, 0xbc, 0xc5, 0x3e, 0x56, 0x08, 0xa3, 0x2c, 0x03, 0x47, 0x7d, 0xb8, - 0x16, 0x4a, 0x1e, 0x0c, 0x47, 0x82, 0x38, 0x74, 0x18, 0x50, 0xc1, 0xb8, 0x6b, 0x9e, 0xe1, 0x5b, - 0x6f, 0x5c, 0x4a, 0xcf, 0x14, 0x7c, 0xf8, 0xaa, 0xe2, 0xec, 0x2a, 0xca, 0x40, 0x33, 0xd0, 0x00, - 0x6a, 0x41, 0xe4, 0x79, 0x43, 0x1e, 0xc4, 0x19, 0x39, 0x8e, 0x9d, 0x77, 0x38, 0xb2, 0x41, 0xe4, - 0x79, 0x4f, 0x62, 0x12, 0xb6, 0x82, 0x79, 0x07, 0xdd, 0x84, 0xd2, 0x48, 0xf0, 0x28, 0x88, 0xe3, - 0xa6, 0x8a, 0x4d, 0x0f, 0x7d, 0x03, 0xe5, 0x90, 0x3a, 0x82, 0xca, 0xd0, 0xae, 0xe9, 0xad, 0x7e, - 0x92, 0x37, 0xc9, 0x81, 0x86, 0xa4, 0x31, 0x81, 0x13, 0x0e, 0xba, 0x05, 0x2b, 0x52, 0x4e, 0xed, - 0xb5, 0x66, 0x61, 0xb3, 0xd2, 0x2d, 0xcf, 0xce, 0x36, 0x56, 0x0e, 0x0f, 0x9f, 0x61, 0x65, 0x53, - 0xd9, 0x62, 0xcc, 0x43, 0xe9, 0x93, 0x09, 0xb5, 0xaf, 0xe8, 0xb3, 0x4d, 0xfb, 0xe8, 0x19, 0x80, - 0xeb, 0x87, 0x43, 0x47, 0x3f, 0x4f, 0xf6, 0x55, 0xbd, 0xbb, 0x2f, 0x2e, 0xdf, 0x5d, 0x6f, 0xff, - 0xc0, 0x64, 0xcc, 0xb5, 0xd9, 0xd9, 0x46, 0x35, 0xed, 0xe2, 0xaa, 0xeb, 0x87, 0x71, 0x13, 0x75, - 0xc1, 0x1a, 0x53, 0xe2, 0xc9, 0xb1, 0x33, 0xa6, 0xce, 0x89, 0x5d, 0xbf, 0x38, 0x05, 0x3e, 0xd4, - 0x30, 0xe3, 0x21, 0x4b, 0x52, 0x0a, 0x56, 0x4b, 0x0d, 0xed, 0x6b, 0xfa, 0xac, 0xe2, 0x0e, 0xfa, - 0x18, 0x80, 0x07, 0xd4, 0x1f, 0x86, 0xd2, 0x65, 0xbe, 0x8d, 0xd4, 0x96, 0x71, 0x55, 0x59, 0x0e, - 0x94, 0x01, 0xdd, 0x56, 0x09, 0x8a, 0xb8, 0x43, 0xee, 0x7b, 0x53, 0xfb, 0x03, 0x3d, 0x5a, 0x51, - 0x86, 0x27, 0xbe, 0x37, 0x45, 0x1b, 0x60, 0x69, 0x5d, 0x84, 0x6c, 0xe4, 0x13, 0xcf, 0xbe, 0xae, - 0xcf, 0x03, 0x94, 0xe9, 0x40, 0x5b, 0xd4, 0x3d, 0xc4, 0xa7, 0x11, 0xda, 0x37, 0x2e, 0xbe, 0x07, - 0xb3, 0xd8, 0xf9, 0x3d, 0x18, 0x0e, 0xfa, 0x39, 0x40, 0x20, 0xd8, 0x29, 0xf3, 0xe8, 0x88, 0x86, - 0xf6, 0x4d, 0xbd, 0xe9, 0xf5, 0xdc, 0xcc, 0x94, 0xa2, 0x70, 0x86, 0x81, 0xda, 0x50, 0x64, 0x3e, - 0x93, 0xf6, 0x87, 0x26, 0x2b, 0x9d, 0x97, 0x6a, 0x97, 0x73, 0xef, 0x29, 0xf1, 0x22, 0x8a, 0x35, - 0x0e, 0x7d, 0x04, 0x55, 0x16, 0x72, 0x4f, 0xcb, 0xd7, 0xb6, 0xf5, 0x6e, 0xe6, 0x86, 0xc6, 0x57, - 0x60, 0x65, 0x62, 0x57, 0xc5, 0xdc, 0x09, 0x9d, 0x9a, 0xe7, 0x40, 0x35, 0xd5, 0x01, 0x9f, 0x2a, - 0x6f, 0xfa, 0xbd, 0xaa, 0xe2, 0xb8, 0xf3, 0xf5, 0xf2, 0xfd, 0x42, 0x63, 0x1b, 0xac, 0x8c, 0x86, - 0xd1, 0x27, 0xea, 0x2d, 0x1d, 0xb1, 0x50, 0x8a, 0xe9, 0x90, 0x44, 0x72, 0x6c, 0xff, 0x52, 0x13, - 0x6a, 0x89, 0xb1, 0x13, 0xc9, 0x71, 0x63, 0x08, 0x73, 0x29, 0xa0, 0x26, 0x58, 0x4a, 0x62, 0x21, - 0x15, 0xa7, 0x54, 0xa8, 0x3a, 0x45, 0xdd, 0x60, 0xd6, 0xa4, 0x42, 0x21, 0xa4, 0x44, 0x38, 0x63, - 0xfd, 0x12, 0x55, 0xb1, 0xe9, 0xa9, 0xa7, 0x25, 0x89, 0x37, 0xf3, 0xb4, 0x98, 0x6e, 0xeb, 0xdf, - 0x05, 0xa8, 0x65, 0xcb, 0x2d, 0xb4, 0x13, 0x97, 0x49, 0x7a, 0x4b, 0x57, 0xb6, 0xb7, 0x2e, 0x2b, - 0xcf, 0xf4, 0x33, 0xef, 0x45, 0xca, 0xd9, 0x63, 0xf5, 0x33, 0xd2, 0x64, 0xf4, 0x13, 0x58, 0x0d, - 0xb8, 0x90, 0xc9, 0x83, 0x98, 0x7f, 0x5d, 0x5c, 0x24, 0x49, 0x3c, 0x06, 0xb7, 0xc6, 0x70, 0x65, - 0xd1, 0x1b, 0xba, 0x0b, 0x2b, 0x4f, 0xf7, 0x06, 0xf5, 0xa5, 0xc6, 0xed, 0x17, 0x2f, 0x9b, 0x1f, - 0x2e, 0x0e, 0x3e, 0x65, 0x42, 0x46, 0xc4, 0xdb, 0x1b, 0xa0, 0xcf, 0x61, 0xb5, 0xb7, 0x7f, 0x80, - 0x71, 0xbd, 0xd0, 0xd8, 0x78, 0xf1, 0xb2, 0x79, 0x7b, 0x11, 0xa7, 0x86, 0x78, 0xe4, 0xbb, 0x98, - 0x1f, 0xa5, 0xbf, 0x84, 0xff, 0x2c, 0x83, 0x65, 0xf2, 0xc4, 0xfb, 0xfe, 0x48, 0xae, 0xc5, 0x45, - 0x50, 0xf2, 0x00, 0x2c, 0x5f, 0x5a, 0x0b, 0xd5, 0x62, 0x82, 0xb9, 0xe3, 0x3b, 0x50, 0x63, 0xc1, - 0xe9, 0x97, 0x43, 0xea, 0x93, 0x23, 0xcf, 0x7c, 0x18, 0x2a, 0xd8, 0x52, 0xb6, 0x7e, 0x6c, 0x52, - 0xaf, 0x0f, 0xf3, 0x25, 0x15, 0xbe, 0xf9, 0x0a, 0x54, 0x70, 0xda, 0x47, 0xdf, 0x40, 0x91, 0x05, - 0x64, 0x62, 0x0a, 0xb8, 0xdc, 0x1d, 0xec, 0x0d, 0x3a, 0x8f, 0x8d, 0x06, 0xbb, 0x95, 0xd9, 0xd9, - 0x46, 0x51, 0x19, 0xb0, 0xa6, 0xa1, 0xf5, 0xa4, 0x86, 0x52, 0x33, 0xe9, 0x4c, 0x52, 0xc1, 0x19, - 0x8b, 0xd2, 0x11, 0xf3, 0x47, 0x82, 0x86, 0xa1, 0xce, 0x29, 0x15, 0x9c, 0x74, 0x51, 0x03, 0xca, - 0xa6, 0x12, 0xd3, 0xa5, 0x57, 0x55, 0x55, 0x39, 0xc6, 0xd0, 0x5d, 0x03, 0x2b, 0x3e, 0x8d, 0xe1, - 0xb1, 0xe0, 0x93, 0xd6, 0x7f, 0x8b, 0x60, 0xed, 0x78, 0x51, 0x28, 0x4d, 0x52, 0x7d, 0x6f, 0x87, - 0xff, 0x0c, 0xae, 0x11, 0xfd, 0x31, 0x25, 0xbe, 0xca, 0x50, 0xba, 0xc0, 0x35, 0x17, 0x70, 0x37, - 0xd7, 0x5d, 0x0a, 0x8e, 0x8b, 0xe1, 0x6e, 0x49, 0xf9, 0xb4, 0x0b, 0xb8, 0x4e, 0xce, 0x8d, 0xa0, - 0x03, 0x58, 0xe3, 0xc2, 0x19, 0xd3, 0x50, 0xc6, 0x79, 0xcd, 0x7c, 0xe4, 0x72, 0xbf, 0xf8, 0x4f, - 0xb2, 0x40, 0xf3, 0xa8, 0xc7, 0xab, 0x5d, 0xf4, 0x81, 0xee, 0x43, 0x51, 0x90, 0xe3, 0xa4, 0x58, - 0xcf, 0x0d, 0x12, 0x4c, 0x8e, 0xe5, 0x82, 0x0b, 0xcd, 0x40, 0xbf, 0x06, 0x70, 0x59, 0x18, 0x10, - 0xe9, 0x8c, 0xa9, 0x30, 0x97, 0x9d, 0xbb, 0xc5, 0x5e, 0x8a, 0x5a, 0xf0, 0x92, 0x61, 0xa3, 0x47, - 0x50, 0x75, 0x48, 0x22, 0xd7, 0xd2, 0xc5, 0xbf, 0xdb, 0x9d, 0x8e, 0x71, 0x51, 0x57, 0x2e, 0x66, - 0x67, 0x1b, 0x95, 0xc4, 0x82, 0x2b, 0x0e, 0x31, 0xf2, 0x7d, 0x04, 0x6b, 0xea, 0xd7, 0x3b, 0x74, - 0xe9, 0x31, 0x89, 0x3c, 0x19, 0xcb, 0xe4, 0x82, 0x24, 0xa5, 0xbe, 0x50, 0x3d, 0x83, 0x33, 0xeb, - 0xaa, 0xc9, 0x8c, 0x0d, 0xfd, 0x16, 0xae, 0x51, 0xdf, 0x11, 0x53, 0x2d, 0xd6, 0x64, 0x85, 0x95, - 0x8b, 0x37, 0xdb, 0x4f, 0xc1, 0x0b, 0x9b, 0xad, 0xd3, 0x73, 0xf6, 0xd6, 0x3f, 0x0b, 0x00, 0x71, - 0xde, 0x7f, 0xbf, 0x02, 0x44, 0x50, 0x74, 0x89, 0x24, 0x5a, 0x73, 0x35, 0xac, 0xdb, 0xe8, 0x6b, - 0x00, 0x49, 0x27, 0x81, 0x4a, 0x1f, 0xfe, 0xc8, 0xc8, 0xe6, 0x6d, 0xcf, 0x41, 0x06, 0x8d, 0xb6, - 0xa1, 0x64, 0xbe, 0x54, 0xc5, 0x4b, 0x79, 0x06, 0xd9, 0xfa, 0x6b, 0x01, 0x20, 0xde, 0xe6, 0xf7, - 0x7a, 0x6f, 0x5d, 0xfb, 0xd5, 0xeb, 0xf5, 0xa5, 0x7f, 0xbc, 0x5e, 0x5f, 0xfa, 0xe3, 0x6c, 0xbd, - 0xf0, 0x6a, 0xb6, 0x5e, 0xf8, 0xfb, 0x6c, 0xbd, 0xf0, 0xaf, 0xd9, 0x7a, 0xe1, 0xa8, 0xa4, 0x53, - 0xf3, 0x8f, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0x1a, 0xfc, 0xe2, 0x84, 0xc8, 0x14, 0x00, 0x00, + // 2114 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4f, 0x6f, 0xdb, 0xc8, + 0x15, 0xb7, 0x6c, 0x59, 0x96, 0x1e, 0xe5, 0x44, 0x9e, 0x4d, 0xb2, 0xb4, 0xb2, 0xb1, 0x15, 0x6d, + 0x36, 0xf5, 0xee, 0xa2, 0x32, 0xea, 0x2e, 0xb6, 0xd9, 0x4d, 0xb7, 0xad, 0x64, 0x69, 0x1d, 0x35, + 0x89, 0x2d, 0x8c, 0x1c, 0xb7, 0x01, 0x0a, 0x08, 0x63, 0x72, 0x2c, 0x11, 0xa6, 0x38, 0xec, 0x70, + 0xe8, 0x40, 0xb7, 0x1e, 0x17, 0xee, 0x67, 0x30, 0x7a, 0x28, 0x7a, 0x6f, 0xbf, 0x42, 0x4f, 0x39, + 0xf6, 0xd8, 0x5e, 0x8c, 0xae, 0xbf, 0x42, 0x6f, 0xbd, 0xb4, 0x98, 0xe1, 0x90, 0xa2, 0x1c, 0x3a, + 0x0e, 0xd0, 0x1c, 0x7a, 0x9b, 0x79, 0xfc, 0xfd, 0xde, 0xfc, 0xfb, 0xbd, 0x37, 0x6f, 0x08, 0x9f, + 0x0d, 0x1d, 0x31, 0x0a, 0x0f, 0x1b, 0x16, 0x1b, 0x6f, 0xda, 0xcc, 0x3a, 0xa6, 0x7c, 0x33, 0x78, + 0x45, 0xf8, 0xf8, 0xd8, 0x11, 0x9b, 0xc4, 0x77, 0x36, 0x03, 0x9f, 0x5a, 0x41, 0xc3, 0xe7, 0x4c, + 0x30, 0x84, 0x22, 0x40, 0x23, 0x06, 0x34, 0x4e, 0x7e, 0x54, 0xbd, 0x8e, 0x2f, 0x26, 0x3e, 0xd5, + 0xfc, 0xea, 0xad, 0x21, 0x1b, 0x32, 0xd5, 0xdc, 0x94, 0x2d, 0x6d, 0x5d, 0x1b, 0x32, 0x36, 0x74, + 0xe9, 0xa6, 0xea, 0x1d, 0x86, 0x47, 0x9b, 0x76, 0xc8, 0x89, 0x70, 0x98, 0xa7, 0xbf, 0xaf, 0x5e, + 0xfe, 0x4e, 0xbc, 0xc9, 0x55, 0xd4, 0x57, 0x9c, 0xf8, 0x3e, 0xe5, 0x7a, 0xc0, 0xfa, 0x59, 0x1e, + 0x8a, 0xbb, 0xcc, 0xa6, 0x7d, 0x9f, 0x5a, 0x68, 0x07, 0x0c, 0xe2, 0x79, 0x4c, 0x28, 0xdf, 0x81, + 0x99, 0xab, 0xe5, 0x36, 0x8c, 0xad, 0xf5, 0xc6, 0x9b, 0x6b, 0x6a, 0x34, 0xa7, 0xb0, 0x56, 0xfe, + 0xf5, 0xf9, 0xfa, 0x1c, 0x4e, 0x33, 0xd1, 0xcf, 0xa1, 0x6c, 0xd3, 0xc0, 0xe1, 0xd4, 0x1e, 0x70, + 0xe6, 0x52, 0x73, 0xbe, 0x96, 0xdb, 0xb8, 0xb1, 0xf5, 0x51, 0x96, 0x27, 0x39, 0x38, 0x66, 0x2e, + 0xc5, 0x86, 0x66, 0xc8, 0x0e, 0xda, 0x01, 0x18, 0xd3, 0xf1, 0x21, 0xe5, 0xc1, 0xc8, 0xf1, 0xcd, + 0x05, 0x45, 0xff, 0xc1, 0x55, 0x74, 0x39, 0xf7, 0xc6, 0xf3, 0x04, 0x8e, 0x53, 0x54, 0xf4, 0x1c, + 0xca, 0xe4, 0x84, 0x38, 0x2e, 0x39, 0x74, 0x5c, 0x47, 0x4c, 0xcc, 0xbc, 0x72, 0xf5, 0xe9, 0x5b, + 0x5d, 0x35, 0x53, 0x04, 0x3c, 0x43, 0xaf, 0xdb, 0x00, 0xd3, 0x81, 0xd0, 0x43, 0x58, 0xea, 0x75, + 0x76, 0xdb, 0xdd, 0xdd, 0x9d, 0xca, 0x5c, 0x75, 0xf5, 0xf4, 0xac, 0x76, 0x5b, 0xfa, 0x98, 0x02, + 0x7a, 0xd4, 0xb3, 0x1d, 0x6f, 0x88, 0x36, 0xa0, 0xd8, 0xdc, 0xde, 0xee, 0xf4, 0xf6, 0x3b, 0xed, + 0x4a, 0xae, 0x5a, 0x3d, 0x3d, 0xab, 0xdd, 0x99, 0x05, 0x36, 0x2d, 0x8b, 0xfa, 0x82, 0xda, 0xd5, + 0xfc, 0x77, 0x7f, 0x5c, 0x9b, 0xab, 0x7f, 0x97, 0x83, 0x72, 0x7a, 0x12, 0xe8, 0x21, 0x14, 0x9a, + 0xdb, 0xfb, 0xdd, 0x83, 0x4e, 0x65, 0x6e, 0x4a, 0x4f, 0x23, 0x9a, 0x96, 0x70, 0x4e, 0x28, 0x7a, + 0x00, 0x8b, 0xbd, 0xe6, 0x8b, 0x7e, 0xa7, 0x92, 0x9b, 0x4e, 0x27, 0x0d, 0xeb, 0x91, 0x30, 0x50, + 0xa8, 0x36, 0x6e, 0x76, 0x77, 0x2b, 0xf3, 0xd9, 0xa8, 0x36, 0x27, 0x8e, 0xa7, 0xa7, 0xf2, 0x87, + 0x3c, 0x18, 0x7d, 0xca, 0x4f, 0x1c, 0xeb, 0x3d, 0x4b, 0xe4, 0x4b, 0xc8, 0x0b, 0x12, 0x1c, 0x2b, + 0x69, 0x18, 0xd9, 0xd2, 0xd8, 0x27, 0xc1, 0xb1, 0x1c, 0x54, 0xd3, 0x15, 0x5e, 0x2a, 0x83, 0x53, + 0xdf, 0x75, 0x2c, 0x22, 0xa8, 0xad, 0x94, 0x61, 0x6c, 0x7d, 0x92, 0xc5, 0xc6, 0x09, 0x4a, 0xcf, + 0xff, 0xc9, 0x1c, 0x4e, 0x51, 0xd1, 0x63, 0x28, 0x0c, 0x5d, 0x76, 0x48, 0x5c, 0xa5, 0x09, 0x63, + 0xeb, 0x7e, 0x96, 0x93, 0x1d, 0x85, 0x98, 0x3a, 0xd0, 0x14, 0xf4, 0x08, 0x0a, 0xa1, 0x6f, 0x13, + 0x41, 0xcd, 0x82, 0x22, 0xd7, 0xb2, 0xc8, 0x2f, 0x14, 0x62, 0x9b, 0x79, 0x47, 0xce, 0x10, 0x6b, + 0x3c, 0x7a, 0x0a, 0x45, 0x8f, 0x8a, 0x57, 0x8c, 0x1f, 0x07, 0xe6, 0x52, 0x6d, 0x61, 0xc3, 0xd8, + 0xfa, 0x3c, 0x53, 0x8c, 0x11, 0xa6, 0x29, 0x04, 0xb1, 0x46, 0x63, 0xea, 0x89, 0xc8, 0x4d, 0x6b, + 0xde, 0xcc, 0xe1, 0xc4, 0x01, 0xfa, 0x29, 0x14, 0xa9, 0x67, 0xfb, 0xcc, 0xf1, 0x84, 0x59, 0xbc, + 0x7a, 0x22, 0x1d, 0x8d, 0x91, 0x9b, 0x89, 0x13, 0x86, 0x64, 0x73, 0xe6, 0xba, 0x87, 0xc4, 0x3a, + 0x36, 0x4b, 0xef, 0xb8, 0x8c, 0x84, 0xd1, 0x2a, 0x40, 0x7e, 0xcc, 0x6c, 0x5a, 0xdf, 0x84, 0x95, + 0x37, 0xb6, 0x1a, 0x55, 0xa1, 0xa8, 0xb7, 0x3a, 0xd2, 0x48, 0x1e, 0x27, 0xfd, 0xfa, 0x4d, 0x58, + 0x9e, 0xd9, 0xd6, 0xfa, 0x9f, 0x17, 0xa1, 0x18, 0x9f, 0x35, 0x6a, 0x42, 0xc9, 0x62, 0x9e, 0x20, + 0x8e, 0x47, 0xb9, 0x96, 0x57, 0xe6, 0xc9, 0x6c, 0xc7, 0x20, 0xc9, 0x7a, 0x32, 0x87, 0xa7, 0x2c, + 0xf4, 0x2d, 0x94, 0x38, 0x0d, 0x58, 0xc8, 0x2d, 0x1a, 0x68, 0x7d, 0x6d, 0x64, 0x2b, 0x24, 0x02, + 0x61, 0xfa, 0xdb, 0xd0, 0xe1, 0x54, 0xee, 0x72, 0x80, 0xa7, 0x54, 0xf4, 0x18, 0x96, 0x38, 0x0d, + 0x04, 0xe1, 0xe2, 0x6d, 0x12, 0xc1, 0x11, 0xa4, 0xc7, 0x5c, 0xc7, 0x9a, 0xe0, 0x98, 0x81, 0x1e, + 0x43, 0xc9, 0x77, 0x89, 0xa5, 0xbc, 0x9a, 0x8b, 0x8a, 0x7e, 0x2f, 0x8b, 0xde, 0x8b, 0x41, 0x78, + 0x8a, 0x47, 0x5f, 0x01, 0xb8, 0x6c, 0x38, 0xb0, 0xb9, 0x73, 0x42, 0xb9, 0x96, 0x58, 0x35, 0x8b, + 0xdd, 0x56, 0x08, 0x5c, 0x72, 0xd9, 0x30, 0x6a, 0xa2, 0x9d, 0xff, 0x49, 0x5f, 0x29, 0x6d, 0x3d, + 0x05, 0x20, 0xc9, 0x57, 0xad, 0xae, 0x4f, 0xdf, 0xc9, 0x95, 0x3e, 0x91, 0x14, 0x1d, 0xdd, 0x87, + 0xf2, 0x11, 0xe3, 0x16, 0x1d, 0xe8, 0xa8, 0x29, 0x29, 0x4d, 0x18, 0xca, 0x16, 0xe9, 0x0b, 0xb5, + 0x60, 0x69, 0x48, 0x3d, 0xca, 0x1d, 0xcb, 0x04, 0x35, 0xd8, 0xc3, 0xcc, 0x80, 0x8c, 0x20, 0x38, + 0xf4, 0x84, 0x33, 0xa6, 0x7a, 0xa4, 0x98, 0x88, 0x7e, 0x03, 0x1f, 0xc4, 0xc7, 0x37, 0xe0, 0xf4, + 0x88, 0x72, 0xea, 0x49, 0x0d, 0x18, 0x6a, 0x1f, 0x3e, 0x79, 0xbb, 0x06, 0x34, 0x5a, 0x27, 0x1b, + 0xc4, 0x2f, 0x7f, 0x08, 0x5a, 0x25, 0x58, 0xe2, 0xd1, 0xb8, 0xf5, 0xdf, 0xe7, 0xa4, 0xea, 0x2f, + 0x21, 0xd0, 0x26, 0x18, 0xc9, 0xf0, 0x8e, 0xad, 0xd4, 0x5b, 0x6a, 0xdd, 0xb8, 0x38, 0x5f, 0x87, + 0x18, 0xdb, 0x6d, 0xcb, 0x1c, 0xa4, 0xdb, 0x36, 0xea, 0xc0, 0x72, 0x42, 0x90, 0x65, 0x80, 0xbe, + 0x28, 0x6b, 0x6f, 0x9b, 0xe9, 0xfe, 0xc4, 0xa7, 0xb8, 0xcc, 0x53, 0xbd, 0xfa, 0xaf, 0x01, 0xbd, + 0xb9, 0x2f, 0x08, 0x41, 0xfe, 0xd8, 0xf1, 0xf4, 0x34, 0xb0, 0x6a, 0xa3, 0x06, 0x2c, 0xf9, 0x64, + 0xe2, 0x32, 0x62, 0xeb, 0xc0, 0xb8, 0xd5, 0x88, 0x0a, 0x84, 0x46, 0x5c, 0x20, 0x34, 0x9a, 0xde, + 0x04, 0xc7, 0xa0, 0xfa, 0x53, 0xb8, 0x9d, 0x79, 0xbc, 0x68, 0x0b, 0xca, 0x49, 0xc0, 0x4d, 0xd7, + 0x7a, 0xf3, 0xe2, 0x7c, 0xdd, 0x48, 0x22, 0xb3, 0xdb, 0xc6, 0x46, 0x02, 0xea, 0xda, 0xf5, 0xbf, + 0x1a, 0xb0, 0x3c, 0x13, 0xb6, 0xe8, 0x16, 0x2c, 0x3a, 0x63, 0x32, 0xa4, 0x7a, 0x8e, 0x51, 0x07, + 0x75, 0xa0, 0xe0, 0x92, 0x43, 0xea, 0xca, 0xe0, 0x95, 0x07, 0xf7, 0xc3, 0x6b, 0xe3, 0xbf, 0xf1, + 0x4c, 0xe1, 0x3b, 0x9e, 0xe0, 0x13, 0xac, 0xc9, 0xc8, 0x84, 0x25, 0x8b, 0x8d, 0xc7, 0xc4, 0x93, + 0xd7, 0xc4, 0xc2, 0x46, 0x09, 0xc7, 0x5d, 0xb9, 0x33, 0x84, 0x0f, 0x03, 0x33, 0xaf, 0xcc, 0xaa, + 0x8d, 0x2a, 0xb0, 0x40, 0xbd, 0x13, 0x73, 0x51, 0x99, 0x64, 0x53, 0x5a, 0x6c, 0x27, 0x8a, 0xbe, + 0x12, 0x96, 0x4d, 0xc9, 0x0b, 0x03, 0xca, 0xcd, 0xa5, 0x68, 0x47, 0x65, 0x1b, 0xfd, 0x04, 0x0a, + 0x63, 0x16, 0x7a, 0x22, 0x30, 0x8b, 0x6a, 0xb2, 0xab, 0x59, 0x93, 0x7d, 0x2e, 0x11, 0x5a, 0x59, + 0x1a, 0x8e, 0x3a, 0xb0, 0x12, 0x08, 0xe6, 0x0f, 0x86, 0x9c, 0x58, 0x74, 0xe0, 0x53, 0xee, 0x30, + 0x5b, 0xa7, 0xe1, 0xd5, 0x37, 0x0e, 0xa5, 0xad, 0x0b, 0x3e, 0x7c, 0x53, 0x72, 0x76, 0x24, 0xa5, + 0xa7, 0x18, 0xa8, 0x07, 0x65, 0x3f, 0x74, 0xdd, 0x01, 0xf3, 0xa3, 0x1b, 0x39, 0x8a, 0x9d, 0x77, + 0xd8, 0xb2, 0x5e, 0xe8, 0xba, 0x7b, 0x11, 0x09, 0x1b, 0xfe, 0xb4, 0x83, 0xee, 0x40, 0x61, 0xc8, + 0x59, 0xe8, 0x47, 0x71, 0x53, 0xc2, 0xba, 0x87, 0xbe, 0x81, 0xa5, 0x80, 0x5a, 0x9c, 0x8a, 0xc0, + 0x2c, 0xab, 0xa5, 0x7e, 0x9c, 0x35, 0x48, 0x5f, 0x41, 0x92, 0x98, 0xc0, 0x31, 0x07, 0xad, 0xc2, + 0x82, 0x10, 0x13, 0x73, 0xb9, 0x96, 0xdb, 0x28, 0xb6, 0x96, 0x2e, 0xce, 0xd7, 0x17, 0xf6, 0xf7, + 0x5f, 0x62, 0x69, 0x93, 0xb7, 0xc5, 0x88, 0x05, 0xc2, 0x23, 0x63, 0x6a, 0xde, 0x50, 0x7b, 0x9b, + 0xf4, 0xd1, 0x4b, 0x00, 0xdb, 0x0b, 0x06, 0x96, 0x4a, 0x4f, 0xe6, 0x4d, 0xb5, 0xba, 0xcf, 0xaf, + 0x5f, 0x5d, 0x7b, 0xb7, 0xaf, 0x6f, 0xcc, 0xe5, 0x8b, 0xf3, 0xf5, 0x52, 0xd2, 0xc5, 0x25, 0xdb, + 0x0b, 0xa2, 0x26, 0x6a, 0x81, 0x31, 0xa2, 0xc4, 0x15, 0x23, 0x6b, 0x44, 0xad, 0x63, 0xb3, 0x72, + 0xf5, 0x15, 0xf8, 0x44, 0xc1, 0xb4, 0x87, 0x34, 0x49, 0x2a, 0x58, 0x4e, 0x35, 0x30, 0x57, 0xd4, + 0x5e, 0x45, 0x1d, 0x74, 0x0f, 0x80, 0xf9, 0xd4, 0x1b, 0x04, 0xc2, 0x76, 0x3c, 0x13, 0xc9, 0x25, + 0xe3, 0x92, 0xb4, 0xf4, 0xa5, 0x01, 0xdd, 0x95, 0x17, 0x14, 0xb1, 0x07, 0xcc, 0x73, 0x27, 0xe6, + 0x07, 0xea, 0x6b, 0x51, 0x1a, 0xf6, 0x3c, 0x77, 0x82, 0xd6, 0xc1, 0x50, 0xba, 0x08, 0x9c, 0xa1, + 0x47, 0x5c, 0xf3, 0x96, 0xda, 0x0f, 0x90, 0xa6, 0xbe, 0xb2, 0xc8, 0x73, 0x88, 0x76, 0x23, 0x30, + 0x6f, 0x5f, 0x7d, 0x0e, 0x7a, 0xb2, 0xd3, 0x73, 0xd0, 0x1c, 0xf4, 0x33, 0x00, 0x9f, 0x3b, 0x27, + 0x8e, 0x4b, 0x87, 0x34, 0x30, 0xef, 0xa8, 0x45, 0xaf, 0x65, 0xde, 0x4c, 0x09, 0x0a, 0xa7, 0x18, + 0xa8, 0x01, 0x79, 0xc7, 0x73, 0x84, 0xf9, 0xa1, 0xbe, 0x95, 0x2e, 0x4b, 0xb5, 0xc5, 0x98, 0x7b, + 0x40, 0xdc, 0x90, 0x62, 0x85, 0x43, 0x5d, 0x28, 0x39, 0x01, 0x73, 0x95, 0x7c, 0x4d, 0x53, 0xe5, + 0xb7, 0x77, 0x38, 0xbf, 0x6e, 0x4c, 0xc1, 0x53, 0x76, 0xf5, 0x2b, 0x30, 0x52, 0x81, 0x2e, 0x03, + 0xf4, 0x98, 0x4e, 0x74, 0xee, 0x90, 0x4d, 0x79, 0x1a, 0x27, 0x72, 0x68, 0x95, 0xdc, 0x4a, 0x38, + 0xea, 0x7c, 0x3d, 0xff, 0x28, 0x57, 0xdd, 0x02, 0x23, 0x25, 0x78, 0xf4, 0xb1, 0x4c, 0xbc, 0x43, + 0x27, 0x10, 0x7c, 0x32, 0x20, 0xa1, 0x18, 0x99, 0xbf, 0x50, 0x84, 0x72, 0x6c, 0x6c, 0x86, 0x62, + 0x54, 0x1d, 0xc0, 0x54, 0x37, 0xa8, 0x06, 0x86, 0xd4, 0x63, 0x40, 0xf9, 0x09, 0xe5, 0xb2, 0xa8, + 0x91, 0xc7, 0x9d, 0x36, 0xc9, 0xb8, 0x09, 0x28, 0xe1, 0xd6, 0x48, 0xa5, 0xad, 0x12, 0xd6, 0x3d, + 0x99, 0x87, 0xe2, 0xe0, 0xd4, 0x79, 0x48, 0x77, 0xeb, 0x7f, 0xc9, 0x41, 0x29, 0x59, 0x28, 0xfa, + 0x02, 0x56, 0xba, 0xfd, 0xbd, 0x67, 0xcd, 0xfd, 0xee, 0xde, 0xee, 0xa0, 0xdd, 0xf9, 0xb6, 0xf9, + 0xe2, 0xd9, 0x7e, 0x65, 0xae, 0x7a, 0xef, 0xf4, 0xac, 0xb6, 0x3a, 0xcd, 0xa9, 0x31, 0xbc, 0x4d, + 0x8f, 0x48, 0xe8, 0x8a, 0x59, 0x56, 0x0f, 0xef, 0x6d, 0x77, 0xfa, 0xfd, 0x4a, 0xee, 0x2a, 0x56, + 0x8f, 0x33, 0x8b, 0x06, 0x01, 0xda, 0x82, 0xca, 0x94, 0xf5, 0xe4, 0x65, 0xaf, 0x83, 0x0f, 0x2a, + 0xf3, 0xd5, 0x8f, 0x4e, 0xcf, 0x6a, 0xe6, 0x9b, 0xa4, 0x27, 0x13, 0x9f, 0xf2, 0x03, 0xfd, 0x20, + 0xf8, 0x57, 0x0e, 0xca, 0xe9, 0x7a, 0x12, 0x6d, 0x47, 0x75, 0xa0, 0x3a, 0x86, 0x1b, 0x5b, 0x9b, + 0xd7, 0xd5, 0x9f, 0xea, 0x1e, 0x73, 0x43, 0xe9, 0xf7, 0xb9, 0x7c, 0xfa, 0x29, 0x32, 0xfa, 0x02, + 0x16, 0x7d, 0xc6, 0x45, 0x9c, 0xf1, 0xb3, 0xf5, 0xc8, 0x78, 0x5c, 0xa5, 0x44, 0xe0, 0xfa, 0x08, + 0x6e, 0xcc, 0x7a, 0x43, 0x0f, 0x60, 0xe1, 0xa0, 0xdb, 0xab, 0xcc, 0x55, 0xef, 0x9e, 0x9e, 0xd5, + 0x3e, 0x9c, 0xfd, 0x78, 0xe0, 0x70, 0x11, 0x12, 0xb7, 0xdb, 0x43, 0x9f, 0xc1, 0x62, 0x7b, 0xb7, + 0x8f, 0x71, 0x25, 0x57, 0x5d, 0x3f, 0x3d, 0xab, 0xdd, 0x9d, 0xc5, 0xc9, 0x4f, 0x2c, 0xf4, 0x6c, + 0xcc, 0x0e, 0x93, 0x67, 0xd0, 0xbf, 0xe7, 0xc1, 0xd0, 0x17, 0xe1, 0xfb, 0x7e, 0x29, 0x2f, 0x47, + 0x55, 0x5e, 0x9c, 0xe1, 0xe6, 0xaf, 0x2d, 0xf6, 0xca, 0x11, 0x41, 0xeb, 0xf2, 0x3e, 0x94, 0x1d, + 0xff, 0xe4, 0xcb, 0x01, 0xf5, 0xc8, 0xa1, 0xab, 0x5f, 0x44, 0x45, 0x6c, 0x48, 0x5b, 0x27, 0x32, + 0xc9, 0xf4, 0xea, 0x78, 0x82, 0x72, 0x4f, 0xbf, 0x75, 0x8a, 0x38, 0xe9, 0xa3, 0x6f, 0x20, 0xef, + 0xf8, 0x64, 0xac, 0x2b, 0xd4, 0xcc, 0x15, 0x74, 0x7b, 0xcd, 0xe7, 0x3a, 0x6e, 0x5a, 0xc5, 0x8b, + 0xf3, 0xf5, 0xbc, 0x34, 0x60, 0x45, 0x43, 0x6b, 0x71, 0x91, 0x28, 0x47, 0x52, 0x57, 0x65, 0x11, + 0xa7, 0x2c, 0x52, 0xfb, 0x8e, 0x37, 0xe4, 0x34, 0x08, 0xd4, 0xa5, 0x59, 0xc4, 0x71, 0x17, 0x55, + 0x61, 0x49, 0x97, 0x9a, 0xaa, 0xb6, 0x2c, 0xc9, 0x32, 0x4e, 0x1b, 0x5a, 0xcb, 0x60, 0x44, 0xbb, + 0x31, 0x38, 0xe2, 0x6c, 0x5c, 0xff, 0x4f, 0x1e, 0x8c, 0x6d, 0x37, 0x0c, 0x84, 0xae, 0x1a, 0xde, + 0xdb, 0xe6, 0xbf, 0x84, 0x15, 0xa2, 0x5e, 0xde, 0xc4, 0x93, 0x57, 0xb0, 0xaa, 0xe0, 0xf5, 0x01, + 0x3c, 0xc8, 0x74, 0x97, 0x80, 0xa3, 0x6a, 0xbf, 0x55, 0x90, 0x3e, 0xcd, 0x1c, 0xae, 0x90, 0x4b, + 0x5f, 0x50, 0x1f, 0x96, 0x19, 0xb7, 0x46, 0x34, 0x10, 0xd1, 0xc5, 0xad, 0x5f, 0xaa, 0x99, 0xff, + 0x30, 0xf6, 0xd2, 0x40, 0x7d, 0x6b, 0x45, 0xb3, 0x9d, 0xf5, 0x81, 0x1e, 0x41, 0x9e, 0x93, 0xa3, + 0xf8, 0x35, 0x92, 0x19, 0x24, 0x98, 0x1c, 0x89, 0x19, 0x17, 0x8a, 0x81, 0x7e, 0x09, 0x60, 0x3b, + 0x81, 0x4f, 0x84, 0x35, 0xa2, 0x5c, 0x1f, 0x76, 0xe6, 0x12, 0xdb, 0x09, 0x6a, 0xc6, 0x4b, 0x8a, + 0x8d, 0x9e, 0x42, 0xc9, 0x22, 0xb1, 0x5c, 0x0b, 0x57, 0x3f, 0xdf, 0xb7, 0x9b, 0xda, 0x45, 0x45, + 0xba, 0xb8, 0x38, 0x5f, 0x2f, 0xc6, 0x16, 0x5c, 0xb4, 0x88, 0x96, 0xef, 0x53, 0x58, 0x96, 0xcf, + 0xfa, 0x81, 0x1d, 0xa5, 0xb3, 0x48, 0x26, 0x57, 0xdc, 0xc2, 0xf2, 0x8d, 0xa8, 0xd3, 0x5e, 0x7c, + 0x9c, 0x65, 0x91, 0xb2, 0xa1, 0x5f, 0xc1, 0x0a, 0xf5, 0x2c, 0x3e, 0x51, 0x62, 0x8d, 0x67, 0x58, + 0xbc, 0x7a, 0xb1, 0x9d, 0x04, 0x3c, 0xb3, 0xd8, 0x0a, 0xbd, 0x64, 0xaf, 0xff, 0x23, 0x07, 0x10, + 0x15, 0x36, 0xef, 0x57, 0x80, 0x08, 0xf2, 0x36, 0x11, 0x44, 0x69, 0xae, 0x8c, 0x55, 0x1b, 0x7d, + 0x0d, 0x20, 0xe8, 0xd8, 0x97, 0xa9, 0xd7, 0x1b, 0x6a, 0xd9, 0xbc, 0x2d, 0x1d, 0xa4, 0xd0, 0x68, + 0x0b, 0x0a, 0xfa, 0xcd, 0x98, 0xbf, 0x96, 0xa7, 0x91, 0xf5, 0x3f, 0xe5, 0x00, 0xa2, 0x65, 0xfe, + 0x5f, 0xaf, 0xad, 0x65, 0xbe, 0xfe, 0x7e, 0x6d, 0xee, 0xef, 0xdf, 0xaf, 0xcd, 0xfd, 0xee, 0x62, + 0x2d, 0xf7, 0xfa, 0x62, 0x2d, 0xf7, 0xb7, 0x8b, 0xb5, 0xdc, 0x3f, 0x2f, 0xd6, 0x72, 0x87, 0x05, + 0x55, 0x7b, 0xfc, 0xf8, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x1a, 0xbd, 0x13, 0xac, 0xa9, 0x15, + 0x00, 0x00, } diff --git a/api/specs.proto b/api/specs.proto index 75c12686e4..2b002c54f2 100644 --- a/api/specs.proto +++ b/api/specs.proto @@ -298,10 +298,22 @@ message ContainerSpec { // is considered unhealthy after `Retries` number of consecutive failures. HealthConfig healthcheck = 16; - // Isolation defines the isolation level for engines supporting multiple isolation modes - // ie: docker on windows server supports "process" or "hyperv" - // on engines that does not support it, value should be either "" or "default" - string isolation = 24; + enum Isolation { + option (gogoproto.goproto_enum_prefix) = false; + + // ISOLATION_DEFAULT uses whatever default value from the container runtime + ISOLATION_DEFAULT = 0 [(gogoproto.enumvalue_customname) = "ContainerIsolationDefault"]; + + // ISOLATION_PROCESS forces windows container isolation + ISOLATION_PROCESS = 1 [(gogoproto.enumvalue_customname) = "ContainerIsolationProcess"]; + + // ISOLATION_HYPERV forces Hyper-V isolation + ISOLATION_HYPERV = 2 [(gogoproto.enumvalue_customname) = "ContainerIsolationHyperV"]; + } + + // Isolation defines the isolation level for windows containers (default, process, hyperv). + // Runtimes that don't support it ignore that field + Isolation isolation = 24; } // EndpointSpec defines the properties that can be configured to