diff --git a/client/client_test.go b/client/client_test.go index b510c8c87e04..44edaf8db7d5 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -220,6 +220,7 @@ var allTests = []func(t *testing.T, sb integration.Sandbox){ testOCIIndexMediatype, testLayerLimitOnMounts, testFrontendVerifyPlatforms, + testRunValidExitCodes, } func TestIntegration(t *testing.T) { @@ -10588,3 +10589,47 @@ func testClientCustomGRPCOpts(t *testing.T, sb integration.Sandbox) { require.Contains(t, interceptedMethods, "/moby.buildkit.v1.Control/Solve") } + +func testRunValidExitCodes(t *testing.T, sb integration.Sandbox) { + requiresLinux(t) + c, err := New(sb.Context(), sb.Address()) + require.NoError(t, err) + defer c.Close() + + // no exit codes specified, equivalent to [0] + out := llb.Image("busybox:latest") + out = out.Run(llb.Shlex(`sh -c "exit 0"`)).Root() + out = out.Run(llb.Shlex(`sh -c "exit 1"`)).Root() + def, err := out.Marshal(sb.Context()) + require.NoError(t, err) + _, err = c.Solve(sb.Context(), def, SolveOpt{}, nil) + require.Error(t, err) + require.ErrorContains(t, err, "exit code: 1") + + // empty exit codes, equivalent to [0] + out = llb.Image("busybox:latest") + out = out.Run(llb.Shlex(`sh -c "exit 0"`), llb.ValidExitCodes()).Root() + def, err = out.Marshal(sb.Context()) + require.NoError(t, err) + _, err = c.Solve(sb.Context(), def, SolveOpt{}, nil) + require.NoError(t, err) + + // if we expect non-zero, those non-zero codes should succeed + out = llb.Image("busybox:latest") + out = out.Run(llb.Shlex(`sh -c "exit 1"`), llb.ValidExitCodes(1)).Root() + out = out.Run(llb.Shlex(`sh -c "exit 2"`), llb.ValidExitCodes(2, 3)).Root() + out = out.Run(llb.Shlex(`sh -c "exit 3"`), llb.ValidExitCodes(2, 3)).Root() + def, err = out.Marshal(sb.Context()) + require.NoError(t, err) + _, err = c.Solve(sb.Context(), def, SolveOpt{}, nil) + require.NoError(t, err) + + // if we expect non-zero, returning zero should fail + out = llb.Image("busybox:latest") + out = out.Run(llb.Shlex(`sh -c "exit 0"`), llb.ValidExitCodes(1)).Root() + def, err = out.Marshal(sb.Context()) + require.NoError(t, err) + _, err = c.Solve(sb.Context(), def, SolveOpt{}, nil) + require.Error(t, err) + require.ErrorContains(t, err, "exit code: 0") +} diff --git a/client/llb/exec.go b/client/llb/exec.go index 6850f21a7459..ec084e321aaf 100644 --- a/client/llb/exec.go +++ b/client/llb/exec.go @@ -193,6 +193,17 @@ func (e *ExecOp) Marshal(ctx context.Context, c *Constraints) (digest.Digest, [] return "", nil, nil, nil, err } + var validExitCodes []int32 + if codes, err := getValidExitCodes(e.base)(ctx, c); err != nil { + return "", nil, nil, nil, err + } else if codes != nil { + validExitCodes = make([]int32, len(codes)) + for i, code := range codes { + validExitCodes[i] = int32(code) + } + addCap(&e.constraints, pb.CapExecValidExitCode) + } + meta := &pb.Meta{ Args: args, Env: env.ToArray(), @@ -201,6 +212,7 @@ func (e *ExecOp) Marshal(ctx context.Context, c *Constraints) (digest.Digest, [] Hostname: hostname, CgroupParent: cgrpParent, RemoveMountStubsRecursive: true, + ValidExitCodes: validExitCodes, } extraHosts, err := getExtraHosts(e.base)(ctx, c) @@ -581,6 +593,7 @@ func Shlex(str string) RunOption { ei.State = shlexf(str, false)(ei.State) }) } + func Shlexf(str string, v ...interface{}) RunOption { return runOptionFunc(func(ei *ExecInfo) { ei.State = shlexf(str, true, v...)(ei.State) @@ -605,6 +618,12 @@ func AddUlimit(name UlimitName, soft int64, hard int64) RunOption { }) } +func ValidExitCodes(codes ...int) RunOption { + return runOptionFunc(func(ei *ExecInfo) { + ei.State = validExitCodes(codes...)(ei.State) + }) +} + func WithCgroupParent(cp string) RunOption { return runOptionFunc(func(ei *ExecInfo) { ei.State = ei.State.WithCgroupParent(cp) diff --git a/client/llb/meta.go b/client/llb/meta.go index 95bf71837e25..98b1ff373a1a 100644 --- a/client/llb/meta.go +++ b/client/llb/meta.go @@ -18,14 +18,15 @@ import ( type contextKeyT string var ( - keyArgs = contextKeyT("llb.exec.args") - keyDir = contextKeyT("llb.exec.dir") - keyEnv = contextKeyT("llb.exec.env") - keyExtraHost = contextKeyT("llb.exec.extrahost") - keyHostname = contextKeyT("llb.exec.hostname") - keyUlimit = contextKeyT("llb.exec.ulimit") - keyCgroupParent = contextKeyT("llb.exec.cgroup.parent") - keyUser = contextKeyT("llb.exec.user") + keyArgs = contextKeyT("llb.exec.args") + keyDir = contextKeyT("llb.exec.dir") + keyEnv = contextKeyT("llb.exec.env") + keyExtraHost = contextKeyT("llb.exec.extrahost") + keyHostname = contextKeyT("llb.exec.hostname") + keyUlimit = contextKeyT("llb.exec.ulimit") + keyCgroupParent = contextKeyT("llb.exec.cgroup.parent") + keyUser = contextKeyT("llb.exec.user") + keyValidExitCodes = contextKeyT("llb.exec.validexitcodes") keyPlatform = contextKeyT("llb.platform") keyNetwork = contextKeyT("llb.network") @@ -165,6 +166,25 @@ func getUser(s State) func(context.Context, *Constraints) (string, error) { } } +func validExitCodes(codes ...int) StateOption { + return func(s State) State { + return s.WithValue(keyValidExitCodes, codes) + } +} + +func getValidExitCodes(s State) func(context.Context, *Constraints) ([]int, error) { + return func(ctx context.Context, c *Constraints) ([]int, error) { + v, err := s.getValue(keyValidExitCodes)(ctx, c) + if err != nil { + return nil, err + } + if v != nil { + return v.([]int), nil + } + return nil, nil + } +} + // Hostname returns a [StateOption] which sets the hostname used for containers created by [State.Run]. // This is the equivalent of [State.Hostname] // See [State.With] for where to use this. @@ -312,6 +332,7 @@ func Network(v pb.NetMode) StateOption { return s.WithValue(keyNetwork, v) } } + func getNetwork(s State) func(context.Context, *Constraints) (pb.NetMode, error) { return func(ctx context.Context, c *Constraints) (pb.NetMode, error) { v, err := s.getValue(keyNetwork)(ctx, c) @@ -334,6 +355,7 @@ func Security(v pb.SecurityMode) StateOption { return s.WithValue(keySecurity, v) } } + func getSecurity(s State) func(context.Context, *Constraints) (pb.SecurityMode, error) { return func(ctx context.Context, c *Constraints) (pb.SecurityMode, error) { v, err := s.getValue(keySecurity)(ctx, c) diff --git a/executor/containerdexecutor/executor.go b/executor/containerdexecutor/executor.go index b15288739997..9332d4376e72 100644 --- a/executor/containerdexecutor/executor.go +++ b/executor/containerdexecutor/executor.go @@ -5,6 +5,7 @@ import ( "io" "os" "path/filepath" + "slices" "sync" "syscall" "time" @@ -215,7 +216,7 @@ func (w *containerdExecutor) Run(ctx context.Context, id string, root executor.M } trace.SpanFromContext(ctx).AddEvent("Container created") - err = w.runProcess(ctx, task, process.Resize, process.Signal, func() { + err = w.runProcess(ctx, task, process.Resize, process.Signal, process.Meta.ValidExitCodes, func() { startedOnce.Do(func() { trace.SpanFromContext(ctx).AddEvent("Container started") if started != nil { @@ -306,7 +307,7 @@ func (w *containerdExecutor) Exec(ctx context.Context, id string, process execut return errors.WithStack(err) } - err = w.runProcess(ctx, taskProcess, process.Resize, process.Signal, nil) + err = w.runProcess(ctx, taskProcess, process.Resize, process.Signal, process.Meta.ValidExitCodes, nil) return err } @@ -323,7 +324,7 @@ func fixProcessOutput(process *executor.ProcessInfo) { } } -func (w *containerdExecutor) runProcess(ctx context.Context, p containerd.Process, resize <-chan executor.WinSize, signal <-chan syscall.Signal, started func()) error { +func (w *containerdExecutor) runProcess(ctx context.Context, p containerd.Process, resize <-chan executor.WinSize, signal <-chan syscall.Signal, validExitCodes []int, started func()) error { // Not using `ctx` here because the context passed only affects the statusCh which we // don't want cancelled when ctx.Done is sent. We want to process statusCh on cancel. statusCh, err := p.Wait(context.Background()) @@ -408,22 +409,30 @@ func (w *containerdExecutor) runProcess(ctx context.Context, p containerd.Proces attribute.Int("exit.code", int(status.ExitCode())), ), ) - if status.ExitCode() != 0 { - exitErr := &gatewayapi.ExitError{ - ExitCode: status.ExitCode(), - Err: status.Error(), - } - if status.ExitCode() == gatewayapi.UnknownExitStatus && status.Error() != nil { - exitErr.Err = errors.Wrap(status.Error(), "failure waiting for process") - } - select { - case <-ctx.Done(): - exitErr.Err = errors.Wrap(context.Cause(ctx), exitErr.Error()) - default: + + if validExitCodes == nil { + // no exit codes specified, so only 0 is allowed + if status.ExitCode() == 0 { + return nil } - return exitErr + } else if slices.Contains(validExitCodes, int(status.ExitCode())) { + // exit code in allowed list, so exit cleanly + return nil + } + + exitErr := &gatewayapi.ExitError{ + ExitCode: status.ExitCode(), + Err: status.Error(), + } + if status.ExitCode() == gatewayapi.UnknownExitStatus && status.Error() != nil { + exitErr.Err = errors.Wrap(status.Error(), "failure waiting for process") + } + select { + case <-ctx.Done(): + exitErr.Err = errors.Wrap(context.Cause(ctx), exitErr.Error()) + default: } - return nil + return exitErr case <-killCtxDone: if cancel != nil { cancel(errors.WithStack(context.Canceled)) diff --git a/executor/executor.go b/executor/executor.go index 69237cbf97ca..711e84f22264 100644 --- a/executor/executor.go +++ b/executor/executor.go @@ -25,6 +25,7 @@ type Meta struct { CgroupParent string NetMode pb.NetMode SecurityMode pb.SecurityMode + ValidExitCodes []int RemoveMountStubsRecursive bool } diff --git a/executor/runcexecutor/executor.go b/executor/runcexecutor/executor.go index 5f633685675f..49e12c285964 100644 --- a/executor/runcexecutor/executor.go +++ b/executor/runcexecutor/executor.go @@ -10,6 +10,7 @@ import ( "os" "os/exec" "path/filepath" + "slices" "strconv" "sync" "syscall" @@ -335,7 +336,7 @@ func (w *runcExecutor) Run(ctx context.Context, id string, root executor.Mount, } doReleaseNetwork = false - err = exitError(ctx, cgroupPath, err) + err = exitError(ctx, cgroupPath, err, process.Meta.ValidExitCodes) if err != nil { if rec != nil { rec.Close() @@ -351,41 +352,44 @@ func (w *runcExecutor) Run(ctx context.Context, id string, root executor.Mount, return rec, rec.CloseAsync(releaseContainer) } -func exitError(ctx context.Context, cgroupPath string, err error) error { - if err != nil { - exitErr := &gatewayapi.ExitError{ - ExitCode: gatewayapi.UnknownExitStatus, - Err: err, - } +func exitError(ctx context.Context, cgroupPath string, err error, validExitCodes []int) error { + exitErr := &gatewayapi.ExitError{ExitCode: uint32(gatewayapi.UnknownExitStatus), Err: err} + + if err == nil { + exitErr.ExitCode = 0 + } else { var runcExitError *runc.ExitError - if errors.As(err, &runcExitError) && runcExitError.Status >= 0 { - exitErr = &gatewayapi.ExitError{ - ExitCode: uint32(runcExitError.Status), - } + if errors.As(err, &runcExitError) { + exitErr = &gatewayapi.ExitError{ExitCode: uint32(runcExitError.Status)} } detectOOM(ctx, cgroupPath, exitErr) - - trace.SpanFromContext(ctx).AddEvent( - "Container exited", - trace.WithAttributes( - attribute.Int("exit.code", int(exitErr.ExitCode)), - ), - ) - select { - case <-ctx.Done(): - exitErr.Err = errors.Wrap(context.Cause(ctx), exitErr.Error()) - return exitErr - default: - return stack.Enable(exitErr) - } } trace.SpanFromContext(ctx).AddEvent( "Container exited", - trace.WithAttributes(attribute.Int("exit.code", 0)), + trace.WithAttributes(attribute.Int("exit.code", int(exitErr.ExitCode))), ) - return nil + + if validExitCodes == nil { + // no exit codes specified, so only 0 is allowed + if exitErr.ExitCode == 0 { + return nil + } + } else { + // exit code in allowed list, so exit cleanly + if slices.Contains(validExitCodes, int(exitErr.ExitCode)) { + return nil + } + } + + select { + case <-ctx.Done(): + exitErr.Err = errors.Wrap(context.Cause(ctx), exitErr.Error()) + return exitErr + default: + return stack.Enable(exitErr) + } } func (w *runcExecutor) Exec(ctx context.Context, id string, process executor.ProcessInfo) (err error) { @@ -456,7 +460,7 @@ func (w *runcExecutor) Exec(ctx context.Context, id string, process executor.Pro } err = w.exec(ctx, id, spec.Process, process, nil) - return exitError(ctx, "", err) + return exitError(ctx, "", err, process.Meta.ValidExitCodes) } type forwardIO struct { diff --git a/solver/llbsolver/ops/exec.go b/solver/llbsolver/ops/exec.go index 058d911353e2..3d0d2e788446 100644 --- a/solver/llbsolver/ops/exec.go +++ b/solver/llbsolver/ops/exec.go @@ -472,6 +472,13 @@ func (e *ExecOp) Exec(ctx context.Context, g session.Group, inputs []solver.Resu } meta.Env = append(meta.Env, secretEnv...) + if e.op.Meta.ValidExitCodes != nil { + meta.ValidExitCodes = make([]int, len(e.op.Meta.ValidExitCodes)) + for i, code := range e.op.Meta.ValidExitCodes { + meta.ValidExitCodes[i] = int(code) + } + } + stdout, stderr, flush := logs.NewLogStreams(ctx, os.Getenv("BUILDKIT_DEBUG_EXEC_OUTPUT") == "1") defer stdout.Close() defer stderr.Close() diff --git a/solver/pb/caps.go b/solver/pb/caps.go index 5d2d56f53a4e..2ef56039e598 100644 --- a/solver/pb/caps.go +++ b/solver/pb/caps.go @@ -60,6 +60,7 @@ const ( CapExecMountContentCache apicaps.CapID = "exec.mount.cache.content" CapExecCgroupsMounted apicaps.CapID = "exec.cgroup" CapExecSecretEnv apicaps.CapID = "exec.secretenv" + CapExecValidExitCode apicaps.CapID = "exec.validexitcode" CapFileBase apicaps.CapID = "file.base" CapFileRmWildcard apicaps.CapID = "file.rm.wildcard" @@ -357,6 +358,12 @@ func init() { Status: apicaps.CapStatusExperimental, }) + Caps.Init(apicaps.Cap{ + ID: CapExecValidExitCode, + Enabled: true, + Status: apicaps.CapStatusExperimental, + }) + Caps.Init(apicaps.Cap{ ID: CapFileBase, Enabled: true, diff --git a/solver/pb/ops.pb.go b/solver/pb/ops.pb.go index 8c02001bef8b..942097e00412 100644 --- a/solver/pb/ops.pb.go +++ b/solver/pb/ops.pb.go @@ -536,6 +536,7 @@ type Meta struct { Ulimit []*Ulimit `protobuf:"bytes,9,rep,name=ulimit,proto3" json:"ulimit,omitempty"` CgroupParent string `protobuf:"bytes,10,opt,name=cgroupParent,proto3" json:"cgroupParent,omitempty"` RemoveMountStubsRecursive bool `protobuf:"varint,11,opt,name=removeMountStubsRecursive,proto3" json:"removeMountStubsRecursive,omitempty"` + ValidExitCodes []int32 `protobuf:"varint,12,rep,packed,name=validExitCodes,proto3" json:"validExitCodes,omitempty"` } func (m *Meta) Reset() { *m = Meta{} } @@ -637,6 +638,13 @@ func (m *Meta) GetRemoveMountStubsRecursive() bool { return false } +func (m *Meta) GetValidExitCodes() []int32 { + if m != nil { + return m.ValidExitCodes + } + return nil +} + type HostIP struct { Host string `protobuf:"bytes,1,opt,name=Host,proto3" json:"Host,omitempty"` IP string `protobuf:"bytes,2,opt,name=IP,proto3" json:"IP,omitempty"` @@ -2901,173 +2909,175 @@ func init() { func init() { proto.RegisterFile("ops.proto", fileDescriptor_8de16154b2733812) } var fileDescriptor_8de16154b2733812 = []byte{ - // 2656 bytes of a gzipped FileDescriptorProto + // 2678 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x59, 0xcf, 0x6f, 0x1b, 0xc7, 0xf5, 0x17, 0x7f, 0x93, 0x8f, 0x14, 0xcd, 0x8c, 0x9d, 0x84, 0xd1, 0xd7, 0x5f, 0x59, 0xd9, 0xe4, 0x1b, 0xc8, 0xb2, 0x2d, 0x21, 0x0a, 0x10, 0xe7, 0x6b, 0x04, 0x45, 0x25, 0x91, 0x8a, 0x18, 0xdb, - 0xa2, 0x30, 0xb4, 0x9c, 0x1e, 0x0a, 0x18, 0xab, 0xe5, 0x90, 0x5a, 0x68, 0xb9, 0xbb, 0x98, 0x1d, + 0xa2, 0x30, 0xb4, 0x9c, 0x1e, 0x0a, 0x18, 0xab, 0xe5, 0x90, 0x5a, 0x68, 0xb9, 0xb3, 0xd8, 0x1d, 0x5a, 0x62, 0x0f, 0x3d, 0xf4, 0xd4, 0x63, 0x80, 0x02, 0xbd, 0x15, 0xfd, 0x27, 0x7a, 0x6c, 0x6f, - 0x3d, 0x04, 0xc8, 0x25, 0x40, 0x7b, 0x08, 0x7a, 0x48, 0x0b, 0xe7, 0xd2, 0x7f, 0xa2, 0x40, 0xf1, - 0xde, 0xcc, 0xfe, 0x20, 0x25, 0xc3, 0x71, 0x5b, 0xf4, 0xc4, 0x99, 0xcf, 0xfb, 0xcc, 0x9b, 0x37, - 0x6f, 0xde, 0x9b, 0x79, 0x3b, 0x84, 0x5a, 0x10, 0x46, 0x9b, 0xa1, 0x0c, 0x54, 0xc0, 0xf2, 0xe1, - 0xc9, 0xca, 0xbd, 0xb1, 0xab, 0x4e, 0xa7, 0x27, 0x9b, 0x4e, 0x30, 0xd9, 0x1a, 0x07, 0xe3, 0x60, - 0x8b, 0x44, 0x27, 0xd3, 0x11, 0xf5, 0xa8, 0x43, 0x2d, 0x3d, 0xc4, 0xfa, 0x7b, 0x1e, 0xf2, 0xfd, - 0x90, 0xbd, 0x0b, 0x65, 0xd7, 0x0f, 0xa7, 0x2a, 0x6a, 0xe7, 0xd6, 0x0a, 0xeb, 0xf5, 0xed, 0xda, - 0x66, 0x78, 0xb2, 0xd9, 0x43, 0x84, 0x1b, 0x01, 0x5b, 0x83, 0xa2, 0xb8, 0x10, 0x4e, 0x3b, 0xbf, - 0x96, 0x5b, 0xaf, 0x6f, 0x03, 0x12, 0xba, 0x17, 0xc2, 0xe9, 0x87, 0x07, 0x4b, 0x9c, 0x24, 0xec, - 0x03, 0x28, 0x47, 0xc1, 0x54, 0x3a, 0xa2, 0x5d, 0x20, 0x4e, 0x03, 0x39, 0x03, 0x42, 0x88, 0x65, + 0x3d, 0x04, 0xe8, 0x25, 0x40, 0x7b, 0x08, 0x7a, 0x48, 0x0b, 0xe7, 0xd2, 0x7b, 0xcf, 0x05, 0x8a, + 0xf7, 0x66, 0xf6, 0x07, 0x29, 0x19, 0x8e, 0xdb, 0xa2, 0x27, 0xce, 0x7e, 0xde, 0x67, 0xde, 0xbc, + 0x79, 0xf3, 0xde, 0xcc, 0x9b, 0x21, 0xd4, 0x64, 0x10, 0x6d, 0x06, 0xa1, 0x54, 0x92, 0xe5, 0x83, + 0x93, 0x95, 0x7b, 0x63, 0x57, 0x9d, 0x4e, 0x4f, 0x36, 0x1d, 0x39, 0xd9, 0x1a, 0xcb, 0xb1, 0xdc, + 0x22, 0xd1, 0xc9, 0x74, 0x44, 0x5f, 0xf4, 0x41, 0x2d, 0xdd, 0xc5, 0xfa, 0x5b, 0x1e, 0xf2, 0xfd, + 0x80, 0xbd, 0x0b, 0x65, 0xd7, 0x0f, 0xa6, 0x2a, 0x6a, 0xe7, 0xd6, 0x0a, 0xeb, 0xf5, 0xed, 0xda, + 0x66, 0x70, 0xb2, 0xd9, 0x43, 0x84, 0x1b, 0x01, 0x5b, 0x83, 0xa2, 0xb8, 0x10, 0x4e, 0x3b, 0xbf, + 0x96, 0x5b, 0xaf, 0x6f, 0x03, 0x12, 0xba, 0x17, 0xc2, 0xe9, 0x07, 0x07, 0x4b, 0x9c, 0x24, 0xec, + 0x03, 0x28, 0x47, 0x72, 0x1a, 0x3a, 0xa2, 0x5d, 0x20, 0x4e, 0x03, 0x39, 0x03, 0x42, 0x88, 0x65, 0xa4, 0xa8, 0x69, 0xe4, 0x7a, 0xa2, 0x5d, 0x4c, 0x35, 0xed, 0xbb, 0x9e, 0xe6, 0x90, 0x84, 0xbd, 0x07, 0xa5, 0x93, 0xa9, 0xeb, 0x0d, 0xdb, 0x25, 0xa2, 0xd4, 0x91, 0xb2, 0x8b, 0x00, 0x71, 0xb4, - 0x0c, 0x49, 0x13, 0x21, 0xc7, 0xa2, 0x5d, 0x4e, 0x49, 0x8f, 0x11, 0xd0, 0x24, 0x92, 0xe1, 0x5c, - 0x43, 0x77, 0x34, 0x6a, 0x57, 0xd2, 0xb9, 0x3a, 0xee, 0x68, 0xa4, 0xe7, 0x42, 0x09, 0x5b, 0x87, - 0x6a, 0xe8, 0xd9, 0x6a, 0x14, 0xc8, 0x49, 0x1b, 0x52, 0xbb, 0x8f, 0x0c, 0xc6, 0x13, 0x29, 0xbb, - 0x0f, 0x75, 0x27, 0xf0, 0x23, 0x25, 0x6d, 0xd7, 0x57, 0x51, 0xbb, 0x4e, 0xe4, 0x37, 0x91, 0xfc, - 0x45, 0x20, 0xcf, 0x84, 0xdc, 0x4b, 0x85, 0x3c, 0xcb, 0xdc, 0x2d, 0x42, 0x3e, 0x08, 0xad, 0x5f, - 0xe7, 0xa0, 0x1a, 0x6b, 0x65, 0x16, 0x34, 0x76, 0xa4, 0x73, 0xea, 0x2a, 0xe1, 0xa8, 0xa9, 0x14, - 0xed, 0xdc, 0x5a, 0x6e, 0xbd, 0xc6, 0xe7, 0x30, 0xd6, 0x84, 0x7c, 0x7f, 0x40, 0xfe, 0xae, 0xf1, - 0x7c, 0x7f, 0xc0, 0xda, 0x50, 0x79, 0x6a, 0x4b, 0xd7, 0xf6, 0x15, 0x39, 0xb8, 0xc6, 0xe3, 0x2e, - 0xbb, 0x09, 0xb5, 0xfe, 0xe0, 0xa9, 0x90, 0x91, 0x1b, 0xf8, 0xe4, 0xd6, 0x1a, 0x4f, 0x01, 0xb6, - 0x0a, 0xd0, 0x1f, 0xec, 0x0b, 0x1b, 0x95, 0x46, 0xed, 0xd2, 0x5a, 0x61, 0xbd, 0xc6, 0x33, 0x88, - 0xf5, 0x73, 0x28, 0xd1, 0x56, 0xb3, 0xcf, 0xa1, 0x3c, 0x74, 0xc7, 0x22, 0x52, 0xda, 0x9c, 0xdd, - 0xed, 0xaf, 0xbe, 0xbb, 0xb5, 0xf4, 0x97, 0xef, 0x6e, 0x6d, 0x64, 0x62, 0x2a, 0x08, 0x85, 0xef, - 0x04, 0xbe, 0xb2, 0x5d, 0x5f, 0xc8, 0x68, 0x6b, 0x1c, 0xdc, 0xd3, 0x43, 0x36, 0x3b, 0xf4, 0xc3, - 0x8d, 0x06, 0x76, 0x1b, 0x4a, 0xae, 0x3f, 0x14, 0x17, 0x64, 0x7f, 0x61, 0xf7, 0xba, 0x51, 0x55, - 0xef, 0x4f, 0x55, 0x38, 0x55, 0x3d, 0x14, 0x71, 0xcd, 0xb0, 0xbe, 0xce, 0x41, 0x59, 0x87, 0x12, - 0xbb, 0x09, 0xc5, 0x89, 0x50, 0x36, 0xcd, 0x5f, 0xdf, 0xae, 0xea, 0x2d, 0x55, 0x36, 0x27, 0x14, - 0xa3, 0x74, 0x12, 0x4c, 0xd1, 0xf7, 0xf9, 0x34, 0x4a, 0x1f, 0x23, 0xc2, 0x8d, 0x80, 0xfd, 0x1f, - 0x54, 0x7c, 0xa1, 0xce, 0x03, 0x79, 0x46, 0x3e, 0x6a, 0xea, 0xb0, 0x38, 0x14, 0xea, 0x71, 0x30, - 0x14, 0x3c, 0x96, 0xb1, 0xbb, 0x50, 0x8d, 0x84, 0x33, 0x95, 0xae, 0x9a, 0x91, 0xbf, 0x9a, 0xdb, - 0x2d, 0x0a, 0x56, 0x83, 0x11, 0x39, 0x61, 0xb0, 0x3b, 0x50, 0x8b, 0x84, 0x23, 0x85, 0x12, 0xfe, - 0x73, 0xf2, 0x5f, 0x7d, 0x7b, 0xd9, 0xd0, 0xa5, 0x50, 0x5d, 0xff, 0x39, 0x4f, 0xe5, 0xd6, 0xd7, - 0x79, 0x28, 0xa2, 0xcd, 0x8c, 0x41, 0xd1, 0x96, 0x63, 0x9d, 0x51, 0x35, 0x4e, 0x6d, 0xd6, 0x82, - 0x02, 0xea, 0xc8, 0x13, 0x84, 0x4d, 0x44, 0x9c, 0xf3, 0xa1, 0xd9, 0x50, 0x6c, 0xe2, 0xb8, 0x69, - 0x24, 0xa4, 0xd9, 0x47, 0x6a, 0xb3, 0xdb, 0x50, 0x0b, 0x65, 0x70, 0x31, 0x7b, 0xa6, 0x2d, 0x48, - 0xa3, 0x14, 0x41, 0x34, 0xa0, 0x1a, 0x9a, 0x16, 0xdb, 0x00, 0x10, 0x17, 0x4a, 0xda, 0x07, 0x41, - 0xa4, 0xa2, 0x76, 0x99, 0xac, 0xa5, 0xb8, 0x47, 0xa0, 0x77, 0xc4, 0x33, 0x52, 0xb6, 0x02, 0xd5, - 0xd3, 0x20, 0x52, 0xbe, 0x3d, 0x11, 0x94, 0x21, 0x35, 0x9e, 0xf4, 0x99, 0x05, 0xe5, 0xa9, 0xe7, - 0x4e, 0x5c, 0xd5, 0xae, 0xa5, 0x3a, 0x8e, 0x09, 0xe1, 0x46, 0x82, 0x51, 0xec, 0x8c, 0x65, 0x30, - 0x0d, 0x8f, 0x6c, 0x29, 0x7c, 0x45, 0xf9, 0x53, 0xe3, 0x73, 0x18, 0xfb, 0x14, 0xde, 0x91, 0x62, - 0x12, 0x3c, 0x17, 0xb4, 0x51, 0x03, 0x35, 0x3d, 0x89, 0x38, 0x3a, 0x36, 0x72, 0x9f, 0x0b, 0xca, - 0xa1, 0x2a, 0x7f, 0x39, 0xc1, 0xba, 0x0b, 0x65, 0x6d, 0x37, 0xba, 0x05, 0x5b, 0x26, 0x53, 0xa8, - 0x8d, 0x19, 0xd2, 0x3b, 0x8a, 0x33, 0xa4, 0x77, 0x64, 0x75, 0xa0, 0xac, 0x2d, 0x44, 0xf6, 0x21, - 0xae, 0xca, 0xb0, 0xb1, 0x8d, 0xd8, 0x20, 0x18, 0x29, 0x1d, 0x91, 0x9c, 0xda, 0xa4, 0xd5, 0x96, - 0xda, 0xff, 0x05, 0x4e, 0x6d, 0xeb, 0x21, 0xd4, 0x92, 0x9d, 0xa5, 0x29, 0x3a, 0x46, 0x4d, 0xbe, - 0xd7, 0xc1, 0x01, 0xe4, 0x2e, 0x3d, 0x29, 0xb5, 0xd1, 0x8d, 0x41, 0xa8, 0xdc, 0xc0, 0xb7, 0x3d, - 0x52, 0x54, 0xe5, 0x49, 0xdf, 0xfa, 0x53, 0x01, 0x4a, 0xb4, 0x30, 0xb6, 0x8e, 0x19, 0x11, 0x4e, - 0xf5, 0x0a, 0x0a, 0xbb, 0xcc, 0x64, 0x04, 0x50, 0xee, 0x25, 0x09, 0x81, 0x79, 0xb8, 0x82, 0xd1, - 0xe9, 0x09, 0x47, 0x05, 0xd2, 0xcc, 0x93, 0xf4, 0x71, 0xfe, 0x21, 0x66, 0xa8, 0x0e, 0x18, 0x6a, - 0xb3, 0x3b, 0x50, 0x0e, 0x28, 0xad, 0x28, 0x66, 0x5e, 0x92, 0x6c, 0x86, 0x82, 0xca, 0xa5, 0xb0, - 0x87, 0x81, 0xef, 0xcd, 0x28, 0x92, 0xaa, 0x3c, 0xe9, 0x63, 0xa0, 0x53, 0x1e, 0x3d, 0x99, 0x85, - 0xfa, 0x58, 0x6d, 0xea, 0x40, 0x7f, 0x1c, 0x83, 0x3c, 0x95, 0xe3, 0xc1, 0xf9, 0x64, 0x12, 0x8e, - 0xa2, 0x7e, 0xa8, 0xda, 0xd7, 0xd3, 0x90, 0x8c, 0x31, 0x9e, 0x48, 0x91, 0xe9, 0xd8, 0xce, 0xa9, - 0x40, 0xe6, 0x8d, 0x94, 0xb9, 0x67, 0x30, 0x9e, 0x48, 0xd3, 0x4c, 0x43, 0xea, 0x9b, 0x44, 0xcd, - 0x64, 0x1a, 0x72, 0x53, 0x39, 0x46, 0xe8, 0x60, 0x70, 0x80, 0xcc, 0xb7, 0xd2, 0xd3, 0x5d, 0x23, - 0xdc, 0x48, 0xf4, 0x6a, 0xa3, 0xa9, 0xa7, 0x7a, 0x9d, 0xf6, 0xdb, 0xda, 0x95, 0x71, 0x9f, 0xfd, - 0x3f, 0x34, 0xf0, 0x24, 0x13, 0xbe, 0x22, 0x4b, 0xda, 0x6d, 0x5a, 0xf0, 0x9b, 0xc9, 0x82, 0xf7, - 0x32, 0x42, 0x3e, 0x47, 0xb5, 0x56, 0xd3, 0xb5, 0xe3, 0x8e, 0x44, 0xee, 0xcf, 0x74, 0xa8, 0x15, - 0x38, 0xb5, 0xad, 0x1e, 0x54, 0xe3, 0xd5, 0x5d, 0x8a, 0xa0, 0x7b, 0x50, 0x89, 0x4e, 0x6d, 0xe9, - 0xfa, 0x63, 0xda, 0xdc, 0xe6, 0xf6, 0xf5, 0xc4, 0x19, 0x03, 0x8d, 0xe3, 0x02, 0x62, 0x8e, 0x15, - 0xc4, 0xd1, 0x78, 0x95, 0xae, 0x16, 0x14, 0xa6, 0xee, 0x90, 0xf4, 0x2c, 0x73, 0x6c, 0x22, 0x32, - 0x76, 0x75, 0x3c, 0x2f, 0x73, 0x6c, 0xa2, 0x7d, 0x93, 0x60, 0xa8, 0xaf, 0xdb, 0x65, 0x4e, 0xed, - 0xb9, 0x88, 0x2d, 0x2d, 0x44, 0xac, 0x17, 0xbb, 0xf5, 0xbf, 0x32, 0xdb, 0xaf, 0x72, 0x50, 0x8d, - 0x6b, 0x04, 0xbc, 0xa9, 0xdc, 0xa1, 0xf0, 0x95, 0x3b, 0x72, 0x85, 0x34, 0x13, 0x67, 0x10, 0x76, - 0x0f, 0x4a, 0xb6, 0x52, 0x32, 0x3e, 0xff, 0xdf, 0xce, 0x16, 0x18, 0x9b, 0x3b, 0x28, 0xe9, 0xfa, - 0x4a, 0xce, 0xb8, 0x66, 0xad, 0x7c, 0x02, 0x90, 0x82, 0x68, 0xeb, 0x99, 0x98, 0x19, 0xad, 0xd8, - 0x64, 0x37, 0xa0, 0xf4, 0xdc, 0xf6, 0xa6, 0x71, 0x32, 0xeb, 0xce, 0x83, 0xfc, 0x27, 0x39, 0xeb, - 0x0f, 0x79, 0xa8, 0x98, 0x82, 0x83, 0xdd, 0x85, 0x0a, 0x15, 0x1c, 0xc6, 0xa2, 0xab, 0x33, 0x37, - 0xa6, 0xb0, 0xad, 0xa4, 0x92, 0xca, 0xd8, 0x68, 0x54, 0xe9, 0x8a, 0xca, 0xd8, 0x98, 0xd6, 0x55, - 0x85, 0xa1, 0x18, 0x99, 0x92, 0xa9, 0x49, 0x05, 0x8a, 0x18, 0xb9, 0xbe, 0x8b, 0xfe, 0xe1, 0x28, - 0x62, 0x77, 0xe3, 0x55, 0x17, 0x49, 0xe3, 0x5b, 0x59, 0x8d, 0x97, 0x17, 0xdd, 0x83, 0x7a, 0x66, - 0x9a, 0x2b, 0x56, 0xfd, 0x7e, 0x76, 0xd5, 0x66, 0x4a, 0x52, 0xa7, 0xeb, 0xbd, 0xd4, 0x0b, 0xff, - 0x86, 0xff, 0x3e, 0x06, 0x48, 0x55, 0xfe, 0xf0, 0x93, 0xcf, 0xfa, 0x7d, 0x01, 0xa0, 0x1f, 0xe2, - 0xf5, 0x39, 0xb4, 0xe9, 0xc2, 0x6f, 0xb8, 0x63, 0x3f, 0x90, 0xe2, 0x19, 0x9d, 0x10, 0x34, 0xbe, - 0xca, 0xeb, 0x1a, 0xa3, 0x8c, 0x61, 0x3b, 0x50, 0x1f, 0x8a, 0xc8, 0x91, 0x2e, 0x05, 0x94, 0x71, - 0xfa, 0x2d, 0x5c, 0x53, 0xaa, 0x67, 0xb3, 0x93, 0x32, 0xb4, 0xaf, 0xb2, 0x63, 0xd8, 0x36, 0x34, - 0xc4, 0x45, 0x18, 0x48, 0x65, 0x66, 0xd1, 0x75, 0xe9, 0x35, 0x5d, 0xe1, 0x22, 0xae, 0x4f, 0x80, - 0xba, 0x48, 0x3b, 0xcc, 0x86, 0xa2, 0x63, 0x87, 0x91, 0xa9, 0x06, 0xda, 0x0b, 0xf3, 0xed, 0xd9, - 0xa1, 0x76, 0xda, 0xee, 0x47, 0xb8, 0xd6, 0x5f, 0xfc, 0xf5, 0xd6, 0x9d, 0x4c, 0x09, 0x35, 0x09, - 0x4e, 0x66, 0x5b, 0x14, 0x2f, 0x67, 0xae, 0xda, 0x9a, 0x2a, 0xd7, 0xdb, 0xb2, 0x43, 0x17, 0xd5, - 0xe1, 0xc0, 0x5e, 0x87, 0x93, 0x6a, 0xf6, 0x09, 0x34, 0x43, 0x19, 0x8c, 0xa5, 0x88, 0xa2, 0x67, - 0x74, 0xa1, 0x9a, 0x42, 0xf7, 0x0d, 0x73, 0xf1, 0x93, 0xe4, 0x33, 0x14, 0xf0, 0xe5, 0x30, 0xdb, - 0x5d, 0xf9, 0x11, 0xb4, 0x16, 0x57, 0xfc, 0x3a, 0xbb, 0xb7, 0x72, 0x1f, 0x6a, 0xc9, 0x0a, 0x5e, - 0x35, 0xb0, 0x9a, 0xdd, 0xf6, 0xdf, 0xe5, 0xa0, 0xac, 0xf3, 0x91, 0xdd, 0x87, 0x9a, 0x17, 0x38, - 0x36, 0x1a, 0x10, 0x7f, 0x54, 0xbc, 0x93, 0xa6, 0xeb, 0xe6, 0xa3, 0x58, 0xa6, 0xf7, 0x23, 0xe5, - 0x62, 0x78, 0xba, 0xfe, 0x28, 0x88, 0xf3, 0xa7, 0x99, 0x0e, 0xea, 0xf9, 0xa3, 0x80, 0x6b, 0xe1, - 0xca, 0x43, 0x68, 0xce, 0xab, 0xb8, 0xc2, 0xce, 0xf7, 0xe6, 0x03, 0x9d, 0x2e, 0x92, 0x64, 0x50, - 0xd6, 0xec, 0xfb, 0x50, 0x4b, 0x70, 0xb6, 0x71, 0xd9, 0xf0, 0x46, 0x76, 0x64, 0xc6, 0x56, 0xeb, - 0x97, 0x39, 0x80, 0xd4, 0x36, 0x3c, 0xe7, 0xf0, 0xf3, 0xc5, 0x4f, 0x0b, 0x8f, 0xa4, 0x4f, 0xf7, - 0xb6, 0xad, 0x6c, 0xb2, 0xa5, 0xc1, 0xa9, 0xcd, 0x36, 0x01, 0x86, 0x49, 0xae, 0xbf, 0xe4, 0x04, - 0xc8, 0x30, 0x50, 0xbf, 0x67, 0xfb, 0xe3, 0xa9, 0x3d, 0x16, 0xa6, 0x3a, 0x4c, 0xfa, 0x56, 0x1f, - 0xaa, 0xb1, 0x85, 0x6c, 0x0d, 0xea, 0x91, 0xb1, 0x0a, 0x2b, 0x70, 0x34, 0xa5, 0xc4, 0xb3, 0x10, - 0x56, 0xd2, 0xd2, 0xf6, 0xc7, 0x62, 0xae, 0x92, 0xe6, 0x88, 0x70, 0x23, 0xb0, 0xbe, 0x80, 0x12, - 0x01, 0x98, 0xbd, 0x91, 0xb2, 0xa5, 0x32, 0x45, 0xb9, 0xae, 0x3b, 0x83, 0x88, 0x4c, 0xda, 0x2d, - 0x62, 0x7c, 0x73, 0x4d, 0x60, 0xef, 0x63, 0x75, 0x3b, 0x34, 0xee, 0xbe, 0x8a, 0x87, 0x62, 0xeb, - 0x53, 0xa8, 0xc6, 0x30, 0x7a, 0xc5, 0x73, 0x7d, 0x61, 0x4c, 0xa4, 0x36, 0x7e, 0xcc, 0x38, 0xa7, - 0xb6, 0xb4, 0x1d, 0x25, 0x74, 0xf9, 0x53, 0xe2, 0x29, 0x60, 0xbd, 0x07, 0xf5, 0x4c, 0x52, 0x62, - 0x2c, 0x3e, 0xa5, 0x3d, 0xd6, 0x47, 0x83, 0xee, 0x58, 0x9f, 0xc1, 0xf2, 0x5c, 0x82, 0xe0, 0x4d, - 0xe6, 0x0e, 0xe3, 0x9b, 0x4c, 0xdf, 0x52, 0x97, 0xaa, 0x38, 0x06, 0xc5, 0x73, 0x61, 0x9f, 0x99, - 0x0a, 0x8e, 0xda, 0xd6, 0x6f, 0xf1, 0x9b, 0x2d, 0xae, 0xac, 0xff, 0x17, 0xe0, 0x54, 0xa9, 0xf0, - 0x19, 0x95, 0xda, 0x46, 0x59, 0x0d, 0x11, 0x62, 0xb0, 0x5b, 0x50, 0xc7, 0x4e, 0x64, 0xe4, 0x5a, - 0x35, 0x8d, 0x88, 0x34, 0xe1, 0x7f, 0xa0, 0x36, 0x4a, 0x86, 0x17, 0x4c, 0x7c, 0xc4, 0xa3, 0xdf, - 0x81, 0xaa, 0x1f, 0x18, 0x99, 0xde, 0xdb, 0x8a, 0x1f, 0x24, 0xe3, 0x6c, 0xcf, 0x33, 0xb2, 0x92, - 0x1e, 0x67, 0x7b, 0x1e, 0x09, 0xad, 0x3b, 0xf0, 0xc6, 0xa5, 0xaf, 0x4f, 0xf6, 0x16, 0x94, 0x47, - 0xae, 0xa7, 0xe8, 0xc6, 0xc2, 0x2f, 0x0d, 0xd3, 0xb3, 0xfe, 0x91, 0x03, 0x48, 0x63, 0x0b, 0x53, - 0x06, 0xaf, 0x1e, 0xe4, 0x34, 0xf4, 0x55, 0xe3, 0x41, 0x75, 0x62, 0x0e, 0x31, 0x13, 0x19, 0x37, - 0xe7, 0xe3, 0x71, 0x33, 0x3e, 0xe3, 0xf4, 0xf1, 0xb6, 0x6d, 0x8e, 0xb7, 0xd7, 0xf9, 0x42, 0x4c, - 0x66, 0xa0, 0x02, 0x2e, 0xfb, 0x60, 0x00, 0x69, 0xae, 0x73, 0x23, 0x59, 0x79, 0x08, 0xcb, 0x73, - 0x53, 0xfe, 0xc0, 0x0b, 0x2d, 0x3d, 0x8c, 0xb3, 0x89, 0xbe, 0x0d, 0x65, 0xfd, 0xd2, 0xc0, 0xd6, - 0xa1, 0x62, 0x3b, 0x3a, 0xc7, 0x33, 0xe7, 0x0c, 0x0a, 0x77, 0x08, 0xe6, 0xb1, 0xd8, 0xfa, 0x73, - 0x1e, 0x20, 0xc5, 0x5f, 0xa3, 0x8a, 0x7f, 0x00, 0xcd, 0x48, 0x38, 0x81, 0x3f, 0xb4, 0xe5, 0x8c, - 0xa4, 0xe6, 0x53, 0xf8, 0xaa, 0x21, 0x0b, 0xcc, 0x4c, 0x45, 0x5f, 0x78, 0x75, 0x45, 0xbf, 0x0e, - 0x45, 0x27, 0x08, 0x67, 0xe6, 0xde, 0x62, 0xf3, 0x0b, 0xd9, 0x0b, 0xc2, 0xd9, 0xc1, 0x12, 0x27, - 0x06, 0xdb, 0x84, 0xf2, 0xe4, 0x8c, 0xde, 0x5e, 0xf4, 0x37, 0xe4, 0x8d, 0x79, 0xee, 0xe3, 0x33, - 0x6c, 0x1f, 0x2c, 0x71, 0xc3, 0x62, 0x77, 0xa0, 0x34, 0x39, 0x1b, 0xba, 0xd2, 0xdc, 0x3c, 0xd7, - 0x17, 0xe9, 0x1d, 0x57, 0xd2, 0x53, 0x0b, 0x72, 0x98, 0x05, 0x79, 0x39, 0x31, 0x0f, 0x2d, 0xad, - 0x05, 0x6f, 0x4e, 0x0e, 0x96, 0x78, 0x5e, 0x4e, 0x76, 0xab, 0x50, 0xd6, 0x7e, 0xb5, 0xfe, 0x58, - 0x84, 0xe6, 0xbc, 0x95, 0xb8, 0xb3, 0x91, 0x74, 0xe2, 0x9d, 0x8d, 0xa4, 0x93, 0x7c, 0xec, 0xe4, - 0x33, 0x1f, 0x3b, 0x16, 0x94, 0x82, 0x73, 0x5f, 0xc8, 0xec, 0x23, 0xd3, 0xde, 0x69, 0x70, 0xee, - 0x63, 0xd5, 0xac, 0x45, 0x73, 0x45, 0x68, 0xc9, 0x14, 0xa1, 0xef, 0xc3, 0xf2, 0x28, 0xf0, 0xbc, - 0xe0, 0x7c, 0x30, 0x9b, 0x78, 0xae, 0x7f, 0x66, 0x2a, 0xd1, 0x79, 0x90, 0xad, 0xc3, 0xb5, 0xa1, - 0x2b, 0xd1, 0x1c, 0x53, 0xfd, 0x47, 0xb4, 0xf6, 0x2a, 0x5f, 0x84, 0xd9, 0xe7, 0xb0, 0x66, 0x2b, - 0x25, 0x26, 0xa1, 0x3a, 0xf6, 0x43, 0xdb, 0x39, 0xeb, 0x04, 0x0e, 0x65, 0xe1, 0x24, 0xb4, 0x95, - 0x7b, 0xe2, 0x7a, 0xae, 0x9a, 0x91, 0x33, 0xaa, 0xfc, 0x95, 0x3c, 0xf6, 0x01, 0x34, 0x1d, 0x29, - 0x6c, 0x25, 0x3a, 0x22, 0x52, 0x47, 0xb6, 0x3a, 0x6d, 0x57, 0x69, 0xe4, 0x02, 0x8a, 0x6b, 0xb0, - 0xd1, 0xda, 0x2f, 0x5c, 0x6f, 0xe8, 0xe0, 0x67, 0x6b, 0x4d, 0xaf, 0x61, 0x0e, 0x64, 0x9b, 0xc0, - 0x08, 0xe8, 0x4e, 0x42, 0x35, 0x4b, 0xa8, 0x40, 0xd4, 0x2b, 0x24, 0x78, 0xe0, 0x2a, 0x77, 0x22, - 0x22, 0x65, 0x4f, 0x42, 0xfa, 0x22, 0x2f, 0xf0, 0x14, 0x60, 0xb7, 0xa1, 0xe5, 0xfa, 0x8e, 0x37, - 0x1d, 0x8a, 0x67, 0x21, 0x2e, 0x44, 0xfa, 0x51, 0xbb, 0x41, 0xa7, 0xca, 0x35, 0x83, 0x1f, 0x19, - 0x18, 0xa9, 0xe2, 0x62, 0x81, 0xba, 0xac, 0xa9, 0x06, 0x4f, 0xa8, 0xfb, 0xb0, 0x6a, 0x7b, 0xe7, - 0xf6, 0x2c, 0xe2, 0x22, 0xf4, 0x6c, 0x47, 0x74, 0x2f, 0xdc, 0x48, 0xb9, 0xfe, 0x38, 0x5e, 0x6a, - 0xd4, 0x6e, 0x92, 0xbd, 0xaf, 0x60, 0x59, 0x5f, 0xe6, 0xa0, 0xb5, 0x18, 0xc0, 0xb8, 0xfd, 0x21, - 0x3a, 0xd1, 0x7c, 0xfc, 0x63, 0x3b, 0x09, 0x89, 0x7c, 0x26, 0x24, 0xe2, 0x3b, 0xb9, 0x90, 0xb9, - 0x93, 0x93, 0xf0, 0x2a, 0xbe, 0x3c, 0xbc, 0xe6, 0x1c, 0x56, 0x5a, 0x70, 0x98, 0xf5, 0x9b, 0x1c, - 0x5c, 0x5b, 0x48, 0x92, 0x1f, 0x6c, 0xd1, 0x1a, 0xd4, 0x27, 0xf6, 0x99, 0xd0, 0x4f, 0x27, 0x91, - 0xb9, 0x8a, 0xb2, 0xd0, 0x7f, 0xc0, 0x3e, 0x1f, 0x1a, 0xd9, 0xcc, 0xbc, 0xd2, 0xb6, 0x38, 0xd0, - 0x0e, 0x03, 0xb5, 0x1f, 0x4c, 0xcd, 0x9d, 0x1e, 0x07, 0x5a, 0x0c, 0x5e, 0x0e, 0xc7, 0xc2, 0x15, - 0xe1, 0x68, 0x1d, 0x42, 0x35, 0x36, 0x90, 0xdd, 0x32, 0x6f, 0x5b, 0xb9, 0xf4, 0xc9, 0xf6, 0x38, - 0x12, 0x12, 0x6d, 0xd7, 0x0f, 0x5d, 0xef, 0x42, 0x49, 0xd7, 0xba, 0xf9, 0xcb, 0x0c, 0x2d, 0xb1, - 0x06, 0x50, 0x31, 0x08, 0xdb, 0x80, 0xf2, 0xc9, 0x2c, 0x79, 0xe7, 0x31, 0xc7, 0x0e, 0xf6, 0x87, - 0x86, 0x81, 0x67, 0x99, 0x66, 0xb0, 0x1b, 0x50, 0x3c, 0x99, 0xf5, 0x3a, 0xfa, 0xeb, 0x15, 0x4f, - 0x44, 0xec, 0xed, 0x96, 0xb5, 0x41, 0xd6, 0x23, 0x68, 0x64, 0xc7, 0x25, 0x05, 0x42, 0x2e, 0x53, - 0x20, 0x24, 0x47, 0x7f, 0xfe, 0x55, 0x9f, 0x31, 0x1f, 0x03, 0xd0, 0x4b, 0xf4, 0xeb, 0x7e, 0xfe, - 0x7c, 0x08, 0x15, 0xf3, 0x82, 0xcd, 0x3e, 0x58, 0x78, 0x91, 0x6f, 0x26, 0xcf, 0xdb, 0x73, 0xcf, - 0xf2, 0xd6, 0x03, 0x2c, 0x84, 0xcf, 0x85, 0xec, 0xb8, 0xa3, 0xd1, 0xeb, 0x4e, 0xf7, 0x00, 0x9a, - 0xc7, 0x61, 0xf8, 0xaf, 0x8d, 0xfd, 0x29, 0x94, 0xf5, 0x43, 0x3a, 0x8e, 0xf1, 0xd0, 0x02, 0xb3, - 0x07, 0x4c, 0x17, 0xcb, 0x59, 0x93, 0xb8, 0x26, 0x20, 0x73, 0x8a, 0xf3, 0x99, 0xcd, 0x25, 0xe6, - 0xbc, 0x01, 0x5c, 0x13, 0x36, 0xd6, 0xa1, 0x62, 0xde, 0x6c, 0x59, 0x0d, 0x4a, 0xc7, 0x87, 0x83, - 0xee, 0x93, 0xd6, 0x12, 0xab, 0x42, 0xf1, 0xa0, 0x3f, 0x78, 0xd2, 0xca, 0x61, 0xeb, 0xb0, 0x7f, - 0xd8, 0x6d, 0xe5, 0x37, 0x6e, 0x43, 0x23, 0xfb, 0x6a, 0xcb, 0xea, 0x50, 0x19, 0xec, 0x1c, 0x76, - 0x76, 0xfb, 0x3f, 0x69, 0x2d, 0xb1, 0x06, 0x54, 0x7b, 0x87, 0x83, 0xee, 0xde, 0x31, 0xef, 0xb6, - 0x72, 0x1b, 0x3f, 0x86, 0x5a, 0xf2, 0x90, 0x85, 0x1a, 0x76, 0x7b, 0x87, 0x9d, 0xd6, 0x12, 0x03, - 0x28, 0x0f, 0xba, 0x7b, 0xbc, 0x8b, 0x7a, 0x2b, 0x50, 0x18, 0x0c, 0x0e, 0x5a, 0x79, 0x9c, 0x75, - 0x6f, 0x67, 0xef, 0xa0, 0xdb, 0x2a, 0x60, 0xf3, 0xc9, 0xe3, 0xa3, 0xfd, 0x41, 0xab, 0xb8, 0xf1, - 0x21, 0xbc, 0x71, 0xe9, 0x65, 0x08, 0x67, 0xec, 0x74, 0xf7, 0x77, 0x8e, 0x1f, 0xa1, 0x89, 0x65, - 0xc8, 0xf7, 0x0f, 0xb5, 0xa2, 0xfe, 0xfe, 0x7e, 0x2b, 0xbf, 0xf1, 0x31, 0x5c, 0x5b, 0x78, 0xda, - 0xa1, 0x09, 0x0f, 0x76, 0x78, 0x17, 0x27, 0xaf, 0x43, 0xe5, 0x88, 0xf7, 0x9e, 0xee, 0x3c, 0xe9, - 0xb6, 0x72, 0x28, 0x78, 0xd4, 0xdf, 0x7b, 0xd8, 0xed, 0xb4, 0xf2, 0xbb, 0x37, 0xbf, 0x7a, 0xb1, - 0x9a, 0xfb, 0xe6, 0xc5, 0x6a, 0xee, 0xdb, 0x17, 0xab, 0xb9, 0xbf, 0xbd, 0x58, 0xcd, 0x7d, 0xf9, - 0xfd, 0xea, 0xd2, 0x37, 0xdf, 0xaf, 0x2e, 0x7d, 0xfb, 0xfd, 0xea, 0xd2, 0x49, 0x99, 0xfe, 0xbd, - 0xf9, 0xe8, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xef, 0xce, 0x68, 0x38, 0xfd, 0x19, 0x00, 0x00, + 0x0c, 0x49, 0x13, 0x11, 0x8e, 0x45, 0xbb, 0x9c, 0x92, 0x1e, 0x23, 0xa0, 0x49, 0x24, 0xc3, 0xb1, + 0x86, 0xee, 0x68, 0xd4, 0xae, 0xa4, 0x63, 0x75, 0xdc, 0xd1, 0x48, 0x8f, 0x85, 0x12, 0xb6, 0x0e, + 0xd5, 0xc0, 0xb3, 0xd5, 0x48, 0x86, 0x93, 0x36, 0xa4, 0x76, 0x1f, 0x19, 0x8c, 0x27, 0x52, 0x76, + 0x1f, 0xea, 0x8e, 0xf4, 0x23, 0x15, 0xda, 0xae, 0xaf, 0xa2, 0x76, 0x9d, 0xc8, 0x6f, 0x22, 0xf9, + 0x0b, 0x19, 0x9e, 0x89, 0x70, 0x2f, 0x15, 0xf2, 0x2c, 0x73, 0xb7, 0x08, 0x79, 0x19, 0x58, 0xbf, + 0xcc, 0x41, 0x35, 0xd6, 0xca, 0x2c, 0x68, 0xec, 0x84, 0xce, 0xa9, 0xab, 0x84, 0xa3, 0xa6, 0xa1, + 0x68, 0xe7, 0xd6, 0x72, 0xeb, 0x35, 0x3e, 0x87, 0xb1, 0x26, 0xe4, 0xfb, 0x03, 0xf2, 0x77, 0x8d, + 0xe7, 0xfb, 0x03, 0xd6, 0x86, 0xca, 0x53, 0x3b, 0x74, 0x6d, 0x5f, 0x91, 0x83, 0x6b, 0x3c, 0xfe, + 0x64, 0x37, 0xa1, 0xd6, 0x1f, 0x3c, 0x15, 0x61, 0xe4, 0x4a, 0x9f, 0xdc, 0x5a, 0xe3, 0x29, 0xc0, + 0x56, 0x01, 0xfa, 0x83, 0x7d, 0x61, 0xa3, 0xd2, 0xa8, 0x5d, 0x5a, 0x2b, 0xac, 0xd7, 0x78, 0x06, + 0xb1, 0x7e, 0x0a, 0x25, 0x5a, 0x6a, 0xf6, 0x39, 0x94, 0x87, 0xee, 0x58, 0x44, 0x4a, 0x9b, 0xb3, + 0xbb, 0xfd, 0xd5, 0xb7, 0xb7, 0x96, 0xfe, 0xfc, 0xed, 0xad, 0x8d, 0x4c, 0x4c, 0xc9, 0x40, 0xf8, + 0x8e, 0xf4, 0x95, 0xed, 0xfa, 0x22, 0x8c, 0xb6, 0xc6, 0xf2, 0x9e, 0xee, 0xb2, 0xd9, 0xa1, 0x1f, + 0x6e, 0x34, 0xb0, 0xdb, 0x50, 0x72, 0xfd, 0xa1, 0xb8, 0x20, 0xfb, 0x0b, 0xbb, 0xd7, 0x8d, 0xaa, + 0x7a, 0x7f, 0xaa, 0x82, 0xa9, 0xea, 0xa1, 0x88, 0x6b, 0x86, 0xf5, 0x87, 0x1c, 0x94, 0x75, 0x28, + 0xb1, 0x9b, 0x50, 0x9c, 0x08, 0x65, 0xd3, 0xf8, 0xf5, 0xed, 0xaa, 0x5e, 0x52, 0x65, 0x73, 0x42, + 0x31, 0x4a, 0x27, 0x72, 0x8a, 0xbe, 0xcf, 0xa7, 0x51, 0xfa, 0x18, 0x11, 0x6e, 0x04, 0xec, 0xff, + 0xa0, 0xe2, 0x0b, 0x75, 0x2e, 0xc3, 0x33, 0xf2, 0x51, 0x53, 0x87, 0xc5, 0xa1, 0x50, 0x8f, 0xe5, + 0x50, 0xf0, 0x58, 0xc6, 0xee, 0x42, 0x35, 0x12, 0xce, 0x34, 0x74, 0xd5, 0x8c, 0xfc, 0xd5, 0xdc, + 0x6e, 0x51, 0xb0, 0x1a, 0x8c, 0xc8, 0x09, 0x83, 0xdd, 0x81, 0x5a, 0x24, 0x9c, 0x50, 0x28, 0xe1, + 0x3f, 0x27, 0xff, 0xd5, 0xb7, 0x97, 0x0d, 0x3d, 0x14, 0xaa, 0xeb, 0x3f, 0xe7, 0xa9, 0xdc, 0xfa, + 0x7b, 0x1e, 0x8a, 0x68, 0x33, 0x63, 0x50, 0xb4, 0xc3, 0xb1, 0xce, 0xa8, 0x1a, 0xa7, 0x36, 0x6b, + 0x41, 0x01, 0x75, 0xe4, 0x09, 0xc2, 0x26, 0x22, 0xce, 0xf9, 0xd0, 0x2c, 0x28, 0x36, 0xb1, 0xdf, + 0x34, 0x12, 0xa1, 0x59, 0x47, 0x6a, 0xb3, 0xdb, 0x50, 0x0b, 0x42, 0x79, 0x31, 0x7b, 0xa6, 0x2d, + 0x48, 0xa3, 0x14, 0x41, 0x34, 0xa0, 0x1a, 0x98, 0x16, 0xdb, 0x00, 0x10, 0x17, 0x2a, 0xb4, 0x0f, + 0x64, 0xa4, 0xa2, 0x76, 0x99, 0xac, 0xa5, 0xb8, 0x47, 0xa0, 0x77, 0xc4, 0x33, 0x52, 0xb6, 0x02, + 0xd5, 0x53, 0x19, 0x29, 0xdf, 0x9e, 0x08, 0xca, 0x90, 0x1a, 0x4f, 0xbe, 0x99, 0x05, 0xe5, 0xa9, + 0xe7, 0x4e, 0x5c, 0xd5, 0xae, 0xa5, 0x3a, 0x8e, 0x09, 0xe1, 0x46, 0x82, 0x51, 0xec, 0x8c, 0x43, + 0x39, 0x0d, 0x8e, 0xec, 0x50, 0xf8, 0x8a, 0xf2, 0xa7, 0xc6, 0xe7, 0x30, 0xf6, 0x29, 0xbc, 0x13, + 0x8a, 0x89, 0x7c, 0x2e, 0x68, 0xa1, 0x06, 0x6a, 0x7a, 0x12, 0x71, 0x74, 0x6c, 0xe4, 0x3e, 0x17, + 0x94, 0x43, 0x55, 0xfe, 0x72, 0x02, 0xfb, 0x00, 0x9a, 0xcf, 0x6d, 0xcf, 0x1d, 0x76, 0x2f, 0x5c, + 0xb5, 0x27, 0x87, 0x22, 0x6a, 0x37, 0xd6, 0x0a, 0xeb, 0x25, 0xbe, 0x80, 0x5a, 0x77, 0xa1, 0xac, + 0xe7, 0x87, 0xee, 0xc3, 0x96, 0xc9, 0x28, 0x6a, 0x63, 0x26, 0xf5, 0x8e, 0xe2, 0x4c, 0xea, 0x1d, + 0x59, 0x1d, 0x28, 0xeb, 0x99, 0x20, 0xfb, 0x10, 0x67, 0x6f, 0xd8, 0xd8, 0x46, 0x6c, 0x20, 0x47, + 0x4a, 0x47, 0x2e, 0xa7, 0x36, 0x69, 0xb5, 0x43, 0xbd, 0x4e, 0x05, 0x4e, 0x6d, 0xeb, 0x21, 0xd4, + 0x92, 0x08, 0xa0, 0x21, 0x3a, 0x46, 0x4d, 0xbe, 0xd7, 0xc1, 0x0e, 0xe4, 0x56, 0x3d, 0x28, 0xb5, + 0xd1, 0xdd, 0x32, 0x50, 0xae, 0xf4, 0x6d, 0x8f, 0x14, 0x55, 0x79, 0xf2, 0x6d, 0xfd, 0xb1, 0x00, + 0x25, 0x72, 0x00, 0x5b, 0xc7, 0xcc, 0x09, 0xa6, 0x7a, 0x06, 0x85, 0x5d, 0x66, 0x32, 0x07, 0x28, + 0x47, 0x93, 0xc4, 0xc1, 0x7c, 0x5d, 0xc1, 0x28, 0xf6, 0x84, 0xa3, 0x64, 0x68, 0xc6, 0x49, 0xbe, + 0x71, 0xfc, 0x21, 0x66, 0xb2, 0x0e, 0x2c, 0x6a, 0xb3, 0x3b, 0x50, 0x96, 0x94, 0x7e, 0x14, 0x5b, + 0x2f, 0x49, 0x4a, 0x43, 0x41, 0xe5, 0xa1, 0xb0, 0x87, 0xd2, 0xf7, 0x66, 0x14, 0x71, 0x55, 0x9e, + 0x7c, 0x63, 0x42, 0x50, 0xbe, 0x3d, 0x99, 0x05, 0x7a, 0xfb, 0x6d, 0xea, 0x84, 0x78, 0x1c, 0x83, + 0x3c, 0x95, 0xe3, 0x06, 0xfb, 0x64, 0x12, 0x8c, 0xa2, 0x7e, 0xa0, 0xda, 0xd7, 0xd3, 0xd0, 0x8d, + 0x31, 0x9e, 0x48, 0x91, 0xe9, 0xd8, 0xce, 0xa9, 0x40, 0xe6, 0x8d, 0x94, 0xb9, 0x67, 0x30, 0x9e, + 0x48, 0xd3, 0x8c, 0x44, 0xea, 0x9b, 0x44, 0xcd, 0x64, 0x24, 0x72, 0x53, 0x39, 0x46, 0xf2, 0x60, + 0x70, 0x80, 0xcc, 0xb7, 0xd2, 0x53, 0x40, 0x23, 0xdc, 0x48, 0xf4, 0x6c, 0xa3, 0xa9, 0xa7, 0x7a, + 0x9d, 0xf6, 0xdb, 0xda, 0x95, 0xf1, 0x37, 0xfb, 0x7f, 0x68, 0xe0, 0x8e, 0x27, 0x7c, 0x45, 0x96, + 0xb4, 0xdb, 0x34, 0xe1, 0x37, 0x93, 0x09, 0xef, 0x65, 0x84, 0x7c, 0x8e, 0x6a, 0xad, 0xa6, 0x73, + 0xc7, 0x15, 0x89, 0xdc, 0x9f, 0xe8, 0x50, 0x2b, 0x70, 0x6a, 0x5b, 0x3d, 0xa8, 0xc6, 0xb3, 0xbb, + 0x14, 0x41, 0xf7, 0xa0, 0x12, 0x9d, 0xda, 0xa1, 0xeb, 0x8f, 0x69, 0x71, 0x9b, 0xdb, 0xd7, 0x13, + 0x67, 0x0c, 0x34, 0x8e, 0x13, 0x88, 0x39, 0x96, 0x8c, 0xa3, 0xf1, 0x2a, 0x5d, 0x2d, 0x28, 0x4c, + 0xdd, 0x21, 0xe9, 0x59, 0xe6, 0xd8, 0x44, 0x64, 0xec, 0xea, 0x78, 0x5e, 0xe6, 0xd8, 0x44, 0xfb, + 0x26, 0x72, 0xa8, 0x8f, 0xe5, 0x65, 0x4e, 0xed, 0xb9, 0x88, 0x2d, 0x2d, 0x44, 0xac, 0x17, 0xbb, + 0xf5, 0xbf, 0x32, 0xda, 0x2f, 0x72, 0x50, 0x8d, 0x6b, 0x09, 0x3c, 0xd1, 0xdc, 0xa1, 0xf0, 0x95, + 0x3b, 0x72, 0x45, 0x68, 0x06, 0xce, 0x20, 0xec, 0x1e, 0x94, 0x6c, 0xa5, 0xc2, 0xf8, 0x9c, 0x78, + 0x3b, 0x5b, 0x88, 0x6c, 0xee, 0xa0, 0xa4, 0xeb, 0xab, 0x70, 0xc6, 0x35, 0x6b, 0xe5, 0x13, 0x80, + 0x14, 0x44, 0x5b, 0xcf, 0xc4, 0xcc, 0x68, 0xc5, 0x26, 0xbb, 0x01, 0xa5, 0xe7, 0xb6, 0x37, 0x8d, + 0x93, 0x59, 0x7f, 0x3c, 0xc8, 0x7f, 0x92, 0xb3, 0x7e, 0x97, 0x87, 0x8a, 0x29, 0x4c, 0xd8, 0x5d, + 0xa8, 0x50, 0x61, 0x62, 0x2c, 0xba, 0x3a, 0x73, 0x63, 0x0a, 0xdb, 0x4a, 0x2a, 0xae, 0x8c, 0x8d, + 0x46, 0x95, 0xae, 0xbc, 0x8c, 0x8d, 0x69, 0xfd, 0x55, 0x18, 0x8a, 0x91, 0x29, 0xad, 0x9a, 0x54, + 0xc8, 0x88, 0x91, 0xeb, 0xbb, 0xe8, 0x1f, 0x8e, 0x22, 0x76, 0x37, 0x9e, 0x75, 0x91, 0x34, 0xbe, + 0x95, 0xd5, 0x78, 0x79, 0xd2, 0x3d, 0xa8, 0x67, 0x86, 0xb9, 0x62, 0xd6, 0xef, 0x67, 0x67, 0x6d, + 0x86, 0x24, 0x75, 0xba, 0x2e, 0x4c, 0xbd, 0xf0, 0x6f, 0xf8, 0xef, 0x63, 0x80, 0x54, 0xe5, 0xf7, + 0xdf, 0xf9, 0xac, 0xdf, 0x16, 0x00, 0xfa, 0x01, 0x1e, 0xb3, 0x43, 0x9b, 0x0a, 0x83, 0x86, 0x3b, + 0xf6, 0x65, 0x28, 0x9e, 0xd1, 0x0e, 0x41, 0xfd, 0xab, 0xbc, 0xae, 0x31, 0xca, 0x18, 0xb6, 0x03, + 0xf5, 0xa1, 0x88, 0x9c, 0xd0, 0xa5, 0x80, 0x32, 0x4e, 0xbf, 0x85, 0x73, 0x4a, 0xf5, 0x6c, 0x76, + 0x52, 0x86, 0xf6, 0x55, 0xb6, 0x0f, 0xdb, 0x86, 0x86, 0xb8, 0x08, 0x64, 0xa8, 0xcc, 0x28, 0xba, + 0x7e, 0xbd, 0xa6, 0x2b, 0x61, 0xc4, 0xf5, 0x0e, 0x50, 0x17, 0xe9, 0x07, 0xb3, 0xa1, 0xe8, 0xd8, + 0x41, 0x64, 0xaa, 0x86, 0xf6, 0xc2, 0x78, 0x7b, 0x76, 0xa0, 0x9d, 0xb6, 0xfb, 0x11, 0xce, 0xf5, + 0x67, 0x7f, 0xb9, 0x75, 0x27, 0x53, 0x6a, 0x4d, 0xe4, 0xc9, 0x6c, 0x8b, 0xe2, 0xe5, 0xcc, 0x55, + 0x5b, 0x53, 0xe5, 0x7a, 0x5b, 0x76, 0xe0, 0xa2, 0x3a, 0xec, 0xd8, 0xeb, 0x70, 0x52, 0xcd, 0x3e, + 0x81, 0x66, 0x10, 0xca, 0x71, 0x28, 0xa2, 0xe8, 0x19, 0x1d, 0xbc, 0xa6, 0x20, 0x7e, 0xc3, 0x14, + 0x08, 0x24, 0xf9, 0x0c, 0x05, 0x7c, 0x39, 0xc8, 0x7e, 0xae, 0xfc, 0x00, 0x5a, 0x8b, 0x33, 0x7e, + 0x9d, 0xd5, 0x5b, 0xb9, 0x0f, 0xb5, 0x64, 0x06, 0xaf, 0xea, 0x58, 0xcd, 0x2e, 0xfb, 0x6f, 0x72, + 0x50, 0xd6, 0xf9, 0xc8, 0xee, 0x43, 0xcd, 0x93, 0x8e, 0x8d, 0x06, 0xc4, 0x97, 0x8f, 0x77, 0xd2, + 0x74, 0xdd, 0x7c, 0x14, 0xcb, 0xf4, 0x7a, 0xa4, 0x5c, 0x0c, 0x4f, 0xd7, 0x1f, 0xc9, 0x38, 0x7f, + 0x9a, 0x69, 0xa7, 0x9e, 0x3f, 0x92, 0x5c, 0x0b, 0x57, 0x1e, 0x42, 0x73, 0x5e, 0xc5, 0x15, 0x76, + 0xbe, 0x37, 0x1f, 0xe8, 0x74, 0x90, 0x24, 0x9d, 0xb2, 0x66, 0xdf, 0x87, 0x5a, 0x82, 0xb3, 0x8d, + 0xcb, 0x86, 0x37, 0xb2, 0x3d, 0x33, 0xb6, 0x5a, 0x3f, 0xcf, 0x01, 0xa4, 0xb6, 0xe1, 0x3e, 0x87, + 0xd7, 0x1c, 0x3f, 0x2d, 0x3c, 0x92, 0x6f, 0x3a, 0xb7, 0x6d, 0x65, 0x93, 0x2d, 0x0d, 0x4e, 0x6d, + 0xb6, 0x09, 0x30, 0x4c, 0x72, 0xfd, 0x25, 0x3b, 0x40, 0x86, 0x81, 0xfa, 0x3d, 0xdb, 0x1f, 0x4f, + 0xed, 0xb1, 0x30, 0x55, 0x64, 0xf2, 0x6d, 0xf5, 0xa1, 0x1a, 0x5b, 0xc8, 0xd6, 0xa0, 0x1e, 0x19, + 0xab, 0xb0, 0x52, 0x47, 0x53, 0x4a, 0x3c, 0x0b, 0x61, 0xc5, 0x1d, 0xda, 0xfe, 0x58, 0xcc, 0x55, + 0xdc, 0x1c, 0x11, 0x6e, 0x04, 0xd6, 0x17, 0x50, 0x22, 0x00, 0xb3, 0x37, 0x52, 0x76, 0xa8, 0x4c, + 0xf1, 0xae, 0xeb, 0x53, 0x19, 0x91, 0x49, 0xbb, 0x45, 0x8c, 0x6f, 0xae, 0x09, 0xec, 0x7d, 0xac, + 0x82, 0x87, 0xc6, 0xdd, 0x57, 0xf1, 0x50, 0x6c, 0x7d, 0x0a, 0xd5, 0x18, 0x46, 0xaf, 0x78, 0xae, + 0x2f, 0x8c, 0x89, 0xd4, 0xc6, 0x4b, 0x8f, 0x73, 0x6a, 0x87, 0xb6, 0xa3, 0x84, 0x2e, 0x7f, 0x4a, + 0x3c, 0x05, 0xac, 0xf7, 0xa0, 0x9e, 0x49, 0x4a, 0x8c, 0xc5, 0xa7, 0xb4, 0xc6, 0x7a, 0x6b, 0xd0, + 0x1f, 0xd6, 0x67, 0xb0, 0x3c, 0x97, 0x20, 0x78, 0x92, 0xb9, 0xc3, 0xf8, 0x24, 0xd3, 0xa7, 0xd4, + 0xa5, 0x2a, 0x8e, 0x41, 0xf1, 0x5c, 0xd8, 0x67, 0xa6, 0x82, 0xa3, 0xb6, 0xf5, 0x6b, 0xbc, 0xdb, + 0xc5, 0x15, 0xf8, 0xff, 0x02, 0x9c, 0x2a, 0x15, 0x3c, 0xa3, 0x92, 0xdc, 0x28, 0xab, 0x21, 0x42, + 0x0c, 0x76, 0x0b, 0xea, 0xf8, 0x11, 0x19, 0xb9, 0x56, 0x4d, 0x3d, 0x22, 0x4d, 0xf8, 0x1f, 0xa8, + 0x8d, 0x92, 0xee, 0x05, 0x13, 0x1f, 0x71, 0xef, 0x77, 0xa0, 0xea, 0x4b, 0x23, 0xd3, 0x6b, 0x5b, + 0xf1, 0x65, 0xd2, 0xcf, 0xf6, 0x3c, 0x23, 0x2b, 0xe9, 0x7e, 0xb6, 0xe7, 0x91, 0xd0, 0xba, 0x03, + 0x6f, 0x5c, 0xba, 0xa5, 0xb2, 0xb7, 0xa0, 0x3c, 0x72, 0x3d, 0x45, 0x27, 0x16, 0xde, 0x48, 0xcc, + 0x97, 0xf5, 0x8f, 0x1c, 0x40, 0x1a, 0x5b, 0x98, 0x32, 0x78, 0xf4, 0x20, 0xa7, 0xa1, 0x8f, 0x1a, + 0x0f, 0xaa, 0x13, 0xb3, 0x89, 0x99, 0xc8, 0xb8, 0x39, 0x1f, 0x8f, 0x9b, 0xf1, 0x1e, 0xa7, 0xb7, + 0xb7, 0x6d, 0xb3, 0xbd, 0xbd, 0xce, 0x4d, 0x32, 0x19, 0x81, 0x0a, 0xb8, 0xec, 0xc3, 0x02, 0xa4, + 0xb9, 0xce, 0x8d, 0x64, 0xe5, 0x21, 0x2c, 0xcf, 0x0d, 0xf9, 0x3d, 0x0f, 0xb4, 0x74, 0x33, 0xce, + 0x26, 0xfa, 0x36, 0x94, 0xf5, 0x8b, 0x04, 0x5b, 0x87, 0x8a, 0xed, 0xe8, 0x1c, 0xcf, 0xec, 0x33, + 0x28, 0xdc, 0x21, 0x98, 0xc7, 0x62, 0xeb, 0x4f, 0x79, 0x80, 0x14, 0x7f, 0x8d, 0x2a, 0xfe, 0x01, + 0x34, 0x23, 0xe1, 0x48, 0x7f, 0x68, 0x87, 0x33, 0x92, 0x9a, 0x2b, 0xf3, 0x55, 0x5d, 0x16, 0x98, + 0x99, 0x8a, 0xbe, 0xf0, 0xea, 0x8a, 0x7e, 0x1d, 0x8a, 0x8e, 0x0c, 0x66, 0xe6, 0xdc, 0x62, 0xf3, + 0x13, 0xd9, 0x93, 0xc1, 0xec, 0x60, 0x89, 0x13, 0x83, 0x6d, 0x42, 0x79, 0x72, 0x46, 0x6f, 0x34, + 0xfa, 0xae, 0x79, 0x63, 0x9e, 0xfb, 0xf8, 0x0c, 0xdb, 0x07, 0x4b, 0xdc, 0xb0, 0xd8, 0x1d, 0x28, + 0x4d, 0xce, 0x86, 0x6e, 0x68, 0x4e, 0x9e, 0xeb, 0x8b, 0xf4, 0x8e, 0x1b, 0xd2, 0x93, 0x0c, 0x72, + 0x98, 0x05, 0xf9, 0x70, 0x62, 0x1e, 0x64, 0x5a, 0x0b, 0xde, 0x9c, 0x1c, 0x2c, 0xf1, 0x7c, 0x38, + 0xd9, 0xad, 0x42, 0x59, 0xfb, 0xd5, 0xfa, 0x7d, 0x11, 0x9a, 0xf3, 0x56, 0xe2, 0xca, 0x46, 0xa1, + 0x13, 0xaf, 0x6c, 0x14, 0x3a, 0xc9, 0x65, 0x27, 0x9f, 0xb9, 0xec, 0x58, 0x50, 0x92, 0xe7, 0xbe, + 0x08, 0xb3, 0x8f, 0x51, 0x7b, 0xa7, 0xf2, 0xdc, 0xc7, 0xaa, 0x59, 0x8b, 0xe6, 0x8a, 0xd0, 0x92, + 0x29, 0x42, 0xdf, 0x87, 0xe5, 0x91, 0xf4, 0x3c, 0x79, 0x3e, 0x98, 0x4d, 0x3c, 0xd7, 0x3f, 0x33, + 0x95, 0xe8, 0x3c, 0xc8, 0xd6, 0xe1, 0xda, 0xd0, 0x0d, 0xd1, 0x1c, 0x53, 0xfd, 0x47, 0x34, 0xf7, + 0x2a, 0x5f, 0x84, 0xd9, 0xe7, 0xb0, 0x66, 0x2b, 0x25, 0x26, 0x81, 0x3a, 0xf6, 0x03, 0xdb, 0x39, + 0xeb, 0x48, 0x87, 0xb2, 0x70, 0x12, 0xd8, 0xca, 0x3d, 0x71, 0x3d, 0x57, 0xcd, 0xc8, 0x19, 0x55, + 0xfe, 0x4a, 0x1e, 0xde, 0x86, 0x9d, 0x50, 0xd8, 0x4a, 0x74, 0x44, 0xa4, 0x8e, 0x6c, 0x75, 0xda, + 0xae, 0x52, 0xcf, 0x05, 0x14, 0xe7, 0x60, 0xa3, 0xb5, 0x5f, 0xb8, 0xde, 0xd0, 0xc1, 0x6b, 0x6b, + 0x4d, 0xcf, 0x61, 0x0e, 0x64, 0x9b, 0xc0, 0x08, 0xe8, 0x4e, 0x02, 0x35, 0x4b, 0xa8, 0x40, 0xd4, + 0x2b, 0x24, 0xb8, 0xe1, 0x2a, 0x77, 0x22, 0x22, 0x65, 0x4f, 0x02, 0xba, 0xb9, 0x17, 0x78, 0x0a, + 0xb0, 0xdb, 0xd0, 0x72, 0x7d, 0xc7, 0x9b, 0x0e, 0xc5, 0xb3, 0x00, 0x27, 0x12, 0xfa, 0xfa, 0xae, + 0x5e, 0xe3, 0xd7, 0x0c, 0x7e, 0x64, 0x60, 0xa4, 0x8a, 0x8b, 0x05, 0xea, 0xb2, 0xa6, 0x1a, 0x3c, + 0xa1, 0xee, 0xc3, 0xaa, 0xed, 0x9d, 0xdb, 0xb3, 0x88, 0x8b, 0xc0, 0xb3, 0x1d, 0xd1, 0xbd, 0x70, + 0x23, 0xe5, 0xfa, 0xe3, 0x78, 0xaa, 0x51, 0xbb, 0x49, 0xf6, 0xbe, 0x82, 0x65, 0x7d, 0x99, 0x83, + 0xd6, 0x62, 0x00, 0xe3, 0xf2, 0x07, 0xe8, 0x44, 0x73, 0xf9, 0xc7, 0x76, 0x12, 0x12, 0xf9, 0x4c, + 0x48, 0xc4, 0x67, 0x72, 0x21, 0x73, 0x26, 0x27, 0xe1, 0x55, 0x7c, 0x79, 0x78, 0xcd, 0x39, 0xac, + 0xb4, 0xe0, 0x30, 0xeb, 0x57, 0x39, 0xb8, 0xb6, 0x90, 0x24, 0xdf, 0xdb, 0xa2, 0x35, 0xa8, 0x4f, + 0xec, 0x33, 0xa1, 0x9f, 0x58, 0x22, 0x73, 0x14, 0x65, 0xa1, 0xff, 0x80, 0x7d, 0x3e, 0x34, 0xb2, + 0x99, 0x79, 0xa5, 0x6d, 0x71, 0xa0, 0x1d, 0x4a, 0xb5, 0x2f, 0xa7, 0xe6, 0x4c, 0x8f, 0x03, 0x2d, + 0x06, 0x2f, 0x87, 0x63, 0xe1, 0x8a, 0x70, 0xb4, 0x0e, 0xa1, 0x1a, 0x1b, 0xc8, 0x6e, 0x99, 0x37, + 0xb0, 0x5c, 0xfa, 0xb4, 0x7b, 0x1c, 0x89, 0x10, 0x6d, 0xd7, 0x0f, 0x62, 0xef, 0x42, 0x49, 0xd7, + 0xba, 0xf9, 0xcb, 0x0c, 0x2d, 0xb1, 0x06, 0x50, 0x31, 0x08, 0xdb, 0x80, 0xf2, 0xc9, 0x2c, 0x79, + 0xe7, 0x31, 0xdb, 0x0e, 0x7e, 0x0f, 0x0d, 0x03, 0xf7, 0x32, 0xcd, 0x60, 0x37, 0xa0, 0x78, 0x32, + 0xeb, 0x75, 0xf4, 0xed, 0x15, 0x77, 0x44, 0xfc, 0xda, 0x2d, 0x6b, 0x83, 0xac, 0x47, 0xd0, 0xc8, + 0xf6, 0x4b, 0x0a, 0x84, 0x5c, 0xa6, 0x40, 0x48, 0xb6, 0xfe, 0xfc, 0xab, 0xae, 0x31, 0x1f, 0x03, + 0xd0, 0x8b, 0xf5, 0xeb, 0x5e, 0x7f, 0x3e, 0x84, 0x8a, 0x79, 0xe9, 0x66, 0x1f, 0x2c, 0xbc, 0xdc, + 0x37, 0x93, 0x67, 0xf0, 0xb9, 0xe7, 0x7b, 0xeb, 0x01, 0x16, 0xc2, 0xe7, 0x22, 0xec, 0xb8, 0xa3, + 0xd1, 0xeb, 0x0e, 0xf7, 0x00, 0x9a, 0xc7, 0x41, 0xf0, 0xaf, 0xf5, 0xfd, 0x31, 0x94, 0xf5, 0x83, + 0x3b, 0xf6, 0xf1, 0xd0, 0x02, 0xb3, 0x06, 0x4c, 0x17, 0xcb, 0x59, 0x93, 0xb8, 0x26, 0x20, 0x73, + 0x8a, 0xe3, 0x99, 0xc5, 0x25, 0xe6, 0xbc, 0x01, 0x5c, 0x13, 0x36, 0xd6, 0xa1, 0x62, 0xde, 0x76, + 0x59, 0x0d, 0x4a, 0xc7, 0x87, 0x83, 0xee, 0x93, 0xd6, 0x12, 0xab, 0x42, 0xf1, 0xa0, 0x3f, 0x78, + 0xd2, 0xca, 0x61, 0xeb, 0xb0, 0x7f, 0xd8, 0x6d, 0xe5, 0x37, 0x6e, 0x43, 0x23, 0xfb, 0xba, 0xcb, + 0xea, 0x50, 0x19, 0xec, 0x1c, 0x76, 0x76, 0xfb, 0x3f, 0x6a, 0x2d, 0xb1, 0x06, 0x54, 0x7b, 0x87, + 0x83, 0xee, 0xde, 0x31, 0xef, 0xb6, 0x72, 0x1b, 0x3f, 0x84, 0x5a, 0xf2, 0x90, 0x85, 0x1a, 0x76, + 0x7b, 0x87, 0x9d, 0xd6, 0x12, 0x03, 0x28, 0x0f, 0xba, 0x7b, 0xbc, 0x8b, 0x7a, 0x2b, 0x50, 0x18, + 0x0c, 0x0e, 0x5a, 0x79, 0x1c, 0x75, 0x6f, 0x67, 0xef, 0xa0, 0xdb, 0x2a, 0x60, 0xf3, 0xc9, 0xe3, + 0xa3, 0xfd, 0x41, 0xab, 0xb8, 0xf1, 0x21, 0xbc, 0x71, 0xe9, 0x65, 0x08, 0x47, 0xec, 0x74, 0xf7, + 0x77, 0x8e, 0x1f, 0xa1, 0x89, 0x65, 0xc8, 0xf7, 0x0f, 0xb5, 0xa2, 0xfe, 0xfe, 0x7e, 0x2b, 0xbf, + 0xf1, 0x31, 0x5c, 0x5b, 0x78, 0xda, 0xa1, 0x01, 0x0f, 0x76, 0x78, 0x17, 0x07, 0xaf, 0x43, 0xe5, + 0x88, 0xf7, 0x9e, 0xee, 0x3c, 0xe9, 0xb6, 0x72, 0x28, 0x78, 0xd4, 0xdf, 0x7b, 0xd8, 0xed, 0xb4, + 0xf2, 0xbb, 0x37, 0xbf, 0x7a, 0xb1, 0x9a, 0xfb, 0xfa, 0xc5, 0x6a, 0xee, 0x9b, 0x17, 0xab, 0xb9, + 0xbf, 0xbe, 0x58, 0xcd, 0x7d, 0xf9, 0xdd, 0xea, 0xd2, 0xd7, 0xdf, 0xad, 0x2e, 0x7d, 0xf3, 0xdd, + 0xea, 0xd2, 0x49, 0x99, 0xfe, 0xe5, 0xf9, 0xe8, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x65, 0xef, + 0x9b, 0xea, 0x25, 0x1a, 0x00, 0x00, } func (m *Op) Marshal() (dAtA []byte, err error) { @@ -3454,6 +3464,25 @@ func (m *Meta) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.ValidExitCodes) > 0 { + dAtA11 := make([]byte, len(m.ValidExitCodes)*10) + var j10 int + for _, num1 := range m.ValidExitCodes { + num := uint64(num1) + for num >= 1<<7 { + dAtA11[j10] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j10++ + } + dAtA11[j10] = uint8(num) + j10++ + } + i -= j10 + copy(dAtA[i:], dAtA11[:j10]) + i = encodeVarintOps(dAtA, i, uint64(j10)) + i-- + dAtA[i] = 0x62 + } if m.RemoveMountStubsRecursive { i-- if m.RemoveMountStubsRecursive { @@ -5832,6 +5861,13 @@ func (m *Meta) Size() (n int) { if m.RemoveMountStubsRecursive { n += 2 } + if len(m.ValidExitCodes) > 0 { + l = 0 + for _, e := range m.ValidExitCodes { + l += sovOps(uint64(e)) + } + n += 1 + sovOps(uint64(l)) + l + } return n } @@ -7915,6 +7951,82 @@ func (m *Meta) Unmarshal(dAtA []byte) error { } } m.RemoveMountStubsRecursive = bool(v != 0) + case 12: + if wireType == 0 { + var v int32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOps + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ValidExitCodes = append(m.ValidExitCodes, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOps + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthOps + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthOps + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.ValidExitCodes) == 0 { + m.ValidExitCodes = make([]int32, 0, elementCount) + } + for iNdEx < postIndex { + var v int32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOps + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ValidExitCodes = append(m.ValidExitCodes, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field ValidExitCodes", wireType) + } default: iNdEx = preIndex skippy, err := skipOps(dAtA[iNdEx:]) diff --git a/solver/pb/ops.proto b/solver/pb/ops.proto index 55d7ed51ca4e..91ce667faa2f 100644 --- a/solver/pb/ops.proto +++ b/solver/pb/ops.proto @@ -65,6 +65,7 @@ message Meta { repeated Ulimit ulimit = 9; string cgroupParent = 10; bool removeMountStubsRecursive = 11; + repeated int32 validExitCodes = 12; } message HostIP {