diff --git a/cluster/calcium/realloc.go b/cluster/calcium/realloc.go index 6b05447b4..f7fde78c2 100644 --- a/cluster/calcium/realloc.go +++ b/cluster/calcium/realloc.go @@ -22,11 +22,11 @@ type nodeContainers map[string][]*types.Container type volCPUMemNodeContainers map[string]map[float64]map[int64]nodeContainers // ReallocResource allow realloc container resource -func (c *Calcium) ReallocResource(ctx context.Context, IDs []string, cpu float64, bindCPU types.BindCPUOptions, memory int64, memoryLimit types.MemoryLimitOptions, volumes types.VolumeBindings) (chan *types.ReallocResourceMessage, error) { +func (c *Calcium) ReallocResource(ctx context.Context, opts *types.ReallocOptions) (chan *types.ReallocResourceMessage, error) { ch := make(chan *types.ReallocResourceMessage) go func() { defer close(ch) - if err := c.withContainersLocked(ctx, IDs, func(containers map[string]*types.Container) error { + if err := c.withContainersLocked(ctx, opts.IDs, func(containers map[string]*types.Container) error { // Pod-Node-Containers containersInfo := map[*types.Pod]nodeContainers{} // Pod cache @@ -58,14 +58,14 @@ func (c *Calcium) ReallocResource(ctx context.Context, IDs []string, cpu float64 for _, nodeContainersInfo := range containersInfo { go func(nodeContainersInfo nodeContainers) { defer wg.Done() - c.doReallocContainer(ctx, ch, nodeContainersInfo, cpu, bindCPU, memory, memoryLimit, volumes) + c.doReallocContainer(ctx, ch, nodeContainersInfo, opts) }(nodeContainersInfo) } wg.Wait() return nil }); err != nil { log.Errorf("[ReallocResource] Realloc failed %v", err) - for _, ID := range IDs { + for _, ID := range opts.IDs { ch <- &types.ReallocResourceMessage{ ContainerID: ID, Error: err, @@ -76,15 +76,8 @@ func (c *Calcium) ReallocResource(ctx context.Context, IDs []string, cpu float64 return ch, nil } -func (c *Calcium) doReallocContainer( - ctx context.Context, - ch chan *types.ReallocResourceMessage, - nodeContainersInfo nodeContainers, - cpu float64, bindCPU types.BindCPUOptions, - memory int64, memoryLimit types.MemoryLimitOptions, - volumes types.VolumeBindings) { - - volCPUMemNodeContainersInfo, hardVbsForContainer := calVolCPUMemNodeContainersInfo(ch, nodeContainersInfo, cpu, memory, volumes) +func (c *Calcium) doReallocContainer(ctx context.Context, ch chan *types.ReallocResourceMessage, nodeContainersInfo nodeContainers, opts *types.ReallocOptions) { + volCPUMemNodeContainersInfo, hardVbsForContainer := calVolCPUMemNodeContainersInfo(ch, nodeContainersInfo, opts.CPU, opts.Memory, opts.Volumes) for newAutoVol, cpuMemNodeContainersInfo := range volCPUMemNodeContainersInfo { for newCPU, memNodesContainers := range cpuMemNodeContainersInfo { for newMemory, nodesContainers := range memNodesContainers { @@ -105,14 +98,14 @@ func (c *Calcium) doReallocContainer( node.IncrNUMANodeMemory(nodeID, container.Memory) } // cpu 绑定判断 - switch bindCPU { - case types.ReallocKeepCPUCurrent: + switch opts.BindCPU { + case types.TriKeep: if len(container.CPU) > 0 { containerWithCPUBind++ } - case types.ReallocBindCPU: + case types.TriTrue: containerWithCPUBind++ - case types.ReallocFreeCPU: + case types.TriFalse: containerWithCPUBind = 0 } } @@ -156,7 +149,7 @@ func (c *Calcium) doReallocContainer( ctx, // if func(ctx context.Context) error { - return c.updateContainersResources(ctx, ch, node, containers, newResource, cpusets, hardVbsForContainer, newAutoVol, bindCPU, memoryLimit) // nolint + return c.updateContainersResources(ctx, ch, node, containers, newResource, cpusets, hardVbsForContainer, newAutoVol, opts.BindCPU, opts.MemoryLimit) // nolint }, // then func(ctx context.Context) (err error) { @@ -189,7 +182,7 @@ func (c *Calcium) updateContainersResources(ctx context.Context, ch chan *types. node *types.Node, containers []*types.Container, newResource *enginetypes.VirtualizationResource, cpusets []types.CPUMap, hardVbsForContainer map[string]types.VolumeBindings, newAutoVol string, - bindCPU types.BindCPUOptions, memoryLimit types.MemoryLimitOptions) error { + bindCPU, memoryLimit types.TriOptions) error { autoVbs, _ := types.MakeVolumeBindings(strings.Split(newAutoVol, ",")) planForContainers, err := c.reallocVolume(node, containers, autoVbs) @@ -200,7 +193,7 @@ func (c *Calcium) updateContainersResources(ctx context.Context, ch chan *types. for _, container := range containers { // 情况1,原来就有绑定cpu的,保持不变 // 情况2,有绑定指令,不管之前有没有cpuMap,都分配 - if (len(container.CPU) > 0 && bindCPU == types.ReallocKeepCPUCurrent) || bindCPU == types.ReallocBindCPU { + if (len(container.CPU) > 0 && bindCPU == types.TriKeep) || bindCPU == types.TriTrue { newResource.CPU = cpusets[0] newResource.NUMANode = node.GetNUMANode(cpusets[0]) cpusets = cpusets[1:] @@ -212,12 +205,12 @@ func (c *Calcium) updateContainersResources(ctx context.Context, ch chan *types. } switch memoryLimit { - case types.ReallocMemoryInheritLimit: + case types.TriKeep: newResource.SoftLimit = container.SoftLimit - case types.ReallocMemoryHardLimit: - newResource.SoftLimit = false - case types.ReallocMemorySoftLimit: + case types.TriTrue: newResource.SoftLimit = true + case types.TriFalse: + newResource.SoftLimit = false } newResource.Volumes = append(newResource.Volumes, hardVbsForContainer[container.ID].ToStringSlice(false, false)...) diff --git a/cluster/calcium/realloc_test.go b/cluster/calcium/realloc_test.go index 66c99a769..ce0926475 100644 --- a/cluster/calcium/realloc_test.go +++ b/cluster/calcium/realloc_test.go @@ -18,6 +18,17 @@ import ( "github.com/stretchr/testify/mock" ) +func newReallocOptions(ids []string, cpu float64, memory int64, vbs types.VolumeBindings, bindCPU, memoryLimit types.TriOptions) *types.ReallocOptions { + return &types.ReallocOptions{ + IDs: ids, + CPU: cpu, + Memory: memory, + Volumes: vbs, + BindCPU: bindCPU, + MemoryLimit: memoryLimit, + } +} + func TestRealloc(t *testing.T) { c := NewTestCluster() ctx := context.Background() @@ -72,7 +83,7 @@ func TestRealloc(t *testing.T) { store.On("GetContainers", mock.Anything, []string{"c1", "c2"}).Return([]*types.Container{c1, c2}, nil) // failed by lock store.On("CreateLock", mock.Anything, mock.Anything).Return(nil, types.ErrNoETCD).Once() - ch, err := c.ReallocResource(ctx, []string{"c1"}, -1, types.ReallocKeepCPUCurrent, 2*int64(units.GiB), types.ReallocMemoryInheritLimit, nil) + ch, err := c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, -1, 2*int64(units.GiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) @@ -80,28 +91,28 @@ func TestRealloc(t *testing.T) { store.On("CreateLock", mock.Anything, mock.Anything).Return(lock, nil) // failed by GetPod store.On("GetPod", mock.Anything, mock.Anything).Return(pod1, types.ErrNoETCD).Once() - ch, err = c.ReallocResource(ctx, []string{"c1"}, -1, types.ReallocKeepCPUCurrent, 2*int64(units.GiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, -1, 2*int64(units.GiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) } store.On("GetPod", mock.Anything, mock.Anything).Return(pod1, nil) // failed by newCPU < 0 - ch, err = c.ReallocResource(ctx, []string{"c1"}, -1, types.ReallocKeepCPUCurrent, 2*int64(units.GiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, -1, 2*int64(units.GiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) } // failed by GetNode store.On("GetNode", mock.Anything, "node1").Return(nil, types.ErrNoETCD).Once() - ch, err = c.ReallocResource(ctx, []string{"c1"}, 0.1, types.ReallocKeepCPUCurrent, 2*int64(units.GiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, 0.1, 2*int64(units.GiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) } store.On("GetNode", mock.Anything, "node1").Return(node1, nil) // failed by memory not enough - ch, err = c.ReallocResource(ctx, []string{"c1"}, 0.1, types.ReallocKeepCPUCurrent, 2*int64(units.GiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, 0.1, 2*int64(units.GiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) @@ -114,14 +125,14 @@ func TestRealloc(t *testing.T) { "c1": {{types.MustToVolumeBinding("AUTO:/data:rw:50"): types.VolumeMap{"/dir0": 50}}}, } simpleMockScheduler.On("SelectVolumeNodes", mock.Anything, types.MustToVolumeBindings([]string{"AUTO:/data:rw:50"})).Return(nil, nodeVolumePlans, 1, nil) - ch, err = c.ReallocResource(ctx, []string{"c1"}, 0.1, types.ReallocKeepCPUCurrent, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, 0.1, 2*int64(units.MiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) } // failed by wrong total simpleMockScheduler.On("SelectCPUNodes", mock.Anything, mock.Anything, mock.Anything).Return(nil, nil, 0, nil).Once() - ch, err = c.ReallocResource(ctx, []string{"c1"}, 0.1, types.ReallocKeepCPUCurrent, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, 0.1, 2*int64(units.MiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) @@ -147,7 +158,7 @@ func TestRealloc(t *testing.T) { Engine: engine, Endpoint: "http://1.1.1.1:1", } - ch, err = c.ReallocResource(ctx, []string{"c1", "c2"}, 0.1, types.ReallocKeepCPUCurrent, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1", "c2"}, 0.1, 2*int64(units.MiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) @@ -159,7 +170,7 @@ func TestRealloc(t *testing.T) { store.On("UpdateNode", mock.Anything, mock.Anything).Return(nil) // failed by update container store.On("UpdateContainer", mock.Anything, mock.Anything).Return(types.ErrBadContainerID).Once() - ch, err = c.ReallocResource(ctx, []string{"c1", "c2"}, 0.1, types.ReallocKeepCPUCurrent, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1", "c2"}, 0.1, 2*int64(units.MiB), nil, types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) @@ -174,21 +185,21 @@ func TestRealloc(t *testing.T) { }, } simpleMockScheduler.On("SelectVolumeNodes", mock.Anything, types.MustToVolumeBindings([]string{"AUTO:/data:rw:100"})).Return(nil, nodeVolumePlans, 4, nil).Once() - ch, err = c.ReallocResource(ctx, []string{"c1"}, 0.1, types.ReallocKeepCPUCurrent, int64(units.MiB), types.ReallocMemoryInheritLimit, types.MustToVolumeBindings([]string{"AUTO:/data:rw:50"})) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, 0.1, int64(units.MiB), types.MustToVolumeBindings([]string{"AUTO:/data:rw:50"}), types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) } // failed by volume schedule error simpleMockScheduler.On("SelectVolumeNodes", mock.Anything, mock.Anything).Return(nil, nil, 0, types.ErrInsufficientVolume).Once() - ch, err = c.ReallocResource(ctx, []string{"c1"}, 0.1, types.ReallocKeepCPUCurrent, int64(units.MiB), types.ReallocMemoryInheritLimit, types.MustToVolumeBindings([]string{"AUTO:/data:rw:1"})) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1"}, 0.1, int64(units.MiB), types.MustToVolumeBindings([]string{"AUTO:/data:rw:1"}), types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) } // failed due to re-volume plan less then container number simpleMockScheduler.On("SelectVolumeNodes", mock.Anything, mock.Anything).Return(nil, nodeVolumePlans, 0, nil).Twice() - ch, err = c.ReallocResource(ctx, []string{"c1", "c2"}, 0.1, types.ReallocKeepCPUCurrent, int64(units.MiB), types.ReallocMemoryInheritLimit, types.MustToVolumeBindings([]string{"AUTO:/data:rw:1"})) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c1", "c2"}, 0.1, int64(units.MiB), types.MustToVolumeBindings([]string{"AUTO:/data:rw:1"}), types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) @@ -252,7 +263,7 @@ func TestRealloc(t *testing.T) { store.On("GetNode", mock.Anything, "node2").Return(node2, nil) store.On("GetContainers", mock.Anything, []string{"c3", "c4"}).Return([]*types.Container{c3, c4}, nil) store.On("UpdateContainer", mock.Anything, mock.Anything).Return(types.ErrBadContainerID).Twice() - ch, err = c.ReallocResource(ctx, []string{"c3", "c4"}, 0.1, types.ReallocKeepCPUCurrent, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, types.MustToVolumeBindings([]string{"AUTO:/data0:rw:-50"})) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c3", "c4"}, 0.1, 2*int64(units.MiB), types.MustToVolumeBindings([]string{"AUTO:/data0:rw:-50"}), types.TriKeep, types.TriKeep)) assert.NoError(t, err) for r := range ch { assert.Error(t, r.Error) @@ -467,28 +478,28 @@ func TestReallocBindCpu(t *testing.T) { engine.On("VirtualizationUpdateResource", mock.Anything, mock.Anything, mock.Anything).Return(nil) store.On("UpdateNode", mock.Anything, mock.Anything).Return(nil) store.On("UpdateContainer", mock.Anything, mock.Anything).Return(nil) - ch, err := c.ReallocResource(ctx, []string{"c5"}, 0.1, types.ReallocFreeCPU, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, nil) + ch, err := c.ReallocResource(ctx, newReallocOptions([]string{"c5"}, 0.1, 2*int64(units.MiB), nil, types.TriFalse, types.TriKeep)) for r := range ch { assert.NoError(t, r.Error) } assert.NoError(t, err) assert.Empty(t, c5.CPU) - ch, err = c.ReallocResource(ctx, []string{"c6"}, 0.1, types.ReallocBindCPU, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c6"}, 0.1, 2*int64(units.MiB), nil, types.TriTrue, types.TriKeep)) for r := range ch { assert.NoError(t, r.Error) } assert.NoError(t, err) assert.NotEmpty(t, c6.CPU) - ch, err = c.ReallocResource(ctx, []string{"c6", "c5"}, -0.1, types.ReallocBindCPU, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c6", "c5"}, -0.1, 2*int64(units.MiB), nil, types.TriTrue, types.TriKeep)) for r := range ch { assert.NoError(t, r.Error) } assert.NoError(t, err) assert.NotEmpty(t, c6.CPU) assert.NotEmpty(t, c5.CPU) - ch, err = c.ReallocResource(ctx, []string{"c6", "c5"}, -0.1, types.ReallocFreeCPU, 2*int64(units.MiB), types.ReallocMemoryInheritLimit, nil) + ch, err = c.ReallocResource(ctx, newReallocOptions([]string{"c6", "c5"}, -0.1, 2*int64(units.MiB), nil, types.TriFalse, types.TriKeep)) for r := range ch { assert.NoError(t, r.Error) } diff --git a/cluster/cluster.go b/cluster/cluster.go index c7764a9e4..1baa7f0ff 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -89,7 +89,7 @@ type Cluster interface { DissociateContainer(ctx context.Context, IDs []string) (chan *types.DissociateContainerMessage, error) ControlContainer(ctx context.Context, IDs []string, t string, force bool) (chan *types.ControlContainerMessage, error) ExecuteContainer(ctx context.Context, opts *types.ExecuteContainerOptions, inCh <-chan []byte) chan *types.AttachContainerMessage - ReallocResource(ctx context.Context, IDs []string, cpu float64, bindCPU types.BindCPUOptions, memory int64, memoryLimit types.MemoryLimitOptions, volumes types.VolumeBindings) (chan *types.ReallocResourceMessage, error) + ReallocResource(ctx context.Context, opts *types.ReallocOptions) (chan *types.ReallocResourceMessage, error) LogStream(ctx context.Context, opts *types.LogStreamOptions) (chan *types.LogStreamMessage, error) RunAndWait(ctx context.Context, opts *types.DeployOptions, inCh <-chan []byte) (<-chan *types.AttachContainerMessage, error) // finalizer diff --git a/cluster/mocks/Cluster.go b/cluster/mocks/Cluster.go index 0499204e8..4980f2e3b 100644 --- a/cluster/mocks/Cluster.go +++ b/cluster/mocks/Cluster.go @@ -536,13 +536,13 @@ func (_m *Cluster) PodResource(ctx context.Context, podname string) (*types.PodR return r0, r1 } -// ReallocResource provides a mock function with given fields: ctx, IDs, cpu, bindCPU, memory, memoryLimit, volumes -func (_m *Cluster) ReallocResource(ctx context.Context, IDs []string, cpu float64, bindCPU types.BindCPUOptions, memory int64, memoryLimit types.MemoryLimitOptions, volumes types.VolumeBindings) (chan *types.ReallocResourceMessage, error) { - ret := _m.Called(ctx, IDs, cpu, bindCPU, memory, memoryLimit, volumes) +// ReallocResource provides a mock function with given fields: ctx, opts +func (_m *Cluster) ReallocResource(ctx context.Context, opts *types.ReallocOptions) (chan *types.ReallocResourceMessage, error) { + ret := _m.Called(ctx, opts) var r0 chan *types.ReallocResourceMessage - if rf, ok := ret.Get(0).(func(context.Context, []string, float64, types.BindCPUOptions, int64, types.MemoryLimitOptions, types.VolumeBindings) chan *types.ReallocResourceMessage); ok { - r0 = rf(ctx, IDs, cpu, bindCPU, memory, memoryLimit, volumes) + if rf, ok := ret.Get(0).(func(context.Context, *types.ReallocOptions) chan *types.ReallocResourceMessage); ok { + r0 = rf(ctx, opts) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(chan *types.ReallocResourceMessage) @@ -550,8 +550,8 @@ func (_m *Cluster) ReallocResource(ctx context.Context, IDs []string, cpu float6 } var r1 error - if rf, ok := ret.Get(1).(func(context.Context, []string, float64, types.BindCPUOptions, int64, types.MemoryLimitOptions, types.VolumeBindings) error); ok { - r1 = rf(ctx, IDs, cpu, bindCPU, memory, memoryLimit, volumes) + if rf, ok := ret.Get(1).(func(context.Context, *types.ReallocOptions) error); ok { + r1 = rf(ctx, opts) } else { r1 = ret.Error(1) } diff --git a/rpc/gen/core.pb.go b/rpc/gen/core.pb.go index 5ce789135..b21c63633 100644 --- a/rpc/gen/core.pb.go +++ b/rpc/gen/core.pb.go @@ -24,62 +24,34 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package -type BindCPUOpt int32 +type TriOpt int32 const ( - BindCPUOpt_KEEP BindCPUOpt = 0 - BindCPUOpt_BIND BindCPUOpt = 1 - BindCPUOpt_FREE BindCPUOpt = 2 + TriOpt_KEEP TriOpt = 0 + TriOpt_TRUE TriOpt = 1 + TriOpt_FALSE TriOpt = 2 ) -var BindCPUOpt_name = map[int32]string{ +var TriOpt_name = map[int32]string{ 0: "KEEP", - 1: "BIND", - 2: "FREE", + 1: "TRUE", + 2: "FALSE", } -var BindCPUOpt_value = map[string]int32{ - "KEEP": 0, - "BIND": 1, - "FREE": 2, +var TriOpt_value = map[string]int32{ + "KEEP": 0, + "TRUE": 1, + "FALSE": 2, } -func (x BindCPUOpt) String() string { - return proto.EnumName(BindCPUOpt_name, int32(x)) +func (x TriOpt) String() string { + return proto.EnumName(TriOpt_name, int32(x)) } -func (BindCPUOpt) EnumDescriptor() ([]byte, []int) { +func (TriOpt) EnumDescriptor() ([]byte, []int) { return fileDescriptor_f7e43720d1edc0fe, []int{0} } -type MemoryLimitOpt int32 - -const ( - MemoryLimitOpt_INHERIT MemoryLimitOpt = 0 - MemoryLimitOpt_SOFT MemoryLimitOpt = 1 - MemoryLimitOpt_HARD MemoryLimitOpt = 2 -) - -var MemoryLimitOpt_name = map[int32]string{ - 0: "INHERIT", - 1: "SOFT", - 2: "HARD", -} - -var MemoryLimitOpt_value = map[string]int32{ - "INHERIT": 0, - "SOFT": 1, - "HARD": 2, -} - -func (x MemoryLimitOpt) String() string { - return proto.EnumName(MemoryLimitOpt_name, int32(x)) -} - -func (MemoryLimitOpt) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_f7e43720d1edc0fe, []int{1} -} - type BuildImageOptions_BuildMethod int32 const ( @@ -1709,15 +1681,15 @@ func (m *DissociateContainerOptions) GetIds() []string { } type ReallocOptions struct { - Ids []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"` - Cpu float64 `protobuf:"fixed64,2,opt,name=cpu,proto3" json:"cpu,omitempty"` - Memory int64 `protobuf:"varint,3,opt,name=memory,proto3" json:"memory,omitempty"` - Volumes []string `protobuf:"bytes,4,rep,name=volumes,proto3" json:"volumes,omitempty"` - BindCpu BindCPUOpt `protobuf:"varint,5,opt,name=bind_cpu,json=bindCpu,proto3,enum=pb.BindCPUOpt" json:"bind_cpu,omitempty"` - MemoryLimit MemoryLimitOpt `protobuf:"varint,6,opt,name=memory_limit,json=memoryLimit,proto3,enum=pb.MemoryLimitOpt" json:"memory_limit,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Ids []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"` + Cpu float64 `protobuf:"fixed64,2,opt,name=cpu,proto3" json:"cpu,omitempty"` + Memory int64 `protobuf:"varint,3,opt,name=memory,proto3" json:"memory,omitempty"` + Volumes []string `protobuf:"bytes,4,rep,name=volumes,proto3" json:"volumes,omitempty"` + BindCpu TriOpt `protobuf:"varint,5,opt,name=bind_cpu,json=bindCpu,proto3,enum=pb.TriOpt" json:"bind_cpu,omitempty"` + MemoryLimit TriOpt `protobuf:"varint,6,opt,name=memory_limit,json=memoryLimit,proto3,enum=pb.TriOpt" json:"memory_limit,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ReallocOptions) Reset() { *m = ReallocOptions{} } @@ -1773,18 +1745,18 @@ func (m *ReallocOptions) GetVolumes() []string { return nil } -func (m *ReallocOptions) GetBindCpu() BindCPUOpt { +func (m *ReallocOptions) GetBindCpu() TriOpt { if m != nil { return m.BindCpu } - return BindCPUOpt_KEEP + return TriOpt_KEEP } -func (m *ReallocOptions) GetMemoryLimit() MemoryLimitOpt { +func (m *ReallocOptions) GetMemoryLimit() TriOpt { if m != nil { return m.MemoryLimit } - return MemoryLimitOpt_INHERIT + return TriOpt_KEEP } type AddPodOptions struct { @@ -4516,8 +4488,7 @@ func (m *ExecuteContainerOptions) GetReplCmd() []byte { } func init() { - proto.RegisterEnum("pb.BindCPUOpt", BindCPUOpt_name, BindCPUOpt_value) - proto.RegisterEnum("pb.MemoryLimitOpt", MemoryLimitOpt_name, MemoryLimitOpt_value) + proto.RegisterEnum("pb.TriOpt", TriOpt_name, TriOpt_value) proto.RegisterEnum("pb.BuildImageOptions_BuildMethod", BuildImageOptions_BuildMethod_name, BuildImageOptions_BuildMethod_value) proto.RegisterType((*Empty)(nil), "pb.Empty") proto.RegisterType((*CoreInfo)(nil), "pb.CoreInfo") @@ -4640,289 +4611,287 @@ func init() { func init() { proto.RegisterFile("core.proto", fileDescriptor_f7e43720d1edc0fe) } var fileDescriptor_f7e43720d1edc0fe = []byte{ - // 4508 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x3b, 0x4d, 0x73, 0x1b, 0xc7, - 0x72, 0x04, 0x40, 0x10, 0x40, 0x03, 0x04, 0xc1, 0x11, 0x25, 0x43, 0x90, 0x6c, 0x49, 0xab, 0xd8, - 0x92, 0xf5, 0x6c, 0x5a, 0x96, 0x63, 0x59, 0xb6, 0x6c, 0xf9, 0x51, 0x24, 0x25, 0xb1, 0x9e, 0x3e, - 0xf8, 0x96, 0xb2, 0x5f, 0x72, 0x42, 0x96, 0xbb, 0x43, 0x72, 0xcb, 0xc0, 0xee, 0x66, 0x77, 0x41, - 0x99, 0xc7, 0x54, 0xa5, 0xea, 0x5d, 0x52, 0x95, 0x9c, 0x92, 0x4a, 0x2e, 0xb9, 0xe4, 0x94, 0x4b, - 0x52, 0x95, 0xaa, 0x54, 0xe5, 0x96, 0x63, 0x0e, 0x39, 0xe6, 0x98, 0x5f, 0x90, 0x63, 0xaa, 0x52, - 0xc9, 0x21, 0xa9, 0x4a, 0x4d, 0xf7, 0xcc, 0xec, 0xec, 0x62, 0x41, 0x0a, 0x52, 0xde, 0x7b, 0x39, - 0x61, 0xa6, 0xa7, 0xa7, 0xb7, 0xa7, 0xa7, 0xa7, 0xa7, 0x3f, 0x06, 0x00, 0x6e, 0x18, 0xf3, 0xf5, - 0x28, 0x0e, 0xd3, 0x90, 0x55, 0xa3, 0x7d, 0xab, 0x01, 0xf5, 0xed, 0x71, 0x94, 0x9e, 0x58, 0x7f, - 0x5e, 0x81, 0xe6, 0x66, 0x18, 0xf3, 0x9d, 0xe0, 0x20, 0x64, 0x7d, 0x68, 0x1c, 0xf3, 0x38, 0xf1, - 0xc3, 0xa0, 0x5f, 0xb9, 0x5a, 0xb9, 0xd9, 0xb2, 0x55, 0x57, 0x8c, 0xc4, 0xfc, 0xd8, 0x4f, 0xc2, - 0xa0, 0x5f, 0xa5, 0x11, 0xd9, 0x65, 0x17, 0xa1, 0xb9, 0x3f, 0xf1, 0x47, 0xde, 0xd0, 0x49, 0xfb, - 0x35, 0x1a, 0xc2, 0xfe, 0x46, 0xca, 0xde, 0x87, 0xee, 0x61, 0x38, 0x72, 0x82, 0xc3, 0xa1, 0xa2, - 0xba, 0x88, 0x08, 0xcb, 0x04, 0xfd, 0x5e, 0xd2, 0x7e, 0x07, 0x1a, 0x61, 0x32, 0x74, 0x62, 0xf7, - 0xa8, 0x5f, 0xc7, 0xf1, 0xa5, 0x30, 0xd9, 0x88, 0xdd, 0x23, 0xeb, 0x7f, 0x2a, 0x70, 0xfe, 0xa9, - 0x9f, 0xa4, 0x9b, 0x61, 0x90, 0x3a, 0x7e, 0xc0, 0xe3, 0xe4, 0x45, 0x94, 0xfa, 0x61, 0x90, 0x08, - 0x76, 0x9c, 0x28, 0x0a, 0x9c, 0x31, 0x57, 0x8c, 0xca, 0x2e, 0x7b, 0x0f, 0x80, 0x07, 0x69, 0x7c, - 0x12, 0x85, 0x7e, 0x90, 0x4a, 0x5e, 0x0d, 0x08, 0x1b, 0x40, 0x33, 0x08, 0x3d, 0x8e, 0x53, 0x89, - 0x5d, 0xdd, 0x67, 0xdf, 0xc0, 0xd2, 0xc8, 0xd9, 0xe7, 0xa3, 0xa4, 0xbf, 0x78, 0xb5, 0x76, 0xb3, - 0x7d, 0xe7, 0xfd, 0xf5, 0x68, 0x7f, 0xbd, 0x94, 0x81, 0xf5, 0xa7, 0x88, 0xb7, 0x2d, 0xe8, 0xda, - 0x72, 0x12, 0x5b, 0x83, 0xfa, 0xc8, 0x1f, 0xfb, 0x29, 0xae, 0xa2, 0x66, 0x53, 0x67, 0xf0, 0x25, - 0xb4, 0x0d, 0x64, 0xd6, 0x83, 0xda, 0x0f, 0xfc, 0x44, 0x72, 0x2d, 0x9a, 0x62, 0xda, 0xb1, 0x33, - 0x9a, 0x70, 0xc9, 0x2c, 0x75, 0xbe, 0xaa, 0xde, 0xab, 0x58, 0x1f, 0x43, 0x6d, 0x37, 0xf4, 0x18, - 0x83, 0x45, 0x63, 0xa5, 0xd8, 0x16, 0x30, 0x8f, 0x27, 0xae, 0x9c, 0x83, 0x6d, 0xeb, 0x3a, 0x2c, - 0xee, 0x86, 0x5e, 0xc2, 0x2e, 0xc1, 0x62, 0x14, 0x7a, 0x49, 0xbf, 0x82, 0x8b, 0x68, 0x88, 0x45, - 0xec, 0x86, 0x9e, 0x8d, 0x40, 0xeb, 0x9f, 0xeb, 0xd0, 0x16, 0x3d, 0x9e, 0x84, 0x93, 0xd8, 0xe5, - 0xa5, 0xc4, 0x37, 0xa1, 0xe3, 0x46, 0x93, 0x61, 0xc4, 0x63, 0x97, 0x07, 0x69, 0xd2, 0xaf, 0x22, - 0xa1, 0xab, 0x8a, 0x90, 0x9c, 0xba, 0xbe, 0x19, 0x4d, 0x76, 0x25, 0x0a, 0x09, 0xa2, 0xed, 0x66, - 0x10, 0xf6, 0x14, 0x56, 0xc6, 0x7c, 0x1c, 0xc6, 0x27, 0x19, 0x9d, 0x1a, 0xd2, 0xb9, 0x5e, 0xa4, - 0xf3, 0x0c, 0xd1, 0xf2, 0xa4, 0xba, 0xe3, 0x1c, 0x90, 0x3d, 0x81, 0xe5, 0x63, 0x1e, 0xfb, 0x07, - 0xbe, 0xeb, 0xe0, 0x06, 0xc8, 0x1d, 0xb2, 0x8a, 0xb4, 0xbe, 0x37, 0x91, 0x88, 0x54, 0x7e, 0x22, - 0xbb, 0x0b, 0x0d, 0x8f, 0xa7, 0x8e, 0x3f, 0x4a, 0xfa, 0x75, 0xa4, 0x71, 0xb9, 0x48, 0x63, 0x8b, - 0x86, 0x69, 0xb6, 0x42, 0x66, 0x2f, 0xa0, 0x97, 0xa4, 0x61, 0xec, 0x1c, 0xf2, 0x6c, 0x41, 0x4b, - 0x48, 0xe0, 0xb7, 0x8a, 0x04, 0xf6, 0x08, 0x2f, 0xbf, 0xa2, 0x95, 0x24, 0x0f, 0x1d, 0x3c, 0x80, - 0x5e, 0x51, 0x82, 0x67, 0x69, 0x47, 0xc5, 0xd0, 0x8e, 0xc1, 0x06, 0x9c, 0x2b, 0x91, 0xdc, 0x5c, - 0x24, 0x7e, 0x0a, 0x6c, 0x5a, 0x60, 0x67, 0x51, 0x68, 0x9a, 0x14, 0xbe, 0x82, 0x8e, 0x29, 0xae, - 0x79, 0xd4, 0x7b, 0xf0, 0x10, 0xd6, 0xca, 0x24, 0x35, 0xcf, 0x0a, 0xac, 0xff, 0xaa, 0x40, 0xe7, - 0x79, 0xe8, 0xf1, 0x53, 0xf5, 0xf9, 0x0a, 0xb4, 0x0d, 0x7d, 0x96, 0x44, 0x20, 0x53, 0x56, 0x61, - 0xa8, 0xf2, 0xba, 0x8a, 0xa6, 0xa1, 0x62, 0x2f, 0xe7, 0xb4, 0x90, 0x59, 0xd0, 0x31, 0x75, 0x09, - 0xad, 0x59, 0xd3, 0xce, 0xc1, 0x84, 0x65, 0x32, 0xd5, 0xab, 0x95, 0x29, 0xd0, 0x0d, 0x58, 0x29, - 0x28, 0x50, 0x7f, 0x09, 0xbf, 0xd2, 0xcd, 0x6b, 0x86, 0xe0, 0xe6, 0x38, 0x1c, 0x4d, 0xc6, 0x19, - 0x5e, 0x83, 0xb8, 0x21, 0xa8, 0x44, 0xb3, 0x1e, 0x01, 0x13, 0xb6, 0xe9, 0x39, 0x4f, 0x5f, 0x85, - 0xf1, 0x0f, 0x86, 0x65, 0x8c, 0x42, 0xcf, 0xb4, 0x8c, 0xb2, 0xcb, 0x2e, 0xc0, 0x92, 0x17, 0xfb, - 0xc7, 0x3c, 0x96, 0x3b, 0x21, 0x7b, 0xd6, 0x17, 0xd0, 0x90, 0x34, 0x4a, 0x85, 0xd7, 0x87, 0x46, - 0x32, 0xd9, 0x0f, 0xb8, 0xb4, 0x03, 0x2d, 0x5b, 0x75, 0xad, 0xcf, 0xa0, 0x29, 0x27, 0x8a, 0xc5, - 0x35, 0x03, 0xd9, 0x96, 0x76, 0xa7, 0x2d, 0x4e, 0x85, 0x1c, 0xb7, 0xf5, 0xa0, 0xf5, 0x6f, 0x4d, - 0x58, 0x14, 0x1b, 0x56, 0xfa, 0xad, 0x01, 0x34, 0x79, 0xe0, 0x99, 0xa6, 0x5b, 0xf7, 0xcd, 0x85, - 0xd5, 0xf2, 0x0b, 0xbb, 0x0e, 0x35, 0x37, 0x9a, 0x48, 0x8b, 0xb0, 0x8a, 0x9f, 0x0d, 0x3d, 0x34, - 0x4f, 0x74, 0xf2, 0xc4, 0xa8, 0xb8, 0xa6, 0x84, 0x0e, 0x4c, 0x12, 0xee, 0xa1, 0x7d, 0xae, 0xd8, - 0x0d, 0x37, 0x9a, 0x7c, 0x97, 0x70, 0x4f, 0x08, 0x86, 0xf6, 0x19, 0xf7, 0xa3, 0x66, 0xcb, 0x9e, - 0x50, 0x1b, 0xa9, 0x15, 0x38, 0xab, 0x81, 0x83, 0x40, 0x20, 0x9c, 0x78, 0x19, 0x5a, 0xce, 0xb1, - 0xe3, 0x8f, 0x9c, 0xfd, 0x11, 0xef, 0x37, 0x51, 0x19, 0x32, 0x00, 0xfb, 0x48, 0xdf, 0x26, 0x2d, - 0xe4, 0x6c, 0x4d, 0x73, 0x56, 0x76, 0x79, 0x5c, 0x81, 0xb6, 0x1f, 0xf8, 0xe9, 0x50, 0x72, 0x02, - 0xf4, 0x31, 0x01, 0xa2, 0x43, 0xce, 0x6e, 0x43, 0x13, 0x11, 0xc4, 0x52, 0xdb, 0x48, 0xf0, 0xbc, - 0x26, 0xb8, 0x13, 0xf8, 0xa9, 0x5e, 0x6e, 0xc3, 0xa7, 0x9e, 0x90, 0xb0, 0x1f, 0x1c, 0x84, 0xfd, - 0x0e, 0x49, 0x58, 0xb4, 0xd9, 0x07, 0xb0, 0x18, 0x4c, 0xc6, 0x4e, 0x7f, 0x19, 0x29, 0x30, 0x4d, - 0xe1, 0xf9, 0x64, 0xec, 0xd0, 0x74, 0x1c, 0x67, 0x5f, 0x42, 0x5b, 0xfc, 0x2a, 0x76, 0xba, 0x88, - 0xde, 0xcf, 0xa1, 0x13, 0x5f, 0x34, 0x09, 0x02, 0x0d, 0x40, 0x85, 0x21, 0x85, 0xee, 0xaf, 0xe0, - 0x2a, 0x54, 0x97, 0x5d, 0x83, 0x8e, 0x3a, 0x01, 0x28, 0xd1, 0x1e, 0x0e, 0xb7, 0x25, 0x0c, 0x45, - 0x7a, 0x0d, 0x3a, 0xb8, 0x4a, 0x45, 0x61, 0x95, 0x50, 0x04, 0x4c, 0xda, 0x0a, 0xc1, 0x1a, 0xa2, - 0xd0, 0x69, 0xe8, 0xb3, 0x02, 0x6b, 0x42, 0x16, 0xdf, 0xe3, 0x90, 0x64, 0xcd, 0xd7, 0x00, 0xb1, - 0x25, 0x72, 0xd6, 0xb9, 0xc2, 0x96, 0x98, 0x33, 0x24, 0x8e, 0xd8, 0x12, 0x79, 0x0e, 0x91, 0xdb, - 0x35, 0xda, 0x12, 0x02, 0x09, 0x66, 0x07, 0x77, 0xa1, 0xa9, 0xa4, 0x7e, 0x96, 0xd1, 0xaa, 0x9b, - 0x86, 0xef, 0xcd, 0x5d, 0x02, 0x61, 0x6f, 0xcd, 0xcd, 0x9e, 0xeb, 0xb3, 0x5f, 0x40, 0x4b, 0x6f, - 0xf3, 0x5c, 0x1f, 0xfd, 0x06, 0x56, 0x0a, 0x1b, 0x7e, 0xd6, 0xf4, 0x5a, 0x61, 0x7a, 0x61, 0x53, - 0xe6, 0x9a, 0xfe, 0x25, 0xb4, 0xdf, 0x70, 0xaa, 0x75, 0x03, 0xea, 0x62, 0x77, 0x13, 0xf6, 0x1e, - 0xd4, 0x85, 0x97, 0xa7, 0x6c, 0x53, 0x53, 0xed, 0xbb, 0x4d, 0x60, 0x6b, 0x1b, 0x96, 0x45, 0x77, - 0x43, 0x1f, 0x5e, 0xd3, 0x4d, 0xac, 0x14, 0xdc, 0x44, 0xc3, 0x12, 0x55, 0x73, 0x96, 0xc8, 0xfa, - 0xdb, 0x25, 0xe8, 0xee, 0xf1, 0x54, 0x90, 0x52, 0xf6, 0xf8, 0x34, 0x42, 0x17, 0x60, 0x29, 0x49, - 0x9d, 0x74, 0x92, 0xc8, 0xbd, 0x92, 0x3d, 0xf6, 0x0d, 0xb4, 0x3c, 0x3e, 0x4a, 0x1d, 0x3c, 0xeb, - 0xb5, 0xcc, 0xf9, 0xca, 0x93, 0x5e, 0xdf, 0x12, 0x38, 0xfa, 0xd8, 0x37, 0x3d, 0xd9, 0x15, 0x67, - 0x88, 0xa6, 0xcb, 0xc3, 0xbb, 0x48, 0x67, 0x08, 0x61, 0xf2, 0x8c, 0x5e, 0x87, 0x65, 0x42, 0x51, - 0xe7, 0x8c, 0x5c, 0x56, 0x9a, 0xa7, 0x0e, 0xda, 0x1e, 0xac, 0x12, 0x92, 0x69, 0x09, 0xc8, 0xe5, - 0xb9, 0x31, 0x8b, 0x9d, 0xa2, 0x61, 0x58, 0xf1, 0xf2, 0x50, 0x76, 0x5b, 0x1a, 0xa0, 0x46, 0xe6, - 0x7b, 0x15, 0xe8, 0x14, 0x4d, 0xd1, 0x5d, 0x6d, 0x47, 0x9b, 0x38, 0xe7, 0xbd, 0x92, 0x39, 0x65, - 0x16, 0xf5, 0x91, 0x12, 0x83, 0x3c, 0xf2, 0xad, 0xcc, 0xfb, 0x2c, 0xe3, 0xdc, 0xb4, 0x00, 0x24, - 0x2b, 0x69, 0x34, 0x6e, 0xc0, 0x8a, 0xab, 0xfd, 0xff, 0xa1, 0x17, 0xbe, 0x0a, 0xd0, 0x3a, 0x37, - 0xed, 0x6e, 0x06, 0xde, 0x0a, 0x5f, 0x05, 0x83, 0xfb, 0xb0, 0x9c, 0xdb, 0x92, 0xb9, 0x0e, 0xe7, - 0x43, 0x58, 0x2b, 0x13, 0xe0, 0x5c, 0x27, 0xe5, 0x8d, 0x0f, 0xf8, 0x5b, 0x18, 0xa4, 0x07, 0xd0, - 0x2b, 0x8a, 0x6f, 0xae, 0x23, 0xfa, 0x9f, 0x75, 0x68, 0xe9, 0xf0, 0x8a, 0x75, 0xa1, 0xea, 0x7b, - 0x72, 0x62, 0xd5, 0xf7, 0x66, 0x1f, 0xb5, 0x53, 0xe3, 0x38, 0xe5, 0x5a, 0x2c, 0x1a, 0xae, 0xc5, - 0x4d, 0x72, 0x12, 0xc8, 0xe5, 0xbf, 0x20, 0x94, 0x40, 0x7f, 0xb5, 0xe0, 0x29, 0xac, 0x41, 0xfd, - 0xf7, 0x27, 0x61, 0xea, 0x48, 0xef, 0x8c, 0x3a, 0x86, 0x93, 0xd0, 0xc8, 0x39, 0x09, 0xef, 0x01, - 0x44, 0xb1, 0x7f, 0xec, 0x8f, 0xf8, 0x21, 0xf7, 0xa4, 0x13, 0x60, 0x40, 0xd8, 0xa7, 0x05, 0x2f, - 0xe0, 0x62, 0xfe, 0xd3, 0x65, 0x8a, 0xfb, 0xdb, 0xd0, 0x88, 0x26, 0xfb, 0x23, 0x3f, 0x39, 0xea, - 0x03, 0xce, 0x19, 0xe4, 0xe7, 0xec, 0xd2, 0xa0, 0xbc, 0xed, 0x25, 0xaa, 0x60, 0xdb, 0x1f, 0x8b, - 0xa3, 0xdc, 0xa6, 0x2d, 0xc2, 0x8e, 0x79, 0x19, 0x77, 0xf2, 0x97, 0xf1, 0x4f, 0xb4, 0xf1, 0x59, - 0xbe, 0x5a, 0xb9, 0xd9, 0xbe, 0x73, 0x2e, 0xf7, 0x91, 0x3d, 0x1c, 0xd2, 0x16, 0xa9, 0x0f, 0x0d, - 0x3a, 0x45, 0x09, 0xba, 0x02, 0x2d, 0x5b, 0x75, 0xd9, 0x03, 0x7d, 0x49, 0x46, 0x23, 0x27, 0xe8, - 0xaf, 0x20, 0xc3, 0xef, 0xe6, 0x19, 0x26, 0xdd, 0xd8, 0x1d, 0x39, 0x81, 0xbc, 0x92, 0x8f, 0x35, - 0xe0, 0x37, 0x74, 0x87, 0x9a, 0x22, 0x9c, 0x6b, 0xee, 0x0e, 0xac, 0x14, 0x56, 0x53, 0x32, 0xfd, - 0xaa, 0x39, 0xbd, 0x7d, 0x07, 0x84, 0x34, 0x68, 0x96, 0xa9, 0xf9, 0x7f, 0x50, 0x85, 0x95, 0x82, - 0xbc, 0xcb, 0xf4, 0x3f, 0x9e, 0x04, 0x81, 0x1f, 0x1c, 0xca, 0xd0, 0x4b, 0x75, 0xc5, 0xc8, 0x11, - 0x77, 0x46, 0xe9, 0xd1, 0x09, 0xaa, 0x7f, 0xd3, 0x56, 0x5d, 0xf6, 0x8d, 0xe1, 0x8a, 0x93, 0x4f, - 0x7c, 0xad, 0x64, 0x6b, 0x95, 0x6b, 0x2e, 0x75, 0x4f, 0x4f, 0x11, 0x4e, 0x2d, 0xff, 0x31, 0xe5, - 0x01, 0xe6, 0x6b, 0xc4, 0xb5, 0xd0, 0xb1, 0x33, 0x80, 0x58, 0x6c, 0x9a, 0x8e, 0xa4, 0xa3, 0x2c, - 0x9a, 0xc2, 0xea, 0xe5, 0x48, 0xcd, 0x95, 0xe1, 0xf8, 0x16, 0x7a, 0x59, 0x6e, 0x45, 0xca, 0x20, - 0x53, 0x4c, 0xba, 0xac, 0x4f, 0x53, 0x4c, 0xeb, 0xef, 0x2b, 0x70, 0xb9, 0x30, 0xb6, 0x97, 0xc6, - 0xdc, 0x19, 0x3f, 0xe3, 0x49, 0x22, 0xd4, 0xbc, 0x28, 0xd1, 0x9f, 0x40, 0x4b, 0x9b, 0x6d, 0xb9, - 0x3f, 0xcb, 0xb9, 0x0f, 0xd8, 0xd9, 0xb8, 0xc1, 0x4a, 0xed, 0xec, 0x33, 0xb2, 0x06, 0x75, 0x1e, - 0xc7, 0x61, 0x2c, 0xcd, 0x0e, 0x75, 0x30, 0xea, 0xe2, 0x23, 0x9e, 0xd2, 0x15, 0xdb, 0xb4, 0x65, - 0xcf, 0xda, 0x81, 0xc1, 0x1e, 0x4f, 0x8b, 0x8b, 0x57, 0x5e, 0xc3, 0x5c, 0x32, 0xf8, 0x8f, 0x59, - 0x32, 0xf8, 0xd5, 0x66, 0xcb, 0xb6, 0x0a, 0xd9, 0xb2, 0x8f, 0x4a, 0x78, 0xcc, 0xf1, 0x51, 0x66, - 0xec, 0xde, 0x26, 0x3d, 0x76, 0x1f, 0x20, 0x93, 0x1f, 0xfb, 0x18, 0x20, 0xbb, 0x8f, 0xa5, 0xd8, - 0x0a, 0x3b, 0x6b, 0x20, 0x58, 0xef, 0x42, 0x5b, 0x0f, 0xec, 0x6c, 0x15, 0xd5, 0xc4, 0xba, 0x0a, - 0x1d, 0x63, 0x38, 0x11, 0x7c, 0xf9, 0x32, 0xa5, 0xd6, 0xb2, 0x45, 0xd3, 0x7a, 0x09, 0x17, 0x6c, - 0x3e, 0x0e, 0x8f, 0xb9, 0xc6, 0x53, 0xe2, 0x9e, 0xc2, 0x15, 0x6b, 0x38, 0x08, 0x63, 0x57, 0xe7, - 0x4f, 0xb0, 0x23, 0xae, 0xa9, 0x24, 0xe5, 0x11, 0x0a, 0xb6, 0x6e, 0x63, 0xdb, 0x5a, 0x87, 0xc1, - 0x96, 0x9f, 0x24, 0xa1, 0xeb, 0x3b, 0xe9, 0x6b, 0x50, 0xb6, 0xfe, 0xa9, 0x02, 0x5d, 0x9b, 0x3b, - 0xa3, 0x51, 0xe8, 0xce, 0xfe, 0x7c, 0x8f, 0xee, 0x3e, 0xca, 0x7b, 0xe0, 0x1d, 0x97, 0xdd, 0x66, - 0xb5, 0xdc, 0x6d, 0x66, 0xd8, 0xf9, 0xc5, 0xbc, 0x9d, 0xff, 0x10, 0x9a, 0xfb, 0x7e, 0xe0, 0x0d, - 0xe9, 0x12, 0xad, 0xdc, 0xec, 0xde, 0xe9, 0x0a, 0xe1, 0x3e, 0xf4, 0x03, 0x6f, 0x73, 0xf7, 0xbb, - 0x17, 0x51, 0x6a, 0x37, 0xc4, 0xb8, 0xf0, 0x3f, 0x3f, 0x87, 0x8e, 0x8c, 0x9b, 0x29, 0x1d, 0xba, - 0x84, 0xe8, 0x18, 0x6b, 0x92, 0x67, 0xf3, 0x54, 0x80, 0xc5, 0x14, 0x19, 0x5f, 0x63, 0xdf, 0xfa, - 0x02, 0x96, 0x37, 0x3c, 0x6f, 0x37, 0xf4, 0xd4, 0x42, 0x5e, 0x37, 0xef, 0xf9, 0x01, 0xf4, 0x68, - 0x27, 0x4e, 0x9f, 0x6b, 0x5d, 0x87, 0xe5, 0xc7, 0x3c, 0x3d, 0x03, 0xe9, 0x5f, 0xea, 0xd0, 0xdd, - 0xf0, 0xbc, 0xd7, 0x75, 0xe1, 0xdf, 0x2c, 0x63, 0xd1, 0x85, 0xaa, 0xeb, 0x48, 0x3b, 0x51, 0x75, - 0x1d, 0xc1, 0x88, 0xcb, 0xe3, 0x54, 0xa6, 0xbf, 0xb1, 0xad, 0x4e, 0xc2, 0x52, 0x76, 0x12, 0xe4, - 0x36, 0x36, 0x50, 0x5d, 0x94, 0xab, 0x92, 0x1c, 0x39, 0x31, 0x25, 0x1f, 0xea, 0x36, 0x75, 0x8c, - 0xcd, 0x6d, 0xe5, 0x36, 0x37, 0x73, 0xa4, 0x21, 0x73, 0xa4, 0xf3, 0x6b, 0x2d, 0xf5, 0x47, 0x94, - 0xcb, 0xde, 0xce, 0x5c, 0xf6, 0xc2, 0xac, 0xa2, 0xcb, 0xbe, 0x99, 0xcf, 0x1e, 0x74, 0xb2, 0x5c, - 0x6d, 0xc9, 0xc4, 0xd7, 0xc8, 0x23, 0x2c, 0xe7, 0x5d, 0x97, 0x9f, 0x82, 0xf4, 0x20, 0x86, 0x63, - 0x27, 0x92, 0xb9, 0x89, 0x6b, 0x25, 0xd4, 0xe9, 0xce, 0x7d, 0xe6, 0x44, 0x44, 0xbc, 0x75, 0xac, - 0xfa, 0x6f, 0xe3, 0x3d, 0xfc, 0xa6, 0xa2, 0xe8, 0xaf, 0xa1, 0x9b, 0x5f, 0xcf, 0x5c, 0x6e, 0xf6, - 0x27, 0xb0, 0x4a, 0x67, 0xe4, 0x35, 0x15, 0xdb, 0xfa, 0xcb, 0x0a, 0x74, 0x1f, 0xbf, 0x7e, 0x28, - 0x9b, 0xe9, 0x56, 0x35, 0xd3, 0xad, 0xc7, 0x67, 0x06, 0x69, 0x6f, 0x63, 0xfe, 0xff, 0xae, 0x02, - 0x3d, 0x4c, 0x80, 0x8a, 0x08, 0xfe, 0xec, 0xf4, 0x67, 0x0f, 0x6a, 0xce, 0x68, 0x24, 0x2d, 0xb0, - 0x68, 0xb2, 0x7b, 0x9a, 0x67, 0x23, 0xc6, 0x2e, 0x52, 0xfc, 0xbf, 0xe6, 0xfa, 0x5f, 0xeb, 0x50, - 0x7f, 0x38, 0xf1, 0x47, 0x58, 0xd6, 0xd9, 0x77, 0x12, 0x6d, 0x7d, 0x44, 0x5b, 0xc0, 0x62, 0x1e, - 0x85, 0xca, 0xbc, 0x89, 0xb6, 0x59, 0x94, 0xab, 0xe5, 0x8b, 0x72, 0x3d, 0xa8, 0x79, 0xbe, 0xf2, - 0x37, 0x44, 0x53, 0x38, 0x6f, 0xc9, 0x64, 0x7f, 0x1c, 0x7a, 0x93, 0x91, 0x72, 0x38, 0x32, 0x80, - 0xd8, 0x40, 0x37, 0x1c, 0x8f, 0x9d, 0xc0, 0xa3, 0xd2, 0x45, 0xcb, 0xd6, 0x7d, 0x76, 0x03, 0x16, - 0x79, 0x70, 0x9c, 0xc8, 0xb8, 0x1c, 0xfd, 0x0d, 0x64, 0x73, 0x7d, 0x3b, 0x38, 0x96, 0xab, 0x47, - 0x04, 0x81, 0xe8, 0xc4, 0x87, 0x2a, 0x18, 0x37, 0x10, 0x37, 0xe2, 0x43, 0x85, 0x28, 0x10, 0xd8, - 0xc7, 0x85, 0xc8, 0xe7, 0x7c, 0x86, 0x5a, 0x66, 0x65, 0xee, 0x42, 0xcb, 0x89, 0x53, 0xff, 0xc0, - 0x71, 0x53, 0x65, 0xa0, 0xfa, 0x26, 0x71, 0x39, 0x24, 0x8f, 0xb2, 0x46, 0x65, 0xb7, 0xa0, 0xee, - 0x3a, 0xee, 0x11, 0x97, 0xe6, 0x69, 0x2d, 0x9b, 0xb3, 0x29, 0xc0, 0x84, 0x4f, 0x28, 0xec, 0x0a, - 0xb4, 0x93, 0x34, 0x8c, 0x86, 0x89, 0x7f, 0x18, 0x38, 0x23, 0x99, 0x18, 0x05, 0x01, 0xda, 0x43, - 0x88, 0x90, 0x50, 0xc2, 0xdd, 0x49, 0xec, 0xa7, 0x27, 0x68, 0x74, 0x9a, 0xb6, 0xee, 0x8b, 0x83, - 0xaf, 0x65, 0x31, 0xaf, 0xc5, 0xd0, 0xb2, 0xf9, 0x75, 0x85, 0xe5, 0x5f, 0x43, 0x37, 0x2f, 0xb2, - 0xb9, 0x66, 0xdf, 0x03, 0xc8, 0x84, 0x37, 0x97, 0x7a, 0xff, 0x69, 0x05, 0x96, 0x50, 0xfa, 0x89, - 0xcc, 0x6e, 0x1d, 0x72, 0xe5, 0x8a, 0xc8, 0x1e, 0x5b, 0x87, 0x25, 0x2c, 0x10, 0x2b, 0x53, 0x71, - 0x41, 0xef, 0x58, 0x22, 0x7f, 0xa4, 0x62, 0x10, 0xd6, 0x60, 0x0b, 0xda, 0x06, 0xb8, 0x84, 0x9b, - 0x2b, 0xf9, 0x70, 0xab, 0xa5, 0xe9, 0x99, 0x8c, 0xfd, 0x55, 0x15, 0x56, 0x11, 0xb8, 0x23, 0xe2, - 0xe2, 0x33, 0x5c, 0x8c, 0x49, 0xa2, 0xab, 0x24, 0xd8, 0x16, 0x1f, 0x9d, 0xf8, 0x9e, 0xf4, 0xd4, - 0x44, 0x53, 0x60, 0xa5, 0xce, 0xa1, 0x72, 0x93, 0xb0, 0xcd, 0x2c, 0xbd, 0xb2, 0x7a, 0x16, 0xf8, - 0x11, 0xef, 0x6a, 0x35, 0x18, 0x40, 0x39, 0x31, 0x5e, 0xeb, 0x1d, 0x5b, 0x34, 0xd9, 0x16, 0x74, - 0xa8, 0x80, 0x3e, 0xe6, 0xe9, 0x51, 0x48, 0x75, 0x86, 0x2e, 0xdd, 0x67, 0x53, 0x0c, 0x13, 0xe4, - 0x19, 0x22, 0xda, 0xed, 0xfd, 0xac, 0xc3, 0x2e, 0x42, 0x93, 0xff, 0xe8, 0x27, 0xe9, 0xd0, 0xa7, - 0x2c, 0x44, 0xcb, 0x6e, 0x60, 0x7f, 0xc7, 0xb3, 0x6e, 0x49, 0x01, 0x4a, 0xcc, 0x06, 0xd4, 0xf6, - 0x36, 0x9f, 0xf5, 0x16, 0x44, 0xc3, 0xde, 0xf8, 0x45, 0xaf, 0xc2, 0x5a, 0x50, 0xdf, 0xfe, 0x9d, - 0x9d, 0xbd, 0x97, 0xbd, 0xaa, 0xc5, 0xa1, 0xfd, 0x24, 0x0c, 0x75, 0x35, 0xe9, 0x0a, 0xb4, 0x9d, - 0x83, 0x94, 0xc7, 0xc3, 0x24, 0x75, 0xe2, 0x54, 0x6e, 0x24, 0x20, 0x68, 0x4f, 0x40, 0x04, 0xc2, - 0x3e, 0x3f, 0x08, 0x63, 0x3e, 0x14, 0xa7, 0x48, 0x56, 0x88, 0x80, 0x40, 0x7b, 0x69, 0x18, 0x65, - 0xae, 0x6f, 0xcd, 0x70, 0x7d, 0xad, 0x14, 0xd8, 0x13, 0x0c, 0x57, 0x37, 0x8f, 0xb8, 0xab, 0xbf, - 0x76, 0x09, 0x5a, 0xa9, 0x1b, 0x0d, 0xa3, 0x30, 0x4e, 0x95, 0xd2, 0x34, 0x53, 0x37, 0xda, 0x15, - 0x7d, 0x31, 0x78, 0x94, 0xa6, 0x34, 0xaa, 0x5c, 0x2d, 0x01, 0x10, 0xa3, 0xb8, 0x3f, 0xf1, 0x48, - 0xda, 0x47, 0xd1, 0x44, 0x97, 0x2a, 0xf4, 0x28, 0x07, 0x54, 0xb7, 0xb1, 0x6d, 0xfd, 0x71, 0x05, - 0xe0, 0x69, 0x78, 0x68, 0x6c, 0x7e, 0x7a, 0x12, 0xe9, 0xcd, 0x17, 0x6d, 0x76, 0x07, 0x96, 0xdc, - 0x30, 0x38, 0xf0, 0x0f, 0xa5, 0x72, 0x62, 0xea, 0x25, 0x9b, 0x23, 0x82, 0x89, 0x03, 0xff, 0x50, - 0x2a, 0x28, 0x61, 0x8a, 0x63, 0x6a, 0x80, 0xe7, 0x3a, 0x2e, 0x7f, 0x53, 0x83, 0xd5, 0x6d, 0x1d, - 0x6e, 0x9d, 0xa6, 0x95, 0x7d, 0x68, 0x48, 0x5b, 0xad, 0x32, 0x61, 0xb2, 0x5b, 0xc8, 0x40, 0xd5, - 0xa6, 0x32, 0x50, 0xd3, 0xb7, 0xc4, 0x55, 0xa8, 0x8d, 0xc2, 0x43, 0xa9, 0xa4, 0xdd, 0xfc, 0x0a, - 0x6d, 0x31, 0x84, 0xd7, 0xa8, 0x4c, 0x41, 0xd1, 0x45, 0xa1, 0xd3, 0x4c, 0xf7, 0xa0, 0x4d, 0x89, - 0x06, 0x57, 0xec, 0x1c, 0x2a, 0xab, 0x3c, 0xc2, 0xd3, 0x1b, 0x6a, 0x9b, 0xa8, 0xec, 0x3a, 0x2c, - 0x1e, 0x85, 0xe1, 0x0f, 0xa8, 0x9d, 0xed, 0x3b, 0x2b, 0x38, 0x25, 0x53, 0x35, 0x1b, 0x07, 0xd9, - 0xfb, 0xd0, 0x8d, 0x39, 0x2a, 0xdb, 0x30, 0x0a, 0x47, 0xbe, 0x4b, 0x3e, 0x6c, 0xcb, 0x5e, 0x96, - 0xd0, 0x5d, 0x04, 0xb2, 0xaf, 0xa1, 0x91, 0x9c, 0x24, 0x6e, 0xaa, 0x7d, 0x59, 0x74, 0x2e, 0xa7, - 0x24, 0xb9, 0xbe, 0x47, 0x48, 0x32, 0x55, 0x26, 0xa7, 0x0c, 0xbe, 0x82, 0x8e, 0x39, 0x30, 0xd7, - 0x8e, 0xfd, 0x75, 0x0b, 0x96, 0xb7, 0x78, 0x34, 0x0a, 0x4f, 0x4e, 0xdb, 0xad, 0xcf, 0xa7, 0xe2, - 0x6a, 0x79, 0xff, 0x4d, 0xb1, 0x98, 0x0b, 0xb7, 0x67, 0x47, 0x0c, 0xa6, 0xef, 0xb5, 0x58, 0xf0, - 0xbd, 0x74, 0xe6, 0xaf, 0x6e, 0x66, 0xfe, 0xde, 0x05, 0xe0, 0x3f, 0xa6, 0xb1, 0x33, 0xc4, 0xdb, - 0x9a, 0xc2, 0x88, 0x16, 0x42, 0xc4, 0x65, 0x24, 0x8e, 0x93, 0x1b, 0x4d, 0x86, 0x94, 0xe9, 0xa4, - 0xfa, 0x72, 0xd3, 0x8d, 0x26, 0x3f, 0x2f, 0x24, 0x3b, 0x9b, 0xb9, 0x08, 0x62, 0x0d, 0xea, 0x6e, - 0x38, 0x09, 0x52, 0xdc, 0x94, 0xba, 0x4d, 0x1d, 0x21, 0x3e, 0x1e, 0x1c, 0xe3, 0x46, 0xb4, 0x6c, - 0xd1, 0x44, 0x95, 0x0b, 0x12, 0xbc, 0x91, 0x85, 0xca, 0x91, 0x21, 0x21, 0x6e, 0x8e, 0xc2, 0x24, - 0x4d, 0x30, 0x22, 0x68, 0xd9, 0xc4, 0xe0, 0x13, 0x01, 0x31, 0x23, 0xcf, 0xe5, 0x7c, 0xe4, 0x79, - 0xdf, 0xc8, 0x67, 0x91, 0xaf, 0x7f, 0x45, 0x48, 0x32, 0xb7, 0x09, 0x33, 0xb3, 0x59, 0x57, 0xa1, - 0x2d, 0xdb, 0x63, 0x61, 0x0d, 0x56, 0x50, 0x0c, 0x26, 0x48, 0x9b, 0xfb, 0x9e, 0x61, 0xee, 0xd7, - 0xa0, 0xee, 0xf1, 0xfd, 0xc9, 0x21, 0x96, 0x1f, 0x9b, 0x36, 0x75, 0x84, 0x73, 0x15, 0x46, 0x3c, - 0xd8, 0x4b, 0x3d, 0x3f, 0xe8, 0x33, 0x72, 0xae, 0x34, 0x80, 0x7d, 0xae, 0xdd, 0x9d, 0x73, 0x59, - 0x0e, 0x34, 0xcf, 0x64, 0x99, 0xdb, 0xb3, 0x01, 0x20, 0x36, 0x52, 0x4e, 0x5d, 0xcb, 0x62, 0x99, - 0xc2, 0xfa, 0x34, 0x8e, 0x0a, 0x94, 0x34, 0x80, 0x8a, 0x39, 0x02, 0x59, 0xdd, 0x20, 0xe7, 0x71, - 0x29, 0x1d, 0x02, 0x4a, 0xab, 0xff, 0x09, 0x2c, 0x7a, 0x4e, 0xea, 0xf4, 0x2f, 0xe0, 0x17, 0x2e, - 0x4d, 0x7f, 0x61, 0xcb, 0x49, 0x55, 0x0c, 0x27, 0x10, 0x85, 0xfe, 0x24, 0xe1, 0x41, 0x2a, 0x63, - 0xf8, 0x77, 0xa4, 0x2f, 0x19, 0x1e, 0xa4, 0x18, 0xad, 0x8b, 0x0d, 0xc5, 0xd2, 0x99, 0x1c, 0xef, - 0xa3, 0x42, 0x20, 0x57, 0x09, 0x21, 0xc8, 0x82, 0xfb, 0xbe, 0x1f, 0x78, 0xfd, 0x8b, 0x94, 0xa1, - 0x74, 0xa3, 0xc9, 0x43, 0x3f, 0xf0, 0xb0, 0xd6, 0x7d, 0x18, 0x88, 0x4b, 0x03, 0x0d, 0xc2, 0x80, - 0x4c, 0x16, 0x81, 0x84, 0x49, 0x60, 0xd7, 0xa0, 0x43, 0xd7, 0x8e, 0x1b, 0x73, 0x27, 0xe5, 0xfd, - 0x4b, 0xa8, 0x11, 0x74, 0x15, 0x6d, 0x22, 0x48, 0x90, 0x8f, 0x9d, 0x57, 0xa4, 0xdc, 0x97, 0xf1, - 0x32, 0x6d, 0xc4, 0xce, 0x2b, 0x54, 0x6d, 0x23, 0x70, 0x7c, 0x37, 0x17, 0x38, 0xbe, 0x55, 0xae, - 0xf2, 0x6d, 0xbc, 0x31, 0x11, 0xfa, 0xe5, 0x37, 0x70, 0x5e, 0x07, 0x52, 0xef, 0xce, 0x59, 0x13, - 0x3b, 0xa6, 0xb1, 0xfa, 0xf7, 0x2a, 0x74, 0x6d, 0x1e, 0x8d, 0x1c, 0x57, 0x7b, 0x3c, 0x9f, 0x40, - 0xcb, 0x53, 0xfb, 0x8e, 0x44, 0xe4, 0x93, 0x89, 0x9c, 0x32, 0xd8, 0x19, 0x0e, 0xfb, 0x00, 0xba, - 0xf2, 0xb8, 0xf8, 0xc1, 0x11, 0x8f, 0xfd, 0x54, 0x86, 0x50, 0x05, 0x28, 0xdb, 0x81, 0xe5, 0x03, - 0x7f, 0x24, 0x36, 0x2d, 0x17, 0x54, 0xe1, 0xe3, 0xa8, 0x3c, 0x0f, 0xeb, 0x8f, 0x10, 0xcf, 0x3c, - 0x0d, 0x9d, 0x03, 0x03, 0xc4, 0x6e, 0x8b, 0xbb, 0x3b, 0x3a, 0x91, 0x79, 0xc5, 0xcb, 0x25, 0x14, - 0x36, 0xc3, 0x48, 0x66, 0x0c, 0x10, 0x53, 0xe5, 0xbc, 0xea, 0x3a, 0xe7, 0x35, 0xf8, 0x16, 0x56, - 0xa7, 0x3e, 0x33, 0xaf, 0xd0, 0xf5, 0x57, 0xe6, 0xba, 0x21, 0x26, 0xb0, 0x8a, 0xce, 0x73, 0xce, - 0xd1, 0x9c, 0x1d, 0x97, 0x9a, 0x96, 0xbd, 0x3a, 0x5d, 0x20, 0x46, 0x63, 0x4e, 0xc2, 0x6c, 0xd9, - 0xb2, 0xa7, 0x33, 0x87, 0x8b, 0x46, 0xe6, 0xf0, 0x8f, 0x2a, 0xc0, 0x28, 0xc4, 0xff, 0xf5, 0x7e, - 0x58, 0x48, 0x22, 0x8a, 0x27, 0x81, 0x8a, 0x37, 0xa9, 0x63, 0x5d, 0x23, 0xf1, 0xed, 0x3a, 0xe9, - 0x11, 0xe6, 0x3f, 0x23, 0xd1, 0x90, 0x4e, 0x1d, 0x75, 0xac, 0x3f, 0xa9, 0x08, 0xc7, 0x29, 0xd2, - 0x17, 0xe9, 0x5d, 0x68, 0xa4, 0x4e, 0x7c, 0xc8, 0x53, 0x95, 0xbe, 0xbd, 0x4c, 0xe9, 0x5b, 0x8d, - 0xb1, 0xfe, 0x92, 0x86, 0xe5, 0x75, 0x2e, 0x91, 0x07, 0x3b, 0xd0, 0x31, 0x07, 0x4a, 0x36, 0xeb, - 0x7a, 0x3e, 0x42, 0x58, 0x56, 0x74, 0x91, 0x3b, 0x73, 0xef, 0x7e, 0x59, 0x81, 0xf6, 0x1e, 0x0f, - 0xbc, 0xd9, 0xb9, 0xd4, 0x8f, 0xa5, 0x1d, 0xad, 0x66, 0xd5, 0x3c, 0x63, 0x42, 0xd1, 0x8a, 0xbe, - 0xf9, 0xd1, 0xbd, 0x0f, 0xed, 0xed, 0x38, 0x0e, 0x63, 0x7a, 0x5d, 0xa7, 0xdd, 0xd9, 0x0a, 0x1a, - 0x34, 0x6c, 0x8b, 0xad, 0x1d, 0x53, 0x95, 0x43, 0xb9, 0x84, 0xb2, 0x6b, 0xfd, 0x43, 0xc5, 0x0c, - 0x76, 0x66, 0x95, 0x42, 0xf2, 0xcf, 0x0f, 0x5a, 0xba, 0x90, 0x31, 0x80, 0x66, 0x14, 0x87, 0x87, - 0x31, 0x4f, 0x12, 0x95, 0xf4, 0x57, 0xfd, 0xd9, 0x45, 0x8e, 0x04, 0x33, 0xfd, 0xea, 0x01, 0x2f, - 0xf5, 0xd8, 0x1d, 0xe8, 0x20, 0xc2, 0x90, 0xde, 0xc0, 0xa1, 0x17, 0x22, 0x5d, 0x3f, 0x63, 0x71, - 0x76, 0x9b, 0x67, 0x1d, 0x2b, 0x81, 0x25, 0x59, 0x78, 0x5f, 0xd7, 0xaf, 0x75, 0x2a, 0x59, 0xa0, - 0x48, 0x63, 0x65, 0xef, 0x75, 0xde, 0xe6, 0xa1, 0xc8, 0x1f, 0xd6, 0xe1, 0x02, 0x5d, 0x2c, 0x3a, - 0xe7, 0xae, 0xa4, 0xf6, 0x66, 0x07, 0x88, 0x64, 0x5d, 0xd3, 0xb2, 0x2e, 0x2b, 0x49, 0x6b, 0x59, - 0xd6, 0x4d, 0x59, 0xe2, 0x7b, 0x3b, 0xd7, 0x15, 0xc2, 0x5f, 0xa2, 0x6b, 0x53, 0x76, 0xd9, 0xe7, - 0x2a, 0xff, 0xab, 0xdf, 0x31, 0x94, 0xb3, 0x3c, 0xab, 0x9e, 0xdd, 0x2c, 0xaf, 0x67, 0xe7, 0x93, - 0xc4, 0x1b, 0xc5, 0xe2, 0xf3, 0x8d, 0x53, 0x3e, 0x54, 0x5e, 0x89, 0x66, 0xd2, 0xd1, 0x6f, 0xa3, - 0x4e, 0x93, 0x5f, 0x3f, 0xbb, 0x0e, 0xfd, 0xb3, 0x7c, 0x01, 0x99, 0x1e, 0xa6, 0xdd, 0x3a, 0xe5, - 0xa3, 0xbf, 0x8a, 0x6a, 0xf2, 0xff, 0x93, 0x92, 0xf0, 0x9f, 0x55, 0xe0, 0x1d, 0x79, 0xd3, 0x4d, - 0xe9, 0xa1, 0x88, 0x4c, 0xc9, 0x1b, 0xa2, 0x5b, 0x7b, 0x30, 0x5b, 0x44, 0xb6, 0xc4, 0x14, 0x73, - 0x62, 0xbc, 0x12, 0xe4, 0x67, 0x07, 0x74, 0x95, 0xe6, 0xaa, 0x56, 0x7a, 0x0e, 0x61, 0x66, 0x5a, - 0x59, 0x33, 0xb4, 0xd2, 0x3a, 0x31, 0x2f, 0x35, 0xc5, 0x92, 0x0e, 0x3c, 0x2a, 0xc5, 0x27, 0x07, - 0x52, 0x81, 0xab, 0x79, 0x05, 0x3e, 0xad, 0x9a, 0x68, 0x18, 0xb3, 0xc5, 0xbc, 0x31, 0xfb, 0xbd, - 0xdc, 0xbd, 0xf6, 0x16, 0xdf, 0x96, 0x04, 0xd5, 0x9d, 0xa6, 0xfb, 0xd6, 0xf7, 0x53, 0xa5, 0xbc, - 0x59, 0x26, 0x73, 0x36, 0x7d, 0xa5, 0xf4, 0xb4, 0x2e, 0x6c, 0x5b, 0x0f, 0x4b, 0x8b, 0x79, 0xb3, - 0x68, 0x6b, 0xc1, 0x57, 0x4d, 0xc1, 0x3f, 0x10, 0xbc, 0x61, 0x7d, 0x4f, 0x3d, 0x71, 0x9e, 0x6f, - 0xfe, 0x2f, 0xe5, 0x25, 0x3b, 0xef, 0x25, 0xa0, 0x0c, 0x56, 0x2d, 0x9f, 0x19, 0x13, 0x37, 0xb7, - 0x32, 0x62, 0xa2, 0x3d, 0xc3, 0x88, 0x31, 0x79, 0x4b, 0x52, 0x9a, 0x0b, 0xdb, 0xd6, 0x63, 0xba, - 0x5a, 0x67, 0x31, 0xa2, 0x88, 0x57, 0xcb, 0x88, 0xe7, 0x74, 0xf1, 0x05, 0x5c, 0xd8, 0x48, 0x53, - 0xc7, 0x3d, 0x9a, 0x12, 0xe9, 0x35, 0xe8, 0xe8, 0x12, 0xef, 0x50, 0x53, 0x6f, 0x6b, 0xd8, 0x8e, - 0xa7, 0x39, 0xab, 0x1a, 0x9c, 0xfd, 0x45, 0x05, 0x56, 0xed, 0x49, 0xb0, 0x11, 0x78, 0xbf, 0x70, - 0x7c, 0x9d, 0x85, 0xb9, 0x07, 0x5d, 0x19, 0x56, 0x85, 0x04, 0x99, 0xed, 0x2e, 0x2f, 0x7b, 0xb9, - 0x8c, 0x40, 0x0f, 0x6a, 0xee, 0xd8, 0x93, 0x9f, 0x10, 0x4d, 0xb1, 0x10, 0x27, 0x39, 0x09, 0x5c, - 0x95, 0x05, 0xc3, 0x8e, 0x08, 0xdc, 0xb0, 0x31, 0x4c, 0xfd, 0x31, 0x0f, 0x27, 0xa9, 0x74, 0xab, - 0x3a, 0x08, 0x7c, 0x49, 0x30, 0xeb, 0x3b, 0x78, 0x47, 0xac, 0x33, 0x0e, 0x47, 0xaf, 0x51, 0x68, - 0x56, 0x29, 0xad, 0xaa, 0x91, 0xd2, 0x2a, 0xcf, 0xc0, 0xed, 0x4d, 0x93, 0x9d, 0x4b, 0xb1, 0x72, - 0x0a, 0x2f, 0xad, 0xbc, 0xb5, 0x0f, 0xbd, 0xa7, 0xe1, 0x61, 0xfe, 0xf1, 0x41, 0xc9, 0x3e, 0xa3, - 0x2f, 0xa0, 0x58, 0x14, 0xde, 0xcd, 0x1a, 0xd4, 0x13, 0x3f, 0x70, 0x95, 0xb6, 0x51, 0x47, 0x40, - 0x27, 0x41, 0xea, 0x8f, 0x94, 0xaf, 0x81, 0x1d, 0xeb, 0xa9, 0xf1, 0x8d, 0xb9, 0x39, 0xc6, 0xad, - 0xaf, 0x19, 0x5b, 0xff, 0x8f, 0x15, 0x78, 0x67, 0xfb, 0x47, 0xee, 0x4e, 0x4a, 0xaa, 0xed, 0xaf, - 0xa1, 0x4d, 0x66, 0x45, 0xa5, 0x5a, 0xa8, 0xa8, 0x30, 0x59, 0x51, 0x21, 0x6b, 0x43, 0xc5, 0x93, - 0x3e, 0x34, 0x44, 0xcc, 0x94, 0xe5, 0xe3, 0x54, 0x57, 0x84, 0xdb, 0x61, 0xc4, 0x83, 0x61, 0x82, - 0xd9, 0x85, 0x7a, 0x31, 0xbb, 0x20, 0xc2, 0x5d, 0x1e, 0x8d, 0x86, 0x42, 0xaf, 0x96, 0x64, 0xb8, - 0xcb, 0xa3, 0xd1, 0xe6, 0xd8, 0xbb, 0x75, 0x0b, 0x20, 0xab, 0xc2, 0xb3, 0x26, 0x2c, 0xfe, 0x6c, - 0x7b, 0x7b, 0xb7, 0xb7, 0x20, 0x5a, 0x0f, 0x77, 0x9e, 0x6f, 0xf5, 0x2a, 0xa2, 0xf5, 0xc8, 0xde, - 0xde, 0xee, 0x55, 0x6f, 0x7d, 0x0a, 0xdd, 0x7c, 0x09, 0x9e, 0xb5, 0xa1, 0xb1, 0xf3, 0xfc, 0xc9, - 0xb6, 0xbd, 0xf3, 0x92, 0xa6, 0xec, 0xbd, 0x78, 0xf4, 0x92, 0xa6, 0x3c, 0xd9, 0xb0, 0xb7, 0x7a, - 0xd5, 0x3b, 0xff, 0xbd, 0x02, 0x8d, 0xcd, 0x30, 0xe6, 0xf6, 0xee, 0x26, 0xbb, 0x06, 0x8b, 0xf8, - 0x3f, 0x31, 0x4c, 0xb1, 0xe3, 0xff, 0xc7, 0x06, 0x1d, 0xf2, 0xa5, 0xe9, 0x0f, 0x64, 0xd6, 0x02, - 0xbb, 0x0b, 0x1d, 0xe3, 0x5f, 0x09, 0x09, 0xbb, 0xa0, 0x8b, 0x6a, 0xb9, 0xff, 0x29, 0xd0, 0x3c, - 0x85, 0x65, 0x2d, 0xb0, 0x0f, 0x60, 0x89, 0xaa, 0xff, 0x6c, 0x55, 0x56, 0x72, 0xb3, 0x42, 0xfd, - 0x40, 0xfd, 0x87, 0xc9, 0x5a, 0x60, 0xeb, 0xd0, 0xd2, 0xc5, 0x7e, 0xb6, 0x96, 0xdd, 0x67, 0x06, - 0x76, 0xc6, 0x1d, 0xd1, 0xa5, 0xa2, 0x3f, 0xd1, 0xcd, 0x3d, 0x00, 0x30, 0xe9, 0x5e, 0x83, 0xa6, - 0xe0, 0x12, 0xff, 0x40, 0x65, 0x2c, 0xaf, 0x29, 0x31, 0x12, 0x5c, 0x5a, 0x97, 0xa6, 0xeb, 0x3f, - 0x9b, 0x94, 0x90, 0x5c, 0x29, 0xfc, 0x19, 0xc8, 0x5a, 0x60, 0x1f, 0x42, 0x43, 0x16, 0xa6, 0x19, - 0x9b, 0xae, 0x52, 0x0f, 0xf4, 0x63, 0x64, 0x6b, 0x81, 0xdd, 0x06, 0xc8, 0xca, 0xb4, 0xec, 0x7c, - 0xb6, 0x3c, 0x73, 0x42, 0x6e, 0x7d, 0x9f, 0x92, 0xbc, 0x77, 0x43, 0x8f, 0x5e, 0x3a, 0xaf, 0x95, - 0x15, 0x31, 0x69, 0x0a, 0x42, 0x88, 0x1f, 0x59, 0x99, 0x25, 0x7e, 0xf2, 0x65, 0xda, 0x1c, 0x3f, - 0x1f, 0x42, 0x63, 0xcf, 0x44, 0xdd, 0x9b, 0x8d, 0xfa, 0x25, 0xac, 0x48, 0x42, 0xd9, 0x7f, 0x71, - 0x4a, 0xa8, 0xf7, 0xf4, 0xd3, 0xeb, 0x4c, 0x40, 0xb7, 0xa1, 0xf3, 0xd8, 0x78, 0x0b, 0xc5, 0x56, - 0x72, 0xcf, 0x76, 0x76, 0xb6, 0x06, 0xf9, 0x77, 0x3c, 0xd6, 0x02, 0xfb, 0x0c, 0x9f, 0x72, 0x18, - 0xaf, 0x7f, 0x7a, 0x85, 0x29, 0xc9, 0xa0, 0x9b, 0x83, 0x88, 0x75, 0x3f, 0x80, 0x6e, 0xfe, 0xcf, - 0x7c, 0xec, 0xe2, 0xcc, 0x3f, 0xf8, 0x4d, 0x7d, 0xf2, 0x76, 0x85, 0x7d, 0x25, 0xff, 0x70, 0x13, - 0x7a, 0xdc, 0xa0, 0x51, 0xb6, 0xc8, 0xe9, 0x6f, 0x7f, 0x0b, 0xe7, 0x1e, 0x4f, 0x3f, 0xf7, 0x2a, - 0x61, 0x7b, 0x2d, 0x3f, 0x95, 0xf0, 0xac, 0x05, 0xf6, 0x0c, 0xce, 0x95, 0xbc, 0x17, 0x63, 0xea, - 0x31, 0xf4, 0x8c, 0x87, 0x64, 0x33, 0xc9, 0x0d, 0xe1, 0x7c, 0xe9, 0x53, 0x2d, 0x76, 0xf5, 0xac, - 0x57, 0x5c, 0x83, 0xd9, 0x18, 0xd2, 0x1c, 0xa3, 0xb0, 0x3e, 0x82, 0x45, 0xe1, 0x76, 0xa8, 0xbd, - 0xd4, 0x31, 0xfc, 0x40, 0x03, 0x0a, 0xd8, 0xc2, 0x37, 0x20, 0x6c, 0x23, 0x9e, 0x1e, 0x68, 0x80, - 0x89, 0xfd, 0x00, 0x20, 0x8b, 0x6e, 0xd9, 0xf9, 0xd2, 0x4a, 0xd9, 0xa0, 0x00, 0x2e, 0xcc, 0xcf, - 0x9c, 0x59, 0x9a, 0x3f, 0x95, 0xb1, 0x19, 0x14, 0xc0, 0xe6, 0xfc, 0x0d, 0x68, 0x1b, 0x1e, 0x29, - 0x99, 0xb8, 0xe9, 0xd4, 0xcb, 0xa0, 0x08, 0x37, 0x49, 0x6c, 0xc1, 0x4a, 0xc1, 0x77, 0x67, 0xd3, - 0x7e, 0xc5, 0xe0, 0x14, 0x1f, 0x1f, 0xa9, 0x3c, 0x86, 0x5e, 0x31, 0x5c, 0x20, 0x7d, 0xcc, 0xa7, - 0xcb, 0x06, 0x97, 0x0c, 0x58, 0x29, 0xa1, 0x67, 0xb0, 0x52, 0xf0, 0x80, 0x59, 0x59, 0xac, 0x90, - 0xe3, 0xab, 0xdc, 0x65, 0x46, 0x72, 0xbf, 0x0b, 0xe7, 0x4a, 0x1c, 0x5f, 0x52, 0xd6, 0xd9, 0xcf, - 0xdb, 0x06, 0xb3, 0xc6, 0x4d, 0xd2, 0xbb, 0xf4, 0x62, 0xd4, 0xf4, 0x5b, 0xd8, 0x25, 0xa5, 0x91, - 0x25, 0x4e, 0xd2, 0xa0, 0x74, 0xd0, 0xa4, 0xf8, 0x73, 0xe8, 0x15, 0x3d, 0x00, 0xa2, 0x38, 0xc3, - 0x2f, 0xa0, 0xd5, 0x97, 0x7b, 0xa0, 0xd6, 0xc2, 0xcd, 0xca, 0xed, 0x0a, 0xdb, 0x16, 0xe2, 0xcc, - 0x39, 0xed, 0x6a, 0x5b, 0xcc, 0x97, 0x7a, 0x4a, 0x8c, 0x65, 0xde, 0x3d, 0x72, 0x76, 0x1f, 0x5a, - 0xda, 0xd5, 0x91, 0x86, 0xbd, 0xe0, 0x5d, 0x0d, 0xf2, 0x50, 0x73, 0xf2, 0x36, 0x40, 0xe6, 0xd3, - 0xca, 0xab, 0xa4, 0xe8, 0xe3, 0x9e, 0xbd, 0x94, 0xfd, 0x25, 0xfc, 0xcf, 0xf8, 0x67, 0xff, 0x1b, - 0x00, 0x00, 0xff, 0xff, 0x16, 0x4c, 0x6d, 0x4a, 0x41, 0x3e, 0x00, 0x00, + // 4466 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x3b, 0x4d, 0x8f, 0x1b, 0x47, + 0x76, 0x43, 0x72, 0x38, 0x24, 0x1f, 0x39, 0x1c, 0x4e, 0x69, 0x24, 0x51, 0x94, 0x6c, 0x49, 0xad, + 0xd8, 0xd2, 0x7a, 0xad, 0xb1, 0x56, 0x8e, 0x65, 0xd9, 0xb2, 0xe5, 0x1d, 0xcd, 0x8c, 0xe5, 0xc1, + 0x4a, 0xf6, 0x6c, 0x8f, 0xec, 0x4d, 0x4e, 0x4c, 0x4f, 0x77, 0x0d, 0xa7, 0x61, 0xb2, 0xbb, 0xd3, + 0xdd, 0x1c, 0x79, 0x8e, 0x01, 0x02, 0xec, 0x25, 0x40, 0x72, 0x4a, 0x90, 0x5c, 0x72, 0xc9, 0x29, + 0x97, 0x04, 0x08, 0x10, 0x20, 0x40, 0x0e, 0xf9, 0x01, 0x39, 0xe6, 0x98, 0x5f, 0x90, 0x63, 0x80, + 0x20, 0x39, 0x24, 0x40, 0x50, 0xef, 0x55, 0x55, 0x57, 0x37, 0x9b, 0x33, 0xa2, 0x94, 0xdd, 0xcd, + 0x89, 0x55, 0xaf, 0x5e, 0xbd, 0x7e, 0xf5, 0xea, 0xd5, 0xab, 0xf7, 0x51, 0x04, 0x70, 0xc3, 0x98, + 0x6f, 0x46, 0x71, 0x98, 0x86, 0xac, 0x1a, 0x1d, 0x5a, 0x0d, 0xa8, 0xef, 0x4e, 0xa2, 0xf4, 0xd4, + 0xfa, 0xf3, 0x0a, 0x34, 0xb7, 0xc3, 0x98, 0xef, 0x05, 0x47, 0x21, 0xeb, 0x43, 0xe3, 0x84, 0xc7, + 0x89, 0x1f, 0x06, 0xfd, 0xca, 0x8d, 0xca, 0x9d, 0x96, 0xad, 0xba, 0x62, 0x24, 0xe6, 0x27, 0x7e, + 0x12, 0x06, 0xfd, 0x2a, 0x8d, 0xc8, 0x2e, 0xbb, 0x02, 0xcd, 0xc3, 0xa9, 0x3f, 0xf6, 0x86, 0x4e, + 0xda, 0xaf, 0xd1, 0x10, 0xf6, 0xb7, 0x52, 0xf6, 0x0e, 0x74, 0x47, 0xe1, 0xd8, 0x09, 0x46, 0x43, + 0x45, 0x75, 0x19, 0x11, 0x56, 0x09, 0xfa, 0x9d, 0xa4, 0x7d, 0x19, 0x1a, 0x61, 0x32, 0x74, 0x62, + 0xf7, 0xb8, 0x5f, 0xc7, 0xf1, 0x95, 0x30, 0xd9, 0x8a, 0xdd, 0x63, 0xeb, 0x7f, 0x2a, 0x70, 0xf1, + 0x99, 0x9f, 0xa4, 0xdb, 0x61, 0x90, 0x3a, 0x7e, 0xc0, 0xe3, 0xe4, 0x9b, 0x28, 0xf5, 0xc3, 0x20, + 0x11, 0xec, 0x38, 0x51, 0x14, 0x38, 0x13, 0xae, 0x18, 0x95, 0x5d, 0xf6, 0x36, 0x00, 0x0f, 0xd2, + 0xf8, 0x34, 0x0a, 0xfd, 0x20, 0x95, 0xbc, 0x1a, 0x10, 0x36, 0x80, 0x66, 0x10, 0x7a, 0x1c, 0xa7, + 0x12, 0xbb, 0xba, 0xcf, 0x3e, 0x87, 0x95, 0xb1, 0x73, 0xc8, 0xc7, 0x49, 0x7f, 0xf9, 0x46, 0xed, + 0x4e, 0xfb, 0xfe, 0x3b, 0x9b, 0xd1, 0xe1, 0x66, 0x29, 0x03, 0x9b, 0xcf, 0x10, 0x6f, 0x57, 0xd0, + 0xb5, 0xe5, 0x24, 0xb6, 0x01, 0xf5, 0xb1, 0x3f, 0xf1, 0x53, 0x5c, 0x45, 0xcd, 0xa6, 0xce, 0xe0, + 0x13, 0x68, 0x1b, 0xc8, 0xac, 0x07, 0xb5, 0xef, 0xf9, 0xa9, 0xe4, 0x5a, 0x34, 0xc5, 0xb4, 0x13, + 0x67, 0x3c, 0xe5, 0x92, 0x59, 0xea, 0x7c, 0x5a, 0x7d, 0x58, 0xb1, 0xee, 0x42, 0x6d, 0x3f, 0xf4, + 0x18, 0x83, 0x65, 0x63, 0xa5, 0xd8, 0x16, 0x30, 0x8f, 0x27, 0xae, 0x9c, 0x83, 0x6d, 0xeb, 0x16, + 0x2c, 0xef, 0x87, 0x5e, 0xc2, 0xae, 0xc2, 0x72, 0x14, 0x7a, 0x49, 0xbf, 0x82, 0x8b, 0x68, 0x88, + 0x45, 0xec, 0x87, 0x9e, 0x8d, 0x40, 0xeb, 0x9f, 0xeb, 0xd0, 0x16, 0x3d, 0x9e, 0x84, 0xd3, 0xd8, + 0xe5, 0xa5, 0xc4, 0xb7, 0xa1, 0xe3, 0x46, 0xd3, 0x61, 0xc4, 0x63, 0x97, 0x07, 0x69, 0xd2, 0xaf, + 0x22, 0xa1, 0x1b, 0x8a, 0x90, 0x9c, 0xba, 0xb9, 0x1d, 0x4d, 0xf7, 0x25, 0x0a, 0x09, 0xa2, 0xed, + 0x66, 0x10, 0xf6, 0x0c, 0xd6, 0x26, 0x7c, 0x12, 0xc6, 0xa7, 0x19, 0x9d, 0x1a, 0xd2, 0xb9, 0x55, + 0xa4, 0xf3, 0x1c, 0xd1, 0xf2, 0xa4, 0xba, 0x93, 0x1c, 0x90, 0x7d, 0x05, 0xab, 0x27, 0x3c, 0xf6, + 0x8f, 0x7c, 0xd7, 0xc1, 0x0d, 0x90, 0x3b, 0x64, 0x15, 0x69, 0x7d, 0x67, 0x22, 0x11, 0xa9, 0xfc, + 0x44, 0xf6, 0x00, 0x1a, 0x1e, 0x4f, 0x1d, 0x7f, 0x9c, 0xf4, 0xeb, 0x48, 0xe3, 0x5a, 0x91, 0xc6, + 0x0e, 0x0d, 0xd3, 0x6c, 0x85, 0xcc, 0xbe, 0x81, 0x5e, 0x92, 0x86, 0xb1, 0x33, 0xe2, 0xd9, 0x82, + 0x56, 0x90, 0xc0, 0x6f, 0x15, 0x09, 0x1c, 0x10, 0x5e, 0x7e, 0x45, 0x6b, 0x49, 0x1e, 0x3a, 0x78, + 0x0c, 0xbd, 0xa2, 0x04, 0xcf, 0xd3, 0x8e, 0x8a, 0xa1, 0x1d, 0x83, 0x2d, 0xb8, 0x50, 0x22, 0xb9, + 0x85, 0x48, 0xfc, 0x14, 0xd8, 0xac, 0xc0, 0xce, 0xa3, 0xd0, 0x34, 0x29, 0x7c, 0x0a, 0x1d, 0x53, + 0x5c, 0x8b, 0xa8, 0xf7, 0xe0, 0x09, 0x6c, 0x94, 0x49, 0x6a, 0x91, 0x15, 0x58, 0xff, 0x55, 0x81, + 0xce, 0xd7, 0xa1, 0xc7, 0xcf, 0xd4, 0xe7, 0xeb, 0xd0, 0x36, 0xf4, 0x59, 0x12, 0x81, 0x4c, 0x59, + 0x85, 0xa1, 0xca, 0xeb, 0x2a, 0x9a, 0x86, 0x8a, 0xbd, 0x9a, 0xd3, 0x42, 0x66, 0x41, 0xc7, 0xd4, + 0x25, 0xb4, 0x66, 0x4d, 0x3b, 0x07, 0x13, 0x96, 0xc9, 0x54, 0xaf, 0x56, 0xa6, 0x40, 0xb7, 0x61, + 0xad, 0xa0, 0x40, 0xfd, 0x15, 0xfc, 0x4a, 0x37, 0xaf, 0x19, 0x82, 0x9b, 0x93, 0x70, 0x3c, 0x9d, + 0x64, 0x78, 0x0d, 0xe2, 0x86, 0xa0, 0x12, 0xcd, 0xfa, 0x12, 0x98, 0xb0, 0x4d, 0x5f, 0xf3, 0xf4, + 0x65, 0x18, 0x7f, 0x6f, 0x58, 0xc6, 0x28, 0xf4, 0x4c, 0xcb, 0x28, 0xbb, 0xec, 0x12, 0xac, 0x78, + 0xb1, 0x7f, 0xc2, 0x63, 0xb9, 0x13, 0xb2, 0x67, 0x7d, 0x0c, 0x0d, 0x49, 0xa3, 0x54, 0x78, 0x7d, + 0x68, 0x24, 0xd3, 0xc3, 0x80, 0x4b, 0x3b, 0xd0, 0xb2, 0x55, 0xd7, 0xfa, 0x10, 0x9a, 0x72, 0xa2, + 0x58, 0x5c, 0x33, 0x90, 0x6d, 0x69, 0x77, 0xda, 0xe2, 0x54, 0xc8, 0x71, 0x5b, 0x0f, 0x5a, 0xff, + 0xd6, 0x84, 0x65, 0xb1, 0x61, 0xa5, 0xdf, 0x1a, 0x40, 0x93, 0x07, 0x9e, 0x69, 0xba, 0x75, 0xdf, + 0x5c, 0x58, 0x2d, 0xbf, 0xb0, 0x5b, 0x50, 0x73, 0xa3, 0xa9, 0xb4, 0x08, 0xeb, 0xf8, 0xd9, 0xd0, + 0x43, 0xf3, 0x44, 0x27, 0x4f, 0x8c, 0x8a, 0x6b, 0x4a, 0xe8, 0xc0, 0x34, 0xe1, 0x1e, 0xda, 0xe7, + 0x8a, 0xdd, 0x70, 0xa3, 0xe9, 0xb7, 0x09, 0xf7, 0x84, 0x60, 0x68, 0x9f, 0x71, 0x3f, 0x6a, 0xb6, + 0xec, 0x09, 0xb5, 0x91, 0x5a, 0x81, 0xb3, 0x1a, 0x38, 0x08, 0x04, 0xc2, 0x89, 0xd7, 0xa0, 0xe5, + 0x9c, 0x38, 0xfe, 0xd8, 0x39, 0x1c, 0xf3, 0x7e, 0x13, 0x95, 0x21, 0x03, 0xb0, 0xf7, 0xf5, 0x6d, + 0xd2, 0x42, 0xce, 0x36, 0x34, 0x67, 0x65, 0x97, 0xc7, 0x75, 0x68, 0xfb, 0x81, 0x9f, 0x0e, 0x25, + 0x27, 0x40, 0x1f, 0x13, 0x20, 0x3a, 0xe4, 0xec, 0x1e, 0x34, 0x11, 0x41, 0x2c, 0xb5, 0x8d, 0x04, + 0x2f, 0x6a, 0x82, 0x7b, 0x81, 0x9f, 0xea, 0xe5, 0x36, 0x7c, 0xea, 0x09, 0x09, 0xfb, 0xc1, 0x51, + 0xd8, 0xef, 0x90, 0x84, 0x45, 0x9b, 0xbd, 0x0b, 0xcb, 0xc1, 0x74, 0xe2, 0xf4, 0x57, 0x91, 0x02, + 0xd3, 0x14, 0xbe, 0x9e, 0x4e, 0x1c, 0x9a, 0x8e, 0xe3, 0xec, 0x13, 0x68, 0x8b, 0x5f, 0xc5, 0x4e, + 0x17, 0xd1, 0xfb, 0x39, 0x74, 0xe2, 0x8b, 0x26, 0x41, 0xa0, 0x01, 0xa8, 0x30, 0xa4, 0xd0, 0xfd, + 0x35, 0x5c, 0x85, 0xea, 0xb2, 0x9b, 0xd0, 0x51, 0x27, 0x00, 0x25, 0xda, 0xc3, 0xe1, 0xb6, 0x84, + 0xa1, 0x48, 0x6f, 0x42, 0x07, 0x57, 0xa9, 0x28, 0xac, 0x13, 0x8a, 0x80, 0x49, 0x5b, 0x21, 0x58, + 0x43, 0x14, 0x3a, 0x0d, 0x7d, 0x56, 0x60, 0x4d, 0xc8, 0xe2, 0x3b, 0x1c, 0x92, 0xac, 0xf9, 0x1a, + 0x20, 0xb6, 0x44, 0xce, 0xba, 0x50, 0xd8, 0x12, 0x73, 0x86, 0xc4, 0x11, 0x5b, 0x22, 0xcf, 0x21, + 0x72, 0xbb, 0x41, 0x5b, 0x42, 0x20, 0xc1, 0xec, 0xe0, 0x01, 0x34, 0x95, 0xd4, 0xcf, 0x33, 0x5a, + 0x75, 0xd3, 0xf0, 0xbd, 0xbe, 0x4b, 0x20, 0xec, 0xad, 0xb9, 0xd9, 0x0b, 0x7d, 0xf6, 0x63, 0x68, + 0xe9, 0x6d, 0x5e, 0xe8, 0xa3, 0x9f, 0xc3, 0x5a, 0x61, 0xc3, 0xcf, 0x9b, 0x5e, 0x2b, 0x4c, 0x2f, + 0x6c, 0xca, 0x42, 0xd3, 0x3f, 0x81, 0xf6, 0x6b, 0x4e, 0xb5, 0x6e, 0x43, 0x5d, 0xec, 0x6e, 0xc2, + 0xde, 0x86, 0xba, 0xf0, 0xf2, 0x94, 0x6d, 0x6a, 0xaa, 0x7d, 0xb7, 0x09, 0x6c, 0xed, 0xc2, 0xaa, + 0xe8, 0x6e, 0xe9, 0xc3, 0x6b, 0xba, 0x89, 0x95, 0x82, 0x9b, 0x68, 0x58, 0xa2, 0x6a, 0xce, 0x12, + 0x59, 0x7f, 0xbb, 0x02, 0xdd, 0x03, 0x9e, 0x0a, 0x52, 0xca, 0x1e, 0x9f, 0x45, 0xe8, 0x12, 0xac, + 0x24, 0xa9, 0x93, 0x4e, 0x13, 0xb9, 0x57, 0xb2, 0xc7, 0x3e, 0x87, 0x96, 0xc7, 0xc7, 0xa9, 0x83, + 0x67, 0xbd, 0x96, 0x39, 0x5f, 0x79, 0xd2, 0x9b, 0x3b, 0x02, 0x47, 0x1f, 0xfb, 0xa6, 0x27, 0xbb, + 0xe2, 0x0c, 0xd1, 0x74, 0x79, 0x78, 0x97, 0xe9, 0x0c, 0x21, 0x4c, 0x9e, 0xd1, 0x5b, 0xb0, 0x4a, + 0x28, 0xea, 0x9c, 0x91, 0xcb, 0x4a, 0xf3, 0xd4, 0x41, 0x3b, 0x80, 0x75, 0x42, 0x32, 0x2d, 0x01, + 0xb9, 0x3c, 0xb7, 0xe7, 0xb1, 0x53, 0x34, 0x0c, 0x6b, 0x5e, 0x1e, 0xca, 0xee, 0x49, 0x03, 0xd4, + 0xc8, 0x7c, 0xaf, 0x02, 0x9d, 0xa2, 0x29, 0x7a, 0xa0, 0xed, 0x68, 0x13, 0xe7, 0xbc, 0x5d, 0x32, + 0xa7, 0xcc, 0xa2, 0x7e, 0xa9, 0xc4, 0x20, 0x8f, 0x7c, 0x2b, 0xf3, 0x3e, 0xcb, 0x38, 0x37, 0x2d, + 0x00, 0xc9, 0x4a, 0x1a, 0x8d, 0xdb, 0xb0, 0xe6, 0x6a, 0xff, 0x7f, 0xe8, 0x85, 0x2f, 0x03, 0xb4, + 0xce, 0x4d, 0xbb, 0x9b, 0x81, 0x77, 0xc2, 0x97, 0xc1, 0xe0, 0x11, 0xac, 0xe6, 0xb6, 0x64, 0xa1, + 0xc3, 0xf9, 0x04, 0x36, 0xca, 0x04, 0xb8, 0xd0, 0x49, 0x79, 0xed, 0x03, 0xfe, 0x06, 0x06, 0xe9, + 0x31, 0xf4, 0x8a, 0xe2, 0x5b, 0xe8, 0x88, 0xfe, 0x67, 0x1d, 0x5a, 0x3a, 0xbc, 0x62, 0x5d, 0xa8, + 0xfa, 0x9e, 0x9c, 0x58, 0xf5, 0xbd, 0xf9, 0x47, 0xed, 0xcc, 0x38, 0x4e, 0xb9, 0x16, 0xcb, 0x86, + 0x6b, 0x71, 0x87, 0x9c, 0x04, 0x72, 0xf9, 0x2f, 0x09, 0x25, 0xd0, 0x5f, 0x2d, 0x78, 0x0a, 0x1b, + 0x50, 0xff, 0xfd, 0x69, 0x98, 0x3a, 0xd2, 0x3b, 0xa3, 0x8e, 0xe1, 0x24, 0x34, 0x72, 0x4e, 0xc2, + 0xdb, 0x00, 0x51, 0xec, 0x9f, 0xf8, 0x63, 0x3e, 0xe2, 0x9e, 0x74, 0x02, 0x0c, 0x08, 0xfb, 0x49, + 0xc1, 0x0b, 0xb8, 0x92, 0xff, 0x74, 0x99, 0xe2, 0xfe, 0x36, 0x34, 0xa2, 0xe9, 0xe1, 0xd8, 0x4f, + 0x8e, 0xfb, 0x80, 0x73, 0x06, 0xf9, 0x39, 0xfb, 0x34, 0x28, 0x6f, 0x7b, 0x89, 0x2a, 0xd8, 0xf6, + 0x27, 0xe2, 0x28, 0xb7, 0x69, 0x8b, 0xb0, 0x63, 0x5e, 0xc6, 0x9d, 0xfc, 0x65, 0xfc, 0x63, 0x6d, + 0x7c, 0x56, 0x6f, 0x54, 0xee, 0xb4, 0xef, 0x5f, 0xc8, 0x7d, 0xe4, 0x00, 0x87, 0xb4, 0x45, 0xea, + 0x43, 0x83, 0x4e, 0x51, 0x82, 0xae, 0x40, 0xcb, 0x56, 0x5d, 0xf6, 0x58, 0x5f, 0x92, 0xd1, 0xd8, + 0x09, 0xfa, 0x6b, 0xc8, 0xf0, 0x5b, 0x79, 0x86, 0x49, 0x37, 0xf6, 0xc7, 0x4e, 0x20, 0xaf, 0xe4, + 0x13, 0x0d, 0xf8, 0x0d, 0xdd, 0xa1, 0xa6, 0x08, 0x17, 0x9a, 0xbb, 0x07, 0x6b, 0x85, 0xd5, 0x94, + 0x4c, 0xbf, 0x61, 0x4e, 0x6f, 0xdf, 0x07, 0x21, 0x0d, 0x9a, 0x65, 0x6a, 0xfe, 0x1f, 0x54, 0x61, + 0xad, 0x20, 0xef, 0x32, 0xfd, 0x8f, 0xa7, 0x41, 0xe0, 0x07, 0x23, 0x19, 0x7a, 0xa9, 0xae, 0x18, + 0x39, 0xe6, 0xce, 0x38, 0x3d, 0x3e, 0x45, 0xf5, 0x6f, 0xda, 0xaa, 0xcb, 0x3e, 0x37, 0x5c, 0x71, + 0xf2, 0x89, 0x6f, 0x96, 0x6c, 0xad, 0x72, 0xcd, 0xa5, 0xee, 0xe9, 0x29, 0xc2, 0xa9, 0xe5, 0x3f, + 0xa4, 0x3c, 0xc0, 0x7c, 0x8d, 0xb8, 0x16, 0x3a, 0x76, 0x06, 0x10, 0x8b, 0x4d, 0xd3, 0xb1, 0x74, + 0x94, 0x45, 0x53, 0x58, 0xbd, 0x1c, 0xa9, 0x85, 0x32, 0x1c, 0x5f, 0x40, 0x2f, 0xcb, 0xad, 0x48, + 0x19, 0x64, 0x8a, 0x49, 0x97, 0xf5, 0x59, 0x8a, 0x69, 0xfd, 0x7d, 0x05, 0xae, 0x15, 0xc6, 0x0e, + 0xd2, 0x98, 0x3b, 0x93, 0xe7, 0x3c, 0x49, 0x84, 0x9a, 0x17, 0x25, 0xfa, 0x63, 0x68, 0x69, 0xb3, + 0x2d, 0xf7, 0x67, 0x35, 0xf7, 0x01, 0x3b, 0x1b, 0x37, 0x58, 0xa9, 0x9d, 0x7f, 0x46, 0x36, 0xa0, + 0xce, 0xe3, 0x38, 0x8c, 0xa5, 0xd9, 0xa1, 0x0e, 0x46, 0x5d, 0x7c, 0xcc, 0x53, 0xba, 0x62, 0x9b, + 0xb6, 0xec, 0x59, 0x7b, 0x30, 0x38, 0xe0, 0x69, 0x71, 0xf1, 0xca, 0x6b, 0x58, 0x48, 0x06, 0xff, + 0x31, 0x4f, 0x06, 0xbf, 0xda, 0x6c, 0xd9, 0x4e, 0x21, 0x5b, 0xf6, 0x7e, 0x09, 0x8f, 0x39, 0x3e, + 0xca, 0x8c, 0xdd, 0x9b, 0xa4, 0xc7, 0x1e, 0x01, 0x64, 0xf2, 0x63, 0x77, 0x01, 0xb2, 0xfb, 0x58, + 0x8a, 0xad, 0xb0, 0xb3, 0x06, 0x82, 0xf5, 0x16, 0xb4, 0xf5, 0xc0, 0xde, 0x4e, 0x51, 0x4d, 0xac, + 0x1b, 0xd0, 0x31, 0x86, 0x13, 0xc1, 0x97, 0x2f, 0x53, 0x6a, 0x2d, 0x5b, 0x34, 0xad, 0x17, 0x70, + 0xc9, 0xe6, 0x93, 0xf0, 0x84, 0x6b, 0x3c, 0x25, 0xee, 0x19, 0x5c, 0xb1, 0x86, 0xa3, 0x30, 0x76, + 0x75, 0xfe, 0x04, 0x3b, 0xe2, 0x9a, 0x4a, 0x52, 0x1e, 0xa1, 0x60, 0xeb, 0x36, 0xb6, 0xad, 0x4d, + 0x18, 0xec, 0xf8, 0x49, 0x12, 0xba, 0xbe, 0x93, 0xbe, 0x02, 0x65, 0xeb, 0x1f, 0x2b, 0xd0, 0xb5, + 0xb9, 0x33, 0x1e, 0x87, 0xee, 0xfc, 0xcf, 0xf7, 0xe8, 0xee, 0xa3, 0xbc, 0x07, 0xde, 0x71, 0xd9, + 0x6d, 0x56, 0xcb, 0xdd, 0x66, 0x86, 0x9d, 0x5f, 0xce, 0xdb, 0xf9, 0x77, 0xa0, 0x79, 0xe8, 0x07, + 0xde, 0x90, 0x2e, 0xd1, 0xca, 0x9d, 0x2e, 0x99, 0xb5, 0x17, 0xb1, 0xff, 0x4d, 0x94, 0xda, 0x0d, + 0x31, 0x26, 0x7c, 0xcf, 0xbb, 0xd0, 0x91, 0x31, 0x33, 0xa5, 0x42, 0x57, 0x66, 0x50, 0x65, 0x4c, + 0xfd, 0x4c, 0x0c, 0x5b, 0x1f, 0xc3, 0xea, 0x96, 0xe7, 0xed, 0x87, 0x9e, 0x62, 0xfe, 0x55, 0x73, + 0x9d, 0xef, 0x42, 0x8f, 0xa4, 0x7f, 0xf6, 0x5c, 0xeb, 0x16, 0xac, 0x3e, 0xe5, 0xe9, 0x39, 0x48, + 0xff, 0x52, 0x87, 0xee, 0x96, 0xe7, 0xbd, 0xaa, 0xdb, 0xfe, 0x7a, 0x59, 0x8a, 0x2e, 0x54, 0x5d, + 0x47, 0xda, 0x86, 0xaa, 0xeb, 0x08, 0x46, 0x5c, 0x1e, 0xa7, 0x32, 0xe5, 0x8d, 0x6d, 0xa5, 0xfd, + 0x2b, 0x99, 0xf6, 0xcb, 0xad, 0x6b, 0xa0, 0x8a, 0x28, 0xf7, 0x24, 0x39, 0x76, 0x62, 0x4a, 0x38, + 0xd4, 0x6d, 0xea, 0x18, 0x1b, 0xda, 0xca, 0x6d, 0x68, 0xe6, 0x3c, 0x43, 0xe6, 0x3c, 0xe7, 0xd7, + 0x5a, 0xea, 0x83, 0x28, 0x37, 0xbd, 0x9d, 0xb9, 0xe9, 0x85, 0x59, 0x45, 0x37, 0x7d, 0x3b, 0x9f, + 0x31, 0xe8, 0x64, 0xf9, 0xd9, 0x92, 0x89, 0xaf, 0x90, 0x3b, 0x58, 0xcd, 0xbb, 0x2b, 0x3f, 0x05, + 0xe9, 0x35, 0x0c, 0x27, 0x4e, 0x24, 0xf3, 0x11, 0x37, 0x4b, 0xa8, 0xd3, 0x3d, 0xfb, 0xdc, 0x89, + 0x88, 0x78, 0xeb, 0x44, 0xf5, 0xdf, 0xc4, 0x63, 0xf8, 0x4d, 0x45, 0xce, 0x9f, 0x41, 0x37, 0xbf, + 0x9e, 0x85, 0x5c, 0xeb, 0x0f, 0x60, 0x9d, 0xce, 0xc8, 0x2b, 0x2a, 0xb6, 0xf5, 0x97, 0x15, 0xe8, + 0x3e, 0x7d, 0xf5, 0xf0, 0x35, 0xd3, 0xad, 0x6a, 0xa6, 0x5b, 0x4f, 0xcf, 0x0d, 0xcc, 0xde, 0xc4, + 0xe4, 0xff, 0x5d, 0x05, 0x7a, 0x98, 0xf4, 0x14, 0x51, 0xfb, 0xf9, 0x29, 0xcf, 0x1e, 0xd4, 0x9c, + 0xf1, 0x58, 0x5a, 0x5d, 0xd1, 0x64, 0x0f, 0x35, 0xcf, 0x46, 0x5c, 0x5d, 0xa4, 0xf8, 0x7f, 0xcd, + 0xf5, 0xbf, 0xd6, 0xa1, 0xfe, 0x64, 0xea, 0x8f, 0xb1, 0x94, 0x73, 0xe8, 0x24, 0xda, 0xfa, 0x88, + 0xb6, 0x80, 0xc5, 0x3c, 0x0a, 0x95, 0x79, 0x13, 0x6d, 0xb3, 0x10, 0x57, 0xcb, 0x17, 0xe2, 0x7a, + 0x50, 0xf3, 0x7c, 0xe5, 0x63, 0x88, 0xa6, 0x70, 0xd8, 0x92, 0xe9, 0xe1, 0x24, 0xf4, 0xa6, 0x63, + 0xe5, 0x64, 0x64, 0x00, 0xb1, 0x81, 0x6e, 0x38, 0x99, 0x38, 0x81, 0x47, 0xe5, 0x8a, 0x96, 0xad, + 0xfb, 0xec, 0x36, 0x2c, 0xf3, 0xe0, 0x24, 0x91, 0xb1, 0x38, 0xfa, 0x18, 0xc8, 0xe6, 0xe6, 0x6e, + 0x70, 0x22, 0x57, 0x8f, 0x08, 0x02, 0xd1, 0x89, 0x47, 0x2a, 0x00, 0x37, 0x10, 0xb7, 0xe2, 0x91, + 0x42, 0x14, 0x08, 0xec, 0x6e, 0x21, 0xda, 0xb9, 0x98, 0xa1, 0x96, 0x59, 0x99, 0x07, 0xd0, 0x72, + 0xe2, 0xd4, 0x3f, 0x72, 0xdc, 0x54, 0x19, 0xa8, 0xbe, 0x49, 0x5c, 0x0e, 0xc9, 0xa3, 0xac, 0x51, + 0xd9, 0x7b, 0x50, 0x77, 0x1d, 0xf7, 0x98, 0x4b, 0xf3, 0xb4, 0x91, 0xcd, 0xd9, 0x16, 0x60, 0xc2, + 0x27, 0x14, 0x76, 0x1d, 0xda, 0x49, 0x1a, 0x46, 0xc3, 0xc4, 0x1f, 0x05, 0xce, 0x58, 0x26, 0x43, + 0x41, 0x80, 0x0e, 0x10, 0x22, 0x24, 0x94, 0x70, 0x77, 0x1a, 0xfb, 0xe9, 0x29, 0x1a, 0x9d, 0xa6, + 0xad, 0xfb, 0xe2, 0xe0, 0x6b, 0x59, 0x2c, 0x6a, 0x31, 0xb4, 0x6c, 0x7e, 0x5d, 0xa1, 0xf8, 0x67, + 0xd0, 0xcd, 0x8b, 0x6c, 0xa1, 0xd9, 0x0f, 0x01, 0x32, 0xe1, 0x2d, 0xa4, 0xde, 0x7f, 0x5a, 0x81, + 0x15, 0x94, 0x7e, 0x22, 0x33, 0x5a, 0x23, 0xae, 0xdc, 0x0f, 0xd9, 0x63, 0x9b, 0xb0, 0x82, 0x45, + 0x61, 0x65, 0x2a, 0x2e, 0xe9, 0x1d, 0x4b, 0xe4, 0x8f, 0x54, 0x0c, 0xc2, 0x1a, 0xec, 0x40, 0xdb, + 0x00, 0x97, 0x70, 0x73, 0x3d, 0x1f, 0x62, 0xb5, 0x34, 0x3d, 0x93, 0xb1, 0xbf, 0xaa, 0xc2, 0x3a, + 0x02, 0xf7, 0x44, 0x2c, 0x7c, 0x8e, 0x8b, 0x31, 0x4d, 0x74, 0x65, 0x04, 0xdb, 0xe2, 0xa3, 0x53, + 0xdf, 0x93, 0xde, 0x99, 0x68, 0x0a, 0xac, 0xd4, 0x19, 0x29, 0xd7, 0x08, 0xdb, 0xcc, 0xd2, 0x2b, + 0xab, 0x67, 0xc1, 0x1e, 0xf1, 0xae, 0x56, 0x83, 0x41, 0x93, 0x13, 0xe3, 0xb5, 0xde, 0xb1, 0x45, + 0x93, 0xed, 0x40, 0x87, 0x8a, 0xe6, 0x13, 0x9e, 0x1e, 0x87, 0x54, 0x5b, 0xe8, 0xd2, 0x7d, 0x36, + 0xc3, 0x30, 0x41, 0x9e, 0x23, 0xa2, 0xdd, 0x3e, 0xcc, 0x3a, 0xec, 0x0a, 0x34, 0xf9, 0x0f, 0x7e, + 0x92, 0x0e, 0x7d, 0xca, 0x3c, 0xb4, 0xec, 0x06, 0xf6, 0xf7, 0x3c, 0xeb, 0x3d, 0x29, 0x40, 0x89, + 0xd9, 0x80, 0xda, 0xc1, 0xf6, 0xf3, 0xde, 0x92, 0x68, 0xd8, 0x5b, 0xbf, 0xe8, 0x55, 0x58, 0x0b, + 0xea, 0xbb, 0xbf, 0xb3, 0x77, 0xf0, 0xa2, 0x57, 0xb5, 0x38, 0xb4, 0xbf, 0x0a, 0x43, 0x5d, 0x41, + 0xba, 0x0e, 0x6d, 0xe7, 0x28, 0xe5, 0xf1, 0x30, 0x49, 0x9d, 0x38, 0x95, 0x1b, 0x09, 0x08, 0x3a, + 0x10, 0x10, 0x81, 0x70, 0xc8, 0x8f, 0xc2, 0x98, 0x0f, 0xc5, 0x29, 0x92, 0x55, 0x21, 0x20, 0xd0, + 0x41, 0x1a, 0x46, 0x99, 0xbb, 0x5b, 0x33, 0xdc, 0x5d, 0x2b, 0x05, 0xf6, 0x15, 0x86, 0xa8, 0xdb, + 0xc7, 0xdc, 0xd5, 0x5f, 0xbb, 0x0a, 0xad, 0xd4, 0x8d, 0x86, 0x51, 0x18, 0xa7, 0x4a, 0x69, 0x9a, + 0xa9, 0x1b, 0xed, 0x8b, 0xbe, 0x18, 0x3c, 0x4e, 0x53, 0x1a, 0x55, 0xae, 0x96, 0x00, 0x88, 0x51, + 0xdc, 0x9f, 0x78, 0x2c, 0xed, 0xa3, 0x68, 0xa2, 0x4b, 0x15, 0x7a, 0x94, 0xf7, 0xa9, 0xdb, 0xd8, + 0xb6, 0xfe, 0xb8, 0x02, 0xf0, 0x2c, 0x1c, 0x19, 0x9b, 0x9f, 0x9e, 0x46, 0x7a, 0xf3, 0x45, 0x9b, + 0xdd, 0x87, 0x15, 0x37, 0x0c, 0x8e, 0xfc, 0x91, 0x54, 0x4e, 0x4c, 0xb7, 0x64, 0x73, 0x44, 0x00, + 0x71, 0xe4, 0x8f, 0xa4, 0x82, 0x12, 0xa6, 0x38, 0xa6, 0x06, 0x78, 0xa1, 0xe3, 0xf2, 0x37, 0x35, + 0x58, 0xdf, 0xd5, 0x21, 0xd6, 0x59, 0x5a, 0xd9, 0x87, 0x86, 0xb4, 0xd5, 0x2a, 0xfb, 0x25, 0xbb, + 0x85, 0xac, 0x53, 0x6d, 0x26, 0xeb, 0x34, 0x7b, 0x4b, 0xdc, 0x80, 0xda, 0x38, 0x1c, 0x49, 0x25, + 0xed, 0xe6, 0x57, 0x68, 0x8b, 0x21, 0xbc, 0x46, 0x65, 0xda, 0x89, 0x2e, 0x0a, 0x9d, 0x5a, 0x7a, + 0x08, 0x6d, 0x4a, 0x2e, 0xb8, 0x62, 0xe7, 0x50, 0x59, 0xe5, 0x11, 0x9e, 0xdd, 0x50, 0xdb, 0x44, + 0x65, 0xb7, 0x60, 0xf9, 0x38, 0x0c, 0xbf, 0x47, 0xed, 0x6c, 0xdf, 0x5f, 0xc3, 0x29, 0x99, 0xaa, + 0xd9, 0x38, 0xc8, 0xde, 0x81, 0x6e, 0xcc, 0x51, 0xd9, 0x86, 0x51, 0x38, 0xf6, 0x5d, 0xf2, 0x61, + 0x5b, 0xf6, 0xaa, 0x84, 0xee, 0x23, 0x90, 0x7d, 0x06, 0x8d, 0xe4, 0x34, 0x71, 0x53, 0xed, 0xcb, + 0xa2, 0x73, 0x39, 0x23, 0xc9, 0xcd, 0x03, 0x42, 0x92, 0xe9, 0x31, 0x39, 0x65, 0xf0, 0x29, 0x74, + 0xcc, 0x81, 0x85, 0x76, 0xec, 0xaf, 0x5b, 0xb0, 0xba, 0xc3, 0xa3, 0x71, 0x78, 0x7a, 0xd6, 0x6e, + 0x7d, 0x34, 0x13, 0x4b, 0xcb, 0xfb, 0x6f, 0x86, 0xc5, 0x5c, 0x88, 0x3d, 0x3f, 0x62, 0x30, 0x7d, + 0xaf, 0xe5, 0x82, 0xef, 0xa5, 0xb3, 0x7d, 0x75, 0x33, 0xdb, 0xf7, 0x16, 0x00, 0xff, 0x21, 0x8d, + 0x9d, 0x21, 0xde, 0xd6, 0x14, 0x46, 0xb4, 0x10, 0x22, 0x2e, 0x23, 0x71, 0x9c, 0xdc, 0x68, 0x3a, + 0xa4, 0xec, 0x26, 0xd5, 0x94, 0x9b, 0x6e, 0x34, 0xfd, 0x79, 0x21, 0xc1, 0xd9, 0xcc, 0x45, 0x10, + 0x1b, 0x50, 0x77, 0xc3, 0x69, 0x90, 0xe2, 0xa6, 0xd4, 0x6d, 0xea, 0x08, 0xf1, 0xf1, 0xe0, 0x04, + 0x37, 0xa2, 0x65, 0x8b, 0x26, 0xaa, 0x5c, 0x90, 0xe0, 0x8d, 0x2c, 0x54, 0x8e, 0x0c, 0x09, 0x71, + 0x73, 0x1c, 0x26, 0x69, 0x82, 0x11, 0x41, 0xcb, 0x26, 0x06, 0xbf, 0x12, 0x10, 0x33, 0xda, 0x5c, + 0xcd, 0x47, 0x9b, 0x8f, 0x8c, 0x1c, 0x16, 0xf9, 0xfa, 0xd7, 0x85, 0x24, 0x73, 0x9b, 0x30, 0x37, + 0x83, 0x75, 0x03, 0xda, 0xb2, 0x3d, 0x11, 0xd6, 0x60, 0x0d, 0xc5, 0x60, 0x82, 0xb4, 0xb9, 0xef, + 0x19, 0xe6, 0x7e, 0x03, 0xea, 0x1e, 0x3f, 0x9c, 0x8e, 0xb0, 0xe4, 0xd8, 0xb4, 0xa9, 0x23, 0x9c, + 0xab, 0x30, 0xe2, 0xc1, 0x41, 0xea, 0xf9, 0x41, 0x9f, 0x91, 0x73, 0xa5, 0x01, 0xec, 0x23, 0xed, + 0xee, 0x5c, 0xc8, 0xf2, 0x9e, 0x79, 0x26, 0xcb, 0xdc, 0x9e, 0x2d, 0x00, 0xb1, 0x91, 0x72, 0xea, + 0x46, 0x16, 0xcb, 0x14, 0xd6, 0xa7, 0x71, 0x54, 0xa0, 0xa4, 0x01, 0x54, 0xc0, 0x11, 0xc8, 0xea, + 0x06, 0xb9, 0x88, 0x4b, 0xe9, 0x10, 0x50, 0x5a, 0xfd, 0x0f, 0x60, 0xd9, 0x73, 0x52, 0xa7, 0x7f, + 0x09, 0xbf, 0x70, 0x75, 0xf6, 0x0b, 0x3b, 0x4e, 0xaa, 0x62, 0x38, 0x81, 0x28, 0xf4, 0x27, 0x09, + 0x8f, 0x52, 0x19, 0xbb, 0x5f, 0x96, 0xbe, 0x64, 0x78, 0x94, 0x62, 0xb4, 0x2e, 0x36, 0x14, 0xcb, + 0x65, 0x72, 0xbc, 0x8f, 0x0a, 0x81, 0x5c, 0x25, 0x84, 0x20, 0x8b, 0xec, 0x87, 0x7e, 0xe0, 0xf5, + 0xaf, 0x50, 0x56, 0xd2, 0x8d, 0xa6, 0x4f, 0xfc, 0xc0, 0xc3, 0xfa, 0xf6, 0x28, 0x10, 0x97, 0x06, + 0x1a, 0x84, 0x01, 0x99, 0x2c, 0x02, 0x09, 0x93, 0xc0, 0x6e, 0x42, 0x87, 0xae, 0x1d, 0x37, 0xe6, + 0x4e, 0xca, 0xfb, 0x57, 0x51, 0x23, 0xe8, 0x2a, 0xda, 0x46, 0x90, 0x20, 0x1f, 0x3b, 0x2f, 0x49, + 0xb9, 0xaf, 0xe1, 0x65, 0xda, 0x88, 0x9d, 0x97, 0xa8, 0xda, 0x46, 0xe0, 0xf8, 0x56, 0x2e, 0x70, + 0x7c, 0xa3, 0xfc, 0xe4, 0x9b, 0x78, 0x63, 0x22, 0xf4, 0xcb, 0x6f, 0xe0, 0xa2, 0x0e, 0xa4, 0xde, + 0x9d, 0xf3, 0x26, 0x76, 0x4c, 0x63, 0xf5, 0xef, 0x55, 0xe8, 0xda, 0x3c, 0x1a, 0x3b, 0xae, 0xf6, + 0x78, 0x3e, 0x80, 0x96, 0xa7, 0xf6, 0x1d, 0x89, 0xc8, 0x67, 0x12, 0x39, 0x65, 0xb0, 0x33, 0x1c, + 0xf6, 0x2e, 0x74, 0xe5, 0x71, 0xf1, 0x83, 0x63, 0x1e, 0xfb, 0xa9, 0x0c, 0xa1, 0x0a, 0x50, 0xb6, + 0x07, 0xab, 0x47, 0xfe, 0x58, 0x6c, 0x5a, 0x2e, 0xa8, 0xc2, 0x07, 0x51, 0x79, 0x1e, 0x36, 0xbf, + 0x44, 0x3c, 0xf3, 0x34, 0x74, 0x8e, 0x0c, 0x10, 0xbb, 0x27, 0xee, 0xee, 0xe8, 0x54, 0xe6, 0x12, + 0xaf, 0x95, 0x50, 0xd8, 0x0e, 0x23, 0x99, 0x31, 0x40, 0x4c, 0x95, 0xe7, 0xaa, 0xeb, 0x3c, 0xd7, + 0xe0, 0x0b, 0x58, 0x9f, 0xf9, 0xcc, 0xa2, 0x42, 0xd7, 0x5f, 0x59, 0xe8, 0x86, 0x98, 0xc2, 0x3a, + 0x3a, 0xcf, 0x39, 0x47, 0x73, 0x7e, 0x5c, 0x6a, 0x5a, 0xf6, 0xea, 0x6c, 0x51, 0x18, 0x8d, 0x39, + 0x09, 0xb3, 0x65, 0xcb, 0x9e, 0xce, 0x16, 0x2e, 0x1b, 0xd9, 0xc2, 0x3f, 0xaa, 0x00, 0xa3, 0x10, + 0xff, 0xd7, 0xfb, 0x61, 0x21, 0x89, 0x28, 0x9e, 0x06, 0x2a, 0xde, 0xa4, 0x8e, 0x75, 0x93, 0xc4, + 0xb7, 0xef, 0xa4, 0xc7, 0x98, 0xf3, 0x8c, 0x44, 0x43, 0x3a, 0x75, 0xd4, 0xb1, 0xfe, 0xa4, 0x22, + 0x1c, 0xa7, 0x48, 0x5f, 0xa4, 0x0f, 0xa0, 0x91, 0x3a, 0xf1, 0x88, 0xa7, 0x2a, 0x65, 0x7b, 0x8d, + 0x52, 0xb6, 0x1a, 0x63, 0xf3, 0x05, 0x0d, 0xcb, 0xeb, 0x5c, 0x22, 0x0f, 0xf6, 0xa0, 0x63, 0x0e, + 0x94, 0x6c, 0xd6, 0xad, 0x7c, 0x84, 0xb0, 0xaa, 0xe8, 0x22, 0x77, 0xe6, 0xde, 0xfd, 0xb2, 0x02, + 0xed, 0x03, 0x1e, 0x78, 0xf3, 0xf3, 0xa7, 0x77, 0xa5, 0x1d, 0xad, 0x66, 0x15, 0x3c, 0x63, 0x42, + 0xd1, 0x8a, 0xbe, 0xfe, 0xd1, 0x7d, 0x04, 0xed, 0xdd, 0x38, 0x0e, 0x63, 0x7a, 0x51, 0xa7, 0xdd, + 0xd9, 0x0a, 0x1a, 0x34, 0x6c, 0x8b, 0xad, 0x9d, 0x50, 0x65, 0x43, 0xb9, 0x84, 0xb2, 0x6b, 0xfd, + 0x43, 0xc5, 0x0c, 0x76, 0xe6, 0x95, 0x3f, 0xf2, 0x4f, 0x0e, 0x5a, 0xba, 0x78, 0x31, 0x80, 0x66, + 0x14, 0x87, 0xa3, 0x98, 0x27, 0x89, 0x4a, 0xf4, 0xab, 0xfe, 0xfc, 0xc2, 0x46, 0x82, 0xd9, 0x7d, + 0xf5, 0x68, 0x97, 0x7a, 0xec, 0x3e, 0x74, 0x10, 0x61, 0x48, 0xef, 0xde, 0xd0, 0x0b, 0x91, 0xae, + 0x9f, 0xb1, 0x38, 0xbb, 0xcd, 0xb3, 0x8e, 0x95, 0xc0, 0x8a, 0x2c, 0xb6, 0x6f, 0xea, 0x17, 0x3a, + 0x95, 0x2c, 0x50, 0xa4, 0xb1, 0xb2, 0x37, 0x3a, 0x6f, 0xf2, 0x38, 0xe4, 0x0f, 0xeb, 0x70, 0x89, + 0x2e, 0x16, 0x9d, 0x67, 0x57, 0x52, 0x7b, 0xbd, 0x03, 0x44, 0xb2, 0xae, 0x69, 0x59, 0x97, 0x95, + 0xa1, 0xb5, 0x2c, 0xeb, 0xa6, 0x2c, 0xf1, 0x8d, 0x9d, 0xeb, 0x0a, 0xe1, 0xaf, 0xd0, 0xb5, 0x29, + 0xbb, 0xec, 0x23, 0x95, 0xff, 0xd5, 0x6f, 0x17, 0xca, 0x59, 0x9e, 0x57, 0xc3, 0x6e, 0x96, 0xd7, + 0xb0, 0xf3, 0x49, 0xe2, 0xad, 0x62, 0xc1, 0xf9, 0xf6, 0x19, 0x1f, 0x2a, 0xaf, 0x3e, 0x33, 0xe9, + 0xe8, 0xb7, 0x51, 0xa7, 0xc9, 0xaf, 0x9f, 0x5f, 0x7b, 0xfe, 0x59, 0xbe, 0x68, 0x4c, 0x8f, 0xd1, + 0xde, 0x3b, 0xe3, 0xa3, 0xbf, 0x8a, 0x0a, 0xf2, 0xff, 0x93, 0x32, 0xf0, 0x9f, 0x55, 0xe0, 0xb2, + 0xbc, 0xe9, 0x66, 0xf4, 0x50, 0x44, 0xa6, 0xe4, 0x0d, 0xd1, 0xad, 0x3d, 0x98, 0x2f, 0x22, 0x5b, + 0x62, 0x8a, 0x39, 0x31, 0x5e, 0x09, 0xf2, 0xb3, 0x03, 0xba, 0x4a, 0x73, 0x95, 0x2a, 0x3d, 0x87, + 0x30, 0x33, 0xad, 0xac, 0x19, 0x5a, 0x69, 0x9d, 0x9a, 0x97, 0x9a, 0x62, 0x49, 0x07, 0x1e, 0x95, + 0xe2, 0x33, 0x03, 0xa9, 0xc0, 0xd5, 0xbc, 0x02, 0x9f, 0x55, 0x41, 0x34, 0x8c, 0xd9, 0x72, 0xde, + 0x98, 0xfd, 0x5e, 0xee, 0x5e, 0x7b, 0x83, 0x6f, 0x4b, 0x82, 0xea, 0x4e, 0xd3, 0x7d, 0xeb, 0xbb, + 0x99, 0xf2, 0xdd, 0x3c, 0x93, 0x39, 0x9f, 0xbe, 0x52, 0x7a, 0x5a, 0x17, 0xb6, 0xad, 0x27, 0xa5, + 0x05, 0xbc, 0x79, 0xb4, 0xb5, 0xe0, 0xab, 0xa6, 0xe0, 0x1f, 0x0b, 0xde, 0xb0, 0xa6, 0xa7, 0x9e, + 0x35, 0x2f, 0x36, 0xff, 0x97, 0xf2, 0x92, 0x5d, 0xf4, 0x12, 0x50, 0x06, 0xab, 0x96, 0xcf, 0x8c, + 0x89, 0x9b, 0x5b, 0x19, 0x31, 0xd1, 0x9e, 0x63, 0xc4, 0x98, 0xbc, 0x25, 0x29, 0xcd, 0x85, 0x6d, + 0xeb, 0x29, 0x5d, 0xad, 0xf3, 0x18, 0x51, 0xc4, 0xab, 0x65, 0xc4, 0x73, 0xba, 0xf8, 0x0d, 0x5c, + 0xda, 0x4a, 0x53, 0xc7, 0x3d, 0x9e, 0x11, 0xe9, 0x4d, 0xe8, 0xe8, 0xb2, 0xee, 0x50, 0x53, 0x6f, + 0x6b, 0xd8, 0x9e, 0xa7, 0x39, 0xab, 0x1a, 0x9c, 0xfd, 0x45, 0x05, 0xd6, 0xed, 0x69, 0xb0, 0x15, + 0x78, 0xbf, 0x70, 0x7c, 0x9d, 0x85, 0x79, 0x08, 0x5d, 0x19, 0x56, 0x85, 0x04, 0x99, 0xef, 0x2e, + 0xaf, 0x7a, 0xb9, 0x8c, 0x40, 0x0f, 0x6a, 0xee, 0xc4, 0x93, 0x9f, 0x10, 0x4d, 0xb1, 0x10, 0x27, + 0x39, 0x0d, 0x5c, 0x95, 0x05, 0xc3, 0x8e, 0x08, 0xdc, 0xb0, 0x31, 0x4c, 0xfd, 0x09, 0x0f, 0xa7, + 0xa9, 0x74, 0xab, 0x3a, 0x08, 0x7c, 0x41, 0x30, 0xeb, 0x5b, 0xb8, 0x2c, 0xd6, 0x19, 0x87, 0xe3, + 0x57, 0x28, 0x2e, 0xab, 0x94, 0x56, 0xd5, 0x48, 0x69, 0x95, 0x67, 0xe0, 0x0e, 0x66, 0xc9, 0x2e, + 0xa4, 0x58, 0x39, 0x85, 0x97, 0x56, 0xde, 0x3a, 0x84, 0xde, 0xb3, 0x70, 0x94, 0x7f, 0x70, 0x50, + 0xb2, 0xcf, 0xe8, 0x0b, 0x28, 0x16, 0x85, 0x77, 0xb3, 0x01, 0xf5, 0xc4, 0x0f, 0x5c, 0xa5, 0x6d, + 0xd4, 0x11, 0xd0, 0x69, 0x90, 0xfa, 0x63, 0xe5, 0x6b, 0x60, 0xc7, 0x7a, 0x66, 0x7c, 0x63, 0x61, + 0x8e, 0x71, 0xeb, 0x6b, 0xc6, 0xd6, 0xff, 0x53, 0x05, 0x2e, 0xef, 0xfe, 0xc0, 0xdd, 0x69, 0x49, + 0x85, 0xfd, 0x15, 0xb4, 0xc9, 0xac, 0xa8, 0x54, 0x0b, 0x15, 0x15, 0x26, 0x2b, 0x2a, 0x64, 0x6d, + 0xa8, 0x78, 0xd2, 0x87, 0x86, 0x88, 0x99, 0xb2, 0x7c, 0x9c, 0xea, 0x8a, 0x70, 0x3b, 0x8c, 0x78, + 0x30, 0x4c, 0x30, 0xbb, 0x50, 0x2f, 0x66, 0x17, 0x44, 0xb8, 0xcb, 0xa3, 0xf1, 0x50, 0xe8, 0xd5, + 0x8a, 0x0c, 0x77, 0x79, 0x34, 0xde, 0x9e, 0x78, 0xef, 0xdd, 0x86, 0x15, 0x2a, 0xa7, 0xb3, 0x26, + 0x2c, 0xff, 0x6c, 0x77, 0x77, 0xbf, 0xb7, 0x24, 0x5a, 0x2f, 0xec, 0x6f, 0x77, 0x29, 0xb7, 0xfb, + 0xe5, 0xd6, 0xb3, 0x83, 0xdd, 0x5e, 0xf5, 0xfe, 0x7f, 0xaf, 0x41, 0x63, 0x3b, 0x8c, 0xb9, 0xbd, + 0xbf, 0xcd, 0x6e, 0xc2, 0x32, 0xfe, 0xcb, 0x0b, 0x93, 0xe5, 0xf8, 0xef, 0xaf, 0x41, 0x87, 0xbc, + 0x62, 0xfa, 0xfb, 0x97, 0xb5, 0xc4, 0x1e, 0x40, 0xc7, 0xf8, 0x4f, 0x41, 0xc2, 0x2e, 0xe9, 0xf2, + 0x58, 0xee, 0x5f, 0x06, 0x34, 0x4f, 0x61, 0x59, 0x4b, 0xec, 0x5d, 0x58, 0xa1, 0x3a, 0x3e, 0x5b, + 0x97, 0x35, 0xd9, 0xac, 0xe4, 0x3e, 0x50, 0xff, 0x40, 0xb2, 0x96, 0xd8, 0x26, 0xb4, 0x74, 0xd9, + 0x9e, 0x6d, 0x64, 0x37, 0x93, 0x81, 0x9d, 0x71, 0x47, 0x74, 0xa9, 0x7c, 0x4f, 0x74, 0x73, 0xa5, + 0x7c, 0x93, 0xee, 0x4d, 0x68, 0x0a, 0x2e, 0xf1, 0xef, 0x4f, 0xc6, 0xf2, 0x9a, 0x12, 0x23, 0xc1, + 0xa5, 0x75, 0x69, 0xba, 0xfe, 0xab, 0x48, 0x09, 0xc9, 0xb5, 0xc2, 0x5f, 0x79, 0xac, 0x25, 0xf6, + 0x23, 0x68, 0xc8, 0x12, 0x33, 0x63, 0xb3, 0xf5, 0xe6, 0x81, 0x7e, 0x4a, 0x6c, 0x2d, 0xb1, 0x7b, + 0x00, 0x59, 0xc1, 0x95, 0x5d, 0xcc, 0x96, 0x67, 0x4e, 0xc8, 0xad, 0xef, 0x27, 0x24, 0xef, 0xfd, + 0xd0, 0xa3, 0x77, 0xca, 0x1b, 0x65, 0xe5, 0x48, 0x9a, 0x82, 0x10, 0xe2, 0x47, 0xd6, 0x58, 0x89, + 0x9f, 0x7c, 0xc1, 0x35, 0xc7, 0xcf, 0x8f, 0xa0, 0x71, 0x60, 0xa2, 0x1e, 0xcc, 0x47, 0xfd, 0x04, + 0xd6, 0x24, 0xa1, 0xec, 0x9f, 0x34, 0x25, 0xd4, 0x7b, 0xfa, 0xe1, 0x74, 0x26, 0xa0, 0x7b, 0xd0, + 0x79, 0x6a, 0xbc, 0x64, 0x62, 0x6b, 0xb9, 0x47, 0x37, 0x7b, 0x3b, 0x83, 0xfc, 0x2b, 0x1c, 0x6b, + 0x89, 0x7d, 0x88, 0x8f, 0x32, 0x8c, 0xb7, 0x3b, 0xbd, 0xc2, 0x94, 0x64, 0xd0, 0xcd, 0x41, 0xc4, + 0xba, 0x1f, 0x43, 0x37, 0xff, 0x57, 0x3c, 0x76, 0x65, 0xee, 0xdf, 0xf3, 0x66, 0x3e, 0x79, 0xaf, + 0xc2, 0x3e, 0x95, 0x7f, 0x97, 0x09, 0x3d, 0x6e, 0xd0, 0x28, 0x5b, 0xe4, 0xec, 0xb7, 0xbf, 0x80, + 0x0b, 0x4f, 0x67, 0x1f, 0x6b, 0x95, 0xb0, 0xbd, 0x91, 0x9f, 0x4a, 0x78, 0xd6, 0x12, 0x7b, 0x0e, + 0x17, 0x4a, 0x5e, 0x7b, 0x31, 0xf5, 0x94, 0x79, 0xce, 0x33, 0xb0, 0xb9, 0xe4, 0x86, 0x70, 0xb1, + 0xf4, 0xa1, 0x15, 0xbb, 0x71, 0xde, 0x1b, 0xac, 0xc1, 0x7c, 0x0c, 0x69, 0x58, 0x51, 0x58, 0xef, + 0xc3, 0xb2, 0x70, 0x20, 0xd4, 0x5e, 0xea, 0x68, 0x7c, 0xa0, 0x01, 0x05, 0x6c, 0x71, 0xcb, 0x13, + 0xb6, 0x11, 0x19, 0x0f, 0x34, 0xc0, 0xc4, 0x7e, 0x0c, 0x90, 0xc5, 0xa9, 0xec, 0x62, 0x69, 0xcd, + 0x6b, 0x50, 0x00, 0x17, 0xe6, 0x67, 0x6e, 0x29, 0xcd, 0x9f, 0xc9, 0xbd, 0x0c, 0x0a, 0x60, 0x73, + 0xfe, 0x16, 0xb4, 0x0d, 0xdf, 0x92, 0x4c, 0xdc, 0x6c, 0x12, 0x65, 0x50, 0x84, 0x9b, 0x24, 0x76, + 0x60, 0xad, 0xe0, 0x85, 0xb3, 0x59, 0x0f, 0x61, 0x70, 0x86, 0xb7, 0x8e, 0x54, 0x9e, 0x42, 0xaf, + 0xe8, 0xf8, 0x93, 0x3e, 0xe6, 0x13, 0x5f, 0x83, 0xab, 0x06, 0xac, 0x94, 0xd0, 0x73, 0x58, 0x2b, + 0xf8, 0xb2, 0xac, 0xcc, 0xeb, 0xcf, 0xf1, 0x55, 0xee, 0xfc, 0x22, 0xb9, 0xdf, 0x85, 0x0b, 0x25, + 0x2e, 0x2c, 0x29, 0xeb, 0xfc, 0xc7, 0x69, 0x83, 0x79, 0xe3, 0x26, 0xe9, 0x7d, 0x7a, 0xef, 0x69, + 0x7a, 0x20, 0xec, 0xaa, 0xd2, 0xc8, 0x12, 0x77, 0x67, 0x50, 0x3a, 0x68, 0x52, 0xfc, 0x39, 0xf4, + 0x8a, 0x77, 0x39, 0x51, 0x9c, 0x73, 0xc3, 0xd3, 0xea, 0xcb, 0x7d, 0x49, 0x6b, 0xe9, 0x4e, 0xe5, + 0x5e, 0x85, 0xed, 0x0a, 0x71, 0xe6, 0xdc, 0x6f, 0xb5, 0x2d, 0xe6, 0x3b, 0x3b, 0x25, 0xc6, 0x32, + 0x3f, 0x1d, 0x39, 0x7b, 0x04, 0x2d, 0xed, 0xb4, 0x48, 0xc3, 0x5e, 0xf0, 0x93, 0x06, 0x79, 0xa8, + 0x39, 0x79, 0x17, 0x20, 0xf3, 0x4e, 0xe5, 0x55, 0x52, 0xf4, 0x56, 0xcf, 0x5f, 0xca, 0xe1, 0x0a, + 0xfe, 0xe3, 0xfb, 0xc3, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x75, 0x77, 0xab, 0x26, 0xff, 0x3d, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/gen/core.proto b/rpc/gen/core.proto index 9485ac29b..e68894582 100644 --- a/rpc/gen/core.proto +++ b/rpc/gen/core.proto @@ -226,16 +226,10 @@ message DissociateContainerOptions { repeated string ids = 1; } -enum BindCPUOpt{ +enum TriOpt { KEEP = 0; - BIND = 1; - FREE = 2; -} - -enum MemoryLimitOpt { - INHERIT = 0; - SOFT = 1; - HARD = 2; + TRUE = 1; + FALSE = 2; } message ReallocOptions { @@ -243,8 +237,8 @@ message ReallocOptions { double cpu = 2; int64 memory = 3; repeated string volumes = 4; - BindCPUOpt bind_cpu = 5; - MemoryLimitOpt memory_limit = 6; + TriOpt bind_cpu = 5; + TriOpt memory_limit = 6; } message AddPodOptions { diff --git a/rpc/rpc.go b/rpc/rpc.go index 0eb5d2fc9..b0681b6f5 100644 --- a/rpc/rpc.go +++ b/rpc/rpc.go @@ -627,10 +627,13 @@ func (v *Vibranium) ReallocResource(opts *pb.ReallocOptions, stream pb.CoreRPC_R if err != nil { return err } - bindCPU := types.BindCPUOptions(opts.BindCpu) - memoryLimit := types.MemoryLimitOptions(opts.MemoryLimit) + bindCPU := types.TriOptions(opts.BindCpu) + memoryLimit := types.TriOptions(opts.MemoryLimit) //这里不能让 client 打断 remove - ch, err := v.cluster.ReallocResource(stream.Context(), ids, opts.Cpu, bindCPU, opts.Memory, memoryLimit, vbs) + ch, err := v.cluster.ReallocResource( + stream.Context(), + &types.ReallocOptions{IDs: ids, CPU: opts.Cpu, BindCPU: bindCPU, Memory: opts.Memory, MemoryLimit: memoryLimit, Volumes: vbs}, + ) if err != nil { return err } diff --git a/types/options.go b/types/options.go index 0dd962c97..5c9c1e2a3 100644 --- a/types/options.go +++ b/types/options.go @@ -169,23 +169,24 @@ type ExecuteContainerOptions struct { ReplCmd []byte } -// BindCPUOptions for realloc interface -type BindCPUOptions int +// ReallocOptions . +type ReallocOptions struct { + IDs []string + CPU float64 + Memory int64 + Volumes VolumeBindings + BindCPU TriOptions + MemoryLimit TriOptions +} -// MemoryLimitOptions . -type MemoryLimitOptions int +// TriOptions . +type TriOptions int const ( - // ReallocKeepCPUCurrent keep current setting - ReallocKeepCPUCurrent BindCPUOptions = 0 - // ReallocBindCPU . - ReallocBindCPU BindCPUOptions = 1 - // ReallocFreeCPU . - ReallocFreeCPU BindCPUOptions = 2 - // ReallocMemoryInheritLimit . - ReallocMemoryInheritLimit MemoryLimitOptions = 0 - // ReallocMemorySoftLimit . - ReallocMemorySoftLimit MemoryLimitOptions = 1 - // ReallocMemoryHardLimit . - ReallocMemoryHardLimit MemoryLimitOptions = 2 + // TriKeep . + TriKeep = iota + // TriTrue . + TriTrue + // TriFalse . + TriFalse )