From 6e7e54926597b32d6cf79177e84f6fc32f1ecfff Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sat, 2 Oct 2021 14:39:40 +0100 Subject: [PATCH 01/23] Support building `syscall` and `syscall/js` as `js/wasm`. All relevant tests are passing and a stub for FS functions is provided when running in an environment without Node `fs` module or compatible. --- build/build.go | 5 +- build/context.go | 22 ++++--- compiler/natives/src/internal/poll/fd_poll.go | 4 +- .../natives/src/internal/poll/splice_linux.go | 4 +- .../src/internal/poll/splice_linux_test.go | 4 +- .../natives/src/internal/testenv/testenv.go | 4 +- compiler/natives/src/runtime/runtime.go | 9 ++- compiler/natives/src/syscall/syscall.go | 8 ++- .../natives/src/syscall/syscall_js_wasm.go | 37 +++++++++++ .../natives/src/syscall/syscall_nonlinux.go | 4 +- compiler/natives/src/syscall/syscall_unix.go | 4 +- compiler/prelude/prelude.go | 63 +++++++++++++++++++ 12 files changed, 139 insertions(+), 29 deletions(-) create mode 100644 compiler/natives/src/syscall/syscall_js_wasm.go diff --git a/build/build.go b/build/build.go index f343d1b69..91e261f94 100644 --- a/build/build.go +++ b/build/build.go @@ -186,8 +186,9 @@ func parseAndAugment(xctx XContext, pkg *PackageData, isTest bool, fileSet *toke // Special handling for the syscall package, which uses OS native // GOOS/GOARCH pair. This will no longer be necessary after // https://github.com/gopherjs/gopherjs/issues/693. - nativesContext.bctx.GOARCH = build.Default.GOARCH - nativesContext.bctx.BuildTags = append(nativesContext.bctx.BuildTags, "js") + // FIXME(nevkontakte): Remove this. + // nativesContext.bctx.GOARCH = build.Default.GOARCH + // nativesContext.bctx.BuildTags = append(nativesContext.bctx.BuildTags, "js") } if nativesPkg, err := nativesContext.Import(importPath, "", 0); err == nil { diff --git a/build/context.go b/build/context.go index 54c1a4db5..b56221aa0 100644 --- a/build/context.go +++ b/build/context.go @@ -170,8 +170,9 @@ func (sc simpleCtx) applyPreloadTweaks(importPath string, mode build.ImportMode) // syscall needs to use a typical GOARCH like amd64 to pick up definitions // for _Socklen, BpfInsn, IFNAMSIZ, Timeval, BpfStat, SYS_FCNTL, Flock_t, // etc. - bctx.GOARCH = build.Default.GOARCH - bctx.InstallSuffix += build.Default.GOARCH + // FIXME(nevkontakte): Remove this. + // bctx.GOARCH = build.Default.GOARCH + // bctx.InstallSuffix += build.Default.GOARCH case "syscall/js": if !sc.isVirtual { // There are no buildable files in this package upstream, but we need to @@ -206,16 +207,18 @@ func (sc simpleCtx) applyPostloadTweaks(pkg *build.Package) *build.Package { } switch pkg.ImportPath { case "os": - pkg.GoFiles = excludeExecutable(pkg.GoFiles) // Need to exclude executable implementation files, because some of them contain package scope variables that perform (indirectly) syscalls on init. + // FIXME(nevkontakte): Remove this. + // pkg.GoFiles = excludeExecutable(pkg.GoFiles) // Need to exclude executable implementation files, because some of them contain package scope variables that perform (indirectly) syscalls on init. // Prefer the dirent_${GOOS}.go version, to make the build pass on both linux // and darwin. // In the long term, our builds should produce the same output regardless // of the host OS: https://github.com/gopherjs/gopherjs/issues/693. - pkg.GoFiles = exclude(pkg.GoFiles, "dirent_js.go") + // pkg.GoFiles = exclude(pkg.GoFiles, "dirent_js.go") case "runtime": pkg.GoFiles = []string{} // Package sources are completely replaced in natives. case "runtime/internal/sys": - pkg.GoFiles = []string{fmt.Sprintf("zgoos_%s.go", sc.GOOS()), "zversion.go"} + // FIXME(nevkontakte): Remove this. + // pkg.GoFiles = []string{fmt.Sprintf("zgoos_%s.go", sc.GOOS()), "zversion.go"} case "runtime/pprof": pkg.GoFiles = nil case "internal/poll": @@ -283,10 +286,11 @@ func embeddedCtx(embedded http.FileSystem, installSuffix string, buildTags []str func goCtx(installSuffix string, buildTags []string) *simpleCtx { gc := simpleCtx{ bctx: build.Context{ - GOROOT: DefaultGOROOT, - GOPATH: build.Default.GOPATH, - GOOS: build.Default.GOOS, - GOARCH: "js", + GOROOT: DefaultGOROOT, + GOPATH: build.Default.GOPATH, + // FIXME(nevkontakte): Use these for standard library only. + GOOS: "js", + GOARCH: "wasm", InstallSuffix: installSuffix, Compiler: "gc", BuildTags: append(buildTags, defaultBuildTags...), diff --git a/compiler/natives/src/internal/poll/fd_poll.go b/compiler/natives/src/internal/poll/fd_poll.go index 55d898e36..956439982 100644 --- a/compiler/natives/src/internal/poll/fd_poll.go +++ b/compiler/natives/src/internal/poll/fd_poll.go @@ -1,5 +1,5 @@ -//go:build js -// +build js +//go:build js && !wasm +// +build js,!wasm package poll diff --git a/compiler/natives/src/internal/poll/splice_linux.go b/compiler/natives/src/internal/poll/splice_linux.go index c16c3173f..a123fc748 100644 --- a/compiler/natives/src/internal/poll/splice_linux.go +++ b/compiler/natives/src/internal/poll/splice_linux.go @@ -1,5 +1,5 @@ -//go:build js -// +build js +//go:build js && !wasm +// +build js,!wasm package poll diff --git a/compiler/natives/src/internal/poll/splice_linux_test.go b/compiler/natives/src/internal/poll/splice_linux_test.go index 5a286fc53..5bfa38ce3 100644 --- a/compiler/natives/src/internal/poll/splice_linux_test.go +++ b/compiler/natives/src/internal/poll/splice_linux_test.go @@ -1,5 +1,5 @@ -//go:build js -// +build js +//go:build js && !wasm +// +build js,!wasm package poll_test diff --git a/compiler/natives/src/internal/testenv/testenv.go b/compiler/natives/src/internal/testenv/testenv.go index 8863fd369..e9cf90c3c 100644 --- a/compiler/natives/src/internal/testenv/testenv.go +++ b/compiler/natives/src/internal/testenv/testenv.go @@ -1,5 +1,5 @@ -//go:build js -// +build js +//go:build js && !wasm +// +build js,!wasm package testenv diff --git a/compiler/natives/src/runtime/runtime.go b/compiler/natives/src/runtime/runtime.go index a94606529..29bc6b8a9 100644 --- a/compiler/natives/src/runtime/runtime.go +++ b/compiler/natives/src/runtime/runtime.go @@ -9,11 +9,10 @@ import ( "github.com/gopherjs/gopherjs/js" ) -const ( - GOOS = sys.GOOS - GOARCH = "js" - Compiler = "gopherjs" -) +// FIXME(nevkontakte): Update these to GopherJS-specific. +const GOOS = sys.GOOS +const GOARCH = sys.GOARCH +const Compiler = "gopherjs" // The Error interface identifies a run time error. type Error interface { diff --git a/compiler/natives/src/syscall/syscall.go b/compiler/natives/src/syscall/syscall.go index 902b57e62..e61414533 100644 --- a/compiler/natives/src/syscall/syscall.go +++ b/compiler/natives/src/syscall/syscall.go @@ -51,7 +51,13 @@ func use(p unsafe.Pointer) { } func Exit(code int) { - Syscall(exitTrap, uintptr(code), 0, 0) + if process := js.Global.Get("process"); process.Bool() { + process.Call("exit", code) + return + } + if code != 0 { + js.Global.Get("console").Call("warn", "Go program exited with non-zero code:", code) + } } // indexByte is copied from bytes package to avoid importing it (since the real syscall package doesn't). diff --git a/compiler/natives/src/syscall/syscall_js_wasm.go b/compiler/natives/src/syscall/syscall_js_wasm.go new file mode 100644 index 000000000..187f353f2 --- /dev/null +++ b/compiler/natives/src/syscall/syscall_js_wasm.go @@ -0,0 +1,37 @@ +package syscall + +import ( + "github.com/gopherjs/gopherjs/js" +) + +// FIXME(nevkontakte): Duplicated from syscall_unix.go. +func runtime_envs() []string { + process := js.Global.Get("process") + if process == js.Undefined { + return nil + } + jsEnv := process.Get("env") + envkeys := js.Global.Get("Object").Call("keys", jsEnv) + envs := make([]string, envkeys.Length()) + for i := 0; i < envkeys.Length(); i++ { + key := envkeys.Index(i).String() + envs[i] = key + "=" + jsEnv.Get(key).String() + } + return envs +} + +func setenv_c(k, v string) { + process := js.Global.Get("process") + if process == js.Undefined { + return + } + process.Get("env").Set(k, v) +} + +func unsetenv_c(k string) { + process := js.Global.Get("process") + if process == js.Undefined { + return + } + process.Get("env").Delete(k) +} diff --git a/compiler/natives/src/syscall/syscall_nonlinux.go b/compiler/natives/src/syscall/syscall_nonlinux.go index de288e0da..17f120bc1 100644 --- a/compiler/natives/src/syscall/syscall_nonlinux.go +++ b/compiler/natives/src/syscall/syscall_nonlinux.go @@ -1,5 +1,5 @@ -//go:build js && !linux -// +build js,!linux +//go:build js && !linux && !wasm +// +build js,!linux,!wasm package syscall diff --git a/compiler/natives/src/syscall/syscall_unix.go b/compiler/natives/src/syscall/syscall_unix.go index cde76a021..0cae571c1 100644 --- a/compiler/natives/src/syscall/syscall_unix.go +++ b/compiler/natives/src/syscall/syscall_unix.go @@ -1,5 +1,5 @@ -//go:build js && !windows -// +build js,!windows +//go:build js && !windows && !wasm +// +build js,!windows,!wasm package syscall diff --git a/compiler/prelude/prelude.go b/compiler/prelude/prelude.go index 2df7928de..6e5d4d7e2 100644 --- a/compiler/prelude/prelude.go +++ b/compiler/prelude/prelude.go @@ -25,6 +25,69 @@ if ($global === undefined || $global.Array === undefined) { if (typeof module !== "undefined") { $module = module; } + +if (!$global.fs && $global.require) { + var fs = $global.require('fs'); + if (typeof fs === "object" && fs !== null && Object.keys(fs).length !== 0) { + $global.fs = fs; + } +} + +if (!$global.fs) { + // FIXME(nevkontakte): Use ES5 syntax. + const enosys = () => { + const err = new Error("not implemented"); + err.code = "ENOSYS"; + return err; + }; + + let outputBuf = ""; + const decoder = new TextDecoder("utf-8"); + $global.fs = { + constants: { O_WRONLY: -1, O_RDWR: -1, O_CREAT: -1, O_TRUNC: -1, O_APPEND: -1, O_EXCL: -1 }, // unused + writeSync(fd, buf) { + outputBuf += decoder.decode(buf); + const nl = outputBuf.lastIndexOf("\n"); + if (nl != -1) { + console.log(outputBuf.substr(0, nl)); + outputBuf = outputBuf.substr(nl + 1); + } + return buf.length; + }, + write(fd, buf, offset, length, position, callback) { + if (offset !== 0 || length !== buf.length || position !== null) { + callback(enosys()); + return; + } + const n = this.writeSync(fd, buf); + callback(null, n); + }, + chmod(path, mode, callback) { callback(enosys()); }, + chown(path, uid, gid, callback) { callback(enosys()); }, + close(fd, callback) { callback(enosys()); }, + fchmod(fd, mode, callback) { callback(enosys()); }, + fchown(fd, uid, gid, callback) { callback(enosys()); }, + fstat(fd, callback) { callback(enosys()); }, + fsync(fd, callback) { callback(null); }, + ftruncate(fd, length, callback) { callback(enosys()); }, + lchown(path, uid, gid, callback) { callback(enosys()); }, + link(path, link, callback) { callback(enosys()); }, + lstat(path, callback) { callback(enosys()); }, + mkdir(path, perm, callback) { callback(enosys()); }, + open(path, flags, mode, callback) { callback(enosys()); }, + read(fd, buffer, offset, length, position, callback) { callback(enosys()); }, + readdir(path, callback) { callback(enosys()); }, + readlink(path, callback) { callback(enosys()); }, + rename(from, to, callback) { callback(enosys()); }, + rmdir(path, callback) { callback(enosys()); }, + stat(path, callback) { callback(enosys()); }, + symlink(path, link, callback) { callback(enosys()); }, + truncate(path, length, callback) { callback(enosys()); }, + unlink(path, callback) { callback(enosys()); }, + utimes(path, atime, mtime, callback) { callback(enosys()); }, + }; +} + var $linknames = {} // Collection of functions referenced by a go:linkname directive. var $packages = {}, $idCounter = 0; var $keys = function(m) { return m ? Object.keys(m) : []; }; From 60f28c2487d0821d80d12f064e2b87608155ce37 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sat, 2 Oct 2021 19:05:15 +0100 Subject: [PATCH 02/23] Fix `os` package test failures when built as `js/wasm`. --- .std_test_pkg_exclusions | 2 -- compiler/natives/src/internal/poll/fd_poll.go | 31 ------------------- .../natives/src/internal/poll/semaphore.go | 14 +++++++++ compiler/natives/src/syscall/js/js.go | 17 ++++++++++ .../natives/src/syscall/syscall_js_wasm.go | 31 +++++++++++++++++++ 5 files changed, 62 insertions(+), 33 deletions(-) create mode 100644 compiler/natives/src/internal/poll/semaphore.go diff --git a/.std_test_pkg_exclusions b/.std_test_pkg_exclusions index 5397d2dde..c003f6d2f 100644 --- a/.std_test_pkg_exclusions +++ b/.std_test_pkg_exclusions @@ -28,7 +28,6 @@ net/http/pprof net/internal/socktest net/rpc net/smtp -os os/exec os/signal os/signal/internal/pty @@ -43,6 +42,5 @@ runtime/pprof runtime/pprof/internal/profile runtime/race runtime/trace -syscall testing/internal/testdeps unsafe diff --git a/compiler/natives/src/internal/poll/fd_poll.go b/compiler/natives/src/internal/poll/fd_poll.go index 956439982..e0a6461ff 100644 --- a/compiler/natives/src/internal/poll/fd_poll.go +++ b/compiler/natives/src/internal/poll/fd_poll.go @@ -56,34 +56,3 @@ func (*FD) SetWriteDeadline(t time.Time) error { return nil } func PollDescriptor() uintptr { return ^uintptr(0) } - -// Copy of sync.runtime_Semacquire. -func runtime_Semacquire(s *uint32) { - if *s == 0 { - ch := make(chan bool) - semWaiters[s] = append(semWaiters[s], ch) - <-ch - } - *s-- -} - -// Copy of sync.runtime_Semrelease. -func runtime_Semrelease(s *uint32) { - *s++ - - w := semWaiters[s] - if len(w) == 0 { - return - } - - ch := w[0] - w = w[1:] - semWaiters[s] = w - if len(w) == 0 { - delete(semWaiters, s) - } - - ch <- true -} - -var semWaiters = make(map[*uint32][]chan bool) diff --git a/compiler/natives/src/internal/poll/semaphore.go b/compiler/natives/src/internal/poll/semaphore.go new file mode 100644 index 000000000..5e4f5ea8d --- /dev/null +++ b/compiler/natives/src/internal/poll/semaphore.go @@ -0,0 +1,14 @@ +//go:build js +// +build js + +package poll + +import ( + _ "unsafe" // For go:linkname +) + +//go:linkname runtime_Semacquire sync.runtime_Semacquire +func runtime_Semacquire(s *uint32) + +//go:linkname runtime_Semrelease sync.runtime_Semrelease +func runtime_Semrelease(s *uint32) diff --git a/compiler/natives/src/syscall/js/js.go b/compiler/natives/src/syscall/js/js.go index 5e699ba02..1e26344f3 100644 --- a/compiler/natives/src/syscall/js/js.go +++ b/compiler/natives/src/syscall/js/js.go @@ -188,6 +188,22 @@ func convertArgs(args ...interface{}) []interface{} { return newArgs } +func convertJSError() { + err := recover() + if err == nil { + return + } + if jsErr, ok := err.(*js.Error); ok { + // We expect that all panics caught by Value.Call() are in fact JavaScript + // exceptions intercepted by GopherJS runtime, which we convert to + // syscall/js.Error, which the callers would expect. + panic(Error{Value: objectToValue(jsErr.Object)}) + } + // Panics of other types are unexpected and should never happen. But if it + // does, we will just re-raise it as-is. + panic(err) +} + func (v Value) Call(m string, args ...interface{}) Value { if vType := v.Type(); vType != TypeObject && vType != TypeFunction { panic(&ValueError{"Value.Call", vType}) @@ -195,6 +211,7 @@ func (v Value) Call(m string, args ...interface{}) Value { if propType := v.Get(m).Type(); propType != TypeFunction { panic("js: Value.Call: property " + m + " is not a function, got " + propType.String()) } + defer convertJSError() return objectToValue(v.internal().Call(m, convertArgs(args...)...)) } diff --git a/compiler/natives/src/syscall/syscall_js_wasm.go b/compiler/natives/src/syscall/syscall_js_wasm.go index 187f353f2..9b6b0cc94 100644 --- a/compiler/natives/src/syscall/syscall_js_wasm.go +++ b/compiler/natives/src/syscall/syscall_js_wasm.go @@ -1,6 +1,8 @@ package syscall import ( + sysjs "syscall/js" + "github.com/gopherjs/gopherjs/js" ) @@ -35,3 +37,32 @@ func unsetenv_c(k string) { } process.Get("env").Delete(k) } + +func setStat(st *Stat_t, jsSt sysjs.Value) { + // This method is an almost-exact copy of upstream, except for 4 places where + // time stamps are obtained as floats in lieu of int64. Unstread wasm emulates + // a 64-bit architecture and millisecond-based timestamps fit within an int + // type. GopherJS is 32-bit and use of 32-bit ints causes timestamp truncation. + // We get timestamps as float64 (which matches JS-native representation) and + // convert then to int64 manually, since syscall/js.Value doesn't have an + // Int64 method. + st.Dev = int64(jsSt.Get("dev").Int()) + st.Ino = uint64(jsSt.Get("ino").Int()) + st.Mode = uint32(jsSt.Get("mode").Int()) + st.Nlink = uint32(jsSt.Get("nlink").Int()) + st.Uid = uint32(jsSt.Get("uid").Int()) + st.Gid = uint32(jsSt.Get("gid").Int()) + st.Rdev = int64(jsSt.Get("rdev").Int()) + st.Size = int64(jsSt.Get("size").Int()) + st.Blksize = int32(jsSt.Get("blksize").Int()) + st.Blocks = int32(jsSt.Get("blocks").Int()) + atime := int64(jsSt.Get("atimeMs").Float()) // Int64 + st.Atime = atime / 1000 + st.AtimeNsec = (atime % 1000) * 1000000 + mtime := int64(jsSt.Get("mtimeMs").Float()) // Int64 + st.Mtime = mtime / 1000 + st.MtimeNsec = (mtime % 1000) * 1000000 + ctime := int64(jsSt.Get("ctimeMs").Float()) // Int64 + st.Ctime = ctime / 1000 + st.CtimeNsec = (ctime % 1000) * 1000000 +} From d6aec8e68e1bda586d93a2cb5a113aeecdde3b62 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 3 Oct 2021 16:09:53 +0100 Subject: [PATCH 03/23] Make sure GopherJS tests work correctly under when build as `js/wasm`. - Fix skip condition in tests that should be run under normal Go. - TestNativesDontImportExtraPackages loads original packages with `js/wasm` build target. --- build/build_test.go | 9 ++++++--- compiler/natives/src/internal/syscall/unix/unix.go | 4 ++-- compiler/natives/src/syscall/js/js.go | 3 +-- tests/lowlevel_test.go | 4 ++-- tests/vendored_test.go | 2 +- 5 files changed, 12 insertions(+), 10 deletions(-) diff --git a/build/build_test.go b/build/build_test.go index af402eb6c..a9a39a0e3 100644 --- a/build/build_test.go +++ b/build/build_test.go @@ -25,6 +25,9 @@ func TestNativesDontImportExtraPackages(t *testing.T) { // It's needed for populateImportSet. stdOnly := gobuild.Default stdOnly.GOPATH = "" // We only care about standard library, so skip all GOPATH packages. + // FIXME(nevkontakte): Use appropriate GOOS/GOARCH. + stdOnly.GOOS = "js" + stdOnly.GOARCH = "wasm" forward, _, err := importgraphutil.BuildNoTests(&stdOnly) if err != nil { t.Fatalf("importgraphutil.BuildNoTests: %v", err) @@ -76,7 +79,7 @@ func TestNativesDontImportExtraPackages(t *testing.T) { // Normal package. { // Import the real normal package, and populate its real import set. - bpkg, err := gobuild.Import(pkg, "", gobuild.ImportComment) + bpkg, err := stdOnly.Import(pkg, "", gobuild.ImportComment) if err != nil { t.Fatalf("gobuild.Import: %v", err) } @@ -115,7 +118,7 @@ func TestNativesDontImportExtraPackages(t *testing.T) { // Test package. { // Import the real test package, and populate its real import set. - bpkg, err := gobuild.Import(pkg, "", gobuild.ImportComment) + bpkg, err := stdOnly.Import(pkg, "", gobuild.ImportComment) if err != nil { t.Fatalf("gobuild.Import: %v", err) } @@ -154,7 +157,7 @@ func TestNativesDontImportExtraPackages(t *testing.T) { // External test package. { // Import the real external test package, and populate its real import set. - bpkg, err := gobuild.Import(pkg, "", gobuild.ImportComment) + bpkg, err := stdOnly.Import(pkg, "", gobuild.ImportComment) if err != nil { t.Fatalf("gobuild.Import: %v", err) } diff --git a/compiler/natives/src/internal/syscall/unix/unix.go b/compiler/natives/src/internal/syscall/unix/unix.go index 1c065be1f..e63a6463f 100644 --- a/compiler/natives/src/internal/syscall/unix/unix.go +++ b/compiler/natives/src/internal/syscall/unix/unix.go @@ -1,5 +1,5 @@ -//go:build js -// +build js +//go:build js && !wasm +// +build js,!wasm package unix diff --git a/compiler/natives/src/syscall/js/js.go b/compiler/natives/src/syscall/js/js.go index 1e26344f3..5ff8cebb2 100644 --- a/compiler/natives/src/syscall/js/js.go +++ b/compiler/natives/src/syscall/js/js.go @@ -4,7 +4,6 @@ package js import ( - "reflect" "unsafe" "github.com/gopherjs/gopherjs/js" @@ -160,7 +159,7 @@ func ValueOf(x interface{}) Value { case bool, int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64, float32, float64, unsafe.Pointer, string, map[string]interface{}, []interface{}: return objectToValue(id.Invoke(x)) default: - panic(`invalid arg: ` + reflect.TypeOf(x).String()) + panic("ValueOf: invalid value") } } diff --git a/tests/lowlevel_test.go b/tests/lowlevel_test.go index 4a872407f..fe4273224 100644 --- a/tests/lowlevel_test.go +++ b/tests/lowlevel_test.go @@ -14,7 +14,7 @@ import ( // // See https://github.com/gopherjs/gopherjs/issues/279. func TestTimeInternalizationExternalization(t *testing.T) { - if runtime.GOARCH == "js" { + if runtime.GOOS == "js" { t.Skip("test meant to be run using normal Go compiler (needs os/exec)") } @@ -34,7 +34,7 @@ func TestTimeInternalizationExternalization(t *testing.T) { } func TestDeferBuiltin(t *testing.T) { - if runtime.GOARCH == "js" { + if runtime.GOOS == "js" { t.Skip("test meant to be run using normal Go compiler (needs os/exec)") } diff --git a/tests/vendored_test.go b/tests/vendored_test.go index 08206d359..54c150227 100644 --- a/tests/vendored_test.go +++ b/tests/vendored_test.go @@ -10,7 +10,7 @@ import ( // Test that GopherJS can be vendored into a project, and then used to build Go programs. // See issue https://github.com/gopherjs/gopherjs/issues/415. func TestGopherJSCanBeVendored(t *testing.T) { - if runtime.GOARCH == "js" { + if runtime.GOOS == "js" { t.Skip("test meant to be run using normal Go compiler (needs os/exec)") } From 7f838baa75b0bac7ccbb7209f27606f69bca94fd Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 17 Oct 2021 18:49:22 +0100 Subject: [PATCH 04/23] Support `net` package when building for the target `js/wasm`. --- .std_test_pkg_exclusions | 1 - compiler/natives/src/net/fastrand.go | 11 + compiler/natives/src/net/net.go | 4 +- doc/packages.md | 322 +++++++++++++-------------- 4 files changed, 174 insertions(+), 164 deletions(-) create mode 100644 compiler/natives/src/net/fastrand.go diff --git a/.std_test_pkg_exclusions b/.std_test_pkg_exclusions index c003f6d2f..35f8e8bc3 100644 --- a/.std_test_pkg_exclusions +++ b/.std_test_pkg_exclusions @@ -17,7 +17,6 @@ internal/testlog internal/trace internal/x/net/nettest log/syslog -net net/http net/http/cgi net/http/httptest diff --git a/compiler/natives/src/net/fastrand.go b/compiler/natives/src/net/fastrand.go new file mode 100644 index 000000000..861217a9d --- /dev/null +++ b/compiler/natives/src/net/fastrand.go @@ -0,0 +1,11 @@ +//go:build js +// +build js + +package net + +import ( + _ "unsafe" // For go:linkname +) + +//go:linkname fastrand runtime.fastrand +func fastrand() uint32 diff --git a/compiler/natives/src/net/net.go b/compiler/natives/src/net/net.go index cd896db3a..1b3d6ab01 100644 --- a/compiler/natives/src/net/net.go +++ b/compiler/natives/src/net/net.go @@ -1,5 +1,5 @@ -//go:build js -// +build js +//go:build js && !wasm +// +build js,!wasm package net diff --git a/doc/packages.md b/doc/packages.md index 547062530..b49db7319 100644 --- a/doc/packages.md +++ b/doc/packages.md @@ -4,164 +4,164 @@ On each commit, Circle CI automatically compiles all supported packages with Gop [![Circle CI](https://circleci.com/gh/gopherjs/gopherjs.svg?style=svg)](https://circleci.com/gh/gopherjs/gopherjs) -Name | Supported | Comment ------------------- | ------------ | ---------------------------------------------------------------------------------- -archive | | --- tar | ✅ yes | --- zip | ✅ yes | -bufio | ✅ yes | -builtin | ✅ yes | -bytes | ✅ yes | -compress | | --- bzip2 | ✅ yes | --- flate | ✅ yes | --- gzip | ✅ yes | --- lzw | ✅ yes | --- zlib | ✅ yes | -container | | --- heap | ✅ yes | --- list | ✅ yes | --- ring | ✅ yes | -context | ✅ yes | -crypto | ✅ yes | --- aes | ✅ yes | --- cipher | ✅ yes | --- des | ✅ yes | --- dsa | ✅ yes | --- ecdsa | ✅ yes | --- ed25519 | ✅ yes | --- elliptic | ✅ yes | --- hmac | ✅ yes | --- md5 | ✅ yes | --- rand | ✅ yes | --- rc4 | ✅ yes | --- rsa | ✅ yes | --- sha1 | ✅ yes | --- sha256 | ✅ yes | --- sha512 | ✅ yes | --- subtle | ✅ yes | --- tls | ❌ no | --- x509 | ✅ yes | --- -- pkix | ✅ yes | -database | | --- sql | ✅ yes | --- -- driver | ✅ yes | -debug | | --- dwarf | ✅ yes | --- elf | ✅ yes | --- gosym | ☑️ partially | on binaries generated by gc --- macho | ✅ yes | --- pe | ✅ yes | --- plan9obj | ✅ yes | -embed | ❌ no | Not implemented yet: https://github.com/gopherjs/gopherjs/issues/997. -encoding | | --- ascii85 | ✅ yes | --- asn1 | ✅ yes | --- base32 | ✅ yes | --- base64 | ✅ yes | --- binary | ✅ yes | --- csv | ✅ yes | --- gob | ✅ yes | --- hex | ✅ yes | --- json | ✅ yes | --- pem | ✅ yes | --- xml | ✅ yes | -errors | ✅ yes | -expvar | ✅ yes | -flag | ✅ yes | -fmt | ✅ yes | -go | | --- ast | ✅ yes | --- build | ❌ no | --- build/constraint | ✅ yes | --- constant | ✅ yes | --- doc | ✅ yes | --- format | ✅ yes | --- importer | ❌ no | --- parser | ✅ yes | --- printer | ✅ yes | --- scanner | ✅ yes | --- token | ✅ yes | --- types | ❌ no | -hash | ✅ yes | --- adler32 | ✅ yes | --- crc32 | ✅ yes | --- crc64 | ✅ yes | --- fnv | ✅ yes | --- maphash | ✅ yes | -html | ✅ yes | --- template | ✅ yes | -image | ✅ yes | --- color | ✅ yes | --- -- palette | ✅ yes | --- draw | ✅ yes | --- gif | ✅ yes | --- jpeg | ✅ yes | --- png | ✅ yes | -index | | --- suffixarray | ✅ yes | -io | ✅ yes | --- fs | ✅ yes | --- ioutil | ✅ yes | -log | ✅ yes | --- syslog | ❌ no | -math | ✅ yes | --- big | ✅ yes | --- bits | ✅ yes | --- cmplx | ✅ yes | --- rand | ✅ yes | -mime | ✅ yes | --- multipart | ✅ yes | --- quotedprintable | ✅ yes | -net | ❌ no | --- http | ☑️ partially | client only, emulated via Fetch/XMLHttpRequest APIs;
node.js requires polyfill --- -- cgi | ❌ no | --- -- cookiejar | ✅ yes | --- -- fcgi | ✅ yes | --- -- httptest | ☑️ partially | --- -- httputil | ☑️ partially | --- -- pprof | ❌ no | --- mail | ✅ yes | --- rpc | ☑️ partially | data structures only (no net) --- -- jsonrpc | ✅ yes | --- smtp | ☑️ partially | data structures only (no net) --- textproto | ✅ yes | --- url | ✅ yes | -os | ☑️ partially | node.js only --- exec | ☑️ partially | node.js only --- signal | ☑️ partially | node.js only --- user | ☑️ partially | node.js only -path | ✅ yes | --- filepath | ✅ yes | -plugin | ❌ no | -reflect | ✅ yes | -regexp | ✅ yes | --- syntax | ✅ yes | -runtime | ☑️ partially | SetMutexProfileFraction, SetFinalizer, ReadMemStats unsupported --- metrics | ☑️ partially | Same as runtime. --- cgo | ❌ no | --- debug | ❌ no | --- pprof | ❌ no | --- race | ❌ no | --- trace | ❌ no | -sort | ✅ yes | -strconv | ✅ yes | -strings | ✅ yes | -sync | ✅ yes | --- atomic | ✅ yes | -syscall | ☑️ partially | node.js only -testing | ☑️ partially | AllocsPerRun and T.Helper are unsupported. --- iotest | ✅ yes | --- fstest | ✅ yes | --- quick | ✅ yes | -text | | --- scanner | ✅ yes | --- tabwriter | ✅ yes | --- template | ✅ yes | --- -- parse | ✅ yes | -time | ✅ yes | UTC and Local only (see [issue](https://github.com/gopherjs/gopherjs/issues/64)) --- tzdata | ✅ yes | -unicode | ✅ yes | --- utf16 | ✅ yes | --- utf8 | ✅ yes | -unsafe | ❌ no | +| Name | Supported | Comment | +| ------------------- | ------------ | --------------------------------------------------------------------------------- | +| archive | | +| -- tar | ✅ yes | +| -- zip | ✅ yes | +| bufio | ✅ yes | +| builtin | ✅ yes | +| bytes | ✅ yes | +| compress | | +| -- bzip2 | ✅ yes | +| -- flate | ✅ yes | +| -- gzip | ✅ yes | +| -- lzw | ✅ yes | +| -- zlib | ✅ yes | +| container | | +| -- heap | ✅ yes | +| -- list | ✅ yes | +| -- ring | ✅ yes | +| context | ✅ yes | +| crypto | ✅ yes | +| -- aes | ✅ yes | +| -- cipher | ✅ yes | +| -- des | ✅ yes | +| -- dsa | ✅ yes | +| -- ecdsa | ✅ yes | +| -- ed25519 | ✅ yes | +| -- elliptic | ✅ yes | +| -- hmac | ✅ yes | +| -- md5 | ✅ yes | +| -- rand | ✅ yes | +| -- rc4 | ✅ yes | +| -- rsa | ✅ yes | +| -- sha1 | ✅ yes | +| -- sha256 | ✅ yes | +| -- sha512 | ✅ yes | +| -- subtle | ✅ yes | +| -- tls | ❌ no | +| -- x509 | ✅ yes | +| -- -- pkix | ✅ yes | +| database | | +| -- sql | ✅ yes | +| -- -- driver | ✅ yes | +| debug | | +| -- dwarf | ✅ yes | +| -- elf | ✅ yes | +| -- gosym | ☑️ partially | on binaries generated by gc | +| -- macho | ✅ yes | +| -- pe | ✅ yes | +| -- plan9obj | ✅ yes | +| embed | ❌ no | Not implemented yet: https://github.com/gopherjs/gopherjs/issues/997. | +| encoding | | +| -- ascii85 | ✅ yes | +| -- asn1 | ✅ yes | +| -- base32 | ✅ yes | +| -- base64 | ✅ yes | +| -- binary | ✅ yes | +| -- csv | ✅ yes | +| -- gob | ✅ yes | +| -- hex | ✅ yes | +| -- json | ✅ yes | +| -- pem | ✅ yes | +| -- xml | ✅ yes | +| errors | ✅ yes | +| expvar | ✅ yes | +| flag | ✅ yes | +| fmt | ✅ yes | +| go | | +| -- ast | ✅ yes | +| -- build | ❌ no | +| -- build/constraint | ✅ yes | +| -- constant | ✅ yes | +| -- doc | ✅ yes | +| -- format | ✅ yes | +| -- importer | ❌ no | +| -- parser | ✅ yes | +| -- printer | ✅ yes | +| -- scanner | ✅ yes | +| -- token | ✅ yes | +| -- types | ❌ no | +| hash | ✅ yes | +| -- adler32 | ✅ yes | +| -- crc32 | ✅ yes | +| -- crc64 | ✅ yes | +| -- fnv | ✅ yes | +| -- maphash | ✅ yes | +| html | ✅ yes | +| -- template | ✅ yes | +| image | ✅ yes | +| -- color | ✅ yes | +| -- -- palette | ✅ yes | +| -- draw | ✅ yes | +| -- gif | ✅ yes | +| -- jpeg | ✅ yes | +| -- png | ✅ yes | +| index | | +| -- suffixarray | ✅ yes | +| io | ✅ yes | +| -- fs | ✅ yes | +| -- ioutil | ✅ yes | +| log | ✅ yes | +| -- syslog | ❌ no | +| math | ✅ yes | +| -- big | ✅ yes | +| -- bits | ✅ yes | +| -- cmplx | ✅ yes | +| -- rand | ✅ yes | +| mime | ✅ yes | +| -- multipart | ✅ yes | +| -- quotedprintable | ✅ yes | +| net | ☑️ partially | network is simulated, supports only localhost connections | +| -- http | ☑️ partially | client only, emulated via Fetch/XMLHttpRequest APIs;
node.js requires polyfill | +| -- -- cgi | ❌ no | +| -- -- cookiejar | ✅ yes | +| -- -- fcgi | ✅ yes | +| -- -- httptest | ☑️ partially | +| -- -- httputil | ☑️ partially | +| -- -- pprof | ❌ no | +| -- mail | ✅ yes | +| -- rpc | ☑️ partially | data structures only (no net) | +| -- -- jsonrpc | ✅ yes | +| -- smtp | ☑️ partially | data structures only (no net) | +| -- textproto | ✅ yes | +| -- url | ✅ yes | +| os | ☑️ partially | node.js only | +| -- exec | ☑️ partially | node.js only | +| -- signal | ☑️ partially | node.js only | +| -- user | ☑️ partially | node.js only | +| path | ✅ yes | +| -- filepath | ✅ yes | +| plugin | ❌ no | +| reflect | ✅ yes | +| regexp | ✅ yes | +| -- syntax | ✅ yes | +| runtime | ☑️ partially | SetMutexProfileFraction, SetFinalizer, ReadMemStats unsupported | +| -- metrics | ☑️ partially | Same as runtime. | +| -- cgo | ❌ no | +| -- debug | ❌ no | +| -- pprof | ❌ no | +| -- race | ❌ no | +| -- trace | ❌ no | +| sort | ✅ yes | +| strconv | ✅ yes | +| strings | ✅ yes | +| sync | ✅ yes | +| -- atomic | ✅ yes | +| syscall | ☑️ partially | node.js only | +| testing | ☑️ partially | AllocsPerRun and T.Helper are unsupported. | +| -- iotest | ✅ yes | +| -- fstest | ✅ yes | +| -- quick | ✅ yes | +| text | | +| -- scanner | ✅ yes | +| -- tabwriter | ✅ yes | +| -- template | ✅ yes | +| -- -- parse | ✅ yes | +| time | ✅ yes | UTC and Local only (see [issue](https://github.com/gopherjs/gopherjs/issues/64)) | +| -- tzdata | ✅ yes | +| unicode | ✅ yes | +| -- utf16 | ✅ yes | +| -- utf8 | ✅ yes | +| unsafe | ❌ no | From 1142005a307256f053967dd504e430ebc9ee535e Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sat, 23 Oct 2021 14:26:19 +0100 Subject: [PATCH 05/23] Support `net/http` package when building for `js/wasm` target. - Skip tests that rely on GC finalizers. - Skip tests that rely on exact function names in stack traces. - Tweak goroutine leak detection to work with GopherJS stack traces. - Use fake networking transport for http client tests under nodejs. --- .std_test_pkg_exclusions | 1 - .../natives/src/internal/bytealg/bytealg.go | 18 ++++++++ .../natives/src/net/http/clientserver_test.go | 16 +++++++ compiler/natives/src/net/http/fetch.go | 14 +++--- compiler/natives/src/net/http/fetch_wasm.go | 6 +++ .../natives/src/net/http/http_wasm_test.go | 18 ++++++++ compiler/natives/src/net/http/main_test.go | 43 +++++++++++++++++++ compiler/natives/src/net/http/server_test.go | 10 +++++ .../natives/src/net/http/transport_test.go | 14 ++++++ .../x/crypto/internal/subtle/aliasing.go | 20 +++++++++ 10 files changed, 152 insertions(+), 8 deletions(-) create mode 100644 compiler/natives/src/net/http/clientserver_test.go create mode 100644 compiler/natives/src/net/http/fetch_wasm.go create mode 100644 compiler/natives/src/net/http/http_wasm_test.go create mode 100644 compiler/natives/src/net/http/main_test.go create mode 100644 compiler/natives/src/net/http/server_test.go create mode 100644 compiler/natives/src/net/http/transport_test.go create mode 100644 compiler/natives/src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go diff --git a/.std_test_pkg_exclusions b/.std_test_pkg_exclusions index 35f8e8bc3..636686864 100644 --- a/.std_test_pkg_exclusions +++ b/.std_test_pkg_exclusions @@ -17,7 +17,6 @@ internal/testlog internal/trace internal/x/net/nettest log/syslog -net/http net/http/cgi net/http/httptest net/http/httptrace diff --git a/compiler/natives/src/internal/bytealg/bytealg.go b/compiler/natives/src/internal/bytealg/bytealg.go index 6db693bb5..dbcc6dec4 100644 --- a/compiler/natives/src/internal/bytealg/bytealg.go +++ b/compiler/natives/src/internal/bytealg/bytealg.go @@ -14,3 +14,21 @@ func Equal(a, b []byte) bool { } return true } + +func IndexByte(b []byte, c byte) int { + for i, x := range b { + if x == c { + return i + } + } + return -1 +} + +func IndexByteString(s string, c byte) int { + for i := 0; i < len(s); i++ { + if s[i] == c { + return i + } + } + return -1 +} diff --git a/compiler/natives/src/net/http/clientserver_test.go b/compiler/natives/src/net/http/clientserver_test.go new file mode 100644 index 000000000..35b44dd4d --- /dev/null +++ b/compiler/natives/src/net/http/clientserver_test.go @@ -0,0 +1,16 @@ +//go:build js && wasm +// +build js,wasm + +package http_test + +import ( + "testing" +) + +func testTransportGCRequest(t *testing.T, h2, body bool) { + t.Skip("The test relies on runtime.SetFinalizer(), which is not supported by GopherJS.") +} + +func testWriteHeaderAfterWrite(t *testing.T, h2, hijack bool) { + t.Skip("GopherJS source maps don't preserve original function names in stack traces, which this test relied on.") +} diff --git a/compiler/natives/src/net/http/fetch.go b/compiler/natives/src/net/http/fetch.go index f306b1895..ea3120ae7 100644 --- a/compiler/natives/src/net/http/fetch.go +++ b/compiler/natives/src/net/http/fetch.go @@ -1,5 +1,5 @@ -//go:build js -// +build js +//go:build js && !wasm +// +build js,!wasm package http @@ -13,13 +13,13 @@ import ( "github.com/gopherjs/gopherjs/js" ) -// streamReader implements an io.ReadCloser wrapper for ReadableStream of https://fetch.spec.whatwg.org/. -type streamReader struct { +// jsStreamReader implements an io.ReadCloser wrapper for ReadableStream of https://fetch.spec.whatwg.org/. +type jsStreamReader struct { pending []byte stream *js.Object } -func (r *streamReader) Read(p []byte) (n int, err error) { +func (r *jsStreamReader) Read(p []byte) (n int, err error) { if len(r.pending) == 0 { var ( bCh = make(chan []byte) @@ -50,7 +50,7 @@ func (r *streamReader) Read(p []byte) (n int, err error) { return n, nil } -func (r *streamReader) Close() error { +func (r *jsStreamReader) Close() error { // This ignores any error returned from cancel method. So far, I did not encounter any concrete // situation where reporting the error is meaningful. Most users ignore error from resp.Body.Close(). // If there's a need to report error here, it can be implemented and tested when that need comes up. @@ -110,7 +110,7 @@ func (t *fetchTransport) RoundTrip(req *Request) (*Response, error) { StatusCode: result.Get("status").Int(), Header: header, ContentLength: contentLength, - Body: &streamReader{stream: result.Get("body").Call("getReader")}, + Body: &jsStreamReader{stream: result.Get("body").Call("getReader")}, Request: req, }: case <-req.Context().Done(): diff --git a/compiler/natives/src/net/http/fetch_wasm.go b/compiler/natives/src/net/http/fetch_wasm.go new file mode 100644 index 000000000..5caaed4de --- /dev/null +++ b/compiler/natives/src/net/http/fetch_wasm.go @@ -0,0 +1,6 @@ +//go:build js && wasm +// +build js,wasm + +package http + +type fetchTransport = Transport diff --git a/compiler/natives/src/net/http/http_wasm_test.go b/compiler/natives/src/net/http/http_wasm_test.go new file mode 100644 index 000000000..8af89aaec --- /dev/null +++ b/compiler/natives/src/net/http/http_wasm_test.go @@ -0,0 +1,18 @@ +//go:build js && wasm +// +build js,wasm + +package http + +func init() { + if DefaultTransport == nil { + panic("Expected DefaultTransport to be initialized before init() is run!") + } + if _, ok := DefaultTransport.(noTransport); ok && useFakeNetwork { + // NodeJS doesn't provide Fetch API by default, but wasm version of standard + // library has a fake network implementation that can be used to execute + // tests. If we are running under tests, use of fake networking is requested + // and no actual transport is found, use the fake that's implemented by + // `Transport`. + DefaultTransport = &Transport{} + } +} diff --git a/compiler/natives/src/net/http/main_test.go b/compiler/natives/src/net/http/main_test.go new file mode 100644 index 000000000..bb747d123 --- /dev/null +++ b/compiler/natives/src/net/http/main_test.go @@ -0,0 +1,43 @@ +//go:build js && wasm +// +build js,wasm + +package http_test + +import ( + "runtime" + "sort" + "strings" +) + +// This is an almost verbatim copy of the upstream, except one line which was +// adjusted to match GopherJS call stacks. +// This overlay can be remoed if/when https://github.com/golang/go/pull/49128 +// is merged and reached a stable Go release (likely 1.18). +func interestingGoroutines() (gs []string) { + buf := make([]byte, 2<<20) + buf = buf[:runtime.Stack(buf, true)] + for _, g := range strings.Split(string(buf), "\n\n") { + sl := strings.SplitN(g, "\n", 2) + if len(sl) != 2 { + continue + } + stack := strings.TrimSpace(sl[1]) + if stack == "" || + strings.Contains(stack, "testing.(*M).before.func1") || + strings.Contains(stack, "os/signal.signal_recv") || + strings.Contains(stack, "created by net.startServer") || + strings.Contains(stack, "created by testing.RunTests") || + strings.Contains(stack, "closeWriteAndWait") || + strings.Contains(stack, "testing.Main(") || + // These only show up with GOTRACEBACK=2; Issue 5005 (comment 28) + strings.Contains(stack, "runtime.goexit") || + strings.Contains(stack, "created by runtime.gc") || + strings.Contains(stack, "interestingGoroutines") || // ← Changed line. + strings.Contains(stack, "runtime.MHeap_Scavenger") { + continue + } + gs = append(gs, stack) + } + sort.Strings(gs) + return +} diff --git a/compiler/natives/src/net/http/server_test.go b/compiler/natives/src/net/http/server_test.go new file mode 100644 index 000000000..f55704dcf --- /dev/null +++ b/compiler/natives/src/net/http/server_test.go @@ -0,0 +1,10 @@ +//go:build js +// +build js + +package http_test + +import "testing" + +func TestTimeoutHandlerSuperfluousLogs(t *testing.T) { + t.Skip("https://github.com/gopherjs/gopherjs/issues/1085") +} diff --git a/compiler/natives/src/net/http/transport_test.go b/compiler/natives/src/net/http/transport_test.go new file mode 100644 index 000000000..a173e47e7 --- /dev/null +++ b/compiler/natives/src/net/http/transport_test.go @@ -0,0 +1,14 @@ +//go:build js +// +build js + +package http_test + +import "testing" + +func TestTransportPersistConnLeakNeverIdle(t *testing.T) { + t.Skip("test relied on runtime.SetFinalizer(), which is not supported by GopherJS.") +} + +func TestTransportPersistConnContextLeakMaxConnsPerHost(t *testing.T) { + t.Skip("test relied on runtime.SetFinalizer(), which is not supported by GopherJS.") +} diff --git a/compiler/natives/src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go b/compiler/natives/src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go new file mode 100644 index 000000000..104ac82bb --- /dev/null +++ b/compiler/natives/src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go @@ -0,0 +1,20 @@ +//go:build js +// +build js + +package subtle + +// This file duplicated is these two locations: +// - src/crypto/internal/subtle/ +// - src/golang.org/x/crypto/internal/subtle/ + +import "github.com/gopherjs/gopherjs/js" + +// AnyOverlap reports whether x and y share memory at any (not necessarily +// corresponding) index. The memory beyond the slice length is ignored. +func AnyOverlap(x, y []byte) bool { + // GopherJS: We can't rely on pointer arithmetic, so use GopherJS slice internals. + return len(x) > 0 && len(y) > 0 && + js.InternalObject(x).Get("$array") == js.InternalObject(y).Get("$array") && + js.InternalObject(x).Get("$offset").Int() <= js.InternalObject(y).Get("$offset").Int()+len(y)-1 && + js.InternalObject(y).Get("$offset").Int() <= js.InternalObject(x).Get("$offset").Int()+len(x)-1 +} From 0ad407ba77ff59837b9cdd44ac10b51ebfb89510 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Thu, 11 Nov 2021 16:22:22 +0000 Subject: [PATCH 06/23] Only exclude std packages from CI if they are actually failing any tests. The removed packages either actually pass all tests, or skip incompatible tests for `js/wasm` by default, which generally suits us well. --- .std_test_pkg_exclusions | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.std_test_pkg_exclusions b/.std_test_pkg_exclusions index 636686864..95c0c8f57 100644 --- a/.std_test_pkg_exclusions +++ b/.std_test_pkg_exclusions @@ -1,44 +1,21 @@ -crypto/tls -debug/gosym embed/internal/embedtest go/build -go/importer -go/internal/gccgoimporter -go/internal/gcimporter go/internal/srcimporter go/types internal/abi -internal/syscall/unix internal/syscall/windows internal/syscall/windows/registry internal/syscall/windows/sysdll -internal/testenv -internal/testlog -internal/trace internal/x/net/nettest -log/syslog -net/http/cgi net/http/httptest -net/http/httptrace net/http/httputil -net/http/internal net/http/pprof -net/internal/socktest net/rpc -net/smtp -os/exec -os/signal os/signal/internal/pty -plugin runtime runtime/cgo runtime/debug runtime/internal/atomic -runtime/internal/math -runtime/internal/sys runtime/pprof runtime/pprof/internal/profile -runtime/race runtime/trace -testing/internal/testdeps -unsafe From 4170cbb67cbea24e73646dc99beed2fc0ba0d8be Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sat, 26 Feb 2022 16:28:53 +0000 Subject: [PATCH 07/23] Drop GopherJS Fetch API-based http client implementation. Use the wasm implementation from the standard library instead. It has more features and supports browsers with streaming unavailable. We still keep `XMLHttpRequest` transport in case GopherJS users rely on it. --- compiler/natives/src/net/http/fetch.go | 135 ------------------ compiler/natives/src/net/http/fetch_wasm.go | 6 - compiler/natives/src/net/http/http.go | 5 +- .../natives/src/net/http/http_wasm_test.go | 20 ++- 4 files changed, 12 insertions(+), 154 deletions(-) delete mode 100644 compiler/natives/src/net/http/fetch.go delete mode 100644 compiler/natives/src/net/http/fetch_wasm.go diff --git a/compiler/natives/src/net/http/fetch.go b/compiler/natives/src/net/http/fetch.go deleted file mode 100644 index ea3120ae7..000000000 --- a/compiler/natives/src/net/http/fetch.go +++ /dev/null @@ -1,135 +0,0 @@ -//go:build js && !wasm -// +build js,!wasm - -package http - -import ( - "errors" - "fmt" - "io" - "io/ioutil" - "strconv" - - "github.com/gopherjs/gopherjs/js" -) - -// jsStreamReader implements an io.ReadCloser wrapper for ReadableStream of https://fetch.spec.whatwg.org/. -type jsStreamReader struct { - pending []byte - stream *js.Object -} - -func (r *jsStreamReader) Read(p []byte) (n int, err error) { - if len(r.pending) == 0 { - var ( - bCh = make(chan []byte) - errCh = make(chan error) - ) - r.stream.Call("read").Call("then", - func(result *js.Object) { - if result.Get("done").Bool() { - errCh <- io.EOF - return - } - bCh <- result.Get("value").Interface().([]byte) - }, - func(reason *js.Object) { - // Assumes it's a DOMException. - errCh <- errors.New(reason.Get("message").String()) - }, - ) - select { - case b := <-bCh: - r.pending = b - case err := <-errCh: - return 0, err - } - } - n = copy(p, r.pending) - r.pending = r.pending[n:] - return n, nil -} - -func (r *jsStreamReader) Close() error { - // This ignores any error returned from cancel method. So far, I did not encounter any concrete - // situation where reporting the error is meaningful. Most users ignore error from resp.Body.Close(). - // If there's a need to report error here, it can be implemented and tested when that need comes up. - r.stream.Call("cancel") - return nil -} - -// fetchTransport is a RoundTripper that is implemented using Fetch API. It supports streaming -// response bodies. -type fetchTransport struct{} - -func (t *fetchTransport) RoundTrip(req *Request) (*Response, error) { - headers := js.Global.Get("Headers").New() - for key, values := range req.Header { - for _, value := range values { - headers.Call("append", key, value) - } - } - opt := map[string]interface{}{ - "method": req.Method, - "headers": headers, - "credentials": "same-origin", - } - if req.Body != nil { - // TODO: Find out if request body can be streamed into the fetch request rather than in advance here. - // See BufferSource at https://fetch.spec.whatwg.org/#body-mixin. - body, err := ioutil.ReadAll(req.Body) - if err != nil { - req.Body.Close() // RoundTrip must always close the body, including on errors. - return nil, err - } - req.Body.Close() - opt["body"] = body - } - respPromise := js.Global.Call("fetch", req.URL.String(), opt) - - var ( - respCh = make(chan *Response) - errCh = make(chan error) - ) - respPromise.Call("then", - func(result *js.Object) { - header := Header{} - result.Get("headers").Call("forEach", func(value, key *js.Object) { - ck := CanonicalHeaderKey(key.String()) - header[ck] = append(header[ck], value.String()) - }) - - contentLength := int64(-1) - if cl, err := strconv.ParseInt(header.Get("Content-Length"), 10, 64); err == nil { - contentLength = cl - } - - select { - case respCh <- &Response{ - Status: result.Get("status").String() + " " + StatusText(result.Get("status").Int()), - StatusCode: result.Get("status").Int(), - Header: header, - ContentLength: contentLength, - Body: &jsStreamReader{stream: result.Get("body").Call("getReader")}, - Request: req, - }: - case <-req.Context().Done(): - } - }, - func(reason *js.Object) { - select { - case errCh <- fmt.Errorf("net/http: fetch() failed: %s", reason.String()): - case <-req.Context().Done(): - } - }, - ) - select { - case <-req.Context().Done(): - // TODO: Abort request if possible using Fetch API. - return nil, errors.New("net/http: request canceled") - case resp := <-respCh: - return resp, nil - case err := <-errCh: - return nil, err - } -} diff --git a/compiler/natives/src/net/http/fetch_wasm.go b/compiler/natives/src/net/http/fetch_wasm.go deleted file mode 100644 index 5caaed4de..000000000 --- a/compiler/natives/src/net/http/fetch_wasm.go +++ /dev/null @@ -1,6 +0,0 @@ -//go:build js && wasm -// +build js,wasm - -package http - -type fetchTransport = Transport diff --git a/compiler/natives/src/net/http/http.go b/compiler/natives/src/net/http/http.go index 44ea1f4c0..7843235b2 100644 --- a/compiler/natives/src/net/http/http.go +++ b/compiler/natives/src/net/http/http.go @@ -16,8 +16,9 @@ import ( var DefaultTransport = func() RoundTripper { switch { - case js.Global.Get("fetch") != js.Undefined && js.Global.Get("ReadableStream") != js.Undefined: // ReadableStream is used as a check for support of streaming response bodies, see https://fetch.spec.whatwg.org/#streams. - return &fetchTransport{} + case js.Global.Get("fetch") != js.Undefined: + // Use standard library js/wasm fetch-based implementation. + return &Transport{} case js.Global.Get("XMLHttpRequest") != js.Undefined: return &XHRTransport{} default: diff --git a/compiler/natives/src/net/http/http_wasm_test.go b/compiler/natives/src/net/http/http_wasm_test.go index 8af89aaec..176d4a099 100644 --- a/compiler/natives/src/net/http/http_wasm_test.go +++ b/compiler/natives/src/net/http/http_wasm_test.go @@ -4,15 +4,13 @@ package http func init() { - if DefaultTransport == nil { - panic("Expected DefaultTransport to be initialized before init() is run!") - } - if _, ok := DefaultTransport.(noTransport); ok && useFakeNetwork { - // NodeJS doesn't provide Fetch API by default, but wasm version of standard - // library has a fake network implementation that can be used to execute - // tests. If we are running under tests, use of fake networking is requested - // and no actual transport is found, use the fake that's implemented by - // `Transport`. - DefaultTransport = &Transport{} - } + // Use standard transport with fake networking under tests. Although GopherJS + // supports "real" http.Client implementations using Fetch or XMLHttpRequest + // APIs, tests also need to start local web servers, which is not supported + // for those APIs. + // TODO(nevkontakte): We could test our real implementations if we mock out + // browser APIs and redirect them to the fake networking stack, but this is + // not easy. + useFakeNetwork = true + DefaultTransport = &Transport{} } From cdf693a03ce3e271a2a5f135563bcc4eb839cfab Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Mon, 7 Mar 2022 21:44:51 +0000 Subject: [PATCH 08/23] Convert prelude browser fs API stub into ES5 and reduce its size. Most GopherJS users target browser and likely don't want to pay the cost of file system polyfill they can't use in a browser anyway, so minimizing it is worth the effort. In addition, I converted the polyfill into ES5 syntax, since we haven't formally abandoned it yet. --- compiler/natives/src/syscall/fs_js.go | 44 +++++++++++++++++++++++++++ compiler/prelude/prelude.go | 44 +++++---------------------- 2 files changed, 51 insertions(+), 37 deletions(-) create mode 100644 compiler/natives/src/syscall/fs_js.go diff --git a/compiler/natives/src/syscall/fs_js.go b/compiler/natives/src/syscall/fs_js.go new file mode 100644 index 000000000..39a71e57d --- /dev/null +++ b/compiler/natives/src/syscall/fs_js.go @@ -0,0 +1,44 @@ +//go:build js + +package syscall + +import ( + "syscall/js" +) + +// fsCall emulates a file system-related syscall via a corresponding NodeJS fs +// API. +// +// This version is similar to the upstream, but it gracefully handles missing fs +// methods (allowing for smaller prelude) and removes a workaround for an +// obsolete NodeJS version. +func fsCall(name string, args ...interface{}) (js.Value, error) { + type callResult struct { + val js.Value + err error + } + + c := make(chan callResult, 1) + f := js.FuncOf(func(this js.Value, args []js.Value) interface{} { + var res callResult + + if jsErr := args[0]; !jsErr.IsNull() { + res.err = mapJSError(jsErr) + } + + res.val = js.Undefined() + if len(args) >= 2 { + res.val = args[1] + } + + c <- res + return nil + }) + defer f.Release() + if jsFS.Get(name).IsUndefined() { + return js.Undefined(), ENOSYS + } + jsFS.Call(name, append(args, f)...) + res := <-c + return res.val, res.err +} diff --git a/compiler/prelude/prelude.go b/compiler/prelude/prelude.go index 6e5d4d7e2..434f3dda7 100644 --- a/compiler/prelude/prelude.go +++ b/compiler/prelude/prelude.go @@ -34,57 +34,27 @@ if (!$global.fs && $global.require) { } if (!$global.fs) { - // FIXME(nevkontakte): Use ES5 syntax. - const enosys = () => { - const err = new Error("not implemented"); - err.code = "ENOSYS"; - return err; - }; - - let outputBuf = ""; - const decoder = new TextDecoder("utf-8"); + var outputBuf = ""; + var decoder = new TextDecoder("utf-8"); $global.fs = { constants: { O_WRONLY: -1, O_RDWR: -1, O_CREAT: -1, O_TRUNC: -1, O_APPEND: -1, O_EXCL: -1 }, // unused - writeSync(fd, buf) { + writeSync: function writeSync(fd, buf) { outputBuf += decoder.decode(buf); - const nl = outputBuf.lastIndexOf("\n"); + var nl = outputBuf.lastIndexOf("\n"); if (nl != -1) { console.log(outputBuf.substr(0, nl)); outputBuf = outputBuf.substr(nl + 1); } return buf.length; }, - write(fd, buf, offset, length, position, callback) { + write: function write(fd, buf, offset, length, position, callback) { if (offset !== 0 || length !== buf.length || position !== null) { callback(enosys()); return; } - const n = this.writeSync(fd, buf); + var n = this.writeSync(fd, buf); callback(null, n); - }, - chmod(path, mode, callback) { callback(enosys()); }, - chown(path, uid, gid, callback) { callback(enosys()); }, - close(fd, callback) { callback(enosys()); }, - fchmod(fd, mode, callback) { callback(enosys()); }, - fchown(fd, uid, gid, callback) { callback(enosys()); }, - fstat(fd, callback) { callback(enosys()); }, - fsync(fd, callback) { callback(null); }, - ftruncate(fd, length, callback) { callback(enosys()); }, - lchown(path, uid, gid, callback) { callback(enosys()); }, - link(path, link, callback) { callback(enosys()); }, - lstat(path, callback) { callback(enosys()); }, - mkdir(path, perm, callback) { callback(enosys()); }, - open(path, flags, mode, callback) { callback(enosys()); }, - read(fd, buffer, offset, length, position, callback) { callback(enosys()); }, - readdir(path, callback) { callback(enosys()); }, - readlink(path, callback) { callback(enosys()); }, - rename(from, to, callback) { callback(enosys()); }, - rmdir(path, callback) { callback(enosys()); }, - stat(path, callback) { callback(enosys()); }, - symlink(path, link, callback) { callback(enosys()); }, - truncate(path, length, callback) { callback(enosys()); }, - unlink(path, callback) { callback(enosys()); }, - utimes(path, atime, mtime, callback) { callback(enosys()); }, + } }; } From 41de9e301998dced48f2551c15c49da43e0e42ca Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 13 Mar 2022 23:02:45 +0000 Subject: [PATCH 09/23] Use GOOS=js and GOARCH=ecmascript to build user code by default. GopherJS will use this target going forward. The values where chosen by the following logic: - GOOS describes the targeted API environment, which is generally the same as when building wasm: both execute under a browser or nodejs. Build tag `js` is shared by GopherJS and wasm and can be used to target the general environment. - GOARCH describes the low-level emitted code, which is currently EcmaScript 5. Using `ecmascript` here differentiates from `wasm`, while not referencing GopherJS explicitly. It also leaves us a different paths for future upgrades to ES6+ by either changing GOARCH or keeping it and making this change implicit. At the same time, we use fixed js/wasm target when building standard library packages, which resolves a lot of concerns discussed in https://github.com/gopherjs/gopherjs/issues/693. Using js/ecmascript is not feasible because it'll require us to maintain a lot more overlays and/or rewrite build tags, which leads to the exactly same outcome. In addition, we always set `gopherjs` build tag to make it easy to guard sources using GopherJS-specific features. This is similar to `gc` and `gccgo` build tags respective compilers set. This change is potentially breaking for users that may have relied on GOOS=linux in their sources. To make transition easier for them, we support using GOOS/GOARCH from environment. However, they will be only applied to the user code. Standard library will still be built with js/wasm. --- build/build.go | 39 ++++---- build/context.go | 154 ++++++++++++++++++++----------- build/context_test.go | 71 ++++++++++++-- build/versionhack/versionhack.go | 1 + doc/compatibility.md | 41 ++++---- tests/gorepo/gorepo_test.go | 2 +- tests/gorepo/run.go | 11 +-- tool.go | 6 +- 8 files changed, 213 insertions(+), 112 deletions(-) diff --git a/build/build.go b/build/build.go index 91e261f94..8f3e03eec 100644 --- a/build/build.go +++ b/build/build.go @@ -26,13 +26,12 @@ import ( "github.com/gopherjs/gopherjs/compiler" "github.com/gopherjs/gopherjs/compiler/astutil" "github.com/gopherjs/gopherjs/compiler/gopherjspkg" - "github.com/gopherjs/gopherjs/compiler/natives" + "github.com/neelance/sourcemap" "github.com/shurcooL/httpfs/vfsutil" "golang.org/x/tools/go/buildutil" "github.com/gopherjs/gopherjs/build/cache" - _ "github.com/gopherjs/gopherjs/build/versionhack" // go/build release tags hack. ) // DefaultGOROOT is the default GOROOT value for builds. @@ -65,10 +64,13 @@ func (e *ImportCError) Error() string { // are loaded from gopherjspkg.FS virtual filesystem if not present in GOPATH or // go.mod. func NewBuildContext(installSuffix string, buildTags []string) XContext { - gopherjsRoot := filepath.Join(DefaultGOROOT, "src", "github.com", "gopherjs", "gopherjs") + e := DefaultEnv() + e.InstallSuffix = installSuffix + e.BuildTags = buildTags + realGOROOT := goCtx(e) return &chainedCtx{ - primary: goCtx(installSuffix, buildTags), - secondary: embeddedCtx(&withPrefix{gopherjspkg.FS, gopherjsRoot}, installSuffix, buildTags), + primary: realGOROOT, + secondary: gopherjsCtx(e), } } @@ -103,7 +105,7 @@ func statFile(path string) (os.FileInfo, error) { func Import(path string, mode build.ImportMode, installSuffix string, buildTags []string) (*PackageData, error) { wd, err := os.Getwd() if err != nil { - // Getwd may fail if we're in GOARCH=js mode. That's okay, handle + // Getwd may fail if we're in GOOS=js mode. That's okay, handle // it by falling back to empty working directory. It just means // Import will not be able to resolve relative import paths. wd = "" @@ -180,16 +182,7 @@ func parseAndAugment(xctx XContext, pkg *PackageData, isTest bool, fileSet *toke importPath = importPath[:len(importPath)-5] } - nativesContext := embeddedCtx(&withPrefix{fs: natives.FS, prefix: DefaultGOROOT}, "", nil) - - if importPath == "syscall" { - // Special handling for the syscall package, which uses OS native - // GOOS/GOARCH pair. This will no longer be necessary after - // https://github.com/gopherjs/gopherjs/issues/693. - // FIXME(nevkontakte): Remove this. - // nativesContext.bctx.GOARCH = build.Default.GOARCH - // nativesContext.bctx.BuildTags = append(nativesContext.bctx.BuildTags, "js") - } + nativesContext := overlayCtx(xctx.Env()) if nativesPkg, err := nativesContext.Import(importPath, "", 0); err == nil { names := nativesPkg.GoFiles @@ -322,6 +315,7 @@ func parseAndAugment(xctx XContext, pkg *PackageData, isTest bool, fileSet *toke // Options controls build process behavior. type Options struct { + // FIXME(nevkontakte): Remove GOROOT and GOPATH from options. They are in Env now. GOROOT string GOPATH string Verbose bool @@ -458,12 +452,13 @@ func NewSession(options *Options) (*Session, error) { UpToDateArchives: make(map[string]*compiler.Archive), } s.xctx = NewBuildContext(s.InstallSuffix(), s.options.BuildTags) + env := s.xctx.Env() s.buildCache = cache.BuildCache{ - GOOS: s.xctx.GOOS(), - GOARCH: "js", - GOROOT: options.GOROOT, - GOPATH: options.GOPATH, - BuildTags: options.BuildTags, + GOOS: env.GOOS, + GOARCH: env.GOARCH, + GOROOT: env.GOROOT, + GOPATH: env.GOPATH, + BuildTags: append([]string{}, env.BuildTags...), Minify: options.Minify, TestedPackage: options.TestedPackage, } @@ -514,7 +509,7 @@ func (s *Session) BuildFiles(filenames []string, pkgObj string, packagePath stri // This ephemeral package doesn't have a unique import path to be used as a // build cache key, so we never cache it. SrcModTime: time.Now().Add(time.Hour), - bctx: &goCtx(s.InstallSuffix(), s.options.BuildTags).bctx, + bctx: &goCtx(s.xctx.Env()).bctx, } for _, file := range filenames { diff --git a/build/context.go b/build/context.go index b56221aa0..2a50414d3 100644 --- a/build/context.go +++ b/build/context.go @@ -12,10 +12,53 @@ import ( "sort" "strings" + _ "github.com/gopherjs/gopherjs/build/versionhack" // go/build release tags hack. "github.com/gopherjs/gopherjs/compiler" + "github.com/gopherjs/gopherjs/compiler/gopherjspkg" + "github.com/gopherjs/gopherjs/compiler/natives" "golang.org/x/tools/go/buildutil" ) +// Env contains build environment configuration required to define an instance +// of XContext. +type Env struct { + GOROOT string + GOPATH string + + GOOS string + GOARCH string + + BuildTags []string + InstallSuffix string +} + +// DefaultEnv creates a new instance of build Env according to environment +// variables. +// +// By default, GopherJS will use GOOS=js GOARCH=ecmascript to build non-standard +// library packages. If GOOS or GOARCH environment variables are set and not +// empty, user-provided values will be used instead. This is done to facilitate +// transition from the legacy GopherJS behavior, which used native GOOS, and may +// be removed in future. +func DefaultEnv() Env { + e := Env{} + e.GOROOT = DefaultGOROOT + e.GOPATH = build.Default.GOPATH + + if val := os.Getenv("GOOS"); val != "" { + e.GOOS = val + } else { + e.GOOS = "js" + } + + if val := os.Getenv("GOARCH"); val != "" { + e.GOARCH = val + } else { + e.GOARCH = "ecmascript" + } + return e +} + // XContext is an extension of go/build.Context with GopherJS-specifc features. // // It abstracts away several different sources GopherJS can load its packages @@ -25,9 +68,8 @@ type XContext interface { // interpreting local import paths relative to the srcDir directory. Import(path string, srcDir string, mode build.ImportMode) (*PackageData, error) - // GOOS returns GOOS value the underlying build.Context is using. - // This will become obsolete after https://github.com/gopherjs/gopherjs/issues/693. - GOOS() string + // Env returns build environment configuration this context has been set up for. + Env() Env // Match explans build patterns into a set of matching import paths (see go help packages). Match(patterns []string) ([]string, error) @@ -42,7 +84,7 @@ type simpleCtx struct { // Import implements XContext.Import(). func (sc simpleCtx) Import(importPath string, srcDir string, mode build.ImportMode) (*PackageData, error) { - bctx, mode := sc.applyPreloadTweaks(importPath, mode) + bctx, mode := sc.applyPreloadTweaks(importPath, srcDir, mode) pkg, err := bctx.Import(importPath, srcDir, mode) if err != nil { return nil, err @@ -122,7 +164,16 @@ func (sc simpleCtx) Match(patterns []string) ([]string, error) { return matches, nil } -func (sc simpleCtx) GOOS() string { return sc.bctx.GOOS } +func (sc simpleCtx) Env() Env { + return Env{ + GOROOT: sc.bctx.GOROOT, + GOPATH: sc.bctx.GOPATH, + GOOS: sc.bctx.GOOS, + GOARCH: sc.bctx.GOARCH, + BuildTags: sc.bctx.BuildTags, + InstallSuffix: sc.bctx.InstallSuffix, + } +} // gotool executes the go tool set up for the build context and returns standard output. func (sc simpleCtx) gotool(subcommand string, args ...string) (string, error) { @@ -163,22 +214,16 @@ func (sc simpleCtx) gotool(subcommand string, args ...string) (string, error) { // Ideally this method would not be necessary, but currently several packages // require special handing in order to be compatible with GopherJS. This method // returns a copy of the build context, keeping the original one intact. -func (sc simpleCtx) applyPreloadTweaks(importPath string, mode build.ImportMode) (build.Context, build.ImportMode) { +func (sc simpleCtx) applyPreloadTweaks(importPath string, srcDir string, mode build.ImportMode) (build.Context, build.ImportMode) { bctx := sc.bctx + if sc.isStd(importPath, srcDir) { + // For most of the platform-dependent code in the standard library we simply + // reuse implementations targeting WebAssembly. For the user-supplied we use + // regular gopherjs-specific GOOS/GOARCH. + bctx.GOOS = "js" + bctx.GOARCH = "wasm" + } switch importPath { - case "syscall": - // syscall needs to use a typical GOARCH like amd64 to pick up definitions - // for _Socklen, BpfInsn, IFNAMSIZ, Timeval, BpfStat, SYS_FCNTL, Flock_t, - // etc. - // FIXME(nevkontakte): Remove this. - // bctx.GOARCH = build.Default.GOARCH - // bctx.InstallSuffix += build.Default.GOARCH - case "syscall/js": - if !sc.isVirtual { - // There are no buildable files in this package upstream, but we need to - // use files in the virtual directory. - mode |= build.FindOnly - } case "crypto/x509", "os/user": // These stdlib packages have cgo and non-cgo versions (via build tags); we // want the latter. @@ -206,19 +251,8 @@ func (sc simpleCtx) applyPostloadTweaks(pkg *build.Package) *build.Package { return pkg } switch pkg.ImportPath { - case "os": - // FIXME(nevkontakte): Remove this. - // pkg.GoFiles = excludeExecutable(pkg.GoFiles) // Need to exclude executable implementation files, because some of them contain package scope variables that perform (indirectly) syscalls on init. - // Prefer the dirent_${GOOS}.go version, to make the build pass on both linux - // and darwin. - // In the long term, our builds should produce the same output regardless - // of the host OS: https://github.com/gopherjs/gopherjs/issues/693. - // pkg.GoFiles = exclude(pkg.GoFiles, "dirent_js.go") case "runtime": pkg.GoFiles = []string{} // Package sources are completely replaced in natives. - case "runtime/internal/sys": - // FIXME(nevkontakte): Remove this. - // pkg.GoFiles = []string{fmt.Sprintf("zgoos_%s.go", sc.GOOS()), "zversion.go"} case "runtime/pprof": pkg.GoFiles = nil case "internal/poll": @@ -229,22 +263,11 @@ func (sc simpleCtx) applyPostloadTweaks(pkg *build.Package) *build.Package { pkg.GoFiles = exclude(pkg.GoFiles, "pool.go") case "crypto/rand": pkg.GoFiles = []string{"rand.go", "util.go"} - pkg.TestGoFiles = exclude(pkg.TestGoFiles, "rand_linux_test.go") // Don't want linux-specific tests (since linux-specific package files are excluded too). - case "crypto/x509": - // GopherJS doesn't support loading OS root certificates regardless of the - // OS. The substitution below allows to avoid build dependency on Mac OS - // implementation, which won't be used anyway. - // - // Just like above, https://github.com/gopherjs/gopherjs/issues/693 is - // probably the best long-term option. - pkg.GoFiles = include( - exclude(pkg.GoFiles, fmt.Sprintf("root_%s.go", sc.GOOS())), - "root_unix.go", "root_js.go") case "syscall/js": // Reuse upstream tests to ensure conformance, but completely replace // implementation. pkg.GoFiles = []string{} - pkg.XTestGoFiles = append(pkg.XTestGoFiles, "js_test.go") + pkg.TestGoFiles = []string{} } pkg.Imports, pkg.ImportPos = updateImports(pkg.GoFiles, pkg.ImportPos) @@ -254,17 +277,30 @@ func (sc simpleCtx) applyPostloadTweaks(pkg *build.Package) *build.Package { return pkg } +// isStd returns true if the given importPath resolves into a standard library +// package. Relative paths are interpreted relative to srcDir. +func (sc simpleCtx) isStd(importPath, srcDir string) bool { + pkg, err := sc.bctx.Import(importPath, srcDir, build.FindOnly) + if err != nil { + return false + } + return pkg.Goroot +} + var defaultBuildTags = []string{ "netgo", // See https://godoc.org/net#hdr-Name_Resolution. "purego", // See https://golang.org/issues/23172. "math_big_pure_go", // Use pure Go version of math/big. + // We can't set compiler to gopherjs, since Go tooling doesn't support that, + // but, we can at least always set this build tag. + "gopherjs", } // embeddedCtx creates simpleCtx that imports from a virtual FS embedded into // the GopherJS compiler. -func embeddedCtx(embedded http.FileSystem, installSuffix string, buildTags []string) *simpleCtx { +func embeddedCtx(embedded http.FileSystem, e Env) *simpleCtx { fs := &vfs{embedded} - ec := goCtx(installSuffix, buildTags) + ec := goCtx(e) ec.bctx.GOPATH = "" // Path functions must behave unix-like to work with the VFS. @@ -281,19 +317,31 @@ func embeddedCtx(embedded http.FileSystem, installSuffix string, buildTags []str return ec } +// overlayCtx creates simpleCtx that imports from the embedded standard library +// overlays. +func overlayCtx(e Env) *simpleCtx { + return embeddedCtx(&withPrefix{fs: natives.FS, prefix: e.GOROOT}, e) +} + +// gopherjsCtx creates a simpleCtx that imports from the embedded gopherjs +// packages in case they are not present in the user's source tree. +func gopherjsCtx(e Env) *simpleCtx { + gopherjsRoot := filepath.Join(e.GOROOT, "src", "github.com", "gopherjs", "gopherjs") + return embeddedCtx(&withPrefix{gopherjspkg.FS, gopherjsRoot}, e) +} + // goCtx creates simpleCtx that imports from the real file system GOROOT, GOPATH // or Go Modules. -func goCtx(installSuffix string, buildTags []string) *simpleCtx { +func goCtx(e Env) *simpleCtx { gc := simpleCtx{ bctx: build.Context{ - GOROOT: DefaultGOROOT, - GOPATH: build.Default.GOPATH, - // FIXME(nevkontakte): Use these for standard library only. - GOOS: "js", - GOARCH: "wasm", - InstallSuffix: installSuffix, + GOROOT: e.GOROOT, + GOPATH: e.GOPATH, + GOOS: e.GOOS, + GOARCH: e.GOARCH, + InstallSuffix: e.InstallSuffix, Compiler: "gc", - BuildTags: append(buildTags, defaultBuildTags...), + BuildTags: append(append([]string{}, e.BuildTags...), defaultBuildTags...), CgoEnabled: true, // detect `import "C"` to throw proper error // go/build supports modules, but only when no FS access functions are @@ -333,7 +381,7 @@ func (cc chainedCtx) Import(importPath string, srcDir string, mode build.ImportM } } -func (cc chainedCtx) GOOS() string { return cc.primary.GOOS() } +func (cc chainedCtx) Env() Env { return cc.primary.Env() } // Match implements XContext.Match(). // diff --git a/build/context_test.go b/build/context_test.go index 844b2bc00..523d97695 100644 --- a/build/context_test.go +++ b/build/context_test.go @@ -15,11 +15,13 @@ import ( ) func TestSimpleCtx(t *testing.T) { - gopherjsRoot := filepath.Join(DefaultGOROOT, "src", "github.com", "gopherjs", "gopherjs") + e := DefaultEnv() + + gopherjsRoot := filepath.Join(e.GOROOT, "src", "github.com", "gopherjs", "gopherjs") fs := &withPrefix{gopherjspkg.FS, gopherjsRoot} - ec := embeddedCtx(fs, "", []string{}) + ec := embeddedCtx(fs, e) - gc := goCtx("", []string{}) + gc := goCtx(e) t.Run("exists", func(t *testing.T) { tests := []struct { @@ -29,13 +31,13 @@ func TestSimpleCtx(t *testing.T) { { buildCtx: ec, wantPkg: &PackageData{ - Package: expectedPackage(&ec.bctx, "github.com/gopherjs/gopherjs/js"), + Package: expectedPackage(&ec.bctx, "github.com/gopherjs/gopherjs/js", "wasm"), IsVirtual: true, }, }, { buildCtx: gc, wantPkg: &PackageData{ - Package: expectedPackage(&gc.bctx, "fmt"), + Package: expectedPackage(&gc.bctx, "fmt", "wasm"), IsVirtual: false, }, }, @@ -136,8 +138,63 @@ func TestChainedCtx(t *testing.T) { } } -func expectedPackage(bctx *build.Context, importPath string) *build.Package { - targetRoot := path.Clean(fmt.Sprintf("%s/pkg/%s_%s", bctx.GOROOT, bctx.GOOS, bctx.GOARCH)) +func TestIsStd(t *testing.T) { + realGOROOT := goCtx(DefaultEnv()) + overlayGOROOT := overlayCtx(DefaultEnv()) + gopherjsPackages := gopherjsCtx(DefaultEnv()) + tests := []struct { + descr string + importPath string + context *simpleCtx + want bool + }{ + { + descr: "real goroot, standard package", + importPath: "fmt", + context: realGOROOT, + want: true, + }, + { + descr: "real goroot, non-standard package", + importPath: "github.com/gopherjs/gopherjs/build", + context: realGOROOT, + want: false, + }, + { + descr: "real goroot, non-exiting package", + importPath: "does/not/exist", + context: realGOROOT, + want: false, + }, + { + descr: "overlay goroot, standard package", + importPath: "fmt", + context: overlayGOROOT, + want: true, + }, + { + descr: "embedded gopherjs packages, gopherjs/js package", + importPath: "github.com/gopherjs/gopherjs/js", + context: gopherjsPackages, + // When user's source tree doesn't contain gopherjs package (e.g. it uses + // syscall/js API only), we pretend that gopherjs/js package is included + // in the standard library. + want: true, + }, + } + + for _, test := range tests { + t.Run(test.descr, func(t *testing.T) { + got := test.context.isStd(test.importPath, "") + if got != test.want { + t.Errorf("Got: simpleCtx.isStd(%q) = %v. Want: %v", test.importPath, got, test.want) + } + }) + } +} + +func expectedPackage(bctx *build.Context, importPath string, goarch string) *build.Package { + targetRoot := path.Clean(fmt.Sprintf("%s/pkg/%s_%s", bctx.GOROOT, bctx.GOOS, goarch)) return &build.Package{ Dir: path.Join(bctx.GOROOT, "src", importPath), ImportPath: importPath, diff --git a/build/versionhack/versionhack.go b/build/versionhack/versionhack.go index d2fede46f..86cc7212c 100644 --- a/build/versionhack/versionhack.go +++ b/build/versionhack/versionhack.go @@ -43,4 +43,5 @@ var toolTags []string func init() { releaseTags = build.Default.ReleaseTags[:compiler.GoVersion] toolTags = []string{} + build.Default.ToolTags = []string{} } diff --git a/doc/compatibility.md b/doc/compatibility.md index 6a4a7ded3..8bb41c4af 100644 --- a/doc/compatibility.md +++ b/doc/compatibility.md @@ -4,9 +4,9 @@ _TL;DR: GopherJS aims to provide full compatibility with regular Go, but JavaScr Go ecosystem is broad and complex, which means there are several dimensions in which different levels of compatibility can be achieved: - 1. **[Go Language Specification](https://golang.org/ref/spec)**: full compatibility. With the exception of several minor differences documented below, GopherJS _should_ be fully compliant with the language specification (e.g. type system, goroutines, operations, built-ins, etc.). - 2. **[Go Standard Library](https://pkg.go.dev/std)**: mostly compatible. GopherJS attempts to support as much of standard library as possible, but certain functionality is impossible or difficult to implement within the JavaScript runtime, most of which is related to os interaction, low-level runtime manipulation or `unsafe`. See [package compatibility table](packages.md) and [syscall support](syscalls.md) for details. - 3. **Build system and tooling**: partially compatible. The `gopherjs` CLI tool is used to build and test GopherJS code. It currently supports building `GOPATH` projects, but Go Modules support is missing (see https://github.com/gopherjs/gopherjs/issues/855). Our goal is to reach complete feature parity with the `go` tool, but there is a large amount of work required to get there. Other notable challenges include: +1. **[Go Language Specification](https://golang.org/ref/spec)**: full compatibility. With the exception of several minor differences documented below, GopherJS _should_ be fully compliant with the language specification (e.g. type system, goroutines, operations, built-ins, etc.). +2. **[Go Standard Library](https://pkg.go.dev/std)**: mostly compatible. GopherJS attempts to support as much of standard library as possible, but certain functionality is impossible or difficult to implement within the JavaScript runtime, most of which is related to os interaction, low-level runtime manipulation or `unsafe`. See [package compatibility table](packages.md) and [syscall support](syscalls.md) for details. +3. **Build system and tooling**: partially compatible. The `gopherjs` CLI tool is used to build and test GopherJS code. It currently supports building `GOPATH` projects, but Go Modules support is missing (see https://github.com/gopherjs/gopherjs/issues/855). Our goal is to reach complete feature parity with the `go` tool, but there is a large amount of work required to get there. Other notable challenges include: - Limited [compiler directive](pragma.md) (a.k.a. "pragma") support. Those are considered compiler implementation-specific and are generally not portable. - GopherJS ships with [standard library augmentations](../compiler/natives/src/), that are required to make it work in a browser. Those are applied on-the-fly during the build process and are generally invisible to any third-party tooling such as linters. In most cases that shouldn't matter, since they never change public interfaces of the standard library packages, but this is something to be aware of. - Runtime debuggers and profilers. Since GopherJS compiles Go to JavaScript, one must use JavaScript debuggers and profilers (e.g. browser dev tools) instead of the normal Go ones (e.g. delve or pprof). Unfortunately, limited sourcemap support makes this experience less than ideal at the moment. @@ -15,15 +15,15 @@ Go ecosystem is broad and complex, which means there are several dimensions in w In general, for a given release of GopherJS the following statements _should_ be true: - - GopherJS compiler can be built from source with the latest stable Go release at the time when the GopherJS release is created, or any newer Go release. - - Example: you can build GopherJS `1.12-3` with Go `1.12` or newer. +- GopherJS compiler can be built from source with the latest stable Go release at the time when the GopherJS release is created, or any newer Go release. - - GopherJS compiler can build code using standard library of a specific Go version, normally the latest stable at the time of GopherJS release. In most cases, it should be compatible with all patch versions within the minor Go version, but this is not guaranteed. - - Example: GopherJS `1.16.0+go1.16.2` (see [developer documentation](https://github.com/gopherjs/gopherjs/wiki/Developer-Guidelines#versions) about GopherJS versioning schema) can build code with GOROOT pointing at Go `1.16.0` or `1.16.2`, but not at Go `1.15.x` or `1.17.x`. + Example: you can build GopherJS `1.12-3` with Go `1.12` or newer. - - Users can use older GopherJS releases if they need to target older Go versions, but only the latest GopherJS release is officially supported at this time. +- GopherJS compiler can build code using standard library of a specific Go version, normally the latest stable at the time of GopherJS release. In most cases, it should be compatible with all patch versions within the minor Go version, but this is not guaranteed. + + Example: GopherJS `1.16.0+go1.16.2` (see [developer documentation](https://github.com/gopherjs/gopherjs/wiki/Developer-Guidelines#versions) about GopherJS versioning schema) can build code with GOROOT pointing at Go `1.16.0` or `1.16.2`, but not at Go `1.15.x` or `1.17.x`. + +- Users can use older GopherJS releases if they need to target older Go versions, but only the latest GopherJS release is officially supported at this time. _Note_: we would love to make GopherJS compatible with more Go releases, but the amount of effort required to support that exceeds amount of time we currently have available. If you wish to lend your help to make that possible, please reach out to us! @@ -33,11 +33,11 @@ First of all, please check the list of known issues below, [package support tabl If the issue is not known yet, please open a new issue on GitHub and include the following information: - 1. Go and GopherJS versions you are using. - 2. In which environment do you see the issue (browser, nodejs, etc.). - 3. A minimal program that behaves differently when compiled with the regular Go compiler and GopherJS. +1. Go and GopherJS versions you are using. +2. In which environment do you see the issue (browser, nodejs, etc.). +3. A minimal program that behaves differently when compiled with the regular Go compiler and GopherJS. -Now that the issue exists, we (GopherJS maintainers) will do our best to address it as promptly as we can. Note, however, that all of us are working on GopherJS in our spare time after our job and family responsibilities, so we can't guarantee an immediate fix. +Now that the issue exists, we (GopherJS maintainers) will do our best to address it as promptly as we can. Note, however, that all of us are working on GopherJS in our spare time after our job and family responsibilities, so we can't guarantee an immediate fix. 🚧 If you would like to help, please consider [submitting a pull request](https://github.com/gopherjs/gopherjs/wiki/Developer-Guidelines) with a fix. If you are unsure of the best way to approach the issue, we will be happy to share whatever knowledge we can! 😃 @@ -45,11 +45,12 @@ Now that the issue exists, we (GopherJS maintainers) will do our best to address For the most part, GopherJS shouldn't require any special support for the code that only uses [supported standard packages](packages.md). -However, if you do need to provide different implementations depending on the target architecture, you can use [build constraints](https://golang.org/cmd/go/#hdr-Build_constraints) to do so: +However, if you do need to provide different implementations depending on the target architecture, you can use [build constraints](https://golang.org/cmd/go/#hdr-Build_constraints) to do so. By default, GopherJS uses `GOOS=js GOARCH=ecmascript`, which can be used in build constraints: - - `//+build js` — the source will be used for GopherJS and Go WebAssembly, but not for native builds. - - `//+build js,-wasm` — the source will be used for GopherJS only, and not WebAssembly or native builds. - - `//+build js,wasm` — the source will be used for Go WebAssembly, and not GopherJS or native builds. +- `//go:build js` — the source will be used for GopherJS and Go WebAssembly, but not for native builds. +- `//go:build js && ecmascript` — the source will be used for GopherJS only, and not WebAssembly or native builds. +- `//go:build js && wasm` — the source will be used for Go WebAssembly, and not GopherJS or native builds. +- `//go:build gopherjs` — the source will be used only by the GopherJS compiler, regardless of the `GOOS` and `GOARCH`. Use this constraint for sources that are not portable to other Go implementations. Also be careful about using GopherJS-specific packages (e.g. `github.com/gopherjs/gopherjs/js`) or features (e.g. [wrapping JavaScript objects](https://github.com/gopherjs/gopherjs/wiki/JavaScript-Tips-and-Gotchas#tips) into Go structs), since those won't work outside of GopherJS. @@ -63,5 +64,5 @@ It is worth noting that GopherJS emulates 32-bit environment, whereas Go WebAsse ## Known Go specification violations - - Bit shifts of a negative amount (e.g. `42 << -1`) panic in Go, but not in GopherJS. - - See also [open issues](https://github.com/gopherjs/gopherjs/issues) and [known failing compiler tests](https://github.com/gopherjs/gopherjs/blob/master/tests/run.go). \ No newline at end of file +- Bit shifts of a negative amount (e.g. `42 << -1`) panic in Go, but not in GopherJS. +- See also [open issues](https://github.com/gopherjs/gopherjs/issues) and [known failing compiler tests](https://github.com/gopherjs/gopherjs/blob/master/tests/run.go). diff --git a/tests/gorepo/gorepo_test.go b/tests/gorepo/gorepo_test.go index 5a4eb305b..d80715948 100644 --- a/tests/gorepo/gorepo_test.go +++ b/tests/gorepo/gorepo_test.go @@ -12,7 +12,7 @@ func TestGoRepositoryCompilerTests(t *testing.T) { if testing.Short() { t.Skip("skipping Go repository tests in the short mode") } - if runtime.GOARCH == "js" { + if runtime.GOOS == "js" { t.Skip("test meant to be run using normal Go compiler (needs os/exec)") } diff --git a/tests/gorepo/run.go b/tests/gorepo/run.go index 8795b6a5c..b2553e421 100644 --- a/tests/gorepo/run.go +++ b/tests/gorepo/run.go @@ -217,10 +217,9 @@ func main() { log.Fatalln(err) } - goos = getenv("GOOS", runtime.GOOS) - //goarch = getenv("GOARCH", runtime.GOARCH) - // GOPHERJS. - goarch = getenv("GOARCH", "js") // We're running this script natively, but the tests are executed with js architecture. + // GOPHERJS: We're running this script natively, but the tests are executed with js architecture. + goos = getenv("GOOS", "js") + goarch = getenv("GOARCH", "ecmascript") findExecCmd() @@ -682,10 +681,10 @@ func (t *test) run() { // A few tests (of things like the environment) require these to be set. if os.Getenv("GOOS") == "" { - os.Setenv("GOOS", runtime.GOOS) + os.Setenv("GOOS", goos) } if os.Getenv("GOARCH") == "" { - os.Setenv("GOARCH", runtime.GOARCH) + os.Setenv("GOARCH", goarch) } useTmp := true diff --git a/tool.go b/tool.go index f4ad0bf14..b36b005f1 100644 --- a/tool.go +++ b/tool.go @@ -64,9 +64,9 @@ func init() { os.Exit(1) } - if build.Default.GOOS != "linux" && build.Default.GOOS != "darwin" { - fmt.Fprintf(os.Stderr, "GOOS is not supported, the supported GOOS values are linux and darwin. The GopherJS is falling back to GOOS=linux\n") - build.Default.GOOS = "linux" + e := gbuild.DefaultEnv() + if e.GOOS != "js" || e.GOARCH != "ecmascript" { + fmt.Fprintf(os.Stderr, "Using GOOS=%s and GOARCH=%s in GopherJS is deprecated and will be removed in future. Use GOOS=js GOARCH=ecmascript instead.\n", e.GOOS, e.GOARCH) } } From 49f2893b27d59fd8fd30f5f433762f62476992c7 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sat, 19 Mar 2022 15:16:16 +0000 Subject: [PATCH 10/23] Disable CGo when loading packages. GopherJS doesn't support CGo. This was originally enabled to address https://github.com/gopherjs/gopherjs/issues/215 by providing a better error when attempting to build a CGo package (instead of a compiler panic). However, this approach makes GopherJS refuse to build packages, which have a CGo and purego versions guarded by the `cgo` build tag: GopherJS woudl try to load the cgo version and error out. After this change GopherJS won't attempt to load Go sources with `import "C"`, and it will load sources with `//go:build !cgo` instead. For packages that require CGo one of the following errors will be returned: - "No buildable sources" if all Go sources import C. - "Undefined symbol" for symbols defined in the Go sources that import C and that are referenced by other Go source files. - "Unknown import path C" if you try to `gopherjs run` a source with import C directly. --- build/build.go | 10 ---------- build/context.go | 10 +--------- compiler/linkname.go | 9 --------- 3 files changed, 1 insertion(+), 28 deletions(-) diff --git a/build/build.go b/build/build.go index 8f3e03eec..b5671dc2d 100644 --- a/build/build.go +++ b/build/build.go @@ -47,16 +47,6 @@ var DefaultGOROOT = func() string { return build.Default.GOROOT }() -// ImportCError is returned when GopherJS attempts to build a package that uses -// CGo. -type ImportCError struct { - pkgPath string -} - -func (e *ImportCError) Error() string { - return e.pkgPath + `: importing "C" is not supported by GopherJS` -} - // NewBuildContext creates a build context for building Go packages // with GopherJS compiler. // diff --git a/build/context.go b/build/context.go index 2a50414d3..02e0bbe71 100644 --- a/build/context.go +++ b/build/context.go @@ -98,10 +98,6 @@ func (sc simpleCtx) Import(importPath string, srcDir string, mode build.ImportMo } pkg = sc.applyPostloadTweaks(pkg) - if len(pkg.CgoFiles) > 0 { - return nil, &ImportCError{pkg.ImportPath} - } - return &PackageData{ Package: pkg, IsVirtual: sc.isVirtual, @@ -224,10 +220,6 @@ func (sc simpleCtx) applyPreloadTweaks(importPath string, srcDir string, mode bu bctx.GOARCH = "wasm" } switch importPath { - case "crypto/x509", "os/user": - // These stdlib packages have cgo and non-cgo versions (via build tags); we - // want the latter. - bctx.CgoEnabled = false case "github.com/gopherjs/gopherjs/js", "github.com/gopherjs/gopherjs/nosync": // These packages are already embedded via gopherjspkg.FS virtual filesystem // (which can be safely vendored). Don't try to use vendor directory to @@ -342,7 +334,7 @@ func goCtx(e Env) *simpleCtx { InstallSuffix: e.InstallSuffix, Compiler: "gc", BuildTags: append(append([]string{}, e.BuildTags...), defaultBuildTags...), - CgoEnabled: true, // detect `import "C"` to throw proper error + CgoEnabled: false, // CGo is not supported by GopherJS. // go/build supports modules, but only when no FS access functions are // overridden and when provided ReleaseTags match those of the default diff --git a/compiler/linkname.go b/compiler/linkname.go index d0738b370..63023beab 100644 --- a/compiler/linkname.go +++ b/compiler/linkname.go @@ -101,15 +101,6 @@ func parseGoLinknames(fset *token.FileSet, pkgPath string, file *ast.File) ([]Go obj := file.Scope.Lookup(localName) if obj == nil { - if pkgPath == "syscall" { - // Syscall uses go:cgo_import_dynamic pragma to import symbols from - // dynamic libraries when build with GOOS=darwin, which GopherJS doesn't - // support. Silently ignore such directives. - // - // In the long term https://github.com/gopherjs/gopherjs/issues/693 is a - // preferred solution. - return nil - } return fmt.Errorf("//go:linkname local symbol %q is not found in the current source file", localName) } From b94c4eb11adfbbc8881c7124e1e66227453d52d7 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sat, 19 Mar 2022 17:17:27 +0000 Subject: [PATCH 11/23] Respect --tags flag in `gopherjs run` subcommand. --- tool.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tool.go b/tool.go index b36b005f1..08674c72f 100644 --- a/tool.go +++ b/tool.go @@ -273,6 +273,7 @@ func main() { cmdRun.Flags().AddFlagSet(flagQuiet) cmdRun.Flags().AddFlagSet(compilerFlags) cmdRun.RunE = func(cmd *cobra.Command, args []string) error { + options.BuildTags = strings.Fields(tags) lastSourceArg := 0 for { if lastSourceArg == len(args) || !(strings.HasSuffix(args[lastSourceArg], ".go") || strings.HasSuffix(args[lastSourceArg], ".inc.js")) { From 7d564225c6f7a16f5d4d1ed3b9ee394019554c79 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 20 Mar 2022 12:37:01 +0000 Subject: [PATCH 12/23] Hide legacy `node-syscall` support behind a build tag. To make transition somewhat less dramatic, we can provide the old implementations for `syscall.Syscall` and its friends in case someone actually wanted to make arbitrary syscalls from GopherJS running under Node. I can't really think of any valid reason to, but who knows? To enable this, a `legacy_syscall` build tag must be passed to GopherJS. This shim is mostly intended for non-standard library code that was using syscall package directly and it is more restrictive than previously (e.g. the set of `syscall` functions still remains that of `js/wasm`), but this seems like a reasonable compromise between complexity and flexibility. I am fairly confident that our support for file system access and a few other syscalls, emulated via Node APIs is more than sufficient for all our users, so after a release or two we will be able to delete this code path entirely. --- .../syscall/{syscall_unix.go => legacy.go} | 80 +++---------- compiler/natives/src/syscall/syscall.go | 71 ------------ .../natives/src/syscall/syscall_darwin.go | 80 ------------- .../src/syscall/syscall_darwin_arm64.go | 80 ------------- .../natives/src/syscall/syscall_js_wasm.go | 33 ++++-- compiler/natives/src/syscall/syscall_linux.go | 6 - .../natives/src/syscall/syscall_nonlinux.go | 6 - .../natives/src/syscall/syscall_windows.go | 106 ------------------ doc/syscalls.md | 43 +++++-- tests/syscall_legacy_test.go | 28 +++++ tests/testdata/legacy_syscall/main.go | 18 +++ 11 files changed, 113 insertions(+), 438 deletions(-) rename compiler/natives/src/syscall/{syscall_unix.go => legacy.go} (55%) delete mode 100644 compiler/natives/src/syscall/syscall.go delete mode 100644 compiler/natives/src/syscall/syscall_darwin.go delete mode 100644 compiler/natives/src/syscall/syscall_darwin_arm64.go delete mode 100644 compiler/natives/src/syscall/syscall_linux.go delete mode 100644 compiler/natives/src/syscall/syscall_nonlinux.go delete mode 100644 compiler/natives/src/syscall/syscall_windows.go create mode 100644 tests/syscall_legacy_test.go create mode 100644 tests/testdata/legacy_syscall/main.go diff --git a/compiler/natives/src/syscall/syscall_unix.go b/compiler/natives/src/syscall/legacy.go similarity index 55% rename from compiler/natives/src/syscall/syscall_unix.go rename to compiler/natives/src/syscall/legacy.go index 0cae571c1..239ba388c 100644 --- a/compiler/natives/src/syscall/syscall_unix.go +++ b/compiler/natives/src/syscall/legacy.go @@ -1,55 +1,27 @@ -//go:build js && !windows && !wasm -// +build js,!windows,!wasm +//go:build legacy_syscall package syscall import ( - "runtime" - "unsafe" - "github.com/gopherjs/gopherjs/js" ) -func runtime_envs() []string { - process := js.Global.Get("process") - if process == js.Undefined { - return nil - } - jsEnv := process.Get("env") - envkeys := js.Global.Get("Object").Call("keys", jsEnv) - envs := make([]string, envkeys.Length()) - for i := 0; i < envkeys.Length(); i++ { - key := envkeys.Index(i).String() - envs[i] = key + "=" + jsEnv.Get(key).String() - } - return envs -} +var syscallModule *js.Object +var alreadyTriedToLoad = false +var minusOne = -1 -func setenv_c(k, v string) { - process := js.Global.Get("process") - if process == js.Undefined { - return - } - process.Get("env").Set(k, v) -} +var warningPrinted = false -func unsetenv_c(k string) { - process := js.Global.Get("process") - if process == js.Undefined { - return +func printWarning() { + if !warningPrinted { + js.Global.Get("console").Call("error", "warning: system calls not available, see https://github.com/gopherjs/gopherjs/blob/master/doc/syscalls.md") } - process.Get("env").Delete(k) + warningPrinted = true } -var syscallModule *js.Object -var alreadyTriedToLoad = false -var minusOne = -1 - func syscallByName(name string) *js.Object { - defer func() { - recover() - // return nil if recovered - }() + defer recover() // return nil if recovered + if syscallModule == nil { if alreadyTriedToLoad { return nil @@ -69,18 +41,8 @@ func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { r := f.Invoke(trap, a1, a2, a3) return uintptr(r.Index(0).Int()), uintptr(r.Index(1).Int()), Errno(r.Index(2).Int()) } - if trap == SYS_WRITE && (a1 == 1 || a1 == 2) { - array := js.InternalObject(a2) - slice := make([]byte, array.Length()) - js.InternalObject(slice).Set("$array", array) - printToConsole(slice) - return uintptr(array.Length()), 0, 0 - } - if trap == exitTrap { - runtime.Goexit() - } printWarning() - return uintptr(minusOne), 0, EACCES + return uintptr(minusOne), 0, ENOSYS } func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) { @@ -91,7 +53,7 @@ func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) if trap != 202 { // kern.osrelease on OS X, happens in init of "os" package printWarning() } - return uintptr(minusOne), 0, EACCES + return uintptr(minusOne), 0, ENOSYS } func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { @@ -100,7 +62,7 @@ func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { return uintptr(r.Index(0).Int()), uintptr(r.Index(1).Int()), Errno(r.Index(2).Int()) } printWarning() - return uintptr(minusOne), 0, EACCES + return uintptr(minusOne), 0, ENOSYS } func rawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) { @@ -118,17 +80,5 @@ func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errn return uintptr(r.Index(0).Int()), uintptr(r.Index(1).Int()), Errno(r.Index(2).Int()) } printWarning() - return uintptr(minusOne), 0, EACCES -} - -func BytePtrFromString(s string) (*byte, error) { - array := js.Global.Get("Uint8Array").New(len(s) + 1) - for i, b := range []byte(s) { - if b == 0 { - return nil, EINVAL - } - array.SetIndex(i, b) - } - array.SetIndex(len(s), 0) - return (*byte)(unsafe.Pointer(array.Unsafe())), nil + return uintptr(minusOne), 0, ENOSYS } diff --git a/compiler/natives/src/syscall/syscall.go b/compiler/natives/src/syscall/syscall.go deleted file mode 100644 index e61414533..000000000 --- a/compiler/natives/src/syscall/syscall.go +++ /dev/null @@ -1,71 +0,0 @@ -//go:build js -// +build js - -package syscall - -import ( - "unsafe" - - "github.com/gopherjs/gopherjs/js" -) - -var warningPrinted = false -var lineBuffer []byte - -func init() { - js.Global.Set("$flushConsole", js.InternalObject(func() { - if len(lineBuffer) != 0 { - js.Global.Get("console").Call("log", string(lineBuffer)) - lineBuffer = nil - } - })) -} - -func printWarning() { - if !warningPrinted { - js.Global.Get("console").Call("error", "warning: system calls not available, see https://github.com/gopherjs/gopherjs/blob/master/doc/syscalls.md") - } - warningPrinted = true -} - -func printToConsole(b []byte) { - goPrintToConsole := js.Global.Get("goPrintToConsole") - if goPrintToConsole != js.Undefined { - goPrintToConsole.Invoke(js.InternalObject(b)) - return - } - - lineBuffer = append(lineBuffer, b...) - for { - i := indexByte(lineBuffer, '\n') - if i == -1 { - break - } - js.Global.Get("console").Call("log", string(lineBuffer[:i])) // don't use println, since it does not externalize multibyte characters - lineBuffer = lineBuffer[i+1:] - } -} - -func use(p unsafe.Pointer) { - // no-op -} - -func Exit(code int) { - if process := js.Global.Get("process"); process.Bool() { - process.Call("exit", code) - return - } - if code != 0 { - js.Global.Get("console").Call("warn", "Go program exited with non-zero code:", code) - } -} - -// indexByte is copied from bytes package to avoid importing it (since the real syscall package doesn't). -func indexByte(s []byte, c byte) int { - for i, b := range s { - if b == c { - return i - } - } - return -1 -} diff --git a/compiler/natives/src/syscall/syscall_darwin.go b/compiler/natives/src/syscall/syscall_darwin.go deleted file mode 100644 index a3fff23de..000000000 --- a/compiler/natives/src/syscall/syscall_darwin.go +++ /dev/null @@ -1,80 +0,0 @@ -//go:build js && !arm64 -// +build js,!arm64 - -package syscall - -import "github.com/gopherjs/gopherjs/js" - -func funcPC(f func()) uintptr { - switch js.InternalObject(f) { - case js.InternalObject(libc_open_trampoline): - return SYS_OPEN - case js.InternalObject(libc_stat64_trampoline): - return SYS_STAT64 - case js.InternalObject(libc_fstat64_trampoline): - return SYS_FSTAT64 - case js.InternalObject(libc_lstat64_trampoline): - return SYS_LSTAT64 - case js.InternalObject(libc_mkdir_trampoline): - return SYS_MKDIR - case js.InternalObject(libc_chdir_trampoline): - return SYS_CHDIR - case js.InternalObject(libc_rmdir_trampoline): - return SYS_RMDIR - case js.InternalObject(libc_symlink_trampoline): - return SYS_SYMLINK - case js.InternalObject(libc_readlink_trampoline): - return SYS_READLINK - case js.InternalObject(libc_fcntl_trampoline): - return SYS_FCNTL - case js.InternalObject(libc_read_trampoline): - return SYS_READ - case js.InternalObject(libc_pread_trampoline): - return SYS_PREAD - case js.InternalObject(libc_write_trampoline): - return SYS_WRITE - case js.InternalObject(libc_lseek_trampoline): - return SYS_LSEEK - case js.InternalObject(libc_close_trampoline): - return SYS_CLOSE - case js.InternalObject(libc_unlink_trampoline): - return SYS_UNLINK - case js.InternalObject(libc_getpid_trampoline): - return SYS_GETPID - case js.InternalObject(libc_getuid_trampoline): - return SYS_GETUID - case js.InternalObject(libc_getgid_trampoline): - return SYS_GETGID - default: - // If we just return -1, the caller can only print an unhelpful generic error message, like - // "signal: bad system call". - // So, execute f() to get a more helpful error message that includes the syscall name, like - // "runtime error: native function not implemented: syscall.libc_getpid_trampoline". - f() - return uintptr(minusOne) - } -} - -func syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { - return Syscall(trap, a1, a2, a3) -} - -func syscallX(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { - return Syscall(trap, a1, a2, a3) -} - -func syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) { - return Syscall6(trap, a1, a2, a3, a4, a5, a6) -} - -func syscall6X(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) { - panic("syscall6X is not implemented") -} - -func rawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { - return RawSyscall(trap, a1, a2, a3) -} - -func rawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) { - return RawSyscall6(trap, a1, a2, a3, a4, a5, a6) -} diff --git a/compiler/natives/src/syscall/syscall_darwin_arm64.go b/compiler/natives/src/syscall/syscall_darwin_arm64.go deleted file mode 100644 index 53d6c67fd..000000000 --- a/compiler/natives/src/syscall/syscall_darwin_arm64.go +++ /dev/null @@ -1,80 +0,0 @@ -//go:build js -// +build js - -package syscall - -import "github.com/gopherjs/gopherjs/js" - -func funcPC(f func()) uintptr { - switch js.InternalObject(f) { - case js.InternalObject(libc_open_trampoline): - return SYS_OPEN - case js.InternalObject(libc_stat_trampoline): - return SYS_STAT64 - case js.InternalObject(libc_fstat_trampoline): - return SYS_FSTAT64 - case js.InternalObject(libc_lstat_trampoline): - return SYS_LSTAT64 - case js.InternalObject(libc_mkdir_trampoline): - return SYS_MKDIR - case js.InternalObject(libc_chdir_trampoline): - return SYS_CHDIR - case js.InternalObject(libc_rmdir_trampoline): - return SYS_RMDIR - case js.InternalObject(libc_symlink_trampoline): - return SYS_SYMLINK - case js.InternalObject(libc_readlink_trampoline): - return SYS_READLINK - case js.InternalObject(libc_fcntl_trampoline): - return SYS_FCNTL - case js.InternalObject(libc_read_trampoline): - return SYS_READ - case js.InternalObject(libc_pread_trampoline): - return SYS_PREAD - case js.InternalObject(libc_write_trampoline): - return SYS_WRITE - case js.InternalObject(libc_lseek_trampoline): - return SYS_LSEEK - case js.InternalObject(libc_close_trampoline): - return SYS_CLOSE - case js.InternalObject(libc_unlink_trampoline): - return SYS_UNLINK - case js.InternalObject(libc_getpid_trampoline): - return SYS_GETPID - case js.InternalObject(libc_getuid_trampoline): - return SYS_GETUID - case js.InternalObject(libc_getgid_trampoline): - return SYS_GETGID - default: - // If we just return -1, the caller can only print an unhelpful generic error message, like - // "signal: bad system call". - // So, execute f() to get a more helpful error message that includes the syscall name, like - // "runtime error: native function not implemented: syscall.libc_getpid_trampoline". - f() - return uintptr(minusOne) - } -} - -func syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { - return Syscall(trap, a1, a2, a3) -} - -func syscallX(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { - return Syscall(trap, a1, a2, a3) -} - -func syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) { - return Syscall6(trap, a1, a2, a3, a4, a5, a6) -} - -func syscall6X(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) { - panic("syscall6X is not implemented") -} - -func rawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { - return RawSyscall(trap, a1, a2, a3) -} - -func rawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) { - return RawSyscall6(trap, a1, a2, a3, a4, a5, a6) -} diff --git a/compiler/natives/src/syscall/syscall_js_wasm.go b/compiler/natives/src/syscall/syscall_js_wasm.go index 9b6b0cc94..2e40c4829 100644 --- a/compiler/natives/src/syscall/syscall_js_wasm.go +++ b/compiler/natives/src/syscall/syscall_js_wasm.go @@ -1,19 +1,18 @@ +//go:build js + package syscall import ( - sysjs "syscall/js" - - "github.com/gopherjs/gopherjs/js" + "syscall/js" ) -// FIXME(nevkontakte): Duplicated from syscall_unix.go. func runtime_envs() []string { - process := js.Global.Get("process") - if process == js.Undefined { + process := js.Global().Get("process") + if process.IsUndefined() { return nil } jsEnv := process.Get("env") - envkeys := js.Global.Get("Object").Call("keys", jsEnv) + envkeys := js.Global().Get("Object").Call("keys", jsEnv) envs := make([]string, envkeys.Length()) for i := 0; i < envkeys.Length(); i++ { key := envkeys.Index(i).String() @@ -23,22 +22,22 @@ func runtime_envs() []string { } func setenv_c(k, v string) { - process := js.Global.Get("process") - if process == js.Undefined { + process := js.Global().Get("process") + if process.IsUndefined() { return } process.Get("env").Set(k, v) } func unsetenv_c(k string) { - process := js.Global.Get("process") - if process == js.Undefined { + process := js.Global().Get("process") + if process.IsUndefined() { return } process.Get("env").Delete(k) } -func setStat(st *Stat_t, jsSt sysjs.Value) { +func setStat(st *Stat_t, jsSt js.Value) { // This method is an almost-exact copy of upstream, except for 4 places where // time stamps are obtained as floats in lieu of int64. Unstread wasm emulates // a 64-bit architecture and millisecond-based timestamps fit within an int @@ -66,3 +65,13 @@ func setStat(st *Stat_t, jsSt sysjs.Value) { st.Ctime = ctime / 1000 st.CtimeNsec = (ctime % 1000) * 1000000 } + +func Exit(code int) { + if process := js.Global().Get("process"); !process.IsUndefined() { + process.Call("exit", code) + return + } + if code != 0 { + js.Global().Get("console").Call("warn", "Go program exited with non-zero code:", code) + } +} diff --git a/compiler/natives/src/syscall/syscall_linux.go b/compiler/natives/src/syscall/syscall_linux.go deleted file mode 100644 index 375f11857..000000000 --- a/compiler/natives/src/syscall/syscall_linux.go +++ /dev/null @@ -1,6 +0,0 @@ -//go:build js -// +build js - -package syscall - -const exitTrap = SYS_EXIT_GROUP diff --git a/compiler/natives/src/syscall/syscall_nonlinux.go b/compiler/natives/src/syscall/syscall_nonlinux.go deleted file mode 100644 index 17f120bc1..000000000 --- a/compiler/natives/src/syscall/syscall_nonlinux.go +++ /dev/null @@ -1,6 +0,0 @@ -//go:build js && !linux && !wasm -// +build js,!linux,!wasm - -package syscall - -const exitTrap = SYS_EXIT diff --git a/compiler/natives/src/syscall/syscall_windows.go b/compiler/natives/src/syscall/syscall_windows.go deleted file mode 100644 index 70ab9ad20..000000000 --- a/compiler/natives/src/syscall/syscall_windows.go +++ /dev/null @@ -1,106 +0,0 @@ -//go:build js -// +build js - -package syscall - -import "runtime" - -var minusOne = -1 - -func Syscall(trap, nargs, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) { - printWarning() - return uintptr(minusOne), 0, EACCES -} - -func Syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) { - printWarning() - return uintptr(minusOne), 0, EACCES -} - -func Syscall9(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno) { - printWarning() - return uintptr(minusOne), 0, EACCES -} - -func Syscall12(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12 uintptr) (r1, r2 uintptr, err Errno) { - printWarning() - return uintptr(minusOne), 0, EACCES -} - -func Syscall15(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15 uintptr) (r1, r2 uintptr, err Errno) { - printWarning() - return uintptr(minusOne), 0, EACCES -} - -func Syscall18(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18 uintptr) (r1, r2 uintptr, err Errno) { - printWarning() - return uintptr(minusOne), 0, EACCES -} - -func loadlibrary(filename *uint16) (handle uintptr, err Errno) { - printWarning() - return uintptr(minusOne), EACCES -} - -func getprocaddress(handle uintptr, procname *uint8) (proc uintptr, err Errno) { - printWarning() - return uintptr(minusOne), EACCES -} - -func (d *LazyDLL) Load() error { - return &DLLError{Msg: "system calls not available, see https://github.com/gopherjs/gopherjs/blob/master/doc/syscalls.md"} -} - -func (p *LazyProc) Find() error { - return &DLLError{Msg: "system calls not available, see https://github.com/gopherjs/gopherjs/blob/master/doc/syscalls.md"} -} - -func getStdHandle(h int) (fd Handle) { - if h == STD_OUTPUT_HANDLE { - return 1 - } - if h == STD_ERROR_HANDLE { - return 2 - } - return 0 -} - -func GetConsoleMode(console Handle, mode *uint32) (err error) { - return DummyError{} -} - -func WriteFile(handle Handle, buf []byte, done *uint32, overlapped *Overlapped) (err error) { - if handle == 1 || handle == 2 { - printToConsole(buf) - *done = uint32(len(buf)) - return nil - } - printWarning() - return nil -} - -func ExitProcess(exitcode uint32) { - runtime.Goexit() -} - -func GetCommandLine() (cmd *uint16) { - return -} - -func CommandLineToArgv(cmd *uint16, argc *int32) (argv *[8192]*[8192]uint16, err error) { - return nil, DummyError{} -} - -func Getenv(key string) (value string, found bool) { - return "", false -} - -func GetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err error) { - return 0, DummyError{} -} - -type DummyError struct{} - -func (e DummyError) Error() string { - return "" -} diff --git a/doc/syscalls.md b/doc/syscalls.md index 953d3b4ee..01f3f361d 100644 --- a/doc/syscalls.md +++ b/doc/syscalls.md @@ -1,8 +1,9 @@ -System Calls ------------- +## System Calls System calls are the bridge between your application and your operating system. They are used whenever you access something outside of your application's memory, for example when you write to the console, when you read or write files or when you access the network. In Go, system calls are mostly used by the `os` package, hence the name. When using GopherJS you need to consider if system calls are available or not. +Starting with 1.18, GopherJS provides to the same [set of cross-platform](https://pkg.go.dev/syscall?GOOS=js) syscalls as standard Go WebAssembly, emulating them via JavaScript APIs available in the runtime (browser or Node.js). + ### Output redirection to console If system calls are not available in your environment (see below), then a special redirection of `os.Stdout` and `os.Stderr` is applied. It buffers a line until it is terminated by a line break and then prints it via JavaScript's `console.log` to your browser's JavaScript console or your system console. That way, `fmt.Println` etc. work as expected, even if system calls are not available. @@ -11,9 +12,35 @@ If system calls are not available in your environment (see below), then a specia The JavaScript environment of a web browser is completely isolated from your operating system to protect your machine. You don't want any web page to read or write files on your disk without your consent. That is why system calls are not and will never be available when running your code in a web browser. -### Node.js on Linux and macOS +However, certain subsets of syscalls can be emulated using third-party libraries. For example, [BrowserFS](https://github.com/jvilk/BrowserFS) library can be used to emulate Node.js file system API in a browser using HTML5 LocalStorage or other fallbacks. + +### Node.js on all platforms + +GopherJS emulates syscalls for accessing file system (and a few others) using Node.js standard [`fs`](https://nodejs.org/api/fs.html) and [`process`](https://nodejs.org/api/process.html) APIs. No additional extensions are required for this in GopherJS 1.18 and newer. + +### Node.js with the legacy node-syscall extension. + +Prior to 1.18 GopherJS required a custom Node extension to be installed that provided access to system calls on Linux and MacOS. Currently this extension is deprecated and its support will be removed entirely in a future release. This decision is motivated by several factors: + +- This extension has been developed before Go had WebAssembly support and at the time there was no easier way to provide file system access. Today standard library for `js/wasm` provides most of the relevant functionality without the need for custom extensions. +- It required GopherJS to support building Go standard library with multiple different GOOS/GOARCH combinations, which significantly increased maintenance effort and slowed down support for new Go versions. It was not supported on Windows entirely. +- Using this extension required non-trivial setup for the users who needed file system access. +- The extension itself contained significant technical debt and potential memory leaks. +- File system syscalls use asynchronous Node.js API, so other goroutines doesn't get blocked. + +Issue [#693](https://github.com/gopherjs/gopherjs/issues/693) has a detailed discussion of this. -GopherJS has support for system calls on Linux and macOS. Before running your code with Node.js, you need to install the system calls module. The module is compatible with Node.js version 10.0.0 (or newer). If you want to use an older version you can opt to not install the module, but then system calls are not available. +In GopherJS 1.18 support for this extension is disabled by default to reduce the output size. It can be enabled with a build tag `legacy_syscall` (for example, `gopherjs build --tags legacy_syscall pkg/name`) with the following caveats: + +- `node-syscall` extension must be built and installed according to instructions below. +- Functions `syscall.Syscall`, `syscall.Syscall6`, `syscall.RawSyscall` and `syscall.RawSyscall6` will be changed to use the extension API and can be called from the third-party code. +- Standard library is still built for `js/wasm` regardless of the host OS, so the syscall package API will remain reduced compared to `linux` or `darwin`. +- All functions in the `syscall` package that GopherJS emulates via Node.js APIs will continue using those APIs. +- While executing a legacy syscall, all goroutines get blocked. This may cause some programs not to behave as expected. + +We strongly recommend upgrading your package to not use `syscall` package directly and use higher-level APIs in the `os` package, which will continue working. + +The module is compatible with Node.js version 10.0.0 (or newer). If you want to use an older version you can opt to not install the module, but then system calls are not available. Compile and install the module with: @@ -35,11 +62,3 @@ Alternatively, in _your_ `package.json` you can do something like this: ``` Which will make `npm install` in your project capable of building the extension. You may need to set `export NODE_PATH="$(npm root)"` to ensure that node can load modules from any working directory, for example when running `gopherjs test`. - -### Node.js on Windows - -When running your code with Node.js on Windows, it is theoretically possible to use system calls. To do so, you would need a special Node.js module that provides direct access to system calls. However, since the interface is quite different from the one used on Linux and macOS, the system calls module included in GopherJS currently does not support Windows. Sorry. Get in contact if you feel like you want to change this situation. - -### Caveats - -Note that even with syscalls enabled in Node.js, some programs may not behave as expected due to the fact that the current implementation blocks other goroutines during a syscall, which can lead to a deadlock in some situations. This is not considered a bug, as it is considered sufficient for most test cases (which is all Node.js should be used for). Get in contact if you feel like you want to change this situation. diff --git a/tests/syscall_legacy_test.go b/tests/syscall_legacy_test.go new file mode 100644 index 000000000..bdfc08848 --- /dev/null +++ b/tests/syscall_legacy_test.go @@ -0,0 +1,28 @@ +package tests + +import ( + "os/exec" + "runtime" + "testing" +) + +// TestLegacySyscall tests raw syscall invocation using node_syscall extension. +// +// This mode is largely deprecated (e.g. we build standard library with GOOS=js), +// but we support using the extension when "legacy_syscall" build tag is set. +// This test can be removed after we stop supporting node_syscall extension. +func TestLegacySyscall(t *testing.T) { + if runtime.GOOS != "linux" { + t.Skip("This test is supported only under Linux") + } + cmd := exec.Command("gopherjs", "run", "--tags=legacy_syscall", "./testdata/legacy_syscall/main.go") + out, err := cmd.CombinedOutput() + got := string(out) + if err != nil { + t.Log(got) + t.Fatalf("Failed to run test code under gopherjs: %s", err) + } + if want := "Hello, world!\n"; got != want { + t.Errorf("Got wrong output: %q. Want: %q.", got, want) + } +} diff --git a/tests/testdata/legacy_syscall/main.go b/tests/testdata/legacy_syscall/main.go new file mode 100644 index 000000000..94c6c6413 --- /dev/null +++ b/tests/testdata/legacy_syscall/main.go @@ -0,0 +1,18 @@ +//go:build legacy_syscall,gopherjs + +// This program tests GopherJS's ability to perform raw syscalls using the +// deprecated node_syscall extension. See TestLegacySyscall. +package main + +import ( + "syscall" + "unsafe" +) + +func main() { + msg := []byte("Hello, world!\n") + _, _, errno := syscall.Syscall(1 /* SYS_WRITE on Linux */, 1 /* stdout */, uintptr(unsafe.Pointer(&msg[0])), uintptr(len(msg))) + if errno != 0 { + println(errno.Error()) + } +} From 305cb64b7ddbde783b64378d038226e5c39de0ed Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 20 Mar 2022 12:52:39 +0000 Subject: [PATCH 13/23] Remove unnecessary package tweaks for `crypto/rand`. We could remove our overlay entirely, but our implementation seems to be more advanced than the one of `js/wasm` in the standard library, so we keep it for now. --- build/context.go | 2 -- compiler/natives/src/crypto/rand/rand.go | 20 ++------------------ 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/build/context.go b/build/context.go index 02e0bbe71..b5c6c8c34 100644 --- a/build/context.go +++ b/build/context.go @@ -253,8 +253,6 @@ func (sc simpleCtx) applyPostloadTweaks(pkg *build.Package) *build.Package { // GopherJS completely replaces sync.Pool implementation with a simpler one, // since it always executes in a single-threaded environment. pkg.GoFiles = exclude(pkg.GoFiles, "pool.go") - case "crypto/rand": - pkg.GoFiles = []string{"rand.go", "util.go"} case "syscall/js": // Reuse upstream tests to ensure conformance, but completely replace // implementation. diff --git a/compiler/natives/src/crypto/rand/rand.go b/compiler/natives/src/crypto/rand/rand.go index 912c72df8..1c3631a02 100644 --- a/compiler/natives/src/crypto/rand/rand.go +++ b/compiler/natives/src/crypto/rand/rand.go @@ -9,13 +9,9 @@ import ( "github.com/gopherjs/gopherjs/js" ) -func init() { - Reader = &rngReader{} -} - -type rngReader struct{} +type reader struct{} -func (r *rngReader) Read(b []byte) (n int, err error) { +func (r *reader) Read(b []byte) (n int, err error) { array := js.InternalObject(b).Get("$array") offset := js.InternalObject(b).Get("$offset").Int() @@ -48,15 +44,3 @@ func (r *rngReader) Read(b []byte) (n int, err error) { return 0, errors.New("crypto/rand not available in this environment") } - -func batched(f func([]byte) bool, readMax int) func([]byte) bool { - return func(buf []byte) bool { - for len(buf) > readMax { - if !f(buf[:readMax]) { - return false - } - buf = buf[readMax:] - } - return len(buf) == 0 || f(buf) - } -} From de83fe4e22244498dfeba6a2fc7301a43896c0aa Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 20 Mar 2022 12:58:14 +0000 Subject: [PATCH 14/23] Remove unnecessary overlays and package tweaks for `internal/poll`. We only build standard library for `js/wasm` now, which works for us as-is, except for a couple of `go:linkname` directives we need to keep. --- build/context.go | 2 - compiler/natives/src/internal/poll/fd_poll.go | 58 ------------------- .../natives/src/internal/poll/splice_linux.go | 9 --- .../src/internal/poll/splice_linux_test.go | 10 ---- 4 files changed, 79 deletions(-) delete mode 100644 compiler/natives/src/internal/poll/fd_poll.go delete mode 100644 compiler/natives/src/internal/poll/splice_linux.go delete mode 100644 compiler/natives/src/internal/poll/splice_linux_test.go diff --git a/build/context.go b/build/context.go index b5c6c8c34..2587afe4a 100644 --- a/build/context.go +++ b/build/context.go @@ -247,8 +247,6 @@ func (sc simpleCtx) applyPostloadTweaks(pkg *build.Package) *build.Package { pkg.GoFiles = []string{} // Package sources are completely replaced in natives. case "runtime/pprof": pkg.GoFiles = nil - case "internal/poll": - pkg.GoFiles = exclude(pkg.GoFiles, "fd_poll_runtime.go") case "sync": // GopherJS completely replaces sync.Pool implementation with a simpler one, // since it always executes in a single-threaded environment. diff --git a/compiler/natives/src/internal/poll/fd_poll.go b/compiler/natives/src/internal/poll/fd_poll.go deleted file mode 100644 index e0a6461ff..000000000 --- a/compiler/natives/src/internal/poll/fd_poll.go +++ /dev/null @@ -1,58 +0,0 @@ -//go:build js && !wasm -// +build js,!wasm - -package poll - -import "time" - -// pollDesc is a no-op implementation of an I/O poller for GOARCH=js. -// -// Its implementation is based on NaCL in gc compiler (see GOROOT/src/internal/poll/fd_poll_nacl.go), -// but it does even less. -type pollDesc struct { - closing bool -} - -func (pd *pollDesc) init(fd *FD) error { return nil } - -func (pd *pollDesc) close() {} - -func (pd *pollDesc) evict() { pd.closing = true } - -func (pd *pollDesc) prepare(mode int, isFile bool) error { - if pd.closing { - return errClosing(isFile) - } - return nil -} - -func (pd *pollDesc) prepareRead(isFile bool) error { return pd.prepare('r', isFile) } - -func (pd *pollDesc) prepareWrite(isFile bool) error { return pd.prepare('w', isFile) } - -func (pd *pollDesc) wait(mode int, isFile bool) error { - if pd.closing { - return errClosing(isFile) - } - return ErrDeadlineExceeded -} - -func (pd *pollDesc) waitRead(isFile bool) error { return pd.wait('r', isFile) } - -func (pd *pollDesc) waitWrite(isFile bool) error { return pd.wait('w', isFile) } - -func (*pollDesc) waitCanceled(mode int) {} - -func (*pollDesc) pollable() bool { return true } - -func (*FD) SetDeadline(t time.Time) error { return nil } - -func (*FD) SetReadDeadline(t time.Time) error { return nil } - -func (*FD) SetWriteDeadline(t time.Time) error { return nil } - -// PollDescriptor returns the descriptor being used by the poller, -// or ^uintptr(0) if there isn't one. This is only used for testing. -func PollDescriptor() uintptr { - return ^uintptr(0) -} diff --git a/compiler/natives/src/internal/poll/splice_linux.go b/compiler/natives/src/internal/poll/splice_linux.go deleted file mode 100644 index a123fc748..000000000 --- a/compiler/natives/src/internal/poll/splice_linux.go +++ /dev/null @@ -1,9 +0,0 @@ -//go:build js && !wasm -// +build js,!wasm - -package poll - -import "unsafe" - -// Workaround for https://github.com/gopherjs/gopherjs/issues/1060. -var disableSplice unsafe.Pointer = unsafe.Pointer((*bool)(nil)) diff --git a/compiler/natives/src/internal/poll/splice_linux_test.go b/compiler/natives/src/internal/poll/splice_linux_test.go deleted file mode 100644 index 5bfa38ce3..000000000 --- a/compiler/natives/src/internal/poll/splice_linux_test.go +++ /dev/null @@ -1,10 +0,0 @@ -//go:build js && !wasm -// +build js,!wasm - -package poll_test - -import "testing" - -func TestSplicePipePool(t *testing.T) { - t.Skip("Test relies upon runtime.SetFinalizer and runtime.GC(), which are not supported by GopherJS.") -} From f7681d2a1df6042972fcc1c69fc2ebea397b2ddb Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 20 Mar 2022 13:29:50 +0000 Subject: [PATCH 15/23] Remove unnecessary standard library overlays. After we switched to building standard library for the `js/wasm` target, some of the overlays we had to maintain for other GOOS values are no longer necessary: - `crypto/x509` - `debug/elf` - `internal/syscall/linux` - `internal/testenv` - `net` - "noat" implementation of `os.RemoveAll`. --- compiler/natives/src/crypto/x509/x509.go | 10 -- compiler/natives/src/crypto/x509/x509_test.go | 30 ---- compiler/natives/src/debug/elf/elf_test.go | 10 -- .../natives/src/internal/syscall/unix/unix.go | 23 --- .../natives/src/internal/testenv/testenv.go | 27 ---- compiler/natives/src/net/net.go | 66 -------- compiler/natives/src/os/removeall_noat.go | 147 ------------------ 7 files changed, 313 deletions(-) delete mode 100644 compiler/natives/src/crypto/x509/x509.go delete mode 100644 compiler/natives/src/crypto/x509/x509_test.go delete mode 100644 compiler/natives/src/debug/elf/elf_test.go delete mode 100644 compiler/natives/src/internal/syscall/unix/unix.go delete mode 100644 compiler/natives/src/internal/testenv/testenv.go delete mode 100644 compiler/natives/src/net/net.go delete mode 100644 compiler/natives/src/os/removeall_noat.go diff --git a/compiler/natives/src/crypto/x509/x509.go b/compiler/natives/src/crypto/x509/x509.go deleted file mode 100644 index 0932c0c60..000000000 --- a/compiler/natives/src/crypto/x509/x509.go +++ /dev/null @@ -1,10 +0,0 @@ -//go:build js -// +build js - -package x509 - -import "errors" - -func loadSystemRoots() (*CertPool, error) { - return nil, errors.New("crypto/x509: system root pool is not available in GopherJS") -} diff --git a/compiler/natives/src/crypto/x509/x509_test.go b/compiler/natives/src/crypto/x509/x509_test.go deleted file mode 100644 index 3e1d7bd7f..000000000 --- a/compiler/natives/src/crypto/x509/x509_test.go +++ /dev/null @@ -1,30 +0,0 @@ -//go:build js -// +build js - -package x509 - -import "testing" - -func TestSystemCertPool(t *testing.T) { - t.Skip("no system roots") -} - -func TestSystemRoots(t *testing.T) { - t.Skip("no system roots") -} - -func TestLoadSystemCertsLoadColonSeparatedDirs(t *testing.T) { - t.Skip("no system roots") -} - -func TestEnvVars(t *testing.T) { - t.Skip("no system roots") -} - -func TestSystemVerify(t *testing.T) { - t.Skip("no system") -} - -func TestImports(t *testing.T) { - t.Skip("no system") -} diff --git a/compiler/natives/src/debug/elf/elf_test.go b/compiler/natives/src/debug/elf/elf_test.go deleted file mode 100644 index 1602c63fc..000000000 --- a/compiler/natives/src/debug/elf/elf_test.go +++ /dev/null @@ -1,10 +0,0 @@ -//go:build js -// +build js - -package elf - -import "testing" - -func TestNoSectionOverlaps(t *testing.T) { - t.Skip("not 6l") -} diff --git a/compiler/natives/src/internal/syscall/unix/unix.go b/compiler/natives/src/internal/syscall/unix/unix.go deleted file mode 100644 index e63a6463f..000000000 --- a/compiler/natives/src/internal/syscall/unix/unix.go +++ /dev/null @@ -1,23 +0,0 @@ -//go:build js && !wasm -// +build js,!wasm - -package unix - -import "syscall" - -const ( - randomTrap uintptr = 0 - fstatatTrap uintptr = 0 - getrandomTrap uintptr = 0 - copyFileRangeTrap uintptr = 0 -) - -func IsNonblock(fd int) (nonblocking bool, err error) { - return false, nil -} - -func unlinkat(dirfd int, path string, flags int) error { - // There's no SYS_UNLINKAT defined in Go 1.12 for Darwin, - // so just implement unlinkat using unlink for now. - return syscall.Unlink(path) -} diff --git a/compiler/natives/src/internal/testenv/testenv.go b/compiler/natives/src/internal/testenv/testenv.go deleted file mode 100644 index e9cf90c3c..000000000 --- a/compiler/natives/src/internal/testenv/testenv.go +++ /dev/null @@ -1,27 +0,0 @@ -//go:build js && !wasm -// +build js,!wasm - -package testenv - -import ( - "runtime" - "strings" -) - -// HasExec reports whether the current system can start new processes -// using os.StartProcess or (more commonly) exec.Command. -func HasExec() bool { - switch runtime.GOOS { - case "nacl": - return false - case "darwin": - if strings.HasPrefix(runtime.GOARCH, "arm") { - return false - } - } - switch runtime.GOARCH { - case "js": - return false - } - return true -} diff --git a/compiler/natives/src/net/net.go b/compiler/natives/src/net/net.go deleted file mode 100644 index 1b3d6ab01..000000000 --- a/compiler/natives/src/net/net.go +++ /dev/null @@ -1,66 +0,0 @@ -//go:build js && !wasm -// +build js,!wasm - -package net - -import ( - "errors" - "syscall" - - "github.com/gopherjs/gopherjs/js" -) - -func Listen(net, laddr string) (Listener, error) { - panic(errors.New("network access is not supported by GopherJS")) -} - -func (d *Dialer) Dial(network, address string) (Conn, error) { - panic(errors.New("network access is not supported by GopherJS")) -} - -func sysInit() { -} - -func probeIPv4Stack() bool { - return false -} - -func probeIPv6Stack() (supportsIPv6, supportsIPv4map bool) { - return false, false -} - -func probeWindowsIPStack() (supportsVistaIP bool) { - return false -} - -func maxListenerBacklog() int { - return syscall.SOMAXCONN -} - -// Copy of strings.IndexByte. -func byteIndex(s string, c byte) int { - return js.InternalObject(s).Call("indexOf", js.Global.Get("String").Call("fromCharCode", c)).Int() -} - -// Copy of bytes.Equal. -func bytesEqual(x, y []byte) bool { - if len(x) != len(y) { - return false - } - for i, b := range x { - if b != y[i] { - return false - } - } - return true -} - -// Copy of bytes.IndexByte. -func bytesIndexByte(s []byte, c byte) int { - for i, b := range s { - if b == c { - return i - } - } - return -1 -} diff --git a/compiler/natives/src/os/removeall_noat.go b/compiler/natives/src/os/removeall_noat.go deleted file mode 100644 index 230f3cb27..000000000 --- a/compiler/natives/src/os/removeall_noat.go +++ /dev/null @@ -1,147 +0,0 @@ -// Copyright 2018 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// GopherJS uses "noat" implementation of os.RemoveAll() because our node-syscall -// module can't handle passing a struct in correctly. -// https://github.com/gopherjs/gopherjs/issues/993 - -//go:build js -// +build js - -package os - -import ( - "io" - "runtime" - "syscall" -) - -func removeAll(path string) error { - if path == "" { - // fail silently to retain compatibility with previous behavior - // of RemoveAll. See issue 28830. - return nil - } - - // The rmdir system call permits removing "." on Plan 9, - // so we don't permit it to remain consistent with the - // "at" implementation of RemoveAll. - if endsWithDot(path) { - return &PathError{Op: "RemoveAll", Path: path, Err: syscall.EINVAL} - } - - // Simple case: if Remove works, we're done. - err := Remove(path) - if err == nil || IsNotExist(err) { - return nil - } - - // Otherwise, is this a directory we need to recurse into? - dir, serr := Lstat(path) - if serr != nil { - if serr, ok := serr.(*PathError); ok && (IsNotExist(serr.Err) || serr.Err == syscall.ENOTDIR) { - return nil - } - return serr - } - if !dir.IsDir() { - // Not a directory; return the error from Remove. - return err - } - - // Remove contents & return first error. - err = nil - for { - fd, err := Open(path) - if err != nil { - if IsNotExist(err) { - // Already deleted by someone else. - return nil - } - return err - } - - const reqSize = 1024 - var names []string - var readErr error - - for { - numErr := 0 - names, readErr = fd.Readdirnames(reqSize) - - for _, name := range names { - err1 := RemoveAll(path + string(PathSeparator) + name) - if err == nil { - err = err1 - } - if err1 != nil { - numErr++ - } - } - - // If we can delete any entry, break to start new iteration. - // Otherwise, we discard current names, get next entries and try deleting them. - if numErr != reqSize { - break - } - } - - // Removing files from the directory may have caused - // the OS to reshuffle it. Simply calling Readdirnames - // again may skip some entries. The only reliable way - // to avoid this is to close and re-open the - // directory. See issue 20841. - fd.Close() - - if readErr == io.EOF { - break - } - // If Readdirnames returned an error, use it. - if err == nil { - err = readErr - } - if len(names) == 0 { - break - } - - // We don't want to re-open unnecessarily, so if we - // got fewer than request names from Readdirnames, try - // simply removing the directory now. If that - // succeeds, we are done. - if len(names) < reqSize { - err1 := Remove(path) - if err1 == nil || IsNotExist(err1) { - return nil - } - - if err != nil { - // We got some error removing the - // directory contents, and since we - // read fewer names than we requested - // there probably aren't more files to - // remove. Don't loop around to read - // the directory again. We'll probably - // just get the same error. - return err - } - } - } - - // Remove directory. - err1 := Remove(path) - if err1 == nil || IsNotExist(err1) { - return nil - } - if runtime.GOOS == "windows" && IsPermission(err1) { - if fs, err := Stat(path); err == nil { - if err = Chmod(path, FileMode(0200|int(fs.Mode()))); err == nil { - err1 = Remove(path) - } - } - } - if err == nil { - err = err1 - } - return err -} From 59958da68eaf610778e50a022508a82b8e9c06a8 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 20 Mar 2022 14:50:55 +0000 Subject: [PATCH 16/23] Refactor TestNativesDontImportExtraPackages. - Reduce code duplication. - Ensure that it uses the same loading context as the compiler. - Ensure it uses the same test variants of packages as the compiler. --- build/build.go | 4 ++ build/build_test.go | 144 ++++++++++---------------------------------- build/context.go | 8 ++- 3 files changed, 41 insertions(+), 115 deletions(-) diff --git a/build/build.go b/build/build.go index b5671dc2d..ac180ceed 100644 --- a/build/build.go +++ b/build/build.go @@ -351,6 +351,10 @@ type PackageData struct { bctx *build.Context // The original build context this package came from. } +func (p PackageData) String() string { + return fmt.Sprintf("%s [is_test=%v]", p.ImportPath, p.IsTest) +} + // InternalBuildContext returns the build context that produced the package. // // WARNING: This function is a part of internal API and will be removed in diff --git a/build/build_test.go b/build/build_test.go index a9a39a0e3..5d7cfe4f7 100644 --- a/build/build_test.go +++ b/build/build_test.go @@ -5,7 +5,6 @@ import ( gobuild "go/build" "go/token" "strconv" - "strings" "testing" "github.com/shurcooL/go/importgraphutil" @@ -23,12 +22,13 @@ import ( func TestNativesDontImportExtraPackages(t *testing.T) { // Calculate the forward import graph for all standard library packages. // It's needed for populateImportSet. - stdOnly := gobuild.Default - stdOnly.GOPATH = "" // We only care about standard library, so skip all GOPATH packages. - // FIXME(nevkontakte): Use appropriate GOOS/GOARCH. - stdOnly.GOOS = "js" - stdOnly.GOARCH = "wasm" - forward, _, err := importgraphutil.BuildNoTests(&stdOnly) + stdOnly := goCtx(DefaultEnv()) + // Skip post-load package tweaks, since we are interested in the complete set + // of original sources. + stdOnly.noPostTweaks = true + // We only care about standard library, so skip all GOPATH packages. + stdOnly.bctx.GOPATH = "" + forward, _, err := importgraphutil.BuildNoTests(&stdOnly.bctx) if err != nil { t.Fatalf("importgraphutil.BuildNoTests: %v", err) } @@ -40,18 +40,20 @@ func TestNativesDontImportExtraPackages(t *testing.T) { // Note, this does not include transitive imports of test/xtest packages, // which could cause some false positives. It currently doesn't, but if it does, // then support for that should be added here. - populateImportSet := func(imports []string, set *stringSet) { + populateImportSet := func(imports []string) stringSet { + set := stringSet{} for _, p := range imports { - (*set)[p] = struct{}{} + set[p] = struct{}{} switch p { case "sync": - (*set)["github.com/gopherjs/gopherjs/nosync"] = struct{}{} + set["github.com/gopherjs/gopherjs/nosync"] = struct{}{} } transitiveImports := forward.Search(p) for p := range transitiveImports { - (*set)[p] = struct{}{} + set[p] = struct{}{} } } + return set } // Check all standard library packages. @@ -66,121 +68,36 @@ func TestNativesDontImportExtraPackages(t *testing.T) { // Then, github.com/gopherjs/gopherjs/build.parseAndAugment(*build.Package) returns []*ast.File. // Those augmented parsed Go files of the package are checked, one file at at time, one import // at a time. Each import is verified to belong in the set of allowed real imports. - matches, matchErr := simpleCtx{bctx: stdOnly}.Match([]string{"std"}) + matches, matchErr := stdOnly.Match([]string{"std"}) if matchErr != nil { t.Fatalf("Failed to list standard library packages: %s", err) } - for _, pkg := range matches { - pkg := pkg // Capture for the goroutine. - t.Run(pkg, func(t *testing.T) { + for _, pkgName := range matches { + pkgName := pkgName // Capture for the goroutine. + t.Run(pkgName, func(t *testing.T) { t.Parallel() - t.Logf("Checking package %s...", pkg) - // Normal package. - { - // Import the real normal package, and populate its real import set. - bpkg, err := stdOnly.Import(pkg, "", gobuild.ImportComment) - if err != nil { - t.Fatalf("gobuild.Import: %v", err) - } - realImports := make(stringSet) - populateImportSet(bpkg.Imports, &realImports) - - // Use parseAndAugment to get a list of augmented AST files. - fset := token.NewFileSet() - files, err := parseAndAugment(NewBuildContext("", nil), &PackageData{Package: bpkg, bctx: &gobuild.Default}, false, fset) - if err != nil { - t.Fatalf("github.com/gopherjs/gopherjs/build.parseAndAugment: %v", err) - } - - // Verify imports of normal augmented AST files. - for _, f := range files { - fileName := fset.File(f.Pos()).Name() - normalFile := !strings.HasSuffix(fileName, "_test.go") - if !normalFile { - continue - } - for _, imp := range f.Imports { - importPath, err := strconv.Unquote(imp.Path.Value) - if err != nil { - t.Fatalf("strconv.Unquote(%v): %v", imp.Path.Value, err) - } - if importPath == "github.com/gopherjs/gopherjs/js" { - continue - } - if _, ok := realImports[importPath]; !ok { - t.Errorf("augmented normal package %q imports %q in file %v, but real %q doesn't:\nrealImports = %v", bpkg.ImportPath, importPath, fileName, bpkg.ImportPath, realImports) - } - } - } - } - - // Test package. - { - // Import the real test package, and populate its real import set. - bpkg, err := stdOnly.Import(pkg, "", gobuild.ImportComment) - if err != nil { - t.Fatalf("gobuild.Import: %v", err) - } - realTestImports := make(stringSet) - populateImportSet(bpkg.TestImports, &realTestImports) - - // Use parseAndAugment to get a list of augmented AST files. - fset := token.NewFileSet() - files, err := parseAndAugment(NewBuildContext("", nil), &PackageData{Package: bpkg, bctx: &gobuild.Default}, true, fset) - if err != nil { - t.Fatalf("github.com/gopherjs/gopherjs/build.parseAndAugment: %v", err) - } - - // Verify imports of test augmented AST files. - for _, f := range files { - fileName, pkgName := fset.File(f.Pos()).Name(), f.Name.String() - testFile := strings.HasSuffix(fileName, "_test.go") && !strings.HasSuffix(pkgName, "_test") - if !testFile { - continue - } - for _, imp := range f.Imports { - importPath, err := strconv.Unquote(imp.Path.Value) - if err != nil { - t.Fatalf("strconv.Unquote(%v): %v", imp.Path.Value, err) - } - if importPath == "github.com/gopherjs/gopherjs/js" { - continue - } - if _, ok := realTestImports[importPath]; !ok { - t.Errorf("augmented test package %q imports %q in file %v, but real %q doesn't:\nrealTestImports = %v", bpkg.ImportPath, importPath, fileName, bpkg.ImportPath, realTestImports) - } - } - } + pkg, err := stdOnly.Import(pkgName, "", gobuild.ImportComment) + if err != nil { + t.Fatalf("gobuild.Import: %v", err) } - // External test package. - { - // Import the real external test package, and populate its real import set. - bpkg, err := stdOnly.Import(pkg, "", gobuild.ImportComment) - if err != nil { - t.Fatalf("gobuild.Import: %v", err) - } - realXTestImports := make(stringSet) - populateImportSet(bpkg.XTestImports, &realXTestImports) + for _, pkgVariant := range []*PackageData{pkg, pkg.TestPackage(), pkg.XTestPackage()} { + t.Logf("Checking package %s...", pkgVariant) - // Add _test suffix to import path to cause parseAndAugment to use external test mode. - bpkg.ImportPath += "_test" + // Capture the set of unmodified package imports. + realImports := populateImportSet(pkgVariant.Imports) - // Use parseAndAugment to get a list of augmented AST files, then check only the external test files. + // Use parseAndAugment to get a list of augmented AST files. fset := token.NewFileSet() - files, err := parseAndAugment(NewBuildContext("", nil), &PackageData{Package: bpkg, bctx: &gobuild.Default}, true, fset) + files, err := parseAndAugment(stdOnly, pkgVariant, pkgVariant.IsTest, fset) if err != nil { t.Fatalf("github.com/gopherjs/gopherjs/build.parseAndAugment: %v", err) } - // Verify imports of external test augmented AST files. + // Verify imports of augmented AST files. for _, f := range files { - fileName, pkgName := fset.File(f.Pos()).Name(), f.Name.String() - xTestFile := strings.HasSuffix(fileName, "_test.go") && strings.HasSuffix(pkgName, "_test") - if !xTestFile { - continue - } + fileName := fset.File(f.Pos()).Name() for _, imp := range f.Imports { importPath, err := strconv.Unquote(imp.Path.Value) if err != nil { @@ -189,8 +106,9 @@ func TestNativesDontImportExtraPackages(t *testing.T) { if importPath == "github.com/gopherjs/gopherjs/js" { continue } - if _, ok := realXTestImports[importPath]; !ok { - t.Errorf("augmented external test package %q imports %q in file %v, but real %q doesn't:\nrealXTestImports = %v", bpkg.ImportPath, importPath, fileName, bpkg.ImportPath, realXTestImports) + if _, ok := realImports[importPath]; !ok { + t.Errorf("augmented package %q imports %q in file %v, but real %q doesn't:\nrealImports = %v", + pkgVariant, importPath, fileName, pkgVariant.ImportPath, realImports) } } } diff --git a/build/context.go b/build/context.go index 2587afe4a..49579b09d 100644 --- a/build/context.go +++ b/build/context.go @@ -78,8 +78,9 @@ type XContext interface { // simpleCtx is a wrapper around go/build.Context with support for GopherJS-specific // features. type simpleCtx struct { - bctx build.Context - isVirtual bool // Imported packages don't have a physical directory on disk. + bctx build.Context + isVirtual bool // Imported packages don't have a physical directory on disk. + noPostTweaks bool // Don't apply post-load tweaks to packages. For tests only. } // Import implements XContext.Import(). @@ -242,6 +243,9 @@ func (sc simpleCtx) applyPostloadTweaks(pkg *build.Package) *build.Package { // since we already control them directly. return pkg } + if sc.noPostTweaks { + return pkg + } switch pkg.ImportPath { case "runtime": pkg.GoFiles = []string{} // Package sources are completely replaced in natives. From 9813bf262e0ea57c588e634d798b0ce721a2995f Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 20 Mar 2022 15:05:18 +0000 Subject: [PATCH 17/23] Remove GOROOT and GOPATH fields from `build.Options`. They were used as a side channel to extract GOROOT and GOPATH from `build.Session`, which is an incorrect use of options. Eventually all logic that requires these paths should be moved to the `build` package, but for now we just provide an additional method to create a source mapping callback. --- build/build.go | 30 ++++++++++++++---------------- tool.go | 2 +- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/build/build.go b/build/build.go index ac180ceed..47edb804e 100644 --- a/build/build.go +++ b/build/build.go @@ -305,9 +305,6 @@ func parseAndAugment(xctx XContext, pkg *PackageData, isTest bool, fileSet *toke // Options controls build process behavior. type Options struct { - // FIXME(nevkontakte): Remove GOROOT and GOPATH from options. They are in Env now. - GOROOT string - GOPATH string Verbose bool Quiet bool Watch bool @@ -428,25 +425,20 @@ type Session struct { // NewSession creates a new GopherJS build session. func NewSession(options *Options) (*Session, error) { - if options.GOROOT == "" { - options.GOROOT = DefaultGOROOT - } - if options.GOPATH == "" { - options.GOPATH = build.Default.GOPATH - } options.Verbose = options.Verbose || options.Watch - // Go distribution version check. - if err := compiler.CheckGoVersion(options.GOROOT); err != nil { - return nil, err - } - s := &Session{ options: options, UpToDateArchives: make(map[string]*compiler.Archive), } s.xctx = NewBuildContext(s.InstallSuffix(), s.options.BuildTags) env := s.xctx.Env() + + // Go distribution version check. + if err := compiler.CheckGoVersion(env.GOROOT); err != nil { + return nil, err + } + s.buildCache = cache.BuildCache{ GOOS: env.GOOS, GOARCH: env.GOARCH, @@ -486,7 +478,7 @@ func (s *Session) InstallSuffix() string { // GoRelease returns Go release version this session is building with. func (s *Session) GoRelease() string { - return compiler.GoRelease(s.options.GOROOT) + return compiler.GoRelease(s.xctx.Env().GOROOT) } // BuildFiles passed to the GopherJS tool as if they were a package. @@ -657,6 +649,12 @@ func (s *Session) ImportResolverFor(pkg *PackageData) func(string) (*compiler.Ar } } +// SourceMappingCallback returns a call back for compiler.SourceMapFilter +// configured for the current build session. +func (s *Session) SourceMappingCallback(m *sourcemap.Map) func(generatedLine, generatedColumn int, originalPos token.Position) { + return NewMappingCallback(m, s.xctx.Env().GOROOT, s.xctx.Env().GOPATH, s.options.MapToLocalDisk) +} + // WriteCommandPackage writes the final JavaScript output file at pkgObj path. func (s *Session) WriteCommandPackage(archive *compiler.Archive, pkgObj string) error { if err := os.MkdirAll(filepath.Dir(pkgObj), 0777); err != nil { @@ -682,7 +680,7 @@ func (s *Session) WriteCommandPackage(archive *compiler.Archive, pkgObj string) fmt.Fprintf(codeFile, "//# sourceMappingURL=%s.map\n", filepath.Base(pkgObj)) }() - sourceMapFilter.MappingCallback = NewMappingCallback(m, s.options.GOROOT, s.options.GOPATH, s.options.MapToLocalDisk) + sourceMapFilter.MappingCallback = s.SourceMappingCallback(m) } deps, err := compiler.ImportDependencies(archive, func(path string) (*compiler.Archive, error) { diff --git a/tool.go b/tool.go index 08674c72f..e2842be12 100644 --- a/tool.go +++ b/tool.go @@ -705,7 +705,7 @@ func (fs serveCommandFileSystem) Open(requestName string) (http.File, error) { sourceMapFilter := &compiler.SourceMapFilter{Writer: buf} m := &sourcemap.Map{File: base + ".js"} - sourceMapFilter.MappingCallback = gbuild.NewMappingCallback(m, fs.options.GOROOT, fs.options.GOPATH, fs.options.MapToLocalDisk) + sourceMapFilter.MappingCallback = s.SourceMappingCallback(m) deps, err := compiler.ImportDependencies(archive, s.BuildImportPath) if err != nil { From 9511320c757c77781b113172630ce7ca0d9b1875 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 20 Mar 2022 15:19:51 +0000 Subject: [PATCH 18/23] Set `runtime.GOOS` and `GOARCH` to values chosen for GopherJS. --- .../natives/src/crypto/tls/handshake_test.go | 73 +++++++++++++++++++ compiler/natives/src/runtime/runtime.go | 7 +- tests/runtime_test.go | 13 +++- 3 files changed, 86 insertions(+), 7 deletions(-) create mode 100644 compiler/natives/src/crypto/tls/handshake_test.go diff --git a/compiler/natives/src/crypto/tls/handshake_test.go b/compiler/natives/src/crypto/tls/handshake_test.go new file mode 100644 index 000000000..c9e19d5ed --- /dev/null +++ b/compiler/natives/src/crypto/tls/handshake_test.go @@ -0,0 +1,73 @@ +//go:build js + +package tls + +import ( + "context" + "runtime" + "testing" +) + +// Same as upstream, except we check for GOARCH=ecmascript instead of wasm. +// This override can be removed after https://github.com/golang/go/pull/51827 +// is available in the upstream (likely in Go 1.19). +func TestServerHandshakeContextCancellation(t *testing.T) { + c, s := localPipe(t) + ctx, cancel := context.WithCancel(context.Background()) + unblockClient := make(chan struct{}) + defer close(unblockClient) + go func() { + cancel() + <-unblockClient + _ = c.Close() + }() + conn := Server(s, testConfig) + // Initiates server side handshake, which will block until a client hello is read + // unless the cancellation works. + err := conn.HandshakeContext(ctx) + if err == nil { + t.Fatal("Server handshake did not error when the context was canceled") + } + if err != context.Canceled { + t.Errorf("Unexpected server handshake error: %v", err) + } + if runtime.GOARCH == "ecmascript" { + t.Skip("conn.Close does not error as expected when called multiple times on WASM") + } + err = conn.Close() + if err == nil { + t.Error("Server connection was not closed when the context was canceled") + } +} + +// Same as upstream, except we check for GOARCH=ecmascript instead of wasm. +// This override can be removed after https://github.com/golang/go/pull/51827 +// is available in the upstream (likely in Go 1.19). +func TestClientHandshakeContextCancellation(t *testing.T) { + c, s := localPipe(t) + ctx, cancel := context.WithCancel(context.Background()) + unblockServer := make(chan struct{}) + defer close(unblockServer) + go func() { + cancel() + <-unblockServer + _ = s.Close() + }() + cli := Client(c, testConfig) + // Initiates client side handshake, which will block until the client hello is read + // by the server, unless the cancellation works. + err := cli.HandshakeContext(ctx) + if err == nil { + t.Fatal("Client handshake did not error when the context was canceled") + } + if err != context.Canceled { + t.Errorf("Unexpected client handshake error: %v", err) + } + if runtime.GOARCH == "ecmascript" { + t.Skip("conn.Close does not error as expected when called multiple times on WASM") + } + err = cli.Close() + if err == nil { + t.Error("Client connection was not closed when the context was canceled") + } +} diff --git a/compiler/natives/src/runtime/runtime.go b/compiler/natives/src/runtime/runtime.go index 29bc6b8a9..ebceff4b0 100644 --- a/compiler/natives/src/runtime/runtime.go +++ b/compiler/natives/src/runtime/runtime.go @@ -4,14 +4,11 @@ package runtime import ( - "runtime/internal/sys" - "github.com/gopherjs/gopherjs/js" ) -// FIXME(nevkontakte): Update these to GopherJS-specific. -const GOOS = sys.GOOS -const GOARCH = sys.GOARCH +const GOOS = "js" +const GOARCH = "ecmascript" const Compiler = "gopherjs" // The Error interface identifies a run time error. diff --git a/tests/runtime_test.go b/tests/runtime_test.go index 29284a2bc..183358cc4 100644 --- a/tests/runtime_test.go +++ b/tests/runtime_test.go @@ -1,5 +1,5 @@ -//go:build js -// +build js +//go:build js && gopherjs +// +build js,gopherjs package tests @@ -70,3 +70,12 @@ func Test_parseCallFrame(t *testing.T) { }) } } + +func TestBuildPlatform(t *testing.T) { + if runtime.GOOS != "js" { + t.Errorf("Got runtime.GOOS=%q. Want: %q.", runtime.GOOS, "js") + } + if runtime.GOARCH != "ecmascript" { + t.Errorf("Got runtime.GOARCH=%q. Want: %q.", runtime.GOARCH, "ecmascript") + } +} From 50f5dcadc6e49c76ea6e1401f27c087ffc9408bb Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 20 Mar 2022 16:19:27 +0000 Subject: [PATCH 19/23] Fix compiler panics when building on Windows. Embedded file systems use unix-style slashes, which was causing errors on Windows, when two styles were mixed. Converting all VFS paths to unix-style slashes resolves the issue. Fixes https://github.com/gopherjs/gopherjs/issues/1049. --- build/vfs.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build/vfs.go b/build/vfs.go index ffc041c4f..e3779ecf9 100644 --- a/build/vfs.go +++ b/build/vfs.go @@ -5,6 +5,7 @@ import ( "net/http" "os" "path" + "path/filepath" "strings" ) @@ -13,6 +14,7 @@ import ( type vfs struct{ http.FileSystem } func (fs vfs) IsDir(name string) bool { + name = filepath.ToSlash(name) dir, err := fs.Open(name) if err != nil { return false @@ -26,6 +28,7 @@ func (fs vfs) IsDir(name string) bool { } func (fs vfs) ReadDir(name string) (fi []os.FileInfo, err error) { + name = filepath.ToSlash(name) dir, err := fs.Open(name) if err != nil { return nil, err @@ -35,6 +38,7 @@ func (fs vfs) ReadDir(name string) (fi []os.FileInfo, err error) { } func (fs vfs) OpenFile(name string) (r io.ReadCloser, err error) { + name = filepath.ToSlash(name) return fs.Open(name) } @@ -75,10 +79,12 @@ type withPrefix struct { } func (wp *withPrefix) Open(name string) (http.File, error) { - if !strings.HasPrefix(name, wp.prefix) { + name = filepath.ToSlash(name) + prefix := filepath.ToSlash(wp.prefix) + if !strings.HasPrefix(name, prefix) { return nil, &os.PathError{Op: "open", Path: name, Err: os.ErrNotExist} } - f, err := wp.fs.Open(strings.TrimPrefix(name, wp.prefix)) + f, err := wp.fs.Open(strings.TrimPrefix(name, prefix)) if err != nil { return nil, &os.PathError{Op: "open", Path: name, Err: err} } From 208100ab6aff74365838e281a4f3471052441f8e Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 27 Mar 2022 14:40:13 +0100 Subject: [PATCH 20/23] Catch and ignore the error if `fs` module can't be required. There are environments like AMD, which expose `require()` function, but do not provide `fs` module. In such cases we should fall back to our stub (see https://github.com/gopherjs/gopherjs/issues/693#issuecomment-1079466669). --- compiler/prelude/prelude.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/compiler/prelude/prelude.go b/compiler/prelude/prelude.go index 434f3dda7..fef89508e 100644 --- a/compiler/prelude/prelude.go +++ b/compiler/prelude/prelude.go @@ -27,10 +27,12 @@ if (typeof module !== "undefined") { } if (!$global.fs && $global.require) { - var fs = $global.require('fs'); - if (typeof fs === "object" && fs !== null && Object.keys(fs).length !== 0) { - $global.fs = fs; - } + try { + var fs = $global.require('fs'); + if (typeof fs === "object" && fs !== null && Object.keys(fs).length !== 0) { + $global.fs = fs; + } + } catch(e) { /* Ignore if the module couldn't be loaded. */ } } if (!$global.fs) { From 3dfe12da888ef2b4343b903678a5d118a1c7b6ea Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Sun, 27 Mar 2022 15:05:38 +0100 Subject: [PATCH 21/23] Set up a simple smoke test job on Windows and Mac OS. Ideally we'd do the complete set of tests, but there is a fair amount of edge cases fixing which would require a significant effort. For now we simply ensure that GopherJS can build, run tests and passes its own tests. --- build/context_test.go | 14 +- circle.yml | 121 ++++++++++++---- package-lock.json | 322 ++++++++++++++++++++++++++++++++--------- package.json | 4 +- tests/lowlevel_test.go | 16 +- tests/vendored_test.go | 3 + 6 files changed, 367 insertions(+), 113 deletions(-) diff --git a/build/context_test.go b/build/context_test.go index 523d97695..4376f9793 100644 --- a/build/context_test.go +++ b/build/context_test.go @@ -3,7 +3,6 @@ package build import ( "fmt" "go/build" - "path" "path/filepath" "strings" "testing" @@ -20,6 +19,7 @@ func TestSimpleCtx(t *testing.T) { gopherjsRoot := filepath.Join(e.GOROOT, "src", "github.com", "gopherjs", "gopherjs") fs := &withPrefix{gopherjspkg.FS, gopherjsRoot} ec := embeddedCtx(fs, e) + ec.bctx.JoinPath = filepath.Join // Avoid diffs in the test on Windows. gc := goCtx(e) @@ -194,16 +194,16 @@ func TestIsStd(t *testing.T) { } func expectedPackage(bctx *build.Context, importPath string, goarch string) *build.Package { - targetRoot := path.Clean(fmt.Sprintf("%s/pkg/%s_%s", bctx.GOROOT, bctx.GOOS, goarch)) + targetRoot := filepath.Clean(filepath.Join(bctx.GOROOT, "pkg", bctx.GOOS+"_"+goarch)) return &build.Package{ - Dir: path.Join(bctx.GOROOT, "src", importPath), + Dir: filepath.Join(bctx.GOROOT, "src", importPath), ImportPath: importPath, Root: bctx.GOROOT, - SrcRoot: path.Join(bctx.GOROOT, "src"), - PkgRoot: path.Join(bctx.GOROOT, "pkg"), + SrcRoot: filepath.Join(bctx.GOROOT, "src"), + PkgRoot: filepath.Join(bctx.GOROOT, "pkg"), PkgTargetRoot: targetRoot, - BinDir: path.Join(bctx.GOROOT, "bin"), + BinDir: filepath.Join(bctx.GOROOT, "bin"), Goroot: true, - PkgObj: path.Join(targetRoot, importPath+".a"), + PkgObj: filepath.Join(targetRoot, importPath+".a"), } } diff --git a/circle.yml b/circle.yml index 421a3f032..08f11a530 100644 --- a/circle.yml +++ b/circle.yml @@ -44,6 +44,12 @@ workflows: - gorepo_tests: requires: - build + - darwin_smoke: + requires: + - build + - windows_smoke: + requires: + - build parameters: go_version: @@ -56,6 +62,11 @@ parameters: type: string default: "12" +orbs: + win: circleci/windows@4.0.0 + go: circleci/go@1.7.1 + node: circleci/node@5.0.1 + jobs: build: executor: gopherjs @@ -167,46 +178,98 @@ jobs: command: | go test -v github.com/gopherjs/gopherjs/tests/gorepo + windows_smoke: + executor: + name: win/default + shell: powershell.exe + steps: + - checkout + - run: + name: Install Go + command: | + choco install golang --version="<< pipeline.parameters.go_version >>" -my + go version + (Get-Command go).Path + - install_deps: + optional: false + - run: + name: Install GopherJS + command: go install -v . + - run: + name: Test GopherJS + command: go test -v -short ./... + - run: + name: Smoke tests + command: | + $env:NODE_PATH=$(npm root) + $env:SOURCE_MAP_SUPPORT=false + gopherjs build -v net/http + gopherjs test -v --short fmt sort ./tests + + darwin_smoke: + macos: + xcode: 13.3.0 # Mac OS 12.2.1 + steps: + - checkout + - setup_environment + - install_deps: + optional: false + - run: + name: Install GopherJS + command: go install -v . + - run: + name: Test GopherJS + command: go test -v -short ./... + - run: + name: Smoke tests + command: | + gopherjs build -v net/http + gopherjs test -v --short fmt log os ./tests + commands: setup_environment: description: Set up Go, NVM and Node.js steps: + - go/install: + version: << pipeline.parameters.go_version >> + - node/install: + node-version: << pipeline.parameters.node_version >> - run: - name: Install Go + name: Set up environment command: | - cd /usr/local - sudo rm -rf go - curl "https://storage.googleapis.com/golang/go<< pipeline.parameters.go_version >>.linux-amd64.tar.gz" | sudo tar -xz - echo 'export PATH="$PATH:/usr/local/go/bin:$HOME/go/bin"' >> $BASH_ENV + echo 'export PATH="$PATH:$HOME/go/bin"' >> $BASH_ENV echo 'export GO111MODULE=on' >> $BASH_ENV - . $BASH_ENV + echo 'export SOURCE_MAP_SUPPORT=true' >> $BASH_ENV + # Make nodejs able to require installed modules from any working path. + echo "export NODE_PATH=$(npm root)" >> $BASH_ENV go version - go get -v github.com/nevkontakte/go-junit-report@forked # For CircleCI test reports. - - run: - name: Install NVM - command: | - git clone https://github.com/nvm-sh/nvm $HOME/.nvm - cd $HOME/.nvm && git checkout "v<< pipeline.parameters.nvm_version >>" - echo 'export NVM_DIR="${HOME}/.nvm"' >> "${BASH_ENV}" - echo '[ -s "${NVM_DIR}/nvm.sh" ] && \. "${NVM_DIR}/nvm.sh"' >> "${BASH_ENV}" - - run: - name: Install Node.js - command: | - nvm install "<< pipeline.parameters.node_version >>" && nvm alias default "<< pipeline.parameters.node_version >>" - node --version + node -v + go install -v github.com/nevkontakte/go-junit-report@forked # For CircleCI test reports. install_deps: description: Install Go and Node dependency packages + parameters: + optional: + default: true + type: boolean + description: Install node-syscall module and its dependencies. steps: - - run: - name: Install required Node.js packages - command: | - npm ci # Install our dependencies from package.json. - echo 'export SOURCE_MAP_SUPPORT=true' >> $BASH_ENV - # Make nodejs able to require installed modules from any working path. - echo export "NODE_PATH='$(npm root)'" >> "${BASH_ENV}" - - run: - name: Install required Go packages - command: go mod download -x + - when: + condition: + not: << parameters.optional >> + steps: + - run: + name: Install required Node.js packages + command: | + # Extra flags to avoid installing node-syscall. + npm install --no-optional --no-package-lock + - when: + condition: << parameters.optional >> + steps: + - run: + name: Install required Node.js packages (including optional) + command: | + npm ci # Install our dependencies from package.json. + - go/mod-download install_gopherjs: description: Install GopherJS steps: diff --git a/package-lock.json b/package-lock.json index 7d68d2b69..21b8f5864 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,11 +7,13 @@ "name": "gopherjs", "license": "BSD-2-Clause", "dependencies": { - "source-map-support": "^0.5.19", - "syscall": "file:./node-syscall" + "source-map-support": "^0.5.19" }, "devDependencies": { "uglify-es": "^3.3.9" + }, + "optionalDependencies": { + "syscall": "file:./node-syscall" } }, "node_modules/buffer-from": { @@ -23,6 +25,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "optional": true, "engines": { "node": ">=10" } @@ -37,6 +40,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "optional": true, "dependencies": { "minipass": "^3.0.0" }, @@ -48,6 +52,7 @@ "version": "3.1.5", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.5.tgz", "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "optional": true, "dependencies": { "yallist": "^4.0.0" }, @@ -59,6 +64,7 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "optional": true, "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" @@ -71,6 +77,7 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "optional": true, "bin": { "mkdirp": "bin/cmd.js" }, @@ -103,6 +110,7 @@ "version": "6.1.11", "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "optional": true, "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", @@ -135,12 +143,14 @@ "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "optional": true }, "node-syscall": { "name": "syscall", "hasInstallScript": true, "license": "BSD-2-Clause", + "optional": true, "dependencies": { "node-gyp": "^8.1.0" } @@ -149,6 +159,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "optional": true, "dependencies": { "mkdirp": "^1.0.4", "rimraf": "^3.0.2" @@ -161,6 +172,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "optional": true, "engines": { "node": ">= 6" } @@ -168,12 +180,14 @@ "node-syscall/node_modules/abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "optional": true }, "node-syscall/node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "optional": true, "dependencies": { "debug": "4" }, @@ -185,6 +199,7 @@ "version": "4.1.4", "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.1.4.tgz", "integrity": "sha512-+V/rGa3EuU74H6wR04plBb7Ks10FbtUQgRj/FQOG7uUIEuaINI+AiqJR1k6t3SVNs7o7ZjIdus6706qqzVq8jQ==", + "optional": true, "dependencies": { "debug": "^4.1.0", "depd": "^1.1.2", @@ -198,6 +213,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "optional": true, "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" @@ -210,6 +226,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "optional": true, "engines": { "node": ">=0.10.0" } @@ -217,12 +234,14 @@ "node-syscall/node_modules/aproba": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "optional": true }, "node-syscall/node_modules/are-we-there-yet": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "optional": true, "dependencies": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" @@ -231,12 +250,14 @@ "node-syscall/node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "optional": true }, "node-syscall/node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "optional": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -246,6 +267,7 @@ "version": "15.2.0", "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.2.0.tgz", "integrity": "sha512-uKoJSHmnrqXgthDFx/IU6ED/5xd+NNGe+Bb+kLZy7Ku4P+BaiWEUflAKPZ7eAzsYGcsAGASJZsybXp+quEcHTw==", + "optional": true, "dependencies": { "@npmcli/move-file": "^1.0.1", "chownr": "^2.0.0", @@ -273,6 +295,7 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "optional": true, "engines": { "node": ">=6" } @@ -281,6 +304,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "optional": true, "engines": { "node": ">=0.10.0" } @@ -288,22 +312,26 @@ "node-syscall/node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "optional": true }, "node-syscall/node_modules/console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "optional": true }, "node-syscall/node_modules/core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "optional": true }, "node-syscall/node_modules/debug": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "optional": true, "dependencies": { "ms": "2.1.2" }, @@ -319,12 +347,14 @@ "node-syscall/node_modules/delegates": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "optional": true }, "node-syscall/node_modules/depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "optional": true, "engines": { "node": ">= 0.6" } @@ -342,6 +372,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "optional": true, "engines": { "node": ">=6" } @@ -349,17 +380,20 @@ "node-syscall/node_modules/err-code": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "optional": true }, "node-syscall/node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "optional": true }, "node-syscall/node_modules/gauge": { "version": "2.7.4", "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "optional": true, "dependencies": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", @@ -375,6 +409,7 @@ "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "optional": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -393,22 +428,26 @@ "node-syscall/node_modules/graceful-fs": { "version": "4.2.6", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", + "optional": true }, "node-syscall/node_modules/has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "optional": true }, "node-syscall/node_modules/http-cache-semantics": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "optional": true }, "node-syscall/node_modules/http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "optional": true, "dependencies": { "@tootallnate/once": "1", "agent-base": "6", @@ -422,6 +461,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "optional": true, "dependencies": { "agent-base": "6", "debug": "4" @@ -434,6 +474,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", + "optional": true, "dependencies": { "ms": "^2.0.0" } @@ -454,6 +495,7 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "optional": true, "engines": { "node": ">=0.8.19" } @@ -462,6 +504,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "optional": true, "engines": { "node": ">=8" } @@ -469,12 +512,14 @@ "node-syscall/node_modules/infer-owner": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "optional": true }, "node-syscall/node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "optional": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -483,17 +528,20 @@ "node-syscall/node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "optional": true }, "node-syscall/node_modules/ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "optional": true }, "node-syscall/node_modules/is-fullwidth-code-point": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "optional": true, "dependencies": { "number-is-nan": "^1.0.0" }, @@ -504,22 +552,26 @@ "node-syscall/node_modules/is-lambda": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" + "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", + "optional": true }, "node-syscall/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "optional": true }, "node-syscall/node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "optional": true }, "node-syscall/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "optional": true, "dependencies": { "yallist": "^4.0.0" }, @@ -531,6 +583,7 @@ "version": "8.0.14", "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz", "integrity": "sha512-EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ==", + "optional": true, "dependencies": { "agentkeepalive": "^4.1.3", "cacache": "^15.0.5", @@ -556,6 +609,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "optional": true, "dependencies": { "brace-expansion": "^1.1.7" }, @@ -567,6 +621,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "optional": true, "dependencies": { "minipass": "^3.0.0" }, @@ -578,6 +633,7 @@ "version": "1.3.4", "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.3.4.tgz", "integrity": "sha512-TielGogIzbUEtd1LsjZFs47RWuHHfhl6TiCx1InVxApBAmQ8bL0dL5ilkLGcRvuyW/A9nE+Lvn855Ewz8S0PnQ==", + "optional": true, "dependencies": { "minipass": "^3.1.0", "minipass-sized": "^1.0.3", @@ -594,6 +650,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "optional": true, "dependencies": { "minipass": "^3.0.0" }, @@ -605,6 +662,7 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "optional": true, "dependencies": { "minipass": "^3.0.0" }, @@ -616,6 +674,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "optional": true, "dependencies": { "minipass": "^3.0.0" }, @@ -626,12 +685,14 @@ "node-syscall/node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "optional": true }, "node-syscall/node_modules/node-gyp": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.1.0.tgz", "integrity": "sha512-o2elh1qt7YUp3lkMwY3/l4KF3j/A3fI/Qt4NH+CQQgPJdqGE9y7qnP84cjIWN27Q0jJkrSAhCVDg+wBVNBYdBg==", + "optional": true, "dependencies": { "env-paths": "^2.2.0", "glob": "^7.1.4", @@ -655,6 +716,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "optional": true, "dependencies": { "abbrev": "1" }, @@ -669,6 +731,7 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "optional": true, "dependencies": { "are-we-there-yet": "~1.1.2", "console-control-strings": "~1.1.0", @@ -680,6 +743,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "optional": true, "engines": { "node": ">=0.10.0" } @@ -688,6 +752,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "optional": true, "engines": { "node": ">=0.10.0" } @@ -696,6 +761,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "optional": true, "dependencies": { "wrappy": "1" } @@ -704,6 +770,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "optional": true, "dependencies": { "aggregate-error": "^3.0.0" }, @@ -718,6 +785,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "optional": true, "engines": { "node": ">=0.10.0" } @@ -725,17 +793,20 @@ "node-syscall/node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "optional": true }, "node-syscall/node_modules/promise-inflight": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "optional": true }, "node-syscall/node_modules/promise-retry": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "optional": true, "dependencies": { "err-code": "^2.0.2", "retry": "^0.12.0" @@ -748,6 +819,7 @@ "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "optional": true, "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -762,6 +834,7 @@ "version": "0.12.0", "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "optional": true, "engines": { "node": ">= 4" } @@ -770,6 +843,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "optional": true, "dependencies": { "glob": "^7.1.3" }, @@ -783,7 +857,8 @@ "node-syscall/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "optional": true }, "node-syscall/node_modules/safer-buffer": { "version": "2.1.2", @@ -795,6 +870,7 @@ "version": "7.3.5", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "optional": true, "dependencies": { "lru-cache": "^6.0.0" }, @@ -808,17 +884,20 @@ "node-syscall/node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "optional": true }, "node-syscall/node_modules/signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "optional": true }, "node-syscall/node_modules/smart-buffer": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.1.0.tgz", "integrity": "sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw==", + "optional": true, "engines": { "node": ">= 6.0.0", "npm": ">= 3.0.0" @@ -828,6 +907,7 @@ "version": "2.6.1", "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz", "integrity": "sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA==", + "optional": true, "dependencies": { "ip": "^1.1.5", "smart-buffer": "^4.1.0" @@ -841,6 +921,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", + "optional": true, "dependencies": { "agent-base": "^6.0.2", "debug": "4", @@ -854,6 +935,7 @@ "version": "8.0.1", "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "optional": true, "dependencies": { "minipass": "^3.1.1" }, @@ -865,6 +947,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, "dependencies": { "safe-buffer": "~5.1.0" } @@ -873,6 +956,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "optional": true, "dependencies": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -886,6 +970,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "optional": true, "dependencies": { "ansi-regex": "^2.0.0" }, @@ -897,6 +982,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "optional": true, "dependencies": { "unique-slug": "^2.0.0" } @@ -905,6 +991,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "optional": true, "dependencies": { "imurmurhash": "^0.1.4" } @@ -912,12 +999,14 @@ "node-syscall/node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "optional": true }, "node-syscall/node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "optional": true, "dependencies": { "isexe": "^2.0.0" }, @@ -932,6 +1021,7 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "optional": true, "dependencies": { "string-width": "^1.0.2 || 2" } @@ -939,7 +1029,8 @@ "node-syscall/node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "optional": true } }, "dependencies": { @@ -951,7 +1042,8 @@ "chownr": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "optional": true }, "commander": { "version": "2.13.0", @@ -963,6 +1055,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "optional": true, "requires": { "minipass": "^3.0.0" } @@ -971,6 +1064,7 @@ "version": "3.1.5", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.5.tgz", "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "optional": true, "requires": { "yallist": "^4.0.0" } @@ -979,6 +1073,7 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "optional": true, "requires": { "minipass": "^3.0.0", "yallist": "^4.0.0" @@ -987,7 +1082,8 @@ "mkdirp": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "optional": true }, "source-map": { "version": "0.6.1", @@ -1005,6 +1101,7 @@ }, "syscall": { "version": "file:node-syscall", + "optional": true, "requires": { "node-gyp": "^8.1.0" }, @@ -1013,6 +1110,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "optional": true, "requires": { "mkdirp": "^1.0.4", "rimraf": "^3.0.2" @@ -1021,17 +1119,20 @@ "@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "optional": true }, "abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "optional": true }, "agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "optional": true, "requires": { "debug": "4" } @@ -1040,6 +1141,7 @@ "version": "4.1.4", "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.1.4.tgz", "integrity": "sha512-+V/rGa3EuU74H6wR04plBb7Ks10FbtUQgRj/FQOG7uUIEuaINI+AiqJR1k6t3SVNs7o7ZjIdus6706qqzVq8jQ==", + "optional": true, "requires": { "debug": "^4.1.0", "depd": "^1.1.2", @@ -1050,6 +1152,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "optional": true, "requires": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" @@ -1058,17 +1161,20 @@ "ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "optional": true }, "aproba": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "optional": true }, "are-we-there-yet": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "optional": true, "requires": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" @@ -1077,12 +1183,14 @@ "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "optional": true }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -1092,6 +1200,7 @@ "version": "15.2.0", "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.2.0.tgz", "integrity": "sha512-uKoJSHmnrqXgthDFx/IU6ED/5xd+NNGe+Bb+kLZy7Ku4P+BaiWEUflAKPZ7eAzsYGcsAGASJZsybXp+quEcHTw==", + "optional": true, "requires": { "@npmcli/move-file": "^1.0.1", "chownr": "^2.0.0", @@ -1115,32 +1224,38 @@ "clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "optional": true }, "code-point-at": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "optional": true }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "optional": true }, "console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "optional": true }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "optional": true }, "debug": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "optional": true, "requires": { "ms": "2.1.2" } @@ -1148,12 +1263,14 @@ "delegates": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "optional": true }, "depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "optional": true }, "encoding": { "version": "0.1.13", @@ -1167,22 +1284,26 @@ "env-paths": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "optional": true }, "err-code": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "optional": true }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "optional": true }, "gauge": { "version": "2.7.4", "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "optional": true, "requires": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", @@ -1198,6 +1319,7 @@ "version": "7.1.7", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "optional": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -1210,22 +1332,26 @@ "graceful-fs": { "version": "4.2.6", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", + "optional": true }, "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "optional": true }, "http-cache-semantics": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "optional": true }, "http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "optional": true, "requires": { "@tootallnate/once": "1", "agent-base": "6", @@ -1236,6 +1362,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "optional": true, "requires": { "agent-base": "6", "debug": "4" @@ -1245,6 +1372,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", + "optional": true, "requires": { "ms": "^2.0.0" } @@ -1261,22 +1389,26 @@ "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "optional": true }, "indent-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "optional": true }, "infer-owner": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "optional": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "optional": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -1285,17 +1417,20 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "optional": true }, "ip": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "optional": true }, "is-fullwidth-code-point": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -1303,22 +1438,26 @@ "is-lambda": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" + "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", + "optional": true }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "optional": true }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "optional": true }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "optional": true, "requires": { "yallist": "^4.0.0" } @@ -1327,6 +1466,7 @@ "version": "8.0.14", "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.14.tgz", "integrity": "sha512-EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ==", + "optional": true, "requires": { "agentkeepalive": "^4.1.3", "cacache": "^15.0.5", @@ -1349,6 +1489,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "optional": true, "requires": { "brace-expansion": "^1.1.7" } @@ -1357,6 +1498,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "optional": true, "requires": { "minipass": "^3.0.0" } @@ -1365,6 +1507,7 @@ "version": "1.3.4", "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.3.4.tgz", "integrity": "sha512-TielGogIzbUEtd1LsjZFs47RWuHHfhl6TiCx1InVxApBAmQ8bL0dL5ilkLGcRvuyW/A9nE+Lvn855Ewz8S0PnQ==", + "optional": true, "requires": { "encoding": "^0.1.12", "minipass": "^3.1.0", @@ -1376,6 +1519,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "optional": true, "requires": { "minipass": "^3.0.0" } @@ -1384,6 +1528,7 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "optional": true, "requires": { "minipass": "^3.0.0" } @@ -1392,6 +1537,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "optional": true, "requires": { "minipass": "^3.0.0" } @@ -1399,12 +1545,14 @@ "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "optional": true }, "node-gyp": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.1.0.tgz", "integrity": "sha512-o2elh1qt7YUp3lkMwY3/l4KF3j/A3fI/Qt4NH+CQQgPJdqGE9y7qnP84cjIWN27Q0jJkrSAhCVDg+wBVNBYdBg==", + "optional": true, "requires": { "env-paths": "^2.2.0", "glob": "^7.1.4", @@ -1422,6 +1570,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "optional": true, "requires": { "abbrev": "1" } @@ -1430,6 +1579,7 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "optional": true, "requires": { "are-we-there-yet": "~1.1.2", "console-control-strings": "~1.1.0", @@ -1440,17 +1590,20 @@ "number-is-nan": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "optional": true }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "optional": true }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "optional": true, "requires": { "wrappy": "1" } @@ -1459,6 +1612,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "optional": true, "requires": { "aggregate-error": "^3.0.0" } @@ -1466,22 +1620,26 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "optional": true }, "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "optional": true }, "promise-inflight": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "optional": true }, "promise-retry": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "optional": true, "requires": { "err-code": "^2.0.2", "retry": "^0.12.0" @@ -1491,6 +1649,7 @@ "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "optional": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -1504,12 +1663,14 @@ "retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "optional": true }, "rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "optional": true, "requires": { "glob": "^7.1.3" } @@ -1517,7 +1678,8 @@ "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "optional": true }, "safer-buffer": { "version": "2.1.2", @@ -1529,6 +1691,7 @@ "version": "7.3.5", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "optional": true, "requires": { "lru-cache": "^6.0.0" } @@ -1536,22 +1699,26 @@ "set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "optional": true }, "signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "optional": true }, "smart-buffer": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.1.0.tgz", - "integrity": "sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw==" + "integrity": "sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw==", + "optional": true }, "socks": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz", "integrity": "sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA==", + "optional": true, "requires": { "ip": "^1.1.5", "smart-buffer": "^4.1.0" @@ -1561,6 +1728,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", + "optional": true, "requires": { "agent-base": "^6.0.2", "debug": "4", @@ -1571,6 +1739,7 @@ "version": "8.0.1", "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "optional": true, "requires": { "minipass": "^3.1.1" } @@ -1579,6 +1748,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, "requires": { "safe-buffer": "~5.1.0" } @@ -1587,6 +1757,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -1597,6 +1768,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "optional": true, "requires": { "ansi-regex": "^2.0.0" } @@ -1605,6 +1777,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "optional": true, "requires": { "unique-slug": "^2.0.0" } @@ -1613,6 +1786,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "optional": true, "requires": { "imurmurhash": "^0.1.4" } @@ -1620,12 +1794,14 @@ "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "optional": true }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "optional": true, "requires": { "isexe": "^2.0.0" } @@ -1634,6 +1810,7 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "optional": true, "requires": { "string-width": "^1.0.2 || 2" } @@ -1641,7 +1818,8 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "optional": true } } }, @@ -1649,6 +1827,7 @@ "version": "6.1.11", "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "optional": true, "requires": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", @@ -1671,7 +1850,8 @@ "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "optional": true } } } diff --git a/package.json b/package.json index ec746ebac..f276a4eb1 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,9 @@ "uglify-es": "^3.3.9" }, "dependencies": { - "source-map-support": "^0.5.19", + "source-map-support": "^0.5.19" + }, + "optionalDependencies": { "syscall": "file:./node-syscall" } } diff --git a/tests/lowlevel_test.go b/tests/lowlevel_test.go index fe4273224..e966eba7a 100644 --- a/tests/lowlevel_test.go +++ b/tests/lowlevel_test.go @@ -1,12 +1,14 @@ package tests_test import ( - "bytes" "io/ioutil" "os/exec" "path/filepath" "runtime" + "strings" "testing" + + "github.com/google/go-cmp/cmp" ) // Test for internalization/externalization of time.Time/Date when time package is imported @@ -18,18 +20,22 @@ func TestTimeInternalizationExternalization(t *testing.T) { t.Skip("test meant to be run using normal Go compiler (needs os/exec)") } - got, err := exec.Command("gopherjs", "run", filepath.Join("testdata", "time_inexternalization.go")).Output() + gotb, err := exec.Command("gopherjs", "run", filepath.Join("testdata", "time_inexternalization.go")).Output() + got := string(gotb) if err != nil { t.Fatalf("%v:\n%s", err, got) } - want, err := ioutil.ReadFile(filepath.Join("testdata", "time_inexternalization.out")) + wantb, err := ioutil.ReadFile(filepath.Join("testdata", "time_inexternalization.out")) + want := string(wantb) if err != nil { t.Fatalf("error reading .out file: %v", err) } + got = strings.ReplaceAll(got, "\r\n", "\n") + want = strings.ReplaceAll(want, "\r\n", "\n") - if !bytes.Equal(got, want) { - t.Fatalf("got != want:\ngot:\n%s\nwant:\n%s", got, want) + if diff := cmp.Diff(want, got); diff != "" { + t.Fatalf("Got diff (-want,+got):\n%s", diff) } } diff --git a/tests/vendored_test.go b/tests/vendored_test.go index 54c150227..f94d955d2 100644 --- a/tests/vendored_test.go +++ b/tests/vendored_test.go @@ -13,6 +13,9 @@ func TestGopherJSCanBeVendored(t *testing.T) { if runtime.GOOS == "js" { t.Skip("test meant to be run using normal Go compiler (needs os/exec)") } + if runtime.GOOS == "windows" { + t.Skip("test requires POSIX environment to run") + } cmd := exec.Command("sh", "gopherjsvendored_test.sh") cmd.Stderr = os.Stdout From adcfc773ebfe8a9125f3ff7b0cbcc4526ee7152d Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Tue, 19 Apr 2022 11:28:25 +0100 Subject: [PATCH 22/23] Apply suggestions from code review See https://github.com/gopherjs/gopherjs/pull/1111. Co-authored-by: Jonathan Hall --- compiler/natives/src/syscall/syscall_js_wasm.go | 4 +--- doc/syscalls.md | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/compiler/natives/src/syscall/syscall_js_wasm.go b/compiler/natives/src/syscall/syscall_js_wasm.go index 2e40c4829..f4039a420 100644 --- a/compiler/natives/src/syscall/syscall_js_wasm.go +++ b/compiler/natives/src/syscall/syscall_js_wasm.go @@ -1,5 +1,3 @@ -//go:build js - package syscall import ( @@ -39,7 +37,7 @@ func unsetenv_c(k string) { func setStat(st *Stat_t, jsSt js.Value) { // This method is an almost-exact copy of upstream, except for 4 places where - // time stamps are obtained as floats in lieu of int64. Unstread wasm emulates + // time stamps are obtained as floats in lieu of int64. Upstream wasm emulates // a 64-bit architecture and millisecond-based timestamps fit within an int // type. GopherJS is 32-bit and use of 32-bit ints causes timestamp truncation. // We get timestamps as float64 (which matches JS-native representation) and diff --git a/doc/syscalls.md b/doc/syscalls.md index 01f3f361d..eb75c148f 100644 --- a/doc/syscalls.md +++ b/doc/syscalls.md @@ -2,7 +2,7 @@ System calls are the bridge between your application and your operating system. They are used whenever you access something outside of your application's memory, for example when you write to the console, when you read or write files or when you access the network. In Go, system calls are mostly used by the `os` package, hence the name. When using GopherJS you need to consider if system calls are available or not. -Starting with 1.18, GopherJS provides to the same [set of cross-platform](https://pkg.go.dev/syscall?GOOS=js) syscalls as standard Go WebAssembly, emulating them via JavaScript APIs available in the runtime (browser or Node.js). +Starting with 1.18, GopherJS provides the same [set of cross-platform](https://pkg.go.dev/syscall?GOOS=js) syscalls as standard Go WebAssembly, emulating them via JavaScript APIs available in the runtime (browser or Node.js). ### Output redirection to console From fe1dd6230502003d829163bd1e5a00b8e0f82f26 Mon Sep 17 00:00:00 2001 From: Nevkontakte Date: Tue, 19 Apr 2022 11:35:23 +0100 Subject: [PATCH 23/23] Update VFS and minified prelude. --- compiler/gopherjspkg/fs_vfsdata.go | 22 +- compiler/natives/fs_vfsdata.go | 589 ++++++++++++++--------------- compiler/prelude/prelude_min.go | 2 +- 3 files changed, 289 insertions(+), 324 deletions(-) diff --git a/compiler/gopherjspkg/fs_vfsdata.go b/compiler/gopherjspkg/fs_vfsdata.go index 277b906ff..54491307c 100644 --- a/compiler/gopherjspkg/fs_vfsdata.go +++ b/compiler/gopherjspkg/fs_vfsdata.go @@ -22,54 +22,54 @@ var FS = func() http.FileSystem { fs := vfsgen۰FS{ "/": &vfsgen۰DirInfo{ name: "/", - modTime: time.Date(2022, 4, 4, 3, 39, 43, 317776248, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 10, 11777300, time.UTC), }, "/js": &vfsgen۰DirInfo{ name: "js", - modTime: time.Date(2022, 4, 4, 3, 16, 55, 232803645, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 29, 32, 371777300, time.UTC), }, "/js/js.go": &vfsgen۰CompressedFileInfo{ name: "js.go", - modTime: time.Date(2022, 4, 4, 3, 16, 55, 232920186, time.UTC), - uncompressedSize: 11235, + modTime: time.Date(2022, 4, 19, 10, 29, 32, 371777300, time.UTC), + uncompressedSize: 11230, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x5a\x5f\x73\xdb\x38\x92\x7f\x96\x3e\x45\x0f\x6b\xaa\x2c\x26\x8a\xb4\x33\x93\x72\x6d\x39\xe7\x87\xcc\xe4\x36\x97\xdc\xc4\x9b\x5a\x4f\x6e\x1e\x52\x29\x17\x44\x36\x25\xd8\x14\xc0\x05\x40\x29\x1a\xdb\xdf\xfd\xaa\xd1\x00\x45\x8a\x54\xec\x4c\xe6\xaa\x2e\x2f\x91\x89\xc6\x0f\x3f\x74\x37\xfa\x0f\xc8\xf9\x1c\xde\x8b\xec\x46\x2c\x11\xae\x2d\x54\x46\x6f\x64\x8e\x16\x8a\x5a\x65\x4e\x6a\x65\xa1\xd0\x06\xa4\x72\x68\x44\xe6\xa4\x5a\xc2\x56\xba\x15\x28\xe1\xe4\x06\xe1\xad\xd8\x88\xcb\xcc\xc8\xca\xc1\xcb\xf7\x6f\xec\x0c\x7e\x11\x65\x69\xc1\x69\x70\x2b\xb4\xd8\x42\x11\x06\xc1\x19\x14\x0e\x73\xb0\x15\x66\x52\x94\xe5\x0e\x16\x3b\x78\xad\xab\x15\x9a\xb7\x97\x20\x54\x0e\xce\x08\x65\x4b\x2f\x94\x4b\x83\x99\x2b\x77\x01\x4c\x1a\xc8\xb4\x31\x68\x2b\xad\x72\xa2\xd1\x5a\xda\xee\x94\x13\x9f\x67\xe3\xf9\x7c\x3c\x9f\xc3\x07\x8b\xf0\x4e\xdc\xe0\xef\x46\x54\x15\x1a\x9a\x8f\x9f\x2b\x6d\x11\xd6\xe8\x56\x3a\xf7\xf4\xf6\xb3\x67\xcd\x84\x7f\xd4\x65\x79\x7c\xd2\xcb\x8b\x57\x50\x48\x2c\xfb\xf3\x7f\x5f\xa1\x82\x4a\x58\x4b\xb4\x36\xa2\xac\xd1\x36\xec\xa7\xc4\x1d\x0a\x5d\x96\x7a\x4b\xc3\x6e\x57\x21\x64\x5a\x6d\xd0\xd8\x46\x2f\x15\x9a\x42\x9b\x35\xe6\x67\x61\x0b\x70\x07\xaf\x35\xcb\x76\xff\xdd\xb5\xb7\xdd\x1a\xbf\x83\x5f\x5a\x98\x0b\x91\xdd\x10\x49\x6f\xb5\x42\x64\x78\x7b\x0f\x77\x01\xf7\xd9\xd0\xbf\xaf\x7d\xde\x96\x08\xb8\x0b\xad\x4b\xe8\xfd\xbb\x83\x9f\xb5\x2e\x51\xa8\xde\xf3\x61\xf9\x96\x44\xc0\xa5\x3d\x2c\xd1\x58\xef\x1e\x45\xa9\x85\xb3\x7e\xfe\x45\xbd\x5e\xa0\xe9\xaf\xe7\x45\x4e\x9f\x3f\x88\x6b\x9d\x21\x7b\xf4\xe6\x5f\x1e\x79\x3e\x2c\xdf\xc7\xfd\xf8\x49\x2a\xf7\xf7\xfe\xfc\x37\xca\xfd\xfd\xa5\x31\x62\x77\xf0\x7c\x58\xfe\x08\xee\x0f\xa7\x43\xb8\x3f\x9c\xf6\x80\x8f\xc9\x1f\xc1\xfd\xe9\xc7\x29\xff\xe8\xe0\xfe\xf4\xe3\x31\x5c\x78\x0c\xdf\x7a\x60\x63\x77\xf0\x41\x0e\x29\xe2\x98\xfc\x31\xdc\xc3\x8d\x31\x6e\x5f\x11\xc7\xe4\x8f\xe1\xb2\x22\xea\x66\x8b\x8c\xdb\x57\xc4\x5d\x47\xea\xcb\xb8\xde\x23\x7f\xfa\xf1\x80\xef\x3f\xf8\xe9\x01\xf0\x31\xf9\xa3\xb8\x07\x9e\x1e\x70\x4f\x9f\x1f\xc3\x3d\x7a\x32\x22\xae\x28\x4b\xd0\x6e\x85\x06\x6c\x29\x33\xb4\x71\x7e\xdf\x77\x5b\xfe\xd0\x44\x99\x2f\xe0\xd2\x7c\x3b\x70\xae\x10\x79\xa5\x4e\xb8\x3b\xf6\xbc\x8f\xbb\xcf\x30\x07\x7a\x08\xcf\x7b\xf1\xa1\x56\xd9\x64\x36\x9b\xb5\x58\xa7\xf0\xe4\xda\xce\xfe\xb9\xb8\xc6\xcc\x35\xb8\x4e\xae\x71\xf6\x9b\x5c\xe3\xc1\xfc\x57\xc2\x0d\xb1\x39\x22\xdf\xe7\xfb\x6c\x78\x14\xa4\xb2\x4e\xa8\x0c\x75\x01\x17\x3a\xdf\xc7\xf5\x16\xb5\x2f\xe2\xae\x45\x65\xa7\x14\xa5\xea\xcc\xd9\x61\xdc\x16\x8c\x97\xff\xc8\x31\x6d\xd8\x80\x77\x21\x15\xbd\xcc\x73\x49\x7a\xa4\x74\x3d\xf5\xb5\x80\x08\xab\x50\x1a\x73\x42\x2a\x0a\x8b\xa2\xcd\xd3\x67\xc9\x29\x68\x45\xc9\x7b\xe5\xd3\x9d\x43\xe5\x40\x17\x9c\x0c\x69\x18\xb6\xb2\x2c\x61\x81\x3e\x6f\x62\xde\x4d\xa9\x3e\xd6\x6f\xc8\xf6\x94\xd2\xc4\x6c\x5c\x35\x05\xca\x98\x38\x85\x75\xa4\x05\x11\x49\xa0\x09\xdc\xfa\x85\x89\xf6\xd2\xad\xd2\x44\x3a\xdb\x64\xf5\xbf\xa0\x2c\xe9\x17\x22\xf0\x12\x94\x2c\xa1\xd2\x5e\xb3\x24\xb9\x67\x8c\xff\xae\x45\xd9\xdd\xee\x89\x85\x44\xd5\x65\x99\xcc\xa2\x5c\x26\x14\x28\xed\x48\x3f\x35\x69\x47\xd0\x4e\xd7\xa2\x82\x1b\xdc\xcd\xc6\xfe\x40\x04\x49\x36\xc5\x6d\xd8\x24\x3c\x09\x8f\xef\xbd\x9e\x5e\xa3\x03\x83\xae\x36\xca\x7a\xcd\xb3\xd0\x89\xaf\xf2\x2a\x34\x6e\xc7\xb5\x1c\x0d\x2d\xe5\x06\x15\xc3\xd3\x09\x81\x89\x8e\x58\x29\xc1\x4c\x6e\x70\x17\x52\x60\xda\x2c\x72\x1b\xc0\x41\xcf\x82\x8e\x83\x64\x1a\xd6\xbf\x44\x07\x54\x16\x2d\xc3\xfa\xbe\x36\x0a\x8a\xfb\xb3\x64\x2e\x3b\x64\xa6\x01\xb3\x73\x9a\x6f\xf7\x84\x82\x74\x10\x8b\xbc\x5e\x61\x89\x0e\xc1\xe0\x5a\x6f\xf0\x9b\x54\xc3\x48\x1d\xed\xb4\x56\xdf\x8f\xc6\x95\x7f\x45\xb5\x74\xab\x61\xa3\x24\xa5\x1f\x4c\x1a\x0a\xd3\x50\x28\x3a\x3e\x1f\x52\xb9\x01\x06\x8c\x38\x49\x69\x78\xc0\x22\xcd\x30\xaf\xff\x46\xe5\xf8\xb9\xb3\xbc\x3c\x71\x2b\xc0\x12\xd7\xe1\x84\x0a\xc5\xa1\x7a\x60\x29\x3f\x79\x22\x69\xa5\x2f\x39\x41\x10\x6b\x39\x01\xaf\x6a\xd1\x7d\xf5\x92\x71\x32\xaf\xfa\x08\x6b\x07\xe9\x03\x83\xd3\xd1\x87\x8c\xcf\x7f\x5b\xe5\x1c\x05\x0e\x4d\xad\xc4\x1a\x07\xb8\x10\xc8\x84\xc6\x1a\xdf\x13\x66\x69\xa1\x97\x4b\x8e\x2a\xa6\x01\xe0\x99\xb3\xd9\x6c\x6f\x96\x8d\xbe\xc1\x1e\x43\x8a\x54\x58\x16\x33\xf8\x6d\x25\x2d\x47\xcc\x42\xc8\x12\x64\x01\xd2\x07\x13\x8a\x11\xa2\x49\x81\x83\x26\x23\xe0\xc9\x57\x12\x6d\xcd\x6a\x91\xbc\xc0\x2d\x64\x3e\x54\x52\x34\x52\xb8\x6d\x72\x0b\x47\x76\x69\x39\x55\xc7\x78\x3b\x48\xba\xcb\x18\x26\x99\x56\x1c\xc2\xb4\x49\x07\xf8\x5f\xe0\xf6\x6b\xc9\xc7\x29\x2d\xe6\xd4\x83\x0c\x9c\xb9\xee\xf1\xf2\x0d\x89\xc8\x32\x6d\x7c\x7b\xd9\x4d\x48\x87\x6d\xdb\x00\x55\x5a\x64\x92\x32\x4c\x9f\x55\x18\x0d\x47\x82\x7b\x89\x87\x18\x85\x96\xe3\x1b\x38\xf1\x42\x93\x34\x42\xf5\x79\x35\x12\xd1\x11\xdd\x83\xb4\x28\xd0\x3c\x96\x13\x4c\x2a\x61\x2c\xbe\x51\x2e\x1d\xf4\x4e\x77\x34\x70\xf1\x58\xc3\xea\xf4\xf9\x63\x78\x9d\x3e\xff\xeb\x98\x9d\x3e\x67\x6e\xa7\xcf\x87\xd9\xf9\x71\xe6\xf7\x41\x3e\x8a\x60\xfd\x57\x32\xe4\x35\x27\x69\x44\xed\x73\x6c\x24\x98\xa4\x6f\x0c\x1e\xe4\x18\x9b\x84\xaf\x24\xe9\xc1\x87\x68\xfa\x81\x49\xda\xe0\xf6\x69\x46\x89\xc6\xd4\x7c\xc8\x1f\x63\xee\x18\x0e\x66\x70\x89\x08\x4e\x2c\x4a\xca\x0d\x10\xab\xc5\x4c\xaf\x7d\x8a\xa1\xc2\x30\x47\x27\x64\x69\x87\x4d\xcd\x38\x6c\xee\xa6\x12\x1e\x34\x7a\x23\x19\x0c\xaf\xac\x28\x06\xa9\x52\xc5\xa6\xbc\x6d\x2a\x67\xa6\xb0\x5d\xc9\x6c\xe5\xcb\xba\x05\xb6\xb6\xb1\x91\x02\x6a\x8f\x31\x7b\xcf\xc5\xe2\x0c\x2e\xb4\xf3\x3c\x54\x8e\xb9\xa7\x5e\xd5\x8b\x52\x66\x54\x08\x0e\xb9\x81\x9f\x1d\xdc\xa0\x72\x66\xc8\x0f\xa2\x08\x73\xfe\x4f\x63\xb4\x01\x54\x99\xa8\x6c\x5d\xfa\x68\xde\xb2\x2f\xd2\xa8\xa5\xe0\xad\x2d\x72\x75\x5c\x1b\x85\x39\x51\xd2\x20\xe0\xb5\x86\x4a\x28\x99\xf9\xb2\x78\x2d\x76\xb4\x1f\x83\x99\xde\xa0\xc1\x7c\x4a\x09\xd4\x87\x2c\x05\x4f\x78\x1d\xb7\x12\x0e\x56\xda\xdf\x9a\xad\xb0\xb7\x52\x4c\x16\x5c\xd3\xf2\x94\xd0\x5d\xdc\x8e\x47\x61\x97\xe3\x36\xf1\xb6\xae\xd7\x68\x2d\x19\x3a\x34\x16\xad\x3d\xe5\xc7\x57\x62\x15\xa2\x31\x81\x62\xca\xc0\xad\x20\x39\x1e\x05\x15\x26\x87\x20\x67\x90\xc0\x53\xfa\xe9\x2b\xdd\x24\xac\x9f\xa4\x4d\x18\x1d\xc7\x00\x2f\xb2\x9b\x0e\x55\xeb\x9f\x34\xc5\xe5\x37\x32\xf6\xf8\x43\x8c\x1b\x6a\x7e\xbd\x3e\xb1\xd7\xa5\x5e\x88\xd2\xd7\x39\xb6\xdb\x81\x2c\x79\x24\xb8\xef\x24\xd9\x4a\x95\xeb\x6d\xe2\x3d\x70\x61\xf4\xd6\xc6\x3b\xb8\xe4\xf5\xaf\xff\xfc\xf9\xe5\xaf\x3c\x42\xad\xea\xec\xda\xa6\xb3\xf1\x46\x98\x88\x1e\xcd\x46\x0b\xbe\xd3\x79\x5d\x62\x58\x70\xdf\x03\x84\xfd\x27\x6b\x3f\x9c\xc0\x46\x18\xe9\x8f\xaf\x45\x47\xdd\x57\xc0\x9d\xc1\x7f\x49\xe5\xce\xb8\x91\x20\x38\x96\xf7\x57\xb3\xc6\x71\xdd\x76\x72\x6d\x67\xbc\x0a\xef\x9c\xc7\x2c\xed\x7d\xff\xe7\x85\x58\x63\x32\xa5\x2a\x22\x3d\x89\xf7\xc4\x17\xda\x21\xfb\x67\x83\x40\x35\x95\x6f\x5b\x73\x2c\x24\x7b\x3d\x98\x5a\x51\x6f\x6f\xc3\x19\xb6\x75\xe5\xd7\xfe\x45\xaf\xd7\x5a\xbd\xbd\xdc\xb3\xb2\x30\x59\x39\x57\xd9\xb3\xf9\x5c\xe9\x1c\xaf\xed\x4c\x9b\xe5\x5c\x54\x72\x1e\xc6\x67\x2b\xb7\x2e\xd3\x99\xdf\xdc\xdb\xcb\x88\x64\x7d\x59\xe4\xbb\xd6\x72\x37\x25\xb8\x45\x4d\x11\x60\xaf\x75\xc9\x0d\xa1\x27\x16\x3b\x42\x59\xec\x3b\x54\x5d\xbb\xaa\xf6\xf5\x60\x6c\xa6\x57\x46\xd7\xcb\x15\xab\x6c\x51\xab\xbc\x44\x13\xe8\xcb\x75\xc5\x85\xb7\x6d\x76\x00\x13\xb2\x24\x7e\x16\x34\x34\x85\x2d\x2e\x28\x80\x02\x3d\xb3\x8b\x5a\x96\x79\xb0\x6e\x50\x51\xdb\xba\x1f\x54\x54\xd4\xde\xc0\x2d\x37\x66\x5b\x27\x75\x94\x4a\x18\x68\x3f\xab\x8d\xf5\x0a\x17\xf5\x72\x89\x06\x96\xd4\x27\x64\x7a\x5d\xc9\xf2\xf0\x62\x80\xba\xa4\x3c\xc8\xbd\x48\xe8\x50\x39\xbf\x99\x70\x46\x22\xc4\x24\x85\xdb\x56\x3a\x51\xa2\x0c\xd5\x62\xa7\xf1\x09\x43\xfd\xab\x02\x76\x0a\x83\x95\x41\xeb\x35\x25\x1f\x13\x95\xbb\x4b\x71\xc3\x32\x50\xaf\x36\x47\x55\xc9\x32\x1c\x4a\x7e\xf7\xa0\x32\xd8\x1a\x51\xd9\x76\x79\x4c\xe7\x8d\x35\x2b\xb2\x0c\x6d\x7c\xb1\x12\x5f\x32\xe8\xe2\x40\x37\x54\x84\x27\x7c\x4a\x85\x59\xd6\xde\xce\x09\xb5\xae\x5b\x6d\xf2\x98\xfc\xe2\x72\x93\x42\xf1\x6d\x98\x2f\xdd\x03\x41\xdf\x9a\xf0\x44\xf8\xf8\xa9\x49\x33\x0f\xec\x85\x0f\x3e\x37\x38\xc9\xf7\xeb\xb0\x40\x32\x3d\x54\x4a\xa1\xd2\x18\x89\xfe\x1b\x77\xb6\x63\x8f\x1b\x7a\x10\xe2\x02\xf7\x61\xfd\x3b\x1c\xde\x00\x4d\x6d\xe7\xc0\x8f\x9f\xf6\x71\x50\x16\xa0\xe1\xfc\xdc\xdf\xbf\xdc\xdd\xf1\xef\xbd\xbf\xdd\x8e\x47\x6d\xf5\x8f\xee\xc7\x23\x01\x67\xe7\x91\xbf\x8f\x1f\x8c\x9a\xa4\x61\x37\x44\x2b\x99\x82\x4e\xc7\x23\x4b\xa2\xb4\xb9\x49\x5c\x71\x0a\xa2\xe9\xb0\xd3\xf1\xc8\xbf\x29\x23\xa1\xbf\xbd\x00\x09\xff\xd1\x1a\x7c\x01\xf2\xe9\x53\xbf\xbc\xfd\x28\x3f\xc1\x39\x88\xa6\x4d\xde\x87\x68\xa2\x13\xd8\xd9\x96\x6b\xc4\x57\x52\xfb\xde\xab\xef\xb1\x7c\xb8\x57\xc2\x7a\x1f\xaa\x28\x6a\x14\x3e\xfb\xc6\x58\x89\x79\x73\xe5\xa5\x0b\x72\xe8\x0f\xd6\x0f\x95\x32\x93\x8e\x8e\x9c\x43\xe3\x1d\xc7\xf2\xcf\xd6\xab\xb2\xf0\x1e\x2c\xa4\xe5\xc1\x57\x60\x7b\xc7\x0a\x64\xbf\xe0\xfe\x1b\x52\xd0\xe1\x61\x49\xc7\x23\x7d\xd4\x10\xd4\xd1\x91\x00\x07\xf4\xab\xab\x78\x72\xaf\x78\xf3\x57\x57\xc9\x14\x36\xe9\x78\x14\x39\x9f\x9d\xc3\x86\x21\x5a\xdd\x65\x92\xc6\x9c\xed\x85\x92\x01\x73\x85\xa1\x01\xa3\xad\xbd\xe5\xc3\x70\x34\xdc\x78\x44\xde\xb6\x66\xd8\xea\x66\xd9\xca\xb6\xf0\xdd\x39\x24\x09\xdc\xc2\x7c\xee\x3b\xde\x68\x83\xf1\x68\x34\xca\xb4\x72\x52\xd5\x38\x1e\x91\xbd\xc3\xae\x02\x8a\xa2\x34\xb5\x87\x99\xf2\xf9\x8c\x0d\x70\xe3\xf0\x2d\x6d\x8e\x86\x8f\x20\x7e\x66\x15\xc9\x3f\x30\x5e\x84\x93\x92\xfc\x2a\x91\xb1\xd1\x55\x6b\xad\x74\x1a\xb7\xe2\x76\x55\x92\x4e\xc1\x99\x1a\xe3\x21\x10\x55\x55\xee\x08\x80\x6f\x2e\x68\xeb\xf7\x1d\x7f\xd5\x9d\x50\xb6\x7f\x8d\xfa\x8d\x3e\xeb\x93\x6b\xcb\x6d\xa7\xe4\xa2\x54\x4d\xa3\x41\x90\x7c\x01\x3c\x69\x5d\xb3\x8a\x34\xba\xa9\x8f\x90\xd3\x80\x9c\x07\x07\xb7\x84\xb7\x77\x72\xff\x67\x93\xb3\x73\xdc\x60\x49\xe5\xd9\x6c\xad\xff\x90\x65\x29\x7c\xfa\x46\xf5\xec\xc3\xe5\x3c\xd7\x99\x9d\xff\x8e\x8b\xf9\x7e\x17\xf3\x7f\x61\x81\x06\x55\x86\x73\x56\xfd\x15\x1b\xc5\xce\xf9\xff\x39\xc7\x9c\xf7\xa1\xe2\x4b\x69\xad\xb8\x3d\xa5\xd5\x33\x5c\x2f\x30\xa7\x64\xd2\x9c\xcf\x70\xb2\xf8\x78\xfe\x0f\x47\x78\x0e\xfb\xa1\x53\xe0\x57\xea\x41\x1f\x71\x2b\x61\x67\x5c\xaa\xaf\x70\x6d\x71\x43\xa5\x48\xdc\xf8\x76\x85\xaa\x41\x99\xfa\xd2\x42\x28\xaa\x02\xb4\x71\x42\x39\xbe\xa3\x06\xa7\xc7\xec\xa9\xbe\x02\xf2\xe9\x8f\x6f\x78\x22\x4c\xb8\x77\xb3\xc1\xa0\x39\x68\x05\x28\xb2\x55\x80\xee\x64\x96\xc6\xfa\x7f\x22\x08\x64\xc7\x0e\xef\xf8\xe1\x00\x31\x1e\x75\x55\x4e\xe2\xfe\xfc\xdc\x34\x17\x76\x85\xf2\x07\xc9\x3f\x8d\xa7\x29\xf5\xc7\x48\x57\x0f\x85\x1f\x1f\x2e\xae\xa6\x50\x90\xa0\x11\x6a\x89\x1e\xce\x9f\xc1\x62\xa2\xab\x34\x1c\xe8\x2f\xe4\x92\x2e\x3f\xca\x2a\x53\xb8\x99\x82\x9f\x7b\xdf\xe3\x7f\x2c\xd4\x79\xf6\xba\xda\xe7\x3f\xe6\xcf\xd1\xd1\x1b\x2a\xc4\xc3\x7b\xd2\x09\x0d\xce\xe7\x90\x89\xcc\xb7\x19\x20\xc0\xa2\xb2\x92\x6a\x6d\xdf\x73\xb1\x6a\xc6\x2c\xb5\x45\xc8\xb5\x3a\x71\xb0\x15\xde\x2b\x82\xa3\x80\x50\xbb\xd8\x55\x5b\x2a\x4d\x7d\xc5\x10\x1e\xf0\x4c\xab\x79\x32\x58\xdd\x5c\x90\x02\xed\x43\xf0\xcb\xb9\xc5\x0e\x56\x42\xe5\xb4\x8e\xdb\x79\x5d\x67\xb1\x51\x21\xd1\x76\xa7\x32\x1a\x55\x37\xcb\x96\x44\x37\xb4\x12\x02\xf5\xb9\x67\x14\x61\x39\x04\xbb\x5d\xf5\xf1\x6f\x9f\x28\xd3\x9f\x3c\x39\x61\x83\x90\xc4\x39\x24\x4f\x12\x6f\x94\x60\xbc\x76\xac\x2f\x51\x4d\xdc\xae\x6a\xc5\xf8\x88\x24\x19\x69\x16\x90\x3c\xdd\x73\x1e\x79\xfa\xc3\xd9\x27\xff\x6c\x61\x50\xdc\xd0\xaf\xfb\x88\x5f\xdd\x2c\x7f\xe3\x7d\x11\xf9\xa7\x90\xcc\xa8\x53\x24\x1a\x4f\x69\xee\x78\xd4\x33\xee\xf7\xa4\xfe\x63\xe6\xec\xd9\x93\xf1\xf7\x81\x77\x3c\xa2\x4a\x3a\x84\x8c\x58\x46\xb7\x33\x60\xdb\x0d\xfd\xbb\xdb\xbd\x27\x53\xd6\xb2\x2d\x05\x37\x29\xf1\x05\x3d\xff\xee\xb0\x60\x8a\xa0\xfb\x0c\xc8\xde\x9c\x69\x95\x09\x97\x4c\x61\x6d\x39\x17\xcc\xe7\xd4\x96\x6c\xf9\xda\x40\x34\xaf\xbf\xc2\x5b\x1f\x1f\x88\xf2\x26\xcc\x15\x46\xaf\xe3\x4b\x00\x3f\x15\x4b\x8b\xf1\x75\x61\x3c\xf7\xe1\x02\x9c\x6f\x91\x57\x62\xc3\x21\xce\xef\x00\x5b\x1b\x20\x18\x62\x8f\x7d\xf2\x61\xb5\x73\x08\xdd\x21\xff\x4d\xd9\xff\xe1\x7d\xe1\x81\x7a\x68\x97\x4c\xb3\x83\x9c\x1d\x22\xdf\xff\x3f\x29\x2d\x0e\x3c\x6e\x38\xef\x3f\xd6\x01\x1f\x51\x89\xfc\x9f\x96\x22\xbd\x5e\xe2\x20\xd9\xa4\x5f\xa8\x55\xfc\x99\x89\x15\x8b\x2c\xa2\x0b\xf6\x9d\xe5\xc0\x6a\x2c\x37\x60\xb4\x91\x4f\x02\x61\xb8\x65\x34\x02\xff\xae\x68\xdf\x43\x60\x9e\xa4\xf1\xf2\x9f\x95\xd4\x32\x92\xb7\xd2\xa1\x99\x8a\xaf\x32\x53\x63\xa7\x25\xba\x68\xa5\x43\xb3\x8c\x36\x59\x2b\x22\x04\xb3\x64\xba\xda\xbd\x29\xfe\x85\xff\xae\xa5\xc1\xbc\xb1\x48\xf2\xfd\x46\x94\xa1\x56\x2e\x8e\x59\xa7\x68\x59\x27\xe5\x25\x1e\x32\x3d\x2d\x90\x75\x67\x3e\x6c\x51\x0f\x7d\x9f\x76\xf6\x69\xf7\xfb\xbc\xde\x1c\x2a\x63\xb4\xdc\xf4\x77\x1a\x73\x28\xb3\xb8\xde\xfc\x29\x16\xa3\xae\x7a\x2e\x8f\xaa\x67\x0a\xcb\x4d\x9b\xf8\x7d\xa8\x0b\xfa\xb5\xf2\x05\x6e\x7d\x60\xfe\xb9\x2e\x8a\x63\xa5\x72\x5b\xc0\x47\x4c\x01\x8b\x9d\x0b\x5f\xc6\x84\xaa\xab\x8b\x33\x59\xc0\xc7\x4f\x24\xd3\xf1\x02\xfe\x92\xa6\x5f\x73\x2d\xa8\xaf\x2a\x0a\x8b\x8e\x06\x19\x95\xf7\xc9\x4f\x93\x94\x5f\xc4\x8c\x47\xfc\x72\xfa\x50\x2a\xbc\xb2\x6e\xa4\x62\xfb\xda\x12\x11\x21\xf9\xf8\xbf\x16\x9e\x63\x53\x10\x79\x39\xaa\x83\xfc\x62\xf1\xff\xa7\x8c\x1a\x6f\x0a\xde\x71\x9d\x6f\xfd\xd5\x95\xff\x0a\x82\x32\xe7\x0c\xde\xf8\x2b\xaf\xe6\x52\xc6\x7f\x23\x61\x57\xda\xb8\x95\xff\x54\x50\x9b\x7e\xcf\x61\x61\xb2\xc0\x42\x9b\xf6\x2b\x8c\x34\x5c\x3e\xbf\x3b\xf2\x49\x0c\x5f\xe8\x76\x38\xec\xbf\x4b\xfa\x4a\x16\xe1\x23\xa8\xe3\x24\x2e\xbb\xdf\x53\x8d\xd9\xc2\x52\x49\xc7\xf1\x83\x8a\xfe\x8d\x96\x39\xe4\x28\x72\xc8\x74\x8e\x80\xa5\x5c\x4b\xe5\xcb\xac\xf1\xc8\xdb\xd8\x5f\x12\xdf\xde\x8f\x47\x57\x94\xf7\xc6\xf7\xe3\xff\x0d\x00\x00\xff\xff\x64\x7f\x85\x6e\xe3\x2b\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x5a\x5f\x93\xdb\x36\x92\x7f\x26\x3f\x45\x87\x95\x2a\x8b\xb6\x22\x6d\x12\x97\x6b\x6b\x72\xf3\xe0\x24\xb7\x3e\xe7\x62\x6f\x6a\x27\xbe\x3c\xb8\x5c\x2e\x88\x6c\x4a\xf0\x50\x00\x17\x00\x25\x6b\x67\xe6\xbb\x5f\x35\x1a\x20\x29\x91\x1a\x7b\xd6\x79\x58\xbf\x58\x43\x34\xba\x7f\xfd\x07\xfd\x07\xe4\x72\x09\xbf\x89\xe2\x5a\xac\x11\x3e\x58\x68\x8c\xde\xc9\x12\x2d\x54\xad\x2a\x9c\xd4\xca\x42\xa5\x0d\x48\xe5\xd0\x88\xc2\x49\xb5\x86\xbd\x74\x1b\x50\xc2\xc9\x1d\xc2\x2f\x62\x27\xae\x0a\x23\x1b\x07\xcf\x7f\x7b\x69\x17\xf0\x93\xa8\x6b\x0b\x4e\x83\xdb\xa0\xc5\x01\x17\x61\x10\x9c\x41\xe1\xb0\x04\xdb\x60\x21\x45\x5d\x1f\x60\x75\x80\x17\xba\xd9\xa0\xf9\xe5\x0a\x84\x2a\xc1\x19\xa1\x6c\xed\x89\x4a\x69\xb0\x70\xf5\x21\x30\x93\x06\x0a\x6d\x0c\xda\x46\xab\x92\x60\x0c\x44\xdb\x83\x72\xe2\xe3\x22\x5d\x2e\xd3\xe5\x12\xde\x58\x84\x57\xe2\x1a\xff\x30\xa2\x69\xd0\xd0\x7e\xfc\xd8\x68\x8b\xb0\x45\xb7\xd1\xa5\x87\xd7\xef\x5e\x74\x1b\xfe\xd6\xd6\xf5\xf9\x4d\xcf\x5f\xff\x0c\x95\xc4\x7a\xbc\xff\x8f\x0d\x2a\x68\x84\xb5\x04\x6b\x27\xea\x16\x6d\x87\x7e\x4e\xd8\xa1\xd2\x75\xad\xf7\xb4\xec\x0e\x0d\x42\xa1\xd5\x0e\x8d\xed\xec\xd2\xa0\xa9\xb4\xd9\x62\x79\x11\x54\x80\x5b\x78\xa1\x99\xf6\xf8\xdf\xed\x50\xed\xc1\xfa\x2d\xfc\x34\xe0\xb9\x12\xc5\x35\x81\xf4\x5e\xab\x44\x81\x37\x77\x70\x1b\xf8\x7e\x33\xf5\xef\xa1\xcf\x87\x14\x81\xef\x4a\xeb\x1a\x46\xff\x6e\xe1\x47\xad\x6b\x14\x6a\xf4\x7c\x9a\x7e\x40\x11\xf8\x92\x0e\x6b\x34\xd6\x87\x47\x55\x6b\xe1\xac\xdf\xff\xba\xdd\xae\xd0\x8c\xe5\x79\x92\x67\x4f\x3f\xc9\xd7\x3a\x43\xfe\x18\xed\xbf\x3a\xf3\x7c\x9a\x7e\xcc\xf7\xed\x3b\xa9\xdc\x5f\xc7\xfb\x5f\x2a\xf7\xd7\xe7\xc6\x88\xc3\xc9\xf3\x69\xfa\x33\x7c\xbf\x7d\x36\xc5\xf7\xdb\x67\x23\xc6\xe7\xe8\xcf\xf0\xfd\xfe\xbb\x39\xff\x38\xe2\xfb\xfd\x77\xe7\xf8\xc2\xe7\xe0\x6d\x27\x14\xbb\x85\x37\x72\xca\x10\xe7\xe8\xcf\xf1\x3d\x55\x8c\xf9\x8e\x0d\x71\x8e\xfe\x1c\x5f\x36\x44\xdb\xa9\xc8\x7c\xc7\x86\xb8\x3d\xa2\xba\x9f\xaf\x8f\xc8\xef\xbf\x3b\xc1\xfb\x37\x7e\x7a\xc2\xf8\x1c\xfd\x59\xbe\x27\x91\x1e\xf8\x3e\x7b\x7a\x8e\xef\xd9\x93\x11\xf9\x8a\xba\x06\xed\x36\x68\xc0\xd6\xb2\x40\x1b\xf7\x8f\x63\x77\x10\x0f\x5d\x96\xb9\x87\x2f\xed\xb7\x13\xe7\x0a\x91\x25\x1d\xa5\xbb\x73\xcf\xc7\x7c\xfb\x0a\x73\x62\x87\xf0\x7c\x94\x1f\x5a\x55\xcc\x16\x8b\xc5\x00\x75\x0e\x8f\x3f\xd8\xc5\xdf\x57\x1f\xb0\x70\x1d\x5f\x27\xb7\xb8\xf8\x5d\x6e\xf1\x64\xff\xcf\xc2\x4d\xa1\x39\x43\x3f\xc6\xfb\xcd\xf4\x2a\x48\x65\x9d\x50\x05\xea\x0a\x5e\xeb\xb2\xcf\xeb\x03\x68\xf7\xf2\xdd\x8a\xc6\xce\x29\x4b\xb5\x85\xb3\xd3\x7c\x07\x6c\x3c\xfd\x5b\xce\x69\xd3\x0e\xbc\x0d\xa5\xe8\x79\x59\x4a\xb2\x23\x95\xeb\xb9\xef\x05\x44\x90\x42\x65\xcc\x09\xa9\x28\x2d\x8a\x21\x4e\x5f\x25\xe7\xa0\x15\x15\xef\x8d\x2f\x77\x0e\x95\x03\x5d\x71\x31\xa4\x65\xd8\xcb\xba\x86\x15\xfa\xba\x89\xe5\x71\x49\xf5\xb9\x7e\x47\xbe\xa7\x92\x26\x16\x69\xd3\x35\x28\x29\x61\x0a\x72\xa4\x05\x11\x41\xa0\x09\xd8\xc6\x8d\x89\xf6\xd4\x83\xd6\x44\x3a\xdb\x55\xf5\x3f\xa1\x2d\x19\x37\x22\xf0\x1c\x94\xac\xa1\xd1\xde\xb2\x44\xd9\x23\xc6\x7f\xb6\xa2\x3e\x56\xf7\x91\x85\x4c\xb5\x75\x9d\x2d\x22\x5d\x21\x14\x28\xed\xc8\x3e\x2d\x59\x47\x90\xa6\x5b\xd1\xc0\x35\x1e\x16\xa9\x3f\x10\x81\x92\x5d\x71\x13\x94\x84\xc7\xe1\xf1\x9d\xb7\xd3\x0b\x74\x60\xd0\xb5\x46\x59\x6f\x79\x26\x7a\xe4\xbb\xbc\x06\x8d\x3b\x70\x2f\x47\x4b\x6b\xb9\x43\xc5\xec\xe9\x84\xc0\x4c\x47\x5e\x39\xb1\x99\x5d\xe3\x21\x94\xc0\xbc\x13\x72\x13\x98\x83\x5e\x04\x1b\x07\xca\x3c\xc8\xbf\x42\x07\xd4\x16\xad\x83\x7c\xdf\x1b\x05\xc3\xfd\xbb\x60\xae\x8e\xc0\xcc\x03\xcf\xa3\xd3\x7c\xd3\x03\x0a\xd4\x81\x2c\xe2\xfa\x19\x6b\x74\x08\x06\xb7\x7a\x87\x5f\x64\x1a\xe6\x74\x64\x9d\x81\xf4\x7e\x35\x4a\xfe\x15\xd5\xda\x6d\xa6\x9d\x92\xd5\x7e\x31\xeb\x20\xcc\x43\xa3\xe8\xf8\x7c\x48\xe5\x26\x10\x30\xc7\x59\x4e\xcb\x13\x1e\xe9\x96\x59\xfe\x4b\x55\xe2\xc7\x23\xf1\xf2\x91\xdb\x00\xd6\xb8\x0d\x27\x54\x28\x4e\xd5\x13\xa2\xfc\xe6\x99\x24\x49\xf7\x05\x41\x20\x1b\x04\x01\x4b\xb5\xe8\x1e\x2c\x32\x6e\x66\xa9\x9f\xe1\xed\x40\x7d\xe2\x70\x3a\xfa\x50\xf0\xf9\x1f\x9a\x9c\xb3\xc0\xa9\xab\x95\xd8\xe2\x04\x16\x62\x32\xa3\xb5\x2e\xf6\x84\x59\x5b\x18\xd5\x92\xb3\x86\xe9\x18\xf0\xce\xc5\x62\xd1\xbb\x65\xa7\xaf\x71\x84\x90\x32\x15\xd6\xd5\x02\x7e\xdf\x48\xcb\x19\xb3\x12\xb2\x06\x59\x81\xf4\xc9\x84\x72\x84\xe8\x4a\xe0\xa4\xcb\x88\xf1\xec\x81\x40\x07\xbb\x06\x20\x5f\xe3\x1e\x0a\x9f\x2a\x29\x1b\x29\xdc\x77\xb5\x85\x33\xbb\xb4\x5c\xaa\x63\xbe\x9d\x04\x7d\x8c\x18\x66\x85\x56\x9c\xc2\xb4\xc9\x27\xf0\xbf\xc6\xfd\x43\xc1\xc7\x2d\x03\xe4\x34\x83\x4c\x9c\xb9\xe3\xe3\xe5\x07\x12\x51\x14\xda\xf8\xf1\xf2\xb8\x20\x9d\x8e\x6d\x13\x50\x49\xc8\x2c\x67\x36\x63\x54\x61\x35\x1c\x09\x9e\x25\x3e\x85\x28\x8c\x1c\x5f\x80\x89\x05\xcd\xf2\xc8\x6a\x8c\xab\xa3\x88\x81\xe8\x3e\x09\x8b\x12\xcd\xe7\x62\x82\x59\x23\x8c\xc5\x97\xca\xe5\x93\xd1\xe9\xce\x26\x2e\x5e\xeb\x50\x3d\x7b\xfa\x39\xb8\x9e\x3d\xfd\xf3\x90\x3d\x7b\xca\xd8\x9e\x3d\x9d\x46\xe7\xd7\x19\xdf\x1b\xf9\x59\x00\xdb\x3f\x13\x21\xcb\x9c\xe5\x91\xeb\x18\x63\x47\xc1\x20\xfd\x60\xf0\x49\x8c\x71\x48\x78\x20\x48\xcf\x7c\x0a\xa6\x5f\x98\xe5\x1d\xdf\x31\xcc\x48\xd1\xb9\x9a\x0f\xf9\xe7\xb8\x3b\xa6\x83\x05\x5c\x21\x82\x13\xab\x9a\x6a\x03\xc4\x6e\xb1\xd0\x5b\x5f\x62\xa8\x31\x2c\xd1\x09\x59\xdb\x69\x57\x33\x1f\x76\x77\xd7\x09\x4f\x3a\xbd\xa3\x0c\x8e\x57\x56\x54\x93\x50\xa9\x63\x53\xde\x37\x8d\x33\x73\xd8\x6f\x64\xb1\xf1\x6d\xdd\x0a\x07\x6a\xec\xa4\x80\xd6\xf3\x58\xfc\xc6\xcd\xe2\x02\x5e\x6b\xe7\x71\xa8\x12\x4b\x0f\xbd\x69\x57\xb5\x2c\xa8\x11\x9c\x0a\x03\xbf\x3b\x84\x41\xe3\xcc\x54\x1c\x44\x12\xc6\xfc\xdf\xc6\x68\x03\xa8\x0a\xd1\xd8\xb6\xf6\xd9\x7c\xe0\x5f\xa4\x55\x4b\xc9\x5b\x5b\xe4\xee\xb8\x35\x0a\x4b\x82\xa4\x41\xc0\x0b\x0d\x8d\x50\xb2\xf0\x6d\xf1\x56\x1c\x48\x1f\x83\x85\xde\xa1\xc1\x72\x4e\x05\xd4\xa7\x2c\x05\x8f\x59\x8e\xdb\x08\x07\x1b\xed\x6f\xcd\x36\x38\x92\x14\x8b\x05\xf7\xb4\xbc\x25\x4c\x17\x37\x69\x12\xb4\x4c\x87\xc0\x87\xb6\xde\xa2\xb5\xe4\xe8\x30\x58\x0c\x74\x2a\xcf\x4b\x62\x13\xa2\x31\x01\x62\xce\x8c\x07\x49\x32\x4d\x82\x09\xb3\x53\x26\x17\x90\xc1\x13\xfa\xe9\x3b\xdd\x2c\xc8\xcf\xf2\x2e\x8d\xa6\x31\xc1\x8b\xe2\xfa\x08\xaa\xf5\x4f\xba\xe6\xf2\x0b\x11\x7b\xfe\x53\x88\x3b\x68\x5e\xde\x18\xd8\x8b\x5a\xaf\x44\xed\xfb\x1c\x7b\x3c\x81\xac\x79\x25\x84\xef\x2c\xdb\x4b\x55\xea\x7d\xe6\x23\x70\x65\xf4\xde\xc6\x3b\xb8\xec\xc5\xaf\x7f\xff\xf1\xf9\xaf\xbc\x42\xa3\xea\xe2\x83\xcd\x17\xe9\x4e\x98\xc8\x3d\xba\x8d\x04\xbe\xd2\x65\x5b\x63\x10\xd8\xcf\x00\x41\xff\x6c\xeb\x97\x33\xd8\x09\x23\xfd\xf1\xb5\xe8\x68\xfa\x0a\x7c\x17\xf0\x3f\x52\xb9\x0b\x1e\x24\x88\x1d\xd3\xfb\xab\x59\xe3\xb8\x6f\x7b\xf4\xc1\x2e\x58\x0a\x6b\xce\x6b\x96\x74\xef\xff\x7c\x2d\xb6\x98\xcd\xa9\x8b\xc8\x1f\xc5\x7b\xe2\xd7\xda\x21\xc7\x67\xc7\x81\x7a\x2a\x3f\xb6\x96\x58\x49\x8e\x7a\x30\xad\xa2\xd9\xde\x86\x33\x6c\xdb\xc6\xcb\xfe\x49\x6f\xb7\x5a\xfd\x72\xd5\xa3\xb2\x30\xdb\x38\xd7\xd8\x8b\xe5\x52\xe9\x12\x3f\xd8\x85\x36\xeb\xa5\x68\xe4\x32\xac\x2f\x36\x6e\x5b\xe7\x0b\xaf\xdc\x2f\x57\x91\x93\xf5\x6d\x91\x9f\x5a\xeb\xc3\x9c\xd8\xad\x5a\xca\x00\xbd\xd5\x25\x0f\x84\x1e\x58\x9c\x08\x65\xd5\x4f\xa8\xba\x75\x4d\xeb\xfb\xc1\x38\x4c\x6f\x8c\x6e\xd7\x1b\x36\xd9\xaa\x55\x65\x8d\x26\xc0\x97\xdb\x86\x1b\x6f\xdb\x69\x00\x33\xf2\x24\x7e\x14\xb4\x34\x87\x3d\xae\x28\x81\x02\x3d\xb3\xab\x56\xd6\x65\xf0\x6e\x30\xd1\xd0\xbb\x6f\x54\x34\x54\xef\xe0\x41\x18\xb3\xaf\xb3\x36\x52\x65\xcc\xa8\xdf\x35\xe4\xf5\x33\xae\xda\xf5\x1a\x0d\xac\x69\x4e\x28\xf4\xb6\x91\xf5\xe9\xc5\x00\x4d\x49\x65\xa0\xfb\x21\xa3\x43\xe5\xbc\x32\xe1\x8c\x44\x16\xb3\x1c\x6e\x06\xe5\x44\x89\x3a\x74\x8b\x47\x83\x4f\x58\x1a\x5f\x15\x70\x50\x18\x6c\x0c\x5a\x6f\x29\xf9\x39\x59\xf9\x58\x14\x0f\x2c\x13\xfd\x6a\x77\x54\x95\xac\xc3\xa1\xe4\x77\x0f\xaa\x80\xbd\x11\x8d\x1d\xb6\xc7\x74\xde\xd8\xb2\xa2\x28\xd0\xc6\x17\x2b\xf1\x25\x83\xae\x4e\x6c\x43\x4d\x78\xc6\xa7\x54\x98\x75\xeb\xfd\x9c\xd1\xe8\xba\xd7\xa6\x8c\xc5\x2f\x8a\x9b\x55\x8a\x6f\xc3\x7c\xeb\x1e\x00\xfa\xd1\x84\x37\xc2\xdb\x77\x5d\x99\xf9\x84\x2e\x7c\xf0\x79\xc0\xc9\xbe\xde\x06\x01\xd9\xfc\xd4\x28\x95\xca\x63\x26\xfa\x5f\x3c\xd8\x23\x7f\x5c\xd3\x83\x90\x17\x78\x0e\x1b\xdf\xe1\xb0\x02\xb4\x75\x58\x03\xdf\xbe\xeb\xf3\xa0\xac\x40\xc3\xe5\xa5\xbf\x7f\xb9\xbd\xe5\xdf\x7d\xbc\xdd\xa4\xc9\xd0\xfc\xc9\x5d\x9a\x08\xb8\xb8\x8c\xf8\x7d\xfe\x60\xae\x59\x1e\xb4\x21\x58\xd9\x1c\x74\x9e\x26\x96\x48\x49\xb9\x59\x94\x38\x07\xd1\x4d\xd8\x79\x9a\xf8\x37\x65\x44\xf4\x97\x1f\x40\xc2\x7f\x0d\x16\x7f\x00\xf9\xe4\x89\x17\x6f\xdf\xca\x77\x70\x09\xa2\x1b\x93\xfb\x14\x4d\x70\x02\x3a\x3b\x08\x8d\xf8\x4a\xaa\x9f\xbd\xc6\x11\xcb\x87\x7b\x23\xac\x8f\xa1\x86\xb2\x46\xe5\xab\x6f\xcc\x95\x58\x76\x57\x5e\xba\xa2\x80\x7e\x63\xfd\x52\x2d\x0b\xe9\xe8\xc8\x39\x34\x3e\x70\x2c\xff\x1c\xbc\x2a\x0b\xef\xc1\x42\x59\x9e\x7c\x05\xd6\x07\x56\x00\x7b\x4f\xf8\xef\xc8\x40\xa7\x87\x25\x4f\x13\x7d\xd6\x11\x34\xd1\x11\x01\x27\xf4\xf7\xef\xe3\xc9\x7d\xcf\xca\xbf\x7f\x9f\xcd\x61\x97\xa7\x49\xc4\x7c\x71\x09\x3b\x66\x31\x98\x2e\xb3\x3c\xd6\x6c\x4f\x94\x4d\xb8\x2b\x2c\x4d\x38\x6d\xeb\x3d\x1f\x96\xa3\xe3\xd2\x84\xa2\x6d\xcb\x6c\x9b\xeb\xf5\xa0\xda\xc2\x57\x97\x90\x65\x70\x03\xcb\xa5\x9f\x78\xa3\x0f\xd2\x24\x49\x0a\xad\x9c\x54\x2d\xa6\x09\xf9\x3b\x68\x15\xb8\x28\x2a\x53\x3d\x9b\x39\x9f\xcf\x38\x00\x77\x01\x3f\xb0\x66\x32\x7d\x04\xf1\x23\x9b\x48\xfe\x0b\xe3\x45\x38\x19\xc9\x4b\x89\x88\x8d\x6e\x06\xb2\xf2\x79\x54\xc5\x1d\x9a\x2c\x9f\x83\x33\x2d\xc6\x43\x20\x9a\xa6\x3e\x10\x03\xbe\xb9\x20\xd5\xef\x8e\xe2\x55\x1f\xa5\xb2\xfe\x35\xea\x17\xc6\xac\x2f\xae\x83\xb0\x9d\x53\x88\x52\x37\x8d\x06\x41\xf2\x05\xf0\x6c\x70\xcd\x2a\xf2\x18\xa6\x3e\x43\xce\x03\xe7\x32\x04\xb8\x25\x7e\x7d\x90\xfb\x3f\xbb\x9a\x5d\xe2\x0e\x6b\x6a\xcf\x16\x5b\xfd\x2f\x59\xd7\xc2\x97\x6f\x54\xdf\xbc\xb9\x5a\x96\xba\xb0\xcb\x3f\x70\xb5\xec\xb5\x58\xfe\x03\x2b\x34\xa8\x0a\x5c\xb2\xe9\xdf\xb3\x53\xec\x92\xff\x5f\x72\xce\xf9\x2d\x74\x7c\x39\xc9\x8a\xea\x29\xad\xbe\xc1\xed\x0a\x4b\x2a\x26\xdd\xf9\x0c\x27\x8b\x8f\xe7\xff\x71\x86\xe7\xb4\x1f\x26\x05\x7e\xa5\x1e\xec\x11\x55\x09\x9a\x71\xab\xbe\xc1\xad\xc5\x1d\xb5\x22\x51\xf1\xfd\x06\x55\xc7\x65\xee\x5b\x0b\xa1\xa8\x0b\xd0\xc6\x09\xe5\xf8\x8e\x1a\x9c\x4e\x39\x52\x7d\x07\xe4\xcb\x1f\xdf\xf0\x44\x36\xe1\xde\xcd\x06\x87\x96\xa0\x15\xa0\x28\x36\x81\xf5\x51\x65\xe9\xbc\x7f\x4f\x12\x90\xfd\xf9\x3f\x93\x0e\x06\x47\x97\x28\x06\x1b\x26\x8e\x76\x9a\x26\x21\x86\x02\xc3\x7b\xf2\x48\x9a\x1c\x7b\x86\xc8\xfd\x31\x1b\xde\x2a\x97\x68\xbd\x97\xb5\x81\x57\xb9\x3f\x67\xf7\x94\x88\x63\x7e\x59\x8c\x3a\xc2\x32\x07\x7f\xfb\xdc\xb3\xf3\xa7\xe6\x14\xc2\xb9\xa4\xf6\x8a\x04\x67\xde\xf6\xd9\xc5\xd0\x04\xf3\x94\xce\x5f\x9a\xd0\x3a\x5f\x6f\x16\x7e\x88\x00\x01\x16\x95\x95\xd4\x49\xfb\x89\x8a\xf5\x59\xa4\x4c\xf7\x07\x42\xa9\xd5\x23\x07\x7b\xe1\x9d\x1e\xe2\x00\x84\x3a\xc4\xa1\xd9\x52\xe7\xe9\x1b\x82\xf0\x60\xce\x5b\xad\x86\x3d\xed\x06\xab\xbb\x0b\x50\x20\xf4\x82\x5f\xbe\xad\x0e\xb0\x11\xaa\xf4\x92\xdc\xa1\x21\xa3\x0e\x3c\x14\x67\x12\xda\x35\x1c\x4a\x92\xa4\xb9\x5e\x4f\xd2\x1e\xe7\x53\xe2\x4a\xc3\xed\x05\xa5\x55\xce\xbb\xee\xd0\xbc\xfd\xcb\x3b\x2a\xef\x8f\x1e\x3f\xe2\x4c\x48\x14\x97\x90\x3d\xce\x7c\x6a\x4d\x93\x51\x82\xaf\x51\xcd\xdc\xa1\x19\x24\xf6\xc8\x49\x32\xa7\x45\xe0\xe4\x55\xb8\xe4\x95\x27\xdf\x5e\xbc\xf3\xcf\x56\x06\xc5\x35\xfd\xba\x8b\xfc\x9b\xeb\xf5\xef\xac\x2b\xa9\xf1\x04\xb2\x05\x8d\x87\x04\xe3\x09\xed\x4d\x93\x91\x9f\xbf\x26\xaf\x44\xcf\xf6\xae\x65\x46\xf3\x2e\xad\xa6\x09\xf5\xc9\x21\x21\xc4\x26\x79\x58\xdf\x86\xd1\xe8\xdf\xcc\xf6\x65\x92\x6a\x92\x9d\xb4\x69\x57\xfa\x7e\x20\x8a\xaf\x4e\x1b\xa3\xc8\xbe\xaf\x74\x1c\xde\x85\x56\x85\x70\xd9\x1c\xb6\x96\x73\x3e\xf5\xd5\x15\x85\x03\xe5\x1c\xd1\xbd\xe6\x0a\x6f\x77\x7c\xc2\x29\xbb\x74\x56\x19\xbd\x8d\x97\xfd\x73\xbf\x17\x6b\x8b\xf1\xbd\x60\x77\xc4\xf9\xa6\x9b\xaf\x8b\x37\x62\xc7\xb9\x6c\xe1\xb5\xc1\x49\x65\x88\x25\x69\x82\x63\x45\x82\xe4\x4b\x08\x13\x21\xff\x4d\x15\xff\xd3\x3a\xe2\x89\xa9\x48\x63\x46\x7c\xc4\x79\x04\xa7\x97\x71\xf7\x1f\xd2\x58\x9c\x84\xde\x74\xd5\x1f\x45\xe2\x67\x34\x1c\x0f\xe9\x38\x4e\xd3\xf6\x03\x7a\x8f\xd1\xf0\x70\x52\x5d\xf2\xd3\xe6\x64\x98\x1f\xbb\x36\x25\xb9\xeb\x4f\x15\x59\x35\x78\x70\x1c\x33\x27\x2e\x63\xba\x09\x8f\x25\x95\x2f\x18\xbc\x3c\xf0\x18\x31\xff\xaa\x1a\x5e\x41\x60\x99\xe5\xf1\xde\x9f\x0d\x37\xf0\x90\x77\xd1\xa9\x8f\xaa\x7b\x7d\x94\x64\x6b\x74\xd1\x45\xa7\x3e\x49\x76\xc5\x20\x2f\x04\x9f\x14\xba\x39\xbc\xac\xfe\x81\xff\x6c\xa5\xc1\x72\xc2\x1d\xd9\xd7\x3b\x51\x87\xce\xb8\x3a\xe7\x9a\x6a\xe0\x9a\x9c\x85\x7d\x2a\x02\xa8\x55\x2c\x8e\x77\x7e\xda\x9d\x9e\xb5\x77\x57\x92\x64\xb6\x57\xf5\xc3\xae\x1f\xf5\x82\xb2\xeb\xdd\x58\xd9\xa8\x1b\x8b\xff\xb0\xfb\xb7\xc4\x27\xe7\x2c\x74\x75\xd6\x42\x73\x58\xef\x86\xd8\xef\x72\x3e\x80\x7d\x73\xdc\xb7\x03\x69\xf7\x26\xcd\x27\xed\x1f\xdb\xaa\x3a\xd7\x24\x0f\x09\x7c\x0e\x15\xb0\x3a\xb8\xf0\x4d\x4c\xe8\xb7\x8e\xf9\xcc\x56\xf0\xf6\x1d\xd1\x1c\xc5\x06\x7f\x43\x33\xee\xb1\x56\x34\x51\x55\x95\x45\x47\x8b\xcc\x95\x15\xe6\xa7\x59\xce\xaf\x60\xd2\x84\x5f\x4b\x9f\x52\x85\x97\xd5\x1d\x55\x1c\x5c\x07\x24\x22\x14\x26\xff\xd7\xca\x63\xec\x7a\x26\x4f\x47\x73\xb5\x17\x16\xff\x7f\xc2\x5c\xe3\x1d\xc1\x2b\xee\xf0\xad\xbf\xb4\xf2\xdf\x3f\x50\xf9\x5c\xc0\x4b\x7f\xd9\xd5\x5d\xc7\xf8\xaf\x23\xec\x46\x1b\xb7\xf1\x1f\x09\x6a\x33\x9e\x36\x2c\xcc\x56\x58\x69\x33\x7c\x79\x91\x87\x6b\xe7\x57\x67\x3e\x86\xe1\xab\xdc\x23\x0c\xfd\x17\x49\x0f\x44\x11\x3e\x7f\x3a\x0f\xe2\xea\xf8\x4b\xaa\x94\x3d\x2c\x95\x74\x9c\x3e\x96\x4b\x78\xbe\xd3\xb2\x84\x12\x45\x09\x85\x2e\x11\xb0\x96\x5b\xa9\x04\xbf\xfa\x4d\xbc\x93\xfd\xfd\xf0\xcd\x5d\x9a\xbc\xa7\xf2\x97\xde\xa5\xff\x1f\x00\x00\xff\xff\x9c\xe8\xac\x82\xde\x2b\x00\x00"), }, "/js/js_test.go": &vfsgen۰CompressedFileInfo{ name: "js_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 254327289, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 371, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x7c\xcf\x31\x6f\xfa\x30\x10\x05\xf0\xd9\xf7\x29\x4e\x5e\x48\xfe\xff\xca\xde\x10\x04\x31\x31\xa0\xae\x2d\x3b\x5c\xdc\x4b\xe2\xd4\x24\x91\xcf\x61\x28\xe2\xbb\x57\x41\x55\xa2\x2e\xdd\xfc\x9e\x7e\xf2\xd3\x59\x5b\xf7\x45\x39\xfa\xf0\x81\xad\x80\xb5\xf8\x7f\x0e\x30\x90\xfb\xa4\x9a\xb1\x95\x73\x62\x49\x00\xfe\x3a\xf4\x31\x61\x06\x4a\x4f\x85\xef\x6a\x0d\xa0\x74\xed\x53\x33\x96\xc6\xf5\x57\x5b\xf7\x43\xc3\xb1\x95\xe5\xd1\x8a\x86\x1c\xa0\x1a\x3b\x87\x27\x96\xf4\xda\x25\x8e\x1d\x05\xff\xc5\x07\x1f\xdd\x18\x28\xbe\x71\xc5\x91\x3b\xc7\x59\xc2\x7f\x3f\x1f\x9b\x53\x8e\x77\x50\xd6\xe2\x3b\x33\x36\x29\x0d\x52\x58\xfb\xe7\x92\x17\x19\x59\xec\x76\xbd\x31\xa0\x5a\x31\xc7\xd0\x97\x14\xcc\x81\x42\xc8\x34\xdf\x28\xe8\x17\xbc\x80\xba\x51\xc4\x27\xdd\xae\x37\x84\x7b\xbc\x3f\x76\xbf\xcb\x72\x2a\x57\xb4\x2a\x16\x36\x91\x39\x98\x09\xcc\x78\x77\xc9\x41\x9d\x71\x8f\xcb\xe2\x91\x53\xa6\x67\xae\x73\xf3\xbc\xb9\x22\xc7\x59\x0e\x0f\xf8\x0e\x00\x00\xff\xff\x8a\xd5\xbd\x72\x73\x01\x00\x00"), }, "/nosync": &vfsgen۰DirInfo{ name: "nosync", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 330325311, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 543823400, time.UTC), }, "/nosync/map.go": &vfsgen۰CompressedFileInfo{ name: "map.go", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 330186103, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 543823400, time.UTC), uncompressedSize: 1958, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xac\x55\x4d\x8f\xdb\x46\x0c\x3d\x5b\xbf\x82\x3d\x55\x2e\x14\xe7\x9e\x62\x0f\x05\x7a\x29\xd0\x34\x40\xdb\x5b\x90\x03\x2d\x71\xac\x81\xe7\x43\x1d\x52\xeb\x2a\x8b\xfd\xef\x05\x39\xb2\x57\xde\x24\x45\x0f\xbd\xd9\x23\x0e\xf9\xf8\xde\x23\x67\xc2\xfe\x8c\x27\x82\x94\x79\x49\x7d\xd3\xbc\x7d\x0b\xef\x71\x02\xcf\x80\xd0\xe7\xd4\xcf\xa5\x50\x12\x88\x38\xc1\xc5\xcb\x08\x18\x73\x11\xff\x99\x86\x37\x7d\x4e\x2c\x98\xe4\x8d\xf8\x48\x10\x32\x0e\xdc\x01\x4b\x2e\xc4\x1d\x60\x1a\x60\xa0\x40\x42\x7c\xd0\x9c\xbf\x88\xa6\x64\x74\x04\x2e\x17\x88\x73\x10\x3f\x05\x82\x53\x2e\x79\x16\x9f\x88\x41\x32\xf4\x18\x02\xa0\x02\xf8\x9e\x21\x92\x8c\x79\xe0\x0d\x8a\xb0\x68\x2e\x4d\xf7\xe7\x48\xf0\x99\x4a\xbe\x62\x7d\xc4\xe0\x07\x2b\x4a\x71\x92\x5b\xd8\x4f\xf6\x3d\xce\x2c\x90\xb2\xc0\x91\xa0\xcf\x93\xa7\x01\xd0\x09\x15\x70\xbe\xb0\xc0\xcc\x74\x68\x64\x99\xc8\x82\x59\xca\xdc\x0b\x3c\x35\xbb\xa8\x4d\x7f\xf4\x49\xa8\x38\xec\xe9\xe9\xf9\xd3\xe6\x77\xf3\x6c\x54\xfd\x9a\x71\x80\x42\x32\x97\xc4\x20\x23\x29\x90\x99\x2a\x0b\x03\xf8\x64\x67\xca\x9d\x36\x8d\x70\xa6\xa5\x83\x5c\x20\xf9\x00\xde\x41\xca\x9a\xa3\x5e\xf1\x0c\x53\x21\xa6\x24\x87\x6b\x83\xf9\x0c\x85\x78\x0e\x02\x3e\x0d\xbe\x47\x21\x86\xcb\x48\x32\x52\x59\x2f\x5d\x90\xc1\xe5\x39\x6d\x4b\x1d\x1a\x37\xa7\x1e\xda\x08\x3f\xbc\xc7\x69\x6f\x10\xdb\x33\x2d\xb0\x41\xbf\x87\x76\xad\xfa\x72\xd6\x69\xbd\x63\xce\x61\xaf\xcd\xdb\x67\x3b\x7a\x80\x78\x88\x1f\xcf\xb4\x7c\x6a\x76\xb5\x53\xb8\x7d\x5c\x59\xf8\x43\xdb\x05\x26\xd9\x72\x70\xeb\xf8\x35\x20\x8b\x6e\x8d\x8a\x2f\x40\x58\x6d\xef\xb4\x24\x3c\x3c\x18\x4f\x4f\xcd\x6e\x67\x7f\x21\xe2\x99\xda\x7f\xd1\x64\xdf\xec\x9e\x9b\xdd\x15\x2d\x3c\xd4\xf4\x1b\xa5\x3e\x94\x8a\x74\x2b\x18\xfd\xed\x59\x7c\x3a\x6d\x50\xeb\xb1\x11\xe6\xee\x24\xf9\xa0\xc4\x5f\x3c\x53\x07\x5e\x56\xa3\x9b\xe5\xb6\xe9\x4e\xfe\x91\x56\x82\x6e\x3a\xea\x68\xd0\x70\xd3\x92\x41\x8a\x76\xed\x36\x64\xa9\x90\x35\xac\x03\x87\x81\xed\x73\x75\xd1\xd7\xf4\x5c\x1b\xf9\x26\x89\x2d\xf6\x32\x63\xb8\x97\x77\x85\x71\x93\xd8\xbb\x17\x21\xe1\xdd\x8b\xcc\x3f\xea\x7f\x65\xfd\x5e\x6d\x05\x6d\x04\xff\xcf\xf2\xbc\x2a\x63\xdd\xaf\x9a\xfd\x6c\x0b\xe4\xba\x47\xfe\x8b\xb7\xea\x8d\x2f\xed\xfe\x55\x57\xd5\xc2\x86\xaa\x96\x68\xe3\x21\x76\x9a\x76\xbf\x02\xf8\x1d\xd3\x89\x6c\x2b\x31\x38\x60\xfa\x6b\xa6\x24\x1e\x43\x58\x0c\x02\x61\x3f\x9a\x53\xd4\x05\x15\xd9\x6a\x98\xbb\x79\xd4\xf5\xe7\xc0\xdd\x7c\x62\x2d\x76\x50\x2c\x39\x4b\x9e\x6a\x6b\x5e\xa8\xa0\xf8\x9c\xae\xdb\xab\x56\x1f\x32\xb1\x6d\xaf\x44\x3d\x31\x63\xf1\x61\x81\x3e\x97\x42\x3c\xe5\x34\xe8\xda\xc4\xa4\x27\x89\x3d\x8b\xd6\xe6\x84\x13\x8f\x59\x20\x57\x8b\xd9\x3a\xd5\x84\x7d\x4e\x1a\xc0\xef\x20\x65\xc3\x7d\xf1\x21\xe8\x56\x7c\xf4\xec\x85\x06\x88\x3a\x1d\x32\x62\x82\x9c\x7a\xea\xe0\x38\xcb\xbd\x4f\x8d\xf8\xb4\xe8\x65\x4d\xa8\x2b\xbd\xae\xba\x5c\x56\x99\x86\xbb\x7d\xdd\xad\x4d\x44\x5c\xa0\x90\x0b\xd4\x8b\xdd\x8f\x38\x4d\x3a\x74\x75\xdc\x50\xae\x09\x5d\xc9\xd1\x02\xa6\xec\x93\xc0\x30\x17\x8d\xd2\xfa\x2f\x52\xdc\xd3\xa3\x99\x8f\x04\x1f\xda\xdf\xf6\xf5\x81\xd2\xe0\x34\xc7\x23\x15\xed\x9f\x02\x45\x6d\x79\xbb\x8b\x49\x47\xd4\x6f\x14\xb1\xca\x36\x75\xf5\x5d\xb0\x97\xcf\xde\xb6\x4d\x26\x73\xc1\x6b\xbf\x19\x86\xd6\x81\x9e\x7e\x73\x1a\x6f\x13\xa7\xdd\x9e\x3b\x78\xd4\x69\xab\xea\xab\x23\xd5\x8a\xde\xc1\x77\xae\xd5\x6f\x16\xb8\xdb\x1d\x0b\xe1\xb9\xd9\xa9\x37\xf5\xad\xf9\x27\x00\x00\xff\xff\xe8\x19\x65\x16\xa6\x07\x00\x00"), }, "/nosync/mutex.go": &vfsgen۰CompressedFileInfo{ name: "mutex.go", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 330243103, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 543823400, time.UTC), uncompressedSize: 2073, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xb4\x54\xcb\x6e\xdb\x30\x10\x3c\x4b\x5f\xb1\xc9\xc9\x4e\x62\xa5\xbd\xb6\xf5\xa1\x68\x81\x22\x40\x7a\x09\x50\xe4\x4c\x53\x2b\x99\xb0\x44\x1a\x24\x55\xd5\x4d\xf2\xef\xc5\xf2\x21\xcb\x92\xec\xc4\x2d\xaa\x93\xb0\xe4\xce\xce\xec\x0c\xb8\x65\x7c\xc3\x4a\x04\xa9\xcc\x4e\xf2\x34\xbd\xbd\x85\xef\x8d\xc5\x5f\x20\x0c\x30\xc8\x9b\xba\xde\x41\xbb\x16\x7c\x4d\x05\xa9\xe4\x62\x55\x29\xbe\x11\xb2\xcc\x52\xbb\xdb\x62\xb8\x6c\xac\x6e\xb8\x85\xa7\x34\xa1\x53\xcc\x61\xa5\x54\x95\xbe\x38\xb8\x7b\xc5\x37\x40\x65\x03\x75\x06\x77\xd6\x23\xeb\x46\x2e\xac\xa8\x11\x50\x6b\xa5\x41\x14\x50\xbb\x83\x4a\x23\xcb\x77\xe0\x61\xb2\xb4\x68\x24\x87\x59\x0d\x57\x6e\xce\xdc\x81\xcd\xe6\x34\x88\x3a\xb2\x30\xed\x29\x4d\x92\x2d\x93\x82\xcf\x2e\xbd\x8e\x0f\x50\x77\x22\x0e\x10\x2f\xe7\x69\xf2\x92\x26\x5d\xe7\x12\xac\x6e\x30\x30\xfd\x21\xa9\x0a\x8d\x7c\x2b\x5b\xa9\xec\x51\xa6\x1e\xac\xe3\x7a\x71\x8a\xac\x9f\x08\xaa\x08\x7f\x98\x7b\xfe\x63\xb6\x05\xab\x4c\xa4\xfb\xf0\x78\x96\x53\xf1\xfa\xde\xab\x56\x0b\x8b\xf7\x1e\x9a\x3e\x67\x5a\x42\xeb\xa2\xe2\x17\xd5\x48\x8b\x1a\x84\xb4\x13\x4e\x42\xa1\x34\x10\x00\x0d\x38\xb1\x27\xdd\x8e\x4d\x70\xbd\x54\x10\xb2\x84\x1e\x4c\xd8\xa1\x6e\xe1\x2a\x90\x1d\x18\xae\xdb\x6c\xc8\xee\x62\x09\xef\xe0\xf9\x99\x8e\xfa\x72\xce\x4e\xc4\xa0\xff\x54\x2e\x74\x7b\x9e\xf8\x7d\x4a\x0e\xfa\xa6\xd4\x0e\x43\xf3\xba\xaa\x57\xa2\x33\x92\x75\x10\xa0\x91\xa1\xc1\x94\xff\x69\xe8\xc3\xd0\xd1\x7f\xb5\x6d\x90\x88\xeb\xeb\xa8\xae\xb3\x2d\x57\x48\x5a\x8c\x90\x65\x85\x41\x35\x67\x55\xf5\x11\x84\x05\x77\x48\x16\xb1\xa2\x40\x6e\x41\xd9\x35\x6a\x30\xa2\x6e\x2a\xcb\x24\xaa\xc6\x38\x65\xa8\xcd\xd9\x4e\xc7\x6d\x4e\xae\x61\x60\xf5\x44\xb4\x97\x14\xed\xbf\xb2\x7c\x80\xb4\x58\x84\x95\x3c\x32\x61\xbf\x69\xd5\x6c\xdf\xfa\x66\xec\x1b\xf6\xaf\x06\x1f\xbd\x0b\x9f\xf3\x1c\x58\x9e\x1b\xc8\xb1\xb2\xec\x26\x20\xd6\x6c\x07\x2b\x04\x89\x25\xb3\xe2\x27\xde\x80\x55\x60\xd7\x7d\xcc\xbb\xc2\x15\x22\x60\xe9\x9c\xe8\xae\x13\xaa\x53\x6e\xe2\x02\xdb\x12\xae\xba\xee\x39\x5d\x98\xb9\x89\x44\xc5\xed\xb1\x2d\xb3\x08\x76\xbd\xf4\x6c\xdc\x72\x7b\xf5\x4f\x87\x3b\xf5\x1b\x8d\x43\x7b\xdc\xc2\x7d\xbf\x53\x2f\xf3\xab\x92\x08\x39\x72\x8d\x35\x4a\x6b\x06\x62\x42\xc3\x11\xae\xd4\x3b\x8b\x1c\x89\xf8\xe2\xfd\xbc\x67\x4a\x10\x4a\x49\x9a\x44\x8d\xe1\xfa\x8d\x5a\x1d\x99\x40\xbf\x5d\x9a\x7a\x82\x2f\x96\x53\x8a\xc7\x13\x22\x7c\x54\xfc\x27\x00\x00\xff\xff\xec\x95\x29\x83\x19\x08\x00\x00"), }, "/nosync/once.go": &vfsgen۰CompressedFileInfo{ name: "once.go", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 330299020, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 543823400, time.UTC), uncompressedSize: 1072, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x54\x53\xcb\x92\xda\x40\x0c\x3c\xdb\x5f\xd1\xb5\x27\x9c\xa2\xe0\xbe\xa9\x1c\x52\xc5\x65\x4f\x39\xe4\x0b\xc4\x58\x03\xca\x0e\x1a\x32\x0f\x58\x67\x8b\x7f\x4f\x69\x6c\x08\xb9\xd9\x92\xba\xd5\x6a\x69\xce\xe4\xde\xe9\xc0\xd0\x98\x27\x75\x7d\xbf\xdd\xe2\x87\x3a\x86\x64\x90\x22\xee\x7f\xb1\x2b\x28\x47\x2a\xb8\x4a\x08\x38\x73\xf2\x31\x9d\xc0\x1f\xe4\x4a\x98\x10\x95\x41\xae\x48\xd4\x4d\x5f\xa6\x33\xcf\xe0\x5c\x52\x75\x05\x9f\x7d\x37\x46\xd1\x03\xf6\x31\x06\xfb\x56\xc6\xfc\x7d\x6b\x8d\x76\x11\x8e\x42\xc8\x28\x47\x86\xaf\xda\x78\xe0\x21\x1e\xa4\x23\xa2\x86\xc9\xbe\x77\xd1\xd4\xec\xd9\x98\xac\x9e\x47\xf8\x98\x0c\x64\x24\x5e\x52\x2e\x28\x72\xe2\x25\x2a\x19\xa2\xb9\x90\x09\x89\xbe\x09\xda\xe0\x4d\x11\xcb\x91\x13\xae\x31\x8d\x79\x8d\x83\x5c\x58\x0d\xde\x5d\x28\x21\x5a\xad\x15\x5a\x44\x7c\xfb\xdf\xec\xe2\xca\x0f\xd6\x79\xe9\x79\xaa\xa1\xc8\x39\x70\xeb\x95\xd7\xb3\xbc\xa6\xbc\x29\xb0\xaa\xd9\x23\xd1\x4b\x7c\x67\xf8\xb5\xb1\xf1\x85\xd5\x28\x3d\x8e\x94\x41\x18\xc5\x7b\x4e\xac\x05\x17\x0a\x95\x21\x0a\x26\x77\x6c\x20\x47\xcd\x48\xe0\x3b\x94\xaf\xcf\x53\x3c\xaf\x25\xf1\xef\x2a\x69\x31\xa1\x61\x1f\xd6\x95\x08\xfe\x60\x57\x0b\x6f\xfa\xed\x76\xb1\xb8\xf9\x51\x58\xc7\x05\x22\x2a\x45\x28\xc8\x1f\x9a\x31\xb6\xdb\x53\xcd\x05\x7b\x46\xaa\xfa\xb4\x5a\x33\x0e\x3f\xc5\xfa\x36\x05\x92\xa1\x12\x68\x14\xb7\x86\x14\x9c\x68\x32\x8c\xb2\xe3\x9c\x29\x4d\xd6\xbe\x66\x06\xfd\x13\x14\xa4\x70\xa2\x60\x19\x47\xe7\x52\x13\xdf\xd7\x46\xe9\x50\x4f\xac\x25\x5b\x8e\xfe\x1b\x61\xcf\x8b\x85\x23\xf6\x13\x76\xf1\xb5\xed\xc9\x45\xf5\x72\xd8\x3c\x56\x53\xd5\xad\x06\x7c\x62\x89\xdb\x54\x2b\x2f\x81\x95\x4e\x3c\xe0\x36\x2c\x06\xbc\x99\xf5\x8e\x6a\xe6\x6c\x66\xcc\xf4\xf3\x46\xdb\x10\xf3\x55\x93\x8a\xdb\x3c\x23\x5a\x24\xaf\xdb\x89\x46\xcd\x32\x72\xca\x56\x5e\x22\x8e\x74\x61\x24\x2e\x35\x29\x8f\x5f\xe1\x6b\x1b\x6b\x3e\xe4\xd8\xae\x75\x4e\x1a\xd7\x55\xca\x31\xd6\xf9\x38\xec\x7c\x7d\x6b\x62\xda\xb1\x8a\xf8\x62\x2b\x1d\x60\xd3\x60\x9e\x67\xb0\x37\x63\x07\xb8\x69\x8f\xe5\xb3\xef\xba\x85\xac\xbb\x3d\x12\x46\x64\x99\xa6\x71\xf5\x32\xbf\xdc\xd7\xfb\x6b\xe2\xb1\x75\x15\x85\x7f\x19\x1a\xec\x8e\xf9\x86\x92\x2a\xf7\xdd\xc8\x9e\x13\xee\x06\xf6\xdd\x53\x81\xa7\x90\x79\x89\x28\x3f\x10\xb7\xd5\xd0\x77\x7e\x35\xf4\xb7\xfe\x6f\x00\x00\x00\xff\xff\xf9\x72\xbe\xa9\x30\x04\x00\x00"), }, "/nosync/pool.go": &vfsgen۰CompressedFileInfo{ name: "pool.go", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 330347853, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 543823400, time.UTC), uncompressedSize: 2130, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x64\x55\x3f\x93\xdb\xc6\x0f\xad\x4f\x9f\x02\xbf\xea\x77\xca\xe8\x74\x49\xeb\x99\x2b\x32\x29\x1c\x37\x89\x8b\x74\x1e\x17\x10\x09\x8a\x88\x97\x0b\x06\xc0\x4a\xa2\x3d\xf7\xdd\x33\x58\xfe\x39\x39\xee\x44\xee\xf2\xe1\xe1\xbd\x07\x68\xc4\xe6\x0b\x9e\x09\xb2\xd8\x94\x9b\xdd\xee\xf9\x19\x7e\x85\x8f\x22\x09\xd8\x00\xc1\xc8\x41\x3a\x70\x1a\x46\x51\xd4\x09\xe4\xf4\x37\x35\x6e\xe0\x3d\x3a\x0c\x38\xc1\x89\x80\x73\xcb\x17\x6e\x0b\xa6\x34\x81\xe1\x85\x5a\xc0\xdc\x06\x94\x92\x2b\xd3\x85\xda\xe3\xee\xf9\xb9\x62\xe7\x09\xd8\x69\x00\x73\x51\x6a\x81\x33\x78\x4f\x73\xc1\x05\x4d\x69\x90\x0a\x51\x5c\x06\x74\x6e\x2a\x2c\x3a\x60\x9e\xc0\x79\x20\xb8\xb2\xf7\x52\x3c\xf0\xb2\x38\x77\xdc\xa0\xb3\xe4\x23\x7c\xe8\xde\xd0\x7a\x49\xad\xd5\x47\xc9\x69\x02\xa5\x8e\x94\x72\x43\x70\xed\x29\x8a\xb2\x41\x8f\xe3\x48\xd9\x0e\x71\x2b\xc0\x2a\xb1\x81\xcf\xbd\x07\x8f\x96\x30\x25\x69\xd0\xef\xd8\x6f\xca\x18\x76\x04\x9d\x28\x14\x23\x38\x4d\x30\x94\xe4\x3c\x26\x82\xb3\xa8\x14\xe7\x4c\x06\xc6\xf1\x16\x33\x49\xb1\x34\xad\x18\x81\xf0\x7f\x83\xb1\xe8\x28\x46\x81\xe5\x02\x0d\x36\x3d\xc1\x56\x0f\x4e\xc5\xa1\xe4\x62\xa1\x90\xd3\x60\xb5\x54\x42\x27\x05\xa5\x62\x74\x98\xc5\x4d\x4c\x17\xce\x67\x18\x95\xcc\x8a\x46\xab\xb5\xe3\x33\xea\x29\x4c\x6d\x24\x25\x6a\x5c\xf4\x08\x7f\x85\x5f\x6c\x07\xe0\xb0\xed\x0b\x59\xfc\x20\xb4\x09\x5c\x02\xec\x54\x38\xb5\x40\x5d\xc7\x0d\x53\xf6\xd0\x44\x09\xdb\xa7\xb9\x51\x25\x82\xc4\xe6\x76\x84\xdf\xe5\x4a\x17\xd2\x0a\xc4\x16\x06\x80\x15\x76\x3c\xa5\x59\x10\x4c\x29\xf0\xee\x3e\xd9\xac\x07\x1c\x47\x95\x51\x19\x9d\xaa\x70\xd2\x01\x6e\x92\xba\xc0\x80\x39\x68\x23\x9c\x55\xca\xf8\x7d\xf0\xaa\x0e\x81\x63\x9c\x28\x7b\x24\xad\xc7\x88\x10\x0e\x92\xcf\x11\x38\x18\xc5\x29\x3b\xd7\xbc\x54\x99\xda\xb0\xa6\x91\xdc\x14\x55\xca\x1e\x41\xa5\x91\x72\x4b\xb9\x86\xa7\x49\xd1\xaa\xcd\x34\x96\x41\x38\xce\x7c\x46\x95\x0b\xb7\x14\x23\x70\xc5\xd0\x28\xca\xa8\xf3\xd7\xcd\x25\x96\x0c\x72\x21\xed\x09\x6b\xd4\xb1\x51\x31\x8b\x16\xa6\x15\xf8\xae\x73\xba\xe1\x10\xf1\x90\x0e\xce\x22\xed\x8f\xdd\x2f\x83\xd0\x0d\xbe\x32\x39\xc0\xb5\xe7\xa6\x87\x01\x39\x3b\x72\x36\xc0\x00\x6b\xa7\x8c\xc3\x3c\x14\x4f\xc6\x5f\xa9\x9d\x47\xe9\x3f\x53\x5a\x7c\x2c\x0e\xa7\xd2\x75\xa4\x16\xee\xd3\x72\xcd\x1a\x4c\x64\x50\x72\x4b\x1a\x70\x49\xb0\x85\xc7\x3a\x13\x95\xfa\x5d\x7e\x51\x09\xb0\x71\xbe\x50\x9a\x60\x54\xce\xce\xf9\xbc\xaf\x4a\x5b\xaf\x9c\xbf\x58\x9d\xa5\x40\xf9\xa7\x30\x59\x43\xd9\xd7\x96\xff\x9c\xdb\x11\xef\x49\xa1\xc7\xdc\x1e\x00\xdf\x32\xb1\xf5\x14\xf6\x19\x8c\xa8\x3e\xab\x61\xbd\xa8\x3f\x25\x8e\xf9\x9f\x37\x0d\xb0\x2d\x73\x1e\xc7\x6b\xd0\x42\xbe\x1a\xb6\xaa\xdf\x01\x8c\x63\xb2\x6b\xc5\xc5\x12\x68\x85\xe6\x74\x6e\xc6\x5d\x29\x25\xe0\xca\xb7\x6e\xaf\x20\x8c\xca\x72\x84\x0f\x35\xca\x43\xe8\xb3\x4d\x40\x78\xde\xe3\x85\xc0\x4a\xd3\x6f\x6b\x8f\xc3\xc5\xa1\x1e\xf7\xc4\x0a\x72\xcd\xdf\xa5\xbd\xf6\xef\xd3\xb8\x2c\x21\x73\x2d\x8d\xc3\xb7\xdd\xc3\xac\xfe\xa7\xcf\x9c\x9d\xb4\xc3\x86\xbe\xbd\xee\x1e\xfe\xa0\x2b\x00\x74\x25\x37\x8f\x7b\xb8\x3f\x79\xad\x8b\xf8\x3d\x39\x18\xa5\x5a\x18\x33\xa0\x9e\xd8\xb7\x59\x80\x4e\x65\xd8\xd6\xdd\x61\x59\x9b\x75\xac\xd7\x93\x75\xdd\x1c\xaa\x67\x4a\x5e\x34\xd7\x0b\x2e\xf5\xc3\x08\x11\xe9\x71\x2d\x15\xfb\xb7\xe9\x25\xb6\x92\x0b\xf0\x39\x07\xe3\xb8\x37\x46\x2b\x01\xe1\x4a\xb1\x45\x3c\x4c\xa3\x61\xf4\xba\xd4\xe0\xb7\x0a\x63\x61\x5e\x49\xed\xac\xb9\x59\x19\xa8\x6e\x6c\xa5\x34\x0f\xcb\x89\xfc\x4a\x94\xe1\x82\xa9\x50\x98\x6e\x31\xa0\x2e\xf0\xb1\xf8\xfa\x7f\x11\xd5\x96\xf3\x99\xee\x3c\xc2\xef\x69\x0b\xd6\x87\xae\x72\xbd\xd6\x52\x35\x5e\x57\x36\x5a\x6e\x43\xe6\x99\xe8\x78\x0c\x69\xeb\x7a\xca\x4f\x99\xd3\xa1\x7e\xb4\x28\xb0\x16\x52\xb2\x92\x6a\xf0\x42\x88\xba\x47\xe3\xb3\xe3\x2e\x0c\x81\xc7\x11\x7e\x0a\xf1\xf6\xf1\xe9\xf7\xf6\x84\x9f\xdc\x41\xa2\xfc\x38\x1e\xab\xb1\x7b\x78\x79\x81\x9f\xe3\x7d\x1c\xcc\xd5\xff\xf7\x52\xe9\xc4\xbb\x87\x85\x5e\x3d\x78\xdc\xef\x1e\x1e\x5e\x77\xdb\xcb\xcc\x69\x17\xcf\x37\x78\xf7\x02\x0b\xde\xa7\x7b\xec\xa7\x5f\x3e\xef\x1e\x96\x07\x78\xbb\xf2\xee\x87\x3b\x0b\xe0\x6d\x89\x4f\xd5\xb5\x6d\x0d\x6e\xab\xe1\x61\xe4\x0f\xed\x7d\x2c\xfe\x78\xbb\x6f\x6f\xbf\xf4\x77\x8b\xa6\xd6\x16\x66\xec\x4a\xf4\x8d\x4a\xfd\xff\x6c\x57\x12\x07\xb8\xed\x77\xaf\xbb\x7f\x03\x00\x00\xff\xff\x07\xba\x3e\x57\x52\x08\x00\x00"), diff --git a/compiler/natives/fs_vfsdata.go b/compiler/natives/fs_vfsdata.go index ed3779470..c9be0aded 100644 --- a/compiler/natives/fs_vfsdata.go +++ b/compiler/natives/fs_vfsdata.go @@ -22,887 +22,855 @@ var FS = func() http.FileSystem { fs := vfsgen۰FS{ "/": &vfsgen۰DirInfo{ name: "/", - modTime: time.Date(2022, 4, 4, 3, 16, 55, 230470284, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 29, 32, 371777300, time.UTC), }, "/src": &vfsgen۰DirInfo{ name: "src", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248138952, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 9, 991777300, time.UTC), }, "/src/bufio": &vfsgen۰DirInfo{ name: "bufio", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 241944991, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), }, "/src/bufio/bufio_test.go": &vfsgen۰CompressedFileInfo{ name: "bufio_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 241986366, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), uncompressedSize: 179, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\xca\xb1\x4a\xc6\x30\x10\x00\xe0\xd9\x7b\x8a\x23\x53\xab\xd0\xec\x6e\x4e\x82\xe0\x62\xbb\xcb\x35\xbd\xc6\xb3\x69\x2e\x24\x17\x41\xc4\x77\x97\x82\xfc\xe3\x07\x9f\xf7\x51\x1f\xd7\x2e\x69\xc3\xcf\x06\xde\xe3\xc3\x0d\x50\x28\x1c\x14\x19\xd7\xbe\x8b\xbe\x1b\x37\x03\x90\xb3\x68\x35\x74\x97\x24\x47\x07\xb0\xf7\x1c\x70\xe1\x66\x6f\x4c\xdb\x6c\x55\x72\x7c\x4a\x49\x43\x1b\x0c\xef\xff\xdb\xb4\x8c\xf8\x03\x77\x36\xcd\x87\x94\xc1\xbd\xf2\xa9\xf5\x1b\xe9\x6a\x64\xa2\x19\x83\xf6\x6c\x5c\x1b\x52\x65\xcc\x6a\x48\x5f\x24\x89\xd6\xc4\x28\x19\x9f\xb5\x7c\x70\x7d\x99\x27\x37\xc2\x2f\xfc\x05\x00\x00\xff\xff\x8e\x3f\xd1\x0c\xb3\x00\x00\x00"), }, "/src/bytes": &vfsgen۰DirInfo{ name: "bytes", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242284072, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), }, "/src/bytes/bytes.go": &vfsgen۰CompressedFileInfo{ name: "bytes.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242131573, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), uncompressedSize: 522, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\x90\xcd\x6e\xab\x30\x10\x85\xd7\xf6\x53\x9c\xbb\x03\xdd\x44\x94\x6d\x14\xb2\x68\xd5\x45\x9f\x21\xca\x62\xec\x0c\xc8\x2d\x35\xa9\x01\xa9\x51\xc5\xbb\x57\x36\x06\xe4\x2a\x92\x17\x9e\xbf\x73\xbe\x99\xa2\x68\xba\x83\x1a\x4d\x7b\xc5\x7b\x2f\x8b\x02\xff\xd7\x40\xde\x48\x7f\x50\xc3\x50\xf7\x81\x7b\x29\xeb\xd1\x6a\xbc\xd9\x2b\x7f\x3f\xdf\x07\xce\x7a\x9c\x2f\xbe\xb2\x83\x0e\x1d\x39\x8c\x1d\xf0\x23\x45\xdd\x39\x98\x1d\x14\x0e\x15\x1c\xd9\x86\xd1\xfb\xb4\x30\x35\x14\xaa\x0a\x3a\x44\xc2\xf1\x30\x3a\x0b\x23\x85\x98\xa4\x7f\x31\xb1\x2f\xe5\x14\xcd\x5e\xbf\x46\x6a\x33\xf2\x5a\xb3\x57\x0e\xd5\x75\xad\x9f\x37\x35\x5a\xb6\x19\xe5\xf8\x57\x85\x9f\xca\x83\x6c\x14\xa9\xa9\xed\x39\xa8\x46\x1a\xbd\xd1\xd0\x42\xa3\xfd\xac\x3a\x9b\x4b\x02\x14\x47\x53\xa8\xc1\x8d\xbc\x62\xbd\x74\x9f\x37\x72\x9c\x82\xa5\xcb\x6b\x7a\xe0\x67\x70\x4a\x58\x17\xf1\x72\x76\x13\x3a\x9c\xcc\x03\x45\x3e\xc2\x11\x5a\x25\xbd\xfb\xa5\x79\xae\x9f\xfe\xd6\xcb\x95\x7c\xbb\xd0\xf1\xc1\x81\xbc\xce\xb6\xde\x93\x9c\xe4\x6f\x00\x00\x00\xff\xff\x17\x98\x36\x96\x0a\x02\x00\x00"), }, "/src/bytes/bytes_test.go": &vfsgen۰CompressedFileInfo{ name: "bytes_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242347614, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), uncompressedSize: 229, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x54\xcc\xc1\x4a\xc5\x30\x10\x85\xe1\x75\xe7\x29\x86\x6c\x6c\x55\xda\xbd\x2f\x70\xc1\x6d\xdd\x89\x48\x9a\x1e\xd3\xf1\xa6\x49\xc8\x4c\x91\xab\xf8\xee\x72\x41\x04\x97\xe7\xf0\xf1\x4f\x53\x2c\x0f\xcb\x21\x69\xe5\x77\xa5\x69\xe2\xbb\xbf\x41\xd5\x87\xb3\x8f\xe0\xe5\x62\xd0\x57\x83\x1a\x91\xec\xb5\x34\xe3\x9e\x3a\x77\x3d\x24\x47\x47\x03\xd1\xdb\x91\x03\xaf\x3e\x47\xb4\x72\xe8\x9c\x24\xa0\x37\xbe\xfd\x25\xe3\xd3\xc0\xcf\x2f\xd7\x0c\x7f\x51\x67\xe3\x7c\x96\xda\xbb\xff\x9c\x1b\x92\x40\xb9\x64\xd6\x8b\x06\x9f\xd2\x78\x82\x55\x1f\xa1\xf2\x89\x7b\xfe\xd8\x24\x6c\x7c\x2a\x75\x43\x7b\x9c\x79\x2d\xd0\x7c\x63\x2c\x7b\x4d\xd8\x91\xcd\x0d\x44\x5d\xf5\x59\x42\xef\x8e\xdc\xe0\xc3\xe6\x97\x04\x37\xd0\x37\xfd\x04\x00\x00\xff\xff\xc5\x3e\xa6\xd5\xe5\x00\x00\x00"), }, "/src/crypto": &vfsgen۰DirInfo{ name: "crypto", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242736736, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 10, 1777300, time.UTC), }, "/src/crypto/ed25519": &vfsgen۰DirInfo{ name: "ed25519", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242519862, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), }, "/src/crypto/ed25519/ed25519vectors_test.go": &vfsgen۰CompressedFileInfo{ name: "ed25519vectors_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242482446, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), uncompressedSize: 165, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\xcc\xb1\xaa\xc2\x30\x14\x87\xf1\xf9\x9e\xa7\xf8\x93\xa9\xbd\x42\x83\x42\x07\x5d\x45\x04\xd7\x16\x57\x69\x93\x63\x8d\xb5\x49\x68\x4e\x41\x11\xdf\x5d\x8a\xe2\xf8\xc1\x8f\x4f\xeb\x2e\x6c\xda\xc9\xdd\x2c\xae\x89\xb4\xc6\xe2\x17\x14\x1b\xd3\x37\x1d\x83\xed\xaa\x2c\x97\xeb\x93\x70\x12\x22\x37\xc4\x30\x0a\xd4\x5c\xce\x77\x8a\xe8\x3c\x79\x83\x9a\x93\xec\x3e\xf0\xc8\x46\xc2\x98\x32\xc1\xff\x17\x15\x75\x8e\x27\xfd\x49\x51\xf5\x2e\x66\x8a\xef\x6c\x8a\x6d\x18\x86\xc6\xdb\x2c\x87\x4b\xf0\x41\x90\xa6\x38\x9f\xd9\xa2\x7d\x60\x1f\xe2\x85\xc7\x43\xa5\x72\x7a\xd1\x3b\x00\x00\xff\xff\x97\xf1\xcd\xcf\xa5\x00\x00\x00"), }, "/src/crypto/ed25519/internal": &vfsgen۰DirInfo{ name: "internal", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242555071, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), }, "/src/crypto/ed25519/internal/edwards25519": &vfsgen۰DirInfo{ name: "edwards25519", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242681445, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), }, "/src/crypto/ed25519/internal/edwards25519/field": &vfsgen۰DirInfo{ name: "field", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242622695, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), }, "/src/crypto/ed25519/internal/edwards25519/field/fe_test.go": &vfsgen۰FileInfo{ name: "fe_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242649153, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x66\x69\x65\x6c\x64\x0a\x0a\x69\x6d\x70\x6f\x72\x74\x20\x28\x0a\x09\x22\x74\x65\x73\x74\x69\x6e\x67\x2f\x71\x75\x69\x63\x6b\x22\x0a\x29\x0a\x0a\x76\x61\x72\x20\x71\x75\x69\x63\x6b\x43\x68\x65\x63\x6b\x43\x6f\x6e\x66\x69\x67\x31\x30\x32\x34\x20\x3d\x20\x26\x71\x75\x69\x63\x6b\x2e\x43\x6f\x6e\x66\x69\x67\x7b\x4d\x61\x78\x43\x6f\x75\x6e\x74\x3a\x20\x31\x30\x30\x7d\x0a"), }, "/src/crypto/ed25519/internal/edwards25519/scalar_test.go": &vfsgen۰FileInfo{ name: "scalar_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242708445, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x65\x64\x77\x61\x72\x64\x73\x32\x35\x35\x31\x39\x0a\x0a\x69\x6d\x70\x6f\x72\x74\x20\x28\x0a\x09\x22\x74\x65\x73\x74\x69\x6e\x67\x2f\x71\x75\x69\x63\x6b\x22\x0a\x29\x0a\x0a\x76\x61\x72\x20\x71\x75\x69\x63\x6b\x43\x68\x65\x63\x6b\x43\x6f\x6e\x66\x69\x67\x33\x32\x20\x3d\x20\x26\x71\x75\x69\x63\x6b\x2e\x43\x6f\x6e\x66\x69\x67\x7b\x4d\x61\x78\x43\x6f\x75\x6e\x74\x3a\x20\x31\x30\x30\x7d\x0a"), }, "/src/crypto/internal": &vfsgen۰DirInfo{ name: "internal", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242764653, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 533823400, time.UTC), }, "/src/crypto/internal/subtle": &vfsgen۰DirInfo{ name: "subtle", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242797444, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), }, "/src/crypto/internal/subtle/aliasing.go": &vfsgen۰CompressedFileInfo{ name: "aliasing.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242836486, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 904405800, time.UTC), uncompressedSize: 796, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x90\x4d\x6f\xd4\x3c\x14\x85\xd7\x93\x5f\x71\x34\x7a\xd5\x37\x51\x3b\x31\xdd\x8e\x28\x12\xab\x0a\x36\x5d\x50\x89\x05\x62\xe1\x38\x77\x62\x0f\x1e\xdf\xe8\xfa\x86\xc6\x42\xfc\x77\x94\x69\x3b\xe5\x43\x2d\x62\x97\xab\x3c\xe7\xc3\xc7\x98\x81\xb7\xdd\x14\x62\x8f\x7d\xae\x8c\xc1\xf9\xe9\xa8\x46\xeb\xbe\xd8\x81\x90\xa7\x4e\x23\x55\xcb\xdf\x5b\x1f\x32\x76\x21\x12\xfa\x69\x8c\xc1\x59\xa5\x1e\x21\x43\x3d\x65\x82\xde\x31\x22\x3b\xab\x81\x53\xde\x2e\xfc\x06\x59\x9c\x71\x52\x46\x65\x13\x92\x92\x24\x1b\xcd\xbd\xa1\x79\x02\x06\x8e\x36\x0d\x2d\xcb\x60\xe6\x67\xe9\x2a\x1c\x46\x16\xc5\x7a\x08\xea\xa7\xae\x75\x7c\x30\x03\x8f\x9e\x64\x9f\x9f\x3e\xf6\x79\x7d\x6c\xfa\x36\x95\x9b\xaf\x24\xd1\x8e\x10\x5a\x74\x19\x77\x9e\xd4\x93\x60\x86\x4d\x3d\x0a\xb2\xb7\x42\x38\xd0\x81\xa5\xc0\x2a\x6c\x2a\xa8\x13\x2b\x12\x39\xca\xd9\x4a\x88\x65\xb1\x72\x2c\x42\x79\xe4\xd4\x87\x34\x34\x08\xa9\xa7\xb9\xc5\xad\x3f\x69\x3b\x2a\x9c\xfa\x65\x04\xe4\x18\x1c\x21\x52\x1a\xd4\x2f\xc3\x84\x21\xb1\x50\xdf\x56\xbb\x29\xb9\x9f\x4a\xd5\xf3\x05\x0a\x3e\x7d\xee\x8a\x52\x83\x8e\x39\xe2\x5b\xb5\x32\x06\xd7\xc7\x87\xbc\xff\xb0\xc5\x47\x82\xb3\xe9\x7f\x85\x50\x2c\xe0\x84\x91\x8f\x9b\xc0\x4a\x50\x7f\x20\x0d\xee\x02\x99\x31\x65\x3a\xa9\x1e\xf2\x1f\xb7\xcb\x6d\xb5\x12\xd2\x49\xd2\x52\xa9\x9e\x1b\xbc\xc1\x2b\x9c\x9d\x1d\xaf\xf2\x78\x55\xab\xd5\x3e\xb7\xef\x1e\x34\x37\xdd\x9e\x9c\xd6\x73\xd3\x5e\x93\xd6\xeb\xff\xac\x88\x2d\xeb\x06\x57\x57\xf8\x93\x2a\xbf\x53\x7f\x73\xe3\xdd\x2e\x93\xae\x9b\x05\xa8\x1b\xbc\x7e\xd1\xf4\x57\xf8\xfc\xbe\xf4\xe6\xf2\xb9\x90\xf2\x2f\x21\xf3\x0b\x21\x73\xb3\xb9\xac\xbe\x57\x3f\x02\x00\x00\xff\xff\x94\x62\x55\xfd\x1c\x03\x00\x00"), }, "/src/crypto/rand": &vfsgen۰DirInfo{ name: "rand", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242920527, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 9, 991777300, time.UTC), }, "/src/crypto/rand/rand.go": &vfsgen۰CompressedFileInfo{ name: "rand.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 242952985, time.UTC), - uncompressedSize: 1429, + modTime: time.Date(2022, 4, 19, 10, 35, 9, 991777300, time.UTC), + uncompressedSize: 1143, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x84\x54\x5d\x4f\xe3\x3a\x10\x7d\x8e\x7f\xc5\x90\x7b\x75\x15\x5f\x42\x82\x84\xe0\xa1\xab\x22\xb1\x08\x21\x1e\x96\xdd\x45\xfb\xf1\x80\x78\xb0\x93\x49\xe2\x92\xda\x5d\xdb\x69\xa8\x4a\xfe\xfb\xca\x71\x12\x0a\x74\xb5\x2f\x6d\x9c\x73\xe6\x9c\x99\xf1\x4c\xd2\xb4\x54\x33\xde\x88\x3a\x87\x85\x21\x69\x0a\x87\xd3\x81\xac\x58\xf6\xc8\x4a\x04\xcd\x64\x4e\x88\x58\xae\x94\xb6\x10\x91\x20\x44\xad\x95\x36\x21\x21\x41\x58\x0a\x5b\x35\x3c\xc9\xd4\x32\x2d\xd5\xaa\x42\xbd\x30\x2f\x0f\x0b\x13\x12\x4a\x48\xd1\xc8\x0c\x84\x14\x36\xa2\xb0\x25\xc1\x1d\xb2\x1c\x35\xcc\xe1\x3f\x2d\x4b\x7f\xd8\x76\xa4\x23\xc4\x6e\x56\x08\xd3\x3b\x30\x56\x37\x99\xdd\x76\x83\x40\xa4\xe1\xff\x09\xa4\xe0\xfe\x23\x0e\xf7\x0f\x7c\x63\x91\x42\x24\x41\x48\x1b\x03\x6a\x0d\x7d\x7a\xbd\x15\xd3\x9a\x6d\x60\x36\x87\x85\x49\x6e\xa4\x45\x2d\x59\xfd\x99\x2f\x30\xb3\x11\xa7\xc9\x35\xda\x28\xfc\xb7\xe7\x84\x94\x04\xaa\x28\x0c\xda\xbf\xb0\x3d\x29\xa4\x8e\x10\x51\x42\x82\x34\x05\xae\x55\x6b\x50\x93\x20\xd3\x9b\x95\x55\x83\xc2\x75\xad\x38\xab\x7d\x98\x07\x9c\x89\x28\x60\x60\xcd\x7b\xd6\x77\x99\x63\x21\x24\xe6\x2e\xdd\x51\xe0\x5d\xfc\xd2\x5c\x4e\x0a\xdd\xae\xc8\xc1\x1e\x91\x09\xf5\xb1\x25\xda\x3b\x26\x73\xb5\xfc\xc1\xea\x06\x4d\x48\xf7\x06\x05\x12\xe6\x50\xa3\x8c\x38\x75\x27\x51\x80\x84\x73\x38\x3b\x3d\x3d\x39\xf3\xb8\x2b\xf4\x62\xad\x44\x0e\x5f\x1b\x65\xd9\xd5\x53\x86\x98\x63\x7e\xe5\x7a\x0d\xb6\xd2\xaa\x95\xc0\x37\xf0\xc6\x6d\x8c\x6c\x2b\x94\x4e\xbe\xb4\x15\x08\x03\x4b\xa5\x11\x6c\xc5\xa4\x77\x88\x81\x19\x30\x2b\xcc\x44\x21\x30\x07\x21\xc7\xb0\xca\xda\xd5\x2c\x4d\xdb\xb6\x4d\xda\x93\x44\xe9\x32\xfd\x76\x97\xfe\x44\xee\xbb\x71\xf1\xe5\x26\xfd\xc7\x3f\x1e\x2d\xd1\x56\x2a\x3f\xda\x67\xef\x2a\xeb\x6d\xdc\xa9\x73\x3f\x43\x7b\x2e\x59\x5d\xbf\xef\x4f\x0c\xfd\x44\x0c\xa8\x69\xb8\x1f\x90\x18\xfc\xd5\x8f\xff\x87\x92\xf6\x9d\xd2\x68\x1b\x2d\x41\xc6\x20\x45\x4d\x7a\x83\xce\x8f\xc5\xad\xca\x31\x59\x98\xfe\xba\x34\xfe\x6a\x84\xc6\x3d\xa3\x31\x20\x21\xfd\x30\x91\xfe\x70\xa9\xba\xcf\xf2\xe3\xc6\xa2\x71\x3a\x03\x3b\xb9\x91\x6b\xf5\x88\x2f\x33\x36\xc8\xbe\x90\x7b\xe9\x9d\xd8\xbd\xd7\xff\xaa\x66\xb4\x61\xbc\x1b\x32\x7a\xf8\xf9\xa0\x63\x0b\x76\xeb\xf7\xd0\x9b\x26\x0c\xd8\x71\xec\x57\xd2\x24\xb7\xd8\x8e\x89\xa6\x4e\x1f\xa4\xb2\xc0\xd6\x4c\xd4\x8c\xd7\x08\x42\x82\xad\x84\x01\x94\x6b\xa1\x95\x5c\xa2\xb4\x21\x25\xe3\x07\x80\x33\x9b\x55\x98\x47\x05\xb8\x63\x34\x6e\x3e\x57\xaa\x8e\x41\x23\xcb\x3f\xb1\x27\xf7\x11\xa0\xef\x71\x57\xe3\x90\x4c\x8f\xf1\xa6\x80\xb7\x78\x50\x28\xed\xcb\x68\x0a\x0a\xe7\x93\xe2\x76\xd8\x87\x83\xc2\x21\xf7\xb3\xe1\xfd\x03\x1d\xf6\x62\xd4\x65\xb5\xc1\x69\xc2\x9c\xc1\x1c\x1c\x7f\xa0\xcf\x1e\x7c\x5b\x5e\xf5\xcb\x19\xcd\xe7\x70\x0c\xcf\xcf\xd0\xab\xf7\xeb\xdd\x91\xdf\x01\x00\x00\xff\xff\xd7\x40\x0b\x57\x95\x05\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x84\x53\x4b\x6f\x9c\x3e\x10\x3f\xe3\x4f\x31\x7f\xfe\x3d\xe0\x86\x40\xa5\x28\x39\xa4\x4a\xa5\x34\x8a\xa2\x5c\xd2\x36\xea\xe3\x50\xf5\x60\x60\x00\x6f\xc0\xa6\xe3\x61\xe9\x2a\xda\xef\x5e\x81\x61\xb3\x4d\xb6\xea\x65\xd7\xd6\xef\xe5\x79\x90\xa6\x95\x3d\xcf\x7a\xdd\x14\xb0\x72\x22\x4d\xe1\x68\x77\x11\x9d\xca\x1f\x54\x85\x40\xca\x14\x42\xe8\xb6\xb3\xc4\x10\x89\x20\x44\x22\x4b\x2e\x14\x22\x08\x2b\xcd\x75\x9f\x25\xb9\x6d\xd3\xca\x76\x35\xd2\xca\x3d\x1d\x56\x2e\x14\x52\x08\xde\x74\x08\x84\xaa\x40\x02\xc7\xd4\xe7\xfc\xb8\x15\xa2\xec\x4d\x0e\x11\xc1\x6b\x8f\x48\xb8\x47\x55\x44\x19\x7c\xff\x91\x6d\x18\x25\x44\x06\xb4\xe1\x18\x90\x08\xa6\x40\x09\x8f\x22\x50\x44\x6a\x03\xe7\x17\xb0\x72\xc9\xad\x61\x24\xa3\x9a\x0f\xd9\x0a\x73\x8e\x32\x99\xdc\x20\x47\xe1\xab\x89\x13\x4a\x11\xd8\xb2\x74\xc8\xff\x60\x7b\x52\x28\x47\x42\x24\x85\x08\xd2\x14\x32\xb2\x83\x43\x12\x41\x4e\x9b\x8e\xed\xec\x70\xd3\xd8\x4c\x35\x5e\xe6\x81\x31\x44\x97\x30\xb3\x2e\x26\xd6\x17\x53\x60\xa9\x0d\x16\xe3\x73\x17\x83\x17\xfa\xd6\x5d\xed\x1c\xb6\xfb\x26\xff\x1d\x30\xd9\xa1\x5e\x5b\x21\xdf\x2b\x53\xd8\xf6\xab\x6a\x7a\x74\xa1\x3c\x28\x0a\x0c\x5c\x40\x83\x26\xca\xe4\x78\xd3\x25\x18\x78\x07\x67\xa7\xa7\x27\x67\x1e\x1f\x0b\xbd\x5c\x5b\x5d\xc0\xa7\xde\xb2\xba\xfe\x95\x23\x16\x58\x5c\x8f\xbd\x06\xae\xc9\x0e\x06\xb2\x0d\x3c\x4b\x5b\x94\x43\x8d\x66\xb4\xaf\xb8\x06\xed\xa0\xb5\x84\xc0\xb5\x32\x3e\x21\x06\xe5\xc0\x75\x98\xeb\x52\x63\x01\xda\x2c\xb2\x9a\xb9\x3b\x4f\xd3\x61\x18\x92\xe1\x24\xb1\x54\xa5\x9f\xef\xd3\x6f\x98\xf9\x6e\x5c\x7e\xbc\x4d\xff\xf7\xc7\xe3\x16\xb9\xb6\xc5\xf1\xa1\xf8\xb1\xb2\x29\x66\xbc\x6d\xc7\x9f\xb9\x3d\x57\xaa\x69\x5e\xf6\x27\x86\x69\x23\x66\xd4\xf5\x99\x5f\x90\x18\xfc\xe8\x97\xff\x23\x23\xa7\x4e\x11\x72\x4f\x06\x4c\x0c\x46\x37\x62\x0a\xd8\xfa\xb5\xb8\xb3\x05\x26\x2b\x37\x8d\x8b\xf0\x67\xaf\x09\x0f\xac\xc6\x8c\x84\xf2\xed\x8e\xf4\x97\xa1\xd2\xf4\xca\xf7\x1b\x46\x37\xfa\xcc\xec\xe4\xd6\xac\xed\x03\x3e\xed\xd8\x6c\xfb\x44\x9e\xac\xf7\xb4\x07\xc7\xff\x47\xcd\xc8\x61\xbc\x2f\x59\x32\xfc\x7e\xc8\xa5\x05\xfb\xf5\x7b\xe8\x59\x13\x66\xec\x4d\xec\x3f\x49\x97\xdc\xe1\xb0\x3c\x34\x1d\xfd\xc1\x58\x06\xb5\x56\xba\x51\x59\x83\xa0\x0d\x70\xad\x1d\xa0\x59\x6b\xb2\xa6\x45\xc3\xa1\x14\x5b\xf1\x3b\x00\x00\xff\xff\x89\x47\xa9\x6f\x77\x04\x00\x00"), }, - "/src/crypto/x509": &vfsgen۰DirInfo{ - name: "x509", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243141900, time.UTC), + "/src/crypto/tls": &vfsgen۰DirInfo{ + name: "tls", + modTime: time.Date(2022, 4, 19, 10, 35, 10, 1777300, time.UTC), }, - "/src/crypto/x509/x509.go": &vfsgen۰CompressedFileInfo{ - name: "x509.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243070317, time.UTC), - uncompressedSize: 191, + "/src/crypto/tls/handshake_test.go": &vfsgen۰CompressedFileInfo{ + name: "handshake_test.go", + modTime: time.Date(2022, 4, 19, 10, 35, 10, 1777300, time.UTC), + uncompressedSize: 2260, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\x8d\x31\x4e\xc4\x30\x10\x45\x6b\xe6\x14\x5f\xae\x12\x40\x98\x86\x82\xb4\x14\x48\x14\x08\x91\x13\x38\xc9\x10\x0c\x8e\xc7\x1a\x4f\x80\x08\xed\xdd\x57\x1b\x69\xb7\xfc\x5f\x4f\xef\x79\x3f\x4b\x37\xac\x31\x4d\xf8\xaa\xe4\x3d\x6e\x2e\x83\x4a\x18\xbf\xc3\xcc\xf8\x7b\xb8\x7f\x24\x8a\x4b\x11\x35\x38\x56\x15\xad\x8e\xe8\x63\xcd\x23\x92\x84\xa9\xdf\xaa\xf1\xf2\x2e\x62\xb5\x69\xd1\x5c\x3f\xb1\xda\x9b\x48\xba\xc5\xce\xb6\xf8\xa7\x2b\x65\x5b\x35\x23\xc7\xf3\x5b\xef\x5e\xf9\xb7\x71\xa3\x6e\xc5\xc4\x9f\x12\x1d\xea\x2e\x82\x8a\x18\x8a\x48\x42\xac\xc8\x62\x08\x3f\x21\xa6\x30\x24\x46\xcc\x78\x96\xf2\xc9\xfa\xd2\xbb\x96\x0e\x74\x0c\x00\x00\xff\xff\x97\x0a\x66\xa5\xbf\x00\x00\x00"), - }, - "/src/crypto/x509/x509_test.go": &vfsgen۰CompressedFileInfo{ - name: "x509_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243177775, time.UTC), - uncompressedSize: 471, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x90\x41\x4b\x87\x40\x10\xc5\xcf\xcd\xa7\x18\xf6\xf4\xb7\xc0\xed\xd2\xa1\xae\xd6\x21\xe8\x10\x29\xde\x37\x1d\x65\x53\x77\x96\x9d\x31\x92\xe8\xbb\x87\x16\x05\x75\x11\x8f\x8f\x79\xbf\x1f\x8f\xb1\xb6\xe7\x9b\xe7\xd9\x8f\x2d\xbe\x08\x58\x8b\x17\x3f\x01\xa2\x6b\x06\xd7\x13\xbe\x5d\x5d\x5e\x03\xf8\x29\x72\x52\x34\x4a\xa2\x3e\xf4\x06\xa0\x9b\x43\x83\x15\x89\x96\x8b\x28\x4d\x05\x25\x7d\x64\x1e\x4f\x8a\xe7\xdf\xa5\xbc\xca\xf0\x1d\xce\x34\x2f\x07\x1f\x4f\x26\x30\xca\x56\xc5\xc4\xac\x62\x32\xf8\xf8\x67\x79\x5a\x2f\x47\x15\x0f\xec\xda\xdf\x31\xb2\xc6\x82\x47\x0e\x25\x45\x97\x9c\x52\x7b\xeb\xd3\x61\xf9\x5d\x78\xad\xdd\x71\xfc\x6b\x57\x4d\xc9\x77\xcb\x0e\xc7\x1f\xfa\x7e\xfb\xbe\xec\x05\x3f\x03\x00\x00\xff\xff\xbf\x97\x27\xe5\xd7\x01\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xdc\x54\x51\x6b\xe4\x36\x10\x7e\x96\x7e\xc5\xd4\x50\x90\xcb\xd6\x26\x85\xd2\x76\xe9\x3e\xa4\x4b\x9b\xf4\xa1\xb4\x74\x53\xf2\x58\xb4\xf2\xd8\xd6\x59\x96\x8c\x34\xde\xdd\x10\xf2\xdf\x0f\xc9\xce\x6e\x12\xc8\xb1\x77\x07\x47\xb8\x17\x63\xec\xd1\x7c\xf3\x7d\x9f\xe6\x2b\xcb\xc6\x2d\xb7\xa3\x36\x15\xbc\x0b\x9c\x0f\x52\x75\xb2\x41\x20\x13\x38\xd7\xfd\xe0\x3c\x81\xe0\x2c\x53\xce\x12\x1e\x28\xe3\x2c\xf3\xa3\x25\xdd\x63\x7c\x25\x0c\xa4\x6d\x93\xf1\x9c\xf3\xb2\x84\x8d\xec\x11\x64\x80\x71\x08\xe4\x51\xf6\x0b\xc0\x83\xc2\x81\x60\x8f\xa0\x5a\x54\x1d\xd4\xce\xc3\xd5\xdf\x97\xff\xae\xaf\x57\xa8\x7a\x19\x94\xd7\x03\x81\xb6\x81\x50\x56\xe0\x6a\xd8\xcb\xd0\x17\xb1\xd7\x4d\xab\x03\xb8\x1d\x7a\xaf\x2b\x04\x25\x2d\x6c\x11\x3c\xf6\x6e\x87\x15\xc8\x9a\xd0\x43\x4b\x34\x84\x65\x59\x36\x9a\xda\x71\x5b\x28\xd7\x97\x8d\x33\xd2\x36\x65\xe3\xca\x61\x34\xa6\xfc\xf1\xe2\xe7\x1f\x7e\x8a\xdd\x74\x00\xb9\x93\xda\xc8\xad\x41\xd0\x16\xa8\xc5\xe3\x94\x20\x8c\xee\xd0\xdc\xc5\xef\x57\x0e\x2e\x8a\x8b\x5f\xf2\x82\xd7\xa3\x55\x70\x83\x81\x36\xe8\x77\xe8\xaf\xa5\xad\x42\x2b\x3b\x5c\x4f\x42\xac\xa5\x55\x68\x8c\x24\xed\xac\x20\xf8\x6e\x56\xa2\xb8\xc9\xe1\x9e\x33\xb5\x80\x00\xcb\x15\x18\xa7\xa4\xf9\x47\x0f\x28\x28\xe7\x4c\xd1\x61\x11\x99\x28\x34\xf1\xe7\x2c\x69\x71\xab\xa9\x9d\xda\x89\xc7\x4f\xbf\x49\xd5\x35\xde\x8d\xb6\x12\x79\xce\xd9\x68\xb7\xc6\xa9\x6e\x6d\x34\x5a\x8a\x47\x7b\xd9\xa1\x50\xad\xb4\x10\xc8\x8f\x8a\xee\x1f\x72\xce\x2a\xac\xd1\x83\x32\x2e\xa0\x78\x76\x22\xe7\xac\x71\x10\x09\x89\x34\x1d\x9b\x66\x10\x39\x67\xec\xd7\xef\x9f\x95\x72\xc6\xfe\x87\x15\xa8\x62\x9d\xda\xe4\x9c\x3d\xc4\x87\x72\xd6\x46\xdc\x49\x0b\x11\x16\x10\xf9\xae\x9d\xad\x75\x93\x73\x56\x96\xf0\xa7\xd5\xa4\x25\x61\x80\x90\x6a\x20\x44\xdb\xda\x47\xd5\x16\xb0\x6f\xb5\x6a\x61\xaf\x8d\x81\x84\x07\xf1\x16\x19\x90\xa0\x26\x56\x2d\x1a\xe3\xa2\x4f\x1e\x65\x95\x5a\x8e\xd6\x60\x08\xc9\x2a\xf5\x44\x6d\xd8\x3b\xdf\x85\x82\x33\xf4\x7e\x96\xd1\x16\x2f\xed\x11\x8a\x0e\x39\x67\xba\x86\x58\xb5\x5a\x81\xd5\x26\x51\xa7\xe2\x0f\x49\xd2\x88\x6c\xa2\x72\x9a\x10\x2a\x5d\x81\x75\x14\x0f\x38\x0f\xfb\x16\xa7\x5b\x32\x5b\x12\x2f\xe6\x3c\x06\x56\x59\xd4\xe5\xd8\xfd\x9b\x93\x95\xeb\xb9\x60\x86\xfa\x3d\xb6\xaa\x45\xf6\x9f\xc5\xc3\x80\x8a\xb0\x7a\x54\xe7\x04\x9b\xe0\x96\xf0\xed\x2e\x5b\xc4\xf7\x63\xe7\x79\xcb\x8a\x69\x5b\x22\x85\xec\xb4\x31\xd9\x0c\xb0\xe9\xf4\x20\xb2\xa4\x40\x32\x0c\x2a\x87\xe1\x09\x0b\x19\xe0\x88\x9c\x18\x29\x69\xe2\x78\xfd\x68\x48\x0f\x06\x21\x42\x04\x70\x16\x6e\x2f\x37\x7f\xcd\xb4\x92\x62\x70\x6a\x2a\x5e\x11\x32\xb1\x3b\x0a\x19\xeb\x51\x4d\x06\xc9\x69\x86\x74\x15\xab\x73\xa4\x7c\xf8\x7a\xe3\x63\xda\xab\xb7\x10\x1f\xb3\x51\x1f\x11\x1f\xd3\x89\xb3\xe2\x63\x2a\x9d\xe3\x23\xbc\x8c\x0f\xa3\x23\xec\x24\x85\x50\x1f\x4a\x8f\x39\x0d\xce\x4c\x8f\x74\xab\x5e\xcb\x8f\xed\x5d\xfa\x3f\x6d\xdc\xe2\xec\x38\x31\xfa\x13\xd2\x64\x8e\xe6\x2f\x9d\x26\xea\x25\xec\x9b\x4d\x13\xa3\xcf\x0a\x93\x59\xc7\xcf\x0c\x93\xf7\x01\x00\x00\xff\xff\x7f\x8f\x5a\x67\xd4\x08\x00\x00"), }, "/src/database": &vfsgen۰DirInfo{ name: "database", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 320368029, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 533823400, time.UTC), }, "/src/database/sql": &vfsgen۰DirInfo{ name: "sql", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 320394946, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 533823400, time.UTC), }, "/src/database/sql/driver": &vfsgen۰DirInfo{ name: "driver", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243251608, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/database/sql/driver/driver_test.go": &vfsgen۰CompressedFileInfo{ name: "driver_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243282899, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 1199, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x53\x4d\x6f\xd4\x30\x10\x3d\x93\x5f\x31\x9a\x03\x38\x60\xad\x93\x0a\x55\x22\x12\x17\xa8\xb8\x96\xc3\xde\xda\x1e\x9c\xc4\xa9\x0c\xc6\x0e\xfe\x48\xa9\x56\xfb\xdf\x91\xe3\x4d\x91\xb6\xde\xdd\x70\x89\x27\xf3\x66\xde\x3c\x79\x9e\x19\x7b\x34\x4d\x1b\xa4\xea\xe1\x87\x2b\x18\x83\x0f\x2f\x3f\xc5\xc8\xbb\x9f\xfc\x51\x40\x6f\xe5\x24\x6c\x51\x4c\xdc\xc2\xc4\x55\x10\x5f\x8d\x9e\x84\xf5\xc2\x6e\x85\xf3\x0e\x3e\xc3\xdd\xc3\xeb\xfc\xae\x78\xb3\xfb\x62\x8c\xa2\x80\xde\x06\x81\x14\xe2\x41\x01\x71\x4f\xff\x41\xdb\x93\xd0\xdd\x43\xfb\xec\x05\x41\x8f\x65\x16\x4f\xa9\x1c\x67\x9d\x27\xac\xb3\x59\xa9\xfd\xf5\x47\x52\xe7\x67\x04\xa9\x7d\x7d\x7d\x0a\xc5\x81\x2b\x17\xd5\xcf\xe7\x11\x78\xc8\xe5\x20\xac\x4e\xf4\x54\xf9\x74\x92\x58\x95\x79\xf4\xa0\xf1\x35\xdc\x35\xb0\xf4\x37\x80\x83\x31\x48\x41\x58\xdb\x00\xba\xdf\x8a\xa5\xa5\x36\xd0\x99\xa0\x7a\xfd\xce\x43\x97\x96\x07\xf7\xb1\xf4\x1e\xe3\x54\x03\xfe\x79\x14\xd0\x1a\xa3\x32\x94\x57\xab\xe8\xae\xb2\x44\x37\x62\xe0\x41\xf9\xef\xdc\xf2\x5f\xc2\x0b\xfb\xe2\x1c\x0a\xda\x3c\x1d\x3e\x78\xb1\x96\xbc\x9f\xef\xa6\x24\x5a\xaa\x92\x82\x96\x6a\x4d\xd7\x5b\xae\xdd\x53\x0c\x96\x73\x45\xcb\xb1\x2a\xc6\xce\x95\x4b\xf2\xa9\x5c\xf6\x16\xa3\xd8\x03\x8c\xc1\xf6\xf6\xe6\xb6\x81\x6f\xf2\xcf\xe6\xfc\xb8\x81\x54\x9b\x68\xba\x41\x19\x3e\xef\x7e\xfe\xbb\x2c\xb3\x25\xd1\xa6\x47\x6e\x3d\x2f\xb5\x75\xbb\x7a\xbf\xbc\xb6\x39\xfc\x5f\xb1\x8e\x20\x8f\x6f\x14\x39\xae\xd1\x28\xd3\xc0\xb4\xab\xa0\x5d\x18\x47\x63\xbd\xe8\x93\x45\x92\x8f\x36\xd2\x51\xe0\xe0\x94\xec\x04\x98\x21\xde\x64\xe4\xdd\x17\x7f\x03\x00\x00\xff\xff\x42\xbc\xbb\x5d\xaf\x04\x00\x00"), }, - "/src/debug": &vfsgen۰DirInfo{ - name: "debug", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 320519946, time.UTC), - }, - "/src/debug/elf": &vfsgen۰DirInfo{ - name: "elf", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243352274, time.UTC), - }, - "/src/debug/elf/elf_test.go": &vfsgen۰FileInfo{ - name: "elf_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243377107, time.UTC), - content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x65\x6c\x66\x0a\x0a\x69\x6d\x70\x6f\x72\x74\x20\x22\x74\x65\x73\x74\x69\x6e\x67\x22\x0a\x0a\x66\x75\x6e\x63\x20\x54\x65\x73\x74\x4e\x6f\x53\x65\x63\x74\x69\x6f\x6e\x4f\x76\x65\x72\x6c\x61\x70\x73\x28\x74\x20\x2a\x74\x65\x73\x74\x69\x6e\x67\x2e\x54\x29\x20\x7b\x0a\x09\x74\x2e\x53\x6b\x69\x70\x28\x22\x6e\x6f\x74\x20\x36\x6c\x22\x29\x0a\x7d\x0a"), - }, "/src/encoding": &vfsgen۰DirInfo{ name: "encoding", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 320741155, time.UTC), + modTime: time.Date(2022, 3, 20, 13, 34, 22, 184405800, time.UTC), }, "/src/encoding/gob": &vfsgen۰DirInfo{ name: "gob", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243460440, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/encoding/gob/gob_test.go": &vfsgen۰CompressedFileInfo{ name: "gob_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243499648, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 2608, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x8c\x56\x51\x6f\xdb\x3e\x0e\x7f\xb6\x3e\x05\x67\xdc\x0a\xa7\xe7\x39\x95\x93\xae\x9d\x81\x3e\xac\x5b\x77\xd8\x43\x3b\x60\x33\x70\xdb\x8a\x62\x70\x6c\x26\xd1\xea\x48\x3e\x49\x6e\x1a\x04\xf9\xee\x07\x4a\x76\x9c\xae\xff\x0d\x2b\xd0\x56\xa4\x7e\xfc\x91\xa2\x48\xca\xe3\xf1\x42\x65\xb3\x56\xd4\x15\xfc\x34\x6c\x3c\x86\x7f\xef\x05\xd6\x14\xe5\x7d\xb1\x40\x58\xa8\x19\x63\x62\xd5\x28\x6d\x21\x62\x41\x38\xdb\x58\x34\x21\x0b\x42\x8d\xf3\x1a\x4b\x4b\x4b\x8b\xc6\x0a\xb9\x08\xd9\x88\x11\x4b\xfe\xe9\xfd\xa7\x0c\x72\x34\xf6\x4a\x56\xb9\xba\x92\x15\xa8\x07\xd4\x5a\x54\x08\x65\x21\x61\x86\xa0\x71\xa5\x1e\xb0\x02\x25\x4b\x04\xbb\x44\x98\xb5\x0b\x58\x0b\xbb\x84\xeb\x42\x6b\x98\x0b\xac\x2b\x10\x06\xe6\xe2\x11\xab\x84\xcd\x5b\x59\x3e\x21\x8c\x2c\x1c\x77\x5e\x93\x7c\x04\x5b\x16\xd8\x4d\x83\x90\xa7\x60\xac\x6e\x4b\x4b\x9a\x20\x27\x41\xc8\x05\x0b\x76\xfd\xfe\xe4\x70\xff\x2b\xcc\x6b\x55\xd8\xd7\x53\x16\x04\xdf\xe1\x58\x48\x7b\x80\xe4\x87\xc8\xb7\x31\x5c\xc6\xf0\x0e\xc0\x61\x82\x6b\xe8\x7e\x56\x45\x73\xeb\x7d\xdc\x1d\x0f\x5c\xd7\xe9\xc1\xb6\x90\xf6\x2e\x9f\x90\xd6\x03\x9f\x18\xf5\xf1\x05\xd7\x42\xda\xc6\xea\xc1\xe4\xb8\xf3\x54\xaa\x55\xd3\x53\xd1\xba\xc6\x47\x9e\x9e\xdf\x0d\x4b\x02\x51\xca\x7a\xd0\x6d\xda\xb1\xde\xdd\xa6\x87\x41\x5d\xad\x1a\xbb\xb9\x2e\x9a\x43\xf7\x42\x5a\x18\x8f\xc1\x2a\x28\x97\x58\xde\x83\x5d\x16\x16\xd6\x74\x3b\x25\x8a\x07\x84\x02\xa4\x92\xaf\xa4\xa8\xc9\x28\x61\x41\x70\xd3\x1f\xfc\xf8\x76\x72\x37\x70\x7f\xb1\xda\x74\xea\x74\x38\xd3\x47\x69\x5f\x4f\x8d\xd3\x92\x27\x87\xfc\xfc\xb1\x23\xe8\x0e\xe0\xcd\x7b\xd6\xbd\xe9\xb7\x5e\x73\x7b\x47\xf5\xe6\xee\xb2\xf7\x9c\xa7\xee\x96\x1a\x01\xd9\x05\x4c\x12\x3e\xe5\xa7\x6f\x58\x80\x24\xa5\xc9\x19\x3f\xa7\x94\xd8\xb5\xf2\xf2\x09\x0b\x56\x58\x48\xca\x7b\x76\x01\xd3\x94\x05\x73\x21\x17\xa8\x0d\x89\xa7\x2c\x30\x9c\x16\xa1\x77\xcc\x43\x16\x98\xf4\x40\x91\x86\x2c\x78\x28\xb4\x0b\x96\xc3\x90\x73\xb8\xe8\x85\x88\x27\x27\x31\xf0\xe4\x64\x34\x20\xd3\xbf\x42\x16\x5a\x73\x38\x48\x17\xc9\xb7\x27\x77\x70\x01\x86\x77\x12\x77\x52\xba\xc7\xa7\xbf\xe0\xd3\x0e\x9f\x76\x12\xef\xad\x09\xef\x6e\xe7\x6d\xe7\x64\xa8\x83\xbd\xda\xdb\x1e\x35\xe2\x50\xe7\x18\x8e\xf0\x29\x43\xfa\xcf\x0c\x9d\x77\x42\x0f\x2a\x4f\x60\xd7\x8a\x05\xd6\xa5\xf6\x28\xe7\xae\x81\xb2\xee\xfa\xf8\x59\xcc\x82\xe0\x72\x2f\x9e\x93\xf8\xae\x17\x5f\x9d\x92\x78\x9d\xfd\xbe\xbd\xb6\x61\x23\xc2\x8c\xe2\x8e\x21\x44\x5a\xe1\xce\xd9\xa4\xd9\xaf\x3d\xb7\x9d\x66\xb0\xfd\x9a\x01\x41\xbf\x67\x70\xd4\x15\xc2\x2e\x06\x7e\xe2\x77\xd0\x6f\x74\x25\xb1\xf3\x44\xde\x61\xf6\xbc\x4d\x3b\xd7\x21\xd5\x5c\xd8\x79\x0f\xa9\xe4\x42\x6f\xe8\x5b\x38\x7b\xd2\xc2\xdb\xce\xe9\xe0\x25\x86\x6e\x71\x18\x51\xdf\xe9\xd9\x9f\x3a\x7d\xeb\xca\x30\xf3\x35\x16\xfb\x7f\x5e\xe2\x8e\x61\x3f\x79\x3f\x88\x47\xb0\x4b\x61\xa0\xd1\x6a\x56\xe3\x2a\xf3\x9b\x41\xbe\x69\xf0\x4a\x6b\xa5\x33\xa8\x8c\x4d\xfe\x65\xd0\xd2\x8c\x95\xca\x42\x01\x34\x62\xad\x50\xb2\xc3\x52\x2a\x0b\x0b\x34\x0b\xab\x15\xae\x68\x5a\x43\x34\x5e\x08\xbb\x6c\x67\x49\xa9\x56\xe3\x85\x6a\x96\xa8\x7f\x9a\x61\xd1\x3d\x08\xc9\x42\x65\xd3\xf3\xb3\x6c\x32\x72\x54\x34\x9c\xb2\x3f\x4f\xa7\x2d\x55\x7b\x36\x54\x6c\xec\x8a\x7d\x50\xa4\xee\x78\xfd\x00\xa3\x04\xdf\x63\xf4\x74\x8c\x8d\x08\x71\xd3\xd7\x0d\x1c\x0d\xe3\x69\xcb\x93\xd3\x18\x52\xfa\x33\x49\x4e\x1d\x13\x8d\xab\xac\xc3\xf5\xf1\x6c\x0d\x8f\xc1\x78\x4f\x7e\x70\x65\x6e\xdf\x4f\xae\xed\xd9\x59\x0c\xe7\x6f\x62\xe0\xe9\x64\x4a\xbf\x29\x9f\x4c\x1d\xf6\xf3\xc7\xa1\xb2\xe1\x15\xa4\x13\xe1\x3c\xec\x23\x09\x6f\xd4\x9a\x92\x4c\x6f\x9c\x15\x2b\x0c\x69\xfb\x5b\xf6\x74\xbe\x45\xe1\x12\xeb\x5a\xc5\x60\x0a\x51\x2b\x1d\xba\xd3\xe4\xc3\x69\xf2\x74\x1b\xba\x0b\x15\x06\xf2\xd4\x95\xdb\x8e\x05\x33\xea\x2f\x89\xeb\xc8\x3d\xc9\xc9\x65\x3b\x9f\xa3\x1e\xb1\x00\xb5\xa6\x9d\x1b\x5c\x5f\xc9\x52\x55\xa8\xa3\xd9\x28\xf1\xcb\xc8\xf2\x11\x0b\xc4\x1c\x08\xf3\xe2\x02\x68\xb4\x53\x7b\xda\xc4\xd5\x45\x14\xa2\x83\x65\x61\x4c\x88\x91\x73\x43\xa3\xe0\x87\xe5\x90\x73\x4f\xed\x98\xdf\xe3\x9e\xd9\x2f\xa3\xa3\x1f\xbf\xe5\xfe\x50\xd8\xa2\x8e\xc2\x0a\x9f\x71\x8b\x39\xbc\xe8\xcb\xe6\x3d\x62\x73\xf5\xbf\xb6\xa8\x23\xcb\x63\x70\x74\x87\xb1\xcd\xfb\xe0\x00\x1f\x1b\x2c\x2d\x56\xf0\xf2\x01\x16\xca\xc2\xcb\x87\x30\x86\x63\x32\xf2\x21\xec\x18\x55\xf0\x25\x42\x31\x33\xaa\x6e\x2d\xd6\x1b\x30\xad\xf6\xdf\x19\xdd\xd3\x56\x51\x35\xfa\xe2\x77\x0f\x5c\xe2\x62\xb1\x3c\xd9\x3f\x93\x17\xcf\xb2\x33\x8f\xc2\xee\x29\x04\x83\xd2\x86\xfb\x23\xfc\xf8\x6b\xbb\xde\xbb\xb7\xdd\xb1\xe1\xc3\x86\x7a\xf3\x73\x51\xe2\xf3\x0f\x9b\xf1\x18\xdc\xc1\x85\x5c\x8c\x17\x6a\x06\x65\xab\x35\x4a\x5b\x6f\xa0\x35\x48\x07\x30\x1b\x59\x26\x90\x53\x7d\x90\xa5\x57\x3b\xe5\x7f\x0b\x61\xff\xa3\x55\xdb\x40\x21\x2b\xc7\x54\x16\x92\xda\xdd\xb4\x65\x89\x58\xc1\x7a\x89\xb2\x63\xa0\x64\xb4\x86\x3e\xb6\x02\x9b\x7c\xb9\x17\x4d\x14\xb6\x86\xde\x4d\xbf\x1d\x8e\xd8\x8e\xfd\x3f\x00\x00\xff\xff\x84\x0b\xc7\x44\x30\x0a\x00\x00"), }, "/src/encoding/json": &vfsgen۰DirInfo{ name: "json", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243582231, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/encoding/json/stream_test.go": &vfsgen۰FileInfo{ name: "stream_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243615064, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x6a\x73\x6f\x6e\x0a\x0a\x69\x6d\x70\x6f\x72\x74\x20\x22\x74\x65\x73\x74\x69\x6e\x67\x22\x0a\x0a\x66\x75\x6e\x63\x20\x54\x65\x73\x74\x48\x54\x54\x50\x44\x65\x63\x6f\x64\x69\x6e\x67\x28\x74\x20\x2a\x74\x65\x73\x74\x69\x6e\x67\x2e\x54\x29\x20\x7b\x0a\x09\x74\x2e\x53\x6b\x69\x70\x28\x22\x6e\x65\x74\x77\x6f\x72\x6b\x20\x61\x63\x63\x65\x73\x73\x20\x69\x73\x20\x6e\x6f\x74\x20\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x20\x62\x79\x20\x47\x6f\x70\x68\x65\x72\x4a\x53\x22\x29\x0a\x7d\x0a"), }, "/src/fmt": &vfsgen۰DirInfo{ name: "fmt", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243732272, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/fmt/fmt_test.go": &vfsgen۰FileInfo{ name: "fmt_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243766188, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x66\x6d\x74\x5f\x74\x65\x73\x74\x0a\x0a\x63\x6f\x6e\x73\x74\x20\x69\x6e\x74\x43\x6f\x75\x6e\x74\x20\x3d\x20\x31\x30\x30\x0a"), }, "/src/go": &vfsgen۰DirInfo{ name: "go", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 320949031, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 533823400, time.UTC), }, "/src/go/token": &vfsgen۰DirInfo{ name: "token", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243855312, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/go/token/token_test.go": &vfsgen۰FileInfo{ name: "token_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243885229, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x74\x6f\x6b\x65\x6e\x0a\x0a\x69\x6d\x70\x6f\x72\x74\x20\x28\x0a\x09\x22\x74\x65\x73\x74\x69\x6e\x67\x22\x0a\x29\x0a\x0a\x66\x75\x6e\x63\x20\x54\x65\x73\x74\x46\x69\x6c\x65\x53\x65\x74\x52\x61\x63\x65\x28\x74\x20\x2a\x74\x65\x73\x74\x69\x6e\x67\x2e\x54\x29\x20\x7b\x0a\x09\x74\x2e\x53\x6b\x69\x70\x28\x29\x0a\x7d\x0a"), }, "/src/golang.org": &vfsgen۰DirInfo{ name: "golang.org", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243943937, time.UTC), + modTime: time.Date(2022, 2, 20, 17, 56, 45, 226070400, time.UTC), }, "/src/golang.org/x": &vfsgen۰DirInfo{ name: "x", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243970270, time.UTC), + modTime: time.Date(2022, 2, 20, 17, 56, 45, 226070400, time.UTC), }, "/src/golang.org/x/crypto": &vfsgen۰DirInfo{ name: "crypto", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 243996645, time.UTC), + modTime: time.Date(2022, 2, 20, 17, 56, 45, 226070400, time.UTC), }, "/src/golang.org/x/crypto/internal": &vfsgen۰DirInfo{ name: "internal", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244024686, time.UTC), + modTime: time.Date(2022, 2, 20, 17, 56, 45, 226070400, time.UTC), }, "/src/golang.org/x/crypto/internal/subtle": &vfsgen۰DirInfo{ name: "subtle", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244067103, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/golang.org/x/crypto/internal/subtle/aliasing.go": &vfsgen۰CompressedFileInfo{ name: "aliasing.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244098686, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 796, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x90\x4d\x6f\xd4\x3c\x14\x85\xd7\x93\x5f\x71\x34\x7a\xd5\x37\x51\x3b\x31\xdd\x8e\x28\x12\xab\x0a\x36\x5d\x50\x89\x05\x62\xe1\x38\x77\x62\x0f\x1e\xdf\xe8\xfa\x86\xc6\x42\xfc\x77\x94\x69\x3b\xe5\x43\x2d\x62\x97\xab\x3c\xe7\xc3\xc7\x98\x81\xb7\xdd\x14\x62\x8f\x7d\xae\x8c\xc1\xf9\xe9\xa8\x46\xeb\xbe\xd8\x81\x90\xa7\x4e\x23\x55\xcb\xdf\x5b\x1f\x32\x76\x21\x12\xfa\x69\x8c\xc1\x59\xa5\x1e\x21\x43\x3d\x65\x82\xde\x31\x22\x3b\xab\x81\x53\xde\x2e\xfc\x06\x59\x9c\x71\x52\x46\x65\x13\x92\x92\x24\x1b\xcd\xbd\xa1\x79\x02\x06\x8e\x36\x0d\x2d\xcb\x60\xe6\x67\xe9\x2a\x1c\x46\x16\xc5\x7a\x08\xea\xa7\xae\x75\x7c\x30\x03\x8f\x9e\x64\x9f\x9f\x3e\xf6\x79\x7d\x6c\xfa\x36\x95\x9b\xaf\x24\xd1\x8e\x10\x5a\x74\x19\x77\x9e\xd4\x93\x60\x86\x4d\x3d\x0a\xb2\xb7\x42\x38\xd0\x81\xa5\xc0\x2a\x6c\x2a\xa8\x13\x2b\x12\x39\xca\xd9\x4a\x88\x65\xb1\x72\x2c\x42\x79\xe4\xd4\x87\x34\x34\x08\xa9\xa7\xb9\xc5\xad\x3f\x69\x3b\x2a\x9c\xfa\x65\x04\xe4\x18\x1c\x21\x52\x1a\xd4\x2f\xc3\x84\x21\xb1\x50\xdf\x56\xbb\x29\xb9\x9f\x4a\xd5\xf3\x05\x0a\x3e\x7d\xee\x8a\x52\x83\x8e\x39\xe2\x5b\xb5\x32\x06\xd7\xc7\x87\xbc\xff\xb0\xc5\x47\x82\xb3\xe9\x7f\x85\x50\x2c\xe0\x84\x91\x8f\x9b\xc0\x4a\x50\x7f\x20\x0d\xee\x02\x99\x31\x65\x3a\xa9\x1e\xf2\x1f\xb7\xcb\x6d\xb5\x12\xd2\x49\xd2\x52\xa9\x9e\x1b\xbc\xc1\x2b\x9c\x9d\x1d\xaf\xf2\x78\x55\xab\xd5\x3e\xb7\xef\x1e\x34\x37\xdd\x9e\x9c\xd6\x73\xd3\x5e\x93\xd6\xeb\xff\xac\x88\x2d\xeb\x06\x57\x57\xf8\x93\x2a\xbf\x53\x7f\x73\xe3\xdd\x2e\x93\xae\x9b\x05\xa8\x1b\xbc\x7e\xd1\xf4\x57\xf8\xfc\xbe\xf4\xe6\xf2\xb9\x90\xf2\x2f\x21\xf3\x0b\x21\x73\xb3\xb9\xac\xbe\x57\x3f\x02\x00\x00\xff\xff\x94\x62\x55\xfd\x1c\x03\x00\x00"), }, "/src/hash": &vfsgen۰DirInfo{ name: "hash", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244165644, time.UTC), + modTime: time.Date(2022, 2, 20, 17, 56, 45, 226070400, time.UTC), }, "/src/hash/maphash": &vfsgen۰DirInfo{ name: "maphash", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244196102, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/hash/maphash/maphash.go": &vfsgen۰CompressedFileInfo{ name: "maphash.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244249685, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 3395, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xa4\x57\x51\x6f\xe3\xb8\x11\x7e\xb6\x7e\xc5\xf4\x80\xa0\xd2\xae\x23\xd9\x92\x2f\xc9\xba\xb1\x5f\x0a\x74\x8b\x02\x3d\x14\xc8\x15\x7d\x08\xbc\x07\x4a\x1a\x59\x6c\x28\x92\x20\xa9\x68\xbd\xd9\xfc\xf7\x62\x28\xca\xf6\x66\x93\xe2\x16\xf7\x14\x6b\x86\xc3\x99\xf9\x38\xf3\xcd\x24\xcb\xf6\x6a\x5d\xf6\x5c\xd4\xf0\x5f\x1b\x65\x19\xbc\x3f\x7e\x44\x9a\x55\x0f\x6c\x8f\xd0\x31\xdd\x32\xdb\x46\xa4\xee\x2d\xd6\xc0\x25\x90\xe0\xa9\xc8\xe7\x57\xab\xe7\x74\xaf\xc0\x29\xb0\x88\x35\xb8\x16\xbd\x0a\x9a\x5e\x56\x8e\x2b\x19\x3d\x32\xe3\x25\x0f\x78\x80\xfb\xd5\xae\xe7\xd2\x15\x79\x14\x91\x1e\xb8\xe4\x2e\x4e\xe0\x29\x9a\x35\xca\x00\x87\xf5\x06\x0c\x93\x7b\x3c\x1a\x3c\x45\xb3\x59\xf8\x7d\xcf\x77\xb0\x01\xd3\x4b\xc7\x3b\xfc\xad\x61\xd6\x19\x26\xeb\x38\x89\x66\xcf\xd1\xf1\xcc\x62\x07\x5f\x37\xb0\x84\x2c\x83\x8e\x3d\x20\xd8\xde\x20\xc5\x64\x11\x64\xdf\x95\x68\x2c\x30\x83\xa0\xea\xfa\x64\xb3\x1c\x6d\x4e\x82\xfc\xa5\xa0\x08\x82\xe7\x10\xf6\x6f\xc6\x91\x2a\x2e\xe1\x7e\x57\x1e\x1c\xce\xc7\xdc\x29\xb5\xab\x55\x12\xfe\x52\xec\xbc\x01\x81\x32\x2e\x13\xd8\x6c\x60\xe1\xb3\x31\xe8\x7a\x23\xbd\x81\x8f\x3c\xcb\xe0\xd7\x16\xa7\xbc\x7c\xe2\x68\x40\x49\x71\x80\x41\x99\x07\x0b\x4a\xfa\x0b\xb5\x33\x29\xdc\x71\x59\x21\x7c\x54\xba\x45\xf3\x8f\x3b\xe0\x9d\x16\xd8\xa1\x74\x16\x98\xbf\xa9\xc8\x2f\x4b\xee\x00\xe5\x23\x37\x4a\x92\x66\x0e\x03\xd2\x9b\x81\x1b\x14\x68\x66\x98\x10\x28\x82\x17\x7f\x37\x3d\x98\x50\x03\x1a\x60\xb2\x86\x5e\x6b\x34\x50\xe4\xfe\xb6\x92\x3b\x9b\x46\x33\xa1\xe8\x5d\x3a\xec\xc6\x9c\xe7\x30\x3e\x61\x4c\x29\x24\xc7\xaf\x31\xcf\x24\x89\x66\x2d\x7f\xfb\xfc\x76\x5b\xe4\xaf\xd9\x04\x54\x46\xe4\xe2\x96\x27\xb7\xb7\x45\x0e\x5f\x27\x81\x50\x09\x81\x1f\xb0\x3a\xa6\xcd\xa8\xc0\xa0\x44\xa1\x06\xe0\x16\x58\xcd\xb4\xc3\x1a\x1a\xa3\x3a\x9f\x57\xaf\xad\x33\xc8\xba\x09\xdd\x8c\x22\x2a\xf2\x74\xaf\xe8\x2a\xca\x97\x3d\x2a\x5e\x5b\x0f\x90\x6a\xa0\x97\x96\x35\x38\x87\xa1\xe5\x55\x7b\x82\xb9\x56\x68\xe5\x9f\x1d\xd8\x5e\x6b\x65\x1c\x0c\x28\x84\xb7\x16\xc8\x6a\x0b\xce\xdf\x36\x28\x63\x11\x34\x9a\x46\x99\x8e\xc9\x0a\xd3\x28\xcb\x48\xf1\x8b\x72\x54\x82\xcc\x81\x6b\xb9\xf5\xd0\x73\xb9\x3f\xf6\x07\x05\x2e\x95\x03\x56\xb9\x9e\x09\x71\x18\x1b\xac\x3c\x9c\xdc\x77\x4c\xdb\x39\x58\x7a\x7a\xef\x68\x7c\xcf\xa0\x00\x2e\xad\x43\x56\xcf\xa1\xec\x1d\x70\x07\x1d\x3b\x40\x89\x60\x1d\xa7\x20\xb5\x16\xbc\x62\xa5\x40\xa0\x06\x23\xbb\x81\xbb\x16\xaa\xde\x3a\xd5\x45\xbe\x4b\x34\xb8\x83\x46\x3b\x85\xfb\xf7\x10\x1f\x13\x7b\x65\xb8\x6b\x3b\xf2\xa0\xb9\x19\x83\x1a\x0e\x14\xff\x9a\x0e\xb6\xce\x69\xbb\xce\xb2\x3d\x77\x6d\x5f\xa6\x95\xea\xb2\x81\xc9\xfd\x81\x5f\x36\x7d\xcd\x64\x36\x1e\xcd\x4a\xa1\xca\xac\xc2\x72\xb1\xfc\x50\xfe\x5c\x2c\x30\xaf\x96\xd5\x72\x55\x5f\x2f\xca\xeb\x0f\x65\xc3\xf2\xb2\x5a\x7d\xa8\xf1\xba\xfe\xf0\x73\x59\x2d\xb3\x7f\xaa\x1a\x8d\xbc\xc8\x17\xbf\x28\x79\xf9\x57\x73\xd0\x4e\xed\x0d\xd3\x2d\xaf\x2e\xf2\x05\x85\x76\x91\x2f\xfe\x16\x90\xbb\xc8\x17\x4c\xd6\x17\xf9\xe2\x5f\x16\xfb\x5a\x11\x1b\xa8\x8e\x4c\x7d\xa3\x5f\xe4\x8b\x8f\x28\xd1\x30\xa7\x4c\xaa\xeb\x66\xec\xdc\xa9\x2a\xf5\xf7\x9d\x5b\xe4\x73\xb0\xe1\x57\x32\xb5\x1c\xb5\x2c\x9b\x43\xe9\x2b\x9a\x7f\x2e\xf2\xf8\xd5\xe2\xb7\x9f\x4e\x04\x44\xe5\xcc\x1b\xb0\xdf\xb5\x7c\xb8\x32\x66\xf0\x09\xca\x91\xb6\xe8\x51\xfe\x02\x16\xb6\x70\x43\x7f\x2e\x37\x70\xe3\x2d\x18\x7c\xda\x80\x41\x56\xff\x5b\x32\xc1\xf7\x12\xeb\x22\x8f\x75\x12\xcd\x66\xe5\x6b\x1a\x56\xd7\xb1\x9e\xc3\x8a\x5c\x8f\xe1\x4e\xd1\xd2\x07\x09\x35\x6c\x20\x9c\xba\x19\x5d\xfb\x10\xb7\x1b\x58\xfd\x01\x87\xf6\xd2\xbb\x7c\x06\x14\x16\xfd\x3d\x8e\x80\x0a\xa0\x68\x02\xc3\xcb\xbe\x1e\x65\x93\xe1\x76\xbb\x4c\x48\x0d\xb7\xb7\x70\xf3\xc6\x99\xcb\xd3\x91\xe5\xd5\x14\x89\xf3\xc1\xbf\x96\xe3\x6b\xb2\xd7\x91\x9f\x68\xdc\x3b\x3a\x16\xc2\xe7\xe3\xdb\x8f\x12\xca\x27\xd8\xeb\xfb\xcf\xeb\x5d\x20\x20\x6a\xe7\x35\xd1\x90\x45\x30\xaa\x77\x5c\xa2\x9d\xda\xde\x93\x0e\x61\x45\x03\x52\x70\xe7\x04\x02\xca\x9a\x33\x99\x8e\x1e\xbf\x43\x38\xf8\x4a\x82\xef\x33\x9f\xe7\x20\x06\x22\xf4\x9f\xcb\x5d\x72\x7b\x7b\x73\x2e\xc9\x49\xb2\xbc\x3a\x17\x15\x24\xca\x57\xc7\x4c\x4f\xa0\x1c\x93\x8c\xa7\x9a\x9f\x04\x4f\xd1\xac\x9a\x5e\xef\x6a\x15\xb3\x4f\xe1\xb6\xd3\x98\x4c\x12\x78\x37\xa9\xcb\x97\xea\x7c\xf7\x82\xc7\x8b\x3c\xae\x4e\x1d\x52\xc1\x76\x0b\x45\x3e\xd2\xf8\xbb\x68\x46\x3c\xde\x28\x21\xd4\x70\x4e\x86\x16\x06\x34\x08\x9d\xaa\x79\xc3\xc7\x3d\xe3\xa3\x82\x65\xba\xbc\xa6\x05\x83\x77\xda\xa8\xc7\x6f\x48\x76\x1e\xcd\x88\xf7\x3c\xb9\x22\xe0\x67\x8d\x72\xa4\xf2\x12\xe9\xde\x89\xd0\x89\xac\x5d\xdb\x13\x5b\x56\xaa\xd3\xcc\x71\xa2\x44\x4f\x85\x13\xcd\xa6\xd1\xec\x57\x05\xa4\x45\x69\x19\x15\xc4\x40\xd3\xf8\x91\x1e\xf4\x11\x8d\x1b\x77\x1b\x1a\xa4\x6a\x9c\x2d\x52\x69\xc7\x3b\xfe\x05\xeb\x10\xe3\x15\x3c\xa2\xb1\x94\xc5\xd8\xd8\x52\x0d\x69\x14\xcd\xee\xf0\x6c\x10\x71\x6b\x7b\x7c\x8d\x3a\xf7\x4a\x30\xb9\xcf\xf6\x2a\xf3\x47\x6c\xb6\xba\x2e\x56\x79\xc8\x7a\x9c\x76\xd1\x8c\x81\xee\x0d\xee\xd5\xe4\x88\x12\xf5\x43\x25\x2c\x6a\xd3\xe4\xb2\xad\xea\x45\x0d\x06\x65\x8d\x66\x1a\x3b\xd5\x03\xc4\x4c\xd6\xd1\x4c\xf0\x07\x14\x87\x51\x8c\xd2\x71\x83\xd0\x70\x81\x09\xa8\xd2\x2a\x81\x0e\xd3\xe8\x5d\xe6\x6b\xfd\x3f\x86\x3b\xa4\x01\x55\x2a\x63\xd4\x30\x8d\xd6\x90\x6e\xa8\xe9\xb8\x85\x77\xc4\xcc\xc9\x78\xfc\xb8\x14\x25\x10\x73\xda\x3f\xd0\x18\x65\x7c\x79\x59\xfe\x05\xa9\xc2\xc6\xb1\x3f\x82\xd4\xa6\xf2\x7d\x58\x91\xb6\x5e\xd1\xa6\x65\xdf\xf8\xe3\xb3\x07\x3a\x5c\x29\x7d\x18\x85\xf7\x6d\x2a\xd7\xbb\x40\x68\x6d\x2a\x61\x73\x66\xe0\xf9\x61\x03\xe5\xfd\xc3\x7a\xe7\xd5\x8d\xe8\x6d\x3b\x6d\x87\xa9\x84\xf7\x6f\x5d\x35\x2d\x64\xfc\x0b\xce\x41\x72\x11\xfa\xdc\x27\x73\xe7\x0c\x95\xd1\x8f\x21\x30\x1a\xc5\x16\xac\xff\xf1\xff\x71\xb0\x2f\x70\xb0\xbf\x1f\x07\xfb\x06\x0e\x16\x36\x60\x7f\x0c\x07\xfb\x06\x0e\x2f\xd2\x0b\x77\x85\xcd\x96\x6e\xfb\xd3\xe6\x65\xb0\x9a\x49\x5e\xc5\x3f\x85\x7f\x19\xd6\xa3\x0d\x15\xaa\x66\xc6\x71\xbf\xe1\x34\xbd\x10\x50\xf6\x4d\x83\xe6\xa7\x29\x30\xfa\x4f\xe0\x0e\xd1\xef\xf3\x6d\x6a\x1d\x73\x98\x52\x22\xd3\xaa\x3d\x86\x4b\xb1\x1e\xb5\x49\x14\xb2\x5f\x84\x27\xbb\xeb\xbb\xab\xd5\xef\x7f\x2c\x7f\x3c\x3e\x5f\xd7\xbf\x0d\x23\x00\xf2\x22\x82\x36\x95\xdf\x06\xf1\x1c\xfd\x2f\x00\x00\xff\xff\x9c\x30\xd8\x55\x43\x0d\x00\x00"), }, "/src/internal": &vfsgen۰DirInfo{ name: "internal", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245665301, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 9, 991777300, time.UTC), }, "/src/internal/bytealg": &vfsgen۰DirInfo{ name: "bytealg", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244313393, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), }, "/src/internal/bytealg/bytealg.go": &vfsgen۰CompressedFileInfo{ name: "bytealg.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244341184, time.UTC), - uncompressedSize: 195, + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + uncompressedSize: 430, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x5c\x8b\xb1\x0e\xc2\x20\x18\x84\x67\xfe\xa7\x38\xb7\x36\x36\x61\x6f\xd2\xd1\xa7\x68\x3a\xfc\xe0\x0f\x41\x09\x28\x2d\x83\x31\x7d\x77\x43\x13\x1d\xdc\xee\xbe\xbb\x4f\x6b\x9f\x47\x53\x43\xbc\xe2\xb6\x92\xd6\x38\xff\x0a\x3d\xd8\xde\xd9\x0b\xcc\x6b\x13\x8e\x9e\xc8\xd5\x64\x71\x79\x56\x8e\x1d\x0f\x30\x98\x97\x36\xf5\x30\x39\x47\xbc\x49\x05\x87\x28\xa9\xe3\x1e\xa7\xe9\x48\xa6\x6f\x58\x15\xd9\x6a\x49\x70\x1c\x57\x21\xb5\x93\x72\xb9\x20\x0c\xb0\x18\x27\x14\x4e\x5e\xc0\xc7\x31\x38\xd8\xe6\x9a\x39\x2c\x07\xf8\x53\x9b\xbb\xd3\x17\x6e\xa5\x0a\xed\xf4\x09\x00\x00\xff\xff\xce\x29\x17\xda\xc3\x00\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x8c\x90\x3f\x4f\xc3\x30\x14\xc4\xe7\xf8\x53\x1c\x5b\xa2\x14\x05\xd6\x96\x2c\x48\x0c\xcc\x8c\x55\x07\xdb\x7d\xb6\x1e\x58\x0e\xf8\x8f\x94\x0a\xe5\xbb\x23\x9b\x06\x44\x61\x60\x7b\x3e\xfb\xee\x77\x7e\xc3\x60\xa7\xad\xca\xec\x8e\x78\x8e\x62\x18\xd0\x7f\x1d\xc4\xab\xd4\x2f\xd2\x12\xd4\x29\x91\x74\x56\x08\x93\xbd\xc6\xc3\x5b\x96\xae\x95\x1b\x28\xec\x0f\xe5\xaa\x83\x9a\x26\x87\x77\xd1\xb0\x81\x23\xdf\xca\x0e\x57\x63\x9d\x54\x57\xe4\x26\x50\xca\xc1\xc3\x48\x17\x49\x34\x8b\x68\xcc\x14\xc0\x1b\x68\x6c\x47\x04\xe9\x2d\x41\xd6\x87\x6c\xa0\x8b\x57\xed\xf9\x50\x85\x0b\x6b\xf1\x2e\x62\x15\x53\xc8\x24\x96\x73\xad\x47\x7f\xa4\xf9\xfe\x94\xa8\x5d\x7b\x95\xfc\xcf\x7e\xec\x53\x49\x3b\x53\xe7\x6f\xaa\x5a\xa9\x33\xc6\x11\xfa\x07\x92\x2f\x71\xd7\xb7\xbf\x61\x4f\x29\xb0\xb7\x6d\x44\xac\xc3\xdf\xc8\xc2\xbb\xd9\x81\x71\x57\x97\x12\xbb\x1d\xb8\xef\x57\x74\x2c\x7f\xfd\x27\xfd\x23\x00\x00\xff\xff\xeb\x69\x6e\xcb\xae\x01\x00\x00"), }, "/src/internal/cpu": &vfsgen۰DirInfo{ name: "cpu", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244400226, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/internal/cpu/cpu.go": &vfsgen۰FileInfo{ name: "cpu.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244433267, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x63\x70\x75\x0a\x0a\x63\x6f\x6e\x73\x74\x20\x28\x0a\x09\x43\x61\x63\x68\x65\x4c\x69\x6e\x65\x53\x69\x7a\x65\x20\x20\x20\x20\x3d\x20\x30\x0a\x09\x43\x61\x63\x68\x65\x4c\x69\x6e\x65\x50\x61\x64\x53\x69\x7a\x65\x20\x3d\x20\x30\x0a\x29\x0a\x0a\x66\x75\x6e\x63\x20\x64\x6f\x69\x6e\x69\x74\x28\x29\x20\x7b\x7d\x0a"), }, "/src/internal/fmtsort": &vfsgen۰DirInfo{ name: "fmtsort", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244488934, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/internal/fmtsort/fmtsort_test.go": &vfsgen۰CompressedFileInfo{ name: "fmtsort_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244526142, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 1140, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x84\x53\x4f\x6f\xd3\x4e\x10\x3d\x7b\x3f\xc5\xfc\x2c\xa5\x3f\x1b\x8c\x93\x00\xe2\xe0\x12\x2e\x15\x20\x40\x0a\x95\x5a\xce\xd5\xd6\x1e\xc7\x5b\x3b\xbb\xd6\xee\xc4\x21\xa2\xf9\xee\x68\x36\x9b\x3a\x55\x10\x5c\x92\x9d\x99\x37\x7f\xde\x9b\xf1\x74\xba\x32\xc5\xfd\x46\x75\x15\x3c\x38\x31\x9d\xc2\xcb\x27\x43\xf4\xb2\x6c\xe5\x0a\xa1\x5e\x93\x33\x96\xee\x08\x1d\x09\xa1\xd6\xbd\xb1\x04\x89\x88\xe2\xb5\xa4\x26\x16\x51\x6c\xb1\xee\xb0\x24\x7e\x32\x46\xe9\x55\x2c\x44\x14\x2b\x4d\x68\xb5\xec\xa6\xa1\x40\x2c\x52\xc1\x2d\x34\x62\xe5\x6e\x5a\xd5\x83\x45\xae\xe5\x60\xdb\x20\x35\x68\x81\x1a\x84\x56\xe9\x0a\x2a\x83\x4e\xff\x4f\xb0\x35\xb6\x85\xda\x58\xe0\x7c\xa5\x57\x60\x34\x7c\x36\x7d\x83\xf6\xeb\x4d\x2e\xea\x8d\x2e\xc7\x6a\x49\x0b\x61\x90\xfc\x9b\xd2\x55\x0a\xf7\xc6\x74\xf0\x4b\x44\x6e\xab\xa8\x6c\xa0\xe5\x77\x29\x1d\x3e\xc1\xae\xc9\x66\x4f\xc6\x55\x23\xf5\x68\xfd\xd0\x4e\xd6\x78\x6d\x3c\x87\x42\x44\x91\x45\xda\x58\x0d\x64\x37\x28\xa2\xbd\x38\xda\xb5\xec\x1c\x8a\xbd\xe7\xb5\x34\x84\x05\xb8\x9d\x2e\x61\xab\xa8\xf1\x6c\x8c\x55\x2b\xa5\x65\x07\xb7\xe8\xe8\xca\xac\x7b\x69\x31\x0c\x7e\xe2\x49\x08\x5e\x04\xe5\xf2\xdb\x94\xe7\x64\xce\x77\x19\xb0\x13\x8a\x05\x58\xa9\x57\x08\xe5\x01\xcd\x89\x8e\x41\x1e\xa5\x32\x18\x66\x23\xc6\x67\x70\xcc\x07\x1f\x32\x18\xe6\x7f\x0a\x46\xaa\x3e\x51\x6e\x98\x79\xc9\x92\x34\x0d\xd1\xa8\x34\x9a\x94\x66\xae\x51\xc4\x74\xcf\x32\xe6\xff\xc8\xf0\x7f\x25\xb7\x0e\xdb\xcf\x8f\x5c\x87\x19\x0f\x95\x7a\xc0\x20\x2d\xe0\xcf\x1e\x4b\x02\xa5\xc9\xbb\xc2\xb6\x0e\x55\xfd\xba\x14\x2c\x16\xf0\x50\x1c\xda\x04\xf4\x02\x66\x07\x9b\x75\x97\x4b\x07\xd2\x22\x90\x55\x65\xbb\xcb\x0f\x01\x55\x03\xed\x7a\x1e\x60\x98\xe5\xb7\xbb\x1e\x93\xf4\x12\x12\xda\xf5\x61\x70\x2e\x7a\xdc\xf6\xa7\xce\x48\x7a\xf3\x1a\x1e\x1f\xe1\x2f\x80\x77\x6f\x53\xb8\xb8\x00\xbe\xfa\xfc\x8b\x5b\xca\x25\xeb\xe6\x23\x27\x32\x8c\x03\xbe\x9a\x1f\x3c\xfb\x53\x26\xef\xcf\x89\x04\x5c\x00\x7c\x38\x07\xcc\x9f\x2f\xa1\x84\xff\x16\x47\xd1\x42\x53\xca\x3f\x5a\x6b\x6c\x9d\xc4\x13\x57\x1c\xcf\x24\x99\x0c\xd9\x64\x48\x17\x93\xea\xf2\x08\x9f\x54\x71\x36\xca\xc1\x4f\x5e\x45\x06\x65\x16\x10\xe9\xd8\x8a\x7f\xf6\x7c\xea\x7b\x31\xde\xeb\x77\x5b\xa1\x3d\xbf\x56\xca\xfd\x51\xc4\xad\x36\x5b\x0d\xca\xb9\x0d\x16\xa0\x55\x07\x2d\xee\x9e\x7d\xcb\x71\x2a\xf6\xe2\x77\x00\x00\x00\xff\xff\x0d\x5e\xa5\xc3\x74\x04\x00\x00"), }, "/src/internal/poll": &vfsgen۰DirInfo{ name: "poll", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244696599, time.UTC), - }, - "/src/internal/poll/fd_poll.go": &vfsgen۰CompressedFileInfo{ - name: "fd_poll.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244615641, time.UTC), - uncompressedSize: 1954, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xb4\x54\x5d\x6f\x2a\x37\x10\x7d\x5e\xff\x8a\xd1\x7d\xc9\x2e\x81\xdd\xb4\x7d\x8b\x2e\x0f\x15\xf9\x68\xa4\xaa\x54\x49\xa4\x3c\x20\x1a\x19\x7b\x80\x49\xbc\xb6\x6b\x7b\x43\x11\xca\x7f\xaf\xbc\xbb\x7c\x25\x24\xa1\x95\xee\x13\xe0\x99\x39\x73\xce\x61\x66\x8a\x62\x66\xce\x27\x15\x29\x09\x4f\x9e\x15\x05\x9c\x6e\x7e\x30\xcb\xc5\x33\x9f\x21\x58\xa3\x14\x63\x54\x5a\xe3\x02\x7c\x0b\x54\xe2\x37\x16\x53\xe3\xfb\x05\x7a\x01\xe4\x81\x83\x36\x3d\x63\x81\x4a\xab\xb0\x44\x1d\x78\x20\xa3\xc1\x4c\x81\x6b\xb8\x29\x86\x75\x32\x3a\x98\x1a\x07\xd7\xc3\x5f\x6f\x07\xbf\xf5\x9f\x7c\xce\x8a\x22\x02\xdd\x04\xff\xb6\x90\x3c\x4c\xb8\x47\x09\x46\xc3\x1f\x7c\xf0\x3b\x90\x86\x99\x00\x61\x4a\x4b\x11\x27\xf5\x88\x70\x3d\xbc\x1d\x0e\xef\x0b\xef\x44\x41\x3a\xa0\xd3\x5c\x15\xb1\x4f\x31\x95\x8f\xf1\xf3\x51\x73\xa1\xf2\x99\xc9\xba\xb1\xcb\xa4\x0a\x40\x01\xa4\x41\x0f\xf8\x82\x1a\x14\x7a\x9f\xb3\xb0\xb4\xb8\x95\xe2\x83\xab\x44\x80\x15\x4b\x84\x32\x9e\xf4\x0c\x26\xc6\x28\xf6\xca\xd8\xb4\xd2\x02\x52\x2b\xa1\xb3\x4e\xce\x80\x34\x85\x74\x2a\xa1\x73\x75\x91\x01\x3a\x67\x1c\xac\xc0\x61\xa8\x9c\x06\x4d\x0a\x3e\x28\x8b\xd0\x98\x66\xb0\xfa\x20\x8e\x2f\x24\x42\x8c\x83\x95\xf9\x9a\x47\x1f\x82\xab\xf0\x23\x48\xeb\xd0\x72\x87\x69\x69\x24\x02\xe9\xd0\x05\xf2\x57\xa4\xb0\xa6\xbf\xe1\xc6\x12\x9a\xee\x62\xae\x58\x92\xb4\x74\xd1\xb9\x41\xf3\x9a\x36\x95\x19\x4b\x5e\x59\xb2\x15\xc3\x3e\xef\x7c\x8b\x5c\xa6\x87\x7a\xae\xfd\xb0\x32\x5f\x93\x3c\x71\x27\x6b\x7e\xd9\x17\x82\x1e\x1c\x05\x3c\x1a\x77\xf1\x35\xee\x82\x53\xf8\x51\x2e\x5d\x3a\x77\x81\x5c\x2a\xd2\x78\xf9\x8f\x40\x94\x28\xd9\x27\x34\x8e\xb1\xac\xa6\x7b\x8c\x5f\x31\xf1\x28\xb3\x1a\xc4\x83\x4e\xbd\x81\x1b\x70\x2d\x50\xa1\xdc\xd8\xb5\x3b\xb1\xbb\x7f\x95\x51\x8a\x4f\x54\x9c\xe8\xd8\x74\xdb\x6d\x7f\x60\xeb\x25\xb9\xc3\xb0\xb6\x28\x0d\x10\x6f\x49\x7e\x4f\x25\x7e\xbe\x3d\xeb\xca\x68\xd8\xff\xaf\xae\xdd\xf9\x2f\xe5\x45\x01\x7f\xb6\x22\x1d\xd9\x60\x5c\x1b\xf7\x10\xe6\x08\x72\xfb\x3c\xc1\x38\x26\x55\x3c\x57\x93\x65\x1d\x6c\xae\x5d\x7d\x76\x8c\x83\xbf\x2a\xd2\xc1\x06\x97\x9e\x65\x40\xd3\x98\xe0\x10\xc8\xeb\x93\x00\x46\x63\x0e\xf7\x73\xf2\xf1\xe2\x19\xad\x96\x0d\x4c\x3c\x93\x01\x7d\x20\x3d\xcb\x1b\x19\xfb\x4c\xd2\x0c\x5a\xcc\x38\x9d\x2d\xed\x9d\x36\xac\xa1\x3f\x30\x76\x19\x6f\xb0\x5f\x6a\x91\xbb\x4a\x47\xc9\x8f\x77\x58\x72\xf1\x77\x45\x0e\x5b\xe8\xf7\x81\xd4\x43\x27\x82\xfd\xf2\x73\xd6\xae\x43\xc7\x43\xbf\x0f\x67\xf5\x2e\x88\x39\x9c\xf7\xa1\xe4\xcf\x98\x8a\x39\xd7\xcd\xa4\xb1\x24\xf1\x58\x3e\x70\x0a\xe8\xfc\xc8\x8f\xa1\x0f\xdc\x5a\xd4\x32\xdd\x7b\xee\x82\x98\xc7\xdc\xef\x3d\x31\xaf\x57\xa7\xe3\x7b\xbd\x2f\xd8\x3a\x54\xc8\xfd\x01\xb6\x6d\xe0\x0d\xdb\x8e\x3f\x3d\x65\x2c\x59\x44\x92\x7b\xbd\x6b\x21\x0a\x75\xba\xc8\xb6\x62\x1a\xef\x22\x15\xd6\x0a\x5b\x8c\xce\xc6\xb1\x3c\x7e\xfb\xe9\x7c\xcc\xde\xe9\x5a\x1c\x04\x92\xa8\x30\xe0\x8e\xda\x2e\xf8\x6c\x83\xfb\xbd\x57\x6f\x43\x54\xfa\xc2\xdd\x0e\x2f\x68\x9d\x2c\xb9\x1d\xb5\x2a\xc6\xa3\xf1\x8e\xaf\xff\x06\x00\x00\xff\xff\x9d\xc5\x4e\x9b\xa2\x07\x00\x00"), - }, - "/src/internal/poll/splice_linux.go": &vfsgen۰CompressedFileInfo{ - name: "splice_linux.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244669266, time.UTC), - uncompressedSize: 191, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x5c\x8c\xc1\xaa\xc2\x30\x10\x45\xf7\xf9\x8a\xa1\xab\xf6\x3d\xe8\xd4\x8d\x8b\x82\xff\x20\xb8\x70\x9d\xb4\x69\x3a\x6d\x9a\x09\x33\x89\xdf\x2f\x22\x28\xb8\xbb\xf7\x70\x38\x88\x81\x47\x57\x29\xce\xb0\xa9\x41\x84\xff\xcf\x31\xd9\x4e\xbb\x0d\x1e\x32\xc7\x68\x0c\x1d\x99\xa5\x40\x53\x93\xda\xc5\x37\xe6\x25\xdf\x59\x76\x2b\x5c\xd3\x0c\x0b\x0b\xac\xa5\x64\x1d\x11\x03\x95\xb5\xba\x7e\xe2\x03\x03\xe7\xd5\xcb\xa6\xdf\x41\xaa\xd5\x2b\x9e\x86\xf3\xd0\x9b\x87\x15\x98\x49\xad\x8b\xfe\x96\x23\x4d\x1e\xde\xf9\xfe\xca\x94\x8a\x17\xb8\xfc\x80\xb6\xfd\x73\xcc\xb1\x6b\x13\xc5\xae\x33\xcf\x00\x00\x00\xff\xff\x8c\x9e\x42\xab\xbf\x00\x00\x00"), + modTime: time.Date(2022, 4, 19, 10, 35, 9, 991777300, time.UTC), }, - "/src/internal/poll/splice_linux_test.go": &vfsgen۰CompressedFileInfo{ - name: "splice_linux_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244727890, time.UTC), - uncompressedSize: 211, + "/src/internal/poll/semaphore.go": &vfsgen۰CompressedFileInfo{ + name: "semaphore.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 381777300, time.UTC), + uncompressedSize: 270, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\xce\x31\x4b\xc4\x40\x10\xc5\xf1\xda\xf9\x14\x8f\x54\x89\x4a\xd2\xdb\x0a\x1e\x58\x1d\xe4\x7a\xd9\xdb\x8c\xc9\x78\x7b\x3b\xc3\xee\x2c\xa2\xe2\x77\x97\x80\x5c\xf9\xe7\xfd\x8a\x37\x4d\xab\x3e\x9d\x9b\xa4\x05\x1f\x95\xa6\x09\x0f\xb7\x20\x0b\xf1\x12\x56\x86\x69\x4a\x6f\xce\xd5\x89\xe4\x6a\x5a\x1c\xdd\x5e\x92\xd7\x8e\xe8\xbd\xe5\x88\x13\x57\x9f\x2d\x49\xe4\xa3\x18\x1f\x55\x53\xef\xb8\xff\x47\xe3\x69\xc0\x0f\xdd\xf9\x38\x5f\xc4\xfa\x6e\xb7\x28\x9c\x84\x2b\x9a\x69\x46\x69\xd9\xe5\xca\xe3\xcc\xfe\x22\x39\x24\xf9\xe6\x82\x90\x97\xdb\x70\x78\xee\x87\x47\x7c\x6e\x12\x37\x84\xc2\xc8\xea\xa8\xcd\xf6\x27\xbc\xe0\xfc\x85\x83\xda\xc6\xe5\x75\x1e\xbb\x81\x7e\xe9\x2f\x00\x00\xff\xff\x20\xc1\x5a\x4f\xd3\x00\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x7c\xcc\x41\xaa\xc2\x30\x10\xc6\xf1\xf5\x9b\x53\x0c\x5d\xf5\x29\x18\xd0\x5d\x0f\xe0\x05\x3c\x40\x19\xe3\xb4\x8c\x4d\x26\x35\xe9\x2c\xbc\xbd\x20\x55\x84\x88\xcb\xef\xcf\xc7\xcf\xb9\x31\x75\x67\x93\x70\xc1\x6b\x01\xe7\x70\xfb\x1e\x30\x93\x9f\x68\x64\x9c\x53\x08\x00\x12\xe7\x94\x17\x6c\xe1\xaf\xc7\xc6\xb4\xd0\xc0\x0d\x3a\x87\xc7\x94\x71\x4c\x5d\x10\x9d\x94\x22\xc3\x3f\xc0\x13\x7d\x05\xcc\xa6\x8b\x44\xee\x4f\x1c\xc9\xdf\x4c\x32\x63\xb9\xab\xdf\xd5\x1d\x06\x53\xff\xe5\xdf\x16\xdc\x98\xe8\x72\xd8\xff\xc2\x33\x07\xa6\x52\xe3\x6b\xaf\xf0\xb5\x7f\xe2\x8f\x00\x00\x00\xff\xff\xb3\x21\xa9\xfd\x0e\x01\x00\x00"), }, "/src/internal/reflectlite": &vfsgen۰DirInfo{ name: "reflectlite", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245369470, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/internal/reflectlite/all_test.go": &vfsgen۰CompressedFileInfo{ name: "all_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244819848, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 347, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\x8e\x4f\x4b\xc4\x30\x10\xc5\xcf\x99\x4f\x31\xe4\x94\xe8\x92\x2e\x78\x5b\xe8\x61\x3d\x78\x54\xd0\xe2\x55\x62\x3b\x2d\xe3\x66\xd3\x90\x4c\x0f\x45\xfa\xdd\x25\xab\xc8\x82\x78\x7c\xbc\x3f\xbf\xd7\x34\xd3\x7c\x78\x5f\x38\x0c\xf8\x51\xa0\x69\xf0\xf6\x57\x40\xf2\xfd\xc9\x4f\x84\x99\xc6\x40\xbd\x04\x16\x7a\x13\x2a\x02\xc0\xe7\x34\x67\x41\x03\xca\xa1\xe6\x28\x94\xa3\x0f\xcd\x55\x4e\x83\xd2\x35\xca\x71\xd2\x60\x01\xc6\x25\xf6\xd8\x51\x91\x6e\x4d\x54\x8c\xe0\xcd\x8f\xeb\x3a\x8b\x9f\xa0\xc6\x39\x23\xef\x50\x04\x0f\x2d\x66\x1f\x27\x42\x59\x13\xd5\x46\xa9\xbe\xe2\x11\x19\xdb\x16\xef\xf6\x17\xa9\xfa\x39\x0a\xc7\x85\x40\xa9\x0d\x94\xaa\x6b\xcf\xdf\xf8\x4a\x30\xb2\xab\x73\x0f\x4c\x61\x30\xaf\x3e\x2c\xf4\x34\x1a\x11\xc7\x76\x87\x7b\xeb\x2e\x11\x5b\x71\xae\x58\x50\x1b\x6c\x57\x0f\x1f\xfd\x99\xee\x57\xa1\x72\xcc\x74\x0c\x3c\x45\x1a\xfe\xfe\x15\xf7\x72\xe2\x64\xf4\x3f\x05\x6d\x61\x83\xaf\x00\x00\x00\xff\xff\x62\x02\x9e\xca\x5b\x01\x00\x00"), }, "/src/internal/reflectlite/export_test.go": &vfsgen۰CompressedFileInfo{ name: "export_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244882181, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 738, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x7c\x91\x41\x6f\xd4\x30\x10\x85\xcf\xf1\xaf\x78\xe4\xd0\xda\x65\xf1\x72\x5e\xb1\xdc\x40\x42\xbd\x20\x51\x71\x41\x1c\xd2\xc4\xd9\x0e\x0d\xb6\x65\x8f\x57\x44\xdb\xfd\xef\xc8\x76\x36\x20\x55\xed\xd1\xe3\x99\xef\xbd\x37\xb3\xdd\x1e\xdc\xee\x3e\xd1\x34\xe0\x57\x14\xdb\x2d\xde\xae\x0f\xe1\xbb\xfe\xb1\x3b\x18\x04\x33\x4e\xa6\xe7\x89\xd8\x08\x41\xbf\xbd\x0b\x0c\x29\x9a\x36\xd9\xd8\x8d\xa6\x15\x4a\xe4\xc1\xcf\x64\xa6\x01\xc1\x70\x0a\x36\x82\x1f\x0c\xe8\x9a\x1f\x30\x96\xb2\x1b\x4b\x25\x72\x48\x3d\xe3\xa8\xf3\xc0\x17\x86\xef\x2c\xf5\x11\x34\xe2\x78\x1d\x71\x4b\x76\x00\x45\x58\xc7\xf8\x56\x3b\x5d\x00\xe5\x92\x4b\x9c\x19\xa1\xb3\x07\xa3\xc5\x98\x6c\x5f\xf5\xe4\x11\xdf\xbb\x29\x99\x4d\x6e\xb3\xac\xea\x0b\x27\xd1\x64\xa6\x7e\x24\x3b\x48\x85\x37\xfb\x0b\xef\x24\x9a\xa6\x88\xca\xab\xd2\xf9\x29\x04\x17\x4e\xed\x92\x50\x97\x9a\x2e\xe4\x76\xb3\xce\x9f\x95\x68\xce\xa2\xa9\xd1\x70\xac\xff\x92\x94\x38\x8b\x6a\xe5\xae\x56\x78\xf6\xb8\x9b\xfd\x3f\x33\xf9\x91\x25\x19\xbb\x3d\x78\xf6\x5a\xde\x04\x9e\xbd\x51\xc5\x1e\xeb\xdb\x97\xed\x5d\x2c\xed\x96\xbd\xba\x11\xd6\xd9\x77\xcb\x02\x33\xa4\xad\xae\xb8\xc0\xe5\x4d\xfd\xc9\x8a\x4a\xd6\xc3\xe8\xaf\x8e\x2c\x9b\x20\x59\xa9\xd5\x7d\x15\x2a\xcc\xdc\x2b\x99\x37\xa8\x49\x5e\x3e\xe1\x22\x5a\x2e\xb9\x2c\xff\x19\x06\xff\x19\x78\x96\x9f\x46\x10\x3e\xe0\x3d\x9e\x9e\x40\xf8\xb8\xc7\x64\xac\x64\x5d\x80\x51\xbd\x92\x9a\xec\x60\xfe\x5c\x8e\x7f\xef\x92\x1d\xe2\x12\xdb\xe7\xd4\x57\x17\xc6\x0f\xfa\xb9\x26\x64\x57\x1c\x79\xcd\xb3\xcf\xc1\xfe\x06\x00\x00\xff\xff\x96\x9f\xc9\x37\xe2\x02\x00\x00"), }, "/src/internal/reflectlite/reflect_mirror_test.go": &vfsgen۰CompressedFileInfo{ name: "reflect_mirror_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 244938847, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 155, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\xcb\x31\xae\xc2\x30\x10\x84\xe1\x3a\x73\x8a\x95\x2b\xfb\x3d\x29\xee\xb9\x03\x0d\x44\xa2\x44\xc1\x6c\xcc\x12\x13\x5b\xf6\xa6\x42\xdc\x1d\x21\x10\x15\xe5\x8c\xbe\xdf\xfb\x98\x37\xa7\x55\xd2\x99\xae\x0d\xde\xd3\xff\x77\xa0\x8c\x61\x1e\x23\x53\xe5\x29\x71\xd0\x24\xca\x47\xe5\xa6\x80\xdc\x4a\xae\x4a\x16\x9d\x79\x1d\xb2\x44\x03\x07\x4c\xeb\x12\x68\xe0\xa6\x5b\xa9\x35\xd7\x83\xe8\x65\xf7\x6e\xad\xd2\xdf\x47\xf6\x83\xa3\x3b\x3a\xed\xf7\xb3\x14\x6b\x7e\x72\xe3\xf0\xc0\x33\x00\x00\xff\xff\x94\x63\xd2\x0f\x9b\x00\x00\x00"), }, "/src/internal/reflectlite/reflectlite.go": &vfsgen۰CompressedFileInfo{ name: "reflectlite.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245133513, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 24001, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xdc\x7c\x6d\x73\xdb\x46\x92\xf0\x67\xf2\x57\x8c\x51\x29\x05\xb0\xb0\x90\xa9\xe4\x71\xa5\xb4\x51\xb6\x36\x89\xbd\x8f\x92\xb5\xe5\x8a\x63\xdf\xd5\x69\x55\xde\x11\x30\x20\x47\x04\x07\x58\x60\x40\x9b\x91\xf5\xdf\xaf\xba\xe7\x1d\x00\x25\xd9\xc9\xd6\x5d\x9d\x3f\x58\xe4\x60\xa6\xa7\xdf\xa6\xbb\xa7\xbb\xc1\xa3\xa3\x65\x7d\x72\xd5\xf3\xaa\x20\xd7\xdd\xfc\xe8\x88\x1c\xda\x2f\xf3\x86\xe6\x6b\xba\x64\xa4\x65\x65\xc5\x72\x59\x71\xc9\xe6\x73\xbe\x69\xea\x56\x92\x78\x3e\x8b\x7a\xd1\xd1\x92\x45\xf3\xf9\x2c\x5a\x72\xb9\xea\xaf\xb2\xbc\xde\x1c\x2d\xeb\x66\xc5\xda\xeb\xce\x7d\xb8\xee\xa2\x79\x32\x9f\x6f\x69\x4b\xb8\xe0\x92\xd3\x8a\xff\xc6\x0a\x72\x4a\x4a\x5a\x75\x6c\x3e\x2f\x7b\x91\xe3\x93\x38\x21\x37\xf3\xd9\xd1\x11\xa1\xdb\x9a\x17\xa4\x60\xb4\x20\x79\x5d\x30\xc2\x2a\xbe\xe1\x82\x4a\x5e\x8b\xf9\xac\xef\x58\x41\x4e\x4e\x09\x2c\x8b\x39\xe1\x42\xb2\xb6\xa4\x39\xbb\xb9\x4d\xc8\xcd\xad\x7a\x1e\xb7\x72\xd7\xc0\x88\xfe\xda\x8b\xbc\xde\x6c\x6a\xf1\x6b\x30\xba\x61\x72\x55\x17\xee\x3b\x6d\x5b\xba\x0b\xa7\xe4\x2b\x3a\x58\x04\xdb\x86\x23\x16\x83\x01\x74\xda\x84\x03\x8d\x6c\xc3\x81\xae\xe2\xc3\x45\x9d\x6c\xfb\x5c\x0e\xe0\x0f\xf1\x54\x93\x9e\x73\x56\xe1\xe0\x7c\x16\xb2\x55\xb6\x3d\x9b\xcf\x7a\x2e\xe4\x37\x00\x88\x9c\x12\xf8\x73\x5e\xc6\x38\x14\x3f\x49\x92\x2c\x7e\x8c\x0c\x4a\xc8\xd1\x11\xe9\x98\x24\x65\xdd\x92\x96\xd1\x6a\x7e\xab\xe4\x14\xfb\xeb\xd5\x5c\x23\xc2\x78\x3e\xe3\xc5\x4f\x1d\x3e\xc1\x7f\xa7\x24\x7a\x77\x8d\xdf\x23\x78\xf4\x8b\xd2\x16\xbd\x73\xf4\xae\x75\xdf\xf1\xf9\xcf\x5c\x14\x66\xf1\x29\x89\xd6\xfa\xab\x5a\x2b\x2d\x54\xb5\x56\xe2\x93\x44\xeb\x88\xda\x25\x96\xbb\x06\x29\x4a\xc8\xe3\xeb\x2e\x3b\xbf\xba\x66\xb9\x04\xc5\x69\x99\xec\x5b\x41\xae\xbb\xec\x0c\x24\x22\x68\xa5\x9e\xc1\x82\x24\xfb\x1b\x93\xb1\x41\x3c\x01\x3a\x11\xa4\x87\x1d\xc2\x75\x10\x13\x4d\x37\x40\xe6\x25\x91\xbb\x46\x83\xf0\x08\x4c\xc8\xe9\x29\xec\xf7\x46\x14\xac\xe4\x82\x15\x30\x79\xd6\x4a\x50\xcf\x03\xa5\x82\xf3\xd9\x6c\xd6\xf1\xdf\xd8\x09\x01\x86\x36\xb2\x8d\x0d\xa4\x08\x86\xa3\x04\x90\x8d\x93\x24\x85\x89\xc0\x0c\x35\xf1\x1b\x37\x0d\x06\xc3\x69\x9d\x6c\x4f\x08\x11\xec\xfd\x4b\xba\x61\xe7\x65\x19\xeb\x8f\x4a\x13\x05\xad\x5e\x07\xdb\xc8\x96\x8b\x65\x94\x24\x29\x89\xa2\xd4\x12\x12\xb1\x0f\x70\x92\x19\xc0\xfe\xbe\xae\xab\x38\x51\xd0\x6f\xe7\xb3\xd9\x98\x85\xad\x4c\xb2\xd7\x1e\x07\x11\x4e\x32\x9f\xcd\x00\xdc\xeb\x21\x5f\x52\x32\x09\x01\x54\x75\xa6\x94\xf9\x35\x43\x26\x5d\x77\xd9\xdf\xaa\xfa\x8a\x56\xd9\x0f\xb4\xaa\xe2\xe8\x0b\xfb\x34\xb2\x3b\xf0\x92\xd8\xd1\xec\xef\x4c\x2c\xe5\x2a\x4e\xc8\xa3\x53\xf2\x84\x7c\xfc\xe8\xc8\x11\x74\xe3\xd1\x82\x82\x98\xb5\x32\x93\x65\x45\x97\xe4\xe3\x29\xc1\x0f\x6f\xb4\x1d\x80\x87\x9e\x50\x27\x17\x8f\x57\x03\x8f\x0b\x78\x04\x3c\x9a\xc1\x61\xd0\xea\xf3\x02\xf1\xeb\xc8\xc5\xa5\xc2\x14\x1e\xc3\x91\xe2\x40\xe3\x93\x3f\x13\x4e\xbe\x9d\xa0\xe1\xcf\x84\x1f\x1e\x92\x1b\x38\x83\xcf\xb4\x2c\xf4\xac\x8e\x94\xbc\xed\x64\x86\x68\x6c\x00\x88\x5b\x7d\x26\x0a\xf6\x21\xe6\x09\x3e\x33\x32\x84\x29\xbe\xf0\x37\x8a\xac\x66\x0d\x72\x07\x25\x8d\x22\x9c\xcf\x4b\xf2\xc8\xae\x51\x54\xce\xf2\x5a\x48\x2e\xc0\x64\x18\xca\x66\x03\xb2\x4e\x09\x6d\x1a\x26\x8a\x38\x1c\x4f\x35\x56\x1a\x0e\xf0\xf0\xe4\x3e\xad\xdc\x38\x7e\x5b\x8d\x34\x08\x69\xed\x9e\xcd\x36\x72\xd7\x20\x24\x65\xb7\xca\xd8\x3f\xa5\x1a\x82\xdc\x35\x51\x62\x56\xdc\x26\x56\x2a\x1f\xf2\xba\x17\xa8\x5b\x70\x8c\x16\x4f\xe3\x8a\x89\x01\xde\x49\xf2\xc9\xf2\x79\x23\xd8\x50\x42\x1d\xcb\x6b\x51\xfc\x5b\x44\xf4\x7f\x5b\x42\xbd\x32\x8f\x81\x4b\xc6\x39\xcd\x7a\xf9\x8a\xca\xd5\x27\x98\x36\xc5\x3c\x85\x23\x06\x13\x66\xbb\x0d\x6a\xc1\x09\x21\x46\x0b\xc6\xd2\xd5\x33\x3f\xd8\x99\xea\x93\x1a\x7d\xa7\xa5\x7c\x32\x38\xe1\xa9\xa3\xc2\x43\xff\x05\x6d\x2e\x5a\x79\x49\x4e\x49\x2f\xe1\xd9\xd8\xf8\xf5\xfb\xcc\xe7\x2d\x98\xc4\xee\x3d\x97\xf9\x8a\xb4\x32\x03\xe7\xa8\xed\x4f\x4e\x3b\x46\xfe\x0a\x11\xc9\x09\xda\x7c\x26\x8d\xe7\x8c\x5b\x99\x92\x03\x17\xac\x28\x35\xab\xd8\xe6\x64\xe8\xce\xb4\xa1\xaf\xd8\x26\x32\xf4\x56\x4c\x9c\x90\xb1\x2f\xaa\x98\x08\x7d\x0c\x0a\x0c\x71\xf8\x61\x45\x05\xa2\x50\xf0\x16\x24\xf7\x7d\x2d\x57\x3f\xf2\x76\x68\x42\x3b\x26\x8a\x73\x51\xed\x86\x56\x14\x56\x9d\x92\xd7\x4c\x14\x7a\xd1\xed\x70\x65\xcb\xf2\xed\xfe\x95\xbf\xb0\x7c\xeb\xaf\x1c\x31\xc2\x86\x68\x9f\xc4\x87\x82\xb7\x1e\x1f\x0a\xde\x0e\xc9\x7e\xde\x8b\x1c\xc9\x6e\x68\x4b\x37\x1d\x50\xee\xf4\x0e\x87\x22\xd4\x69\x2e\xf0\xf0\xd3\x35\x8b\x2f\x2e\x55\xc8\x90\x12\x35\xc1\xe9\x5a\x60\x70\x5a\x2a\x96\x8c\x70\xa1\xc9\xe4\xe2\x82\x83\xee\xf8\x38\xeb\xf5\xc6\x90\xb8\xc3\xd3\xb2\xae\xaf\x64\x88\x8d\x1e\x53\xe8\xd4\xea\x78\x0d\xf0\xd1\x53\xee\x44\x08\x56\x2a\x8c\xea\x5e\x8e\x51\x32\x20\xc6\x38\xd5\xbd\xfc\x61\x60\x74\x27\xf7\xf3\x65\xbe\xa5\x2d\xa7\x05\xcf\x87\x32\xb7\xb0\x3e\x9e\x92\x05\xf9\xf6\x5b\xb2\xf8\x7f\xfb\x25\x6f\x43\x71\xed\xae\x77\x0d\x83\x83\x0c\x81\x5b\xaa\x59\xfb\x83\x3e\xdd\x1a\xaf\xa1\x5c\xd2\x60\xd3\x13\x62\x3e\x69\x2b\xc0\xc5\x89\x0a\x46\xb9\xd0\x23\x75\x2f\xd5\x50\xdd\xcb\x81\xc2\x9c\x99\x6b\x00\x6a\x8d\x71\x13\xbe\xa0\xf4\x98\xd6\x1b\x6f\x86\x96\x96\x1e\x32\x56\xfb\x1e\xfd\x31\xeb\x6f\x86\x2e\xa8\x0b\x1d\x90\x99\xa8\x44\xca\xff\x18\x8f\x70\x8f\x27\xb3\x8e\x02\xfd\xc4\x27\x39\x8a\xfd\xe2\x0e\xef\x59\xa1\xcc\xad\xc8\xad\x13\xf9\x44\xc7\xa1\xfd\x86\x31\xfb\x86\x69\x03\x19\xbf\xa0\xcd\xb4\x35\x36\x97\x3d\x84\xb2\x66\xbb\x13\x32\x6d\x83\xd6\x6c\x67\x99\xf3\x40\x53\xe5\x76\x7f\x25\xdb\xe9\xdd\xcd\xcd\xf2\xf3\xc0\xbe\x86\x6b\xe8\x34\x60\x77\x43\xfd\x4c\xd0\x78\x53\x45\xd8\x25\x5c\x57\xc3\xf3\xa0\x86\xd4\x71\xd0\x40\x9f\xdb\x59\xfa\x4c\x78\x77\xdd\x94\xa8\x05\x77\x1e\x8b\x10\x8e\x42\xbb\xc4\x74\x81\x5a\x1b\x1c\x8d\xba\x2c\x3b\x26\x9f\x6d\xae\x54\x78\x66\xbc\x01\x4f\xd0\xf2\x98\x70\xac\xd4\x14\xc2\xb4\x62\x7c\x4d\x08\xa0\x80\xd9\x1a\x87\x69\x0a\x1b\x75\x00\xfd\xcb\xbb\x7f\x08\xf5\xbf\x29\xb5\x2d\x07\x07\x70\xe2\x99\xa4\x4a\xa1\xcb\x7d\x77\xbb\xe0\x3c\xea\x7f\xbe\x20\x4b\xff\x2c\xa6\x23\xc2\x4e\x88\xf7\xe5\xde\x93\xea\x65\x31\x7e\xef\x31\x85\x59\x93\x47\x55\xc9\xd3\x9d\x33\xc5\x63\xa7\x7f\xb7\x73\x0c\xae\x74\x52\xc0\x24\x3c\x62\x95\xb4\xca\x5e\xd5\xb8\x61\x3c\x7d\xad\xcf\xde\xe0\x2c\xb8\x12\xdb\x4c\x41\x48\x24\x31\x9e\xd5\xe4\x2f\x06\x79\xa8\xf9\x9d\x77\x68\x03\x68\xea\x9e\x6c\x00\x82\x76\xdf\xf1\xd4\x5c\xba\xe5\x5d\xd7\xed\xdb\xf9\x1c\x53\x18\x7e\xb0\xaa\x15\x10\x50\xd4\xec\x25\x42\x19\xff\xb9\x0e\x9b\x8d\xb7\x9c\x9b\xcb\x94\xfd\xbe\xa9\xcb\x92\xe8\xa0\xfa\xab\xe3\xf9\xdc\xc6\xc9\xee\xe6\x6b\xd8\x15\x4b\xf2\xd8\xdf\x36\x31\xce\x29\x4e\xec\x64\x2f\x69\x23\x33\x03\xea\x0e\x08\x46\xab\x5f\x3c\x0c\xd2\xc5\x89\xcc\x74\x78\x6f\x3e\x5c\x9a\x04\xd7\x20\x7c\x27\xda\xde\x6c\x68\x73\xa1\x24\x7b\x19\xee\xed\xe1\xa4\x33\x67\xe6\x71\x9c\x84\x68\x7a\xa8\x0c\xef\x08\x6a\x7b\x94\x88\x09\x5d\x3c\x69\xb4\x26\xf9\xf5\x4f\xad\xd1\x27\x11\xcc\x8a\xfe\x39\x37\x71\x8c\x13\x84\x0d\x93\xf4\xc0\x1c\x62\x15\x42\x4c\xc0\x37\xc7\x40\xc5\x7d\xf5\x59\x6a\x76\x4e\x08\x17\xc8\x41\x97\xe6\x72\x1c\xe4\x62\xcf\x9a\xba\x97\x7b\x17\xd5\xbd\xb4\xf4\x81\x4a\x79\xb4\x5d\xed\x24\xeb\xc8\x63\xf8\x13\x4c\xf9\x91\x4a\xea\x4d\xc3\x55\xf0\x4f\xe5\xac\xe6\x33\x49\x97\x24\x18\xb0\x57\xe3\xab\xba\xb6\xd9\x4a\x58\x36\x14\x22\x6c\x75\xf9\xd8\xec\x61\xe5\x27\x70\x72\x82\xff\xc7\x09\x89\x3b\x0d\x39\x21\x37\x44\x53\xa2\xa1\x5d\x88\x0c\xb1\xbe\xcc\x10\xab\xdb\x01\x00\x49\x97\xe1\xfa\x3b\x00\x00\x15\xc3\xf5\xfa\xec\xc5\x89\x06\xe0\xad\x8f\xa2\xd1\x6c\xde\x99\x0c\x51\x9c\x20\xe9\x77\xec\x66\x59\x64\x24\x68\x4c\xac\x48\x01\x6b\xbd\x9f\xbb\xd4\x23\x3c\xc5\x11\x14\x15\x78\x42\xc1\xde\xc7\x00\x2e\x51\x32\x01\xf8\x57\xe0\xbc\x0e\x0c\x43\xc1\xae\x3b\xbf\x85\xd1\xb1\xa4\x4b\xed\x5a\x24\x5d\xc2\x80\xd9\xe0\xc4\x6e\x95\x82\x4d\x9e\x79\x88\x03\x18\x44\xfb\x84\x5c\xe1\x43\x4f\xa2\xe7\x65\xf9\x77\xde\x81\x16\xc3\xb7\xf1\x01\xd4\x73\x62\xb0\x49\xfa\xb3\xa3\xc2\xdb\x43\xc3\xb9\xe0\x42\xc2\xdc\xe4\x72\x3e\x60\x0c\xc6\xbd\x9e\x5e\x9c\x97\x25\x26\x7d\x81\x11\x15\x13\xb1\x07\x44\xf3\xc3\xa0\x66\xd3\x2e\xde\x60\x4a\x44\x32\xdc\x1f\xe2\x0d\x4d\x99\x54\x71\xb0\xa6\x4c\x9f\xcf\x11\x6d\x7a\x16\xd2\xa6\x3f\xfb\xf9\x68\x73\xe6\x1c\xac\x69\xea\x4c\xd0\x3d\x02\x1c\xd0\xe7\x81\x49\xe6\x33\x1f\x41\x4b\x9f\x37\x98\x12\x99\x0c\x31\xd0\xf4\xe9\x42\x8e\x73\xe4\x9d\x6c\xcf\xaf\xae\x83\xa4\xba\xd6\xf6\x9b\x39\xe6\x4f\x73\x7d\xf8\x6f\xe0\xaf\x79\x76\x3b\xe5\xf8\x72\xe5\xf1\xa2\x4e\xb6\x51\x4a\x14\x60\x2c\x5f\x2c\x99\x34\x0b\xdf\x73\xb9\x02\xbb\x67\x50\xe0\xbf\xa1\xcd\xd0\xb8\xe6\x59\x27\x5b\x87\x66\xf7\x1f\x2d\x10\x57\x78\xe5\x04\x75\xb0\xbc\x42\x82\x09\x71\x55\xf5\x20\x7a\xaf\x56\xd8\xa0\xca\x02\xcb\xeb\x66\xa7\x42\xdd\xb8\x00\x0e\x75\x6d\xee\x11\x8d\xc9\x1e\xbd\xc5\xcd\xdc\x0b\x84\x47\x1b\xb8\x80\x78\x98\x9d\x1c\x44\xbe\x3a\x35\x39\x9f\xcd\x9a\xb6\x6e\x26\xc2\x5b\x1d\x3f\xb5\x75\x13\x25\xd9\x6b\x64\x4f\x0c\x51\x51\xd1\x49\xe4\x23\x3c\x41\x3c\x71\x22\x7c\x83\x78\xe3\xd6\x52\x04\x86\xf4\x2d\xad\x7a\x16\x4b\xa2\x22\x95\x6d\x40\x51\x59\x91\xb2\xa2\xcb\x84\xe0\x24\xe5\xbe\x30\xb6\xcf\x8c\x57\x54\x55\x13\x93\xd1\x3a\x3d\x55\xb9\x2c\x4c\xd9\x7b\x83\x8a\x6b\xc3\xd1\x57\xb2\x55\x95\x14\x25\x08\xdc\xe3\x06\x22\xcb\x41\xf4\xb6\x75\x81\x1a\xa2\xf4\x11\x91\x8a\x0d\xa8\xe4\xd6\xb7\x37\x7b\xa1\x8c\x8a\x10\x82\xbd\x07\x1b\xa7\x9f\x47\x29\xd9\xa6\x46\x56\xad\xcc\xe0\xb2\x55\x43\x68\x78\xcf\xe6\x7a\xe0\x4c\x14\xbc\x75\x8c\x7d\x41\xd7\x0c\x2f\x5c\x56\xef\x52\x38\x84\x29\xc9\x69\x03\x8a\xeb\x71\x54\xe7\x4b\x34\x5b\x1e\x9d\xaa\x8b\x9a\x92\x3a\x15\x3c\x8f\x23\x1d\x28\x64\x16\x28\xa9\x4b\x22\x6a\xf1\x27\xbc\xb7\xe1\xe9\x8c\x50\xac\x00\xab\x62\x82\x7c\x4b\x9e\xdc\xb9\x1e\xe2\xf1\x25\x95\x7c\xcb\x08\x66\x04\xcd\x5a\x40\xee\x13\xd6\xe6\xb4\x09\xf7\xfd\x0e\x21\xdc\xbd\xda\xce\x53\x4b\xad\xdc\x3c\x55\xdc\x35\xe9\x44\xc9\xc8\x80\x88\x52\xff\x44\x39\xb6\x4e\x85\xc7\x58\x3c\x0e\x0b\x88\x64\x74\xec\xb3\x67\x15\xdb\xc4\x49\xa2\x77\xfa\x8d\xb5\x75\x94\x90\x5b\x90\xf7\x13\x77\xf8\x75\x71\x75\x50\x89\xfe\xd5\x95\x0e\x1f\xf9\xe5\x59\x2c\x27\xa8\xfa\x36\x6b\xdb\xba\x05\x89\xd9\x52\xab\x53\x79\x5d\x3d\xbc\x35\x4c\xe4\x70\x2c\x04\xaf\xfc\x63\x21\x78\xe5\xeb\xb7\x7f\x9b\x1b\x13\x6c\x4c\x42\x5e\x0b\x65\x72\xeb\x36\xf2\x6e\x37\xc8\xe0\x31\x15\xbe\x2e\x4e\xa1\xa0\xce\x54\x70\xcc\x9c\xb8\x3e\x07\xa1\x29\x59\x99\x99\x5f\x6c\x69\x15\x85\xbc\x47\x9b\x72\x5e\xc6\xea\x9e\xc2\x85\x4c\x09\xab\xd8\x46\x1b\xdb\x41\x38\x3e\xc0\x27\xd4\x22\x9b\x4e\x77\x5a\x04\x90\x92\x94\x20\x6c\x8f\x55\x3f\xac\xa8\x38\x2f\xe3\x82\xb7\xf8\xf1\x47\xde\xa6\x44\x7e\xc6\x8e\x26\x6f\xed\xa9\x6d\x92\x12\x4c\x7a\xdb\x7c\xb9\xfd\xae\xb3\xe0\x1e\x1a\xcf\x7b\x91\x83\xc0\x44\x4a\x54\xac\xaf\xcd\xb4\x4e\xac\xea\xa8\xce\x53\x43\xfb\xe4\xe0\x80\x60\x55\x8c\x0b\x34\xb6\x58\x46\xe5\xe2\x42\x0f\xfd\x69\x71\x39\x34\x39\xc9\xd4\xc9\x55\xfb\x9f\x90\x8a\x76\x92\xd0\x76\x09\x8a\x6c\xb7\x50\x3e\xa4\xef\x24\xb9\x62\x04\x8d\x91\x39\xd4\xd7\xdd\x59\x90\x30\xf7\x7c\x8a\x46\xc0\x78\x3f\x70\x39\xc3\x6c\x39\xac\x56\x69\x14\xcd\xb2\xad\x32\x33\xd7\xdd\x79\x98\xf7\x1e\x80\xad\x7b\x39\x0d\xd7\x24\xbd\x11\xc0\x14\xe4\x87\x48\xd2\x5c\x8f\x50\x92\x67\x02\xfe\x3f\xef\xa5\x93\x85\x27\xb5\x17\xb4\x39\x2f\xe3\x35\xdb\x4d\x2a\xaa\x2e\x04\xad\xd9\xce\xab\x04\xd9\x6a\x44\x0a\xab\x53\x97\xae\x1b\x99\xd2\x06\xe4\xc1\xc5\x96\x56\xbc\x00\x20\xe8\x00\x48\x44\x0e\x11\xa2\x89\x02\x42\xeb\x7a\x27\x61\x3a\xab\xe9\x34\x74\xcd\x76\x49\x78\x3e\x3c\xda\xbc\x30\x53\xfb\xc8\x71\xc8\x7a\xe7\x76\x3a\x8d\xe9\x1f\x08\x0f\x3c\xd2\x7d\x5e\xc6\x9f\x73\xd6\x6c\x1e\x73\x0f\xec\xff\x62\x6d\xed\x05\x82\x2e\xa8\xd9\xe3\x82\x5c\xdc\xe6\xbb\x86\xc0\x34\xa9\x20\xe3\xdd\x4b\xf6\x5e\x35\x96\xd8\xb4\x81\x1f\x7b\x78\x42\xf7\x5c\xbd\x11\xba\xcb\x9e\xda\x84\xc2\x20\x70\x19\xc4\x8f\x8d\x6c\xa3\x24\x83\x2d\xbd\xe0\x64\x3e\x28\x25\xde\x0f\xcb\xa7\xc9\x87\x53\xb0\x92\xf6\xd5\x9d\x08\xdd\x17\x49\xed\x67\x9d\xe7\x76\x27\x22\xac\x61\x6c\x7a\x26\x64\x5c\x62\x7c\x95\x92\x2b\x2e\x3b\xf4\xa1\x4f\xbf\x76\x96\xd8\x8a\x10\x98\x3f\x08\x4c\x1b\x89\x85\xcc\x50\x42\xc9\x5d\x92\x38\x13\xf2\x1b\x20\xfb\x71\xfc\x18\x7c\x75\x12\x37\xb2\x4d\x08\x16\xf4\xbf\x89\x61\xff\xc4\x4d\x5c\x3c\x75\x33\x17\x4f\xfd\xa9\x8b\xa7\xc3\xb9\x29\xfc\xf7\xd5\xb1\x5b\xf0\xd5\xb1\xbf\xe0\xab\xe3\xe1\x82\xa7\x5f\xbb\xb9\x4f\xbf\xf6\xe7\x3e\xfd\x3a\x98\xfb\x86\x3b\x94\xfb\x00\xe7\x7e\x84\xf4\x1b\xee\x61\xdd\x87\x68\xf7\x63\xbc\xdf\xa0\x9f\x7d\x83\xf8\xa9\xbf\x8d\x2a\x4c\xe8\xd5\x1e\x0d\xfd\x98\x88\x37\xdc\xa3\xa2\x0f\xc9\xe8\x03\x3a\x86\xa1\x3b\x9e\xbd\x46\xb6\x29\x29\xfd\xd8\xda\x06\xde\x56\x6c\x49\x18\x6e\x83\xed\xf4\xa2\xed\x52\xa8\xd6\x41\xda\x2e\x3b\x72\x71\x89\xb0\x13\x62\x4a\x96\x76\xe4\xae\x40\x1c\x20\x4e\xf8\xc4\x13\x92\xd3\xaa\x02\x47\x68\xb6\xc5\x2b\x29\x46\xe4\xf8\xcd\x05\xe4\xf3\x99\x34\xa5\x10\xa7\x97\xa5\xd6\xd5\xd8\x25\xdc\x46\xf9\x6a\x6c\xa2\x2a\xb7\xba\x79\xca\x92\x87\x14\xc9\x15\xef\x82\x5b\x1a\x6d\x97\xfd\x86\x09\xa4\xca\xbf\x84\x7b\x31\x1e\x92\x81\xac\x70\xde\x13\x09\x4f\x09\xa0\x93\xbd\xec\x37\x67\x42\x95\x5a\x06\x95\x16\x5c\x84\xf9\x7d\xda\x2e\xd1\x18\xc3\x35\x14\xd6\x9c\x09\x88\xd9\x1c\x5d\x6a\x03\xe5\x5d\x9d\x29\xd5\xab\x3c\x2c\x2f\xf8\x25\x9a\x50\x55\x56\xd0\x02\x51\xf7\x1a\x00\x2d\x50\x64\x89\x6b\x98\x30\x08\x9e\xf7\xd2\x6f\x9a\x78\x72\xa2\x0a\x4a\x2e\x48\x56\xe3\x0b\x7f\xdc\x87\x7e\xf1\xe4\x32\xab\x55\xac\x89\x77\x64\x67\xe6\xfc\x7a\xbb\x33\x6e\x68\x6b\xd1\x9e\x6a\x6b\x1b\x20\xe2\xaa\x52\x29\x69\xfd\xc2\x94\x47\x8e\x2e\x8b\xe8\x2a\xf9\x6b\x26\xf5\xbd\x3d\x25\xad\xc5\xc4\x2f\xfa\xfb\x28\xeb\xda\x46\x32\x1f\x1e\x8f\xd1\xc5\xb6\x1c\xdc\x8f\xe9\x32\x06\x65\xf1\x8e\x07\x28\x64\xb1\x61\x9b\x4d\xbd\x65\xb1\x2b\x6a\xd8\x24\x46\x08\x70\x4f\x5d\xa3\xe8\x64\x62\x1d\x2d\x76\xee\x8d\xe7\x74\x6d\x6e\xe7\x2c\x99\xf4\xaf\x1e\x55\x4d\x8b\xd7\x39\xad\x68\x1b\x37\x83\x0d\x53\x22\x4c\x51\x2e\x31\x1f\xee\xec\xf4\x6c\xc2\x4d\x2c\xf9\x81\xef\x80\xc0\xdb\xf3\xc9\x29\xe9\xf8\x6f\x4c\xdd\xbd\xe3\x7c\x35\x45\x73\x6e\x0f\xa6\x09\xda\xa7\x0a\x49\x49\x32\xbf\xd7\x2f\xaa\x8b\x0c\xdc\x1b\xb4\xea\x68\xb7\x07\x3b\x64\xfa\xc2\x01\xe8\xf8\xae\xcf\xc7\x7d\x43\x1b\x4f\x4e\x36\x67\x10\x6f\xa6\xd0\x7e\x10\x32\x8a\x73\x13\x61\x83\xd9\x76\xcd\x76\xcf\xeb\xd6\xdb\x15\x22\xcb\xe1\x6e\xb1\x6f\x76\x6c\x4a\x7d\x3e\x5b\x1b\x4b\x35\xac\x63\xb1\x9d\xca\x10\xad\xb7\x9a\x27\x28\x30\x30\xae\xa3\x7e\xda\xf5\x96\x9c\xc2\x3c\x5f\xb2\xe8\x1d\xd6\x7e\x12\x2d\xfb\x99\xed\xdc\x5d\x5d\x21\x1d\xa5\x64\xbd\xf5\xf3\x5f\x9a\x23\xeb\x6d\x4a\xd6\x1e\x5f\x1b\x9a\xe7\xac\xeb\x3c\x1a\x37\xd3\x64\x8e\xa3\xb7\x77\x29\x41\x34\x0c\x97\x70\x5d\x32\x9f\x31\x21\xdb\xdd\x34\xed\x1b\x15\xad\xad\x15\x03\xd4\xc4\xc9\x3e\xe2\xc9\x6b\xfe\x27\x87\x5c\xb8\x81\xee\xba\xf1\x02\xad\x57\x18\x64\x49\x93\xe3\x48\xa6\x35\xae\xa1\x5d\xc7\x97\x62\xc4\x19\xb8\xdc\x54\x53\x3a\x87\xac\x9d\x62\xc8\x75\xf7\x96\x56\xd3\x0c\xd9\xd2\x2a\x19\x48\x97\xe9\x6c\xa2\xc2\x4e\x31\x6a\x22\x6f\x88\x65\x08\xf6\xde\x42\x56\xf7\x12\x19\xc6\x96\x60\xff\x5d\x82\x56\x4d\x07\x36\xe0\x1f\x26\x13\xbc\xfe\x01\x08\xac\x7b\xbc\xa5\x8a\xdd\xbe\x00\xf7\x9f\x17\x3d\x4f\xe5\xa6\xd7\x4a\xdf\x82\xb1\x6d\xa4\xb7\x9a\x2c\xe7\x6e\x54\x56\x7b\xad\xa5\x14\x70\xbe\x60\x15\x93\xbe\x55\xde\x8c\xac\xe3\x94\x8a\xde\xa1\x93\x93\xfb\xff\xa8\xb6\x59\xbb\x6a\xf1\x86\x36\x67\xa0\xdd\xae\x2e\x27\x09\x21\x44\x25\xa8\x36\xd8\x60\x65\x0f\xfb\x7c\xb6\x66\xbb\x2e\x18\xe0\xaa\x61\x4a\xce\xf1\x55\x0e\x4c\x0f\xf0\x8e\xc8\x15\x53\x9f\x95\x7b\xc3\xef\x5c\xb2\x96\x4a\xf0\x94\xa2\xe0\x39\x95\xac\xcb\xc8\x59\x49\x30\x8c\xd1\xd3\xd8\x07\xde\xc9\x2e\xc5\xe9\xc0\x18\xc9\x6b\x01\xc0\xa8\x34\xe9\x3a\xb9\x62\xb8\x51\xde\xb7\x2d\x13\x12\x79\x52\xb7\xa0\x9e\x3d\xd3\x73\x3a\x1f\x64\x4a\x5a\xb6\xa4\x6d\x51\xb1\xae\x83\x50\x0d\x20\x9b\xb5\x06\xa1\x8c\x9c\x21\xd2\x57\x2c\xa7\x7d\xc7\xfc\x39\xb8\x97\x45\x7c\xc3\x97\x2b\x95\xe3\x90\xb4\x62\xa4\xe8\x19\x91\x35\xa2\x80\xd2\xe3\xb5\x20\x5c\x10\x4a\xaa\xba\x6e\xb2\xf9\x0c\x19\xe0\xf1\xca\xde\x9c\x01\x20\x79\xac\x19\x9f\x90\x6e\xcd\x9b\x37\x42\xf2\xea\x2d\x5c\xe5\xd1\xb0\x61\xe5\x00\x58\x25\x59\x9b\x71\xf2\xad\xfa\x00\xcc\x77\x3d\xf1\x68\x2c\xb1\xcf\xd8\x3e\xd3\x71\x05\x2e\xd2\xcd\xf4\xf8\x45\xb5\x5e\xad\x5d\x52\x60\xd2\xf2\xce\xae\x5a\x46\xd7\x3a\x1e\x3b\x3a\x22\xbf\xae\x18\x12\xc7\x3b\x42\xab\x96\xd1\x42\xd3\xc9\x8a\x8c\xbc\xa8\xb7\x8c\xd4\x28\x0f\x22\xd8\x07\x64\xe6\x26\x83\x2d\x71\xf3\xc3\xc3\xf0\x0a\xd7\xc0\x30\xbe\xf4\xb3\x5f\xc1\xa7\xec\xed\xb4\x15\x3c\xd0\xac\x83\x20\x68\x4a\xcb\x27\xd2\xc6\xc0\x9e\x68\x7a\x36\x5c\xe4\x53\xb0\xbb\xb7\xee\x50\x80\xf6\x3f\xfb\xe0\x22\x67\xc0\x45\x9d\x08\x25\x9e\x5f\xfd\x3a\xbb\x26\x6f\xcd\x76\x31\x97\x0f\x20\x0a\xc5\x8f\xf1\x85\x51\x81\x98\x83\x5d\xda\xd2\x96\xac\xb7\xe1\xe9\xd2\x02\x44\x55\x7a\xe4\x12\xb2\xe8\x24\xed\x93\xf9\xec\x96\xb0\xaa\x53\x81\x26\x8e\x4e\xa8\x94\xa7\x0e\x98\xdb\xdd\xa3\x51\x61\x24\x7d\x7b\xbf\x8e\x39\x54\x46\x5a\x36\x57\x7a\xf4\x0b\xcb\xeb\xb6\x40\x55\x59\xb3\xdd\x9f\xd4\x59\x6d\x28\x6f\xf1\x45\xa4\x8a\x02\x3b\x94\x4b\x66\x9d\x55\x21\xa4\x18\x02\x81\xdf\xe5\x0d\x4d\xbc\xb1\x1e\xb9\x42\xdc\x44\x66\xb1\x92\x74\xa2\xe3\x89\x7d\x7e\x11\x66\x83\x9a\x4f\x09\xf8\x0e\x89\xfa\x94\x20\x43\xed\xe9\xf0\x60\x57\x4c\x4c\x04\x74\x5c\x0c\xde\x72\x7a\xb8\x3e\x5b\x81\xba\x8a\xe5\x56\xfe\xc8\x5b\x74\xbe\x44\x5f\xf7\x26\xd2\x5f\xa0\x7f\x5d\x9b\x2b\xdf\xb8\xf5\xee\x48\xbc\xb4\xe3\x2e\x61\x9a\xb9\x44\x94\xe0\x55\x94\xf8\x41\xcc\x1d\x19\x34\xb7\x20\x25\xdb\x0c\xab\x8a\xea\x86\x0c\xbb\x43\x94\xe1\xab\xbf\xc9\x90\x9a\xcb\xb3\x8a\x08\xfe\x4c\xd6\x2e\x69\x66\xd2\xa3\x9d\xb9\x38\xfa\x9b\x81\xd3\x56\x98\xeb\xb0\x93\xaa\x6b\x5c\x62\x16\x28\xaf\xfd\x85\xea\x76\x8b\x52\x12\x4c\xd6\xa3\xa3\xd9\x15\xb2\x77\x38\x5b\x8f\x8e\x66\xe7\x10\x6f\x72\xb9\x1b\xce\xb7\xe3\xb8\x62\x8b\x4c\xbf\x5f\xa1\x11\xf2\x30\xaa\x83\xcb\x88\x49\xb8\xe8\xae\x51\x9d\xc4\x50\x01\xd5\x74\x24\x15\xce\x81\x87\x28\x53\xf3\x5d\x5d\x5a\x15\x5e\x0a\x71\x1c\x30\x3e\xc2\xbc\x15\x55\x91\x31\xcb\xf1\x2e\xeb\x05\x61\x5b\x08\xbd\x14\x8c\xd4\xdb\x32\x19\xfa\x9c\x69\x68\x01\xd7\x30\x60\x1c\x70\xd2\x08\x69\x90\x45\x1d\x43\x1b\x66\x4d\xe7\x77\x62\x19\xa4\x52\x53\xf2\x7d\x5d\x57\x29\xd6\x80\x52\x9d\x9f\xb7\x2d\xe0\x26\x55\x8f\x76\xcf\xdf\x7a\x14\xfa\x66\x70\xb7\x0d\x52\xab\x2a\xa7\x74\x80\xa7\xe5\x59\xdb\xd6\xed\x8d\x4d\xf1\xff\x50\x8b\x2d\x6b\x41\x2d\xd7\xb7\xd3\x09\x32\x9b\x75\x19\xd7\xca\x69\xe5\x67\x03\xd4\x49\xcb\xda\x3a\x4e\xc8\x47\xfd\xed\xe0\x61\x39\xb5\x1f\xea\x66\xe7\xfa\x1c\x74\xfe\x4c\x5b\xa7\x02\x4f\x66\xd1\xc9\x6c\x8d\xcb\xd0\x54\x14\x6b\xf0\x54\xaa\xfe\x7f\x70\xa0\xbf\x0e\x8b\xd9\x7b\x08\x6e\xe0\x98\x14\x86\x5c\x05\xcc\x36\x13\xdc\xe8\x8e\x86\x4d\xdf\xc9\xef\xd9\x5f\xf1\xaa\x42\xaf\x2a\xb8\xf0\xc3\x6c\xf7\xc8\x75\x4f\xcd\xe7\xb3\x0e\x71\xec\xda\xdc\xe2\x88\x76\x0e\x65\x05\x1b\xaa\xde\x32\xb4\x71\x21\xe2\xdd\x00\x71\x6f\xc9\x29\x3c\x54\xa7\x89\x8b\x25\x52\xd9\xc9\x6c\xf2\xc0\x61\x66\x56\x1d\xc8\x47\x1e\x84\x1b\xf5\xae\xc9\x7d\xac\xe8\xd6\xae\xbb\x75\x06\x34\x4c\x10\x38\x01\x19\x62\x98\xee\x45\xdf\xc9\x17\x54\xe6\xab\x78\xc4\xe0\x00\x59\xd5\x18\x12\x1c\x4b\xb0\xc7\x45\x27\xf5\x45\x0b\xa6\x07\xce\x60\x42\x28\x6f\xfd\xc3\x66\x6a\x37\xe1\x3e\x89\x3a\x75\x6a\xb2\xde\x44\xbb\x15\x2d\xa0\xd0\xe3\x0c\x36\xb1\x9e\x69\xb0\xc9\x00\x79\xdf\x66\xe8\x4d\x00\x58\xc8\x9f\x7d\x5e\x55\x5b\x03\x2e\x96\x8a\x4b\x6f\x9d\x49\xd0\xaf\x4b\xf9\xc7\x70\x7a\xb9\xee\x4d\x98\x5e\x6d\xdd\x3e\xf6\xac\xfe\xc2\x72\xc6\xb7\xac\x8d\xeb\xc6\xf6\xe9\x59\x07\xcd\x75\xae\xe7\x9d\x0d\x98\xbd\xd6\x4c\xcc\x6b\x4f\x04\x22\xa0\xda\xd8\x23\x64\x3a\x28\x79\xa9\xad\xba\xd3\xc8\x33\x3f\xa8\x9d\x49\xa9\x02\x97\xe0\x75\x8b\x51\xbe\x4b\x79\x7b\x13\x43\x62\x73\xc8\xc7\x8f\x84\x93\xef\x74\x4f\x99\xcc\x74\x17\x6e\xe2\x6b\xb6\xcb\x94\x9b\x1e\x2d\xd5\x05\xe1\xca\x96\xba\x9f\x97\x43\x4c\x19\x99\x54\x30\xbe\xdc\x72\xe0\x60\x5e\xf0\x4b\x7d\x80\xa4\xcc\x4c\x8f\xdd\x06\x3f\x25\x59\xd0\x2b\x39\xb9\x77\x44\x0e\x49\xdd\x90\x43\x12\x61\xf7\xc5\xf0\xdd\x4e\xbb\x2d\x04\x69\x77\xe5\xe2\x51\x97\xf5\xde\xc6\xe5\xaa\x86\xac\x53\x32\x81\x98\xea\x39\x0d\x42\x73\xf5\x5e\x99\x92\xc7\xa8\xbb\x59\x91\xd8\x73\x21\x63\x9e\x00\x63\xf1\x23\x06\x87\x5d\xf2\x87\xb1\x75\xe3\x71\x53\x21\xf2\x3f\xc6\x50\xb5\xbd\xe3\xe9\x66\xc8\xd4\x3b\x5f\x17\x0f\xc2\xd0\xe4\xbe\x4e\x38\x38\xb4\xf9\xb6\x55\xec\x0f\xcc\x8c\xeb\x0c\x54\xa0\x94\x7d\x80\xb9\xc3\x50\x17\xec\x0a\x3c\x50\xe0\x4a\x41\x4e\x87\x4e\x17\x9e\xba\x0e\x3b\xbf\x9c\xa9\x2c\x86\x3d\xfe\x78\x05\xb2\xe7\xd0\x04\xe5\xa3\x4a\x0d\x1e\x5e\x7c\x27\x1d\x1b\x37\xee\xf1\x9e\x38\x96\x59\xa8\x51\x4a\x9e\xdc\x3a\x0b\xe8\xf9\x7c\xa5\x72\xea\x9d\x7a\x80\xb9\xd5\x85\x1a\x35\xae\xe2\xf6\xc8\x87\xb3\x75\x60\xa6\xd9\xa5\xec\xa1\x87\x7d\x3c\x5d\x6f\xf6\x38\xe9\xc4\x10\xbc\x7f\xe1\x99\xd7\x3b\xc0\xb9\xc5\x53\xef\x6e\x70\x58\xf4\xec\xf8\xcc\xcb\x35\x40\xe8\xe2\xc1\x43\xf3\xfc\xc7\x96\x3b\x86\xb6\xfd\xa5\x6a\x39\x77\x0d\xb0\xa6\xdd\xfb\x2f\xcf\xcf\xfe\xf3\xc5\xb3\xbf\x44\x41\xa2\xdf\x67\xfd\xd8\x19\x84\xc5\xc9\xb1\x24\x07\xda\x71\xbf\x7d\xe8\x3b\xec\x1d\x84\x9d\x5f\xd1\x56\x72\x5a\x41\x44\x6b\x6a\x95\xef\x52\xf2\x0e\x1d\x8c\x7d\xc7\xd0\x73\x54\xd8\x1e\x09\x96\x49\x5f\xde\xbe\xfb\xce\x21\xf2\x7a\xc5\x4b\x6c\x17\xfe\x83\x8f\xda\x1f\x5c\xff\xdc\x5b\x4f\x2a\x85\x11\x35\x6d\x9a\x0a\x22\x25\x40\xc2\x03\x9c\x60\x25\x2e\x0c\xc3\xb7\x19\x62\x9e\xec\x8f\xc5\xc3\xc2\x5c\x18\x8a\x0f\xca\x74\xe0\xbf\xaf\x3b\x85\xce\x2b\xd9\x0e\x5e\xca\x1d\x16\x96\xbc\x99\x70\x01\x52\xea\xf4\xbe\xa5\xcd\x4f\x9d\xfb\x2d\x14\xd3\xd0\x1b\x5c\xad\x87\x3f\xa6\xa2\xae\x82\xea\x7a\xef\x76\x0f\x98\xa5\x31\xb0\x4f\xf5\x31\xd6\x51\x96\x99\xb7\x55\xbf\x2a\xa3\x7b\x62\xfe\x3d\xb8\x6c\x0d\x03\x6a\x9d\x9c\xdf\x87\xc0\x92\xc9\x9f\xba\x5f\xe1\x62\x63\x5f\x84\xf0\x4f\x64\x59\xb7\xf8\x8a\xc4\xa3\x53\x12\x45\xb8\xc1\xd1\x11\x26\x63\x49\xc5\x68\x01\x93\xba\x86\xe6\x0c\xbc\x25\xf6\x66\xdb\xa2\xf8\xb7\x2a\xe8\xa1\xcb\x04\x42\x7f\x49\x97\x58\xec\x3e\x25\x5f\x92\x2f\xf5\xcd\xfa\xf0\xd0\xf8\x40\x30\xde\x6a\xca\x89\xf6\xbb\x52\xd9\x73\xbd\xa5\x77\x01\xd6\x08\xe4\x54\x10\x59\x93\xbc\xae\x6a\x91\xa9\x31\xaa\x30\x21\x75\x4b\x28\xf9\x57\x5f\x4b\x86\x49\x59\xd2\xed\x84\xa4\x1f\xd4\xe9\x46\x34\xef\xc5\xf2\x91\xc2\x32\x1c\x38\x19\x0e\x44\x23\x3a\xe0\xf8\x1e\x2e\x6c\xbc\x07\x40\x3f\x7e\x1c\xc0\x30\x03\x87\x8b\x10\x8a\x7f\xc5\xc7\x37\x36\x4e\x4e\xb5\x14\x00\xd0\xc5\x09\xbf\x4c\x42\x4e\x1d\x2e\x4e\x2e\x7d\x6e\x20\xc5\x85\x91\x9c\xac\x49\xc9\x45\xa1\x9c\xa8\xa6\x7a\x71\x3f\xd5\x96\xa6\xd2\x97\xd8\x3f\xfe\xf1\xa5\x79\x31\x1f\x69\xd5\xbf\x57\x10\xd0\x1d\x50\x3d\xa2\xe8\x5f\x2a\x9f\x39\xa4\xe9\x70\xb1\x8f\x2a\xae\x5e\x60\x41\x1d\xb8\xee\xb4\x16\x6c\x55\xd0\xff\x4e\x75\x2a\x21\xc1\xb1\x82\x9c\x78\x49\x59\x43\x72\xd0\x82\x1b\xa1\x2b\x39\x3a\x22\x98\x0d\xf2\x8a\x20\x8c\x34\x3a\xe9\x8c\x39\x6d\x6c\x4e\x61\x15\x03\x4b\x46\x64\x06\x2b\x9e\xd7\x2d\x61\x1f\xe8\xa6\xa9\xe0\xc2\x51\x12\x49\x5a\xd6\xb4\xac\x43\x23\x8a\x8b\x9e\xd7\x75\x4a\x74\x9a\x29\xf1\x9f\x3e\x7e\x5e\xd7\x99\x3a\x66\xfa\xf1\x74\xa3\x9e\xb4\xbf\x3e\x65\x1a\xbd\x34\xb6\x70\x59\x82\x0b\x9d\xc1\x97\x6a\x27\x97\xd7\x42\x52\x2e\x50\xd2\x2b\x2c\x4f\x85\x45\x1e\x2a\xb1\x2b\x08\x40\xd0\xaa\xaa\x73\x2a\x61\x2a\x25\x82\xbd\x57\x2d\x98\x57\x15\x23\xb4\x23\x82\xb1\x82\x15\x99\x7b\x65\xe3\x2d\xad\x82\x3e\x00\xfd\x52\x03\x36\x19\x8d\x62\x81\xa0\x15\x1a\x7c\x07\x26\x4a\x62\xeb\xb6\x8e\x8e\x30\x31\xa2\xbb\x34\x48\x57\x93\xb2\x97\x7d\xcb\x48\xbe\xa2\x62\xc9\x3a\xd0\x52\x8d\xbe\x9a\xfd\xbe\x16\x5f\x4a\xfd\x14\x9f\xf4\xa2\x60\x6d\xb5\x03\xe4\x91\x30\x38\xea\xf9\x64\xa3\xda\x2c\xec\xdb\xd8\x35\x29\xc9\x11\xeb\x64\xd8\x9a\x6d\x9e\xd9\xf7\x13\xf4\xeb\x08\xd3\xcd\x55\x8f\xe3\xc7\x03\xb2\xb1\x33\x0b\x96\x5b\x67\xd4\x31\xf0\x3e\xff\x9f\x55\x0d\x6b\xc9\xa8\x3a\xfa\x85\x7a\xac\x7e\x4b\x44\x07\xb3\x49\xa6\xdc\x73\x96\x65\x41\x73\xb9\x67\xf0\x4d\x56\x7a\x45\x45\xcb\xf2\xed\xb8\x0d\x23\x25\xe2\x0a\xf3\x32\xd3\x85\xe7\x58\x6d\xcb\x8a\x94\xb4\x2a\x32\x31\xaf\xb5\xdd\xcc\x67\xe0\x86\xf1\x9e\x75\x71\xe9\x87\x01\x37\x37\x13\x6f\x19\xad\x92\x5b\x95\x66\x12\x57\xaa\xa1\x08\xd7\xda\xf7\xa0\xf0\x6b\x1a\x44\x13\x37\x3a\x35\xa5\x30\xf8\x85\xe1\x4e\x3e\x93\xd4\xa2\xc4\x40\x3d\x38\x20\x76\xaa\xbe\xa4\x3c\xd1\xc9\x00\x30\x00\x0b\xdf\xaf\xe1\xfb\xce\xfa\xb5\x67\x2d\xb2\x7c\x1b\x6c\xe1\x80\x2c\x26\x0b\xbc\x7e\x69\x5d\x05\xab\x1a\x84\xdd\xda\x7b\x99\xab\xed\xd9\xf0\xf9\x62\xfc\xae\xd3\x8a\x8a\x0e\x79\x31\x96\xd1\x58\x34\x56\x6e\xee\xed\xaa\x4f\x13\x47\xfa\x90\x7e\x81\xff\x75\x32\xf3\xcf\x17\xfe\x1c\x9f\xfd\xbd\x39\x05\x27\xd6\x7f\x21\x30\x6d\x7b\x21\xf9\x86\xbd\xc6\x01\x6c\x41\xaa\x3b\x26\xd4\xcb\x0c\xf8\xd3\x38\x3f\x4f\xa8\xb2\xee\xd4\x1b\x77\xba\x1b\xc0\x5e\xbb\x7b\xe7\x35\xa1\x99\x6d\x6f\x5c\x17\x9d\xda\xf8\x47\xde\xc6\x5d\x56\xf0\xd6\x6b\xa4\xd3\x4f\xbc\x76\x38\xdc\x5f\x35\xf2\x85\xfc\x0c\x97\xfc\xc2\xf2\xad\x9a\xbf\x9a\xe8\xa0\xc0\x37\x1f\x5e\xf2\x2a\x32\xbf\x0a\x33\x71\x7f\xca\xf2\x95\x29\x49\x0f\x1e\x3d\x31\x85\x88\x7c\x35\x99\x51\xc7\xa5\xd6\x6f\xef\x43\x38\x5f\x0d\x50\x7e\xcd\x44\xf1\x50\x94\xa7\x0a\x53\xff\x46\x42\xf6\x16\x0f\xba\x6c\xa2\x73\xe6\x5e\xc2\xf1\x98\xde\xba\x1c\xf2\xbd\x67\x20\x9f\x32\x37\x4f\x6c\xfa\x93\x97\x9e\x0a\x19\x05\xbb\xc8\x2f\x95\x32\xe1\xbb\x2c\x46\x27\xf4\x39\xb9\xd3\x86\x4d\xfd\x70\x82\x07\xf4\x41\x06\xcd\xbe\xf2\xb9\xdf\x9c\x79\x07\x34\x37\x16\xd6\x1c\xd2\x1f\x19\x6b\x9e\xfd\xab\xa7\x55\x4c\x17\x29\xa1\xc7\xe1\x3b\x51\xc6\x8e\xf1\xc5\x74\x37\x13\x05\x2a\xf8\xf1\x9e\x87\xc7\xfa\xe6\xbb\xc0\x8a\xfb\xb1\x6f\x39\xd4\xef\x76\xde\x7a\xcf\x05\xaf\x30\xab\x7a\xec\x7f\x59\x4c\xbc\x37\x05\x1a\xc6\x8f\xa7\x1e\xdc\x65\x99\x0a\xc6\x1a\x95\x37\x02\x62\x7f\xea\x62\xf3\x16\x18\x5d\x24\xa9\x7d\x25\x8c\x1e\x27\xd8\x0c\xe1\x5c\xc0\x68\xdd\x76\x91\x92\xed\xb1\xc9\x53\x6f\x79\xc7\x21\x3a\xbf\xb8\xbc\x38\xbe\x1c\x7a\x6a\xcb\xbd\x92\x3c\xda\x2e\xb2\xb3\x0e\xfb\x11\x62\xbc\x3c\x3c\xda\x1e\x7b\x03\x1e\xe6\xe1\xcc\x83\x83\x70\xa6\xe1\xd9\x76\xa1\x2f\xde\xc0\x8d\xed\xb1\xf9\x32\xc9\x81\x60\xfa\xfe\x8b\xe5\xe0\xc2\xea\xcd\x4a\x61\xbd\x4d\x58\x01\x88\x3b\xe7\x1e\xfb\x6d\xbd\x58\xe7\x50\xc6\x77\xbb\x18\xbe\x6a\xa0\x8b\x8b\xee\x55\x9f\xd4\xab\x60\x82\x45\x7f\xa7\x9b\xc5\x9c\x55\x37\x0c\x37\xb7\x99\xed\x02\x22\x6b\xc0\x09\x27\x5e\x3c\xb9\x04\x9e\x6d\x8f\xc3\xd1\xc5\xa5\x6d\x43\xf6\xd4\x4f\x99\x0f\xac\xbd\x6a\xa8\xd6\x91\xea\x81\x94\x8c\xc4\x7a\xa3\x76\x4c\xf5\x1e\xb7\x0f\xa4\xd1\x96\xea\x15\xce\x5e\x4d\xda\x35\x49\xab\x47\x67\xdd\x4b\x5e\x59\xc1\x9a\x6f\x01\xfa\x5a\xb6\xee\xf7\xe5\x3c\xf9\x60\x29\xdb\x89\xe0\x1e\xba\x69\x4b\x04\x39\x85\xf5\x7f\x67\xc2\xa4\xe1\x85\xde\x1b\x87\x82\xbe\x18\xb3\xf1\xed\x7c\xfc\xa3\x92\xc2\xbd\xa8\x8d\x1a\x3f\x71\x72\x6c\xa2\x1a\xb9\xe7\x7d\x51\xdc\xbe\x8b\xca\xdb\xa1\xed\x18\xff\x0e\x59\xc8\xbe\x8f\x1f\x47\xec\x33\xf7\x48\x37\x49\xa9\x8a\xfe\x16\xee\x32\x85\xbe\x29\x19\x6e\x8f\xdd\x47\x8d\x7a\xd8\x80\xf0\xbb\x60\xf8\x45\x7c\x2b\x9e\x97\xfd\x06\x7f\xf5\x27\x4e\x3e\x93\xf5\x6a\xb5\x66\xbd\xf7\xe5\x73\x59\xaf\x7f\x1e\xec\x5e\x9d\x9d\xd0\x9c\x07\x28\x6c\xa8\xaf\x46\x55\xb1\xff\x12\xd9\xf1\x82\x36\x3f\xb3\x9d\x2d\x1c\x41\x34\x08\x0f\x93\x07\x6b\xae\xe9\x1b\x55\x56\x05\x01\x9b\x54\x04\xfa\x3a\xb5\x87\x52\xd1\xb5\x8e\x84\x2a\x74\x74\xdb\xe3\xe1\x13\xb4\xef\xb4\x1a\x59\x78\x5a\x1d\x0f\x86\xc6\x82\xa1\xd5\x02\x83\x94\xe3\xdf\x21\x0a\xf3\xf3\x8d\xf7\xea\xb7\x7a\x29\x09\xcd\x99\xb6\x66\xe1\xb2\x3d\x22\x09\x5e\xa2\x1c\xd5\xa5\x6c\xc0\x70\xd6\x21\x55\xd1\x9e\x6b\x4c\x50\xf3\x59\x24\xc9\x43\xa6\x1d\x27\x89\x77\x29\xfb\xef\x00\x00\x00\xff\xff\x24\xc2\x83\xa7\xc1\x5d\x00\x00"), }, "/src/internal/reflectlite/swapper.go": &vfsgen۰CompressedFileInfo{ name: "swapper.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245207762, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 852, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x52\x4d\x8f\xd3\x30\x10\x3d\x7b\x7e\xc5\x10\x21\x14\x6b\xab\x64\xf7\x1a\xa9\xdc\x00\xad\x58\xd8\x43\x25\xee\x6e\x3a\x4e\x6c\x52\xdb\xb2\x27\x2d\xd0\xe6\xbf\x23\x27\xa5\x95\x40\x5a\x2d\x87\x48\xe3\x79\x6f\x3e\xde\x9b\xd4\x75\xe7\x9b\xed\x68\x86\x1d\xda\x04\x75\x8d\x77\xd7\x07\x04\xd5\x7e\x57\x1d\x61\x24\x3d\x50\xcb\x83\x61\x02\x30\xfb\xe0\x23\x63\xd1\x19\xee\xc7\x6d\xd5\xfa\x7d\xdd\xf9\xd0\x53\xb4\xe9\x16\xd8\x54\x00\xe8\xd1\xb5\xb8\x39\xaa\x10\x28\x96\x69\x30\x2d\xa1\x71\x4c\x51\xab\x96\x4e\x93\xc4\x8c\x97\x66\x85\x36\xa7\x25\x9e\x40\x1c\xb0\x59\xe3\x37\x35\x8c\xf4\xac\x97\x0a\x09\xc2\x68\x3c\x54\x9f\x8d\xdb\x95\x12\xdf\xac\x71\x33\x37\x3a\x81\x10\x41\x39\xd3\x96\xef\x66\xfe\x87\x18\x7d\x3c\x7d\x21\xee\xfd\xae\xc1\xe2\x32\xb5\x58\x61\x2e\x6c\xae\x0d\x26\x09\x62\x02\x51\xd7\xf8\x51\x25\xc6\xa0\xb8\x47\xed\x23\xce\xb3\x12\x7a\x8d\xc9\xfc\x22\xbc\x47\xe5\x76\xf8\x50\xe1\x57\xcf\xbd\x71\x1d\xb2\xc7\x74\x54\xa1\x02\x71\x78\x22\x97\xb7\x1c\x8d\xe3\xf2\x50\x3d\x91\x2b\xa5\x04\x91\x8e\x86\xdb\x1e\x67\xf4\x04\xa2\x55\x89\xf0\xbe\x01\x21\x22\xf1\x18\xdd\x3f\x5a\x71\x59\xbe\xb8\x58\xdb\xe0\x1f\x7f\x76\xf4\x03\xfd\xc8\x79\x95\xa8\x5c\x47\x85\xc4\xe9\xd2\xef\xe1\x85\x7e\x20\x44\x36\xca\x64\x87\xee\xf1\x7c\x46\xbb\x44\x33\x20\x5e\x3f\x2c\xd3\x27\x98\xbf\x09\x84\xca\x4a\x6d\xaa\x1e\xf3\xd9\x9c\x1a\x9e\xb7\x96\x5a\xbe\x5c\xa6\xfa\x44\x5c\x16\x6f\x55\x8c\xea\x67\x2e\xf4\x5a\xbf\x82\xee\xb5\x4e\xc4\x85\xcc\xa4\x52\xc2\x0b\x7a\x8c\x5e\x4c\x36\x12\xdf\xaf\x17\x67\xcf\xe7\x25\x65\x6f\xa9\x59\xe0\x7f\xe9\xcb\xf2\x0c\xde\xad\xd1\x6b\x0d\x42\xd8\x5b\xc8\xfb\x90\x15\xa8\xea\x31\x57\x96\x26\xb3\x55\xb5\x21\xbe\xbc\x57\x57\xc8\xca\xbf\x30\xbb\x42\xde\x87\xf9\xef\x9a\xe0\x77\x00\x00\x00\xff\xff\xe2\x10\xae\x41\x54\x03\x00\x00"), }, "/src/internal/reflectlite/type.go": &vfsgen۰CompressedFileInfo{ name: "type.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245277137, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 2314, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xa4\x55\xdf\x6f\xdb\x36\x10\x7e\x96\xfe\x8a\xab\x30\x0c\x64\xe2\x31\xc9\xc3\x5e\xd2\x78\xc0\x10\xac\x45\x16\xa4\x19\x90\xae\x2f\x41\x30\xd0\x32\xe9\xd0\x91\x48\x81\x3a\x6d\x35\x52\xff\xef\xc3\x1d\xe9\x1f\xf1\x94\x16\x43\x1f\x0c\xc8\xc7\xbb\xef\xfb\xee\xbb\x13\x75\x72\xb2\x08\xe7\xb3\xc1\x35\x73\x58\xf6\xe5\xc9\x09\x1c\x6f\xff\x94\x9d\xae\x9f\xf4\xc2\x40\x34\xb6\x31\x35\x36\x0e\x4d\x59\xba\xb6\x0b\x11\x41\x94\x45\x35\xf8\x5e\x5b\x53\x95\x65\x51\x2d\x1c\x3e\x0e\x33\x55\x87\xf6\x64\x11\xba\x47\x13\x97\xfd\xee\x61\xd9\x57\xa5\x2c\x4b\x3b\xf8\x1a\x04\xc2\x51\xc4\x55\x67\x24\x5c\x86\xb6\xd3\x51\xcf\x1a\x23\x24\xcc\x42\x68\xe0\xb9\x2c\xfa\x7f\x1c\xd6\x8f\x80\xea\xda\xf9\xb9\x90\x14\xaa\x75\x6f\xe0\xdd\xe0\xeb\x09\xdc\x35\xae\x36\x13\xb8\xd1\xdd\x79\x59\x14\xd1\xe0\x10\x3d\x58\xdd\xf4\x26\xa7\xfd\x1a\xa3\x5e\xed\x9d\xa1\xfa\xad\x31\xad\x90\x6a\x9f\x2c\xe7\xde\x61\x1c\x6a\xa4\x64\x1b\x22\x38\x38\x9f\xc2\xe9\x5b\x70\x70\x01\xa8\x3e\x0c\xed\x3b\x67\x9a\xb9\x90\x6f\xc1\x1d\x1f\x93\x8c\xa2\xb0\x48\x39\xa8\xd2\x89\x93\x14\x73\x16\xde\x58\x54\xb8\xea\x5e\x50\xa4\x82\x03\x85\x45\xb1\x2e\xf9\xb7\x2e\xb7\xfa\xe2\x60\xca\xf5\x7f\xbd\xb9\xea\x3f\xe9\xe8\xf4\xdc\xd5\x7b\xde\x38\xbb\xf3\xe5\xcd\x94\x2d\x61\x9e\x4e\x7b\x57\x8b\x2a\x8f\xe9\x7c\xaf\x18\x82\x05\x1f\xfc\x4f\x0c\x4f\xc8\x95\x64\x76\xe4\x4e\xc4\x11\xc5\x3f\x12\xa1\x48\xb3\x54\x7f\x04\xe7\xd1\x44\x81\x52\xee\x34\xa2\x0a\x03\x5e\x86\xc1\xe3\x8f\xe2\xec\xe2\xe2\xec\x67\xa6\x3f\x1d\xd3\xfd\xe4\xfc\x9c\x00\x85\xcc\x21\x12\x98\x71\x44\x4e\x3a\xe4\x5a\xf6\xea\x8a\x1e\xbc\x6e\x6e\x67\x4b\x53\xa3\x40\xa9\xde\x1b\x14\x6e\x7e\x9d\xe1\xa4\x94\x63\x6c\x79\x10\xe0\x3c\x4a\xe8\x79\x9c\x1c\x1a\x31\x2b\x0d\x7b\xd4\xae\x54\x92\x9d\x4a\x28\x63\x5e\xa5\x93\xd7\xdd\x72\x96\x77\xe7\x14\xbe\x7c\x01\x07\xbf\x4c\xa1\x31\x5e\x20\x2a\x4b\xf0\xbd\xfc\x0a\xb5\xf3\x73\xf3\x19\xc2\x80\x24\x62\x16\x06\x3f\xef\x33\xf7\x6e\x02\x09\xe5\xde\x3d\x8c\xf9\x70\x6d\x56\x42\xc2\xc7\x6c\xf7\x41\xe7\x37\xba\x1b\xe5\xbe\x36\xab\x4d\xd3\xad\xee\xc6\x3a\x6e\x75\xf7\xed\xe5\x08\x3c\x6e\x44\xf5\x64\x56\xa3\x43\xda\xbd\x4a\x34\xa7\xff\x37\x9a\x4d\xed\xf7\x4f\x27\xcb\x7d\x39\x93\x31\xb9\x37\x06\x1f\xc3\x76\xa9\x44\x9b\x03\xf2\x50\xf8\x74\x0a\xbc\xb5\x56\xd7\xec\xfa\x56\x89\xdb\x44\x5f\x17\xb3\x37\xd7\x0d\x5d\xea\xa6\xe5\x7f\x7d\xba\x66\xcc\x67\xba\x69\xcd\x3c\xa5\xf4\xe2\xb5\x1d\xcb\x45\xe3\x1b\x96\x8a\x5f\xae\x58\xd4\x7e\xb1\xf1\xaf\x23\xae\x8c\x40\xdb\x55\x74\x5e\xb7\x26\x09\xa0\xa7\x5b\x6b\x45\xc7\x4f\xb2\x2c\x5a\xf5\x81\x0e\xa7\xc0\x49\x1c\x25\x55\xb6\xa1\x7c\xdb\xe8\x85\xa0\x3b\x89\x12\x71\xd5\x25\x0c\x32\x35\x61\x50\x8c\x92\xbf\x75\xf5\x70\x1e\xf5\xea\x59\x9a\x7e\x32\xe2\xfe\x81\x32\x27\x70\x3a\x81\xb3\x63\x6a\xd9\xa2\x72\x5e\xc8\x9c\x36\x05\xdd\x75\xc6\xcf\x85\xf3\x13\x40\xe2\x08\x11\xfe\x9a\x80\x8e\x0b\x82\xe0\x76\x21\x97\xb0\x49\x87\x35\x3a\x2e\x92\x1b\x64\xd0\x08\x69\xa6\x0c\x03\x26\xce\x8c\x1f\x0d\xbe\xc0\xe7\x73\x26\x20\x9c\x2d\x43\x18\x90\x73\xf3\x88\xb9\x86\x7c\xba\xb5\x4c\xce\xc7\x16\xd5\xfe\x95\xcf\x5e\xf3\xfb\x3c\x85\x16\xcb\xa2\x8b\x81\xfd\x5c\xf6\xea\x7d\x13\x66\xba\x51\x97\xba\x69\x44\xf5\x43\x9a\xdc\x9d\xc1\x6a\x02\x5f\xb9\x47\x7f\xef\xd3\x2d\xaa\xae\x68\x0f\x84\x4b\xf1\x8a\x60\x2b\xa9\xee\x30\x3a\xbf\xe0\x49\xfa\xcc\x72\xa3\x9f\x0c\x69\x14\x34\x26\x81\x8f\xae\x87\xa3\x65\xaf\x12\x2e\x1b\x36\xb4\xc6\x63\x0f\xf7\x0f\xbb\x38\xbf\xe0\x69\xf7\x9f\xd7\xec\x43\xac\xff\x8e\x84\xb8\xcd\xbf\x3f\x7d\xd8\xad\x3f\x9d\xb2\x10\xd2\x21\x73\x4b\xba\xeb\x9a\x55\x35\xe1\xc3\x3d\xa2\xfb\xb3\xf3\x07\x32\x90\x9d\xe1\x2f\xdf\x14\x3e\xe9\x66\x30\xcf\x2d\xaa\xcd\x97\x65\x02\x07\xbb\x64\xbd\xfa\x93\x23\x42\xca\x09\xd8\x66\x5d\x52\x39\x9b\x00\x53\x70\xdb\x6b\xa1\x2d\xd7\xe5\xbf\x01\x00\x00\xff\xff\xc3\x47\x36\x3f\x0a\x09\x00\x00"), }, "/src/internal/reflectlite/utils.go": &vfsgen۰CompressedFileInfo{ name: "utils.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245343761, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 2567, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x8c\x56\x4b\x6f\xdc\x36\x10\x3e\xaf\x7e\xc5\xd7\x2d\x90\x95\xe2\x7d\xd8\xee\x6d\x61\x1f\x92\xda\x2d\x82\xc2\x4d\x50\x3b\xbd\xa4\x45\x40\x53\x23\x89\xb5\x44\x2a\xe4\x68\x93\x45\xe2\xff\x5e\x0c\xf5\xd8\x75\xea\x43\x7d\x30\x44\xce\xcc\x37\xc3\x79\x7c\xb3\x9b\x4d\xe9\xb6\xf7\x9d\xa9\x73\xfc\x13\x92\xcd\x06\x27\xd3\x21\x69\x95\x7e\x50\x25\xc1\x53\x51\x93\xe6\xda\x30\x25\x89\x69\x5a\xe7\x19\x69\x32\x9b\x77\x36\xa8\x82\xe6\x49\x96\x24\xbc\x6f\x09\x3f\x57\xca\x5e\x19\x0f\x63\x39\x49\xb4\xb3\x21\xaa\xfd\x41\x7a\x27\xb7\xa3\xf4\xf8\xef\x12\x67\xb8\xb8\x80\x71\xac\xb0\xd9\xe0\x62\xa5\x2b\x65\x93\xd9\x2d\xd9\xfc\x7b\xd5\xe7\xfe\x36\x1b\x88\xc1\xc5\x2a\x99\xbd\x76\x5c\x89\xc9\x25\x46\x7f\xdf\xf0\x1c\xcc\x60\x32\xc5\x4c\xde\x3b\x7f\xcb\xde\xd8\x12\x81\x7d\xa7\x19\x5f\x93\x59\x90\x6f\x63\xcb\xe4\x31\x49\x8a\xce\x6a\xa4\x84\x97\x47\xaa\x19\xae\xe5\x90\x66\x83\x9e\xd8\x78\xe2\xce\x5b\xd0\x3a\x88\xd5\x4e\x79\x79\xfc\xb5\xf7\xb7\x7b\xcb\xea\x0b\x2e\xf1\xe2\x08\xe0\xeb\xdc\xd8\x9d\xaa\x4d\x8e\x10\xc5\xf3\x47\x89\x28\xba\xea\xec\xa7\xce\x31\xa5\x63\x0c\x19\xd2\xfe\x63\xd9\x07\x9b\x89\x33\x53\xa0\x26\x9b\x86\x0c\x17\x38\x97\x8b\xd1\x7d\x58\xc2\x9a\x3a\x99\x3d\x46\x9d\xf0\xe1\xf4\x6f\x5c\x5e\x62\xf1\xd7\x62\x81\x6f\xdf\x0e\xe7\xf9\x22\x1a\x45\x95\x1e\x68\x75\x16\x25\x51\x43\x44\x13\xe0\x87\x33\x6c\x31\xe9\x0c\xf0\x82\x3f\x6a\xcc\xe7\x4b\x4c\xef\x8c\x9e\x9f\xc6\xf2\x98\x48\x5f\xdd\x10\x57\x2e\x87\xa7\xd6\x53\x20\xcb\x01\x0a\xc1\xd8\xb2\x26\x34\x51\xb4\xee\x0b\x32\xe8\x1d\x6a\xb1\xd9\xe0\x77\xd5\x10\x4c\x00\x57\xa3\x32\xac\x6a\x68\x1d\x85\xef\x1e\xca\x77\x8a\xab\x51\x3e\x36\x6d\x2b\x77\x5c\x29\xc6\xa7\x4e\xd5\xa6\x30\x24\x1e\x6b\xf7\x99\x3c\xb4\x0a\x84\xb4\xb3\xf4\x45\x7a\x99\xf2\x2c\x02\x1d\x23\xe3\x0d\x0b\x20\x35\x2d\xef\x51\x38\x8f\xae\x6d\x27\xc3\xc9\xec\xd8\x24\xf4\xd1\xdc\x55\x04\xed\x9a\x7b\x63\x15\x1b\x67\xe1\x8a\x29\x40\x65\xf3\xfe\x25\x9d\x35\x9f\x3a\xaa\xf7\x30\x39\x59\x1e\x43\xeb\xb1\x22\x88\xb1\xd3\x19\x81\xb8\x47\xbe\x25\x42\xc5\xdc\x86\xad\xcc\x6c\xad\x6c\xb9\x76\xbe\xdc\x78\x2a\x36\xa1\x25\xfd\xe3\xfb\x88\x6a\x29\x84\x8f\xae\xf8\x38\x41\xfb\x90\xcc\xa2\x57\x60\x6c\xea\xd9\x18\xd1\x70\x4e\x66\x77\x92\x79\xf4\xff\x0f\x99\x90\x7a\x24\xb3\x5f\xa4\x29\xf1\xa7\xaa\x3b\x12\x59\xec\xd1\xcf\x86\x2b\x78\xd2\x64\x76\xe4\xa1\x02\x0a\xe3\x03\x43\xf9\xb2\x6b\xc8\x72\x32\x7b\x63\x73\xfa\x22\x44\xd0\x8f\x9c\x89\x47\xc9\xa3\xf8\x58\xf7\x35\x1e\x1a\xe3\x15\x6e\x49\xe8\x45\x26\x35\xa7\xa0\xbd\xb9\xa7\xbe\x94\xda\x35\x4d\x67\x8d\xee\x33\x99\x1b\x4f\x7a\xcc\xa9\x42\x88\x46\xb1\x22\x43\xe7\x1c\x60\x22\x01\x49\xdf\xbc\xbd\xbb\xde\x4a\x49\x02\x61\x27\x0f\x08\x68\xba\xc0\x68\x14\xeb\x0a\xeb\xf5\xc6\x77\x96\x4d\x43\x9b\x1e\x6c\x5d\xba\xed\xf0\x79\x65\xfc\xfa\x88\xc3\x3e\x3e\xe1\x90\x83\xa3\xcb\x48\x5d\x42\x58\x72\x23\x7c\xf3\x5f\x82\x92\x96\x11\xee\xc3\xc5\x2a\x32\xd2\xa8\x2d\x3c\xf5\xbc\xf6\xc5\x4a\xf4\xb7\xa3\xe2\x15\x15\xaa\xab\xf9\xa9\x62\xde\x5f\x0a\x6b\xc4\x1c\x0e\x2f\xe9\x2d\xa4\x75\xa7\xe9\x8a\x90\xad\x0a\x81\x72\xb0\x83\x1f\xde\x9a\xc4\x66\x35\xff\x23\x23\x4f\xa0\xfb\x54\x3f\xf5\x76\x98\xd5\xdc\xf8\xa3\xec\x8c\xb1\x1e\xb2\xb3\xc4\xd1\xdb\xdd\xa4\x3b\xbc\x65\xc6\xfb\x16\x2f\x7d\xf4\xf0\x1d\x5f\x5b\xaa\x87\x76\xd4\x15\xd0\x2f\x9e\xf5\x3b\x67\x2c\x93\x3f\xd2\x49\x66\x3b\x55\x3f\x23\x6e\xd9\xcb\xdb\x73\xc5\x0a\xe9\xb0\x16\x32\x09\x60\x10\x0c\xad\x8c\xfb\xae\x28\xc8\x23\x1d\x76\x48\x76\xe0\xff\x02\x45\xad\xca\x2c\x66\xeb\x35\x09\x05\x90\x66\xca\xf1\x9b\xb1\x79\x36\xd0\xd4\xdd\xdb\xab\xb7\x69\xb3\xcb\x95\xcd\xb6\xe8\x02\xa1\x58\x3f\x18\x9b\xa7\x19\x54\xa9\x8c\x85\xb3\x9a\xd0\x98\x7c\x15\x58\xe9\x07\x18\x5b\x1b\x2b\xcb\xa3\x24\x0e\xb8\x27\x66\xf2\x91\xb5\x05\x33\x2d\x5e\x88\x43\xf9\xbc\x51\xe1\x21\xc3\x0f\x97\x98\x9c\x0a\x3f\xb7\xca\x1a\x9d\xbe\x88\x73\x19\x97\xd1\xd7\x7e\x6a\x65\xd6\xd3\x6c\x39\xf9\x7e\xcc\x84\x92\xa7\x51\x8b\xa5\xba\x53\xe5\x48\x97\xac\xca\x71\x87\x45\xd6\x19\x6a\x59\x18\xaa\x73\xe9\x11\x31\x7b\xbd\x87\x76\x76\x27\x84\xe2\xec\xf2\xc8\x24\x40\x79\x82\x12\xa9\x56\x4c\x13\xe5\x89\x91\x6b\xe5\xa0\xea\x7a\x8f\xd0\x2a\x4d\xab\x40\xad\xf2\x4a\xc2\x7f\xa0\xfd\x76\x1e\xe7\x71\x8e\x56\x19\x1f\x62\x33\x5e\x2b\x5d\x89\xa8\x6f\x5e\xeb\xec\xaa\x67\xdf\x21\x3a\x99\x45\x13\x58\x3e\x5d\x11\xc5\xda\x59\xf6\xae\x4e\xfa\xf2\x7b\xa5\x99\x7c\x80\xe3\x8a\xbc\x10\xbf\xed\xfd\x22\x7d\x7f\x72\x7a\x7a\x7e\x8a\x05\x16\xd9\x12\x71\xb7\x0e\x77\xe7\xb2\x07\xb3\xa5\x00\x08\x37\x6b\x57\x3b\xdb\x8b\x7e\x7a\x85\xc5\x76\x91\xad\xd1\x47\x15\x63\x95\xb8\xa2\x75\x8e\x4e\x46\x0b\x07\x8c\xef\x42\x10\xb0\x5f\xdd\x18\xb8\xfc\x6c\xf2\xaa\x1e\x16\xfd\xc8\x55\x53\x1d\x46\x0e\x8e\x6d\x26\xb2\x70\xd3\x05\xbe\x91\x79\x4c\x3f\xcb\xfa\x1a\x97\x3f\x9f\x2d\xc1\xe7\x91\x40\xc7\x9f\x00\x7c\x26\x6d\xc1\xe7\x47\x0d\x11\x4d\x4e\x30\xdf\x62\x8e\x13\xf0\xd9\xba\xff\xbd\x91\x66\x72\x29\xda\xf1\xfa\x7c\xba\x1e\xba\xe3\xdf\x00\x00\x00\xff\xff\x55\xcc\x7d\x2f\x07\x0a\x00\x00"), }, "/src/internal/reflectlite/value.go": &vfsgen۰CompressedFileInfo{ name: "value.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245416719, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 15490, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xec\x3b\xdb\x72\xdc\x36\x96\xcf\xcd\xaf\x38\xee\x4a\x29\xa4\xcd\x50\xca\x64\x6b\x6b\x4a\x49\xbb\xca\xe3\x38\x59\x65\x62\x3b\x15\x39\xd9\x07\x95\x2a\x85\x26\xc1\x6e\xa8\x49\x80\x03\x80\xad\xee\x91\xf4\xef\x5b\x07\x17\xde\x9a\x7d\xd1\x78\x76\x77\x1e\x26\x0f\x8e\x04\x02\x07\xe7\x7e\xc3\xd1\xf9\xf9\x42\x5c\xce\x6b\x56\x64\x70\xa7\x82\xf3\x73\x78\xd5\xfc\x12\x54\x24\x5d\x91\x05\x05\x49\xf3\x82\xa6\xba\x60\x9a\x06\x01\x2b\x2b\x21\x35\x84\xc1\x64\x5a\x73\x45\x72\x3a\x0d\x82\xc9\x74\xc1\xf4\xb2\x9e\x27\xa9\x28\xcf\x17\xa2\x5a\x52\x79\xa7\xda\x1f\xee\xd4\x34\x88\x82\x20\xaf\x79\x0a\xe1\x1a\x7e\x27\x45\x4d\x23\x10\xf3\x3b\x9a\xea\x30\x82\x97\x77\x2a\xf9\x68\x7e\x81\x87\x60\xc2\x72\x58\x27\x7a\x5b\x25\x7f\x65\x3c\x0b\x23\x98\xcd\xe0\x8d\x94\x64\x0b\x8f\x8f\x3b\x1f\xae\xb5\xac\xed\xa9\x89\xa4\xba\x96\x1c\xee\x54\x72\xc5\x35\x95\x9c\x14\x16\x64\xb8\x4e\x2a\x2d\xa3\x60\xf2\xe4\x40\xe7\x05\x59\x9c\xe1\x3f\x57\x3c\x63\x12\x5e\xcc\xe0\xc2\x00\x58\x93\x02\x2e\x67\x7b\x01\x24\x6f\x49\x51\x84\xd3\x2f\x16\x54\x4f\xa3\x60\x62\x60\x91\x02\x8f\xdf\xa9\xe4\xc7\x42\xcc\x49\x91\xfc\x48\x75\x38\xfd\x82\xe5\x24\xa5\x1f\x58\x31\x8d\xe0\xec\x0c\x37\xd9\xf5\x54\x70\x65\xd0\x15\x72\x1a\xd9\x73\x9f\xb6\x15\x0d\x0d\x4d\x91\x41\x61\xa2\xee\x99\x4e\x97\x7d\x32\xcd\x87\x94\x28\x0a\xbf\x31\xae\xff\xf3\x3f\x62\xb8\xc2\xff\x5d\xe2\xb2\x41\x7a\x00\x29\xf9\x40\xef\xc3\xe6\xd6\x2f\x96\x6c\xb1\x9c\x46\x71\x8b\xc7\x17\x85\xb8\x9f\x46\x51\x03\xf5\xad\x28\xab\x82\x6e\x10\xb0\xfb\xf1\xeb\x3f\xfd\xf9\x54\xe8\x92\x92\xa2\x0f\x9d\x95\x64\xd1\x05\x7f\x5d\xb0\x94\x5a\x70\x8e\x65\xb3\xd9\x1e\xa6\xd8\x25\x6e\x38\x67\xa8\x1e\xc7\xa0\xdd\x65\xf7\xcc\x25\x25\x2b\xf3\xe3\x93\xf9\x97\xd3\xfb\xdf\xbd\x2c\xf7\x63\x4e\x50\xa7\x1c\xa2\xee\x48\x72\x6d\xbe\x88\x3c\x57\x54\x4f\xbb\x44\xb9\xa5\xb1\xdd\x05\xe5\x0b\xbd\xec\xed\x76\x4b\x63\xbb\x53\x52\x91\x94\xe9\x6d\x6f\x7f\xb3\xe8\x4e\x58\xa2\xed\xb9\xc0\x91\xf5\x74\x50\xc5\x49\x91\xfc\x66\x6c\x31\x8c\xac\xa6\x1f\xb3\x86\xa7\x1d\x6b\x24\x4a\xb1\x05\xff\x24\xc2\x54\x70\x4d\x37\x1a\x94\x96\x8c\x2f\x62\xc8\x94\x86\x97\x52\x6f\x2b\x1a\x83\x26\x72\x41\x35\x58\xbb\x4f\x7e\x11\x0c\x81\x47\x16\x44\x63\xbb\x8d\x81\xbd\xa7\x7a\x29\xb2\x8e\x85\xc1\x0c\x4a\xb2\xa2\x76\xdd\x1c\xf2\xb7\xc5\xb0\xb6\x88\x3b\x0b\x78\x08\xac\xf6\x64\x4c\xa2\xe3\xd9\xbe\x31\xd8\x91\x79\x41\xc3\x4c\xe1\x6e\x23\x52\x54\xab\xf3\x73\xf8\xb8\xa6\xf2\x5e\x32\x4d\x01\xb1\x04\x25\x40\x2f\x89\x06\xbd\xa4\x5b\x28\x89\x4e\x97\x89\xdd\x77\x4d\x4a\x0a\x25\x2d\x85\xdc\x42\x41\xb6\xa2\xd6\x31\x6e\xe6\x02\x96\x44\x96\x90\x09\x4e\x71\x67\x6e\x74\xc7\xd1\x11\xe2\xbf\x6f\xb2\x4c\x3e\x36\x2e\x23\x82\x47\xf7\x35\x91\x22\x8c\xec\x89\xc7\x19\xe0\x0a\x62\xe7\x0c\x37\x6a\x25\x66\x48\x7d\x70\x88\x57\x5a\xc6\x90\x17\x4f\x81\x23\x91\xa1\xcd\x95\x94\x6b\x35\x24\x8d\xe5\x9e\xe1\xb3\x19\x70\x56\x58\xa3\xf0\x4b\x4e\x0a\x7f\xa0\x5a\x67\x4a\x47\x4e\x49\xce\xcf\xe1\x47\xe3\x77\x7f\xba\xbe\x84\xeb\x15\xab\x90\x0f\xb0\xee\x38\x4d\xa3\x11\xe8\xa3\x8c\x7b\x4a\xae\xd4\x07\x56\x84\x11\xb0\x1c\x94\x26\xda\xa0\x62\xe1\xb4\xff\xe5\x52\x94\x50\x57\x4a\x4b\x4a\xca\x04\x8c\x87\x7b\xf7\xa7\x2b\x98\xd3\x42\xdc\x43\x26\xa8\x02\x2e\x34\x54\x84\xb3\x34\x06\xc2\x33\x60\x1a\x38\xa5\x99\x1a\x42\xd2\x02\x64\xcd\x63\x58\xb0\x35\xe5\xc0\xb4\x82\xb4\x56\x5a\x94\x2d\x1b\x88\x66\x82\xa3\x1c\x36\x46\x0c\xc8\xba\x06\xe3\x70\xed\x5c\x2f\xb2\xf9\x43\x5d\x5a\x4d\xb2\x64\x59\x1d\x9b\xbc\x0c\x5f\x32\xbf\xfd\xe1\x29\x0a\x2d\xbb\x22\x98\xc1\x06\x39\x04\xb4\x50\xd4\xee\xf4\x54\x58\xb6\x6f\xbc\x76\x47\x7d\x6b\xeb\xc8\xce\x7e\x8f\xa1\x0d\x1e\x8f\x56\xe8\x0d\x7e\xd1\x13\x2a\x71\x80\x24\xff\x40\x58\x41\xb3\x24\x98\x18\xa6\x34\x56\xf5\x0a\xa6\x97\x96\x28\x10\xb9\xd5\xd7\x29\xbc\x72\x1e\xff\xda\x98\x5c\x18\xe1\x2e\x60\x96\xa7\xa4\xd1\x7c\xe4\x5d\x73\x00\x19\xe0\xb7\x1b\x73\x5e\x13\x09\x29\x29\x8a\xff\xa2\x45\x45\x25\xec\x86\x25\xfc\x38\x8d\x92\x96\x97\x51\x12\xa2\x0f\x08\x93\x24\xe9\x72\xac\x13\x8e\x77\x63\x36\x02\x09\x45\xd5\x38\x07\xc6\xe1\xe6\xd6\x7d\x73\x3f\x20\x73\x11\x99\x30\x98\x4c\x34\x8a\xfc\x25\xc2\x40\x47\x8c\x96\xc2\x01\x06\xee\x03\x59\x9d\xae\x65\xe7\xda\x60\x12\x1d\x73\x25\x7f\xc4\x80\x82\xe0\xe8\x51\xcc\xa7\x5f\x69\x4a\xd9\x9a\xca\x50\x54\x31\xac\x11\x31\xf4\x75\x78\x34\x7a\xfd\xba\x85\x70\xbd\x64\xb9\x91\xb0\xb9\x12\xad\xdc\x67\x21\x56\xaf\x98\xfa\x6f\x49\xaa\x8a\x66\xbd\xb0\xec\x36\xef\x86\x13\xfc\xe0\xf4\xa5\xa3\x59\x68\x9c\x61\x43\x75\x14\xf6\xe9\x75\xe7\x23\xcb\x8d\x19\xec\x7c\xf5\x18\x75\x5d\x7a\x8b\x42\xf2\x1b\xcf\x68\xce\x38\xcd\xac\xaa\xb1\xdc\xb0\xa1\x75\x10\x56\xdf\xa6\x2e\x67\x4b\x8c\x4c\x4c\xf2\x72\x69\xa4\x87\x6a\x87\x5b\x11\x3d\xb4\xb4\x69\xe4\xe0\x28\x13\xa9\xd1\xe6\x44\x85\xf0\xa6\x78\xc6\xac\x4d\x83\x09\xc7\x75\x63\x72\x57\x3c\xb4\xd2\xf1\x07\x1e\x2c\xe7\x5e\xe8\xe4\x4a\xfd\x4e\x24\x23\x19\x4b\x7d\xda\xd2\xc7\xe5\x12\x1a\x90\x06\x0b\xc1\xbf\x5a\xbb\x03\x3d\x74\x8c\xf9\xb1\x1c\x0a\xca\x43\xc6\x23\xf8\x0e\xf8\x31\x70\xf7\x4c\x2f\x41\x0b\x01\x39\xbd\x07\xc6\xab\x5a\x03\x91\x8b\xda\xb8\xd5\x31\x90\xaf\x9f\x01\xb2\x24\x7c\xbb\x0f\x66\x47\xea\xe8\xad\x47\x58\xc0\xbf\xfa\xea\x99\x14\x9d\x4c\xcc\x90\xe5\x67\x67\xa7\xd1\x77\x22\x69\xc1\x24\x17\x12\xfe\x88\xc1\x38\x62\x49\xf8\x82\xa2\xbd\x3b\x5a\x37\xbd\x88\xb2\x26\x05\xcb\xc6\x6f\x44\x6f\x25\x2a\xe3\xd2\x6a\xc5\xf8\x02\xfe\x4e\xa5\x70\x29\x83\xbf\x74\x70\x27\xc3\x0b\x2f\xbe\x05\x86\x8c\xfa\x16\xd8\xab\x57\xcd\xad\xce\x0d\xe3\x06\xc6\x6f\xd8\x6d\x62\x4c\x32\x8a\x91\xf7\x3c\x64\xd1\xb7\xf0\x62\xa3\x93\x36\x5d\xf8\x24\x4c\x04\x88\x4e\xc4\x0d\x17\x36\xba\xef\x88\x89\x6a\xdd\x2e\xc2\xea\xf8\x5d\x8f\x34\x0a\xc3\xdb\xc3\xd9\xd9\x98\x1e\x9c\x9f\x43\x25\x69\x45\x24\x05\x65\xb6\x21\x9d\x92\x96\x84\x71\xbc\xd7\x44\x04\x0c\x96\x25\x52\xe6\xa5\xf8\x15\xf0\x60\x32\x51\xde\x2e\xdf\x93\x15\x35\x77\x84\x86\x58\x1e\xc5\x50\xc6\x50\x22\x1a\xb4\xa0\xa5\x35\x51\xf3\x21\x79\x57\xd0\xd2\xa6\x26\x03\x76\x96\x2d\x3b\x6d\x80\x65\xfc\x86\xbf\x62\xb7\x36\x20\xc2\x46\xe3\xda\xc6\x71\x75\x84\x99\x78\x91\xcf\xce\x87\xdc\x4c\x09\xc7\x88\x55\x2b\x7a\x94\x8f\x08\x66\x10\xee\xb8\x93\x46\xe4\x53\x5e\x4b\x78\x72\xc5\x33\xba\x09\x59\x64\x32\xe8\x8d\x57\x7f\x21\xd9\xe2\x8a\x5b\x02\x50\x35\xb8\xcb\x2d\x43\x17\x85\x62\xe0\xaf\xbe\xc6\xcd\xa9\xa8\xb6\x21\xe3\x37\x97\xfc\x36\x06\x7b\xca\xf8\x7a\x7e\xc3\x6f\x61\x66\x85\x61\x3d\x20\x67\xbc\xc3\x7c\x23\x54\x5c\x7a\xd1\x71\x7c\xc7\x1c\xec\xbd\x14\x7c\xd1\x68\x35\xa4\xa2\xb6\xba\xfd\x14\x4c\xb8\xa8\x75\xe3\x44\x3f\xd6\x18\x71\x82\x09\x91\x0b\x65\x8b\xdb\xcb\x9d\x80\xfd\xc6\x16\x28\x26\xce\x34\x08\x44\xce\x40\x62\x70\x46\xd0\x33\xcb\x06\x1c\xf2\xca\xf1\x2d\x86\x9a\xdf\x4b\x52\xfd\xa4\x5c\x05\xe0\x0c\xc5\x40\x48\x9a\xac\x7f\x84\x9c\x69\x63\x54\x58\xd6\x97\x82\xa3\x99\x71\x56\x44\x4d\x84\x6a\x8a\x0d\x55\x17\x5a\x21\x3a\x6d\x06\x12\xee\xd6\x1e\x39\x6a\x2c\x06\x32\x73\xb7\xc5\x14\xb9\xe0\x72\x7e\xc3\x21\x9f\xf8\x5f\x5c\xb6\x29\x18\x67\x85\x5b\xfd\xba\xb3\xea\x04\xfd\x80\x52\xb7\xb5\x84\x4e\x90\xaf\x17\x51\x0c\x03\x82\xfd\xb2\x43\x34\x8a\xe1\x02\x33\xb5\x8c\xe6\xa4\x2e\xb4\x83\x89\xe8\x0f\x34\x48\xd4\xba\x67\x43\x96\xd9\xb8\xd7\xa6\x05\x54\xdf\xb0\x5b\xa7\x78\x5d\x14\xd8\x38\x0a\xac\x45\xa1\xd1\x6a\x83\x4b\x3f\xe3\x94\x54\x23\x5b\x77\x4b\xb4\xb7\xa4\xc2\x3c\x9d\x9b\xeb\x57\xb6\x48\x59\x19\x27\xdc\xf0\x70\xd5\x30\xd0\x70\xb7\xc3\x2e\x9b\x61\xfe\x4c\x4d\xf8\xb6\x85\xff\x92\xf0\xb8\xad\xcf\x9b\x7d\x4d\xfe\x31\xac\x4e\x51\x9e\xa1\x15\xb9\xb5\x81\x33\x83\xd8\x3b\x29\x85\x7c\xd8\x51\xa0\x6a\x1a\xc3\xea\x69\xac\xd4\x74\xb4\x23\x25\x9d\xda\xb1\xa1\xa0\x43\xd7\xb7\x63\x04\x69\x23\xaa\xf0\xa5\xa9\xe0\x8f\x64\x58\x98\xa7\xc0\x77\x70\x01\x8f\x8f\xc0\xe0\xb5\x49\x0b\xb5\x4e\x0a\xca\xf7\x44\x04\x03\x14\x18\x62\x08\xa8\x8f\x22\xb7\x52\x6f\xe2\xae\xde\x56\xc6\x8c\x75\x82\x3e\x6c\xb4\x5c\x34\xb5\xc1\xa3\x2f\x1c\x07\xe5\xa2\xaf\x19\xda\x0e\x0f\x9a\xc0\x84\x1c\xea\x3d\x59\x42\xf2\x62\xd8\xb6\xc2\x50\xd3\x36\x8a\x5e\xf8\x46\xd9\xce\x72\xa7\x4d\xd6\x2f\x6b\xf4\xb6\x8a\x87\x09\xa8\xcb\x72\x7f\xd1\x12\x63\x27\xf2\xd1\xb8\x20\xe3\xf1\x47\x6c\x1a\x2b\x88\x7e\x0b\x0f\xdc\x15\x7d\x0b\xc0\x9b\x48\xab\xf6\xf0\x14\xc5\x87\x40\x6e\xba\x65\x08\x3c\x00\x39\xe8\xd2\x10\xf8\xa6\x05\xda\x49\x9d\x6d\xa9\xdd\xb3\xaf\x8e\xb5\xe2\xb9\x83\x68\xe2\xf1\xc8\x57\xea\x8d\xa9\x28\x2b\xf1\x41\xe9\xd0\xd1\xb3\x19\xa8\x41\x2f\xc8\xda\xce\xb8\xce\xd9\x00\x7f\x48\xe7\x9c\xc6\x9b\x8d\x47\x34\x7e\x8f\x7e\x7a\x6d\x74\xea\xe7\xcb\xd7\xe3\x8a\xc9\xe0\x55\x4b\x8d\xef\x83\x79\x4f\x60\xd5\x56\xf5\x5b\x6a\xff\xd6\xd6\x7f\x0d\x6d\x35\xd9\x95\x51\x57\x2d\x51\x4c\x2f\xc3\x97\xb6\x6c\x8f\x7a\x6e\xa5\xaf\xb7\x98\xfd\x28\x2d\xf7\x69\xaa\x39\x7f\x48\x55\xbb\xde\xb0\xa7\x56\xbf\x31\xae\xff\x1c\x75\xd5\x0f\x93\x33\xa3\x3e\x5a\xde\x98\x04\xb4\x27\xec\x1a\xf7\x7f\x32\x5d\xc7\x81\xc8\xcf\xd2\xc8\x37\xd0\x3a\x11\xfc\x68\x44\x32\x5c\x72\x31\x69\x34\xbc\x36\x9d\x91\xef\x89\x26\x61\x04\x37\x7f\xba\x45\x24\x2a\x2d\x91\x19\x8e\x15\xbd\x4d\xbe\x47\xa3\xea\xaa\x12\x52\xd3\x0c\xe6\xdb\xa6\xfb\x36\x1d\x0d\x7d\xae\xd9\x36\x17\xa2\x38\x25\xe8\xfd\xa2\xe5\xa1\x10\x8d\xc5\xd7\xfe\xe6\x78\x13\xe5\x0f\x9c\x1d\xf4\x88\x96\x84\x7f\xe8\x1c\xfe\xa1\xe6\xe9\xc9\x87\xf5\x52\x8a\xfb\x0f\xac\x70\x72\x32\x42\x68\x20\xbd\x27\xd5\x21\x40\x43\xa3\x22\x85\xa2\xfe\x68\xc3\xf2\x93\x31\x69\x5f\x60\x1c\x08\x6b\x60\x0e\xb1\xf1\x64\xc7\xdb\xa0\x69\x25\x3e\x53\xb3\x50\xa8\x87\x34\xcb\x64\x5d\x3e\x71\x3b\x29\xcf\x89\x3b\xe6\xbb\x8b\xeb\xcf\x26\xa8\x34\x89\xdc\xd1\x14\xae\x1f\x84\x8e\x29\x86\x3b\x34\xaf\xf3\x9c\x36\xaf\x32\xa3\x20\xfa\x42\x6d\xa5\xe0\x9e\xca\x56\x74\xab\xa6\x71\x07\x72\x17\xf3\xe7\x30\xf8\x67\xca\x0f\xb1\xd7\x3b\x86\x08\x3a\xf6\x7a\x8c\xcd\x36\xfb\x7d\x4f\xaa\xd8\x1a\xd9\x8e\x8a\x98\x06\xa4\xb7\xd7\x6e\x30\xba\xe8\x3b\xe8\x11\x1d\x1a\x58\xcf\xa9\x90\xbe\x1e\xca\xf3\x1f\x40\xa1\x17\x89\x3b\x08\x3d\x87\xdd\x8e\x09\x87\x58\x6e\x6a\x71\xff\xcb\x43\x30\x59\x27\x65\xad\xf4\x5f\x68\xe7\x9d\x26\x0a\x26\x1b\xb7\xfa\x6e\x63\xdd\xa3\x59\x83\x19\x6c\x46\xea\xce\x6b\xfb\xe4\x96\x98\x98\x86\x55\xe6\x91\xe7\xda\x7d\x4f\xa5\xfd\x5a\x61\xd2\xf7\x8e\x56\x31\x53\x51\x6d\xa7\xf1\xde\x6c\x7b\xec\xcb\xc6\x7c\x89\x3c\xfc\x9e\x4b\x9a\x1c\x7b\x32\xb6\xaf\x89\xa3\xcf\x76\xdd\xb7\x8d\x4d\xd4\x5e\x60\x73\x20\x03\x1d\xb1\xb5\xbf\x86\xcf\xc7\xd8\x3f\x27\x05\x93\xae\x06\x9c\x88\xf1\xa6\x35\xdc\x9e\xbe\x99\x0a\xd0\x1c\x30\xb2\xac\xb4\x1c\xd7\x90\xbf\x6c\x35\x55\xe1\x06\x6e\x6e\xe7\x5b\x7d\x48\x4f\xfc\x6a\x68\x34\x3f\xea\xcc\x00\xd8\x3e\x56\x27\x39\x34\x69\xc4\xfe\x36\x8c\xbf\xd5\xf7\x97\xf1\x62\x9b\x5f\xbb\x36\x4c\xd3\x4c\x1b\xe1\x58\xf7\xe2\x0f\xa4\xa4\xf6\xc6\xe9\xb4\x9d\x3c\x70\xe8\xf4\x3e\x3e\xd8\xa4\x9b\x66\xd7\x2d\xe8\xe1\x3b\x81\xed\x64\xed\x3c\x3c\xb7\xc7\x86\x4f\xcf\xdd\x03\xdd\xc7\xe7\x9d\x13\xcd\xf3\x73\xf7\x44\xf7\x01\x7a\xe7\x44\xe7\x09\xba\x7b\xa6\xff\x08\x6d\xd9\x34\x83\xf6\xb4\xe1\xde\x69\x7a\xa3\xac\x14\x47\x75\xe2\x2d\xa9\x42\x6e\x2b\xff\xd3\xd5\x41\x3d\x63\x30\x83\xe5\xc0\xe1\xbb\x7d\xf5\xd7\xe3\x23\x70\x78\xdd\x7c\x1d\xf6\x36\x46\x14\xcb\x97\x67\x7e\x6b\x2f\xed\x05\xc6\x1d\x51\xbe\xcb\x47\xef\x0f\xa9\xc1\x8e\x0a\xf8\xfd\x3b\xf2\xdf\x95\xfd\x60\x6b\x2b\xf8\x5d\xa1\x0f\xb6\x76\x24\xce\xa3\x53\x85\xe8\x61\xec\x91\x23\xa6\x34\xff\x17\x72\xbc\xf8\x0c\x91\x59\x8e\x8c\x09\x0c\x13\x8a\xff\x37\x81\xf1\x83\x12\x52\x63\xf6\xf8\x4f\x10\x99\x79\x37\x60\x31\xdc\x0d\xda\x6e\xfe\xa9\x36\x25\x15\x7e\x71\x1d\x04\xf7\x5c\xab\x00\x86\xef\xb2\x3e\xaf\x62\x3c\x1b\xa4\x56\xb8\xb2\xd3\xac\xeb\xc7\x70\xd3\x81\x68\xdf\xea\xc7\x5d\xb8\xc9\x7e\x9c\x08\x45\x0e\x35\x27\x59\x26\xa9\x52\xe6\x0d\xbc\xed\x31\x3c\x3d\xb3\x15\x88\x04\xce\xba\x0d\x40\x47\xea\xcc\xf2\xe6\x63\x1e\xba\x9e\x89\xf1\x7f\xed\x73\x6f\x3b\x3b\xd4\x09\x87\xc3\x4c\xcd\x02\x32\x97\xb9\xd3\xbd\xf6\x90\xbd\x7b\x9f\x0a\xff\xc3\x15\xfb\x1d\x7c\x07\xcc\xfe\xf0\xfa\x60\xe5\x3e\x60\xad\xad\xe2\x47\xda\x4e\x73\x51\xf3\xac\x7d\x63\xec\x16\xe4\x1f\xf3\xd0\x14\xea\x97\x77\xb7\xd1\x33\x2b\x6f\xfb\x88\x1c\x1b\x0d\x79\x8a\x9a\x67\xeb\x71\x32\x90\x55\xfb\xc3\x7b\x57\x37\xf6\x60\x8e\xd0\xc7\x7b\x27\x3b\x05\x8a\xaa\xe7\xca\xe1\xa6\x62\x40\xe3\x30\x09\x53\xd3\xbb\xd8\x6b\x48\xdf\x18\x4b\x8a\x61\xf5\x6f\x63\xfa\x17\x34\xa6\x67\xeb\xe6\x37\xa7\x28\xe7\x0a\xbe\x83\x3b\xfb\xc3\x29\x5a\xfa\xcd\xff\xa6\x9a\xc6\xb0\x3a\xae\xa9\x6f\x0b\xa1\x68\xd8\x8b\xcf\x21\x56\xbd\x9d\xc8\xdc\x2d\xcc\x76\xae\x4d\xf1\x7c\xbf\x7e\x1f\xb9\xc5\xa6\xc4\xa7\x3f\xe3\xf4\x4a\x27\x37\x73\x3b\x6c\xa5\xbb\x29\xd1\x03\x83\xb5\xbb\xcd\xe1\xa7\xfe\xfb\x8c\x93\x88\x0d\xe8\xa3\xd3\xa6\xd1\xde\x1e\x6b\x3b\x99\xb9\x76\xd3\xad\x5d\x46\xb7\x9d\xb9\x83\x25\x7a\x1f\xab\x31\x42\xbd\xbd\x55\x5a\x1e\x9b\x13\xea\x3e\x31\xe1\x3f\xbf\x7e\x1c\xf4\xf1\xbd\x3f\xe8\x0f\x23\x3a\x1b\xdc\x37\x90\xe8\x3e\xef\x34\x58\xfb\x3d\x66\xbf\x69\x4d\x8a\x9d\x4e\xf5\xf3\x6c\x0d\x55\xa5\xd7\x54\x38\x3f\x87\x0f\x75\xf9\x03\xa3\x45\xe6\xda\xf0\xca\x4c\x2b\xf2\xba\x9c\x53\x89\xf6\x92\xe3\x37\x85\x59\x1b\xae\x5b\xe1\xc1\x3a\xc1\x93\x57\x6e\xde\x50\x01\xca\xe0\x4b\x05\x48\xa5\xef\xc8\xda\x82\x39\x19\x2a\xab\xbf\xad\xed\xc6\xb5\x39\xaa\x39\x11\x05\xed\x63\x8b\x59\x38\x2c\x19\xc7\x4e\x0c\xbd\x5a\x27\x16\xd9\xc8\x51\xf6\x9e\x54\x7f\xa5\x5b\xd5\x10\x46\x7c\x21\x21\xb8\x76\x53\x1f\xa4\x28\x0c\x5d\x2b\xdc\x57\x49\xaa\x28\xd7\x9e\xd6\x92\x54\x31\x82\x61\x1c\xc5\x53\xd1\x94\xe5\x8c\x66\x20\x64\x46\xe5\x71\xfa\xdf\x93\xca\x6f\x6a\xee\xe7\x40\xcb\x4a\x6f\xbd\x5b\xca\x61\x0d\x92\xba\x5b\x11\x3d\xce\x0a\xbc\x75\x87\x69\x8e\x90\xb0\x3f\xe1\xe7\xf9\xf6\x9e\x54\x1d\xa6\x95\xa4\x3a\xcc\xb1\x15\x35\xa1\xc5\x3d\x51\xad\xe8\x36\x08\xf6\xbf\x19\xb8\xcd\x9d\xe7\xa8\xd2\xee\xac\x7c\xc7\x2f\x98\x94\x05\x75\x63\x20\x3a\xbc\xb0\x75\x43\x89\x95\xb9\x1f\x87\x33\xdf\x67\x48\x18\x4a\xa9\x74\x7f\x08\xe0\x5e\xfb\x2b\xa6\xa9\x64\x9c\xe9\xd0\x35\x9e\xf0\x3b\xd9\x9d\x04\x28\x6d\x88\xc3\xf0\xce\x6c\x60\xb7\x33\x01\xcd\x58\x0d\xc2\x26\x51\x3b\x5b\xb3\xa2\xdb\xce\x0d\x2b\xba\x0d\x99\x76\xce\x0d\x3f\x75\xe7\x79\xcf\xcf\xe1\x5a\x94\x54\x70\x0a\x19\x2d\xa8\xa6\x99\x11\x15\xd7\x72\x6b\xe7\x6e\x9d\x36\x80\x62\x3c\xa5\x70\x4f\xdd\xa1\x94\x14\x05\xcd\x1c\x61\x40\xe6\x62\x4d\x13\xb8\xd2\x5f\xa2\x28\x33\xa2\x09\x48\x92\xd2\x18\xe6\xb5\x46\x8d\x58\x32\xbe\x70\x07\xef\xb1\x98\xe5\x90\x09\x3c\x54\x6b\x60\x3a\x09\x3a\x63\xf4\xe8\xae\x88\x9d\x6b\x48\x45\xb5\xfd\x9d\x14\x5e\x0e\x68\xf3\x31\xe2\x8f\x94\x38\xd2\x38\xdd\x68\x4b\x5b\x3b\x75\x4e\x6e\x2e\xd9\x6d\x6b\x05\xe6\xe1\xa5\x67\xdf\x76\xfe\x95\x28\x25\x52\x46\x90\x60\x33\x90\x86\x8c\x69\x95\xff\x14\x2b\x1f\xd1\x72\x3c\xdd\x19\x30\x73\xfc\x76\xfb\x73\x8c\xbe\xdd\x3b\x50\x88\xfb\xed\xe0\xfc\x1c\xde\x18\xdf\xf3\xa3\x88\xbd\x9d\x7e\xa9\x1c\xf6\xa8\xfe\x30\xa7\xc3\xf9\x5c\x0b\xf8\x4b\x65\xae\xd5\xa8\xbc\x23\xe6\x64\x1f\xec\x70\x87\x5b\xfb\x5c\xb3\x32\x13\xc7\xdf\x0b\x43\xa4\xa4\x7f\xab\x99\xa4\x16\x01\x81\x28\x52\x17\xe5\xe3\x66\x34\xfe\x7b\x4a\xab\x77\x7f\xab\x49\x61\x0e\x12\x9e\x81\xd0\x4b\x2a\xa1\x92\x62\x21\x49\xa9\x8c\x82\xd4\x8a\xf6\x3d\x94\xe5\xb1\x79\xe5\x32\xe7\xbc\x87\x23\xaa\x9d\x1e\xc4\x2b\x3d\x85\x09\x5c\xe5\x40\x99\x81\xec\x18\x63\xce\x09\xe9\x61\xa2\x60\x6a\xde\xe2\xa7\x97\xa2\x5e\x2c\x2d\xb3\xed\xa4\x0c\xdc\xb3\xa2\x80\x39\x35\x07\x31\x7e\xb3\x8c\x4a\x9a\x75\x4e\x25\xf0\x69\xc9\x14\x42\x32\x9f\x95\x46\x27\x6a\x27\x1c\x97\xf6\xd8\x9c\x2e\xc9\x9a\x09\x69\x66\xee\xac\x5b\x57\x31\xdc\x2f\x59\xba\x44\x02\xc5\x3d\x48\x4a\x32\x6f\x29\x60\xfe\x94\xc0\x22\x9a\x77\xee\x71\xb1\x28\x31\x3e\x0c\x66\x88\xfe\xde\xf1\x29\xcf\x81\x69\xec\xbc\x9c\x6b\x69\x5b\x17\xb2\xda\x99\x80\xb6\x6a\xba\xb7\xd7\xbd\x72\xd7\x55\x5a\xf6\x46\x4e\x57\xbb\xe3\xc3\x67\x6e\x9f\x35\x48\xea\x9c\x10\x49\x53\xaa\x94\x77\x72\x1d\xff\x89\x89\xa4\xb9\x9e\x76\x7d\xd2\x30\x85\x79\x0a\x76\xc6\x0a\xac\xcf\x76\x23\xd6\xf0\xd8\xa0\x1f\xb9\xbf\x89\xe8\x66\x21\x9d\x81\x02\x0f\xda\x7b\x16\x83\x0f\x7a\x95\xd1\xa6\x85\x8d\xd5\xc3\x41\x21\x93\x72\xad\xc6\xc6\x05\x8e\x66\x20\x06\xa0\x49\x69\xed\x79\x9b\x89\x3c\x2b\xe4\xb3\xdc\xbc\x32\x85\x2c\x82\xd7\x33\xfb\x63\x3f\xfc\x8f\x77\xa4\x6c\x92\x33\xfe\x70\x8e\x79\x54\x25\x45\xb5\xdb\x83\x32\x59\xa8\x85\x6b\xea\x1b\x37\x09\x69\x96\xf1\xc4\x34\x6a\x86\x28\x83\x89\xd9\x87\x30\xce\x1a\x64\xcc\xbb\xba\x13\x9d\x59\x31\x35\x55\x30\x32\xb3\x74\xad\x59\xba\xda\xfe\xfa\xf1\x71\x7c\x80\x69\x57\x90\x2c\x87\x17\x16\x24\x27\x25\x4d\x98\x6a\x6b\x09\x3f\xac\x6b\x3f\xd3\x72\x4e\xb3\xac\x59\xef\x68\xc6\x3b\xfc\xf2\xeb\xc7\xc1\x9f\x65\xb4\xdf\x3d\x4e\x7e\xcc\x36\xb0\x7f\x11\xb3\x70\x8a\xd8\x90\x68\x31\xd0\x64\x81\x95\x06\x7e\xb7\x8d\xf9\xb3\x33\x60\xad\x0d\xb1\x1c\x79\x6b\x0f\x2f\xa8\xfe\x09\x7f\x0e\x35\x59\x44\xdf\xba\xf5\xb6\x9b\x6f\x82\xbb\x1d\x71\x5d\x9b\xe2\xd3\xea\xe1\x45\xd4\xfc\x15\x5b\x62\x4a\x54\x94\x96\xcd\x92\x7f\xd1\xfe\xc0\x44\xf4\xf3\x7c\x2b\x2b\xfb\x9b\xff\x83\xb5\xcf\x1a\x6a\x79\xe6\x58\xcb\x4e\x55\xc7\xdc\x51\xf6\x77\xac\xed\x84\xc1\xcf\x30\xc0\xbc\x22\x35\x45\x7a\x3b\xf2\x72\xf2\xd0\x8b\x30\xcd\x4c\x03\x6b\xa4\x88\xa5\x9b\xee\xbd\x9b\xfe\x65\x9d\xdb\x46\xa6\x61\xfc\x1f\xf6\x8d\xfc\x65\x68\x87\xf1\x56\x54\xcd\xe0\xb3\x3b\xf4\xd4\x2a\x8f\x3a\x3c\x62\xf7\xcf\x9a\x59\xfa\x1c\xe9\x7e\xe6\xc4\x92\xed\x89\xa0\x63\x68\x39\x7a\xa2\xf0\x94\x11\x1e\x1e\x3d\x36\xaf\xb4\x2b\xa0\xa7\xe0\xe4\x61\xa5\x2e\x86\x76\x5a\xe9\x29\xf8\x9f\x00\x00\x00\xff\xff\x19\x2f\x5b\xb5\x82\x3c\x00\x00"), }, - "/src/internal/syscall": &vfsgen۰DirInfo{ - name: "syscall", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245474927, time.UTC), - }, - "/src/internal/syscall/unix": &vfsgen۰DirInfo{ - name: "unix", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245504927, time.UTC), - }, - "/src/internal/syscall/unix/unix.go": &vfsgen۰CompressedFileInfo{ - name: "unix.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245532010, time.UTC), - uncompressedSize: 473, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x5c\x91\xc1\x6a\xe3\x30\x10\x86\xcf\xd1\x53\xfc\xe4\xb2\x36\x6b\xe2\xcd\x1e\x17\xf6\x50\x28\x2d\xa1\x25\x87\x26\x39\xf4\x54\x14\x5b\x76\x94\xc8\x33\x42\x1a\x91\x86\x92\x77\x2f\x76\x4c\x48\x2a\xd0\x61\xf4\x69\x3e\xfd\x62\xca\xb2\xe5\x7f\xdb\x64\x5d\x8d\x7d\x54\x65\x89\xdf\xd7\x42\x79\x5d\x1d\x74\x6b\x90\xc8\x7e\x2a\x65\x3b\xcf\x41\x30\x8d\xa7\x58\x69\xe7\xa6\x4a\x55\x4c\x51\x90\xa9\x49\xd0\x54\x73\xb7\x0e\xda\x63\x5c\xc9\x92\x78\x09\xf8\x8f\x3f\x6a\xd2\x44\xd1\xa2\xe5\x86\xdf\xe1\xd6\xc8\x0f\xc1\x1d\xae\xd8\x9f\x9e\xac\x33\x6f\x9a\x5a\x33\x5c\xb9\xc5\xb9\x52\x4d\xa2\x0a\x8b\xb8\x64\xda\x3a\xae\x0e\x59\x53\xc3\x92\xe4\xc8\x68\x3c\xb1\xd4\x62\xcb\xec\x0a\x98\x10\xfa\xcd\x21\xc7\x97\x9a\x04\x23\x29\x10\x1a\xed\xa2\x29\x40\xd6\xa9\xf3\x68\x4b\xe4\x2c\x1d\xb4\x64\xb5\x0d\x17\x5d\x01\xaf\x65\x87\x28\xc1\x52\x5b\xa0\x71\xba\x8d\x97\x67\x06\x5f\xaf\x2b\x4b\xac\x77\x26\x98\x5f\x11\xc4\x58\xbd\xaf\x3e\x36\xcb\xd7\xc5\xf2\xe5\x61\x8d\xda\x34\x96\x4c\x2f\xc2\x33\x63\x3e\x9b\xff\x45\xc3\x01\x8f\x3a\x1c\x2d\x15\x43\x6b\x64\xec\x53\x14\xd8\xce\x3b\xd3\x19\x92\x6b\x08\xa4\xd8\xff\xe0\x52\x0e\x7d\xc4\xc7\xd9\x35\xfe\x38\x8f\xd9\x66\xe0\x59\x1f\x33\x57\x67\xf5\x1d\x00\x00\xff\xff\xf8\x3e\x05\xb7\xd9\x01\x00\x00"), - }, - "/src/internal/testenv": &vfsgen۰DirInfo{ - name: "testenv", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245605343, time.UTC), - }, - "/src/internal/testenv/testenv.go": &vfsgen۰CompressedFileInfo{ - name: "testenv.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245636260, time.UTC), - uncompressedSize: 438, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\x8f\xc1\x6e\xf2\x30\x0c\x80\xcf\xf5\x53\x58\x39\xb5\xfa\x7f\xb5\x77\x6e\x13\x9a\xc6\x0d\x34\x9e\x20\x04\xb7\x0d\x6b\x12\x64\x3b\x2b\x68\xe2\xdd\xa7\x30\x18\xd2\x36\x29\x97\xf8\x4b\x3e\x7d\xee\xba\x21\x2d\x76\xd9\x4f\x7b\x3c\x08\x74\x1d\xfe\xfb\xbe\xc0\xd1\xba\x37\x3b\x10\x2a\x89\x52\x7c\x07\xf0\xe1\x98\x58\xb1\x86\xca\x70\x8e\xea\x03\x19\xa8\x8c\x28\xfb\x38\x88\x81\x06\x8a\x60\x65\xe5\xf9\x44\x0e\x99\xca\x63\xc1\x79\x24\x1d\x89\x51\x47\x42\x97\x99\x29\x2a\xca\x59\x94\x02\x3a\x1b\x51\xd4\xb2\x62\xa4\x19\x8f\x9c\x1c\x89\xd0\x35\x23\x8b\x8f\x03\x26\x69\xb7\x85\x6f\xbe\x10\x26\xc6\x3a\x24\x26\x74\x29\x84\x14\xa7\x73\x83\x74\x22\xd7\x2e\x53\x08\x36\xee\x5b\xe8\x73\x74\xf7\x82\xba\xc1\x5d\x4a\x13\x7e\x40\x25\xb3\x57\x37\xe2\x2d\xba\x7d\x59\xaf\xb7\x65\xec\xac\x10\x9a\x68\xdd\x64\x16\x50\x55\x4c\x9a\x39\x62\x6f\x27\xa1\x3b\xdc\x5b\x9e\x7d\xbc\x62\xdf\xe3\x6d\xd5\x76\x65\x65\xc3\xd4\xfb\x53\xfd\x50\x3e\xbd\x2e\x57\xff\xd1\x58\x0e\xa6\x29\xf2\x9f\xbe\xea\x02\xe5\xfc\x4a\x29\xff\x1e\x31\x07\xf9\x23\xe5\x02\xf7\x81\x72\x26\xb8\xc0\x67\x00\x00\x00\xff\xff\x4f\xb5\x9f\x79\xb6\x01\x00\x00"), - }, "/src/internal/unsafeheader": &vfsgen۰DirInfo{ name: "unsafeheader", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245693093, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/internal/unsafeheader/unsafeheader_test.go": &vfsgen۰CompressedFileInfo{ name: "unsafeheader_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245722801, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 214, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x4c\xce\xb1\x4a\x04\x41\x0c\xc6\xf1\xda\x3c\x45\xd8\xea\x4e\x61\xa7\xf7\x05\x14\xdb\x5b\xb0\x94\xb8\x9b\x9d\x89\x37\x9b\x19\x92\x4c\x25\xbe\xbb\x28\x22\x57\xfe\xe0\xfb\xe0\x9f\x52\x6e\x8f\xef\x43\xea\x86\x1f\x0e\x29\xe1\xc3\x3f\xa0\xd3\x7a\xa5\xcc\x38\xd4\x69\xe7\xc2\xb4\xb1\xbd\x05\x7b\x00\xc8\xd1\x9b\x05\x4e\x3f\x12\xcd\x13\xc0\x3e\x74\xc5\x85\x3d\x5e\x4d\x82\x97\x62\x6d\xe4\xf2\xfc\xfb\x39\x05\xde\xff\x0d\xe7\xe5\x8c\x9f\x70\x17\xf3\xe5\x2a\xfd\x34\x3d\xb5\x5e\xd8\x5e\x2e\x38\x9c\x1d\x37\xd9\x77\x36\xd6\x40\xaf\xb2\x32\x92\x6e\xe8\x61\xa2\x19\xe5\xe8\x95\x0f\xd6\xa0\x90\xa6\x18\x85\x14\x45\x83\x4d\xa9\xa6\xdb\xbe\x79\x3a\xc3\x17\x7c\x07\x00\x00\xff\xff\xb8\xd7\x8d\xb7\xd6\x00\x00\x00"), }, "/src/io": &vfsgen۰DirInfo{ name: "io", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245801759, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/io/io_test.go": &vfsgen۰CompressedFileInfo{ name: "io_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245831425, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 561, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\x90\x41\x8b\x14\x31\x10\x85\xcf\x9b\x5f\xf1\x98\xd3\x8c\x2e\x9d\x15\x6f\x7b\x13\x71\x05\xd1\x8b\x3d\xe0\x71\x49\xa7\x6b\x92\xda\x4d\x27\x4d\x55\xc5\x75\x14\xff\xbb\xd8\x2b\x2e\x2a\x9e\x92\x7a\x50\xdf\x7b\xf5\xbc\x4f\xed\x7a\xea\x5c\x66\xdc\xa9\xf3\x1e\xcf\x7f\x0f\x6e\x0d\xf1\x3e\x24\x02\xb7\x5b\x23\x35\xe7\x78\x59\x9b\x18\xf6\xee\x62\xf7\x53\xe0\x9a\x76\xee\xe0\xdc\xa9\xd7\x88\x23\xa9\x7d\xe8\xc5\xf8\x93\xb0\x91\xdc\x6e\xcf\x68\xc2\x35\x8d\x5c\x53\xa1\x57\xa5\xb4\xb8\x37\x3c\xfb\xb5\x3a\x1c\x0f\xf8\xe6\x2e\x6c\x18\xef\x79\xdd\x1f\xdc\xf7\xbf\x41\x1f\x29\xcc\x24\x37\x42\xa4\x6f\xbe\xe4\xd0\xd5\x68\x7e\xd4\xf4\xbf\x98\x2d\x17\x84\x0a\x93\xa2\x55\x48\xaf\xc6\x0b\x0d\x23\xd9\x0d\xd7\x50\xf8\x2b\xc9\x25\x1e\x32\xc7\x8c\xb7\x6d\xcd\x24\xef\x46\xcc\x8d\x14\xb5\x19\x78\x59\x0b\x2d\x54\x6d\xf7\x67\x9c\xd7\x6d\x3d\xbf\x0f\x92\xe8\xf1\xb6\x7f\xdd\xbd\xc7\x31\xb3\x62\x73\x0f\xd1\x7a\x28\xe5\x8c\x89\x72\xf8\x4c\x8a\xa5\x09\xa1\x09\x0a\xa9\x22\x36\x11\x8a\x56\xce\x97\x98\xba\x81\x0d\x26\x9c\x12\x89\x22\x6c\xa0\x99\x4f\x27\x12\xaa\x86\xd8\x66\xc2\x1a\x2c\xc3\x72\x30\xac\xa1\x72\x54\x70\x55\xa3\x30\xa3\x9d\x20\x64\x5d\x2a\xd7\x84\x50\x41\x22\x4d\x30\x77\x82\x35\x04\x4c\x3d\x6d\x38\xa1\x8d\x16\x69\xc6\x44\xa5\x3d\x0c\x4f\x5d\x65\xb3\x55\xaf\xbd\x4f\x6c\xb9\x4f\x43\x6c\x8b\x4f\x5b\x27\x77\xfa\xf4\x61\xd5\x4e\xea\x5f\x5c\x5d\xbd\xdc\x5a\xf9\x11\x00\x00\xff\xff\x34\x73\x15\xd6\x31\x02\x00\x00"), }, "/src/math": &vfsgen۰DirInfo{ name: "math", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246298797, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/math/big": &vfsgen۰DirInfo{ name: "big", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246006966, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/math/big/big.go": &vfsgen۰CompressedFileInfo{ name: "big.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 245931258, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 188, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x44\x8d\xbd\x8a\xc3\x30\x10\x84\x7b\x3d\xc5\xf6\x07\x5e\x38\xb8\x2b\x5c\xa7\x37\x04\x43\x6a\xd9\x5a\x4b\xf2\xdf\x8a\xdd\x95\x43\xde\x3e\x38\x81\x64\xaa\x19\x66\x98\x0f\x31\x72\x3b\xd4\xbc\x06\x98\xd5\x21\xc2\xcf\x27\xb8\xe2\xc7\xc5\x47\x82\x21\x47\x77\x56\x7d\x77\xe9\x5a\xe8\x53\x56\xc8\x0a\x1e\xee\x2c\x8b\x17\xae\x7b\x80\x89\x05\x92\x59\xd1\x16\x31\x66\x4b\x75\x68\x46\xde\x30\x72\x49\x24\xb3\x7e\x4d\x56\xad\xa4\xf8\xff\xf7\xdb\x9c\x97\x6f\x5d\x69\xe3\x83\xc0\x4f\x46\x02\x96\xbc\xc1\x6b\x76\x52\x84\x94\xd7\x83\x42\xe3\xec\x51\x08\x6e\x2c\x01\x6a\xde\xad\x98\xb8\x67\x00\x00\x00\xff\xff\xa7\x68\x35\x36\xbc\x00\x00\x00"), }, "/src/math/big/big_test.go": &vfsgen۰CompressedFileInfo{ name: "big_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246032007, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 247, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\xcc\xc1\x4a\xc4\x30\x10\xc6\xf1\xb3\xf3\x14\x43\x2e\xb6\x0a\xcd\xdd\xa3\x3d\xf4\xa2\xa7\xf6\x05\xda\x74\x1a\xc7\xd4\x24\x66\xa6\x88\x88\xef\xbe\x6c\x59\x96\x65\xa1\xc7\x8f\x3f\xbf\xcf\x5a\x9f\x5e\xa6\x8d\xd7\x19\x3f\x05\xac\xc5\xe7\xeb\x80\x3c\xba\x30\x7a\xc2\x89\x3d\x00\x7f\xe5\x54\x14\x8d\x92\x28\x47\x6f\x00\x96\x2d\x3a\x1c\x48\xf4\xf5\x57\x49\x2a\xc5\xa7\x4b\x6b\x86\x1a\xff\xe0\x41\x9b\x3e\x70\xae\xcc\x54\x52\xa0\x68\x6a\xf8\xbf\x31\xef\x69\xee\xbf\x8b\x1e\x2b\x59\xd3\xcf\x9d\x79\xe3\x18\xa8\x74\xed\x31\x1a\x3e\x08\xcf\x05\x59\x50\x32\x39\x5e\xd8\xa1\x26\xec\xda\x47\xc1\x75\xe7\xcd\x7e\x7a\x0a\x00\x00\xff\xff\x8e\x09\x78\xd7\xf7\x00\x00\x00"), }, "/src/math/bits": &vfsgen۰DirInfo{ name: "bits", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246085257, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/math/bits/bits.go": &vfsgen۰CompressedFileInfo{ name: "bits.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246117257, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 2008, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xac\x55\xc1\x6e\xe3\x36\x10\x3d\x93\x5f\xf1\x10\x60\xb7\x52\x1c\xc7\x92\x1d\xf8\x10\xc8\x06\x02\x6c\xd1\x4b\x8b\x02\x7b\x29\xd0\x43\x17\xb2\x45\xdb\x6c\x2c\xd2\x22\x29\x2b\x6a\x9c\x0f\xe8\x67\xf4\xd7\xfa\x25\xc5\x90\xb4\xd6\xee\xee\xa1\x28\xf6\x62\x8b\x6f\x66\x1e\x1f\x1f\x67\xa4\xc9\x64\xab\x1f\x57\xad\xdc\x57\xf8\xdd\xf2\xc9\x04\xa3\x61\xc1\x0f\xe5\xfa\xb9\xdc\x0a\xac\xa4\xb3\x9c\xbb\xfe\x20\xf0\x49\x18\x03\xeb\x8c\x54\x5b\xce\x37\xad\x5a\x23\x09\x60\x8a\xef\x8d\xd1\x26\x49\x63\x14\xaf\x9c\x19\xe1\x5a\xa3\x22\x90\x88\x94\xbf\x71\xda\xe1\x63\xab\x9c\xac\x85\xcf\x87\xac\x0f\x7b\x51\x0b\xe5\x2c\x4c\xc0\xef\x7d\xe0\xfe\x5f\xec\x97\x45\x49\x8a\x57\xe2\x3a\x96\x06\x09\x67\xfa\x28\xcc\x66\xaf\xbb\x40\x28\xfc\xef\xc2\x97\x25\x37\x91\x33\xa0\x8f\x90\xca\x89\xad\x30\x38\x97\xdc\xa4\x9c\x55\xf2\x28\xab\xa8\x06\xff\xad\x3c\x94\x60\xd5\xe3\x0f\x61\xf4\x4d\xca\xd3\x68\xc6\x4f\xed\x7e\x36\x4d\x5e\xee\xd0\xa3\x95\xca\xcd\xa6\x29\x92\x9d\xbc\xc3\x5e\x0f\xeb\x57\xce\x26\x13\x3c\x1d\xb5\xac\x60\xf7\xba\xc3\xfc\x61\xbc\x92\xee\xcc\x6d\xb1\xd1\x06\x2b\xe1\x9c\x30\x38\x08\xb3\xd1\xa6\x2e\xd5\x5a\xdc\xe3\xa9\x2a\x0f\x4e\x54\xd8\x18\x5d\xd3\x46\xf3\x87\x24\xbd\xe7\x6c\xad\x95\x75\xa8\x4b\xfb\x9c\xcf\xb1\x40\x5e\x14\xf9\x1c\x63\xe4\x9c\xbd\x64\x78\x5c\xe0\x05\xef\x63\x94\xb3\x97\x3c\x20\xcb\x25\x68\xd9\xfb\x84\xfe\x22\xa1\xcf\x03\x12\x13\xba\xc0\x90\xe1\x16\x7d\xc6\x99\xf3\xab\xfc\xb6\xcf\x30\x42\x97\x2d\x97\x3e\xc7\x97\xb8\x0b\x92\x6e\x1a\x90\x33\x49\x8e\xd1\x99\x24\xe7\x6c\x27\x11\x48\x72\x22\x99\xd2\x4f\x1e\x98\xf6\x9a\x22\x94\x76\x6e\x1d\xba\x64\xef\xeb\x53\x55\x45\x5f\xef\xb0\x2e\x8d\xb9\xb0\xd7\xb6\x75\xc4\x7e\x6e\xdd\x37\x76\xf9\xa9\xaa\xa2\xcb\xb6\xad\xbd\xb8\x11\x7a\x8c\xc2\x76\x9c\x0d\xbb\x2e\x90\x24\xe4\x73\x9f\xe2\xe4\x1f\x4f\xf4\xf8\xfe\x37\xd8\xb6\x4e\x53\x32\x62\x96\x7f\x71\xa6\x0f\xf2\x38\x9b\xc6\xee\xb8\x6a\x98\xa6\xd5\x77\x30\xa2\xfe\xc6\x87\xf9\x20\x8f\x57\x2d\x93\x70\xc6\x5c\xa7\xf3\x39\xa8\x6d\x50\x14\xfe\xb6\xd8\xd0\x49\x21\xe6\x3b\x29\xe5\x4c\x6e\xd0\x63\xb1\x40\x46\x6a\xd8\xa1\x54\x72\x9d\x5c\x4c\x4e\xca\xd9\x5b\x4c\x2a\x16\xd8\xc9\x8b\xac\xab\xf1\xf4\x79\x9c\x59\xea\x10\x3a\x5e\xf2\xa3\x28\x2b\xa9\xb6\xbf\x0a\xa3\xed\x6c\x9a\xf4\x69\xca\x59\x8f\xa2\x58\xc0\x72\xce\x7a\x75\xdd\x90\xbd\xfa\xa2\x65\x5b\x95\xcf\x09\xdb\xc9\xa2\xb0\x38\x61\xaf\x97\xcb\x64\x36\x1d\xdb\xd4\xc7\x7c\xfe\x5e\xd3\xf1\xac\x07\xfc\xce\x84\x47\xca\x36\x50\x7a\xe8\x33\x6b\x73\xce\x9b\x63\x82\x5e\xd1\xed\xed\x4a\x37\x60\x63\x34\xf9\x2d\xc1\x9c\x91\xf7\x4d\x8e\xe5\xd9\xb0\xd3\x29\xc4\x32\x2c\x03\x72\x4b\x95\x23\xda\x99\x3c\x69\xf2\xf1\x98\xb3\xc0\x36\x5a\x04\x6a\xf2\xcd\x03\x03\x09\x65\xb2\x95\x11\xe5\x33\x67\x64\x2c\x79\xd6\xaa\xe9\x20\xea\x36\xa4\x8d\x68\x11\xc5\x70\xd6\xc4\x83\x4c\xf3\x2b\xcd\x11\x1a\xa3\xc9\x2e\x25\x67\xd7\x92\xb3\xaf\x49\x0e\x97\xdd\x64\xff\x57\x72\xfc\x00\x34\xf9\xa0\xb7\xc9\xee\x90\x90\x9e\x8b\x13\x64\x51\x9b\x1f\x14\x3b\xcc\xc7\x47\x51\x7f\x75\x3e\xc2\x7f\x1c\x8a\x5f\x04\xec\xba\xdc\x0b\x54\xba\x53\xd4\x77\x56\xc3\x91\xae\x9d\x44\x41\x6f\x0b\xb7\x13\x0a\xad\x15\x61\xdc\xe0\x34\xd6\xba\x3e\xb4\x4e\x50\xc4\x53\xd0\xa4\x75\xd2\xed\x08\xc0\xb6\x2d\x4d\xa9\x9c\x10\x81\x45\x3a\x74\x5a\x7d\xe7\xe0\x5b\x19\x5a\xa1\x69\xb5\x93\x42\xb9\xe1\x13\x72\xef\x49\x7e\x90\x47\xa1\x7c\x8d\x5f\x82\xf6\xff\xfb\xcf\xbf\xb0\x93\xef\x7a\x00\x48\x6a\x5d\xa1\x4f\x7d\xb0\x13\xd8\x95\x47\x31\x24\x16\xc5\xfc\x01\x23\x6a\x52\xaa\x48\xa8\x24\xfd\x8c\x5d\x16\x7f\x0a\xef\x85\xc7\xc5\xf0\xf2\x78\xd7\x47\x7b\xd2\xc1\x6d\x23\x6a\xfe\xc6\xff\x09\x00\x00\xff\xff\x61\xa0\x53\x1f\xd8\x07\x00\x00"), }, "/src/math/math.go": &vfsgen۰CompressedFileInfo{ name: "math.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246232048, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 4599, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x57\x6d\x6f\xdb\x36\x10\xfe\x6c\xfd\x8a\x9b\x31\x74\xd2\xaa\xd8\x96\x12\x04\x45\x11\x17\xe8\x82\xa5\x2b\xd0\x76\xc3\xd2\xee\x4b\x60\x0c\x94\x4c\xda\x4c\x25\x52\x25\xa9\x58\x6e\x93\xff\x3e\x90\x7a\xa3\x14\xcb\x2f\xfb\x64\x93\x77\xf7\xdc\x73\xc7\x3b\xf2\x34\x9d\xae\xf8\xeb\x28\xa7\xc9\x12\xee\xa5\x33\x9d\xc2\xcb\x66\xe1\x64\x28\xfe\x8a\x56\x18\x52\xa4\xd6\x8e\x43\xd3\x8c\x0b\x05\xae\x33\x1a\xaf\xa8\x5a\xe7\xd1\x24\xe6\xe9\x74\xc5\xb3\x35\x16\xf7\xb2\xfd\x73\x2f\xc7\x8e\xe7\x38\x0f\x48\x18\x43\x98\xc3\xbd\x9c\xbc\x4b\x78\x84\x92\xc9\x3b\xac\xdc\xf1\x47\xa4\xd6\x63\xcf\x28\xfc\xfb\x1d\x0b\x0e\x24\xe1\x48\x5d\x5e\xc0\x1c\x66\x66\x37\xe3\xf2\x3d\x23\x30\x87\x00\xa6\xa5\x8a\xd9\x66\x78\x55\x6e\x9f\xf5\xf6\x11\xd3\xa6\xcd\x9e\x43\x72\x16\xc3\xdb\x98\x4b\xb7\xa8\xb1\xbd\xc6\xc9\x0f\x67\x24\xb0\xca\x05\x33\xec\x26\xd7\x28\x49\xdc\x31\x8a\xb9\x1c\xfb\x50\x78\x93\x1b\xad\xe6\x7a\xce\x93\x05\xb3\x3e\x09\x67\x3d\x00\x24\x29\x3b\x1e\x47\x52\x36\x0c\xb3\x3e\x09\x67\x88\x8f\x42\x27\xf0\x51\x88\x0d\xc3\xac\x4f\xc2\xd9\xc3\x27\x74\xb7\x3e\x9c\x82\x15\x8e\x7d\xd8\xee\x84\xbb\x8e\x84\x3a\x9a\x56\x1c\x09\xb5\x9b\xd5\x35\xa6\xc9\xf1\x30\x98\x26\x03\x30\x3c\xdb\x4a\xba\x62\x6e\xe1\xc3\x76\x27\x1a\x25\xe0\x16\x70\x05\x33\x78\x7c\x84\x60\x5a\xc0\x7c\x5e\x15\xbc\x07\x3f\xcd\xc1\xdd\xb6\xb2\xad\x2d\xfb\xe1\x8c\x6a\x26\x67\x85\x33\x7a\x6a\x78\x15\x96\xf3\xe3\x1b\x61\xb0\x0f\xae\x4f\x69\x83\xe1\x2e\xf8\x5d\x90\xfd\x28\x58\x2b\x74\xf4\xe3\x83\x06\x71\xc7\xa2\xc8\x8e\xe6\x89\x8b\x6c\x80\x66\x91\x85\x47\xa3\x64\x7c\x33\xf6\x21\x1c\x02\x4a\x83\x03\x01\x94\x2a\xad\xcd\x4d\xc2\xb9\x38\xda\x3b\xd1\xda\xbb\xa3\xb8\x11\xb8\xc8\x5c\xd2\x02\xb9\x44\xa0\xb8\x5e\xfa\xda\x33\x50\xa6\x3c\x0b\x98\x94\x26\x2d\xc6\x1f\xdb\x8c\x2b\x37\xf3\xe1\xdb\x3e\x3e\xeb\x46\xab\xb5\x7c\xcf\x88\xab\x6b\xbe\x74\x61\xd9\xc8\x0d\x55\xf1\x5a\xff\x8b\x91\xc4\x60\x74\xde\xcc\x61\xf6\xba\x2d\xe5\xf2\x05\x70\x46\x4b\x4c\x50\x9e\x28\x4b\x52\xd6\xbd\x2e\xf4\xc6\x8f\x56\x6d\xa3\xf4\xa1\x75\x1a\x71\x9e\x54\xcd\x45\x74\xd3\x54\x0f\x8b\xd5\x33\x8d\x73\xd3\x3a\xb5\x5e\xf5\xd2\xf4\xf5\xae\x6a\xbd\x3a\x59\x28\x91\xd8\xe2\xf1\x09\x7d\xea\x64\x9b\x4a\xc3\xa0\x93\x5f\xdd\xcc\xa4\xb1\xf9\xb0\x34\xe9\xde\x7d\x2a\xdd\xdb\xe1\x2c\x98\x85\x17\x70\x65\xc4\x2f\x5e\x98\x9f\x2b\x30\x7b\x3f\x60\x3a\x85\x2f\x12\x83\x7e\x58\x27\x19\xdf\x00\xe1\x02\x64\x8a\x92\xc4\xa8\x3d\xa0\x24\xc7\x12\x36\x6b\x2c\x30\x50\xf5\x8b\x84\x07\x8a\xa2\x04\x4f\xe0\x86\x0b\xc8\xb0\x20\x5c\xa4\x88\xc5\x78\xe2\x8c\x4c\x0a\x34\x9d\xb9\x7e\x51\x75\x02\xda\xca\x40\xb1\x33\xd2\xd1\xdb\x3b\xf0\xeb\xce\x4e\xc0\x45\xd6\x96\xa3\x95\xb1\xa4\x89\xb7\xd4\x69\x13\xc1\x57\x03\x15\x4f\x09\x14\x3a\x69\x45\x19\xe7\x86\x8b\xaf\x48\xf0\x9c\x2d\x4d\x94\x3c\x53\x34\xa5\xdf\xb1\x80\x28\x5f\x01\x65\xf0\xcf\x2b\x1f\x04\x4e\xf9\x03\x06\xa4\x40\xf2\x14\x43\xc6\x29\x53\x56\x05\x21\x66\x53\xb2\xe8\x27\x7c\xb5\xbb\x91\x3e\xf0\x55\x30\xdb\xdf\x91\x49\xa9\xd2\xb5\xc9\x0e\xdb\x64\x3d\x9b\xf0\xa0\x49\x68\x5b\x7c\x44\xc5\xf0\x9b\xd2\x44\x58\xea\x58\x56\x94\x1d\xb6\xaa\x74\x2c\x2b\xbe\x3c\x68\xd5\x8e\x7a\x65\x4a\x7f\x4e\xf9\x52\xe7\x54\x03\x3d\x4b\xeb\x47\xbe\x24\xdd\xeb\xa9\xee\x81\x66\xeb\x79\xf3\x3e\x3e\x0e\xf5\x28\xf1\x9b\xb3\xa5\x04\x82\xe9\xb0\x9a\xb9\x3f\x46\xa6\x7e\x5f\xcf\x4d\x5c\xc4\x87\xc0\xb3\xba\xf4\x0c\xca\x22\x35\x55\x5f\xf3\xd5\xfd\xbd\x2b\x68\xed\xb5\xd6\xf9\x8b\x6f\xf6\x3e\xf2\xe6\x61\x0f\x74\x14\xae\xf9\x7b\x16\xe8\x6e\x76\xb7\xdd\x08\xed\x27\xbe\xf3\xc6\x07\x03\xa5\x5b\x76\xde\xee\x34\xff\x8d\x53\x44\xd9\x12\x8b\x83\xa7\x27\x3a\x9a\x2d\xc2\x2d\x5d\xb1\x88\x76\xe6\xa9\xfa\x6a\xad\xa7\x8d\x9d\xa3\x8b\x05\x70\xfc\xac\x39\x38\xfa\xde\x9e\x32\xf9\x0e\x0f\xbe\xb7\x94\xf5\x3e\x0d\x5c\x49\x99\x0f\x31\x97\x9d\xba\xab\x30\x0d\x75\xcf\x2f\xa7\x28\x0b\xe5\xdb\x09\xf3\xa5\xfc\x36\x34\x5f\x7e\x3e\x61\x08\x1f\x9c\xc1\x3f\x9f\x32\x82\x0f\x4f\xe0\x9f\x45\xce\xe2\x7d\xb7\x70\xa7\x44\xad\x63\x2e\x97\xe6\x8e\xee\x57\x80\x5d\xbb\x9d\xf1\xb4\x99\x88\x2b\x27\x2e\x65\xca\x2d\x3c\x4f\x33\xd3\x8c\xf4\x87\x5d\x94\x13\x90\x4a\xe4\xb1\xd2\x30\x39\x65\xea\x3c\x44\x42\xa0\x2d\xc0\x5d\xb8\x28\xd7\xce\xc8\x00\xd4\x82\xbb\x70\x51\xad\x2b\xc1\xe5\x45\x25\x08\x16\xd5\xba\x89\x97\x32\xaa\x5c\x73\xd4\x28\xd2\xf7\x40\xef\x33\xf5\xad\xb6\xfb\x2d\x27\x04\x8b\xb1\x37\xf9\x84\x37\xee\x2b\xcf\x19\xdd\xcb\xc9\x7b\xa6\xb0\x60\x28\xf9\x33\xba\xc7\xb1\x72\xa3\x9c\x78\x93\x5b\x6d\x61\x31\x1c\xfb\x7d\xb8\x2f\x46\x68\x40\x2b\x38\x14\x79\x07\x00\xed\xd0\x9e\x23\xde\x94\xd2\xff\x01\x59\x25\x65\x00\xf2\xf2\xe2\x19\xa4\x35\x9a\x6a\x97\x11\x55\xb2\xbe\xb8\xcf\x43\x0f\xca\xc0\x75\x26\xa3\x9c\x4c\x6c\xd6\x77\xb3\x05\xe8\x81\xa7\x3e\x76\x2d\xb7\xd2\x74\x37\x5b\xf4\xb1\x89\xe0\xa9\xc1\x8f\x2a\x58\xaf\xf6\x53\xe3\x77\xed\x61\x0e\x51\x07\xbe\xe7\xbe\x8b\x7f\x79\x61\x73\xd7\x45\xae\xd1\xca\x1a\x6f\x8c\xab\xf4\xf4\xb9\x97\x9a\x6e\x9f\x42\xb0\xf0\xae\xae\xce\x43\x78\x39\xa4\x30\x5b\x78\x7d\x12\xbd\x20\x7b\xcd\xb6\x33\xc8\x72\xc3\x8d\xbc\xe7\xf2\xc0\x96\xc3\x9b\x37\x70\x1e\x7a\xcf\x53\xd2\x46\xe5\x3c\x39\xff\x05\x00\x00\xff\xff\x00\x90\x94\xca\xf7\x11\x00\x00"), }, "/src/math/math_test.go": &vfsgen۰CompressedFileInfo{ name: "math_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246325089, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 718, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\x92\x41\x6f\x9b\x40\x10\x85\xcf\xe1\x57\x3c\xf9\x12\xbb\x25\x46\x91\xdc\x1c\x72\xf1\xa5\x51\x95\x43\xe5\x4a\xf1\xbd\x1a\xf0\x00\xd3\x2c\xbb\x74\x67\x08\x46\x51\xfe\x7b\xb5\xb6\x1b\x72\x09\x27\x16\xe6\x7d\xef\xcd\xd3\x16\x45\x13\xee\xcb\x41\xdc\x01\x7f\x34\x2b\x0a\x7c\x7d\x3f\x64\x3d\x55\xcf\xd4\x30\x3a\xb2\xf6\xb7\xb1\x5a\x96\x49\xd7\x87\x68\x58\x66\x57\x8b\xf4\x41\x7c\xb3\xc8\x56\x59\xd2\x3d\x39\x69\x5a\x37\xa1\x95\xa6\xe5\x08\x0b\x8e\x23\xf9\x8a\x15\xd6\x92\xc7\xd0\xab\x45\xa6\x2e\x47\xb0\x96\xe3\x28\xca\xd8\xb3\xda\x0f\xea\x3a\x42\x4d\xe2\x74\x9d\x30\xfb\xdd\xf7\xdd\x3d\x1e\x93\x8a\x23\x83\x50\xb2\x19\x47\x8c\x34\xc1\x02\x6a\x39\xce\xb2\x2d\x1e\xed\x5a\x31\xb2\xc4\x43\x72\x31\x04\xef\x26\x04\xcf\x38\xa5\x2d\x0a\x9c\x9f\xc8\x7f\x07\x89\xac\x10\x5f\x45\x26\x15\xdf\x7c\x08\xb8\xc6\x2f\x8e\x2d\xf5\x17\xcf\x6b\x9d\x5d\x6b\x39\x6e\xf1\x93\xa6\x92\x31\xf2\xcc\xd3\x36\x0c\xee\x80\xf0\xc2\x31\xca\xe1\xe3\x22\xda\x73\x25\xb5\x54\xe4\xdc\x04\xf2\x07\xf8\x60\x09\x8b\x4b\x97\x37\x63\x9a\x9f\xbd\xf3\x19\x5a\x72\x45\x83\x32\xac\x15\xc5\x28\xce\xe1\x7c\xee\xc8\x4f\xe7\xd2\x4e\x5b\x69\xaa\xa1\x64\x38\x56\x05\x55\xd5\x10\xc9\x78\x8d\x5d\x44\x77\xca\x99\xe4\x33\x54\x14\xb5\x78\xde\x66\xf5\xe0\x2b\x54\x2e\x28\x2f\x29\x47\x89\xda\x05\xb2\xbb\xcd\x0a\x65\x08\xee\x34\xfa\x8a\xc8\x36\x44\x3f\xa7\x3b\x4d\xe6\xd8\xf0\xcd\xed\x66\x85\xb7\x33\xe3\x85\xe3\xf4\x29\xe7\x53\xc6\x1d\xdf\xdc\x7e\x4b\x8c\x33\x24\x2d\xf2\x70\xec\x97\x86\x2f\x97\x6b\xb4\xde\xe7\x78\x38\xf6\x48\xbf\x97\xef\xd0\xcb\x4b\x0e\x4f\x1d\x43\x2d\x8a\x6f\x56\x78\xcd\xae\x6c\xfd\xf4\x2c\xfd\x72\x21\xfe\x7f\x05\x8b\x55\xf6\x96\xfd\x0b\x00\x00\xff\xff\x2e\xfc\xac\x80\xce\x02\x00\x00"), }, "/src/math/rand": &vfsgen۰DirInfo{ name: "rand", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246390255, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/math/rand/rand_test.go": &vfsgen۰CompressedFileInfo{ name: "rand_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246414380, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 179, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\xcb\x31\xaa\x02\x31\x10\x80\xe1\xfa\xcd\x29\x86\x54\xbb\x4f\xd8\x80\x76\xb6\x82\x17\x70\x7b\x89\xd9\x18\xe2\xc6\x99\x90\x99\x20\x22\xde\x5d\x14\x11\x1b\xcb\x9f\x9f\xcf\xda\xc8\xeb\x43\x4b\x79\xc2\x93\x80\xb5\xb8\xf8\x04\x14\xe7\x67\x17\x03\x56\x47\xd3\x5e\x83\x28\x40\x3a\x17\xae\x8a\xe6\x59\x89\xa2\x01\x38\x36\xf2\x38\x06\xd1\x6d\x66\xa7\xab\x65\xa7\xf8\xff\xbe\xc3\xd8\xe3\x0d\xfe\x74\xd8\xcd\xa9\x74\x46\x32\x5f\x4c\x0f\xf7\x2f\xb3\x61\xf2\xad\xd6\x40\xfa\x9b\x35\x49\x14\x91\x58\xae\xe4\x5f\xfc\x11\x00\x00\xff\xff\xce\xb8\x1e\x3a\xb3\x00\x00\x00"), }, "/src/net": &vfsgen۰DirInfo{ name: "net", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246785627, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 9, 991777300, time.UTC), + }, + "/src/net/fastrand.go": &vfsgen۰CompressedFileInfo{ + name: "fastrand.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 391777300, time.UTC), + uncompressedSize: 147, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\xcc\x4b\x8a\xc3\x30\x10\x84\xe1\xf5\xd4\x29\x0a\xaf\x6c\x06\xd2\x90\xec\x7c\x80\x5c\x23\x74\x6c\x49\x28\xb6\x5a\x46\x8f\xfb\x07\x02\xf6\xb2\xbe\x82\x5f\x24\xe4\xf9\xdd\xe3\xbe\xf2\x53\x21\xc2\xff\x6b\xe0\xd0\x65\xd3\xe0\x68\xae\x01\x31\x1d\xb9\x34\x8e\xf8\x7b\x71\xe8\x56\xd5\xbb\x81\x22\x7c\xe6\xc2\x90\xe7\x3d\xda\x66\x9a\x1c\x26\xe0\xd7\x3c\x81\x5e\x6b\x2b\x6a\x2b\x4b\xb7\x16\x93\xbb\x9d\x00\xdf\x6d\xb9\xee\x71\x62\x8f\xd6\x1e\x77\x7c\x03\x00\x00\xff\xff\x2b\x29\x24\x74\x93\x00\x00\x00"), }, "/src/net/http": &vfsgen۰DirInfo{ name: "http", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246682961, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 29, 32, 411777300, time.UTC), + }, + "/src/net/http/clientserver_test.go": &vfsgen۰CompressedFileInfo{ + name: "clientserver_test.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + uncompressedSize: 416, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\x8f\x41\x4b\xfb\x40\x10\xc5\xcf\xdd\x4f\xf1\xc8\xa1\xff\xe4\x6f\x48\xc0\xa3\x37\x11\xac\x78\xb4\x05\x8f\xb2\x49\xa6\xd9\x69\x93\xdd\x75\x67\x62\xa9\xe2\x77\x97\x54\x0b\x05\x3d\xce\x8f\xc7\x7b\xbf\xa9\xeb\x3e\xdc\x34\x13\x0f\x1d\x76\x82\xe5\x12\x07\x2b\xa3\xa9\x6b\x5c\x9d\x61\x79\x22\x26\xda\x76\x6f\x7b\x82\x53\x8d\x2f\x4a\xa2\xc6\xf0\x18\x43\x52\xe4\x66\x91\xcd\x80\x7d\x9f\x99\xc2\x98\xed\xe4\x5b\xcc\x60\x93\xac\x97\x39\xb2\xba\x7b\xa2\xd7\x89\x44\x73\xc5\xff\x9f\x68\xb5\x29\xe1\xae\x4b\x34\xa1\x3b\xa2\x09\x61\x28\xf0\x61\x16\x5a\xad\xf7\x1c\xf3\x6c\xe3\xe8\x54\x81\x44\x03\x93\x20\x78\xa4\xc9\x2b\x8f\x54\xad\x49\xef\xd9\xdb\x81\xdf\x29\xe5\x45\x89\x83\xe3\xd6\x81\x05\x3e\x28\x64\x8a\xf3\x20\x75\x68\x8e\x58\x85\xe8\x28\x3d\xae\xab\xac\x30\x9f\x17\x5e\xcf\x89\x95\x1e\xc8\x76\x94\x6e\xb7\x4a\xe9\x74\xff\xa1\xe6\x78\x67\xdb\xfd\x6f\xb9\x73\x2f\x24\x4c\xa9\x25\x8c\x36\x0a\xba\xe0\xff\x29\x62\x22\xa1\xf4\x46\x08\x89\xfb\xd9\x12\xf3\xaa\x72\xf0\xf0\x76\x24\x01\x7b\x88\xce\xad\x9a\x6c\x4b\x72\xd6\x57\xc7\x72\xf1\x70\x87\xe0\xbf\xad\xbf\x02\x00\x00\xff\xff\x32\x5b\xef\xde\xa0\x01\x00\x00"), }, "/src/net/http/cookiejar": &vfsgen۰DirInfo{ name: "cookiejar", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246481088, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/net/http/cookiejar/example_test.go": &vfsgen۰CompressedFileInfo{ name: "example_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246508588, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 283, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\xcc\x41\x4b\x03\x31\x14\x04\xe0\x73\xdf\xaf\x18\x7a\x6a\x51\x1a\xf4\xb8\x37\x29\x2a\x78\xa8\x62\x7f\x80\x4d\x93\xb7\xdd\x74\xb3\x79\x31\x79\xdb\x55\xc4\xff\x2e\x8b\xe0\xc9\xe3\x0c\xdf\x8c\x31\x27\x69\x8e\x63\x88\x1e\xe7\x4a\xc6\xe0\xea\x2f\x50\xb6\xae\xb7\x27\x86\x13\xe9\x03\x9f\x6d\x79\x53\xae\x4a\x14\x86\x2c\x45\xb1\x6c\x07\x5d\x12\xb5\x63\x72\xb8\xff\xb0\x43\x8e\xbc\xe3\x69\xb5\xc6\x17\x2d\x8c\x41\x62\x9d\xa4\xf4\xb0\xce\x71\xad\x48\xa2\xa8\x63\x9e\x97\xec\x71\xfc\xc4\xa3\xe4\x8e\xcb\xd3\xfe\x1a\x36\x79\x68\x17\x2a\xe6\x7b\x78\xce\x9c\x7c\x85\x24\x74\xaa\x79\xee\x36\x3b\x9e\xf6\x5c\x2e\x5c\x88\x16\xed\xa0\x9b\x97\x12\x92\xc6\xb4\x3a\xdc\xb5\xca\x05\x37\x55\x51\xf8\x7d\xe4\xaa\x0d\x01\x0f\xd1\x5e\xa4\x34\xd8\x76\xe2\x24\x5a\x65\x6c\xbb\x90\xe9\xd7\xde\x26\xff\x9f\x7d\xb6\x3a\xb0\x8d\x78\xb5\xa1\x86\x74\x58\xd3\x37\xfd\x04\x00\x00\xff\xff\x40\x11\xc8\x35\x1b\x01\x00\x00"), }, - "/src/net/http/fetch.go": &vfsgen۰CompressedFileInfo{ - name: "fetch.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246623754, time.UTC), - uncompressedSize: 3565, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x56\xdf\x6f\x9c\xce\x11\x7f\x66\xff\x8a\x29\x55\xbf\x05\xe7\x0e\xf2\x95\xa2\x3c\x50\xdf\x83\x73\x71\x52\xab\x49\x1d\xd9\xee\x93\x65\x55\x7b\x30\xc0\xda\xb0\x8b\x77\x17\xdb\x27\xeb\xfe\xf7\x6a\x76\x81\xe3\x6c\x27\x51\x2d\xe5\x02\xec\xec\xcc\x67\x66\x3e\xf3\x23\x4d\x2b\x95\x6d\x7a\xd1\x14\x70\x6b\x58\x9a\xc2\xbb\xe9\x85\x75\x3c\xbf\xe3\x15\x42\x6d\x6d\xc7\x98\x68\x3b\xa5\x2d\x44\x2c\x08\x51\x6b\xa5\x4d\xc8\x82\xb0\x6c\x2d\xfd\x27\x94\xff\x4d\x85\xea\xad\x68\xe8\xc5\x58\x9d\x2b\xf9\x10\x32\x16\x84\x95\xb0\x75\xbf\x49\x72\xd5\xa6\x95\xea\x6a\xd4\xb7\x66\xff\x70\x6b\x42\x16\x33\x32\x6d\xac\x46\xde\x5e\x20\x2f\x50\x83\x68\xbb\x06\x5b\x94\xd6\x00\x97\x20\x54\x42\xdf\xd7\x8d\x32\xa8\xe1\x51\xf3\xae\x43\x0d\xa5\xd2\x40\x9f\xf9\xa6\xc1\x4b\x77\x19\x54\xe9\xe0\x9a\x2c\x4d\x4b\xb4\x79\x9d\x98\x0e\xf3\xe4\xb1\xe6\xf6\xb1\x4a\x94\xae\xd2\x84\xd9\x6d\x87\x87\xb6\x8c\xd5\x7d\x6e\xe1\x99\x05\x1d\xca\x42\xc8\x0a\xae\x6f\x36\x5b\x8b\x2c\xf0\x62\x00\x47\xb7\x26\x39\xdf\xdc\x62\x6e\xd9\x8e\xb1\xb2\x97\x39\x44\x1a\x8e\xe6\x5a\x62\x07\x25\xea\x86\xbb\x31\x44\x12\x84\xb4\x0b\x40\xad\xc1\x45\x2c\x26\x0b\xa2\x84\x06\x65\xa4\x93\xc1\x54\x0c\xab\x15\xbc\xa7\x93\xe0\x81\x6b\x0a\x6f\x10\x6c\xd6\x35\x00\xac\xa0\xe5\x77\x18\xe5\x35\x97\xa3\x4e\x3a\x44\xad\xd7\xf5\xc1\xa1\x57\xce\x82\x80\xfe\xe9\xc4\x83\x4a\xd6\xbc\x69\xa2\x50\x23\x2f\xc2\x78\x78\xb1\x35\xca\x70\x41\x4a\xc8\x83\x48\xa3\xe9\x1b\x3b\xf3\xcd\x01\x0c\x02\xc2\xe8\xcf\x92\xaf\x68\xa3\xb0\x50\x12\xc3\x38\xf9\xa4\x54\x13\x8d\x22\x03\x8c\xe3\x25\xa5\xe6\xf4\xfc\x8b\xff\xa8\xd1\xf6\x5a\xba\xe7\x9d\xfb\xdd\x78\x99\xb9\xb6\x07\xde\xf4\xa4\xee\x4c\x5a\xd4\x25\xcf\x31\x8a\x93\x68\xe6\xdf\x6e\x0e\x90\x1b\x25\xdf\x00\x98\xa6\x70\x62\x4c\xdf\xa2\x01\x61\xff\x6e\x80\xc3\xe7\xf3\xef\xa7\x4f\x39\x76\x56\x28\x99\xb0\x03\x80\x9e\xad\xc9\xbf\xf1\x71\x50\xe8\x71\xb4\x68\x0c\xaf\x08\xc9\xa5\xd5\x42\x56\x51\xbc\x37\x4f\x4f\x06\x1b\xf4\xa4\x08\x72\x6e\x10\x36\x90\xad\xe0\x78\xb9\x59\xd7\x19\xc9\x4d\x09\x84\x15\x6c\x46\x19\x4a\xb5\x93\x72\xc6\xbd\x9c\x0b\x09\xbc\x77\x3c\x60\x2e\x2e\x3b\x16\x48\x58\x41\xae\xba\x6d\xd4\x2d\x60\x4f\x05\x76\xa0\x75\x7a\xbe\x96\xd9\x0d\x1b\x15\xc9\x05\x48\xd1\xfc\x82\x85\xae\x46\xa2\xd8\xbb\x4d\xf0\xd3\x14\xae\x6a\x61\x40\x54\x52\x69\xa4\x72\xda\x0e\x87\x5e\x25\x16\x50\x6a\xd5\x42\xce\x65\x8e\x0d\xb4\x68\x6b\x55\x24\x70\xa9\xa0\xe4\x7a\x01\x67\x50\x88\x02\xa4\xb2\x80\x32\x57\x3d\x65\xcd\xa9\xc8\x95\xcc\x35\x52\x91\x50\xe9\x0a\xdb\x73\x8a\x3d\x3c\xd6\xa8\x11\x34\x52\xb3\x20\x3f\x6c\x8d\x83\x35\x61\xa0\x45\x2e\x85\xac\xca\xbe\x49\xe0\xbb\x32\x16\x7a\x83\x7a\x44\x36\x88\x39\x2c\x1a\x4d\x97\x7c\x52\xc5\x36\x19\xdc\x49\x9c\x99\xb3\x92\xf4\x69\x74\x29\x97\x88\x05\x58\x35\xd8\x1a\x6e\xd3\xe9\x02\x84\x25\x6f\x60\x83\xfb\x36\x82\x05\x70\x59\x80\x45\x43\x8f\x8f\x35\x4a\xb0\x35\xb7\x5e\x4b\xae\x88\x4a\x7d\x97\xb0\x97\xf5\xe3\x83\x12\xc6\xfb\xf8\xfb\xe0\xa7\x29\xb8\xfe\x72\xa5\xb9\x34\xce\xbe\x20\x4c\x17\xaa\x97\xc5\x95\x16\xae\x3d\x39\xfd\x14\xf8\x19\x86\xde\x50\x50\xbe\xd0\x55\x38\xf9\x71\x96\xc0\x99\x05\xd3\x77\xa4\xc1\x0c\x4d\x49\xc8\x8a\xd4\x53\x08\x94\x24\xe2\xa9\x42\xa0\x19\xfa\xd6\x0b\xa3\xbe\x73\x3d\x4f\x6c\xb0\x70\x74\x28\x11\xef\x21\x45\x1a\xef\xe1\xe8\x02\xef\x7b\x34\x36\x86\xe8\xe8\x62\xb0\xb0\x98\xb5\xa7\xda\xb1\xc8\x10\x8b\x6f\x4d\xf2\xb5\x51\x1b\xde\xf8\x7a\xf9\xa7\x3f\x09\x63\x57\x49\x31\x0b\xa8\xfb\xde\xe1\x76\x01\xae\xa2\xdd\x15\xcd\x65\x45\xc9\xbf\x4f\xbc\xb4\xab\x1e\x92\xfb\xef\x20\xb5\x17\x1a\x2e\xb9\x7a\x1e\x8c\x0e\x21\xa7\xde\x2e\x8b\x70\x31\x53\x1e\x4f\x85\xa3\x3a\x4b\x3a\x5a\xde\x5d\x1b\x57\xb6\x37\x62\xec\x23\xcf\x3b\x52\x16\x7a\xfe\x86\x19\xb8\x3f\xc2\xf2\xdd\x7d\xa1\xba\x0e\x07\x4b\xc3\xe9\xf0\xe6\x4e\x72\x8d\x05\x4a\x2b\x78\x43\xa7\xa1\xe1\x2d\x2e\x95\x16\x95\x70\x1d\x73\xc7\x7c\x53\xbc\x77\xa4\x84\xbf\xac\x88\x07\x0e\x3c\x55\xd7\xf9\xe7\xf3\x0c\xbe\x08\x59\x80\xea\x2d\x78\x41\x0a\x32\xa5\x6e\x3b\x32\xd1\x27\x17\x0b\x1a\x0a\xca\x95\x85\xcb\xd4\x24\xab\x39\x51\x9b\x48\x43\x73\x03\x78\xf1\x40\xd4\x73\x84\x4e\xbc\x1d\xff\x77\x89\x08\x9f\xfa\xb2\x44\x7d\xa9\x7a\x9d\x23\x70\xfb\x9b\x91\xf7\x57\x82\xb1\x6c\xc5\x93\x70\xad\x91\xde\x16\x63\xab\xf2\x03\xdb\x0d\xd7\x93\xa6\x89\x46\x0f\x29\xe0\xa2\x74\x42\x33\x5f\x83\xf1\x78\xac\x4a\x48\xd3\x3d\xbf\xa0\xed\x8d\x05\xde\x3c\xf2\xad\x81\x9c\x04\x9c\x97\xde\x9c\x90\x79\xd3\xbb\xc6\xa6\xe4\xd8\x91\x67\xed\x51\x8a\x66\xd6\x20\x5f\xd9\x61\x01\x25\xfe\x3a\x24\x5d\xe1\x0d\x75\x5c\x55\x6c\x5d\x56\xa8\x4a\x7e\x68\xd5\x0a\x83\x87\x9c\xf5\x5c\x72\x01\x09\x17\x2e\x73\xff\xb9\xf8\x36\xb5\xfa\x05\xa8\xce\xc6\x8c\x4d\x33\x97\xf4\xbc\x18\xab\x53\x7d\x90\x79\x3f\x4d\xde\x1c\xbb\xf1\x01\x8a\x97\xa3\xf6\x97\x93\xd6\x13\x90\x80\xfb\x7a\x79\xde\xf9\x98\xec\xa7\x65\x3d\x55\xdd\xe0\x90\xd2\xa7\xdc\xb9\xe4\x14\xbb\xea\x70\x95\xf2\xc6\x94\xcc\xef\x48\xf3\x9a\x4b\x25\x45\xce\x1b\x6f\xe2\x5f\xb8\x8d\xee\x70\x7b\x38\xf4\x06\x20\xd7\xf9\x1d\x05\xd7\x17\x60\xb4\xff\x36\x54\xe1\x8b\x41\x49\xe1\x0b\x82\x5c\x49\x8b\xd2\x7e\x43\x59\xd9\xda\x31\x4a\xda\x8f\x1f\xa2\xe5\x9f\x4e\x48\x94\x90\x37\x13\xd9\x86\x9d\x30\xf9\xc1\xb5\xc1\x33\x69\x07\x13\xde\xd3\xb5\x57\xb4\xf4\x9a\xc2\x78\x01\x7f\xbe\x5f\xc0\xc7\x0f\xf1\x3f\xdc\xf5\xd5\x8c\x86\x2f\x8c\xae\x20\x6f\x1c\x22\x07\x68\x36\xb7\xfd\x50\x1e\x52\x7b\xbc\x84\x3f\xc6\x8c\x7a\x2d\x97\x96\xdb\xde\x0c\x8d\x02\x0e\x96\x14\xe3\x8e\x66\xbb\x01\xbc\x83\x10\x42\x78\x07\xfe\xd2\x15\x3e\xd9\xe8\xcd\x0b\xe4\x56\x1c\x2f\x66\x06\xd6\xaa\xc0\xec\xa7\x06\x9c\xbc\x17\xf7\x09\x9a\xf0\xf8\xe0\xf8\xa3\xf5\xdc\xe1\x0c\x0e\xfc\xf7\x12\x54\x2e\xd3\x55\x80\x3f\xe6\x4b\xc1\xb3\x7f\xc9\x0e\x10\xb8\x5a\x1a\x69\x55\xa1\xf5\xa2\x61\xec\xf7\xaf\x60\x98\x13\xd9\x14\x9c\x7b\xf7\x7d\x97\x4d\x71\x3d\x5e\x52\x55\x39\x64\x4f\x36\x8a\x93\xcf\x4a\x62\x14\x67\x6c\x58\xfe\x76\x33\xf6\xbf\xbd\xc6\xbd\xca\xd4\xb4\xb2\x95\xad\x4d\x4e\xa9\xbc\xca\x28\x94\x68\x53\xea\x6f\x99\xef\x97\x51\x0c\x25\x17\x0d\x16\x19\xfc\xcd\xb8\xca\x76\x2b\xdd\x44\xcd\xff\x0b\x5f\xcc\x66\x20\x7e\x73\x69\x6a\xf4\x27\x1b\x9a\xbc\x63\xdb\x16\x25\x74\xca\x18\xb1\x69\xf0\xd5\x70\x67\xaf\xfa\xdb\xb8\x88\xce\xbc\x1a\x15\xf9\x4d\x03\x0b\xda\x35\x26\xde\xfa\x6d\xd2\x33\x38\xdb\xab\xa3\x0f\x7e\x0f\xfc\xd9\xde\xf9\xaa\xaf\xee\xd8\x8e\xfd\x2f\x00\x00\xff\xff\x7b\x62\xfe\xc6\xed\x0d\x00\x00"), - }, "/src/net/http/http.go": &vfsgen۰CompressedFileInfo{ name: "http.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246719336, time.UTC), - uncompressedSize: 3012, + modTime: time.Date(2022, 4, 19, 10, 29, 32, 411777300, time.UTC), + uncompressedSize: 2895, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x56\x5f\x6f\xdb\xb6\x17\x7d\x16\x3f\xc5\xad\x1e\x0a\x31\x55\xa4\x06\x28\xfa\xfb\xc1\x8d\x31\x64\x6e\xd7\x04\x68\xba\x22\x4d\x80\x02\x5d\x51\x50\xd2\x95\x44\x87\x26\x15\x92\x4a\xe2\x15\xfe\xee\x03\x49\x59\x91\x9d\x74\xc3\x96\x97\x50\xe4\xe5\x3d\xe7\xdc\x7f\x74\x9e\x37\x6a\x56\xf4\x5c\x54\xb0\x34\x24\xcf\xe1\xc5\xf8\x41\x3a\x56\x5e\xb3\x06\xa1\xb5\xb6\x23\x84\xaf\x3a\xa5\x2d\x24\x24\x8a\x8b\xbe\xe6\x2a\x76\x8b\xb5\x45\xe3\x16\xa8\xb5\xd2\x7e\xc5\x55\xce\x55\x6f\xb9\x70\x1f\x12\x6d\x6e\xf1\xde\x76\x5a\x59\x7f\xc1\x58\x5d\x2a\x79\x1b\x13\x12\xc5\x0d\xb7\x6d\x5f\x64\xa5\x5a\xe5\x8d\xea\x5a\xd4\x4b\xf3\xb0\x58\x9a\x98\x50\x42\x6e\x99\x86\xb7\x58\xb3\x5e\xd8\x4b\xcd\xa4\xf1\x14\xe6\x50\xf7\xb2\x4c\x28\x5c\xa8\x5e\x56\x97\x9a\x77\x1d\x6a\xf8\x41\x22\x73\xc7\x6d\xd9\xba\x55\xc9\x0c\xc2\xd2\x64\xef\x85\x2a\x98\xc8\xde\xa3\x4d\xe2\x1a\x6d\xd9\xc6\x14\x9e\xcd\xdd\xc9\x95\xac\xb0\xe6\x12\xab\x19\x89\xa2\x3c\x87\x2b\x83\x60\x2c\x93\x15\xd3\x15\x08\x5e\x68\xa6\xd7\xb0\x34\xf9\x1d\x33\x2b\xf0\x57\x0f\x0b\x66\xb0\x02\xbe\xea\x04\xae\x50\x5a\x66\xb9\x92\x19\x89\x22\x8d\xb6\xd7\x12\x9e\x8f\x0c\x7f\x6c\x9e\x66\xf0\xe5\xfc\xc3\xa9\xb5\xdd\x05\xde\xf4\x68\xec\xd3\x54\xb6\xce\xbe\x9c\x5e\xec\xf8\xab\x42\x14\x26\x26\x52\xed\x18\x6c\xc8\x26\xa1\xc4\xa5\x70\x72\x00\xdc\x40\xef\x58\xdf\xb5\x28\x41\x22\xb7\x2d\x6a\xf8\xcd\xc9\x81\x93\x4f\x67\x20\x95\x86\x5d\x56\x7e\x9b\x69\x04\x76\xcb\xb8\x60\x85\xc0\x0c\xce\x2c\x30\x71\xc7\xd6\x06\x6a\xc6\x85\xc9\x88\x5d\x77\xb8\x03\x63\xac\xee\x4b\x47\x83\xb8\xd4\x40\x32\x39\x9b\xa4\x29\xd1\x78\x03\x07\x03\x10\x85\xe4\xe0\x02\x4d\xa7\xa4\xc1\x14\x7c\x01\x51\x97\xba\xad\x3a\x2e\x86\x5d\x93\x7d\xc4\xbb\xc4\xd7\x92\xab\xc4\xd9\x28\x43\xd5\x83\x92\xa7\x55\x18\x27\x7e\x54\x11\x53\xb2\x21\x81\xf8\x34\xb4\x03\x73\x07\xcc\x65\x2d\x78\xd3\x5a\x58\xb1\xee\xeb\x96\xe5\xb7\x83\xa5\xc9\x7e\x2f\x96\x58\x5a\x32\xaa\xb3\x70\x30\xf5\xf1\x6f\x15\xde\xb7\x1a\x66\xf3\x7f\x2a\x0e\xaf\x9a\x12\x12\xf1\x1a\x6c\x36\x92\x9b\xcf\x5d\x68\x9c\x9b\x68\xba\xfb\x33\xd2\xa1\x32\x26\xa6\x5f\x35\xde\x7c\x83\x39\xdc\xb7\xda\x17\x15\x6a\xa8\x50\xa0\xc5\xe4\xc1\x26\x05\x8d\x37\x0e\x5a\xa3\xe9\x16\xad\x23\xbb\x62\xd7\x98\x94\x2d\x93\x30\x4a\xa2\x24\x42\xad\xf7\x8f\x83\x4c\xe2\x55\x66\x9f\x9d\x30\x25\x85\x62\x55\x9c\x6e\xbb\xd6\x51\x6f\x91\x55\xa8\x53\xf8\xee\x2e\x8f\x13\xc2\x49\xbe\xf0\x27\x89\x1f\x31\xd3\x6f\x37\x69\x26\xdf\x5f\xbf\xb9\x9d\xc4\x81\x2c\x98\x10\x49\xdc\xa0\x3d\x11\x62\xcb\xed\xd4\x5b\x99\x98\x66\x9f\xad\xe6\xb2\x49\x28\xbc\x80\xf8\x0f\x19\x53\x4a\x69\xe6\x7c\x9c\x9f\x9d\xbf\x0b\x56\x09\x25\x51\x54\xa8\x6a\xfd\x44\x52\xae\xb8\xb4\xff\x3f\xd1\x9a\xad\x87\x84\x38\x40\x7f\xa2\x07\xa4\x98\xd2\xec\x4c\x5a\xd4\x35\x2b\x31\xa1\xd9\xc0\xcc\x45\x20\x2a\x95\xb4\x28\xed\x07\x94\x8d\xf5\x61\xe2\xd2\xbe\x7e\x95\x1c\x1e\x39\xc4\x61\x58\x69\xbc\xc9\xce\xd1\xb6\xaa\xf2\x81\xf1\x63\x23\x3e\x7d\x77\xf2\x36\x76\xad\xee\x92\x1f\xfa\xc0\x5d\x1f\xa6\x67\xf6\x89\x69\x83\x67\xd2\x26\x21\x8c\x81\xd0\x22\x80\x1d\x06\xb4\x98\xa6\x70\xf4\x32\x85\xd7\xaf\xe8\x1b\x7f\x7d\x52\x37\xfb\xc4\xe6\x20\xdc\xee\x86\x44\xd3\x29\xf3\xc8\x28\x90\x17\x28\x13\x17\x2c\xea\x34\x6c\x88\x1f\x47\xbe\x48\x8e\x0f\xe1\xf9\x36\xfc\x1e\xe5\xb3\x65\xb6\x37\x33\x18\xfe\xc6\xc8\x19\xbf\xbf\x97\x1a\x88\xe1\xc5\xbe\xc9\x25\xde\xdb\x89\x59\xfa\xe0\x74\xa1\x2a\x9c\x3d\xed\xd4\x85\x25\x98\x86\xec\x8e\xf8\x43\xb2\x43\xc8\x82\xc5\x62\xaa\x70\x06\x3b\x82\xbd\xc1\xaf\xaa\x5a\x8f\x0e\x00\xc2\xc3\x96\x7d\x54\xdd\x42\x28\xf3\x44\x55\x86\xc0\xf8\xab\x43\x2b\x6e\x6f\x6b\xbc\x49\x7d\xc0\xa2\xcd\x5e\x73\xf8\x86\xd9\x76\x07\xc2\x43\xeb\x86\x4e\x09\x2d\x76\x7c\xf8\x93\x59\xb8\x37\xf6\xdc\x7c\xc6\x2a\xa6\x8f\x61\x58\xa1\xb4\xfd\xcf\x30\x7a\xf0\x5f\x32\x59\xe2\x3e\x42\x68\x40\xd5\xa1\x8c\xd3\x49\x3d\x87\xf5\xd5\xc5\x87\x31\x83\x74\xc2\x68\xdb\x3f\x97\xeb\x0e\xe3\x14\x62\xe6\x9a\xac\xe8\xeb\x1a\x75\x4c\x21\xcf\xa1\x65\x06\xac\x82\x02\x81\xd5\x16\x35\x04\x00\xe8\xa5\xe5\xc2\xff\x24\x31\xb3\x3c\x2f\xfa\xe6\x4f\x2e\x04\xcb\x56\x2a\xfc\x57\xba\xc9\x4d\xab\xee\xbe\x17\x7d\x93\x95\x0d\xff\x85\x57\xf3\xa3\xa3\xa3\x97\xff\x7b\x7d\xe4\x9e\x03\x8d\x46\x89\x5b\xac\x48\x54\x2b\x0d\xd7\xb8\x4e\xe1\x96\x89\x1e\x8d\x6b\x2f\xcd\x64\x83\x9e\x74\xa8\x15\x1f\x18\x67\xf7\x7d\xb0\x7a\x30\x1a\x2e\xf9\x3a\x7f\x08\x81\x41\x3b\x24\x22\x38\x88\xd3\x09\x04\x1d\xd2\xef\x07\xba\x03\x71\xc5\x35\x6d\xcb\xa9\x1f\x19\x22\x0c\x28\x0c\xfa\x43\x57\x59\xe3\x1c\x18\xea\xd0\x15\xdd\x89\x10\xc9\xd6\x99\x43\xe0\xb5\x37\x7a\x36\xe9\xf6\xed\x71\xe6\x8b\x36\xf1\xc1\x1d\x1f\x2c\x58\xf5\x66\x7c\xdd\x4b\x67\x00\xb6\x45\x08\x70\x5c\x96\xa2\xaf\xb8\x6c\x40\xc9\x6d\x61\x04\x8f\x3b\x4f\x74\x10\xf6\x08\xe7\xb1\xa4\xd4\xfb\x75\xc2\x08\x89\x0c\x0a\x0c\x0f\xaf\x9f\x79\xae\x1e\x9c\xb6\xe3\xc3\x30\x4f\x26\x3f\x74\xdc\x46\xea\xd0\x06\xd3\x21\x0a\xc7\x87\xbe\x68\xa7\xbf\x88\x46\x42\x9b\xbf\x79\xac\x17\xbe\x86\x87\x44\xed\x3d\xd8\x3f\x7c\x76\xee\x5b\x9d\x82\xba\xf6\x6f\xd3\xee\xc3\xf9\xc6\x6d\xef\x26\x2b\x34\x16\x0d\x98\x7f\x05\x00\x00\xff\xff\x79\x6f\xb8\x54\x4f\x0b\x00\x00"), + }, + "/src/net/http/http_wasm_test.go": &vfsgen۰CompressedFileInfo{ + name: "http_wasm_test.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 411777300, time.UTC), + uncompressedSize: 549, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x56\x6d\x6f\xdb\x36\x10\xfe\x2c\xfe\x8a\xab\x06\x04\x52\xaa\xc8\x0d\x50\x74\x83\x1b\x63\xc8\xd2\xae\x09\xd0\x74\x45\x92\x02\x05\xba\xa2\xa0\xa5\x93\xc4\x84\x26\x15\x92\x8a\xe3\x15\xfe\xef\xc3\x91\xb2\x22\x3b\xe9\x86\xcd\x5f\x4c\x91\xc7\x7b\x79\xee\xb9\x3b\x4e\x26\xb5\x9e\xce\x3b\x21\x4b\xb8\xb6\x6c\x32\x81\xe7\xc3\x07\x6b\x79\x71\xc3\x6b\x84\xc6\xb9\x96\x31\xb1\x68\xb5\x71\x90\xb0\x28\x9e\x77\x95\xd0\x31\x2d\x56\x0e\x2d\x2d\xd0\x18\x6d\xfc\x4a\xe8\x89\xd0\x9d\x13\x92\x3e\x14\xba\x89\xc3\x7b\xd7\x1a\xed\xfc\x05\xeb\x4c\xa1\xd5\x5d\xcc\x58\x14\xd7\xc2\x35\xdd\x3c\x2f\xf4\x62\x52\xeb\xb6\x41\x73\x6d\x1f\x16\xd7\x36\x66\x29\x63\x77\xdc\xc0\x1b\xac\x78\x27\xdd\x95\xe1\xca\x7a\x17\x66\x50\x75\xaa\x48\x52\xb8\xd0\x9d\x2a\xaf\x8c\x68\x5b\x34\xf0\x9d\x45\x76\x29\x5c\xd1\xd0\xaa\xe0\x16\xe1\xda\xe6\xef\xa4\x9e\x73\x99\xbf\x43\x97\xc4\x15\xba\xa2\x89\x53\x78\x36\xa3\x93\x4f\xaa\xc4\x4a\x28\x2c\x61\x6f\x6f\x57\xf2\x02\x79\xc9\xe7\x12\x2f\x9d\x41\xbe\x78\x7c\x65\x0a\x93\x09\x6c\x0b\x81\xb0\xd0\x59\x2c\x81\x5b\xe0\x50\x34\x58\xdc\x40\xa5\x0d\xd8\xae\xf5\x3e\xeb\x0a\xac\x17\x14\xaa\x06\x83\xb6\xd5\xca\x22\xcc\x75\x29\xd0\x66\x60\x31\xa0\x6c\xa7\x93\x89\x77\x33\xb7\x2d\x16\xf9\xb2\xe1\x6e\x59\xe7\xda\xd4\x93\x9f\xc2\x6d\x9b\xb3\x28\x32\xe8\x3a\xa3\x60\xcf\x4b\x0e\xb0\x7c\x5f\x3f\x1d\xf6\xe7\xf3\xf7\xa7\xce\xb5\x17\x78\xdb\xa1\x75\x4f\x04\x33\xd2\xf8\xf9\xf4\x62\x4b\x5f\x19\xa0\x1f\x89\x28\xbd\x25\xb0\x66\xeb\x24\x65\xc4\x9b\xd1\xc1\x80\xc5\xb2\x41\x05\x0a\x85\x6b\xd0\xc0\xef\xe4\x2d\x1c\x7f\x3c\x03\xa5\x0d\x6c\x7b\xe5\xb7\xb9\x41\xe0\x77\x5c\x48\x42\x35\x87\x33\x07\x5c\x2e\xf9\xca\x42\xc5\x85\xb4\x39\x73\xab\x16\xb7\xcc\x58\x67\xba\x82\xdc\x60\xc4\x07\x48\x46\x67\x23\x6e\x24\x06\x6f\x61\xbf\x37\x94\x42\xb2\x7f\xd1\xa3\x9f\x81\x67\x6d\x4a\x7c\xd9\x44\x27\x64\xbf\x6b\xf3\x0f\xb8\x4c\x3c\x81\x29\x31\xd3\x21\x0c\x5d\xf5\x91\x3c\x1d\x85\xa5\xe0\x87\x28\xe2\x94\xad\x59\x70\x7c\x0c\x6d\xef\x39\x19\x16\xaa\x92\xa2\x6e\x1c\x2c\x78\xfb\x65\xe3\xe5\xd7\xfd\x6b\x9b\xff\x31\xbf\xc6\xc2\xb1\x21\x3a\x07\xfb\x63\x1d\xff\x35\xc2\xfb\xc6\xc0\x74\xf6\x6f\xe4\xf0\x51\xa7\x8c\x45\xa2\x02\x97\x0f\xce\xcd\x66\x04\x0d\xa9\x89\xc6\xbb\x3f\x72\x3a\x30\x63\x24\xfa\xc5\xe0\xed\x57\x98\xc1\x7d\x63\x3c\xa9\xd0\x40\x89\x12\x1d\x26\x0f\x32\x19\x18\xbc\x25\xd3\x54\x1d\x27\x0d\x39\xbb\xe0\x37\x98\x14\x0d\x57\x30\x84\x94\xb2\x08\x8d\xd9\x3d\x0e\x61\x32\x1f\x65\x7e\x49\x81\x69\x25\x35\x2f\xe3\x6c\xd3\x2a\xc8\xf5\x06\x79\x89\x26\x83\x6f\x74\x79\x68\x4b\x14\xf2\x85\x3f\x49\x7c\x5f\x1b\x7f\x53\x7b\x1b\x7d\x7f\xf9\x4a\x3b\x09\x19\x39\xe1\x52\x26\x71\x8d\xee\x58\xca\x8d\x6f\xa7\x5e\xca\xc6\x69\x7e\xe9\x8c\x50\x75\x92\xc2\x73\x88\xff\x54\x71\x9a\xa6\x69\x4e\x3a\xce\xcf\xce\xdf\x06\xa9\x24\x65\x51\x34\xd7\xe5\xea\x89\xa4\x7c\x12\xca\xfd\x72\x6c\x0c\x5f\xf5\x09\x21\x83\xfe\x64\xd3\x38\xe2\x34\xcd\xcf\x94\x43\x53\xf1\x02\x93\x34\xef\x3d\x23\x04\xa2\x42\x2b\x87\xca\xbd\x47\x55\x3b\x0f\x93\x50\xee\xd5\xcb\xe4\xe0\x90\x2c\xf6\x1d\xd2\xe0\x6d\x7e\x8e\xae\xd1\xa5\x07\xc6\xb7\x8d\xf8\xf4\xed\xf1\x9b\x98\x4a\x9d\x92\x1f\xea\x80\xae\xf7\x2d\x3b\xff\xc8\x8d\xc5\x33\xe5\x92\x00\x63\x70\xe8\x24\x18\x3b\x08\xd6\xe2\x34\x83\xc3\x17\x19\xbc\x7a\x99\xbe\xf6\xd7\x47\xbc\xd9\x75\x6c\x06\x92\x76\xd7\x2c\x1a\x77\x99\x47\x42\xc1\x79\x89\x2a\x21\xb0\x52\x8a\x61\xcd\x7c\x3b\xf2\x24\x39\x3a\x80\xbd\x0d\xfc\xde\xca\xa5\xe3\xae\xb3\x53\xe8\x7f\x03\x72\xd6\xef\xef\xa4\x06\x62\x78\xbe\x2b\x72\x85\xf7\x6e\x24\x96\x3d\x28\x3d\xd1\x25\x4e\x9f\x56\x4a\xb0\x04\xd1\x90\xdd\xc1\x7e\x9f\xec\x00\x59\x90\x38\x19\x47\x38\x85\xad\x80\xbd\xc0\x6f\xba\x5c\x0d\x0a\x00\xc2\x34\xcd\x3f\xe8\xf6\x44\x6a\xfb\x04\x2b\x03\x30\xfe\x6a\x5f\x8a\x9b\xdb\x06\x6f\x33\x0f\x58\xb4\xde\x29\x0e\x5f\x30\x9b\xea\x40\x78\x28\xdd\x50\x29\xa1\xc4\x8e\x0e\x7e\xd0\x0b\x77\xda\x1e\xf5\x67\x2c\xe3\xf4\xb1\x19\x3e\xd7\xc6\xfd\x6f\x33\xa6\xd7\x5f\x70\x55\xe0\xae\x85\x50\x80\xba\x45\x15\x67\x23\x3e\x87\xf5\xa7\x8b\xf7\x43\x06\xd3\x91\x47\x9b\xfa\xb9\x5a\xb5\x18\x67\x10\x73\x2a\xb2\x79\x57\x55\x68\xe2\x94\x86\x7a\xc3\x2d\x38\x0d\x73\x04\x5e\x39\x34\x10\x0c\x40\xa7\x9c\x90\xc3\x84\x9e\x77\xf5\x5f\x42\x4a\x9e\x2f\x74\xf8\xa7\x01\x6d\x1b\xbd\xfc\x36\xef\xea\xbc\xa8\xc5\xaf\xa2\x9c\x1d\x1e\x1e\xbe\xf8\xf9\xd5\x21\x8d\x03\x83\x56\xcb\x3b\x2c\x59\x44\x2f\x82\x1b\x5c\x65\x70\xc7\x65\x87\x96\xca\xcb\x70\x55\xa3\x77\x3a\x70\xc5\x03\x43\x72\xdf\x7a\xa9\x07\xa1\xfe\x92\xe7\xf9\x03\x04\x16\x5d\x9f\x88\xa0\x20\xce\x46\x26\xd2\x3e\xfd\xbe\xa1\x93\x11\x22\xd7\xb8\x2c\xc7\x7a\x54\x40\x18\x50\x5a\xf4\x87\xc4\xac\xa1\x0f\xf4\x3c\x24\xd2\x1d\x4b\x99\x6c\x94\x91\x05\x51\x79\xa1\x67\xa3\x6a\xdf\x1c\xe7\x9e\xb4\x89\x07\x77\x18\x58\xb0\xe8\xec\x30\xdd\x0b\x12\x00\xd7\xf8\xd7\xd0\x2a\x03\xa1\x0a\xd9\x95\xf4\x4c\xd2\x6a\x43\x8c\xa0\x71\x6b\x44\x87\xc0\x1e\xd9\x79\x1c\x52\xe6\xf5\x52\x60\x8c\x45\x16\x25\x86\xc1\xeb\x7b\x1e\xf1\x81\x62\x3b\x3a\x08\xfd\x64\xf4\xd0\xa1\x8d\x8c\xac\xf5\xa2\x3d\x0a\x47\x07\x9e\xb4\xe3\x17\xd1\xe0\xd0\xfa\x1f\x86\xf5\x89\xe7\x70\x9f\xa8\x9d\x81\xfd\xdd\x67\xe7\xbe\x31\x19\xe8\x1b\x3f\x9b\xb6\x07\xe7\x6b\xda\xde\x4e\x56\x28\xac\x34\xd8\xfc\x3b\x00\x00\xff\xff\xb7\x45\xd1\x02\xc4\x0b\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x64\x91\x4f\x4f\xdc\x30\x10\xc5\xcf\x9b\x4f\xf1\xc4\x61\x05\xea\x6a\x73\x47\xe2\x80\x8a\xe8\x1f\xb5\xa5\x6a\xa9\xda\xab\xd7\x9e\xac\xdd\x38\x9e\x74\x66\x4c\x54\x21\xbe\x3b\x8a\x57\x70\xe1\xe8\x27\xcf\xef\xfd\xec\xe9\xfb\x23\x5f\x1e\x6a\xca\x01\x7f\x15\xdb\x2d\x16\xa7\x53\xd7\xf7\x78\xf7\x12\xee\x5a\xd2\xcd\xce\x8f\xee\x48\x88\x66\x73\xd7\x0d\xb5\x78\xa4\x92\xec\xfc\x02\x8f\xdd\xa6\xef\xf1\x4b\x09\x6a\xae\x04\x27\x01\x26\xae\xe8\xcc\x62\x58\x92\x45\x0c\x6e\x24\x14\xb2\x85\x65\x4c\xe5\x88\x5a\x02\x09\x8c\xd4\x74\x8f\xeb\x6c\x91\xeb\x31\xe2\x03\xcf\x91\xe4\xf3\xcf\x86\xd3\x3a\xaf\xf3\x8a\x33\x21\x97\xcf\x5a\xed\xfe\x7d\x4e\x54\x0c\x69\x9a\x33\x4d\x54\xcc\x59\xe2\xa2\xa8\xba\x42\x6f\xc9\x7c\x04\x0b\xfe\x7c\xfd\xf2\xd1\x6c\xfe\x41\xff\x2a\xa9\x35\xda\xf5\xf7\x4f\xba\x3b\x15\xc2\x65\x65\x14\xa2\x00\xe3\xd5\x58\x0c\x99\xbd\xcb\x58\xe8\x00\x25\x79\x20\xd1\x1d\x96\x98\x7c\x44\x52\x14\xb6\x17\x19\x0a\x0d\x36\xb0\xc0\x22\x2b\x35\xec\xbe\x65\xf7\x77\x37\x77\xe7\x85\x1e\x46\x2e\xe6\x46\xa3\x8b\x4b\xfc\x26\x78\xae\x39\xb4\x5a\x70\x15\xac\x2f\x79\x23\x9f\x06\x2c\x84\x89\xfd\x08\xae\x27\xdb\x83\xf0\xa2\x24\x0d\x0f\x57\x02\x84\x42\x12\xf2\x06\x8b\x34\xad\xda\x16\xe9\xcd\xa7\xaa\x39\x3f\xee\x70\xa8\xeb\xb5\xa4\x48\xda\x60\xab\x3f\x39\xfd\xbf\xef\x36\x55\xe9\xd6\x8d\xf4\xed\x34\x83\x2b\x98\x54\xea\x36\x37\x34\xb8\x9a\xed\xfe\x75\x67\x57\xd8\xbe\x1e\x1e\x9f\xba\xa7\xee\x39\x00\x00\xff\xff\x58\xbe\xac\x9c\x25\x02\x00\x00"), }, - "/src/net/net.go": &vfsgen۰CompressedFileInfo{ - name: "net.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246827210, time.UTC), - uncompressedSize: 1136, + "/src/net/http/main_test.go": &vfsgen۰CompressedFileInfo{ + name: "main_test.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + uncompressedSize: 1364, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xb4\x92\x4f\x8f\xd3\x30\x10\xc5\xcf\xf5\xa7\x18\x7c\xb2\x21\x24\x42\x5a\x71\x58\xa9\x07\xb6\xa0\x55\x11\x6c\x57\xaa\x04\x48\xab\x3d\x38\xce\x24\xeb\xd6\xb5\x83\xc7\x61\x1b\xa1\x7e\x77\xe4\xf4\xcf\x76\xdb\x5e\x39\xc5\x7e\x99\x79\xef\xa7\x19\x17\x45\xe3\xaf\xcb\xce\xd8\x0a\x16\xc4\x8a\x02\xde\x1d\x2e\xac\x55\x7a\xa9\x1a\x04\x87\x91\x31\xb3\x6a\x7d\x88\x20\xd8\x88\x63\x08\x3e\x10\x67\x23\x4e\x3d\x69\x65\x2d\x67\x6c\xc4\x1b\x13\x9f\xba\x32\xd7\x7e\x55\x34\xbe\x7d\xc2\xb0\xa0\x97\xc3\x82\x38\x93\x8c\xd5\x9d\xd3\xf0\xcd\x50\x44\x27\x1c\xc6\x0c\xac\xaa\xaa\x00\x14\x83\x71\x8d\x04\xb1\xfd\x85\x21\x83\x21\x43\xc2\x5f\x36\x6a\x95\x33\x5a\x6c\x33\xf3\x3b\x7c\x16\xdc\x61\x7c\xf6\x61\x09\x4a\x6b\x24\x02\x43\xe0\x7c\x04\xea\xda\x44\x88\x15\x94\x3d\xdc\x0e\xc1\x5f\xe7\x5c\x4a\xb6\xd9\xe5\x8a\x0a\xde\x7e\x36\xca\x62\x90\x90\xbe\x62\xe7\x93\x41\x82\x48\x4e\x07\x8e\x89\x77\xee\xbf\x30\x50\x4f\x53\x67\xa2\x48\xae\x7b\xad\x0d\xbe\xc4\xe9\xfd\x9f\xab\x79\x54\x7a\x29\x24\x94\xde\xdb\x94\x1a\x30\x76\xc1\x41\xad\x2c\xe1\x59\xf5\xc7\x7d\xb5\xd8\x85\x52\x12\x33\x38\xba\x5d\xad\x54\x3b\x98\xc9\x53\xb7\xec\x92\xe9\x4f\xe3\x2a\xff\x4c\xd3\xfb\x33\xe7\x1f\x86\xa2\x9a\xde\x5f\xf6\x3a\x98\xac\xd4\x7a\xbf\xbf\x1b\xa5\x97\xd6\x37\x42\x82\x71\xf1\xa8\x61\xf7\x5e\xf2\xf9\xec\xfb\xa7\x5f\x93\xd9\xdd\x5d\x6a\x2e\x0a\x98\xf8\xb6\x07\x5f\xef\x16\x40\xf9\xd4\x55\xb8\xbe\xe9\x23\xe6\x5b\xeb\xb2\x8f\x38\x68\x62\xbf\xa4\x0c\xb6\xea\x69\xc2\x22\x35\x47\x0c\x4e\xd9\x59\xb9\x40\x1d\x05\xc9\x7c\xa2\xac\x15\xdc\x24\x83\x59\xcd\xb3\x54\x74\x6b\x7d\xa9\x6c\x7e\x8b\x51\xf0\xf9\xe0\xc8\xf7\x75\x75\xf0\xab\xc9\x93\x0a\x13\x5f\x21\xcf\x40\x4b\x99\x2c\x85\x3c\x61\x4d\xe9\x94\x7f\xf9\xdd\x29\x7b\x44\x49\x83\x20\xd6\x19\xf4\xf0\xf0\xb8\x25\xdc\xef\xd3\xd4\x60\xd1\x89\xb5\x84\x37\xe3\xe1\xd4\x0f\xc3\x7c\x3d\xcd\xd1\x86\x8d\x6a\x1f\xc0\x64\x50\xc2\xf5\x18\x82\x72\x0d\xc2\x7a\x28\x34\x35\x94\xa9\xb7\x7f\x30\x8f\x83\x70\xd2\x9a\x7a\x37\x87\x51\xc4\xd0\xe1\x45\xe6\x4b\xd3\xa5\x83\x28\x68\x07\x7e\x36\xe2\x73\x2c\x7a\xc1\x1a\x8f\x41\xbf\x62\x32\xa7\x3c\xef\x3f\xb0\x0d\xfb\x17\x00\x00\xff\xff\x2b\xde\x94\xbb\x70\x04\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x54\xcd\x6e\xe3\x36\x10\x3e\x4b\x4f\xf1\x55\x87\x85\xd4\x1a\x52\x6c\x74\x81\x34\x5d\x1f\xd2\xa0\x48\x7f\x90\x16\x58\x07\xd8\x43\x36\x08\x28\x7a\x4c\x71\x43\x91\x02\x67\x64\xaf\xd1\xdd\x6b\xcf\x7d\xc6\x3e\x49\x41\x39\x0e\xb6\x40\xd0\xa4\x27\x4a\xe4\xf7\x33\x1c\x7e\x64\xd3\x98\x70\xd6\x8e\xd6\xad\xf1\x81\xf1\xea\x15\x76\x8a\xfb\xbc\x69\xf0\xcd\x71\x72\x36\xcd\xe4\x83\xd2\xf7\xca\x10\x3a\x91\xe1\x4e\x88\x25\xcf\x6d\x3f\x84\x28\x28\xf3\xac\x88\xa3\x17\xdb\x53\x91\x67\x05\x87\x28\xd3\x28\xd1\x7a\xc3\x45\x5e\xe5\x49\xef\xba\xb3\x0c\xcb\x50\x1e\xca\xf5\x81\x05\x5b\x8a\xad\x12\xdb\x43\x87\x61\x8f\xb0\x81\x74\x84\x71\x60\x89\xa4\xfa\x19\xe8\xa3\xa6\x41\x10\x3c\xc1\x59\x4f\xd8\x75\x56\x77\xa9\xbc\xa4\xa6\xd6\x1f\x46\x16\x5a\x43\x02\x7a\x25\xba\xc3\x65\x18\x3a\x8a\xbf\xac\xa0\x95\x73\x60\x51\xfa\x9e\xeb\x47\xe3\xb0\xa5\xe8\xd4\x1e\x5a\x79\xb4\x84\x48\x7d\xa0\x35\xec\xa6\xd9\x75\xe4\xa7\x3d\xf1\x59\xd3\x18\x2b\xdd\xd8\xd6\x3a\xf4\x8d\x09\x4e\x79\xd3\x98\xd0\x0c\xa3\x73\xcd\xb7\xdf\xcd\x17\xa7\x49\xcd\x32\x7a\x8a\x86\xd6\x50\x7e\x8d\x48\x4a\x77\xe9\x3b\x19\xb6\x8e\x70\x19\x10\xc9\x91\x62\x42\xe9\xec\x3d\xb9\x3d\xe6\xf5\xfc\xb4\xaa\xf3\xcd\xe8\x35\xac\x17\x8a\xc4\x62\xbd\xb9\x0c\x31\x8c\x62\x3d\x71\x59\xa1\x34\x8c\x9b\xdb\x43\xc7\x2a\xfc\x91\x67\xed\xb8\xc1\xd9\x12\xbd\xba\xa7\xf2\xe6\xb6\xdd\x0b\xcd\xb0\x78\xf3\x66\x71\x52\x1d\xd6\x96\x68\xc7\xcd\xcd\xd9\x43\xdb\xeb\x55\xda\x6e\xd9\x8e\x9b\x19\x24\x8e\x54\xdd\xe6\xd9\x26\x44\xdc\xcd\x60\x92\x4c\x54\xde\x10\x1e\x0e\xa4\x5e\x0d\xce\x4a\x79\xf8\x4b\x9c\x6a\x86\xe2\xbd\x7f\xef\x8b\xc9\x39\x63\x97\x28\xff\x02\xff\x56\x9a\x09\x53\xcc\xb0\xa8\xf2\x2c\xb3\x1b\x38\xf2\x25\xbb\x0a\x5f\x2d\xb1\x98\x68\x99\x0e\x5e\xac\x1f\x29\xcf\xb2\xcf\x49\x26\x95\xf4\xa5\xd2\x75\xb4\xfd\x6a\x50\x9a\x4a\x76\x37\xf3\xdb\x07\x9d\x03\x6c\xb9\x44\x51\xe0\xd3\xa7\xa4\x73\xc4\x5f\x04\x2f\xca\x7a\x2e\x27\xc8\x0c\x85\x1c\x1a\x57\x97\x5f\x5f\x55\x75\x4b\x9b\x10\xa9\x4e\x5d\x9d\x17\xd5\x73\xd4\xc0\x0d\x5b\xe3\x95\xab\x0f\xc3\x5d\x24\xbd\x7d\x9e\xa6\x23\xa9\x14\xb2\x76\x0f\x4f\x52\xb3\xa8\x28\x2b\x8a\x5b\x8a\xff\x8b\x7b\x2c\xfc\xed\xe8\xaf\x89\x85\x5f\x40\x76\x81\xe9\x5d\xb4\x42\xe7\x7e\xfd\x4e\x59\x79\x9e\x72\x34\xb9\x52\xd6\x97\x8f\xf0\x29\xff\xc4\x84\xe0\xdd\x1e\xdc\x85\x1d\xc6\x01\x3b\x2b\x1d\x2e\x7f\xbf\x7e\x7b\x7e\xf1\xe3\x0f\xe7\x17\xbf\x2e\x17\xdf\xe3\x67\xe6\x91\xf0\xfa\xe4\xe4\x35\x4a\x1d\xfa\x9e\xbc\x60\x71\x5a\xfd\xa7\xe7\x31\x7e\x26\xd0\xc7\x97\xd4\xf8\x45\x4f\x1e\xa9\xfa\x79\xda\x93\xb7\x66\xa2\xa1\x69\xf0\xf7\x9f\x7f\xe1\xa2\x4b\x09\x5f\x4f\x0f\x45\xfd\xa2\x92\xaf\x7e\x22\x35\xdc\xad\xb4\xda\x92\x37\xd3\x79\x3e\x15\x62\xc3\x58\x42\x0d\x03\xf9\x75\x69\x78\x76\x48\x6b\x95\xa7\xb5\xf4\xcc\xd5\xab\x83\x4d\x69\xb8\xca\xb3\x48\x32\x46\x9f\x7f\xce\xff\x09\x00\x00\xff\xff\xa6\xdc\x8b\x92\x54\x05\x00\x00"), + }, + "/src/net/http/server_test.go": &vfsgen۰CompressedFileInfo{ + name: "server_test.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + uncompressedSize: 182, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x44\xcc\xbb\x0a\xc2\x40\x10\x85\xe1\xda\x79\x8a\x65\xab\x44\x21\xa3\x85\x20\x79\x02\x0b\xbb\xa4\x97\x5c\x26\x9b\xcd\x6d\x97\x9d\x99\x4a\x7c\x77\x09\x88\x76\xe7\x2b\xce\x8f\xe8\x42\xd9\xaa\x5f\x7a\x33\x31\x20\x9a\xd3\x0f\x10\x9b\x6e\x6e\x1c\x99\x51\x24\x3e\x85\x58\x00\xfc\x1a\x43\x12\x63\x77\xf9\xcd\x59\x80\x41\xb7\xce\xd4\xc4\x52\xfb\x95\x82\xca\xbd\xd9\xfa\x85\x52\xa5\x91\xd2\xb0\x68\x50\x7e\x04\xc7\x99\x98\xe3\xf7\x53\xd4\xb9\x79\xc1\x41\x8a\x6a\xf6\x31\xb3\x7b\x9c\x4b\x44\xe7\x65\xd4\xb6\xe8\xc2\x8a\x2e\xc4\x91\xd2\xc4\xff\xe1\x99\x95\x18\x2f\xe7\xdb\xd5\xe6\xf0\x86\x4f\x00\x00\x00\xff\xff\xc1\x2d\x07\xfc\xb6\x00\x00\x00"), + }, + "/src/net/http/transport_test.go": &vfsgen۰CompressedFileInfo{ + name: "transport_test.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + uncompressedSize: 373, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xbc\x8e\xbd\x4e\x85\x40\x10\x85\x6b\xf7\x29\x26\x54\xa0\x06\x7a\xdb\x9b\xf8\x17\x35\x37\x81\xde\xec\x85\x23\x8c\x70\x67\x37\x3b\x83\xa2\xc6\x77\x37\x6b\x8c\xad\x9d\xe5\x37\x93\x73\xce\xd7\x34\x63\xb8\x38\xac\xbc\x0c\xf4\xac\xae\x69\xe8\xec\x17\x5c\xf4\xfd\xec\x47\xd0\x64\x16\x1f\x0d\x6a\xce\xf1\x31\x86\x64\x54\x64\x62\x19\x0b\xe7\x9e\x56\xe9\xa9\x83\x5a\x97\xbc\x68\xfe\xee\x91\x94\xd5\x76\x41\xe4\x0e\x7e\x7e\xc0\x0b\xd2\xcd\xb0\xa0\x34\x3a\xfd\xc9\xd5\x5d\x45\x1f\xee\xc4\xea\x76\xe6\x58\x7e\xb7\x51\xc2\xc2\x18\x28\x08\xa5\x55\x8c\x8f\xa8\x5b\xd8\x25\x8b\x5f\xf8\x1d\xa9\xac\xce\xe9\x75\xe2\x7e\x22\x56\x92\x60\xa4\x6b\xcc\x63\x18\xe8\xf0\x46\x57\x21\x4e\x48\xb7\x6d\x5d\x54\xee\xf3\x0f\xa7\x5d\x10\xc3\x66\x59\xed\xde\x6f\xf9\xa2\x7b\xa4\xeb\xa0\xf6\x6f\x82\x5f\x01\x00\x00\xff\xff\x1f\x87\xc9\xab\x75\x01\x00\x00"), }, "/src/os": &vfsgen۰DirInfo{ name: "os", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247006959, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 9, 991777300, time.UTC), }, "/src/os/file.go": &vfsgen۰CompressedFileInfo{ name: "file.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246888668, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 210, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x4c\x8c\x31\x8e\xc2\x30\x10\x45\xeb\xf5\x29\x7e\x69\xef\x46\xb1\xd2\x6c\xc1\x01\xe0\x00\x14\x14\x88\xc2\x89\xc7\x91\x21\xb6\xa3\xb1\x2d\x84\x10\x77\x47\x4e\x81\x28\x46\x9a\xff\xbe\xde\xd7\x7a\x4e\xbb\xb1\xfa\xc5\xe2\x9a\x85\xd6\xf8\xfb\x04\xb1\x9a\xe9\x66\x66\x42\xca\xa2\x35\x27\xf6\x85\x8e\x85\x7d\x9c\x31\xa5\xd5\x93\x85\xe3\x14\x70\x48\x18\xfa\xe1\xbf\xc3\x48\x2e\x31\xc1\x17\xdc\x4d\x46\x30\x96\x10\x1a\x58\x1b\x0f\x26\x96\x0e\x26\x5a\xd4\x98\x8d\xa3\x5e\xb8\x1a\x27\x48\x87\xdf\xbd\x5f\x48\x7d\xcf\xcb\x8c\xbc\x3d\x0a\x32\xc2\x37\x91\x98\xdb\x25\x56\x78\x8a\x1f\xa6\x52\x39\xc2\xf5\x9b\x24\xcf\x97\xf1\x51\x48\x66\xa5\xc4\x4b\xbc\x03\x00\x00\xff\xff\x9b\x93\xfe\x58\xd2\x00\x00\x00"), }, "/src/os/os.go": &vfsgen۰CompressedFileInfo{ name: "os.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 246979668, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 752, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\x52\x4d\x8b\xdb\x30\x10\x3d\x5b\xbf\x62\xaa\x93\x44\x5a\x7b\xb7\xbd\x6d\x6a\xca\xb6\x84\xb4\x50\x5a\x68\x29\x3d\x2c\xcb\xa2\xd8\x63\x65\x12\x7b\x14\x24\xb9\x1b\x08\xf9\xef\x45\x8a\x9d\xc2\xd2\x83\xc1\x9a\x79\xef\xcd\x9b\x8f\xaa\xb2\xee\x6e\x33\x52\xdf\xc2\x2e\x88\xaa\x82\xc5\xf5\x21\x0e\xa6\xd9\x1b\x8b\xe0\x82\x10\x34\x1c\x9c\x8f\xa0\x44\x21\xd1\x7b\xe7\x83\x14\xc5\x13\xc8\x91\x83\xe9\x50\x42\x55\x41\xe7\x3c\x58\x77\xd7\x13\xef\xd9\x0c\x28\x44\x21\x2d\xc5\xed\xb8\x29\x1b\x37\x54\xd6\x1d\xb6\xe8\x77\xe1\xdf\xcf\x2e\x48\xa1\x85\x68\x1c\x87\x08\x14\x3e\x92\x5d\x71\x4b\x86\xa1\x86\xce\xf4\x01\x85\xe8\x46\x6e\xc0\x8f\x1c\x69\xc0\x27\xe3\x6d\x50\x1a\x1e\x1e\x43\xf4\xc4\x16\x4e\xa9\x26\xbb\x08\x8d\xe9\x7b\x6c\xc1\x31\xfc\x26\x6e\xdd\x73\x10\x85\xc7\x38\x7a\x86\x7b\x6f\x83\x38\x4f\x3a\xc4\x14\x95\x86\x93\x28\xa8\x83\x83\x77\x0d\x86\x00\x77\x35\xec\x42\xb9\xee\xdd\xc6\xf4\xe5\x1a\xa3\x92\x53\x46\xea\xe5\x15\xf4\x2a\x83\x7e\x71\x8b\x1d\x31\xb6\x49\x22\x69\x18\x6f\xff\x24\x81\x09\x76\xa1\xa7\x60\xe2\xe6\xe4\xff\x88\x45\x32\x05\x35\x0c\x66\x8f\x6a\x6e\xe6\x75\xc6\x97\x5f\x91\x6d\xdc\x2a\xfd\xe6\x56\x27\x64\x1a\x28\xa5\x0a\x37\x4b\x20\x78\xff\x12\xb3\x04\x5a\x2c\x2e\x9a\x59\xf4\x81\x1e\xa1\xbe\x80\xbe\x70\x8b\x47\x45\xb0\x80\x5b\x5d\xfe\xcc\x25\x54\x96\x3c\x8b\xfc\x9d\xf3\x10\x7a\x64\x95\x88\x1a\xea\x1a\x6e\xb2\xd2\x64\x6e\xf6\x75\x92\x1f\x64\x86\x9f\x5f\x2c\x63\x83\x9d\xf3\xb8\x3a\x5e\x46\x3a\x67\xf1\x88\xcd\x18\xcd\xa6\x47\xa5\x41\xcd\xad\xe5\x73\xc9\x83\x9f\xd6\x22\xe5\x14\x0c\xe5\x37\x7c\x56\x72\x75\xa5\xe5\x7d\xd2\x70\xe8\x71\x40\x8e\xd8\xe6\x9b\x5a\x7f\xbf\xff\xf1\xe9\x73\xbd\x0b\x52\x27\x1f\xf9\x60\xe7\x23\x83\xce\x84\xe8\x0d\xb7\xb3\xb3\x72\x0e\x5c\x1c\xcd\x2f\xa5\x61\x24\x8e\xef\xde\x8a\xbf\x01\x00\x00\xff\xff\xdf\xd8\xc2\x48\xf0\x02\x00\x00"), }, - "/src/os/removeall_noat.go": &vfsgen۰CompressedFileInfo{ - name: "removeall_noat.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247046876, time.UTC), - uncompressedSize: 3402, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x8c\x56\x4d\x73\xdb\xc8\x11\x3d\x13\xbf\xa2\xcd\x83\x4d\xc6\x34\x48\x79\xf7\x60\xcb\x51\xa5\x14\x8b\xeb\x52\xca\x91\x5c\xe6\x26\x3e\xa4\x52\xa9\x21\xd0\x20\xc6\x1a\xcc\x20\xdd\x03\x71\x91\x95\xfe\x7b\xaa\x67\x06\x20\xa9\xd5\x56\xed\x0d\x1f\xdd\x3d\xef\xbd\xfe\x9a\xe5\x12\x3e\xba\xb6\x27\xbd\xab\x3d\xbc\x5d\x9d\xbd\x83\x9f\x6b\x84\x4f\x0e\x2e\x3b\x5f\x3b\xe2\x1c\x2e\x8d\x81\xf0\x9b\x81\x90\x91\xee\xb1\xcc\xb3\xe5\x12\xfe\xc1\x08\xae\x02\x5f\x6b\x06\x76\x1d\x15\x08\x85\x2b\x11\x34\xc3\xce\xdd\x23\x59\x2c\x61\xdb\x83\x82\xbf\x6e\xae\xde\xb0\xef\x0d\x8a\x97\xd1\x05\x5a\x46\xf0\xb5\xf2\x50\x28\x0b\x5b\x84\xca\x75\xb6\x04\x6d\xc1\xd7\x08\x9f\xaf\x3f\xae\x6f\x36\x6b\xa8\xb4\xc1\x3c\x13\x97\x4f\xae\xad\x91\xfe\xb6\x81\x8e\x91\x61\x6a\x9d\xf2\x53\xd0\x4d\x6b\xb0\x41\xeb\x95\xd7\xce\x0a\x10\xc7\xf9\x57\x6c\xdc\x3d\x5e\x1a\x33\x9b\xc3\x16\x0b\xd5\x09\xc4\x8e\xc0\xba\x12\xdf\x70\xcf\x85\x32\x46\x22\x36\xae\xec\x0c\xca\xf1\xaf\x3c\xd4\xca\x96\x06\xa1\x55\xcc\xda\xee\x40\x01\x7b\xea\x0a\x2f\x78\x0a\x47\x84\x85\x37\x7d\x20\x5c\x7b\xdf\xf2\xf9\x72\xb9\xd3\xbe\xee\xb6\x79\xe1\x9a\xe5\x2e\x40\xfb\xce\x87\x07\xcd\xdc\x21\x2f\xdf\xbf\xff\x41\xb0\xef\xdc\xf9\xb6\xd3\xa6\x84\xef\x2c\x11\x5e\x8f\x2f\x59\xab\x8a\x3b\xb5\x43\x70\x9c\x65\xba\x69\x1d\x79\x98\x65\x93\xa9\x76\xd3\x6c\x32\xa5\xce\x7a\xdd\xa0\x3c\x26\xd4\xd3\x6c\x9e\x65\x55\x67\x0b\xa0\x91\x63\xab\x7c\x2d\x60\xb5\xdd\xcd\x01\x89\x1c\xc1\xaf\xd9\x44\x57\x10\x7e\x5c\x5c\xc0\x74\x2a\x1f\x26\xcb\x25\x54\x4a\x1b\x60\x6d\xd0\x7a\xd3\x83\x77\x40\xe8\x55\x20\xd8\xb4\xca\xeb\xad\x36\xda\xf7\xb0\xd7\xbe\x86\x96\xf0\x5e\xbb\x8e\x61\x8b\xb5\xba\xd7\x8e\x62\x04\x57\xc1\xa8\x6e\x0e\x1b\x94\x3c\x73\x87\xf0\xf6\xdd\xbb\x1f\x56\x79\x36\x99\x10\xfa\x8e\x2c\x58\x6d\xb2\xc9\x63\x96\x89\x8f\x54\x12\x35\xa5\x26\xe0\x9e\x3d\x36\x20\x4c\xa0\x45\x6a\x74\x28\xa6\xc6\xdd\x8b\xe2\xd3\x7c\x0a\xce\xc2\x17\xa3\x2c\xbc\x5f\x04\x4f\x76\xb0\x47\x28\x9d\xe4\x27\xda\x83\xf6\x11\x77\x13\x71\x5b\xd6\xec\xd1\xfa\x08\xda\xd7\x18\xfc\xa6\xcf\x97\xc6\x01\x79\xd0\x07\x6d\xc9\xdf\xb4\xaf\xaf\x9c\x0f\x22\xce\x83\x4c\x89\xc0\xcb\x2f\xca\xd7\x6b\x51\xf3\xd7\xdb\xf6\x1c\xa6\xa3\xef\x74\x01\xf2\xeb\x3c\xc8\xbb\x80\x35\xd1\x39\xa4\xec\xe4\xeb\xeb\x9b\x7f\x5e\x7e\x7e\x1c\x99\x6f\x02\x06\x28\x14\xe3\x39\xe8\x01\x00\xec\x1d\xdd\xf1\x02\xf6\xf8\x8a\x02\x3b\xcc\xb3\x09\x12\xc1\xf9\x45\xb2\x88\x70\x22\x48\x22\xc9\xa1\xd5\x06\x1e\x1e\xe0\x9a\x6f\x9c\x5f\xff\xa2\xd9\xcf\x90\xe8\x04\xf0\xb1\xe2\xb7\xbe\x46\xda\x6b\xc6\x85\xb4\x61\x68\x4d\x05\xa5\x96\x22\x76\xd4\x8b\xa6\x16\xb1\x8c\x42\x16\x1d\x31\x82\xb6\xde\xfd\x25\x9b\x94\x9a\x16\xc0\x09\xcb\x67\xf6\xca\x1f\x41\x09\xdf\x5f\x44\x2c\x72\x70\xfa\xb4\x00\x77\x27\xe6\xf2\x9c\xcf\xfe\x34\xea\x36\xff\x20\x3f\x5e\xbe\x84\xd9\x11\xea\x60\xb4\x16\xe8\x0f\x0f\x30\xbc\x08\xc1\x51\xc2\x9b\xdb\x9f\xaf\xae\xbf\x46\x6a\x27\xdc\x26\x8f\x07\xb2\xe2\x29\x6c\x05\xc3\x8b\x52\x53\x7e\xcd\x57\x9a\x66\xf3\xa1\xd0\x6f\x9c\x3f\x66\xfc\x01\x92\x9f\x4c\x96\xd8\x22\x15\xb9\x26\xa9\x7d\x54\xb6\x29\x6c\x10\x31\x25\xab\x70\x56\x0a\x8c\xe1\xe5\x10\xa4\xd2\xc4\x3e\x86\x49\x89\xbb\x88\x08\xab\xd8\x7a\x93\xaa\x5c\x40\xd2\xf0\xb6\x45\x3b\x48\x38\xa4\xf3\x48\x42\xf9\xf4\x5c\x4e\x03\x89\x4b\x43\xa8\xca\x1e\x4a\x34\xe8\xe3\x14\x65\xd7\xa0\xb3\x08\x68\x38\xc0\x7e\xa2\x50\x90\xe8\x84\x4b\x20\x33\x91\x3e\xf1\x40\xf8\xdf\x8d\xfe\x1f\xc2\x05\x9c\xad\xde\xfe\x98\x4d\x26\xf7\x8a\xc0\xaa\x06\x19\xfe\xf5\xef\x38\x40\xd2\x47\x39\x57\xf2\x12\x38\x4a\x80\x81\xd9\xc4\x76\xcd\x3a\x32\x5b\x85\x57\xf1\x5e\x8c\xf6\x17\x50\x95\xf9\x57\x54\x65\xa9\x29\xfc\x9a\xa5\x33\xe7\x12\x24\x44\xf9\xcf\x22\x1c\x29\x11\x48\xd9\x1d\x26\x00\x91\x34\x12\x9d\x1d\xba\x60\x1c\x6e\xaf\xd3\x78\x9b\x49\x6d\x6d\xb0\x55\xa4\xbc\xa3\x39\xbc\x0e\xce\xf3\xe0\x7a\xda\x2a\x31\x5c\xca\x8d\x44\x0d\xef\x8f\x47\x96\x67\x27\x69\x18\x88\xbd\x7e\x7d\x30\x0c\xca\x49\x1e\xae\x2b\xe9\x18\x59\x52\x31\x13\xa0\x6c\x0f\x68\x3d\xf5\x0b\xd8\x12\xaa\x3b\x69\x24\xf6\x8a\x3c\x58\xdc\x83\xf6\x48\x61\xe4\xe4\xc9\xff\xa8\x1b\x65\x9a\x69\x2e\x14\x95\x50\x74\x44\x32\xb8\x92\x84\x3b\x14\xef\x5f\x7c\x08\xac\x91\x41\xd9\x12\x3c\xa5\xec\xcb\x7c\xf4\x35\x36\x79\xaa\x99\x94\x86\x17\x17\x63\x52\x23\x8d\x00\x67\x28\x84\x40\x60\x28\x64\x89\x20\xbb\x94\x63\xe5\x4b\x23\x1c\x06\x42\xa3\x7a\xa8\x95\x14\xbb\xec\xca\x32\xba\x89\xc9\xed\x26\x0e\x09\xae\xbb\xaa\x32\x08\xda\xe7\x71\xa8\xf5\x61\x88\x4b\xd0\xe3\x74\x47\x47\xb5\x93\xd9\x2c\x31\xf9\x4e\xb7\xa1\x66\x07\x56\x79\x58\x06\xce\x9a\x1e\x08\x8d\x56\x5b\x83\xb0\x57\x7d\x3a\xd0\x81\xba\x77\xba\x8c\x03\x4b\x06\x97\x83\xc2\x38\xc6\xa0\x05\xe1\x1b\xd7\xa2\x8d\x33\x5e\xcc\x47\xf8\x27\x7b\x68\xf5\xee\xc7\xb3\x3c\xf4\x60\xfe\x51\x7c\x67\xa1\xf4\x74\x75\xa8\xd1\x0b\xd0\x2e\x5f\xdf\xfe\x14\x25\x1b\x14\x7b\xcc\x86\x5c\x1f\x13\x4a\x2d\x8f\x25\x28\x1b\xbb\x61\x21\xd7\x0f\xd1\x21\x7b\xb6\xe6\x62\xc5\xa5\xb3\x52\x58\x5d\x81\x41\x3b\x0b\x01\xe7\x62\xbd\x7a\x7a\x74\x3c\xfb\xdb\xb0\xea\xf6\xca\xa6\x2d\x17\x29\x77\xd6\x62\x81\xcc\x8a\xb4\xe9\x17\xb2\x15\xb5\x94\x64\xf4\xda\x39\x0f\x15\xee\x91\xe4\x2e\x65\xa5\x1e\x3a\xe4\x54\x56\xc3\x94\x3b\x10\x5a\x48\x4d\x45\x47\x8e\x79\x1c\xf7\xef\x69\x49\x58\xb7\xcf\x45\x0d\xb9\xa0\x25\xfb\xae\x28\x10\xcb\xb0\xb8\x40\x1d\x36\xd7\x13\x7e\x7f\x3e\x2d\xc9\xd3\x96\x1e\x47\xe1\xd8\x85\xbf\xb7\xdb\xce\x86\x41\xf8\x74\xc0\x1d\x9c\x4f\x3b\x38\x0a\x28\x6a\xc4\x82\x0b\x53\xfe\x98\xdc\x60\x75\xe0\x38\x8c\xf6\x45\x28\x30\xd6\xb6\xc0\x28\x6b\xb0\x93\x24\x26\x65\xa3\x98\x41\xdf\x3d\x0e\x12\x87\x3e\x19\x3a\x85\x10\x5a\x72\x5b\xb5\x35\xbd\x68\x23\x59\x6c\x1c\x61\x6a\x39\xef\x0e\x41\xc3\xc6\x81\xab\x90\x68\xe3\x5c\x0b\x8a\xc2\xbd\x37\xe4\x5b\x1d\xc7\x3c\x42\x1a\x5a\x2a\x87\x6f\xf8\x4a\x6e\x4e\xe9\xa0\xc1\xf4\x7b\xc7\x3e\xcc\x0f\xf1\x61\x35\x90\x3f\xd9\x0f\x71\x19\xa4\xb1\xf0\x64\xc3\x1d\x1a\x29\xfb\x9d\x74\xfd\xc1\x64\x9d\xde\x44\x42\xd3\xc5\x1b\x6c\xfe\xe9\xf6\x76\x13\xae\xa2\x7b\x6d\x4b\xb7\xe7\xa9\xdc\x0b\xae\xf9\x8b\xdc\xe9\x98\xb5\xb3\x47\x51\x74\x05\x15\x8f\x0b\x74\x33\xde\x41\x3e\xfc\xa6\xd9\x86\xfe\x83\x8f\x75\xe3\xca\x59\xbc\x90\xfd\xa4\x0d\xfe\xdd\x95\x38\x5b\xbd\x5d\xad\x1e\xb4\xf5\xb3\x8a\xf3\xf0\x61\x3e\x9f\x3f\x13\x24\x52\xfe\x6d\x81\x8e\x52\x3d\xd3\xe6\xc7\x7b\xe5\x31\x3b\xd6\xf8\x31\xfb\x7f\x00\x00\x00\xff\xff\xc6\xc3\xaa\xe4\x4a\x0d\x00\x00"), - }, "/src/os/signal": &vfsgen۰DirInfo{ name: "signal", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247116667, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/os/signal/signal.go": &vfsgen۰CompressedFileInfo{ name: "signal.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247143167, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 247, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\xce\xbd\xaa\xc2\x40\x10\x05\xe0\x7e\x9f\xe2\x94\x09\x17\xee\x5e\xae\x9d\x60\x21\x16\xda\x29\xbe\x80\x6c\x92\xc9\x32\x71\x33\x1b\xf6\xc7\x26\xe4\xdd\x45\x0d\x42\x04\xcb\x99\xef\xc0\x39\x5a\x5b\xbf\xae\x32\xbb\x06\x5d\x54\x5a\xe3\xe7\x7d\xa8\xc1\xd4\x57\x63\x09\x91\xad\x18\xa7\x1e\x7a\x5a\xbc\xc0\x11\xe2\x13\xb8\x1f\x1c\xf5\x24\x89\x1a\xb4\x3e\x60\x7f\xdc\x9e\x77\x87\x4d\x17\x7f\x95\x6a\xb3\xd4\x73\xfc\xd2\x70\x34\x95\xa3\x22\xb3\xa4\xd5\x7f\x89\x71\x5a\x30\xc9\x42\x3f\x99\xad\xf8\xf0\x9d\x03\xd5\xb7\xa2\xc4\x8b\x01\x8c\x08\x94\x72\x10\xfc\x61\x9a\x67\x38\xef\x87\xe2\x59\x7b\x0f\x00\x00\xff\xff\x9c\xa7\x10\xc9\xf7\x00\x00\x00"), }, "/src/reflect": &vfsgen۰DirInfo{ name: "reflect", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247592289, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/reflect/example_test.go": &vfsgen۰CompressedFileInfo{ name: "example_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247245666, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 325, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x5c\x8d\xcf\x4a\x03\x31\x10\xc6\xcf\x9d\xa7\x18\xf6\x20\x2d\xca\xa6\x95\x7a\x68\x6e\x1e\x44\xf1\x52\xb1\x0f\x60\xd3\xcd\xe4\x4f\xdd\x24\x4b\x32\x11\xa1\xec\xbb\xcb\xae\xa8\xe0\xed\x1b\x7e\xf3\x7d\x3f\x21\x6c\x92\xa7\xea\x7b\x8d\xe7\x02\x42\xe0\xf5\xef\x01\x83\xea\xde\x95\x25\xcc\x64\x7a\xea\xf8\x8d\xa9\x30\x80\x0f\x43\xca\x8c\x8d\x09\xdc\x00\x98\x1a\x3b\x7c\xf8\x54\x61\xe8\xe9\xc0\xb9\x76\xbc\x37\xcb\x15\x5e\x60\x21\x04\x3e\xa6\xc1\x51\x7e\x3e\xa0\x4e\x54\x30\x26\x46\x3f\xfd\x05\x8a\xfc\x33\xda\x2a\xad\x5f\xbf\xe3\xde\x18\x8c\x44\x9a\x34\x9a\x94\x91\x9d\x2f\x38\x29\xdb\x79\xeb\x40\x84\x8e\x79\x28\x52\x08\xeb\xd9\xd5\x53\xdb\xa5\x20\xec\xac\x38\x97\xbf\xe0\x4b\xa9\x54\xc4\x76\xb7\x03\x58\x98\xc0\xed\x4b\xf6\x91\xfb\xb8\x3c\x7e\xa8\xbe\x92\xc4\xab\xcb\x13\x79\xeb\x58\xae\xdb\x2d\xde\x5b\x92\xb7\x23\x9c\x4b\x8a\x12\xf1\xd2\xb8\x19\x35\x13\xbb\x69\x94\xa5\x66\xa2\xff\x8b\x9b\xf6\x6e\x2e\x6e\xd6\xe3\x71\x05\x23\x7c\x05\x00\x00\xff\xff\xc2\x49\xbb\xe5\x45\x01\x00\x00"), }, "/src/reflect/reflect.go": &vfsgen۰CompressedFileInfo{ name: "reflect.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247395832, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 44766, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xec\xbd\x7b\x73\xdb\x46\xb2\x28\xfe\x37\xf9\x29\xc6\xac\x2d\x05\xb0\x11\xca\x52\x72\x52\xf9\x29\x51\xaa\x12\xe7\xf1\x53\x76\x6d\xb9\xe2\x38\xb7\xea\xea\xe8\xfa\x8c\xc0\x01\x39\x26\x38\xc0\x02\x43\x4a\x5c\x59\xdf\xfd\xd6\x74\xf7\xbc\x00\x90\x92\xec\xec\x3d\x7b\x6f\x6d\xfe\x88\x45\x60\x1e\x3d\x3d\x3d\x3d\xfd\xc6\xe1\xe1\xbc\x3a\xb9\x5a\xcb\x72\xc6\xde\xb7\xe3\xc3\x43\xf6\xcc\xfd\x18\xd7\x3c\x5f\xf2\xb9\x60\x8d\x28\x4a\x91\xeb\xf1\x58\xae\xea\xaa\xd1\x2c\x19\x8f\x26\xa2\x69\xaa\xa6\x9d\x8c\x47\x13\xa9\xb4\x68\x14\x2f\x0f\xa5\xae\xb8\x79\xd0\xea\x26\xaf\xd4\xc6\xfc\xb9\x56\x2d\x2f\xc4\x64\x3c\x1e\x4d\xe6\x52\x2f\xd6\x57\xd3\xbc\x5a\x1d\xce\xab\x7a\x21\x9a\xf7\xad\xff\xe3\x7d\x3b\x19\xa7\xe3\xf1\x86\x37\x4c\x2a\xa9\x25\x2f\xe5\x3f\xc4\x8c\x9d\xb2\x82\x97\xad\x18\x8f\x8b\xb5\xca\xe1\x4d\x92\xb2\xdb\xf1\xe8\xf0\x90\xf1\x4d\x25\x67\x6c\x26\xf8\x8c\xe5\xd5\x4c\x30\x51\xca\x95\x54\x5c\xcb\x4a\x8d\x47\xeb\x56\xcc\xd8\xc9\x29\x33\xdd\x12\xc9\x00\xc2\x82\xe7\xe2\xf6\x2e\x65\xb7\x77\xf8\x3e\x69\xf4\xb6\x36\x4f\xe8\xe7\x5a\xe5\xd5\x6a\x55\xa9\xdf\xa3\xa7\x2b\xa1\x17\xd5\xcc\xff\xe6\x4d\xc3\xb7\x71\x93\x7c\xc1\x3b\x9d\xcc\xb4\xf1\x13\x07\x41\x67\x74\x5e\xc7\x0f\x6a\xdd\xc4\x0f\xda\x52\x76\x3b\xb5\xba\x59\xe7\xba\x33\x7e\x17\x4e\x6c\xf4\xb3\x14\x25\x3c\x1c\x8f\x62\xb4\xea\x66\x2d\xc6\xa3\xb5\x54\xfa\x6b\x33\x10\x3b\x65\xe6\x9f\xf3\x22\x81\x47\xc9\xf3\x34\x9d\x26\x4f\x01\x41\x29\x3b\x3c\x64\xad\xd0\xac\xa8\x1a\xd6\x08\x5e\x8e\xef\xc6\x86\x4c\x5e\x89\x6b\xd6\x08\xbd\x6e\x54\xcb\x38\xfb\x83\x97\x6b\x43\x27\x75\x23\x5a\xa1\xb4\x54\x73\xc6\x59\x5d\xc1\xb2\x99\xae\x18\x67\x4a\x5c\xb3\x7f\x88\xa6\x62\x1b\xd3\xd4\x8c\x60\x06\xd4\x0b\xc1\xda\x5a\xe4\xb2\x90\x62\xc6\xcc\x7c\x53\xf6\xfb\x82\x6b\x26\xdb\x0c\x5e\xe2\x14\x62\x86\x33\x7c\xd6\x02\x9c\x4c\xb6\xec\xb5\x6e\x7e\xaf\x12\xbd\xad\xd3\xe9\xf8\xf0\xd0\x8c\xf7\xfb\x42\xb0\x75\xdd\xea\x46\xf0\x15\xdb\x88\xa6\x95\x95\x62\x52\xe5\xe5\x7a\x26\x5a\xc6\x15\x13\x37\xba\xe1\x2c\x5f\x88\x7c\x09\x30\x01\x05\xe5\x8d\xe0\x00\xaf\x99\xbc\x65\x7a\xc1\xb5\x19\x8c\x37\x82\x69\x3e\x9f\x8b\x19\xe3\x2d\x9b\x57\x27\xaa\xd2\x52\x2d\x04\xaf\x0d\x80\xb2\x65\xed\xa2\x5a\x97\x33\xf5\x99\x66\x2b\xae\xcd\x2a\xa5\x62\xbf\x00\x39\xff\xfa\x26\x63\x5c\xcd\x98\x6e\x78\xbe\x94\x6a\x6e\x86\x33\xc3\xb2\x56\x73\x0d\xb0\x57\x1b\xd1\x7c\x9e\x57\xab\xba\x14\x37\x19\x6b\x2b\x76\x2d\xd8\xfb\x75\xab\x59\xbb\x94\x35\xb6\x05\x28\xa7\x48\xf7\xaf\xc4\xb5\x59\x28\x2c\x3d\x25\x54\xdf\x8e\x47\xb2\x30\x30\xb3\xd3\x53\xa6\x64\x69\x1e\x8c\x6a\xae\x64\x9e\x4c\xe8\xb8\x9e\x40\x47\x25\xcb\x74\x92\x8e\x47\x77\xe3\x91\x36\x47\x42\x6f\x6b\xb7\xb5\xe3\x51\x8d\xcf\xa6\x35\x60\x13\x1e\x34\xe6\x09\x9e\xdb\x77\x30\x73\x3a\x1e\x15\x25\x9c\xa6\x92\xcf\x93\xd7\xba\x49\xc7\x23\xdc\x16\x84\xe5\xb6\xd6\x19\xab\x75\x93\xb1\xa2\xbc\x33\xd4\x01\x40\xbf\x6f\x0d\xb8\x01\xdc\x4f\xdf\xb7\xd3\xf3\xab\xf7\x22\xd7\x06\x56\x1a\xe0\x7d\x3b\x3d\x23\xf6\x81\xef\x70\x47\x7f\x11\x3a\x99\xe0\x08\x93\xd4\x0d\x49\xeb\x72\xe3\xfa\x11\x53\x86\x2b\xf2\x68\xc1\x21\x82\x1e\x93\xd4\x60\xea\x7d\x3b\x7d\xab\x66\xa2\x90\x86\xa4\x0c\xca\x1a\x40\xc0\x01\xf2\x82\xf1\x68\x34\x6a\xe5\x3f\xc4\x09\x33\xc7\xa0\xd6\x4d\xe2\x46\x32\x8f\x27\xa9\x01\x36\x49\xd3\xcc\x34\x5c\x4a\x35\xc3\x86\x5f\xfb\x66\xe6\x61\xdc\xac\xd5\xcd\x09\x33\xd4\xff\x8a\xaf\xc4\x79\x51\x24\xf4\x67\x62\xd9\xe6\x9b\x68\x1a\xdd\x48\x35\x9f\xa4\x69\xc6\x26\x93\xcc\x2f\x44\xdc\x18\xc6\x2b\xcc\xd8\x3f\x54\x55\x99\xa4\x38\xfa\xdd\x78\x34\xea\xa3\xb0\xd1\xe9\xf4\x4d\x80\x41\x18\x27\x1d\x8f\x46\x66\xb8\x37\x5d\xbc\x64\x6c\x70\x04\xc3\x33\x46\xc8\x55\xde\x08\x40\xd2\xfb\x76\xfa\x4b\x59\x5d\xf1\x72\xfa\x82\x97\x65\x32\xf9\x8b\x7b\xeb\x67\x90\x05\x73\x4f\xa7\x7f\x13\x6a\xae\x17\x49\xca\x9e\x9c\xb2\xe7\xec\xc3\x07\xbf\x1c\xc5\x57\xc1\x5a\x60\x23\x46\x8d\x9e\x6a\x43\x61\xec\xc3\x29\x83\x3f\xde\x12\x43\x36\x2f\xc3\x4d\x1d\xea\xdc\xef\x6d\x70\x3c\x33\xaf\x0c\x8e\x46\xe6\x62\xa1\x45\xbf\x04\xf8\x5a\x76\x71\x89\x90\x9a\xd7\x86\x15\x49\xb3\xc6\xe7\xdf\x30\xc9\xbe\x1d\x58\xc3\x37\x4c\x3e\x7b\xc6\x6e\x0d\x33\xfc\x89\xf6\x82\x5a\xb5\xac\x90\x4d\xab\xa7\x00\xc6\xca\x0c\xe2\x7b\x9f\xa9\x99\xb8\x49\x64\x0a\xef\xec\x1e\x9a\x26\xe1\xe6\xaf\x70\x59\xf5\xd2\xec\xbb\x21\xd2\xc9\x04\xda\xcb\x82\x3d\x71\x7d\x70\x95\xa3\xbc\x32\xcc\xd5\xf0\x6e\xbb\xb2\x51\x67\x59\xa7\x8c\xd7\xb5\x50\xb3\x24\x7e\x9e\x11\x54\x34\x8e\xc1\xe1\x49\x87\x2a\xb1\x25\xd0\xe6\x8a\x88\x77\x34\x5a\xe9\x6d\x0d\x0d\xf1\x7e\x28\x92\xf0\x10\x12\xe4\x7a\x5b\x4f\x52\xdb\xe3\x2e\x75\x48\xbf\xc9\xab\xb5\x02\xd2\x31\xa7\xe4\xe8\xab\xa4\x14\xaa\x03\x56\x9a\x3e\x1a\xfd\x6f\x95\xe8\x6e\x40\x2b\xf2\x4a\xcd\xfe\x29\x3b\xf0\x7f\xf5\x06\xac\x91\xb9\x45\x92\x0d\xb4\xa9\x97\xf3\xd7\x5c\x2f\x1e\xc1\x98\x10\x37\xc8\x95\x40\x26\xb3\xd3\xad\x60\x93\x4f\x18\xb3\x9b\xdc\xdf\x3c\x6a\x79\xe3\x5a\xe2\x5f\xf8\xf4\x1d\x6d\xe2\x49\xe7\x7c\x66\x7e\x15\x01\xf8\x2f\x79\x7d\xd1\xe8\x4b\x76\xca\xd6\xda\xbc\xeb\xb3\xae\xf5\x2e\xe6\x77\x67\x18\x5a\x7b\x2d\x75\xbe\x60\x8d\x9e\xfe\x55\xaa\x19\x71\x8f\x9c\xb7\x82\x7d\x6f\x04\xbb\x13\xe0\xd8\x42\x9b\x97\x80\xe0\x46\x67\xec\xc0\xcb\x7c\x48\x45\xa5\x58\x9d\x74\x2f\x23\x62\xd3\xa5\x58\x4d\xec\x7a\x4b\xa1\x4e\x58\xff\x26\x29\x85\x8a\x6f\x08\xd8\x30\x80\xe1\xc5\x82\x2b\x00\x61\x26\xe1\x16\xfe\xa1\xd2\x8b\x1f\x65\xd3\x65\x80\xad\x50\xb3\x73\x55\x6e\xbb\x3c\xd0\xf4\x3a\x65\x6f\x84\x9a\x51\xa7\xbb\x6e\xcf\x46\xe4\x9b\xdd\x3d\x7f\x13\xf9\x26\xec\xd9\x43\x84\x93\x74\x1f\x85\x87\x99\x6c\x02\x3c\xcc\x64\xd3\x5d\xf6\xcf\x6b\x95\xc3\xb2\x6b\xde\xf0\x55\x6b\xa5\x14\xa4\x3b\x78\x34\x01\x9a\x96\x0a\xce\x36\x5f\x8a\xe4\xe2\x12\x2f\xfc\x8c\x61\x03\x4f\x6b\x11\x3f\x69\xb8\x9a\x0b\x23\x99\x21\xc4\x52\x5d\x48\x43\x3b\x21\xcc\xd4\xdf\xf2\x09\x7f\x78\x1a\xd1\xae\x4b\x1d\x43\x43\xcf\x10\x9c\x0a\x8f\x57\x07\x1e\x6a\xb2\x17\x20\xd3\x13\x21\xaa\xd6\xba\x0f\x92\x1d\xa2\x0f\x53\xb5\xd6\x2f\x3a\x3c\x75\x70\xbe\x70\xcf\x37\xbc\x91\x7c\x26\xf3\xee\x9e\xbb\xb1\x3e\x9c\xb2\x23\xf6\xed\xb7\xec\xe8\x3f\x76\xef\xbc\xd3\x68\xe8\xb2\xdd\xd6\xc2\x1c\x64\x23\x76\x65\x84\xda\x17\x74\xba\x09\xae\xee\xbe\x64\xd1\xa4\x27\xcc\xfe\x45\x5c\x40\x2a\x18\x8f\x31\xa9\xe8\x49\xb5\xd6\xf8\xa8\x5a\xeb\x0e\xc1\x9c\x59\x6d\x0a\xa8\xc6\xde\x02\xe1\x46\xd1\x33\xa2\x9b\xa0\x05\xed\x16\x3d\xb2\x4c\xf9\x1e\xfa\xb1\xfd\x6f\xbb\x37\x4c\x1b\xdf\x2f\xb6\x21\x6e\xa9\xfc\x38\x86\x0f\xfc\xfe\x51\x0c\x7f\xf7\xb6\xc5\x6a\x67\xbc\x77\x6e\xeb\xdc\x65\xf0\xc8\x0b\x80\xf8\xbf\x65\xdf\x76\xf1\x9d\xbd\x7a\xc9\xeb\x61\xae\x6a\x75\x5f\x18\x65\x29\xb6\x27\x6c\x98\x97\x2c\xc5\xd6\xb1\x92\x07\xb2\x1c\x3f\xfb\x6b\xdd\x0c\xcf\x6e\x15\xed\x8f\x1b\xf6\x8d\xd1\xca\x87\x07\xf6\x0a\xfb\x47\x0e\x0d\x8a\x3b\x8c\x5d\x18\xed\x3d\xa6\x6b\x7c\x84\x64\x4d\x83\xfe\xec\x5a\x11\x6d\x07\xaa\x7f\xc6\xb0\xc3\x5e\xf2\x8e\xc7\x41\xb0\x0b\xd0\xf7\xb0\x6f\x44\xe2\x55\x51\xb4\x42\xff\xb4\xba\x42\x29\xca\x72\x75\x99\x02\x07\xb1\x52\x53\x41\x2b\x34\xcd\x66\x7d\x61\x3d\x1a\xc5\xb0\x9f\xbe\x34\x85\xd0\xe0\x41\x0a\x6d\x19\xe1\x61\xa2\xff\x86\xc8\xb6\xf0\xaa\x02\x50\xed\xc0\x3b\xcd\x91\xa0\x8b\x5d\x1a\x56\x74\x1e\xe9\xbf\x70\x23\x8b\xf0\x2c\x66\xbd\x85\x9d\xb0\xe0\xc7\xbd\x27\x35\x30\xea\x7c\xea\x31\x35\xad\x06\x8f\x2a\xee\xa7\x3f\x67\x88\x63\x4f\x7f\x77\x63\x10\x92\x48\x35\xb7\x46\x82\x04\x6d\x01\xd3\xd7\x68\xcd\x49\x86\x95\xeb\xe9\x5b\x68\x65\x14\x53\xa7\xaf\xc7\x8b\x64\xf6\x86\x5c\xd2\xb3\x8e\x59\x6e\xbc\x4f\x93\xb5\x7d\x06\xb5\x55\xfb\xd2\x50\xf7\x9e\xb7\xa4\xfa\xea\xbd\x4a\xef\xdd\x78\x0c\x86\x84\x50\xe8\x24\x02\x34\x20\x12\x7a\x99\x42\x26\x3e\x26\xf1\xd7\xde\x7a\x63\xab\xf3\xb8\xdf\xab\xaa\x28\x18\x09\xc7\x5f\x1c\x8f\xc7\x4e\xde\xf5\xfa\xa7\x45\x57\xa2\xd9\xd3\x70\xda\xd4\x5e\x32\x49\xea\x1a\x07\xa6\x13\x3d\xb5\x43\xed\x19\xc1\x52\xf5\xcb\x87\x8d\x74\x71\xa2\xa7\x24\xa6\xdb\x3f\x2e\xcd\xe8\x46\x7d\xee\x88\xe1\x8c\xf8\xcd\x8a\xd7\x17\xb8\xb3\x97\xf1\xdc\x01\x4c\x64\x48\xb4\xaf\x93\x34\x06\x33\x00\xa5\x2b\xeb\xe3\xf4\xb0\x23\x56\x04\x09\x76\x03\x6d\x3e\x8c\xb1\xff\xb2\x26\xaf\x89\x69\x35\xf9\xaf\xb1\x95\x47\xfc\x46\x38\x71\x87\x1e\x8c\x8d\xcc\xc1\x98\x15\xdc\xc6\x20\x70\xf8\x9f\x21\x4a\xed\xcc\x29\x93\x0a\x30\xe8\x8d\x4d\x1e\x83\x52\xed\xe8\x53\xad\xf5\xce\x4e\xd5\x5a\xbb\xf5\x19\x92\x0a\xd6\x76\xb5\xd5\xa2\x65\x4f\xcd\x3f\x51\x93\x1f\xb9\xe6\x41\x33\xe8\x65\xfe\x43\xcb\xd1\x78\xa4\xf9\x9c\x45\x0f\x9c\x06\x7b\x55\x55\xa5\xa7\x60\xfb\x9e\x76\xd7\x8c\xd3\xdd\x55\x33\xf7\xe5\x53\x3b\xa9\xdb\x50\x05\x8d\x53\xf8\x7f\x92\xb2\xa4\xa5\xa1\x52\x76\x4b\xe6\x5a\x3b\xda\x85\x9a\xc2\x32\x2e\xa7\x00\xe6\x5d\x67\x00\xcd\xe7\x71\xff\x3d\x03\x98\x65\x75\xfb\xd3\x52\x92\x94\x06\xd8\xd7\xdf\x2e\xbb\x3b\x86\x6c\xad\x39\x27\x49\x01\x43\x7b\xc6\x70\x98\xb4\x1b\x6d\x39\xb1\xca\xcc\x5a\x08\x8a\x8c\x45\x18\x47\x3c\xc1\x8e\x9a\x0b\x53\x89\xeb\xc4\x0c\x97\xe2\xd6\x99\xf1\xaf\xcc\x1d\x77\x60\xd1\x6c\xd8\xbf\xbf\xde\x40\x18\xd6\x7c\x4e\x37\x90\xe6\x73\xf3\xc0\x4e\x70\xe2\xa6\xca\xc0\xc0\x1b\x00\x6e\x86\x01\xb0\x4f\xd8\x15\xbc\x44\xab\x7d\x24\x74\xa2\xed\x5b\xb4\x08\xa1\x54\xad\xe6\x2a\x17\x60\x97\xe7\xc4\x7b\xac\x6d\xfd\x4c\xd5\x6b\xcd\x2a\x34\xdf\xca\xd6\xcc\x2b\x72\xb3\x44\x5d\xb1\x2b\x01\xc6\x75\xa5\x9b\x2d\xab\x0a\xb0\xda\x3b\xf9\x9b\x95\xb2\xd5\xf4\xd4\x8c\x93\x57\x4d\x23\xda\xba\x52\x33\xb3\x5f\xbf\xbe\x41\x93\xbf\xc3\x66\x28\x10\x47\xe6\xdd\x4f\xc1\xe1\x80\xa5\xc7\xca\x05\x11\x72\x27\x13\xf3\xdb\x9b\x46\x76\x5a\x88\xe2\x2d\xb8\xc7\x90\xd4\xdf\x19\xbb\x2d\x77\xe1\xd9\x3b\x2f\x8a\xbf\x19\x54\x5d\x5c\x9a\x5f\x7d\xde\x49\x6d\x12\x73\x9d\xd0\xdf\x1e\x2b\xc1\xe8\x34\xce\x85\x54\xda\xb4\x4d\x2f\xc7\x1d\x62\x05\xd5\x23\x38\xc1\xe7\x45\x01\x56\x73\x83\xd8\x52\xa8\x24\x18\x84\xf0\x6b\x41\x73\x86\xad\xe0\x61\xc6\x54\xda\x9d\xdf\x88\x8a\xb4\x32\x8d\x2a\x0c\xad\x8c\x58\x6b\x6f\x6d\xd4\x0a\xd6\x46\x7f\x87\x06\x7d\xcb\x2e\xfd\x58\xc3\xab\xb3\xfa\x52\x6f\xe0\x68\x7d\xc1\x30\xe9\x78\x14\x02\xe8\xd6\x17\x3c\xcc\x98\x4e\xbb\x10\xd0\xfa\x0e\x0f\x19\x9f\xcd\x7e\xc3\x8b\xc7\xcc\xc2\x67\xb3\x36\xf6\x7a\xa1\x03\x0b\x1a\xc8\x4a\xb1\xb2\xaa\x96\xeb\x9a\xad\x78\xcd\xa4\xc2\x97\x6b\xa5\xe5\x4a\x4c\xe1\x88\xe9\xc0\x9f\xa6\xc4\x35\x3b\xfb\x91\x5c\x41\x5c\x99\x33\x06\x3e\x4d\x6e\x5e\xda\x65\x55\x0d\xd3\xe2\xc6\xcc\x8d\x0e\xa7\x6b\x59\x96\x66\xa4\x2b\x33\x6b\x5b\x95\x1b\x31\xc3\x03\x97\xeb\x72\x3b\x65\x67\xab\xba\x14\x2b\xa1\xcc\xb1\x8d\xe7\x67\xe4\xe8\xa5\x83\x18\x2d\x2b\xa9\x75\xc3\x62\x11\xd0\xdc\x83\xfa\x8b\xe3\x4f\x42\xab\x93\x2e\x6b\xdd\xa4\x1e\xc5\x30\x30\x21\x98\x7c\xbe\xfe\x74\xb5\xba\x39\xbf\x7a\x1f\xf1\x05\x62\xfc\xb7\x63\xb0\xf0\xe7\x74\x31\xde\x9a\x7f\xed\xbb\xbb\x21\xa1\x30\x27\x69\xb0\xd5\xcd\x24\x63\x38\x30\x78\x3a\xe7\x42\xdb\x8e\xd7\x52\x2f\x8c\x4c\x60\x41\x90\xff\x80\xfb\x94\x20\xcd\xa7\xad\x6e\x3c\x98\xed\xff\x68\xcc\x32\x67\x81\xc3\x0b\x6f\x93\xc0\xd5\x65\xd5\x3f\xf2\x6f\x5d\x63\x0f\xa7\x70\xb8\xc1\xf2\xaa\xde\xa2\x1a\x98\xcc\x0c\xae\xda\x26\x0f\x16\x0d\x06\x4d\x9a\xe2\x76\x1c\x28\x89\xbd\x09\xbc\xb2\xd8\x35\xb0\x77\xb4\x42\xb2\xae\x1b\xee\xd7\x54\xf5\x80\xea\x47\x6c\xad\xa9\xea\x49\x3a\x7d\x03\xe8\x49\x8c\xc6\x30\x6b\x35\xe0\xd1\xbc\x01\x38\xa1\xa1\xf9\x95\xa6\x74\xe9\xc0\x8a\x8c\x4c\x01\xbe\xc2\x44\x03\xe4\x19\xdb\x44\x2b\x2a\x4a\x70\x2e\x06\xce\xcd\x86\x1c\x93\x56\x62\x44\xbf\x9e\xb5\xda\x9e\x9e\xa2\xbd\x16\x9c\x4a\xc1\x43\xc4\x5a\xf7\xe9\x6b\xdd\xa0\xaf\x2f\x74\x5a\x1a\xad\xab\xa3\xd9\x6c\xbc\x12\x03\x20\x7d\x40\x8f\xa7\x1d\x2a\xbd\x0b\x59\xf9\xce\x51\x7a\x6e\x32\x25\xae\xcd\xa5\x44\xef\x27\x19\xdb\x64\x76\xaf\x1a\xe7\x79\x4d\xd3\x7b\x26\xa7\x07\x67\x6a\x26\x1b\x8f\xd8\x97\x7c\x29\xc0\x18\xe1\xe8\x2e\x33\xc7\x31\x63\x39\x30\x19\xdd\x73\x17\x5b\xb4\x3c\x39\x45\x23\xc6\x80\xdf\x78\xea\x06\x35\x17\xb7\xaa\xd4\xe7\x60\xd3\x00\xb6\x43\x9e\x64\x59\x98\x59\xd8\xb7\xec\xf9\xde\xfe\x46\x57\x9d\x73\x2d\x37\x82\x81\xd5\xdb\xf6\x35\xc0\x3d\xa2\x6f\xce\xeb\x78\xde\xef\x60\x84\xfd\xbd\x5d\x3b\xec\xea\xf6\x2d\x20\xc5\x6d\x9d\x0d\x38\x35\xed\x10\x93\x2c\x3c\x51\x1e\xad\x43\xaa\x23\xc4\x99\xc4\x2e\x6e\xd6\x3b\xf6\xd3\x9f\x4a\xb1\x4a\xd2\x94\x66\xfa\x87\x68\xaa\x49\xca\xee\xcc\x7e\x3f\xf7\x87\x9f\xe2\x30\x3a\x41\x2b\xbf\x7b\xe7\xf6\x93\x30\x92\x03\x3c\x62\x18\xc8\x00\x01\x39\x66\xc7\x5c\x54\x87\x27\x79\xf2\x6f\xdf\x59\x24\xca\x30\x6a\xc0\xde\xde\xb2\x0c\xe9\x3b\xb4\x74\xf4\x17\x6c\x59\x42\x5e\x29\x64\xb9\x55\x33\x09\x34\x7f\x40\x70\x7f\x15\x21\x2d\x0e\x81\x80\x67\x2a\x3a\x66\x7e\xbb\x3e\x06\xa0\xa1\xbd\xb2\x2d\xff\xb2\xe1\xe5\x24\xc6\x3d\xf0\x94\xf3\x22\x41\x1d\x5e\x2a\x9d\x31\x51\x8a\x15\x31\xdb\x60\x0f\xb0\xc1\x30\x09\xc7\x44\x3f\xd7\x0b\x56\xf3\xb6\x45\x51\x99\x26\xe8\x90\x64\x67\x65\x31\x3d\x3a\xe7\x93\xa7\x47\x03\x53\x9a\x21\x10\x01\xd2\x5f\x2c\xb8\x3a\x2f\x92\x99\x6c\xe0\xcf\x1f\x65\x93\x31\xdd\x81\xfd\x21\x33\x5a\x2f\x4f\x70\x00\xd2\x8c\x81\x8b\xc8\x79\x97\xdc\x6f\xf2\x19\x05\x60\xfc\xbc\x56\xb9\xd9\x7a\x95\x31\xd4\xa8\x89\xe1\x93\x1b\x82\x94\xa2\x00\x99\xee\xcd\xc1\x01\x03\x17\xb1\x54\xc0\xb6\x21\x64\x40\xaa\x0b\x7a\xf4\xf9\xd1\x65\x97\x79\xa5\x43\x3c\x00\xe7\x3f\x61\x25\x6f\x35\xe3\xcd\xdc\x1c\x09\x37\x05\xde\x46\xeb\x56\x1b\x21\x09\xd8\x9a\xdd\x8b\xf7\xed\x59\xe4\x5e\x0a\x6e\x27\x02\xc0\xde\xa3\xe6\xf2\xea\xfa\x96\x4c\x6f\x34\x56\x12\xca\x36\xc8\xb0\xde\xb7\xe7\xb1\x97\xa8\x33\x6c\xb5\xd6\xc3\xe3\x5a\x17\x11\x0c\x30\x34\xf2\x43\x76\xd2\x1a\x21\x60\x27\xcf\x94\xf9\xff\xf9\x5a\xfb\xbd\x08\x76\xed\x25\xaf\xcf\x8b\x64\x29\xb6\x83\x24\x4f\x6e\xd3\xa5\xd8\x06\x7e\x53\xe7\xbb\xcb\x4c\xef\xcc\x1b\xc5\x7b\x4c\xb9\x36\xfb\x21\xd5\x86\x97\x72\x66\x06\x81\xab\x84\x4d\xd8\x33\x18\xd1\xca\x13\x8f\x38\x14\xe4\x3b\xf0\x14\xba\x14\xdb\x34\x3e\x1f\xc1\xda\x02\x8d\x80\x6e\xdb\xbe\x76\xb1\x77\x3a\x72\x16\x84\x07\x22\x18\x1e\xd6\x7d\x5e\x24\x1f\x73\xd6\x9c\xb7\x60\xd7\xd8\xc0\xcb\xce\x8b\x84\xc4\xbc\x8b\xcb\x37\xde\x18\xee\xa7\x32\xc2\x6f\x02\xd4\x42\x56\x7c\xb6\x93\xe2\x70\x20\x70\x04\x14\xad\xd0\xa8\xfa\x9a\xd6\xf5\x05\xca\xbd\xe4\x3f\xb8\xbd\x33\x8c\xd8\xa8\xc3\x35\x98\x8b\x9c\x3d\x69\xb4\xe0\xed\x2f\x2f\x5e\x37\xd5\x9c\x2c\x4a\x9e\x7e\x61\x6c\x4f\xc3\x85\xf7\x28\xc8\x02\x7f\x4d\xc1\xee\x00\x8a\x31\xfa\x02\x3a\xb4\x62\xd7\x7b\x42\x63\x19\x1a\xa1\x70\xd2\xe9\x99\xae\x78\x22\x53\xf6\x8c\x4d\xd8\x82\xb7\x4c\x55\x0c\xf5\x78\x0a\x84\x82\xbb\xb1\xfd\xc3\x10\x19\x60\x01\xcc\x08\x7e\xd6\xf4\x93\x27\xb4\x14\xdc\x9d\x15\xe7\xc0\x38\x4a\x7f\xa7\x7d\xe2\xd2\xac\xb4\x05\x93\x14\x19\x2b\xec\x4e\x18\xf4\xa2\xda\x16\x90\x02\xae\x13\x36\x15\xd8\x4d\x31\xd5\xdb\x9a\xa0\xd3\xd3\xa5\x54\xb3\x03\xf3\x3f\xda\x37\x88\xc7\x02\x18\xfd\x5e\xda\x98\x50\xb7\x28\x3b\xdf\x13\xbf\x59\xb2\x60\xf6\x69\xb0\x85\x8e\x46\x4e\x5d\x27\x70\x29\x30\x51\xb6\x82\x05\x7d\x9e\xf8\x06\xb6\xe7\x10\x8a\x4e\x2c\xe1\x18\x05\x8c\xcd\x64\x51\x88\x46\x28\xcd\x5e\x93\x09\xcf\x20\xce\x0e\x63\x10\x66\x54\x5f\xf3\xcc\x8e\xed\xdc\xe5\x77\x64\x06\x72\x0a\x0d\xd0\x01\x2d\x6f\x6a\x9d\x53\xd6\x2b\x75\x78\xc8\x7e\xa2\x47\xd8\x9a\x56\xec\x77\x77\x40\xa5\x88\xbb\x3d\x7d\x0a\xc0\x3c\x0d\x84\x1e\x08\x24\x95\x65\x29\xe6\xbc\x74\x0e\x41\x0f\x10\x0c\x8b\x72\xa1\xf5\x9d\x2d\xcd\x5b\xd3\x8a\xa6\xfb\x86\x2d\xed\x8c\x1f\x3e\xe0\xdf\xce\xff\x6d\xfd\x69\x3b\x49\x8d\x66\x66\x5c\x55\x6a\xbb\xaa\xd6\x2d\x11\x9f\x63\xc0\x01\x18\x01\x1f\x8e\x7d\x55\xc8\xfc\xfb\x78\x80\xc9\x07\x1c\xf2\x91\xe7\xd5\x46\x94\x26\x4f\x89\x8b\xf6\x1c\x4a\x85\x4e\xdd\xe2\x29\xb6\xa1\xd6\xcd\xd4\x7b\x0b\xbe\x81\xc7\x4f\x82\xa3\x35\x42\x09\xf2\x3b\xf6\xdc\x08\x0d\x6b\xa5\xa7\xe4\x87\xf9\xce\x12\x36\xee\xcc\x59\xdb\xae\x05\x3b\xfa\x8f\xff\xef\xf8\xcb\x29\x3d\xed\x0a\x6b\x96\x0c\x10\x25\x40\x72\xd6\x43\xa3\x2a\xcd\x64\x68\x34\x41\xf3\x14\x93\xf8\x0a\xc2\xfe\x10\x2d\xe8\x90\xb5\x2e\x4c\x52\x53\x2c\xab\x65\xdf\xb1\x23\x07\xd4\x27\x4e\xbf\x10\x0d\xcc\xbf\xaa\x1a\xc1\xf4\x82\x2b\x56\x29\x31\x04\x03\xfc\x7f\x26\x0a\xbe\x2e\xd1\x99\x1c\x60\xb7\xd0\xff\x8f\x21\xf7\xe0\x20\xe2\x72\x3f\xca\x46\xe4\xfa\x0c\x0e\x88\x67\x75\x9f\x06\x9e\xb9\xe1\x8c\x2a\xec\xac\x7b\x96\x3d\xc7\x18\xbf\xb3\x81\x66\xb2\x60\xef\x32\x36\x5b\xa3\x35\xa5\x15\xfa\xc2\x70\xa2\xcb\x6f\xe0\xd1\xfe\xeb\x61\xb6\xae\x4b\x99\x73\x2d\x82\x8b\x02\xec\xb5\xf6\x32\x70\xa3\x39\xdf\x38\x5d\xd6\x87\x87\xec\x77\xb0\xc7\x1b\x2d\x48\xb6\xda\x70\x4d\x58\xd5\x8b\x6a\x55\xcb\x52\x34\x9f\xb5\xec\x4a\x2c\xf8\x46\x56\x0d\xbb\x16\x4c\x09\x54\x4b\x48\x81\xbc\x89\xec\x5c\x23\x08\x5b\x17\x0c\x8d\xe5\xac\x6e\xaa\x5a\x34\x7a\x3b\x85\x38\xfb\x52\x2a\xc1\xae\x44\x59\x5d\x83\x37\xa0\x28\x44\x6e\x34\x9e\x72\xcb\xb8\x32\xf7\xa4\x68\x5a\x61\xcd\xfe\x30\x52\x68\xc7\x4b\x41\x0c\xd7\xb2\x52\x53\x90\x59\x0a\x8a\x2e\xee\x28\x6a\xd6\x96\x67\x1d\x63\x60\xcc\xbb\x35\xbf\xc0\x5b\x4d\x11\xff\x8d\x68\xc1\x23\x61\x64\x19\xbd\x68\xaa\xf5\x7c\x01\x60\x3b\xb1\x27\x49\xbd\x12\x9a\xb1\xeb\x85\xcc\xb1\x41\x4e\x38\x41\xb3\x29\x8c\xe7\x31\x80\x5e\x90\x75\x4b\x00\xa2\xb1\x10\xec\x5f\x99\xdb\x0b\xf7\xdc\x85\x0e\x64\xac\x00\x4f\xd7\x34\xf4\x2a\x45\x4d\xf5\xb6\xf6\x92\x9e\xe7\xa8\x9d\x46\x7c\x3e\xc9\x2c\xbf\xe5\xf3\x78\x2e\x1b\x52\x61\x1b\x7c\x6f\x39\x7b\x1a\xc8\x7f\x56\x61\x28\x40\x55\x78\xc7\x4e\x99\xbb\xe8\xc1\x38\x3b\x18\xce\xed\x43\x10\x26\x18\x3b\x60\x47\x43\xe3\x5b\x5f\x1e\x70\xe1\xe4\x36\xe8\x20\x63\xfe\x0a\x1e\x56\x51\x20\x16\xd3\x0a\xb7\xff\x53\x34\xd5\x50\x62\xc3\x2e\x4b\x8d\x37\x6f\x86\x16\x94\x48\x83\x0f\xf3\x16\xb6\x75\xe0\x79\x0e\x6f\x9c\x40\xa3\x09\x2c\x62\x56\xa3\xf1\x01\x38\xce\x27\xdd\xb1\xef\x75\xcc\xac\xb5\x6e\x26\xe9\xd4\x4c\x19\xd8\xf0\xc6\x9d\xa8\xd2\xfb\xc7\x0a\xd7\x14\x8e\x13\x30\xf1\x5d\x83\xdc\x67\x70\xdc\x8d\xba\xc0\x3a\x35\x60\x88\xec\x9a\x70\xcf\x94\x4e\x0a\x30\x43\x66\xec\x4a\xea\x16\x4c\x4d\x5f\x7d\xe9\xcd\x0c\x6e\x0b\x89\xc6\x42\xfb\xed\x40\x66\x09\x04\xe6\xee\xde\x89\x33\xa5\xbf\x36\xcb\x7e\x9a\x18\x89\xea\x6b\xf4\x15\x30\x08\xdd\xfe\x3a\x31\xf3\xa7\xbe\xe1\xd1\x57\xbe\xe5\xd1\x57\x61\xd3\xa3\xaf\xba\x6d\x33\xf3\xbf\x2f\x8e\x7d\x87\x2f\x8e\xc3\x0e\x5f\x1c\x77\x3b\x7c\xf5\xa5\x6f\xfb\xd5\x97\x61\xdb\xaf\xbe\x8c\xda\xbe\x95\x1e\xe4\x75\x04\xf3\xba\x07\xf4\x5b\x19\x40\xbd\x8e\xc1\x5e\xf7\xe1\x7e\x0b\xe6\xa8\xb7\x00\x1f\xfe\x5b\xa3\x84\x45\xbd\x83\x35\xac\xfb\x8b\x78\x2b\x83\x55\xac\xe3\x65\xac\xa3\x75\x74\x2d\xdc\x70\xf6\x30\xbb\x27\x34\x41\x3b\xfb\xb4\xdb\xb6\x34\xb6\x4a\xff\xbc\x56\x79\x60\x94\x2e\x14\x26\xe3\xf1\x66\x6e\xb4\x58\x18\x3b\x65\x36\x7a\xd5\x3d\xd9\x67\xaf\x36\x23\x0e\xda\xdb\x72\x5e\x96\xe6\xb2\xb1\xd3\xe2\x9d\x67\x6e\x6b\xf8\xe5\xed\xd6\x41\x0a\x94\xa7\xcb\x82\x68\x35\xf1\x31\x1b\xbd\x90\x27\xc8\x86\x29\x36\xc4\x36\xdd\xf2\x60\x45\x7a\x21\xdb\xc8\x99\xc1\x9b\xf9\xda\x48\x0d\x66\x55\xa1\xaf\x2a\xd4\x0a\x6e\xf1\xc2\x79\x51\x99\xab\x52\xb3\x86\x5f\xb3\x5f\xdf\x04\x3d\xa5\xd2\x95\x45\x0a\xdc\x56\xeb\x56\x34\x9f\xb7\xeb\xba\x2e\xa5\x91\x46\xe8\xfe\x24\x3f\x3c\x5c\x53\x80\x59\x6f\x69\x82\xae\x19\x33\xab\x9b\xbe\x5a\xaf\xce\x14\xde\x44\x9d\xd8\x3f\xe8\x04\xe2\x08\x6f\xe6\xa0\xc1\x82\x7c\xb8\xad\xa7\x67\x2a\x91\x69\x80\x26\x9c\x00\x2f\x16\xcf\x99\xa9\x57\xb0\xe8\x0b\x79\x09\x1c\x99\xe4\x20\xb3\x48\xb3\x3d\xbb\xd7\x30\x1d\xbb\x58\x6b\x74\x3a\x18\x08\x14\x10\x4a\x4a\x23\xfc\x21\x1a\x59\x6c\xd1\x1b\xea\x12\x02\x37\x88\x1b\xc8\xda\x33\x4a\x96\xb9\xcf\xb9\x96\x57\x25\x49\x72\x66\x46\x87\x27\x10\xf0\x7c\xa2\xe1\xd5\x16\x45\x00\x5e\x96\xa2\x99\xa2\xb8\x76\xcd\xcd\x01\x9b\x57\xda\xa1\xe0\xd5\x7a\x75\xbe\xd6\x09\xda\xfe\x93\x10\xc6\xf4\x1b\x68\x6e\xa8\xd2\x74\x18\x90\xe7\x4e\x7c\x88\x44\x4f\xd1\x37\x5d\x51\xd7\xa7\x93\x06\x4b\x69\x71\xf2\x5e\xeb\x79\x85\xfa\xd1\x9d\xdd\xbd\x8c\x35\x44\xb2\x64\x66\x31\xb0\x62\x94\x91\xd5\xd2\x9f\x84\xc0\x5e\xc8\x4b\x10\x32\x92\x74\xfa\x7d\xdb\xca\xb9\xe2\x57\xa5\xf8\xbd\x82\xfc\xd7\x74\x50\x11\x3f\xd9\x69\x9c\x08\x01\x8e\xe4\xf5\xbd\xd8\x9f\x89\xbc\xe4\x0d\xe4\xe6\x4e\xd2\x48\x4c\x3e\x3c\x64\xbf\x09\xde\xd8\x40\xd4\x00\x1b\x8c\xe7\x79\xd5\x40\x98\x08\x79\xd2\x1d\x42\xdd\xb8\xb0\x18\xbd\x6e\xc4\xd4\xa7\x76\x44\x3b\xe7\xd3\x3b\x9e\x9f\x60\xc8\xac\x77\x75\xe0\xf3\xa3\xf0\x79\x84\xb5\xe7\x97\xd3\x8a\x04\xc8\x71\xac\x4a\x05\x99\x01\xfe\xee\x05\x51\x00\xae\x7b\x12\x06\x22\x40\x7c\xdc\x6d\xc6\x9a\x30\xf4\x36\xa0\x7b\x0a\xfc\xa4\x78\xfe\x37\x42\x93\xf7\x35\x63\x8d\x83\x24\x4c\x4f\x08\x41\xa6\xe8\xcd\x74\xdc\xe5\xde\x3d\xf7\x64\xd1\xf1\x72\xf2\x79\x62\x78\x59\xc0\xbd\xcd\xb6\xce\x56\x62\xb5\xaa\x36\x22\xf1\x61\x9b\xce\x15\xdd\x0d\x06\x18\x8c\xdc\x9c\xb5\x3a\x75\x82\x25\x64\x08\x0e\x08\xf8\x4d\xee\xda\xcc\x85\x0e\x1d\x48\x65\xc5\x67\x6f\x72\x5e\xf2\x26\xa9\x3b\x13\x66\x4c\xd9\xb0\xe3\xd4\xfe\xb1\x37\xa3\xb4\x8e\x27\x71\xcb\x8f\x44\x9b\x7c\xc1\x55\x20\x32\x66\xac\x35\x4a\x00\x78\x50\x93\x7c\x31\xb4\xe6\xdc\xdd\x1b\xd6\x61\x32\x14\x2a\x1b\xc4\x36\xec\x14\xdb\xd0\x1d\xf5\x62\xc1\x15\x91\x0e\x49\x65\x66\x86\x29\x39\x7b\x0c\x38\xa1\x64\x16\xc2\xbe\xe2\x75\xb0\x4f\xce\xf3\x9b\xac\x86\xc0\x7e\x10\x30\x88\xb9\x01\xa9\xd6\x4e\xbb\x14\xdb\x9f\xab\x26\x98\x75\x29\xb6\xbd\xd9\x92\xf0\x56\x74\x31\x82\xe3\xd1\x72\x33\xac\xf0\x2d\xc5\x16\x55\x8d\xe5\x86\x70\x02\x1b\x66\xb8\x6c\x2f\x6f\x77\xb9\x61\xa7\xa6\x5d\xb8\xb3\x20\xbc\x2c\xc3\x50\x88\xe9\x5f\xc5\xd6\x7b\x5c\x11\xe8\x49\xc6\x96\x9b\x30\x8a\x81\x30\xb2\xdc\x64\x6c\x19\xe0\xb5\xe6\x79\x2e\xda\x36\x58\xe3\x6a\x78\x99\x7d\xe5\xe2\x5d\x86\x56\x3c\x8b\x25\xe8\x97\x8e\x47\x18\x23\x37\xb8\xf6\x15\x2a\x13\x4b\x44\x00\x36\x1c\xcc\x57\x1e\x74\xd6\x3e\x5a\x23\x80\x09\x28\x3f\x28\xd0\x03\x28\xa9\xde\x7a\xaa\xd3\x61\x8a\xab\x39\x5c\x23\x3d\xcc\x64\x86\x75\x0f\xd1\x1c\xa0\x76\x08\x21\xef\xdb\x3f\x78\x39\x8c\x90\x0d\x2f\xd3\xce\xee\x0a\x8a\x09\xb1\xf6\x52\x83\xa8\x81\xe8\x0f\x88\xfe\x13\xd7\x6e\x64\xf4\x09\xe9\x58\xf5\x31\xfc\xdf\x87\xd9\x60\x73\x83\x06\xf8\x47\x68\x54\xa6\xcd\x10\x10\x6e\xf8\x07\x47\x74\x87\x1b\xb8\xfb\xbc\x50\x3b\x8a\x5c\x47\x7a\x8b\x9e\x6d\x26\x34\xd5\x60\xc0\xfa\x0a\x63\x93\x96\xb4\x4b\x11\xe6\x67\xa2\x14\x3a\xe4\xca\xab\x1e\x77\x1c\x22\xd1\x3d\x34\x39\x38\xff\x8f\x38\xcd\xd2\xc7\xc3\xaf\x78\x7d\x66\xa8\xdb\x47\x1e\x83\xeb\x08\xc3\x0c\x56\x90\x0a\xe6\x0e\xfb\x78\xb4\x14\xdb\x36\x7a\x20\x29\x10\x73\x0c\xb5\x3b\xc0\x35\x2b\x5b\xb8\xd5\xe1\x6f\x0a\x2c\x35\xbf\xa5\x16\x0d\xd7\xe6\xa6\x54\x33\xb0\x82\xb5\x53\x76\x56\x30\x90\xb2\xa9\x99\xb8\x91\xad\xa6\xfa\x10\x56\x16\x68\x43\xe9\x10\xcd\x4e\x87\x87\x2c\x5f\x37\xe0\x3a\x30\x38\xa9\x1a\x12\x5b\x6c\x94\x5d\x30\x64\xc6\x1a\x31\xe7\xcd\xac\x14\x6d\x6b\x63\x58\x6d\x5f\x0b\xd0\x94\x9d\x01\xd0\x57\x22\xe7\xeb\x56\x84\x6d\x60\x2e\x07\xf8\x4a\xce\x17\xe8\x5f\xd6\xbc\x14\x6c\x66\x24\xa5\x0a\x40\x80\xdd\xc3\xaa\x14\x8c\xb3\xb2\xaa\xea\xe9\x78\x04\x08\x08\x70\xe5\xbc\x96\x66\x40\xf6\x94\x10\x9f\x42\x6d\x88\xb7\x4a\xcb\x12\x3c\x5c\xc0\xd8\x20\xfe\xcb\xa0\x4a\x8b\x66\x2a\xd9\xb7\xf8\x87\x41\xbe\xcf\xbd\x07\x66\x09\x09\xcf\xee\x1d\xc9\x15\xd0\x89\x92\xf6\xe1\x07\x46\xaf\x2e\xbd\x23\x60\x90\xf3\x8e\xae\x1a\xc1\x97\x24\x90\x92\x11\xce\x2c\x4e\xb6\x8c\x97\x8d\xe0\x33\x5a\xa7\x98\x4d\xd9\xcb\x6a\x23\x58\x85\xb1\x86\x4a\xdc\x00\x32\x57\x20\x6f\xc3\xe4\xcf\x9e\xc5\x16\x86\xda\x3c\x86\x2a\x2f\xbb\x09\x7c\x88\xdf\x0e\x73\xc1\x03\x42\x9d\x11\x82\x86\xa8\x7c\x20\xf8\xc7\xa0\x67\x32\xdc\x3a\xcd\xd8\xf3\xcc\xf0\xdd\xbb\xb4\x0b\xf1\x52\x6c\x13\xa9\x1f\x00\x27\xec\x28\x88\x0c\x76\x57\x13\x69\x58\xcd\x86\x37\x6c\xb9\x89\x0f\x0c\xed\x09\x50\x47\x60\x9d\x87\x7b\xcf\xbd\x19\x5b\x2f\xdb\xad\xc5\xe9\x00\x95\x04\x3b\x0c\x41\x37\x3b\x88\x24\x16\x8e\xef\xee\x27\x1b\x0f\x4a\x8f\x70\x9c\x68\x6f\x44\x78\xd8\xfd\xa5\xd8\x7e\x8e\xc7\xaf\xe6\xb2\x01\xeb\x6a\xc9\x0d\x3a\xf0\x96\x15\xad\xa3\x0a\x58\xb1\xb9\xdb\x3f\xe9\x82\xb3\x22\xc4\xb2\x77\xbb\xc1\x24\x56\x32\xd8\x75\xc3\x99\x46\x46\xf2\xfa\xf7\xbe\xc6\xfb\xfa\x4f\xd9\xa3\xcd\xae\x3d\xba\x47\x0c\x31\xad\x0c\x57\x19\xda\xa4\x3d\xbb\x12\xae\x00\x90\xe2\x98\x51\x30\xb6\xd1\xf8\x57\x43\x71\xcf\xb1\xaa\xf1\x70\xf6\xe1\x36\xc5\x87\xf9\x6e\x34\x7a\xaa\x92\x0d\x23\x6b\xcd\x80\x31\xdc\xd0\x50\xdb\xe4\x28\x8a\x6c\x02\x95\x54\x16\xee\xb9\x8f\x0d\x9a\x7a\xb3\xb4\x92\xe5\x24\x0d\x65\xc6\x3d\xf6\x74\xdf\x21\x63\x9b\x29\x84\xe2\xa2\xbd\xcc\xcc\x6e\x84\xba\x90\x84\x6d\x30\x90\x35\xa5\x79\x37\xb5\x33\xa1\xdb\x48\xa0\xd6\x1a\x74\xc2\xc9\x8c\x8c\x84\x90\x93\x94\xcf\x51\x6b\x4e\x6d\x07\x14\x92\xfe\x82\xe9\x93\x93\x8c\x45\x8d\xe9\x69\xaf\x35\xc6\xda\x75\x5b\xd3\xd3\x5e\xeb\xdc\x88\xf7\x52\x6f\xbb\xed\xdd\x73\xe8\xb1\x01\xa4\xdf\x4f\xc8\x30\x72\x57\x88\x36\xba\x9f\x35\xbf\x92\x33\x3c\x30\x75\x23\x69\xf7\xaa\x50\x04\xd9\xbf\x64\xff\xc4\x86\x66\x8f\x61\x73\xed\x6f\x34\x16\x20\x80\xb8\x02\x78\x60\xef\x66\x5b\xf5\xa6\x64\x7d\xdc\x83\x0d\x21\x10\x7e\x37\x46\xe4\xc5\x31\xb2\x60\xca\xb4\x5f\x19\x03\xaa\xaf\x94\x72\x29\x58\xa5\x17\xa2\xb1\xa9\x0e\x6d\xc6\x60\x0b\xdd\x6f\xb0\xc7\xb9\xf8\x76\xb2\xd1\x25\xad\x10\x34\x88\x8f\x96\x4f\x6d\x26\x82\xf3\xc6\x51\x2a\x42\x8a\x29\x0d\x66\x20\x57\x55\x0c\x0d\x77\x9c\x29\x88\xae\xa4\xb1\xde\xf3\x0d\x6f\xf3\x46\xd6\x9a\x80\x20\x21\x71\x21\xd0\x2c\xd4\xc5\x51\x68\xc8\x19\xc6\x4f\x44\x10\xa0\x7a\x74\x88\xc4\xd1\xdf\x5d\xcf\x65\xd4\x1f\xb1\xeb\x22\x1a\xef\xc5\x7d\xe4\x37\xca\xd8\x0f\x55\x55\x66\x10\xcd\x99\x51\xa4\xdd\x99\x77\x65\x62\xd0\x1d\xe5\x9c\x21\x83\x24\x92\x0c\x21\xe9\xe9\x55\xd3\x1a\x2a\x78\x05\x78\x40\xe3\xdf\x01\xf0\x86\x9f\x9a\xa6\x6a\x6e\x9d\x57\x9a\x0c\xd4\x86\x59\xdf\x0d\x3b\x07\x9c\x89\xb8\x1f\x4e\xcf\xcb\xd0\xd4\x84\x7c\x65\xda\x54\x49\xca\x3e\xd0\xaf\x83\x7b\xfd\x09\x90\x33\x06\x30\x9c\xd7\x27\xec\xe2\xf2\x77\xf6\xf9\x77\xec\xe9\xc5\xab\xcb\xdf\x1d\x13\x05\x6e\x03\x08\x7b\xad\x9b\x80\x97\x76\x39\xa9\x63\x46\x01\x17\x35\x4f\x05\xc4\x7d\x22\x77\x88\xb9\x06\x56\x69\x19\x8f\x38\xb5\xb1\x37\x92\xe1\xe5\xc4\x82\x39\xc6\x99\xc3\x28\xc3\xbe\x09\x85\xe6\x51\x34\xf4\x23\x0c\x60\x21\xa5\xe0\xe0\x09\x7b\xc6\xa4\xae\x38\x9a\x59\xcd\x38\x68\x69\xd5\x55\x54\x3f\x0f\x48\x7b\x77\x3f\x03\x06\xfa\xeb\x46\xd8\x74\xd0\xc1\x0b\xc1\x86\xd5\x2f\x15\x9a\x29\xbb\x7c\x4b\xa7\xdd\xc2\x6e\x7a\xf7\xe6\xc2\x2c\xfd\xed\x3d\xf8\x5f\x89\xdb\xd2\x0f\xe6\xaf\xef\x67\x33\xfc\xc3\x6c\xea\x4b\xde\x2e\x6d\x22\x03\x14\x92\xf3\xc2\xff\x8b\xaa\xde\xfa\x6c\x17\x72\x0f\xd1\x75\x3b\x83\xab\x66\xd6\x62\x88\x07\x21\x7e\xb6\x34\xe2\x13\x66\x81\x1c\x1c\xd0\xcf\x6e\x4a\xc3\x0e\x9a\xae\xcd\xe2\x67\x96\xa2\x71\x30\x97\x52\x72\x4b\x79\x2d\xab\x75\xab\x7f\x10\xde\x62\x9e\x60\x6b\xff\xca\xbb\xf8\x0d\x19\x01\x8c\x6d\x93\x3b\x18\xe1\xe2\x86\xd3\x69\x26\xa4\x58\x49\x73\x69\xc7\x80\xb7\x1d\xc0\x83\x2e\xa7\xe6\x25\xda\x35\xa4\x9a\xc3\x2a\x5b\x3d\xed\xdf\x1e\xa7\xa7\xe8\x78\xa4\x18\xc8\x60\x84\xc0\x31\xb1\x0f\x15\xed\xd2\xe7\xff\x8f\xcc\x1a\x06\x16\x38\x30\x32\xf0\xf5\x97\xeb\x56\xbf\xe4\x3a\x5f\x24\x3d\x04\x47\xc0\x62\x7a\x50\x74\xbd\x18\x01\x63\xd6\x6a\x32\xd4\x98\xe6\x91\x74\x33\xb0\x29\x7f\x84\xec\xd5\xc6\xdd\xc6\xf3\xa4\xc8\x67\xb1\x31\x4d\x42\x72\x12\x6d\x50\x2c\x42\x75\x26\x71\xa2\x56\x67\x92\x0e\xf0\xe1\x4d\x41\x93\x98\xc1\x62\xfc\xec\x12\x13\x89\xff\x4b\x35\x47\x2c\xfd\xe1\x2f\x01\xc7\x72\xee\xc6\xfb\xbb\x53\x86\xca\x70\x6f\x27\xc7\x42\x30\xd3\x6f\x22\x17\x72\x23\x9a\xa4\xaa\x5d\x8a\xb2\xe3\x92\x92\x6c\xc5\xef\x9c\xc2\x1d\x24\xaf\x83\xdb\x76\x40\xb2\x36\xa4\x0d\x99\x62\x36\x26\x58\x16\x24\x9d\x78\x8a\x8c\x63\x14\xb5\x46\x49\x3c\x2a\x48\xd3\xb3\x97\xa3\xf8\x6a\x15\x1b\xc8\xaf\xf8\xf0\x81\x49\xf6\x1d\xe5\x18\xea\x29\x85\x67\xa5\xc3\x2e\x37\x1b\x64\x84\xb9\x30\x3e\xe4\x9c\x2a\x1e\x48\xa3\xe8\xb8\x98\x5a\x88\xc2\x3c\xf0\x63\x5e\xc8\x4b\x3a\x40\x5a\x4f\x6d\x2a\xeb\x0a\xfe\x4a\xa3\x80\x9e\xe1\xb9\x0d\x3f\xae\x6a\x60\xdd\x55\xc1\xd6\xdd\x22\x75\x6e\x5a\xa3\x75\xec\x73\x35\x03\x2d\xd3\xdc\x56\x86\xc4\xb4\xbc\x53\x36\x00\x18\x26\xe1\x47\xfa\x22\x56\xd0\xc2\xfd\xe8\xd5\x7f\xc0\x25\xae\xa5\xd2\x89\x4c\x0d\x62\xe1\x4f\xd0\x76\xda\xf4\x4f\x43\xeb\x2a\xc0\x26\x02\xf2\xdf\x86\x50\x9c\xde\xe3\x74\xd5\x45\xea\xde\xb2\x96\x91\x5e\x95\xde\x97\x0f\x69\x0e\x6d\xbe\x69\x3a\x32\x06\x10\xb3\x93\x78\x71\x28\xe4\x0f\xa6\x6d\x57\x77\x33\x7c\xc5\xbc\xc0\xe1\x0a\xc5\x4e\xbb\x57\xaf\x79\xeb\xf3\x2c\xc3\x68\x1d\xe4\x18\xee\xf8\x83\xbd\xc5\x9d\x43\x2f\x19\x99\xf6\x94\x86\xd3\x89\x49\x80\x73\x0c\x65\x34\x4f\x4f\xa3\xe4\xa6\xc1\xdb\x03\x9e\x4d\xdd\x04\x93\x8c\x3d\xf7\x57\x2a\x4c\x72\x70\x10\x0a\x7a\xbf\x9d\xfb\x70\xcc\x4e\xf4\x63\x67\x28\x27\x37\x45\xfe\xe6\xea\x4a\x73\x30\x43\x16\x4d\xb5\x0a\x29\x02\xe3\x24\xab\x26\x20\x8d\xbb\x60\x31\x30\x39\x9e\x00\x0f\xc0\x86\xe2\x18\xf0\x39\xea\xc5\x93\x70\x2d\x1b\xcf\xd7\x87\x77\xcf\x65\x2c\x5b\x0c\x26\xc3\xd1\x5d\xc1\xc6\x7a\xaa\x88\x0a\xe6\x04\xdc\x7e\xcf\x70\xbe\xf3\x50\xb1\x1d\x69\x3a\xfd\x74\x7c\x16\x98\x4e\x8d\x24\x15\x8c\x07\xb7\xc5\x9f\xeb\xbd\x8d\xfd\x90\x21\x2a\xfb\x77\x4d\x1c\xda\xd3\xdf\x99\xd3\xd3\x1d\xe9\x74\xbb\xd8\xcf\x1a\x43\x4c\xcd\xcc\xaf\x79\xa3\x25\x2f\x8d\x8a\x64\x23\x7d\xde\x65\xec\x1d\xdc\x5f\xae\x58\x5b\x70\x0f\x42\x0e\xae\x61\x7c\x64\xec\xf8\xee\x3b\x0f\xc8\x9b\x85\x2c\x20\xe9\xff\x4f\x3e\xc9\x7f\x72\xf4\xd0\x4e\x77\x77\xa1\xec\xd6\xf1\xba\x2e\x8d\x20\x66\x80\x08\x06\x4e\x21\x50\x20\x96\xf4\x37\x36\x42\x64\xa7\xc0\x1f\xc7\x0d\xc4\xca\xdc\x50\x14\x41\x98\x74\x45\x66\x81\xc4\xe7\xc4\x5b\x4b\x48\x37\xe4\xef\xb5\x6e\x48\xb1\x0d\x95\x5e\x54\x96\xb3\x5e\x34\x25\x66\xac\xf4\x03\x24\xb1\x68\xfc\x68\x10\x98\x17\xd5\xaa\xe6\x0d\x0a\xf4\xf7\x82\x43\xd3\xa3\x9a\x44\x95\xec\xe2\x39\x06\xa3\x3c\x9d\x9e\x18\x4e\xd6\xb3\x15\x74\x93\xf2\xf5\xf4\xd5\x7a\x85\xd9\x3c\x41\x46\x3e\x4a\x24\x53\x7c\x2e\x53\x4c\xc0\x88\x16\x61\xe3\x46\x42\xb0\x5c\x02\x8c\xe7\x2c\x80\xac\x01\x84\x20\xd5\x27\xd2\x05\x0d\xe0\x83\xd4\xc6\xe0\x7d\xa2\x4c\x87\xc1\x4b\x16\x06\x3d\xb5\xd3\xe1\xa9\x08\x6b\x37\x0e\x09\x2b\x83\x72\x60\x24\x04\x76\xb9\xc5\xcb\x40\x28\x81\x2c\xca\xaa\xc0\x60\x1b\xba\x15\xea\xa0\x7a\x23\x08\x29\xb5\x4d\x11\xf2\xc2\x15\x8a\x2b\xe9\x78\xb4\xa2\x7c\x35\x06\x8d\x9c\xb0\x15\x94\x43\x07\xaa\x1f\x43\x95\x5e\x1c\xc3\x4a\x1a\x35\x4a\x1a\x63\x4a\xc8\xda\x23\xa1\xac\x48\xe8\x8d\xca\x9b\xa2\xf8\xfd\x3c\x63\x47\xcf\x20\xdb\x41\x4f\xa5\xc2\xbb\x42\x2a\x5f\x52\x43\x2a\x2c\x50\x62\x48\xe9\x1d\x1c\xf1\x30\x2c\x0c\xba\xa0\x0b\xa1\xd3\x87\x37\x68\xe0\xed\xd4\x30\x75\x93\xd2\x94\x10\x54\x96\xfa\xf1\x1b\xf4\xc0\xbb\xf1\x7d\xd0\x99\x19\xc7\xcd\x50\xad\xc1\xa1\xaa\x69\x8b\xa1\x4f\x9c\x15\x9c\x99\xde\x67\xed\x1f\x94\x87\x0a\xc2\xcb\x8a\x32\xe8\xd8\x4a\x8f\x5d\x1d\x8a\x7b\x84\xb3\x5e\xf1\xf8\x4e\xe9\xf8\x7b\x25\x36\xbc\x1f\xfe\x44\xae\x4c\x97\x86\x0f\x87\x7c\x7e\xe9\xc9\xbf\x23\xb9\xed\xe5\xd2\x17\x47\x27\x97\xc4\xa9\x57\x90\xd3\xcc\x4e\x89\x57\xaf\xb4\x2b\xe0\xdf\xe7\xd2\x2a\x8e\xee\x32\x37\xe1\x0a\x91\xc0\x4e\x99\xf4\xb1\xf5\x9e\x13\xb8\xeb\xd9\x5e\x73\x9d\x4a\xfd\x03\xba\x9d\xab\xbd\xd1\x7d\x11\x44\x60\xec\xbc\x9f\xac\x01\xb2\x27\xa1\xa1\x1d\xd0\x0b\x68\x3b\x23\x43\x60\x80\x4e\x6c\x08\x26\x92\x97\xe4\xb1\x8e\x02\xab\x40\x32\x7a\x05\xde\x10\x23\x8f\xda\xe7\x51\xa5\x00\xec\x17\xdc\xde\xc8\x55\xe9\x5e\x88\x96\xe9\xb3\xde\xde\x52\xf4\xbb\x8b\x10\xef\xd8\x7f\x43\xc1\xcf\x41\xb3\x90\xf3\x05\xb8\x59\xbc\x8f\xa2\xba\x46\x73\x32\x15\x81\xc6\xef\x42\x98\x81\xe9\xcf\xa3\xe3\xaf\x1f\x3a\x7a\x23\xb0\xa8\x81\x7f\x22\x57\x50\xe7\xd2\x0d\xef\x4b\x97\x5a\x94\x9d\x9e\xee\x40\x4a\xd7\x8f\xb4\x03\x02\xdf\x0a\xdb\x38\x1f\x04\x25\x46\xf5\x62\x71\x06\x21\x0f\x9c\x40\xb6\x4b\xd7\x0f\xb4\x19\x74\x02\x75\x5a\x3b\x3f\xd0\x66\xd0\x09\xd4\x69\x1d\xf8\x81\x36\x3b\x9c\x40\x76\xd1\x36\x0c\xc8\xe7\x96\xee\x26\xf1\xd0\xf2\xdd\xb1\xe5\x0c\x9f\x86\xfe\x69\xc4\x18\xab\xdf\xab\x24\xaf\x94\x16\x37\xda\x89\xd3\x46\x88\x77\xb6\x1a\xde\xcc\x45\x5f\xa6\xdf\x2f\x68\xef\x55\x81\x68\x36\xaf\xfe\xd0\x11\xb0\x12\xd1\x4c\x62\x39\xa9\xc0\x2e\x0a\x56\x5b\xdc\xd3\x13\xf4\xfb\x9f\x6f\x44\x73\xdd\x48\x4d\x21\xc2\x6d\x85\xc1\x39\x7a\x21\xb6\x6c\xc5\x75\xbe\x98\x62\xbb\x37\xe6\x72\x5d\x89\x55\xd5\x6c\x59\xc9\xb7\x70\x31\xb4\x15\x53\x15\x5b\xf0\x66\xc5\x66\x95\x02\x17\x0e\x5e\xb7\xb4\x90\x24\xb2\x2a\x03\xcf\xf0\xfe\x04\x10\x48\xb1\xc7\x07\xba\xa0\x67\xad\x2b\xa1\xd3\x2d\x34\x42\x80\xbb\x4f\x97\xd0\x12\x5d\xda\x5f\xdb\x5d\x9a\x11\x87\x10\xe3\x61\x9e\xb7\x7d\x14\xa6\xb6\xcc\xa0\x0c\x96\x0d\x91\xb1\xdf\x85\x39\x61\x6f\xf0\x03\x2f\x82\x6d\x06\xc5\x2a\xd0\x97\xcf\xda\x57\xb2\x4c\x52\x06\x06\x45\xae\x01\x14\x1c\xc7\xff\x87\x1a\x30\x7d\xec\x66\xea\x94\x3f\x4a\xc9\x9b\x55\x02\xa3\xb2\x41\x38\x42\x4f\x9a\xd4\x90\xee\xd7\x76\x47\xd2\x15\x6b\xd6\x2a\x63\x73\xb9\x11\x8a\x49\xdd\xb2\x7c\xdd\xea\x6a\xe5\xd1\xc0\x6d\x94\xfe\x0d\x6c\x43\xc7\xa8\x60\x4b\xcc\x22\x7a\x0c\xb6\x5f\xad\x57\x24\xe4\xa5\x5e\xa9\xa3\xec\x19\x57\x0b\x26\x41\xac\xa5\xec\x94\xdd\x8c\x47\xa1\xf9\x6a\xe4\x34\x59\xc0\xfe\x8d\xa5\xf2\x34\x3e\x75\xc1\x16\xe2\xfb\xac\x9f\x9c\xe2\xc0\x4c\xa9\xb4\xed\xe1\x21\xfb\x99\xcb\x52\xcc\xa6\x63\x12\x1c\xed\xe9\x7a\xc6\x26\x27\xd6\xcc\x50\xf8\xf4\x68\xe4\xfc\x56\x5e\x00\x63\x14\x05\xbc\x73\x77\x00\x20\x3e\xdd\x76\x80\x8a\x58\x2e\x5c\x82\xca\xe0\xe5\xbc\x2c\xff\x7f\x51\xd6\xa2\x61\xfd\xeb\xc9\xbc\x44\x57\x13\xa1\x34\x9d\xa2\x10\x32\x9d\x4e\xa3\xea\x39\x81\xdc\xd1\xe3\x16\x66\x90\x50\xe7\x96\xca\x27\xd9\xd8\x34\x92\xa0\x4e\x04\xc4\xee\x39\x89\xd4\x1c\x18\xc5\x58\x87\x8d\x58\x69\x26\x74\xfd\xa7\xf7\xb1\x94\x77\x19\xd3\xa0\x75\x7f\xa4\xd2\x6d\x35\xe9\x50\xe9\xde\xa9\x75\xdf\xab\x76\x83\x02\xe4\x29\xeb\x21\x96\x42\x4c\x92\x19\xb0\xba\x0d\x59\x5f\x42\xcd\xdf\x47\xc9\x39\xb3\x91\x19\x66\xd7\xc7\x99\xc8\xe2\x65\x84\x18\x9f\xc0\x64\x9a\xda\x80\x46\x6b\xc7\x90\x3e\x2b\xa6\x82\x8f\x3d\x4d\x4c\x1f\xb4\xff\x8f\x47\xe4\x96\xa4\x04\x1f\x32\x50\x78\x67\x12\xea\x8e\xa1\xa0\x3d\x6c\x6b\x75\x43\xda\x8a\x5f\x51\xc1\x1c\x97\xb7\x41\xa5\x21\x6c\x8d\x9e\x6f\x99\xba\x6f\x38\xcc\x05\xa9\x2a\x56\x88\x6b\x26\xa1\x88\xa8\x93\x70\x87\x86\xfc\xee\x11\x43\xae\xb8\xda\xee\x1a\x33\x0c\x9f\x32\x3a\x6c\x1f\x05\xea\xf3\xcf\x1f\xb9\xa2\x07\x2f\xa6\x8b\xf2\x83\x83\x87\xad\xef\x81\x4b\x73\xea\xd8\x4d\xaf\x0c\x91\x2c\xd8\x4d\x74\xb1\xa0\xa5\xec\x3e\xfb\xfa\xba\x95\x6a\x8e\x5f\x67\x43\x56\x61\x27\xed\xcc\x19\x5a\x2b\x94\x37\x51\x98\x59\x89\x0d\xe3\x97\x75\x7c\xc6\x51\x66\x70\xaf\x12\x99\x7e\xc3\x9e\xdc\xe8\x38\xff\xc8\xb4\x4f\x1f\x08\x9b\x79\x70\xa3\x63\x46\xcc\x5b\xcf\x76\xcd\x58\x51\x98\x9a\x2b\x75\xf6\xc4\x9e\x87\x83\x83\x21\x3a\x38\x3c\x64\x75\x23\x6a\xde\x50\x39\x28\xfa\xcc\xdd\x8a\x4b\x65\xe6\xc5\x5c\x24\xeb\xd6\xb0\xbb\xf8\x39\x53\x61\x70\x53\x50\x84\xcf\x2c\x56\xa5\x10\x10\xbf\x32\x60\xd8\x6a\x1f\xf4\xc2\x97\xfa\xe8\x7d\xf2\x28\xb0\xf8\xdc\x10\x16\xd5\x33\x70\xa2\x20\x7e\xcd\xb3\x1b\xc2\xea\x00\x32\x21\x4d\x64\x47\x32\x17\xd9\xd2\xd7\xad\xb8\x17\x8f\x50\x77\x24\xbe\xee\x14\xed\x86\x4f\x3d\xc2\x50\x09\xa7\x59\x1b\x49\xfa\xc6\x92\x7f\xd5\xc8\x39\x16\xd2\x92\xca\x1a\x1e\xe2\x8c\x44\xf5\xec\xc8\x06\xc1\x24\x52\x5d\x9c\xa8\xcb\x8c\x61\x2f\xe0\xf5\xea\x42\x41\x5d\x03\x33\x07\x72\x40\x85\x86\x11\x42\x3e\x6c\xaa\x79\xf4\x24\x60\x7c\xf7\x31\xd8\xeb\xa6\x52\x73\x47\xd5\x58\x39\x8d\xec\x41\x8a\x4c\x20\xda\xe5\x6a\x8d\xc7\x90\xea\xf8\x7d\x3f\x8e\xa2\x97\xe3\xa5\x83\xd4\x4a\xca\xee\x8a\x6c\x30\x74\x2c\xdd\x70\x51\x56\xd7\x5a\x5d\x37\xbc\xfe\xb5\xb5\xb6\x0b\x3c\x28\x30\xc2\xd4\x49\xff\x03\xcb\x99\xb8\x43\x15\x58\x6b\x95\x2c\x53\xef\x5c\xb0\x4a\x87\xcb\x53\xf3\x12\x48\x32\x68\x31\x0e\xcc\x0f\x08\x69\xea\x45\x7f\x45\xb5\xc8\x7c\x1e\x5d\x18\x51\xea\xb3\xe8\xe8\x29\x6d\xf4\x6d\x10\x6e\x38\x35\x78\x7d\x9e\x66\xac\xb3\x60\xfb\x98\x00\x85\x54\xfe\xbb\xae\x41\xb7\x9f\xd3\x6a\x00\x1a\xc8\x65\x35\x6d\x6d\xc0\x6b\x37\x4f\x15\xe7\x92\xc3\x20\x48\x0f\x82\xff\xe6\x8e\x4b\x62\x0d\x52\xed\x74\x64\x53\x76\xc2\xd7\x0b\x5e\x27\x2e\x58\x65\x89\xba\x8a\x8d\x02\x71\xc1\x92\xb7\x3b\x6c\xc5\x28\x61\x52\x40\x91\xfb\x0a\x54\x50\x4d\xcd\xb5\x73\xf2\x47\x57\x4b\x0d\x62\x06\xee\xf5\xd6\xbd\xe0\x35\x05\x73\x91\x6c\xfa\x9e\x70\xf1\x5a\x37\x9d\xcf\x10\x75\x05\xd5\xa0\xa5\xd1\x8c\x11\x0b\x31\x3a\x5d\xba\x77\x1c\x33\x3a\x60\x52\xa2\x2f\x57\x86\xb3\x47\x56\x23\x82\xc0\xbd\x75\xe6\x82\x48\x9f\xde\xe0\xe7\x48\xa9\xf4\xc3\x3f\x07\x16\x67\x17\xa8\x28\xc9\x67\x17\x00\x9e\x20\x28\x46\xd3\x47\x9e\x05\x11\xb3\x96\x34\xc2\x78\xd9\xa8\x7c\x12\xd9\xbd\xba\x12\xf0\xc6\x06\xfa\xee\x34\x6e\x85\xc1\xde\xae\x92\x26\xba\xc8\x29\x5d\x38\xd8\xdc\x61\x8b\x4f\xba\x33\x5a\xd8\x5b\x47\xa8\x6c\x66\xa0\x70\xa7\xe3\x38\xcc\x15\x54\x04\xab\xc5\xee\x86\x6a\x68\xa1\xd6\xa7\xb0\xab\x56\x54\x20\xa3\x87\x46\x01\xf2\x2e\xf7\xeb\x13\x7c\x3f\x9b\x35\xb1\x3d\x40\xeb\x69\x50\x5c\xab\x67\x13\xa0\xd7\x3d\xc3\x6a\x4c\x5b\xb6\x11\x24\xa9\xf5\x0c\xae\x0f\x0b\xad\xc4\xf3\x68\x48\xc5\x47\x57\xf6\x49\x89\xfc\x3e\xfd\x5a\xbe\x96\x8e\x20\x7a\xcc\x9b\x5d\xef\x9d\x10\x06\x9c\x64\xae\x3f\x79\xec\x2d\xe2\x7d\x11\x98\xdd\xb8\xdf\x11\x40\xa2\xf5\xd4\x16\x17\x1c\xf4\xcc\xc0\xcc\x3b\x1d\x33\xa1\xcd\xbf\x67\x5d\xb4\x95\xac\xef\x35\xe7\xdb\x02\x84\x07\x0e\x18\xf0\xf1\xd0\x01\xc0\x8a\x39\x7a\x5b\x8f\xc7\x03\x46\xa5\x37\x5a\xe6\xcb\xed\x6f\xe7\x1f\xfa\x11\x8c\xe9\x40\x78\x2a\x4a\x97\x38\x64\xaf\xe8\x4f\x5c\xf4\xb0\x5b\x6a\xce\x93\x23\x94\x8e\xfb\xed\xbc\x63\x01\xf1\xef\x2d\x4c\xfe\xeb\x3c\x60\x83\x02\x11\x23\x5c\x22\x42\x00\x1f\xd4\xf8\x06\xde\x63\x95\x9e\x83\x03\x26\xbd\x72\x2e\x0b\x83\x5b\xec\x3c\x17\xfa\x57\xf3\x77\xa2\xf9\x3c\xfd\x86\x9e\x07\xa5\xfe\xcc\xdd\x4a\x31\xe6\xa0\x8e\x23\x1d\x3e\x77\x85\xda\x60\x77\x86\xb8\xe6\x68\x34\xaa\xe2\x63\xdd\xe5\x9e\xa3\x2e\x43\x00\x06\x33\x1c\x3b\x11\xc4\xd2\xc3\x05\x40\x85\xbc\x1e\x59\x81\xb9\xe3\x43\xf2\x05\xdd\xc5\x24\x63\x15\xc0\x07\x08\x88\x0a\xe2\xa4\x29\xbb\xb3\x9f\x75\xda\x35\xe1\x4d\x74\xb1\xdc\xb2\x0a\x84\x61\x18\x6b\x20\xbb\x2c\x28\x2f\x35\x01\xc3\x56\x38\x59\x30\x5b\x8f\xa5\x78\x5b\xfa\x80\x33\x26\x40\x3c\x6e\x55\x50\x4e\xf0\x2e\xf2\x04\x8f\x47\xed\x3e\x8f\x0a\xda\x2c\xca\xae\x2f\xc6\xe8\x4d\x51\x1d\x16\x17\xba\xda\x29\x27\xde\xf3\xfd\x7c\xd4\xee\x3e\x6a\x6b\xbb\x37\x7e\xc6\xda\xa0\x02\xbd\xc5\xe8\x03\x37\xaf\x0d\x4a\xd9\xf7\x85\x89\x8c\xdd\xb8\x11\xfb\x1b\x74\xb7\xab\x6a\xd5\x7e\x08\x4d\x6f\x6f\xfc\x0f\xcf\xa4\xcb\x97\xf7\x5f\x38\x80\xef\xa5\x47\xa7\xf4\xf0\x10\xbf\x18\x5e\x0a\x0e\x85\x32\xda\x9a\xe7\x50\xdf\x12\x14\x4b\x27\x21\x7f\x8b\xd1\x93\x7c\x0e\xa6\x08\xcd\xe7\x20\x1d\x9f\xb2\xcf\xd8\x67\x64\x71\x7d\xf6\xcc\x4a\x0a\x1c\x2a\x81\x9a\x26\x27\x97\xd6\xe2\x3d\x0f\xab\x7d\xfa\xec\x4f\x02\x20\xe7\x8a\xe9\x8a\xe5\x55\x89\x56\xe2\xc3\x43\xc6\x11\x12\x06\x1f\x92\xf9\xfb\xba\xc2\xaf\x9e\x73\xd6\x6e\x95\xe6\x37\x18\xc7\x03\x60\xde\x0b\xe5\x13\x84\x32\x7e\x70\xd2\x7d\x30\xe9\xad\x43\x16\x4c\x3e\x3b\x72\x81\xa3\x66\xd0\x0f\x1f\x3a\x63\xd8\x07\xcf\x8e\xe2\x51\xc2\xfc\x56\x1b\x1b\x80\xbb\x60\x06\xba\x38\x91\x97\x69\x8c\xa9\x67\x47\x27\x97\x21\x36\x60\xc5\x33\xbb\x73\xba\x62\x85\x54\x54\xaf\x86\x56\x7d\x74\xff\xaa\xdd\x9a\x8a\x70\xc7\xfe\xf3\x3f\x3f\xb3\xdf\x32\x85\xb5\xd2\x27\x5e\xa3\x75\x47\xab\xee\xad\xe8\xef\x68\xe4\xee\xae\xe9\xd9\xd1\xae\x55\x49\xfc\xe0\x0c\xd0\xc0\xfb\x96\xa8\x60\x83\x9a\xd8\x3b\x1a\x07\xea\xc4\xbc\x55\xb0\xf0\x04\x67\x48\x03\xb9\xcf\x2e\x3d\x3a\x28\x93\x09\xe5\x77\xbc\xe0\xca\xd5\x41\x12\xe6\x02\x6d\xd9\xf5\x42\x40\x82\x11\x78\x4a\x00\xde\x8d\xfd\x0c\x0a\x65\x52\x60\xe1\x42\xb0\x5b\xe8\x29\x3b\x2b\xcc\x40\x9b\xa9\x1f\x2a\xd1\xa9\x4f\xf4\x6e\xb0\x88\x92\x51\xa2\x82\xd7\xd7\xb2\x2c\xbd\x97\xc4\x7e\xe9\xe8\xf7\xf3\x1f\xcf\x13\x25\x36\xcb\x4a\x69\xbe\xd4\x22\x3d\xa1\x44\xf1\x8d\x68\x4a\xbe\xb5\x60\x34\x62\x55\x6d\xc4\x8c\xf1\x42\x8b\xc6\xf4\x5b\x68\x5d\xb7\x27\x87\x87\x73\xa9\x17\xeb\x2b\xa3\x99\x1f\xce\xab\x92\xab\xf9\xe1\xbc\x3a\xac\xd7\x65\x79\xf8\xe5\xd7\x5f\x7c\xf9\x95\x39\x08\x94\xf2\x54\xf2\x56\x8b\x56\xb3\x56\x83\x17\xe1\x97\x8a\x35\xa2\x14\xbc\xb5\x9f\x61\x09\x15\x4c\xbf\xac\xce\xc7\x45\x36\x1a\x2f\x5b\x34\x0c\xa1\x4c\xb2\x71\x79\x3b\x92\x2c\x6d\x51\xc4\xa2\x8b\x8e\x82\xe2\x4c\x98\xc1\x5e\x62\x41\xa4\x4a\x95\x5b\xc2\x70\x0b\x65\x93\x16\x1c\x72\xde\xcf\xff\x0a\x40\x8b\x66\xd5\x5a\xf7\x08\xf4\xbe\x5a\x6b\xff\x8d\x1a\x40\x23\x9b\x89\x5a\xe0\xd7\x9d\x28\xef\x1b\xf7\x4f\xb6\x76\xe7\x20\x60\xfc\xf0\x10\x5d\x58\xf4\x65\x09\x97\xeb\xf2\xb9\xae\x3e\xc7\xd4\x12\x14\x72\xa3\xf2\x0e\xde\x8c\x17\xdf\x7e\xf0\xa8\x97\x12\xe1\x63\xfa\x07\x73\x77\x80\xae\xd9\x77\x6c\x83\x0f\xf0\x4b\x0a\xdf\x6f\x2a\x09\xb0\x53\x6c\x21\x5e\x5b\x0b\xc1\x67\xa2\x99\xe2\xfc\x2e\xaf\xac\x13\x70\xb5\x27\xd6\xca\xed\x23\x49\xaf\x1d\x61\xfe\x3e\xed\xd0\x59\x0c\xac\x8c\xee\x3e\x09\xf0\xf0\x00\x7a\xf0\xbb\x68\x3d\x85\xf4\xa2\x41\x93\x2b\xa6\x0d\x0d\x4b\xe7\xa1\x12\x49\xba\xcf\xa0\x5b\xb6\x2f\x34\x0f\xc4\x09\x86\x22\xf4\x78\x34\xe2\xfb\x45\x92\x3f\x4d\x26\xf9\x34\x91\xf3\x13\xa5\x12\xee\xed\x4a\x4e\xcc\x7b\xa0\x54\xc2\xf7\xda\x0c\x63\xb9\x64\x48\x72\xbc\xdb\xa9\xd2\xef\x05\x13\x25\x93\x5e\x3e\xef\x90\x65\x22\x0e\xd0\x6b\x07\x73\xe8\x86\x69\x0e\x4f\xff\x3e\x9a\xb3\x5a\xa9\x2d\x93\xbf\x87\xe2\x77\xd0\xa7\xa5\xc6\x8e\x71\xe0\x7e\xc2\x94\xec\x99\x5f\x8d\x0d\x38\xb1\xa6\x36\x24\xdb\x36\x8e\x5d\xf9\x37\xb5\xfe\x6b\x50\x2b\xc8\x35\x27\x98\x4b\x67\xb6\xe9\x29\x98\x35\x8c\x34\x1d\xb1\x95\x7e\x60\x69\xab\x9b\x5d\x94\x8a\xb2\xdc\x1e\x52\x0d\xb9\x61\x44\x56\x90\x9a\x17\x7d\xbe\x69\x3c\x1a\xe5\x24\x38\x61\x9a\x4c\xb4\xd9\xee\xf3\x3d\xbd\x2d\x3f\xc8\x3f\xca\xc4\x04\x58\xda\x67\x63\x72\xe6\xc7\x1f\xb9\xe6\x49\xca\x2e\x8e\x2f\x83\xba\x6a\x38\x3e\xc8\xec\x2d\x90\xd8\x24\x6a\x6f\xe3\x21\xda\x75\x6d\xbf\x7a\xb9\x75\x01\x2f\x61\x49\xb7\x60\x3e\x32\x0d\x76\xa2\xaf\x77\x5e\x80\x10\x14\xbe\xdb\x1e\xbe\xaf\xfe\x41\x60\x52\xdf\xd3\xb7\x13\x90\xb1\xe0\xea\x55\xd0\xf9\xe7\xb5\xca\x1f\xdc\x59\x2f\x9a\xea\xfa\x95\x2c\x69\xcf\x60\x43\xdc\x48\x71\x04\x79\x6f\xa0\xee\x01\xa3\xb8\x9a\xbe\x89\xf8\x41\x90\x78\xcb\xb0\xad\x01\xdb\x4d\x11\xef\x7b\x16\xec\x79\x84\xb8\x9d\x47\x52\x99\xd9\xd4\x7d\x54\x86\x62\x16\x79\x49\x1e\x24\xf3\x64\xc1\x51\xee\xc3\xea\xea\x69\x74\xee\xa8\x5d\xfe\x92\x6e\x52\xf7\x7e\xc2\xa0\x4e\x57\xeb\xa2\x10\x2e\x14\x72\x70\x88\x78\x53\x77\xd5\x04\x09\x33\x7f\x3c\xe4\x8f\x41\xf0\xdf\x84\xda\x87\x5e\xcb\x24\xa2\x9a\x88\xf7\xa1\x19\x5d\x4d\x90\x6f\x01\x87\xac\x47\x22\x3b\x4d\xf9\xcf\x63\x66\x3d\x40\x43\x9d\xd3\xf3\xd0\x91\x8e\xba\xfb\xf9\x11\x20\x44\xb7\x72\x00\xd0\x63\xd0\x1d\x94\xa9\xd9\x85\x72\x70\x7c\xdb\x1f\x46\x17\x1b\xcc\x19\xbf\xe9\x67\x53\x8f\x6e\xd8\x29\xbb\x19\x70\xf2\x62\x5c\x3b\x70\x31\x74\xe9\xde\x13\x23\xbd\x2b\x3e\xb9\x53\xb7\x23\xe6\x8e\x48\x98\x39\x26\x69\xef\x92\xbc\x87\xde\xdc\x4c\xe9\x63\x9d\x43\x1f\xfd\xb8\x2f\x4e\x7b\x57\x1a\x59\x27\x9e\xf0\xc6\xc6\x13\xfa\x79\x82\x9a\x28\x41\xe5\x8c\xc7\x03\x6e\x23\x39\x3b\x45\x40\x1e\x06\xf8\x4d\x54\x82\xd5\x93\x1d\x68\x7d\xd0\x01\xb6\xb4\x0e\xbe\x09\x1a\x11\xca\x0f\x5b\x2d\xda\xe4\x86\x5d\x5c\xc2\x97\x8b\x77\x93\x8b\x7d\x8a\x99\xe7\x69\x10\x7f\x1f\x6b\xb8\x4f\x28\xe9\x7f\x77\xe8\x83\x9d\xd5\xc6\x74\x99\x89\xc3\x6f\x9e\x85\xd5\x79\x7a\x18\x0b\x27\x7e\x85\x1f\xfa\x46\xbb\xa3\x8b\xfa\x27\x70\xa2\x97\xb6\x2a\xc0\xec\x4d\xa7\xf0\x4f\x10\x9b\x17\x16\xda\x08\x82\xbe\x7d\xb7\x5e\xf9\x9f\xa0\x43\x18\xf8\xdd\xeb\xe1\x4b\x00\x0d\xd4\xf2\x18\xec\x11\x96\x01\x0a\xfa\xc4\x01\xe0\x88\xa6\x53\xe6\x7b\xd3\xa7\xdd\x1e\x42\x37\x2d\xee\xe2\x20\x4d\xbc\xe0\x75\xa2\xd0\x18\xf0\x70\x72\x68\x1f\x91\x14\x01\x26\x8e\x6f\x77\xa9\x64\x1f\x3e\x80\x01\xa4\xdd\x11\x4f\x30\xe8\xc3\x43\x5c\xd8\xa6\x91\x24\xcc\xa4\xa2\x45\xd9\xc8\x1a\x71\xbd\x8f\x0c\x7a\x24\x60\xdb\xf7\xf6\xbf\xbf\xf7\x9d\xa6\x7e\xe3\xfb\x9b\xde\x69\x1a\xec\xb8\x4a\x1f\xba\x89\x76\x8c\x1d\xfb\x68\x24\x9b\xff\x13\xfb\xf8\xfc\x13\xb6\x8c\xaa\xc6\x0c\x6c\xd8\xdf\xdc\x97\x59\xff\x1b\x36\x4c\xed\xdd\xa1\x76\xe8\x3c\xfe\x09\x5b\x06\xb1\x7a\x32\x63\xef\x3b\x96\x38\x1b\x1e\x4d\x25\x94\xc9\xa8\x40\x21\xd2\x6d\xa7\xc6\x69\x10\xdc\x23\xd5\xac\x23\x61\x99\x27\x3d\xfb\x5d\x7c\x95\x83\x51\xc2\xc7\xc7\x0f\xb3\x70\xfc\x96\x6d\x6b\x43\x73\xd7\x8a\xcf\x66\x8d\x68\x5b\xb0\x18\x7b\xb3\xc3\xdd\x23\xad\x83\x66\x81\xa7\xa1\x4d\x90\x96\x7a\xea\x3f\x66\x88\x66\x14\xe0\x7f\x03\x35\xb2\x02\x71\xb6\x67\x24\xc2\x81\x36\xf4\x05\xba\xb6\x1b\xcd\x8d\x73\xef\x22\xe1\x8f\x56\xe2\xdf\xb3\x6f\x99\xc4\x3f\xbe\xdb\xab\xcc\x77\x50\x8b\x8a\xfd\x80\x25\xea\xaa\x5a\xab\x99\x8f\xeb\x0d\x75\xf4\xf3\x22\x01\xdd\xfd\xe4\xfd\x65\xfa\x48\x65\xdc\x16\x6e\x31\x14\x72\x17\x54\x18\x18\x5c\xc6\x8e\xaf\x1c\x0f\xd0\xc6\x0e\xc8\x1f\xf1\xdd\xe3\x76\x7d\xd5\x12\x6c\x6d\xc6\xcc\xe1\xe8\x06\xf9\xec\x38\x48\x5f\xc0\x49\xca\xd8\xf2\xdf\x87\xe9\x5f\xf0\x30\x3d\x9a\x36\xbf\x78\x08\x71\x2e\xd9\xb7\xec\x3d\xfe\xf1\x10\x2a\xfd\xe2\x9f\x49\xa6\x19\x5b\xde\x4f\xa9\x2f\xca\xaa\xa5\x5c\x79\x77\x13\x1b\xe5\x37\xb8\x99\x43\xfd\xac\x5f\x73\xc9\xf4\x8f\xd5\x78\x1b\x40\xd9\x0a\xb3\xdc\x9d\xe9\x3d\xf8\xfa\x23\x13\x7c\xf2\x05\x57\x8d\xc8\x37\xfd\x4f\x10\x64\x4c\x5d\x81\x01\x6d\xb8\xe8\x7a\x82\xd3\x8a\x59\xc6\x1a\xcc\xc0\x99\x51\xc5\x17\x73\x90\xaa\x15\xd6\x08\xba\xb8\x0c\xb3\x99\x6f\x6f\xfb\x57\x6b\xbe\x48\xef\x30\x8e\x5e\x5d\xa1\x66\x09\x7d\x5d\xaa\x37\xfc\xcc\xa2\xa4\xe8\x5b\x8a\x28\x43\x08\x7e\x13\x30\x53\x88\x24\xec\x94\xda\x51\x0f\x0e\x98\x6b\x4a\x16\xdd\xe7\x56\x9e\x39\x3d\xa5\x4f\x27\x86\xce\xb6\x2c\xf0\x60\x1a\xe4\x44\x53\xf8\x41\x8e\x86\x65\x85\xa0\xac\x3c\x4a\x0a\x34\x84\x9b\x3a\x8d\xbc\x78\xdd\xf7\x47\xe9\xf4\x87\xaa\x2a\xc3\x32\xae\x0b\xae\x5a\xc0\x45\x7f\x8f\xfa\x5b\xe3\xf6\xcd\x9b\x3f\x1f\xb7\x1d\xd9\x43\x6a\xe5\xff\xcb\xed\xd9\x4e\xe7\x68\x83\xe3\x24\xf4\x6f\xcb\x2e\x2e\xed\xd7\x6d\xe1\x01\x7c\x7e\xa3\x6a\x85\xc2\xcf\xb1\x9b\xcd\x38\xff\xeb\x00\x29\x53\x84\x78\xff\x7b\xc7\x76\xe0\x20\x44\xbf\x0d\x62\xc6\xed\xb4\x81\x35\x05\x27\xfe\x51\x36\x49\x3b\x85\xec\x52\x5f\x9d\x15\xdf\x04\xc6\x03\x98\x1f\x83\xcd\x63\x7c\xc6\x5d\x7e\x13\xf9\x06\xdb\x2f\x06\x32\x0a\x42\x8b\x33\x45\xe9\xf5\x8a\xed\x4c\xf3\x85\x2d\xc7\xde\x79\xf5\xdc\xa6\x7d\xe4\x8b\xc1\x82\x9f\xd0\xd5\x85\x8a\xec\x02\x38\x5f\x74\x40\x7e\x23\xd4\xec\xa1\x20\x0f\x55\x09\xfe\x27\x2e\x64\x67\x6d\xd3\x76\x3a\xf0\xd5\x88\x7b\x17\x0e\xc7\xd4\x97\x4b\xb9\xff\x0c\xe4\x43\xec\xe6\xb9\xb3\x0a\xcb\x22\x20\x21\x4b\x60\x17\xf9\x25\x12\x13\x7c\x43\xdf\xd2\x04\x9d\x93\xbd\x3c\x6c\x80\x89\x85\x83\x3e\x88\xa1\xd9\xa3\x97\xef\x66\x67\xc1\x01\xcd\x2d\x87\xb5\x87\xf4\x47\x21\xea\x9f\xfe\xbe\xe6\x65\xc2\x8f\x32\xc6\x8f\x59\x74\x6d\x59\x3e\x26\x8f\x86\x55\x5a\x6e\x56\x21\x8f\x77\xbc\x3c\xa6\xac\xc5\x23\x28\x61\x7e\x1c\x72\x0e\x2c\xef\x73\x17\xbc\x57\xb2\x04\x87\xdd\x71\xf8\xe3\x68\x47\x3d\x07\x79\x3c\xf4\x62\x1f\x67\x9a\x09\x51\xa3\x78\x64\x16\xfb\x6b\x9b\x58\x69\x9f\x1f\xa5\x99\x13\xfd\xf9\x31\xe5\xdb\x38\xfc\xf4\xfa\x6d\x8e\x32\xb6\x39\xb6\xf5\xd6\x36\xb2\x95\x5a\xcc\x0c\x7f\x3f\xbe\xec\xde\xd4\x0e\x7b\x05\x7b\xb2\x39\x82\x04\xb5\x52\xce\xd0\x3c\xf3\x64\x73\x1c\x3c\x08\x20\x8f\x5b\x1e\x1c\xc4\x2d\x5d\x6d\x8d\x23\x0a\x0b\x32\xd8\xd8\x1c\xdb\x1f\x83\x18\x88\x9a\xef\x4e\x86\xe8\x78\x74\x83\x56\x99\xe9\xef\x84\x23\x33\xc4\xde\xb6\xc7\xa1\x3d\x35\xa8\x33\xb0\x39\xea\xd6\x60\x22\x57\x10\x56\x3b\xc6\x4a\x4c\x71\x0d\xa5\x77\xf4\xa1\x14\xcf\xd5\x2d\xc2\x6d\x00\xdd\xe6\x08\x0d\xb4\xa7\xd8\xf0\xe2\xf9\x25\x64\xda\x1f\xc7\x4f\x8f\x2e\xe3\x52\x4a\xf4\x3d\x74\x57\xee\xc1\x8e\xea\x2e\x52\x7a\x90\xb1\xde\xb6\xde\xe2\x8c\x19\xcd\x71\xf7\xc0\x35\x46\x3e\x8f\xa3\x5e\xe8\x53\xb0\x1c\xeb\x0f\xc1\x8d\x8d\xbc\x23\x83\x95\xa0\xa8\x5b\xe8\x2f\x0c\xb6\xe0\x9e\x75\xf3\x86\x29\xa3\x78\x1c\xc5\xb1\x53\x38\x37\x45\x4f\x0d\x47\x44\xed\xcb\x1a\x05\x8a\x1f\x38\x39\xce\xab\x0f\xd8\x0b\x7e\x20\xb6\xef\xa9\x77\x15\x2f\xa2\xef\xa7\x88\xd1\xf7\xe1\x43\x0f\x7d\xd6\x9b\xe4\x1b\x21\xa9\xd0\xaf\x78\x96\x21\xf0\x6d\xb9\xdb\xcd\xb1\xff\x93\x40\x8f\xd3\x64\x3e\x69\x8c\xb0\xe4\xb8\xdb\x1e\x5f\x3f\xec\x23\x51\x6f\xab\x8c\xc1\xcc\xc1\x8f\x8f\x45\x3d\xf9\x46\xef\xa5\xd9\x01\xca\x79\x00\xc1\xc6\xf4\x6a\x49\x15\xbe\x3d\x04\xe8\x78\xc9\xeb\xbf\x8a\xad\x2b\x7a\x6a\xa4\x41\xf3\x32\x7d\x30\xe5\xda\x6f\x26\x21\x57\x81\x81\x6d\xf4\x2b\xdc\x75\x38\x07\x92\xe8\x92\x24\xa1\x12\x2e\xba\xcd\x71\xf7\x0d\xf0\x77\x5e\xf6\x38\x3c\x2f\x8f\x3b\x8f\xfa\x1b\xc3\xcb\x23\x10\x52\x8e\x3f\x61\x2b\xba\x51\x0c\x3b\xe9\x7b\x7f\xac\xc0\xce\x2d\x89\xb4\xf8\xe1\x94\x0b\x73\x06\xcf\x5a\x58\xd5\x43\x5c\x81\xe6\x12\x25\x5f\xe0\x43\x5a\x1f\x7b\xcf\xa1\x57\xd1\xfe\x77\x00\x00\x00\xff\xff\x2e\x2c\x47\xcb\xde\xae\x00\x00"), }, "/src/reflect/reflect_test.go": &vfsgen۰CompressedFileInfo{ name: "reflect_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247525331, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 5383, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xac\x58\xdd\x6f\xdb\x38\x12\x7f\xb6\xfe\x8a\x39\xdf\xed\x56\xba\x13\xe4\xaf\x36\x3d\xb8\xe8\x43\xdb\xb4\x8b\x2c\xb6\xce\x61\x13\xec\x3d\x04\xb9\x03\x23\x8f\x2c\x6e\x28\x52\x25\x47\xfe\xa8\xe1\xff\xfd\x30\x94\x2d\xcb\x71\xdc\x7a\x71\x5b\xa0\x89\x38\xf3\xe3\x7c\x73\xc8\x49\xaf\x37\x33\xe3\x87\x4a\xaa\x29\xfc\xee\x82\x5e\x0f\xfe\xd1\x2c\x82\x52\xa4\x8f\x62\x86\x60\x31\x53\x98\xd2\x7f\x09\x1d\x05\x81\x2c\x4a\x63\x09\xc2\xa0\xd3\x2d\x04\xe5\xdd\xa0\xd3\xdd\x02\xf8\x93\x31\x52\xcf\xba\x41\x14\x04\x59\xa5\x53\xb8\x45\x47\xef\x94\x9c\xe9\x02\x35\x85\x04\x7f\xdf\x22\x92\xdb\x08\xd6\x41\x87\x92\x9b\x47\x59\x86\x51\xb0\x69\xe1\x6f\x94\x4c\xf1\x7a\x8e\x36\x53\x66\x71\xe6\x9e\x4f\x95\x4e\x7f\x11\x2b\x53\x9d\xab\xe4\x9d\xb5\x62\x75\x9d\x5d\x4a\x8b\x29\x5d\x65\x22\xc5\x33\x37\xde\xae\x4a\x54\x52\x3f\xba\x1b\x63\x09\xa7\x67\xee\xfa\xe9\xc3\x7b\x49\xee\x4c\xf0\x87\x5c\xe8\x77\x4a\x99\xf4\x4c\xfc\x44\x14\xf8\x7e\x45\xe8\xde\x59\xf4\xc1\x3e\xdb\xac\xeb\x2c\x73\x48\xbf\x98\xf4\xf1\xdc\xdc\x20\xa7\xfa\x5a\x5f\xe9\xb9\x50\xf2\x19\x35\xdb\x62\x48\x6a\x60\x78\x77\x7f\x48\xf8\x20\x1c\xae\x83\x4e\x87\xff\x77\x2e\xa5\x1d\x03\x1c\x02\x7e\xc5\x74\x1e\x33\x93\x83\x30\x6e\x98\xbf\x09\x55\xe1\x7a\xc3\x9c\x4d\x0c\x27\x77\xdf\xa0\x9e\x7e\x7b\x77\x87\x21\x4f\x38\xd7\x59\x38\x88\x8e\x44\x1f\x4a\xbe\xc4\x4c\x54\x8a\x6a\x54\xd0\xd9\x3c\x09\x0b\xd9\x2a\xa5\xf3\xca\xa9\x7b\xa0\x3b\xb9\xd2\x84\x96\x37\x5c\x0a\x12\x20\x1d\x68\x43\xe0\xaa\xb2\xf4\xe5\x05\x0f\x2b\xf8\xc9\x94\x39\xda\x9f\x6f\x92\xee\xf3\x4a\xff\x2d\x29\x6f\xa4\x1c\xab\xed\xf5\xe0\xf6\xfa\xf2\x3a\xd4\x38\x7f\x34\x9a\xc4\x23\x61\x04\x9f\x8d\x23\x30\x19\x50\x2e\x1d\x30\x1e\x44\x4a\x95\x50\x6a\x05\xa5\x70\x0e\x5d\x0c\x0f\x15\x01\xe5\x68\x91\x8d\x72\xa6\x40\xca\xa5\x9e\x79\x79\xe2\xc1\x54\x04\x58\x3c\xe0\x74\x2a\xf5\x0c\x32\x89\x6a\xea\x60\x21\x29\x07\xc6\x99\xa9\x03\xca\x05\x41\x2a\x34\x18\xcb\xbf\x5e\x10\x3c\x20\x38\x32\x16\xa7\x20\x35\x08\xed\x25\xc9\x9d\xdd\x30\xe7\x68\xc0\xd4\x07\x50\xad\xea\xed\x3b\xcf\x61\x6a\xd0\xc1\x54\x66\x19\x5a\xd4\xcc\xce\xac\x29\xa0\x2a\x1d\x59\x14\x45\x02\xef\x5c\x6d\x17\x58\x74\x9c\xa5\x66\xe7\x0b\x07\xb2\x28\x15\x72\xfb\x11\x24\x8d\x66\xa7\x77\x81\x0b\x23\x2f\x98\x6d\x2b\x85\x96\x29\x2c\xd8\x5d\x2f\x69\x27\xda\x03\x12\xb8\x22\x70\x88\x85\x03\x32\xec\xc6\x4e\x0f\x0b\x33\x95\x7d\xaa\x82\x33\x58\x5a\x53\x8a\x99\xa0\x5d\xc8\x28\x47\x78\x94\x7a\xda\xaa\x10\xc8\x94\x98\x71\x2c\x9c\xb7\x07\x68\x55\xa2\x83\xd4\xa2\xd8\x26\x7e\x6f\x67\x9d\x0d\x41\x3e\x5f\x5e\x5e\x69\xa4\x26\xb8\x82\x85\xf0\xf6\x8b\x07\x85\x6c\x5c\x26\x67\x95\x45\xe0\xf4\x2c\x72\x8f\x17\x54\xeb\x69\xf2\x5b\xa0\xd0\x8e\xd5\x52\x5e\xfb\xda\x44\x39\x35\x9a\x70\x49\x9c\xb1\xdc\x2c\x40\x12\x14\xa2\x74\x60\x34\x19\xef\xa6\x59\xe8\xdd\xa9\x60\x37\x0f\xbd\x4e\xf6\x05\x7e\x90\x36\xb6\x6e\x5b\xce\x3e\xfd\x5c\x2f\xb5\xa7\x4d\xae\xa5\xde\xd7\x81\xdb\x56\xf9\x5c\x58\x98\x22\x96\x1f\xbf\x54\x42\x71\xb5\x3b\x78\x0b\x77\xf7\x97\x6d\x52\x5d\xdc\x7e\x29\x49\xa2\x0b\x3a\x6b\x2d\x55\x0c\xfe\x07\xd9\x0a\xf9\xa4\xae\x07\x31\x0c\x5a\x4b\xa9\x69\x34\xe4\xf3\x0e\xfb\xaf\x86\xd9\x4f\x5e\xc5\xe0\x7f\x34\xa4\x4c\x19\xc1\xb8\x7e\xf2\x2a\x8a\xe1\x70\xd5\x80\xba\x39\x2a\x65\xba\x31\x34\x1f\x0d\xab\x10\x8f\x18\xde\xdd\x4b\x4d\x31\x0c\xfa\x51\x0c\x47\x84\x06\xfa\xe3\xdd\x88\xc9\x6c\xf1\x30\x86\xd1\x26\x86\x63\x4a\x03\x7e\x2f\x9c\x4c\x99\xd1\x4f\x5e\x6d\x62\x78\xb2\x6c\x60\x68\xad\xb1\xa1\x96\x2a\x8a\xa1\xfd\xdd\xb2\xaf\xbc\x93\x9a\xee\x1d\x71\x6a\xd6\x83\x31\x74\x8d\xc6\x6e\x0c\xc3\x31\x74\x69\x61\xba\x1b\x36\xf9\x00\xb3\xe3\xc4\xb0\x43\xb7\x35\x66\x7a\x10\x43\xa6\x87\x0d\xc9\x67\xe9\x4a\x63\x3b\x4f\xb5\x43\x99\x50\xee\xf9\xac\x0c\xa3\x36\x77\x9b\x96\x8b\x36\xed\x54\x5e\x2e\x0e\x76\xb6\x13\xb3\xea\xb6\x39\xdf\xce\xcb\xe0\x40\xca\xf7\x12\xf3\x72\xd3\x46\x9f\xce\xcc\xc5\x09\x5c\x83\x1a\xd6\x8b\xb6\x95\x27\xb2\x33\xfa\x63\xd9\x39\x43\xa2\xdf\xb7\xfc\xf3\x24\xfe\xbf\x72\x9e\x45\x9f\xd6\xb5\x97\xe3\x8f\xff\xa0\x4d\x19\x6c\x7b\x42\xab\x7a\xea\x22\x1d\x1d\xd2\x46\x47\xb4\xbb\x7b\x5f\x11\xeb\xf5\x60\xb3\x89\xa1\x59\x0d\x37\x4f\x2c\xa7\x3c\x99\x88\x49\xe8\xcb\x68\xff\xdd\xae\xa0\xc1\xbd\xaf\xd1\x8b\x97\x2d\xb4\x2f\xa4\x13\x8c\x33\xf6\x3a\x54\xd9\xba\x7d\xf4\xee\x9e\xc7\xdd\x7d\x4f\xc3\xdd\x99\xf2\x39\xfa\x5b\xe4\x33\x3b\xc6\x30\xd8\x66\xe8\x29\x66\x30\x86\xe1\x51\xaa\xbf\x27\xe8\x89\x76\xdf\x45\x26\x52\xc1\xdc\x01\x16\x25\xad\xc6\xfe\x9e\xe5\x7b\xd5\x89\x02\x13\xef\x06\x27\xc7\x3b\x2c\x35\x6d\x1b\x5d\xdb\xcb\x36\xfb\x49\xe0\xf6\x1b\xda\xdf\x47\x5d\x72\xbb\xb1\xb5\x3c\x52\x73\x1a\x7a\x14\xcb\x43\x11\xc7\x94\xb6\xeb\x9f\xa5\x2b\x04\xa5\x39\x4e\xeb\xeb\x73\x7b\xb3\x25\xfd\x93\x6d\xf4\xe2\x65\x38\x38\x6e\xa3\x4d\x47\x7c\x1a\x98\x7d\x73\x3b\xea\x76\x47\x9d\xb0\xbe\xab\xd7\x9b\x56\xff\x7b\x9e\xd3\x75\xdd\x6f\xf5\xc6\x89\xa1\x27\x94\xc3\x38\x56\x7f\xc6\xcd\xb4\x13\xe9\xc3\xf8\x2f\xe3\x9c\xe4\xc7\x92\x32\xa6\x74\x5c\x35\x3f\xf2\xd7\x20\x86\xdd\xef\x5d\x86\x7a\xbd\x43\x56\x73\xa1\xc1\xf6\x45\x3d\x86\x4f\x72\xd9\x48\x58\xed\x70\xab\x67\x64\xec\x99\xa7\xa4\x6c\x82\xa0\x4d\xf0\x0f\xbd\x04\x6e\x10\x21\x27\x2a\xdd\xb8\xd7\x9b\x49\xca\xab\x87\x24\x35\x45\x6f\xe6\x1f\x58\xbf\xbb\xfd\x87\x74\xae\x42\xd7\x7b\x7d\x31\x4a\xf6\x03\xc2\x15\x13\x87\xc3\xfe\xeb\xd1\xf1\x54\x50\xc0\xf8\xed\xd1\x14\x34\x31\xfa\xe3\xb2\x1e\x3c\x3e\x49\xeb\x28\xec\x47\x51\xf2\xd9\x3f\xe8\xc3\x7e\x14\x04\x1d\x99\xc1\xcc\x10\x6f\x2d\x12\x1e\x84\xc3\x28\x99\x54\xc5\x75\x45\x61\xf4\xc6\x73\xfe\xf2\x16\xfa\x7e\x86\xa2\xe4\x23\xbf\x36\xb2\xb0\x5b\x03\xc6\x9e\xfd\xc3\x3c\x86\x85\xd0\x04\xfd\x6e\xcc\x84\x28\xe8\x6c\x82\x66\x44\x69\x7b\x7e\x9b\x23\xa4\x42\x29\x78\x40\x65\x16\x90\x09\xa9\xea\x01\x63\xcc\x70\xbf\xa5\xc3\x6f\xc4\xbf\x79\xd0\x5b\x60\xa7\xf9\x19\x1a\x66\x3a\x06\x9b\xce\x6d\x0c\xc2\xce\x5c\x04\x6b\xb0\x48\x95\xd5\x90\xe9\x44\x94\xa5\x5a\x85\x2d\xee\x1b\xd8\xbc\xa9\x65\xc1\x1f\xfd\xf7\x9f\x7a\x1f\x47\xc1\x7b\x3a\x86\x0f\x42\x73\x47\xb2\x28\xa6\xfe\xf9\x8f\x96\x56\xf0\xc2\xeb\x7c\xc1\x93\x42\xa5\xa7\x98\x49\x8d\xd3\xda\xe3\x9b\xdc\x54\x6a\xda\x0c\x1f\x09\x13\x8b\xe4\x83\x50\xca\x9f\xfe\xc3\xbf\x08\x08\xa5\x7e\xf5\x6e\xb8\x8f\xdc\xfb\x4e\x0f\x97\x7e\x96\xab\x1c\x3a\xb0\x95\x26\x59\x60\x72\x83\xf4\x49\x6a\xa1\xe4\x57\xb4\x31\x2c\x72\x99\xe6\xdf\x1c\x33\x5b\x53\xa6\xd4\x92\xc2\xf6\x10\x39\x86\x5b\x1e\x18\xa5\x03\xe1\x53\xc2\xb3\x86\xd4\x30\x48\x06\xbe\xe8\x57\x3c\x82\x4c\x91\xd0\x16\x52\xa3\xef\xcd\xa9\xa8\x1c\x82\xd0\x53\xc8\xfc\x61\xe1\xde\xb5\x7b\xce\x8b\xb2\x44\x3d\x0d\x1b\xd2\xdd\x78\x34\xb8\x8f\x61\xbf\x1e\x0d\xc7\xf7\x49\x92\x44\x7c\x56\xdc\xa3\x2c\xeb\x49\x35\x15\x0e\xe1\xaf\xa3\xc1\x61\x84\x8c\x9e\xa3\xa5\x89\x98\xb8\xe7\x47\xe0\x66\xd0\x95\x0e\x70\x29\xb6\x43\x66\x7d\x79\x80\x70\xfe\x7b\x37\xf5\xc5\x80\xcb\x14\x4b\xe2\x11\xc8\xc7\x52\x40\xf7\x4b\x25\x91\x60\x22\x26\x5d\x2f\xaf\x1e\x57\xa5\x76\xc4\xe9\x36\x19\x74\x9d\x9c\x69\xa1\x14\xcf\x37\x8c\x4a\xe0\x67\x31\x17\x37\xa9\x95\x25\x79\x4f\x85\xf5\xe3\x63\x6a\xd0\xa6\x08\x5c\xb5\x6c\xec\x6e\x0a\x36\x50\x2b\x30\x7a\x37\x7b\x67\xc6\x7a\xa3\xca\xca\x96\xc6\xe1\xe1\xb4\x8e\x92\x47\x73\xf6\x85\x2b\x2a\x09\x82\x4e\x6a\xb4\x23\xf8\xa2\x85\x86\xca\x5f\x03\xf0\x16\xfa\xcb\xd7\x59\xda\xef\xf7\xfb\x03\x8e\xe0\xb5\x95\x33\x2e\x04\xb5\x1a\x7b\xce\x3f\x3d\x67\x9b\x13\x28\x56\x9f\xea\x37\xf4\xee\x2d\x1d\x74\x96\x7c\xd0\x7f\x0b\x1b\x4e\xe8\xaf\xe8\xed\x82\x27\xf0\x07\x49\x2e\x64\x95\x51\x14\x05\x9d\x15\xc3\x97\xc9\x36\x13\xe1\xae\xb9\xf0\x09\xb9\xce\xc2\xe6\x85\xee\xb1\x5f\x19\xbb\xda\xff\xf1\x23\x8c\x92\x1d\x22\x3a\x68\x33\x2d\x8d\x5e\xdb\xd7\x7d\xa3\xf1\xbe\x1e\xf6\x9a\x3a\x86\x4c\x4f\xbd\x15\x8e\xe7\x54\xdf\x78\x96\xdb\xc6\xf3\xc3\xb2\xee\x3c\xb1\xdf\xee\xfb\xcf\x26\xf8\x5f\x00\x00\x00\xff\xff\xd9\x65\xd5\xee\x07\x15\x00\x00"), }, "/src/reflect/swapper.go": &vfsgen۰CompressedFileInfo{ name: "swapper.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247612789, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 848, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x52\x4d\x8f\xd3\x30\x10\x3d\x7b\x7e\xc5\x10\x21\x14\x6b\xab\x64\xf7\x1a\xa9\xdc\x00\xad\x58\xd8\x43\x25\xee\xae\x3b\x4e\x6c\x52\xdb\xb2\x9d\x16\x48\xf3\xdf\x91\x93\xd0\x4a\x20\xad\x96\x43\xa4\xf1\xbc\x37\x1f\xef\x4d\xea\xba\x75\xcd\x7e\xd0\xfd\x01\x4d\x84\xba\xc6\xbb\xeb\x03\xbc\x90\xdf\x45\x4b\x18\x48\xf5\x24\x13\x80\x3e\x7a\x17\x12\x16\xad\x4e\xdd\xb0\xaf\xa4\x3b\xd6\xad\xf3\x1d\x05\x13\x6f\x81\x89\x05\x80\x1a\xac\xc4\xdd\x59\x78\x4f\xa1\x8c\xbd\x96\x84\xda\x26\x0a\x4a\x48\x1a\x27\x8e\x19\x2f\xf5\x06\x4d\x4e\x73\x1c\x81\x9d\xb0\xd9\xe2\x37\xd1\x0f\xf4\xac\x96\x0a\x0e\x4c\x2b\x3c\x55\x9f\xb5\x3d\x94\x1c\xdf\x6c\x71\x37\x37\x1a\x81\x31\x2f\xac\x96\xe5\xbb\x99\xff\x21\x04\x17\xc6\x2f\x94\x3a\x77\x68\xb0\x58\xa7\x16\x1b\xcc\x85\xcd\xb5\xc1\xc4\x81\x4d\xc0\xea\x1a\x3f\x8a\x98\xd0\x8b\xd4\xa1\x72\x01\xe7\x59\x11\x9d\xc2\xa8\x7f\x11\xde\xa3\xb0\x07\x7c\xa8\xf0\xab\x4b\x9d\xb6\x2d\x26\x87\xf1\x2c\x7c\x05\xec\xf4\x44\x36\x6f\x39\x68\x9b\xca\x53\xf5\x44\xb6\xe4\x1c\x58\x3c\xeb\x24\x3b\x9c\xd1\x11\x98\x14\x91\xf0\xbe\x01\xc6\x02\xa5\x21\xd8\x7f\xb4\xe2\xb2\x7c\xb1\xda\xda\xe0\x1f\x7f\x0e\xf4\x03\xdd\x90\xf2\x2a\x41\xd8\x96\x0a\x8e\xd3\xda\xef\xe1\x85\x7e\xc0\x58\x36\x4a\x67\x87\xee\xf1\x72\x41\xb3\x44\x33\xc0\x5e\x3f\x2c\xd3\x27\x98\xbf\x09\x98\xc8\x4a\x4d\xac\x1e\xf3\xd9\xac\xe8\x9f\xf7\x86\x64\x5a\x2f\x53\x7d\xa2\x54\x16\x6f\x45\x08\xe2\x67\x2e\x74\x4a\xbd\x82\xee\x94\x8a\x94\x0a\x9e\x49\x25\x87\x17\xf4\x68\xb5\x98\xac\x39\xbe\xdf\x2e\xce\x5e\x2e\x4b\xca\xdc\x52\xb3\xc0\xff\xd2\x97\xe5\x69\xbc\xdb\xa2\x53\x0a\x18\x33\xb7\x30\x1d\x7d\x56\x20\xaa\xc7\x5c\x59\xea\xcc\x16\xd5\x8e\xd2\xfa\xde\x5c\x21\xc3\xff\xc2\xcc\x06\xd3\xd1\xcf\x7f\xd7\x04\xbf\x03\x00\x00\xff\xff\x04\x6e\xc7\xe7\x50\x03\x00\x00"), }, "/src/regexp": &vfsgen۰DirInfo{ name: "regexp", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247680205, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/regexp/regexp_test.go": &vfsgen۰CompressedFileInfo{ name: "regexp_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247705913, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 162, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\xca\xb1\xaa\xc2\x30\x14\x06\xe0\xb9\xe7\x29\x7e\x32\xb5\xf7\x42\xb3\x5e\xee\xea\x2c\x0a\x16\xf7\x98\x9e\x86\xd8\x36\x09\x3d\x27\x50\x14\xdf\xdd\x45\x1c\x3f\xf8\xac\x0d\xf9\xff\x56\xe3\x32\xe2\x2e\x64\x2d\x7e\xbf\xa0\xe2\xfc\xec\x02\x63\xe3\xc0\x7b\x21\x8a\x6b\xc9\x9b\xa2\xa5\xc6\x28\x8b\xc6\x14\x0c\x75\x44\x53\x4d\x1e\x03\x8b\x9e\x12\x9f\x9d\xc8\xa1\x6a\x9e\xa6\x56\xf1\xf3\x59\xfd\xd0\xe1\x49\x8d\xf6\x97\x39\x96\xb6\x83\xb5\x30\x47\xb7\xc7\xb5\xae\xf0\x6e\x59\x20\xea\xfc\x0c\x89\x0f\x06\xef\x9e\x79\xe4\xd1\x20\x27\x5c\xff\xe8\x45\xef\x00\x00\x00\xff\xff\x45\xb3\x72\xd3\xa2\x00\x00\x00"), }, "/src/runtime": &vfsgen۰DirInfo{ name: "runtime", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248033495, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 10, 1777300, time.UTC), }, "/src/runtime/debug": &vfsgen۰DirInfo{ name: "debug", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247778455, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/runtime/debug/debug.go": &vfsgen۰CompressedFileInfo{ name: "debug.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247804579, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 312, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x8e\xc1\x4a\xc3\x50\x10\x45\xd7\x9d\xaf\xb8\xcb\x8a\xda\x49\x53\xeb\xc2\xa5\x2e\xba\xaa\x88\xfa\x03\x2f\xc9\xf8\x1c\x9b\x4c\x4a\xde\x3c\xb0\x48\xff\x5d\x9a\x82\x11\x77\xce\x66\xb8\x1c\xee\xe1\x32\xc7\xfe\xae\xca\xda\x36\xf8\x48\xc4\x8c\xcb\x9f\x40\xfb\x50\xef\x42\x14\x34\x52\xe5\x48\xf4\x96\xad\x46\x12\xdf\x3c\x3c\xc9\x50\x8b\xf9\x5c\xcd\x57\xe5\x05\xc6\x87\x2f\x9a\x31\xe3\xb1\x77\x68\xb7\x6f\xa5\x13\x73\x69\x16\x78\x16\xcf\x83\x41\x4d\x5d\x43\x7b\xea\xbb\x5a\x5c\xd0\x6c\x38\x83\x65\x51\xd0\x71\x92\x6f\xc3\xe7\x8b\x87\x7a\x37\xaf\x0e\x2e\xe9\xa4\x1e\xfd\xff\xb6\x33\xe3\xf5\x5d\xfe\x02\x68\xc2\x12\x9b\x7b\xf4\x86\xdb\x9b\xeb\x4a\x1d\xe9\x90\x5c\xba\x74\x85\x72\x5d\x60\x3b\x92\x55\xf9\x9b\x4c\x53\xcb\x75\x71\x3e\x3a\xd2\x77\x00\x00\x00\xff\xff\x51\x07\xd4\x68\x38\x01\x00\x00"), }, "/src/runtime/fastrand.go": &vfsgen۰CompressedFileInfo{ name: "fastrand.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247863079, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 459, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x44\x90\x3d\x6f\xdc\x30\x0c\x86\xe7\xe8\x57\xbc\xf0\x64\xf7\xc3\x46\x92\x2d\xc8\xd6\xa2\x41\x87\x22\x4b\x81\xce\xb4\xcd\xb3\x78\xa6\x24\x43\xa2\x12\x1c\x8a\xfe\xf7\x42\x97\xa0\xdd\x48\x10\xef\xc3\x87\x9c\xa6\x2d\x3d\xcc\x55\x74\xc5\xb9\xb8\x69\xc2\xc7\x7f\x8d\x3b\x68\xd9\x69\x63\xe4\x1a\x4d\x02\x3b\x27\xe1\x48\xd9\xd0\x6d\x62\xbe\xce\xe3\x92\xc2\xb4\xa5\xc3\x73\x3e\x97\xff\xc5\xb9\x74\xce\x9d\x6a\x5c\x70\xa2\x62\x99\xe2\xda\x0f\xa8\x12\xed\xfe\x0e\xbf\xdd\xcd\x34\xe1\x7b\x84\x79\x46\x3d\x8a\x65\xa6\x00\xf3\x52\xd0\x12\x26\x29\x42\x0a\x24\x1c\xca\x81\xa3\xf1\x8a\x57\x31\x0f\xba\xe6\x96\x5a\x2c\x05\x90\x6e\x29\x8b\xf9\x16\x24\x43\x2d\x5c\x30\x8b\x21\x50\x94\xa3\x2a\x35\xca\x27\xcc\xd5\x20\xd6\x68\x2a\x3b\xeb\x05\x96\x30\x33\x8a\xa6\x57\xce\x57\x9c\x79\x8a\x58\x48\x55\xe2\x86\x1f\x64\x7e\x6c\xb2\x29\xf4\xc3\x78\x9d\xff\x7c\xfe\xfa\xdc\x47\x7e\xd9\x53\x34\xda\x8d\x87\x07\xfc\x62\x14\x9f\xaa\xae\x78\xe1\x2c\xa7\xcb\x9b\x81\x18\x68\xb1\x4a\xaa\x97\xb6\xaf\x9d\xcd\x19\x14\x57\x78\x2a\xef\xee\x45\x82\x28\x65\xac\x52\x2c\xcb\x5c\x9b\xe4\xe8\x6e\x32\x5b\xcd\xf1\xfd\x3d\xfd\xb9\x8c\x4f\x9a\x66\xd2\xf1\x89\xad\xef\x9a\x53\x37\x8c\x5f\x48\xb5\xef\xde\xdc\xba\x61\xfc\xa6\x89\xac\x1f\xf0\x01\xfd\xed\xe3\xe3\xfd\x1d\x3e\xe3\x76\x18\xdc\x1f\xf7\x37\x00\x00\xff\xff\x19\x09\x14\x67\xcb\x01\x00\x00"), }, "/src/runtime/pprof": &vfsgen۰DirInfo{ name: "pprof", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247927787, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/runtime/pprof/pprof.go": &vfsgen۰CompressedFileInfo{ name: "pprof.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 247958037, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 674, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x92\x3f\x6b\xe3\x40\x10\xc5\x6b\xcd\xa7\x18\x54\x49\x77\xc6\xba\xfa\xba\xe0\x26\x45\x12\x4c\x9c\x90\xc2\xb8\x58\x4b\x23\xb1\xb1\xf6\x0f\xa3\x59\x3b\xc6\xf8\xbb\x87\xb5\x8c\x59\xb0\x08\xa4\x9c\x9d\xf7\x1b\xde\x7b\x6c\x55\x75\xee\xff\x36\xe8\xbe\xc1\xcf\x01\xaa\x0a\xff\xde\x06\xf0\xaa\xde\xa9\x8e\xd0\x7b\x76\x2d\x80\x36\xde\xb1\x60\x01\x59\xae\x5d\x0e\x59\x3e\x1c\x6d\x9d\x43\x09\x20\x47\x4f\xb8\x64\xd7\xea\x9e\x70\x10\x0e\xb5\xe0\x09\x32\xab\x0c\x61\x9c\xb5\xed\x20\x33\x01\x11\x31\x32\xf3\xe7\x20\xf4\x05\x99\x89\x0f\x68\x94\x5f\x6b\x2b\xc4\xad\xaa\xe9\x74\xde\xac\x37\x41\x5b\xf1\xc2\x90\xd5\x2e\x58\xc1\x36\xd8\xba\x28\x51\x5b\x81\xec\xc0\x5a\x68\x7c\xd1\x6e\xfe\x11\x27\x9e\xc5\x55\x89\xc4\xec\x18\xce\x00\x71\x8b\x85\xc7\x3f\x57\x47\x25\x5e\x74\x6f\xae\x38\x60\x02\x35\xb4\x0d\x5d\x82\x46\xc7\x4c\x12\xd8\xa2\xd5\xfd\xf4\xa1\x45\x34\x34\x7a\x49\xe4\xff\xa6\xc5\x2f\xca\x50\x51\x5e\xf3\x27\xf2\x3c\x9f\xd6\x3f\x34\x4d\xb1\x57\x7d\x20\x4c\xea\x98\xe1\xb0\xd3\x7e\xb4\x79\x9a\xe6\x5e\xc9\xb8\x3d\xdd\xa3\x29\xb0\x12\xc5\xb2\x58\xbe\x5f\xa1\xb4\x89\x9f\xe3\xaf\xc4\xf9\x84\x4b\x6f\x5e\xf0\x47\x52\xfe\xd7\x47\x9f\x9c\xdb\x05\x5f\x5c\xfe\xc7\x58\x4f\x79\xcb\x73\x87\x7c\x07\x00\x00\xff\xff\xf0\xb8\x7a\x64\xa2\x02\x00\x00"), }, "/src/runtime/runtime.go": &vfsgen۰CompressedFileInfo{ name: "runtime.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248104119, time.UTC), - uncompressedSize: 12120, + modTime: time.Date(2022, 4, 19, 10, 35, 10, 1777300, time.UTC), + uncompressedSize: 12098, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x3a\xed\x72\x1b\x37\x92\xbf\x39\x4f\xd1\x3b\xb7\x97\x90\x12\x4d\x4a\x8e\x63\x27\x4a\xe4\x5a\x87\x89\x14\xe5\x6c\x4b\x65\x39\xb7\x5b\xa5\xd5\x39\xe0\x4c\x0f\x09\x6b\x06\x98\x03\x30\x94\xb8\x5e\x3d\xc0\x3d\xc8\xbd\xd8\x3d\xc9\x55\x37\x80\x99\x21\x45\xdb\xd9\xbb\xfb\x71\xaa\xb2\xa5\x01\xba\x1b\x8d\xfe\x6e\x00\xd3\xe9\x42\x1f\xcd\x1b\x59\xe6\xf0\xde\x26\xd3\x29\xec\xb7\x1f\x49\x2d\xb2\x1b\xb1\x40\x30\x8d\x72\xb2\xc2\x24\x91\x55\xad\x8d\x83\x61\x32\x48\xc3\xd8\x54\x2a\x87\x46\x89\x72\x6a\xd7\x36\x4d\x92\x41\xba\x90\x6e\xd9\xcc\x27\x99\xae\xa6\x0b\x5d\x2f\xd1\xbc\xb7\xdd\x1f\xef\x6d\x9a\x8c\x92\x24\xd3\xca\x32\x99\xd3\xf3\xf3\x4b\xa0\x9f\x63\xb0\x6b\x3b\xa1\x4f\x1a\x7c\xf1\x66\xf6\x33\x0f\xa6\x84\x30\x98\xe9\xaa\x96\x25\x1a\x1a\x88\xa4\x98\xce\x74\x0a\x6f\x97\x08\x3f\x19\xa3\x0d\x30\x27\x85\xc8\x10\x64\x8e\xca\xc9\x42\xa2\x05\x41\xcc\x03\x71\x0a\x48\x50\x93\xc4\xad\xeb\x87\x18\x1f\x92\x01\x4f\x27\xc9\x60\x3a\x85\x37\x7e\x6f\x01\x88\x88\x28\xfd\x48\xd7\x50\x34\x2a\x73\x52\x2b\x98\x37\x8e\x01\x2d\x9a\x15\x5a\x70\x1a\x72\x69\x9d\x54\x8b\x46\xda\x25\xd0\x0a\x16\xdc\x52\x38\x10\x06\x5b\x06\x18\x83\x57\xb1\x50\x18\x5d\x81\x36\xb9\x54\xc2\xac\xc3\xe0\x11\x08\x46\xe5\x15\x19\x78\x93\x75\x90\x05\x48\x07\x4b\x41\x0c\x6d\xb0\x58\xa1\x5b\xea\x7c\x92\x0c\xfa\xa3\xc3\x51\x72\xef\x25\x74\xfe\xe3\xf9\x50\xe1\xea\x46\x2b\x27\x6e\x1c\x8e\x8e\xe0\x4c\x81\x5b\x22\x34\xb5\x75\x06\x45\x35\x06\xb7\x94\x16\xac\x33\x4d\xe6\x68\xf9\x0a\x85\x72\xb4\xad\x39\x42\xa6\xab\x5a\x38\x39\x2f\x91\x88\xdd\x4a\xb7\x04\x83\x45\x89\x99\x9b\x18\x62\x77\x4c\xd2\x80\x25\x1a\x84\x5b\x84\xc6\x22\x08\xa8\xa4\x92\x95\x28\xc1\xba\x66\xee\x05\x61\x85\x93\x96\x35\x42\x0b\xbf\xb8\x38\x63\xce\xd6\x35\xbe\xb0\x16\x0d\x09\xd5\x6f\x05\xef\x6a\xcc\x9c\x1d\xc3\xed\x52\x66\x4b\xa2\x98\xaf\x95\xa8\x64\x26\xca\x72\x0d\x52\x59\x27\x94\x93\xc2\x21\x48\x05\x7f\x14\x8c\x4c\x64\x86\xa3\xa0\xd9\x77\xfc\xbf\xdf\xca\x07\xfa\x4d\xff\xa4\x5a\xc0\x7d\x92\x90\xfe\x60\xe8\x60\x8f\x81\x46\x61\x66\x18\xff\x00\xf8\x00\x06\x5d\x63\x14\xb8\x09\x61\xde\x3f\xc0\xa8\x6f\x16\xb5\x70\xcb\x0e\xa5\xc5\x48\x53\xf0\xe2\x7e\xf1\x91\x6d\x95\x42\x2a\xd2\x5c\x21\x64\x89\xb9\xd7\xb4\x88\x50\x81\xf9\x1d\x98\x41\x29\x1f\x92\xc1\xbb\xce\x5c\x01\x02\x47\xc9\x20\xd3\x2a\x33\xe8\x78\xac\x1b\xf5\x84\x31\xdf\x1c\xad\xa4\xb5\x52\x2d\x5e\xb1\xb9\xc4\x1d\x4c\xa7\xa0\x15\x06\x1b\x02\x85\x98\x63\x0e\xf3\x35\x9c\xc5\xd5\xc6\x10\xf0\xbc\xd5\xce\xc2\x82\x49\x2b\xd0\xbd\x87\x6c\x8f\x60\xd3\x14\xe1\x43\x0b\x8d\xb0\x13\x3e\x02\x46\xb9\x26\x03\xde\x2e\x1c\x1d\x43\xda\x6e\x3c\x4d\x06\xb2\x00\x9c\xf4\x44\xf1\x87\x63\x50\xb2\x24\xf8\x80\x70\xbc\x31\x3f\x89\x3a\x4e\x06\xf7\x24\x16\xa2\x87\x93\x28\x9e\xde\x2c\xd3\x6d\x85\x79\xdc\x51\x8d\xfa\xed\x96\xcc\xb4\x5a\xa1\xb1\x52\xab\x23\x48\x61\xdf\x87\x11\xd8\x87\x94\x5c\x47\xc9\x72\x0c\x4a\x3b\x9e\x11\x96\x97\xcd\xc2\xb2\x91\xfc\xf6\xb2\x9b\x7a\x39\x3e\x26\x63\xa2\xa5\x2b\xbb\xd8\xdc\xff\xa7\x97\xa6\x81\xcc\xd2\xd7\x26\x07\xb4\x48\x66\x89\xae\xb0\x4c\x97\x62\x4b\x6d\xf4\x4a\xe6\x08\xb6\x94\x8b\xa5\x2b\xd7\x90\x95\x28\x0c\x9a\x10\x6b\x2a\xb4\x56\x2c\x90\x80\x37\x24\x33\xe9\x3c\xe0\x0f\x1b\x92\xec\xc6\x79\x05\xe6\x7d\xff\x18\x52\x18\xfa\x70\xc8\xb6\x93\xcb\xa2\x40\x83\xca\x41\x48\x2d\x76\x94\x12\xf4\x3d\x60\x69\xf1\xf7\x61\xda\x4c\xd7\x2d\x5e\xe2\xff\x05\x1d\x55\x76\xc1\xf2\xfe\xbc\xca\xbc\x98\x58\x5f\xad\xa0\x60\x3f\x19\x0c\xd2\xa3\xd6\xda\x83\x47\xd0\xe4\x96\x8a\x5a\xd3\x97\x4a\x3a\xbf\xe3\xf7\xf6\xe2\x86\x95\xf5\xde\x4e\x4e\x4b\x3d\x17\xe5\xe4\x14\xdd\x30\xfd\x63\xdc\x68\x3a\xf2\x03\x9f\x4b\x8f\x23\xa2\x15\x49\x5c\x32\x89\xf7\xf6\x7c\xfe\x1e\x33\x77\xe1\x4c\x3a\x06\x5e\xc9\xd3\xf2\xc3\x91\x72\xed\x4c\x3a\xda\x89\xce\xbe\xf5\x00\x9b\x47\x3f\x87\xec\x96\x46\xdf\xf6\x7d\x99\x69\x4c\xce\x42\xd6\xf7\x1c\x0c\x19\x8a\xd0\xb9\x76\xf8\x57\x2f\x69\x78\x28\x8c\x85\x0e\x73\xe9\x68\x72\xd9\xfa\xc0\x74\x0a\x62\xa5\x65\x0e\x39\x8a\x1c\x32\x9d\x23\x60\x29\x2b\xa9\x04\xc5\x87\x64\xb0\x12\x06\x42\x0e\x4c\x06\x08\xc7\xf0\xc5\xc3\x00\xf2\xe1\x3e\x19\xbc\x23\xdf\x6f\x75\x73\x7a\xfe\xe6\xfc\xfc\xed\x46\x44\xa9\x8d\xce\xd0\xda\x1d\x6a\x0a\x33\xa9\xf7\xc8\x08\x77\xcc\x70\xbf\xaa\x1c\x0b\xa9\x30\xdf\x08\x07\xd3\x94\x4d\x4d\x16\xb0\x22\x7a\x01\xc5\x53\x43\xb5\x8a\x72\x3d\x3d\xbf\xf8\xf9\xa7\x37\xbf\x5c\xbe\xf3\xec\xa4\xa3\xef\x60\x45\x9e\xb3\x41\xf7\x8b\x2f\x60\xd5\xca\x83\x66\x83\xff\x4f\xa7\x70\xca\xa6\xf1\xcb\xe5\x23\x5b\x63\x26\x0b\x19\xf7\x05\x2b\x51\x36\x08\x4e\xdc\xa0\x85\xda\x60\x86\x39\xaa\x0c\x27\x1d\x87\xab\x9e\x84\x83\x7f\x7d\x9e\xd9\x7f\x9c\xc7\x5d\xab\xf9\xda\x68\x6d\x27\x3f\x62\x21\x9a\xd2\x9d\x6a\xa3\xb5\xf3\xde\x76\x0b\x0b\xad\x70\x0c\x99\x50\x5f\x3a\x2e\x17\xa4\x23\xe7\x2b\x44\x59\xce\x45\x76\x03\x42\xad\x2b\x6d\x68\x27\xa1\x76\x39\x82\x4b\x64\xde\x05\xcc\xd1\x51\xbc\xb3\xba\x6c\xb8\x0e\x23\x8a\x9c\xb0\x26\x9d\xd3\x4f\x1b\x6b\xa6\xa5\xce\x44\x39\x5d\xe8\xb4\x35\x87\x1f\x0c\x8a\x9b\x5a\x4b\xc5\x0e\x4b\x7b\xfb\x11\xe7\xcd\x62\x81\x94\x74\xee\x93\x84\x8c\x6c\xc8\x6b\xfe\x22\x56\xe2\x32\x33\xb2\x76\xb1\xf0\x85\x5c\xa3\x25\x76\x63\xd0\x14\x19\xdb\x87\xd3\x50\xea\xdb\x47\x25\xae\xb0\x04\xbc\xc3\xcc\x73\x55\x6b\x2b\xbd\xe5\x4e\xa7\x90\xe9\x86\x7c\xc5\x8e\xc1\x6a\x2a\x67\xb0\x6a\x4a\x2a\x5f\xdc\x12\x2b\x4a\xb3\x06\x33\xae\x03\x17\x2d\x9a\x85\x5b\xfc\x72\x85\x80\x2a\xe0\x62\x0e\xd2\x13\x9b\x89\xb2\x64\x86\x85\xca\xc3\x87\x1d\x8e\xda\xba\xd4\xf2\xb8\xb0\x56\x2e\x14\x51\xe4\x35\x84\x99\x4b\x67\xa8\xcc\xa4\x70\xb8\x40\xe3\x4d\xc7\xb2\x80\x99\xea\x9f\x7d\xd9\x46\x85\x59\x25\x6a\xa6\x41\x7f\xdb\x52\x66\x08\x73\x2c\xf5\x2d\xed\xd4\x87\x50\x07\x02\xd2\x42\x96\x78\x54\x4a\x85\xe9\xe6\x5e\xa5\x72\x1a\x84\x6a\x17\x8a\x93\x51\x08\x91\xb4\x22\x7a\x02\x4e\x7c\x08\xa5\x92\x8e\x2d\xf7\x46\xe9\x5b\x75\xd1\x4a\x81\xea\xff\x4a\xd4\x57\xde\x7f\xaf\x1b\xa9\x5c\xed\xd8\xd1\x23\xdd\x59\x90\x2d\x1c\xc3\xd5\xf5\x1e\x91\xfb\x70\x4f\x6d\x01\x2b\xdc\xe0\x42\x5a\x87\x26\x12\x1c\xd2\xe8\x6b\x51\x61\x08\x08\x63\xa0\x6d\xb4\x1f\xb4\x1d\x62\x7c\x04\x61\x21\xb2\xee\x1b\x5c\x93\xbf\x30\xe0\x3e\xa4\x47\x9c\x72\x9d\x16\x43\x82\x0e\xb1\x22\x1b\x43\xa1\x1b\x95\x13\xe0\xe6\x0e\xae\x6e\x70\x7d\xfd\x5d\x98\xed\xf9\x4a\x9d\xb1\x8f\x14\x84\xf1\x05\x73\x9d\x0c\x06\x4a\x54\x78\x04\x91\xc7\x71\x32\x18\xb0\x94\x79\x6d\xfa\xa2\x15\x8f\x98\xcb\x31\x63\xd7\x19\xa1\x07\x5e\x87\x25\xaa\xe1\xb6\x54\x28\x1e\xef\x90\x94\xa8\x6b\x54\xf9\x03\xe8\x31\x14\xa3\x6d\x15\xf0\x06\xe0\x98\x19\xee\x78\xf7\x65\x2e\x89\x21\xda\x84\xed\x2b\x9d\x55\xeb\xa5\x3a\x49\xa6\xd3\x84\xcd\x36\xfa\xba\x75\x86\x70\x26\x67\x24\xc4\x11\xd5\xf0\x64\x69\xbf\x05\x3f\xfb\x2d\x96\x05\x90\x53\x6c\x23\x42\xd9\x3a\x2b\x65\x06\x39\x12\xd3\xa8\xb2\xf5\x24\x64\x5e\x22\x20\xbd\xc2\xba\x00\x1f\x98\xdc\x0a\xee\x3e\x32\xa5\xa3\xc9\x6b\xbc\x1d\xca\x5e\xe6\xf1\x3b\x99\x0b\x2b\xb3\x13\x43\x96\x91\x51\x8b\x44\x65\xba\x75\x14\x8a\x9c\xe1\x6e\x52\x15\xda\x54\x9c\x8b\x00\xef\x68\x8c\x0a\x6b\xae\x4a\x7e\xb9\xec\x43\x86\x22\xbe\x47\xaf\x2b\xde\x4f\x36\x8d\x2f\x19\x9c\x90\x4d\xd1\x4f\x1c\x78\x49\x06\x48\x3f\x52\xb9\x36\x6a\x51\xdb\xc3\x2b\x0c\xed\x8d\xac\xc9\x4a\x2b\xe9\xfc\xae\xaf\xae\x7b\x0b\x7d\x48\x06\x04\x40\x6d\x34\xfd\xda\x87\x43\x98\xee\xf1\x9f\x1b\xe5\xdc\xde\xb4\x3f\xd5\x12\xff\xd2\x82\xbe\x55\x50\x10\xa9\xbd\x69\xc2\xb6\xb6\x2b\x4b\xc6\x8a\x81\xe4\x18\x52\x06\xe3\xa7\xa3\x09\x05\xa3\x61\x6a\xeb\x52\xba\x74\x0c\xe9\x5f\x55\x37\x46\x61\x24\x1d\x83\xdf\x00\xfd\xbf\xcf\xbb\x18\x75\x36\x25\x8c\xc5\x59\xbb\x53\x5e\x7d\xd4\x8a\x60\xd7\x2c\xec\xbd\xb7\x13\x5f\x7b\x3c\x14\x04\x6f\x83\xd9\xef\xcf\x50\xdc\x28\x69\x90\x09\x4c\x5e\xa2\x5a\x50\xb5\x9a\x0c\x0a\xea\xac\x69\xe2\xe0\x3b\x90\xf0\x3d\x94\xdf\x81\xdc\xdf\x67\x7f\x0d\x94\x5a\x9f\xf1\xdf\x63\xb8\x88\x2c\x31\x65\xcf\xd2\xe4\x4c\xe5\x78\x37\x94\xa3\xd1\xa8\x5f\x83\x7a\x94\x60\x69\x9b\x78\x94\xbd\xf0\xae\xd6\xdc\xa7\x11\x17\x1c\x74\xc5\x0d\x82\x2e\xc0\x21\x9f\x27\x4c\x38\xf7\x71\x77\x9e\x4b\x9b\x35\x96\x0b\x2b\x02\x26\x53\xc5\x3b\x07\x4b\xe7\x6a\x7b\x34\x9d\x7e\xb2\xae\xac\x9b\xb2\x9c\x1e\x1e\x7c\xfb\x6c\x4a\xe1\xc4\x4e\xbf\x7e\x7a\x88\x4f\xbf\xfa\xe6\xf0\xc9\xc1\xd3\xe2\xe0\x49\x96\xcd\xbf\xc1\x83\x27\x58\x3c\xc1\xa2\xc0\x3c\xfb\x3a\x7b\xf6\xcd\x37\xcf\xe6\xcf\x0e\x8a\x7f\x32\xcf\x9e\x3d\x3d\x78\xfa\xd5\xb3\x6f\xbf\x0d\xae\xfc\xf6\xe5\x8f\x6f\xbe\x03\x85\x2b\x34\x21\x69\x48\xdb\xe6\x9f\x3f\x78\x8d\x6d\x89\x87\xfc\x67\x43\x61\x9b\xea\x9a\x4e\xe1\x44\x1a\x3c\xd1\x77\x1c\x4f\x09\x3a\x58\x8e\x24\x89\x9e\x17\x64\x4f\x7f\x4a\x47\x54\x73\x0e\x47\xf0\xfc\x18\x0e\x58\x39\x6c\x6b\x3b\x8c\xf4\x0d\x2e\x7e\xba\xab\x83\x95\xa6\x57\x7f\x3a\xba\xa6\xaa\x6e\x50\x0b\x8a\x53\x47\xc7\xfd\x05\xa2\xb9\xf2\xef\x51\x17\xa0\x7b\x56\x43\x5d\xc6\x09\x07\x62\xfa\x61\x22\x5b\x76\x7d\x38\x0e\xc3\xd1\xa4\x1e\x3d\x8e\xa6\xff\x5e\x4b\x45\xdc\x1f\xf5\xca\x5d\x8a\xe5\xec\xeb\x7d\x8a\xde\x76\x36\xc9\xc0\x23\x78\x1c\x36\xcd\x38\x31\x82\x1c\x6d\xe0\x1c\x6c\x52\xbe\x27\xdb\xf3\xa5\xc2\xd2\xe8\x0a\x61\x0a\xaf\x75\x8e\x93\xf7\x36\x19\xe8\x1a\xd5\x59\x7e\xb7\x25\x83\x52\x58\x77\xd6\x09\x7a\x18\x05\xcd\xca\x88\x28\xc7\xc7\xf0\xe8\x90\xa5\xfe\x29\x31\xd2\x3e\x93\xcf\x48\x71\x97\x04\x0f\x7e\x9f\x04\xb9\x39\xf4\xc3\x06\xeb\x52\x30\xee\xa7\x94\xff\xdb\xbf\xfd\xd5\xee\x09\x07\xbf\x8d\xc6\x90\xfe\xdf\xaa\x20\xfd\x5e\x69\x85\xcf\xd3\x9e\xcc\xa9\x80\xe4\x64\x0d\xc5\x76\xac\xa7\xa9\x58\x5f\x24\x9c\x94\xb7\x25\xd8\xcc\x3d\x6c\x3a\x8e\x32\xdf\x3f\x1c\x7f\xc4\x17\x46\x51\x45\x94\xdf\xa3\x3a\x6a\x6d\x77\x6b\x83\x4a\x14\x6d\xbb\xca\xfd\xf8\x18\xd2\xef\x85\xd2\x54\x65\x37\xf6\xb9\x2f\xe2\xb9\xc0\xd9\x9a\x48\xfa\x5d\x79\x00\xf8\x5f\x68\xaf\x6b\x0f\x38\xbd\xb4\xc4\x3e\x23\x77\x5f\x29\xa9\x4f\xc8\x6b\xb7\x90\x84\x83\x28\xa6\xfd\xaf\x3e\x06\x04\xc3\x9e\x28\x29\xf6\x78\xef\x28\xd4\x43\xd0\x2b\x61\x5b\x82\xdf\x31\xe0\xf3\x10\x87\x0a\x6a\x74\x5b\x94\x0d\xce\xf2\xbb\xfd\x27\xe3\x9d\xe4\xae\xd3\x90\x26\x5a\x5b\x61\x1a\xad\x90\x92\xdd\x4e\xd4\x45\xa2\x58\x16\x76\x66\x1c\x4a\xc3\x9e\x91\xf6\x8a\xc9\xfb\x36\x9d\x86\x16\x82\x0b\x00\xae\x23\x86\x75\x16\xcb\xc8\x8f\x94\xc4\x63\xd0\x37\x30\xd7\xba\x1c\x7d\xa2\xce\xf0\x74\xb7\x2b\x89\x2e\x17\x6f\x57\x32\x87\x5e\xe4\x54\xb8\x7a\x20\x6e\x2a\x0f\xfb\x75\xf2\x01\xb9\x2d\x1b\x58\x21\x4a\x8b\xb1\xec\x3d\xde\x51\xda\x33\x85\xab\x83\xeb\x49\xdc\xfd\x18\x7a\x63\xde\x2b\xdb\xef\x97\xbe\x78\x6f\x2b\xda\xcf\xc1\x8e\xc1\x99\x06\xb7\x24\x68\x5b\x11\x8e\xa1\xce\xe0\x2a\xf6\x27\x54\xd4\xba\xcd\x32\xe4\x41\x11\x47\xc5\x7a\x36\x8a\xb5\x47\x58\x8e\x20\x8d\x50\x0b\x0c\xab\xfb\x70\x9b\x5d\xc9\xeb\x8f\xee\x78\x7b\xb7\x7d\xee\xe3\x2e\xbb\x52\xa4\x27\xea\xed\xbd\xb0\x81\xd9\x61\xe6\xbf\xfa\x9b\xd9\x3b\x69\x99\x31\x68\x9b\x92\x33\xae\x1f\xa3\x8a\x8a\x36\xf0\x8e\x05\xd0\x72\x1f\x89\xb0\x6f\x34\xec\xb9\xc4\xe6\x89\x36\x17\x33\xda\x36\xeb\x97\x28\x4d\xb6\xcb\xab\x8d\xe1\x31\x74\xa9\xe3\x62\xe6\x4d\x1c\x48\x59\x31\x10\x07\x3f\x68\x54\x3b\xe2\xf8\x78\xaf\x68\xd4\x44\x85\x16\xaa\xef\x30\x8d\x9a\x44\xa7\xe9\x79\x0d\x0d\x47\xcf\x19\xfc\xa4\x9c\x59\x1f\xc5\x61\xfe\x0a\x69\x75\x43\x90\x5f\x78\x46\x49\x88\x5c\xf0\x07\x11\x75\xc5\x7e\xd8\x18\x5c\x5d\xf3\x54\x32\xc8\x1a\xc3\x67\x97\xfd\xd2\x7e\x98\xc9\x28\xdd\x11\xbc\xc6\x3b\x2a\x6e\xbc\x7e\x3c\xc1\x31\x54\xda\x60\xe7\x77\xb2\x80\x4c\x4e\x22\xa5\xe7\xc7\xac\xcf\x4c\x4e\xa2\xf7\xf4\x1c\x27\x14\xbc\x7d\xbf\xe1\x66\xb3\x85\xbe\xea\x28\x5d\x27\x83\xee\x63\x7f\xbf\x2b\x5c\xc7\xfd\xe5\xbe\xdf\x5a\x6d\x73\xef\xbd\xad\x5f\xcc\x82\xa6\x82\x05\xf9\xce\xc7\xdf\x42\xd0\x5f\x49\xab\xa9\xdf\xd9\x09\x79\xa5\xf4\x29\xb6\x07\x7c\xb3\xfe\xbd\xc2\xa9\xc6\xbb\xee\x30\x76\xf3\xd8\x31\x6b\xcc\xa9\x36\xba\x71\x52\x21\xa5\x22\x3e\xf6\xba\xe3\x2c\x49\x9e\xbd\x71\xec\xe9\x43\xb5\x3f\xf7\x4c\xc7\xa0\x64\x39\xea\x1d\x29\xbe\x7a\xf1\x97\x8b\x37\xe7\xb3\xcb\x21\x87\x4e\xf6\xf4\x78\x01\x74\x08\x1d\x2b\x36\x5b\x62\xee\x79\x61\xcf\xa8\xc4\x0d\x0e\xb3\xa5\x50\xf1\x62\xea\x7e\xd7\x9a\x16\xdd\x5b\x59\xa1\x6e\xdc\xce\x43\x56\xa2\xcd\x67\x57\x59\xa9\x2d\x0e\xb3\x11\xdc\x8f\xc6\x70\x30\x4a\x06\xdf\x3f\xca\x5a\x1e\x5f\x37\xd5\xec\xe2\xd7\xe1\x47\x99\x7b\xdd\x54\xad\x2c\x86\x6d\xb0\xda\xdd\x38\xff\xd1\x69\x27\xca\x16\xdc\xb6\xb5\x61\xd4\xfe\x2b\xac\x2e\x9d\x70\x7d\xdb\x9f\x4e\xe1\x14\x15\x1a\xbe\xfd\x13\x4e\x5a\x27\x33\x3b\x49\x06\x2f\xca\x52\x67\x9d\x69\x3c\x7d\x02\xd4\x7a\xaf\x1d\x5a\x10\x34\x25\xa8\x0b\x12\x2a\x07\xeb\x64\x59\x82\x54\xd4\x5e\x24\x83\xb7\xc4\x81\xc7\xfd\x38\xda\x10\x57\xa8\x40\x16\x50\x18\xc4\x7c\x94\x0c\x2e\xd7\x16\x60\xf7\x62\x7a\x4e\x1d\x7e\x6c\xe0\xed\xda\x3a\xac\x60\x68\x9b\x8a\xba\xae\xbf\xdc\xdd\x11\x2a\x9f\x79\x8d\x92\xc1\x4b\xad\x6f\x9a\xda\x6e\x92\x51\x4d\x35\x47\x43\xd0\x7c\x9a\x88\x06\x4a\x0f\x96\x0c\x5e\x31\x4b\x1f\x85\xaf\xfc\x74\x32\x38\x31\x88\x76\x9b\xbd\x0e\x8e\x76\x61\x7d\x15\xff\x4a\x48\x15\x37\x4a\x3e\xb3\x44\x51\x6f\xca\xf5\x67\x14\x75\x2b\xdb\x7f\x44\xb2\x84\xd8\xca\xe9\xf7\x48\xc9\xa3\x9c\xe5\xc1\x5b\xb7\x51\xa4\x02\x49\x73\xb6\x16\xca\x06\x58\x45\x2d\xe2\x6e\x58\xa5\xd5\xa3\x16\xde\x83\xbf\xc1\x12\x85\xc5\xfc\x01\xb8\x89\x13\x4e\x73\x93\x7c\x7e\xe9\x11\xbc\x63\xd8\x3e\x7d\xb6\xd8\x9e\x2c\x3b\x09\x68\x0f\xec\xe5\xfa\xb2\x3d\xb6\x2d\xe4\x1d\xe6\x8f\xac\xfc\x5b\x8c\x62\x8d\xc1\x88\xc5\xd7\xaf\x3d\x59\x4f\xa7\x03\xbf\x25\x69\x03\x67\x0d\x71\xa5\xf4\xad\x9f\x24\x71\xb6\x53\xbb\x44\x38\x49\x06\x97\x54\x08\x04\xc1\x6c\xef\x93\xa9\xcd\xd7\xe1\x4c\xa9\x65\x22\x20\x05\x65\x79\xa4\x64\xf0\xea\xb2\x16\xea\x01\xa1\x8a\xc4\xd9\xed\xc4\x06\xb8\x6d\xdc\x99\xc8\x96\xe8\x91\x7b\xb8\x19\x8d\x6e\x22\x33\xa0\xc7\x8e\xc8\x3f\x34\xd9\xcd\xcf\xc2\x2e\x69\xb4\x43\xae\x8d\x2e\x64\x29\xd5\x02\xe6\x4d\x76\x83\xfc\x4e\x61\x09\x4e\xcc\x4b\x4c\x06\xa7\xb3\xce\x23\x3b\x94\xd3\x19\x54\xe8\x44\x2e\x9c\x48\x06\xe7\x6e\x89\x66\x83\x4d\xbe\x99\xa6\xd1\xe8\xa5\x9d\x1f\x04\x2d\x9e\x0a\x33\x17\x54\x72\xe8\xb2\xc4\xec\x81\xba\x28\xa9\x9e\xce\x1e\x06\x02\x85\x77\x2e\xe2\x90\x53\xdd\x92\x5b\x2c\xb9\x08\x81\xdb\x25\x2a\xe8\x7c\xea\xbf\xfe\xe3\x3f\xfd\x11\x87\xa8\x74\x43\xd9\xe8\xa5\xb0\x3b\x69\xa2\xca\xfd\x53\x0d\x5d\x00\xb5\xd4\x7d\xfa\x43\x25\x94\xb6\x98\x69\x95\x5b\xb0\x52\x65\x08\x87\xdf\x3e\xa3\xc0\x7d\x21\x1a\x8b\x1c\xe2\x5e\xdb\x4e\xc0\x3c\xfa\x3a\xca\xeb\xea\xf1\xd7\x4f\xaf\xbb\x85\x32\x69\xb2\xa6\x14\x06\xe6\x4d\x51\x78\x1b\x37\x98\x51\x8e\x3e\x9d\x41\x4d\x98\x90\x37\xc6\x4b\x89\x4a\x08\xeb\xe2\xbc\x70\x70\x35\xa4\xf0\x3f\xdb\x7f\xfc\xf5\xd7\xa3\x7f\x26\xba\x61\xb1\x9f\x54\xfe\x3f\x5d\x2c\x6e\xdc\x26\x03\xa6\x0d\x7d\xd9\x7c\xf5\x98\x74\x3f\xbb\xf8\xf5\xc4\x08\x2f\x8b\xa2\xd4\x22\x10\x2f\xe2\x98\x2e\x60\x76\xf1\xab\x17\x5f\x74\x81\xd3\x19\x65\x7e\xb2\x9e\x48\x92\x0a\xa1\x64\xc0\x97\x36\xed\x2a\x3c\xc6\xa6\x70\x81\xc6\x3b\x71\x2f\x58\x6e\xf9\x2e\x3c\x3d\x24\xef\x7c\xdd\x54\x97\xf2\x6f\x38\x2b\x85\xb5\x3e\x14\x51\x48\x99\xf1\xbd\xe3\x24\x19\xfc\xb0\xa6\x59\xb8\x7a\x7a\x78\xdd\x25\xb5\x01\x8f\xf5\x36\xd5\x86\xfa\xa8\xb3\x36\xa6\xc7\x81\xae\xe3\x7a\x83\x22\x8f\x89\x72\x58\xc1\x5e\xfc\x7b\x14\xd2\xe5\x8e\xf7\x39\x6f\xfb\xa7\x6a\x7c\x4e\x58\x14\x64\x4c\x2b\x2c\xd7\xd0\x28\x59\xd5\x25\x56\xa8\x62\x60\xaf\xc4\x9a\x29\x95\x28\x38\x46\x5a\x59\x92\x8e\x1a\xe5\x5f\xd3\x90\x44\x71\x29\x56\x52\x1b\x3b\x81\x99\x56\x56\xe6\x68\xa0\x16\x4a\x66\xe4\xb0\x78\x57\x97\x32\x93\xae\x5c\x4f\x5a\xa6\x2f\xd1\x9d\x48\x25\x4a\xf9\x37\x34\xc3\xbb\x31\x14\xdd\x63\xa9\x0f\xf7\xff\x5f\x39\xf7\x15\x29\xb1\xdf\xa9\x4e\xf5\x0f\x62\x7a\xed\xad\x3f\xe5\x0e\x27\x32\xba\x16\xff\xde\xb4\xaf\x86\xee\xc9\x3a\x99\x85\x70\x36\x2b\xb1\xcc\xc3\x23\x2f\x52\xfb\x6d\xef\x39\x81\xed\xea\xf9\x77\xbe\xc2\x1d\x41\x68\x1c\xba\x8b\xa4\x58\x85\x1d\x74\x8f\x90\x8a\x08\x4c\xd5\x2f\x15\xbc\xbd\x36\x9c\xfa\x80\xdd\x57\x53\xbe\x0d\x28\x76\x3d\x4f\xa1\x46\x79\xe3\xe0\x79\x12\x0e\xa3\xb8\xbd\x49\x1e\x2e\x4c\x7d\xe3\xe6\x7b\x9b\x1e\xe5\xbf\xff\x1d\x0a\xee\xa2\x7a\xaf\x51\xe2\x4a\xdf\x37\x8a\xaf\x89\x9e\xa7\x9b\xeb\x11\x78\xbb\x4e\xbf\xe5\x83\x5e\x37\x49\x73\xb4\x96\xef\x18\xa5\x72\xbe\x25\x94\x05\xd0\x50\xe8\x6a\x1e\xdc\x64\xc5\xdb\xf0\x4b\x0e\x9e\xb7\xc8\xef\xea\x0a\x71\xd3\xbf\x36\xed\xdd\xb4\x92\x43\x6b\x55\xae\x61\x25\x4a\x99\xc3\xad\x58\x93\xf6\x7c\x42\x06\xad\xd0\x13\x93\x16\xa8\xca\x6f\x16\x4b\x10\xdd\xcd\xaa\x36\x3b\x2e\x56\x27\x70\x56\x50\x93\x2b\x2d\xe8\xc6\xf9\xda\x6f\x93\x45\x4f\x72\xae\x1b\x8a\xf1\xd2\x41\xd5\x58\x4a\x81\x2b\x84\x39\xa2\xea\x8a\x01\xa9\xc0\x6a\x4a\x13\x9c\xd8\x6e\xc5\x3a\xbe\x74\x93\xb6\x67\xf5\x13\x4f\xee\xac\x00\xe1\x8d\x9d\x6f\x9e\xf9\xa6\x5f\xcf\x4b\xac\x84\x93\xd9\x98\xe4\x90\x09\x15\x8d\x4b\xb0\xe2\x58\xc2\xed\xeb\x39\x59\x96\x49\x78\xed\x83\x96\x1b\x50\x67\xb1\x2c\x80\x9f\x10\x2e\xa8\x4c\x97\x19\xa4\x41\x9f\x69\xb7\x5d\x3e\xe8\x55\x32\x1b\xa6\xf1\xfd\xc1\x11\xd4\xd9\x71\x7b\xfd\x29\xeb\x6c\x14\x1f\xd0\x04\x81\xf8\xe6\x5f\x17\xfe\x0e\xf4\xa1\x56\xd2\x8d\x16\x7a\x5b\x7c\x57\xb2\xce\xae\x93\x70\x0d\xff\x0a\xab\x0b\xae\x26\xf0\x8d\x7f\xe8\xe7\xe0\x18\xbe\x3e\x7c\x0c\x7b\x70\x78\xf0\xf8\x49\x17\xa1\x7e\x28\x75\x76\xd3\x03\x1d\x9a\x00\x4f\x06\xd3\x8b\x64\xaf\x1a\x87\x77\x01\x2e\x66\xa2\x1e\x6c\xe8\x81\xda\xe7\x06\x67\x6a\x85\xd6\xc9\x85\xbf\xa6\x97\x96\xb5\x2f\xdd\x97\x96\xd8\xb6\x72\x5e\xf2\xdd\x64\x1b\xca\xc6\x14\x0e\x7c\x60\xca\x35\x59\xa4\xd5\x63\xaf\xdf\x5b\x69\x11\x0c\x56\x7a\x15\x2e\x4a\x32\x5d\x11\x46\xf7\x5a\xe1\xa0\x63\x93\x0f\x88\xe6\x4d\x01\x57\xd7\x54\x0d\x8e\x29\x93\x85\xee\x3f\x30\xf8\x8f\x5d\xc9\xb1\x53\x7d\xf2\x0d\xcb\x46\xbc\xc8\x74\xbd\xa6\xe5\xc7\x60\x37\x8e\x32\xd3\x6e\xa0\x77\x7e\xc9\xf7\x7b\xfe\x74\xf5\xb0\x3b\xdb\xed\x3a\xe5\x97\x3a\xbb\x39\xbf\x7c\xbb\x34\x28\xf2\x7e\x97\xfe\xab\x2a\x1f\xce\xac\xb8\xc0\xe8\x3d\x1c\xea\x5e\x26\x5e\xa2\xa3\x6a\xc0\xbf\xb3\x0a\x34\x02\xd4\x70\xc7\xc5\x6f\x9f\x4a\x5f\xb2\xc6\xbd\x35\x22\xa3\x70\xe7\xaf\x43\xdb\x88\x4c\x2e\x73\x1f\xc1\x74\x1d\xa1\xc2\xcf\x87\xfb\x2e\x83\xc7\x29\xaf\x1d\xbe\xce\xfb\x33\xc7\x20\x04\x01\xd9\x42\x03\xaa\x95\x34\x5a\x91\x7e\xf9\xb9\x84\x70\xd9\x32\xbc\xec\x9d\xc0\xdb\x25\x1a\x2c\xb4\x21\x9f\xe5\xa8\xd0\x37\xa0\x50\x61\xaa\x1c\x44\x79\x2b\xd6\xb6\x4d\x17\x5d\x47\xbf\xd0\xac\x02\x36\x85\xa7\x4f\x7a\x3b\xee\x0c\xe8\x5f\x10\xeb\x17\xa5\x5c\xe1\x70\x33\x53\x87\x57\xa9\xca\xf3\xe2\x55\x05\x06\x43\x44\x08\x2f\xa4\x7b\xaf\x8c\x73\xb4\x99\x91\x73\x5f\x86\x09\xaa\x57\x17\x6d\x2e\x0a\x37\xdc\x7d\x4a\x21\x9b\xb6\x8f\x3b\x7b\x73\x9f\x7c\x04\xba\x01\xf7\xf0\xf1\x67\x4c\x36\x1b\xbc\xf9\xb7\x7b\xe1\xf1\x24\x76\xd6\xc6\x87\x35\x43\x1b\x66\x38\x5b\xf8\xf0\xd5\x5b\x64\x68\x7b\xe6\x49\x05\x39\x91\xdd\x21\xd0\x2d\xff\xfa\x51\x38\x6c\xdd\xcb\xbb\xc1\xc2\x1f\xd3\x78\x07\x78\xfa\x64\x38\x82\x3d\x4f\x65\x78\x78\x70\x70\xf0\xee\xe0\xe0\x80\x16\xfa\xef\x00\x00\x00\xff\xff\x33\xec\x6b\x4b\x58\x2f\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x3a\xed\x76\x1b\xb7\x72\xbf\xb9\x4f\x31\x77\x7b\x9b\x90\x12\x4d\x4a\x8e\x3f\x12\xd9\xf4\xb9\x0e\x13\x29\x4a\x6d\x4b\xc7\x72\x7a\xef\x39\xba\xaa\x03\x62\x67\x49\x58\xbb\xc0\x16\xc0\x52\x62\x7c\xf5\x00\x7d\x90\xbe\x58\x9f\xa4\x67\xf0\xb1\x1f\x14\x6d\x27\x6d\x7f\x54\xe7\xd8\xd2\x02\x33\x83\xc1\x7c\x0f\x80\xe9\x74\xa9\x8e\x16\xb5\x28\x32\xf8\x60\x92\xe9\x14\xf6\x9b\x8f\xa4\x62\xfc\x9a\x2d\x11\x74\x2d\xad\x28\x31\x49\x44\x59\x29\x6d\x61\x98\x0c\xd2\xa5\xb0\xab\x7a\x31\xe1\xaa\x9c\x2e\x55\xb5\x42\xfd\xc1\xb4\x7f\x7c\x30\x69\x32\x4a\x12\xae\xa4\xb1\x70\x72\x76\x76\x01\x33\x48\x69\x30\x8e\xbc\x7c\x3b\xff\x89\xc6\x90\x97\xcc\x70\x2d\x2a\x1b\xe7\xe6\xaa\xac\x44\x81\x9a\x66\x23\xbd\x34\x21\xc6\xde\xad\x10\x7e\xd4\x5a\x69\x10\xd2\xa2\xce\x19\x47\x10\x19\x4a\x2b\x72\x81\x06\x18\xb1\x09\xc4\x27\x20\x41\x4d\x12\xbb\xa9\xee\x63\x7c\x4c\x06\x6e\x3a\x49\x06\xd3\x29\xbc\xf5\x3b\x0b\x40\x44\x44\xaa\x07\xaa\x82\xbc\x96\xdc\x0a\x25\x61\x51\x5b\x07\x68\x50\xaf\xd1\x80\x55\x90\x09\x63\x85\x5c\xd6\xc2\xac\x80\x56\x30\x60\x57\xcc\x02\xd3\xd8\x30\xe0\x30\xdc\x2a\x06\x72\xad\x4a\x50\x3a\x13\x92\xe9\x4d\x18\x3c\x02\xe6\x50\xdd\x8a\x0e\xb8\xcf\x3a\x88\x1c\x84\x85\x15\x23\x86\x7a\x2c\x96\x68\x57\x2a\x9b\x24\x83\xee\xe8\x70\x94\xdc\x79\x09\x9d\xfd\x70\x36\x94\xb8\xbe\x56\xd2\xb2\x6b\x8b\xa3\x23\x38\x95\x60\x57\x08\x75\x65\xac\x46\x56\x8e\xc1\xae\x84\x01\x63\x75\xcd\x2d\x2d\x5f\x22\x93\x96\xb6\xb5\x40\xe0\xaa\xac\x98\x15\x8b\x02\x89\xd8\x8d\xb0\x2b\xd0\x98\x17\xc8\xed\x44\x13\xbb\x63\x92\x06\xac\x50\x23\xdc\x20\xd4\x06\x81\x41\x29\xa4\x28\x59\x01\xc6\xd6\x0b\x2f\x08\xc3\xac\x30\x4e\x23\xb4\xf0\xcb\xf3\x53\xc7\xd9\xa6\xc2\x97\xc6\xa0\x26\xa1\xfa\xad\xe0\x6d\x85\xdc\x9a\x31\xdc\xac\x04\x5f\x11\xc5\x6c\x23\x59\x29\x38\x2b\x8a\x0d\x08\x69\x2c\x93\x56\x30\x8b\x20\x24\xfc\x99\x39\x64\x22\x33\x1c\x05\xcd\xbe\x77\xff\xfb\xad\x7c\xa4\xdf\xf4\x4f\xc8\x25\xdc\x25\x09\xe9\x0f\x86\x16\xf6\x1c\xd0\x28\xcc\x0c\xe3\x1f\x00\x1f\x41\xa3\xad\xb5\x04\x3b\x21\xcc\xbb\x7b\x18\xd5\xf5\xb2\x62\x76\xd5\xa2\x34\x18\x69\x0a\x5e\xdc\x2f\x3f\xb1\xad\x82\x09\x49\x9a\xcb\x99\x28\x30\xf3\x9a\x66\x11\x2a\x30\xbf\x03\x33\x28\xe5\x63\x32\x78\xdf\x9a\x2b\x40\xe0\x28\x19\x70\x25\xb9\x46\xeb\xc6\xda\x51\x4f\x18\xb3\xfe\x68\x29\x8c\x11\x72\xf9\xda\x99\x4b\xdc\xc1\x74\x0a\x4a\x62\xb0\x21\x90\x88\x19\x66\xb0\xd8\xc0\x69\x5c\x6d\x0c\x01\xcf\x5b\xed\x3c\x2c\x98\x34\x02\xdd\xbb\xcf\xf6\x08\xfa\xa6\x08\x1f\x1b\x68\x84\x9d\xf0\x11\x30\xca\x35\x19\xb8\xed\xc2\xd1\x0c\xd2\x66\xe3\x69\x32\x10\x39\xe0\xa4\x23\x8a\x3f\xcd\x40\x8a\x82\xe0\x03\xc2\xac\x37\x3f\x89\x3a\x4e\x06\x77\x24\x16\xa2\x87\x93\x28\x9e\xce\xac\xa3\xdb\x08\x73\xd6\x52\x8d\xfa\x6d\x97\xe4\x4a\xae\x51\x1b\xa1\xe4\x11\xa4\xb0\xef\xc3\x08\xec\x43\x4a\xae\x23\x45\x31\x06\xa9\xac\x9b\x61\xc6\x2d\xcb\xc3\xb2\x91\xfc\xf6\xb2\x7d\xbd\xcc\x66\x64\x4c\xb4\x74\x69\x96\xfd\xfd\x7f\x7e\x69\x1a\xe0\x86\xbe\xfa\x1c\xd0\x22\xdc\x10\x5d\x66\x1c\x5d\x8a\x2d\x95\x56\x6b\x91\x21\x98\x42\x2c\x57\xb6\xd8\x00\x2f\x90\x69\xd4\x21\xd6\x94\x68\x0c\x5b\x22\x01\xf7\x24\x33\x69\x3d\xe0\x4f\x3d\x49\xb6\xe3\x6e\x05\xc7\xfb\xfe\x0c\x52\x18\xfa\x70\xe8\x6c\x27\x13\x79\x8e\x1a\xa5\x85\x90\x44\xcc\x28\x25\xe8\x3b\xc0\xc2\xe0\xef\xc3\x34\x5c\x55\x0d\x5e\xe2\xff\x05\x1d\x95\x66\xe9\xe4\xfd\x65\x95\x79\x31\x39\x7d\x35\x82\x82\xfd\x64\x30\x48\x8f\x1a\x6b\x0f\x1e\x41\x93\x5b\x2a\x6a\x4c\x5f\x48\x61\xfd\x8e\x3f\x98\xf3\x6b\xa7\xac\x0f\x66\x72\x52\xa8\x05\x2b\x26\x27\x68\x87\xe9\x9f\xe3\x46\xd3\x91\x1f\xf8\x52\x86\x1c\x11\xad\x48\xe2\xc2\x91\xf8\x60\xce\x16\x1f\x90\xdb\x73\xab\xd3\x31\xb8\x95\x3c\x2d\x3f\x1c\x29\x57\x56\xa7\xa3\x9d\xe8\xce\xb7\xee\x61\xbb\xd1\x2f\x21\xdb\x95\x56\x37\x5d\x5f\x76\x34\x26\x2e\x38\x48\x56\x78\x0e\x86\x0e\x8a\xd0\x5d\x95\xf0\xaf\x5e\xd2\x70\x5f\x18\x4b\x15\xe6\xd2\xd1\xe4\xa2\xf1\x81\xe9\x14\xd8\x5a\x89\x0c\x32\x64\x19\x70\x95\x21\x60\x21\x4a\x21\x19\xc5\x87\x64\xb0\x66\x1a\x42\x0e\x4c\x06\x08\x33\xf8\xea\x7e\x00\xf9\x78\x97\x0c\xde\x93\xef\x37\xba\x39\x39\x7b\x7b\x76\xf6\xae\x17\x51\x2a\xad\x38\x1a\xb3\x43\x4d\x61\x26\xf5\x1e\x19\xe1\x66\x0e\xee\x17\x99\x61\x2e\x24\x66\xbd\x70\x30\x4d\x9d\xa9\x89\x1c\xd6\x44\x2f\xa0\x78\x6a\x28\xd7\x51\xae\x27\x67\xe7\x3f\xfd\xf8\xf6\xe7\x8b\xf7\x9e\x9d\x74\xf4\x0c\xd6\xe4\x39\x3d\xba\x5f\x7d\x05\xeb\x46\x1e\x34\x1b\xfc\x7f\x3a\x85\x13\x67\x1a\x3f\x5f\x3c\x30\x15\x72\x91\x8b\xb8\x2f\x58\xb3\xa2\x46\xb0\xec\x1a\x0d\x54\x1a\x39\x66\x28\x39\x4e\x5a\x0e\xd7\x1d\x09\x07\xff\xfa\x32\xb3\x7f\x9c\xc7\x5d\xab\xf9\xda\x68\x63\x26\x3f\x60\xce\xea\xc2\x9e\x28\xad\x94\xf5\xde\x76\x03\x4b\x25\x71\x0c\x9c\xc9\xaf\xad\x2b\x17\x84\x25\xe7\xcb\x59\x51\x2c\x18\xbf\x06\x26\x37\xa5\xd2\xb4\x93\x50\xbb\x1c\xc1\x05\x3a\xde\x19\x2c\xd0\x52\xbc\x33\xaa\xa8\x5d\x1d\x46\x14\x5d\xc2\x9a\xb4\x4e\x3f\xad\x8d\x9e\x16\x8a\xb3\x62\xba\x54\x69\x63\x0e\xdf\x6b\x64\xd7\x95\x12\xd2\x39\x2c\xed\xed\x07\x5c\xd4\xcb\x25\x52\xd2\xb9\x4b\x12\x32\xb2\xa1\x5b\xf3\x67\xb6\x66\x17\xae\xfa\x8c\x25\x2e\x64\x0a\x0d\xb1\x1b\x83\x26\xe3\xce\x3e\xac\x82\x42\xdd\x3c\x28\x70\x8d\x05\xe0\x2d\x72\xcf\x55\xa5\x8c\xf0\x96\x3b\x9d\x02\x57\x35\xf9\x8a\x19\x83\x51\x54\xce\x60\x59\x17\x54\xbe\xd8\x15\x96\x94\x66\x35\x72\x57\x07\x2e\x1b\x34\x03\x37\xf8\xf5\x1a\x01\x65\xc0\xc5\x0c\x84\x27\x36\x67\x45\xe1\x18\x66\x32\x0b\x1f\x66\x38\x6a\xea\x52\xe3\xc6\x99\x31\x62\x29\x89\xa2\x5b\x83\xe9\x85\xb0\x9a\xca\x4c\x0a\x87\x4b\xd4\xde\x74\x8c\x13\xb0\xa3\xfa\x57\x5f\xb6\x51\x61\x56\xb2\xca\xd1\xa0\xbf\x4d\x21\x38\xc2\x02\x0b\x75\x43\x3b\xf5\x21\xd4\x02\x83\x34\x17\x05\x1e\x15\x42\x62\xda\xdf\xab\x90\x56\x01\x93\xcd\x42\x71\x32\x0a\x21\x92\x96\x44\x8f\xc1\xb1\x0f\xa1\x54\xd2\x39\xcb\xbd\x96\xea\x46\x9e\x37\x52\x00\x98\x11\x3f\x97\xde\x7f\xaf\x6a\x21\x6d\x65\x9d\xa3\x47\xba\xf3\x20\x5b\x98\xc1\xe5\xd5\x1e\x91\xfb\x78\x47\x1d\x86\x53\xb8\xc6\xa5\x30\x16\x75\x24\x38\xa4\xd1\x37\xac\xc4\x10\x10\xc6\x40\xdb\x68\x3e\x68\x3b\xc4\xf8\x08\xc2\x42\x64\xdd\xd7\xb8\x21\x7f\x71\x80\xfb\x90\x1e\xb9\x94\x6b\x15\x1b\x12\x74\x88\x15\x7c\x0c\xb9\xaa\x65\x46\x80\xfd\x1d\x5c\x5e\xe3\xe6\xea\x59\x98\xed\xf8\x4a\xc5\x9d\x8f\xe4\x84\xf1\x95\xe3\x3a\x19\x0c\x24\x2b\xf1\x08\x22\x8f\xe3\x64\x30\x70\x52\x76\x6b\xd3\x17\xad\x78\xe4\xb8\x1c\x3b\xec\x8a\x13\x7a\xe0\x75\x58\xa0\x1c\x6e\x4b\x85\xe2\xf1\x0e\x49\xb1\xaa\x42\x99\xdd\x83\x1e\x43\x3e\xda\x56\x81\xdb\x00\xcc\x1c\xc3\x2d\xef\xbe\xcc\x25\x31\x44\x9b\x30\x5d\xa5\x3b\xd5\x7a\xa9\x4e\x92\xe9\x34\x71\x66\x1b\x7d\xdd\x58\x4d\x38\x93\x53\x12\xe2\x88\x6a\x78\xb2\xb4\x5f\x83\x9f\xfd\x1a\xcb\x02\xc8\x28\xb6\x11\x21\xbe\xe1\x85\xe0\x90\x21\x31\x8d\x92\x6f\x26\x21\xf3\x12\x01\xe1\x15\xd6\x06\xf8\xc0\xe4\x56\x70\xf7\x91\x29\x1d\x4d\xde\xe0\xcd\x50\x74\x32\x8f\xdf\xc9\x82\x19\xc1\x8f\x35\x59\x06\xa7\x16\x89\xca\x74\x63\x29\x14\x59\xed\xba\x49\x99\x2b\x5d\xba\x5c\x04\x78\x4b\x63\x54\x58\xbb\xaa\xe4\xe7\x8b\x2e\x64\x28\xe2\x3b\xf4\xda\xe2\xfd\xb8\x6f\x7c\xc9\xe0\x98\x6c\x8a\x7e\xe2\xc0\x2b\x32\x40\xfa\x11\xd2\x36\x51\x8b\xda\x1e\xb7\xc2\xd0\x5c\x8b\x8a\xac\xb4\x14\xd6\xef\xfa\xf2\xaa\xb3\xd0\xc7\x64\x40\x00\x30\x03\xf7\x6b\x1f\x0e\x61\xba\xe7\xfe\xec\x95\x73\x7b\xd3\xee\x54\x43\xfc\x6b\x03\xea\x46\x42\x4e\xa4\xf6\xa6\x89\xb3\xb5\x5d\x59\x32\x56\x0c\x24\xc7\x90\x32\x1c\x7e\x3a\x9a\x50\x30\x1a\xa6\xa6\x2a\x84\x4d\xc7\x90\xfe\x5d\xb6\x63\x14\x46\xd2\x31\xf8\x0d\xd0\xff\xfb\x6e\x17\xa3\xd6\xa6\x98\x36\x38\x6f\x76\xea\x56\x1f\x35\x22\xd8\x35\x0b\x7b\x1f\xcc\xc4\xd7\x1e\xf7\x05\xe1\xb6\xe1\xd8\xef\xce\x50\xdc\x28\x68\xd0\x11\x98\xbc\x42\xb9\xa4\x6a\x35\x19\xe4\xd4\x59\xd3\xc4\xc1\x33\x10\xf0\x1c\x8a\x67\x20\xf6\xf7\x9d\xbf\x06\x4a\x8d\xcf\xf8\xef\x31\x9c\x47\x96\x1c\x65\xcf\xd2\xe4\x54\x66\x78\x3b\x14\xa3\xd1\xa8\x5b\x83\x7a\x94\x60\x69\x7d\x3c\xca\x5e\x78\x5b\x29\xd7\xa7\x11\x17\x2e\xe8\xb2\x6b\x04\x95\x83\x45\x77\x9e\x30\x71\xb9\xcf\x75\xe7\x99\x30\xbc\x36\xae\xb0\x22\x60\x32\x55\xbc\xb5\xb0\xb2\xb6\x32\x47\xd3\xe9\x67\xeb\xca\xaa\x2e\x8a\xe9\xe1\xc1\x77\x4f\xa7\x14\x4e\xcc\xf4\xf1\x93\x43\x7c\xf2\xcd\xb7\x87\x8f\x0e\x9e\xe4\x07\x8f\x38\x5f\x7c\x8b\x07\x8f\x30\x7f\x84\x79\x8e\x19\x7f\xcc\x9f\x7e\xfb\xed\xd3\xc5\xd3\x83\xfc\x9f\xf4\xd3\xa7\x4f\x0e\x9e\x7c\xf3\xf4\xbb\xef\x82\x2b\xbf\x7b\xf5\xc3\xdb\x67\x20\x71\x8d\x3a\x24\x0d\x61\x9a\xfc\xf3\x27\xaf\xb1\x2d\xf1\x90\xff\xf4\x14\xd6\x57\xd7\x74\x0a\xc7\x42\xe3\xb1\xba\x75\xf1\x94\xa0\x83\xe5\x08\x92\xe8\x59\x4e\xf6\xf4\x97\x74\x44\x35\xe7\x70\x04\x2f\x66\x70\xe0\x94\xe3\x6c\x6d\x87\x91\xbe\xc5\xe5\x8f\xb7\x55\xb0\xd2\xf4\xf2\x2f\x47\x57\x54\xd5\x0d\x2a\x46\x71\xea\x68\xd6\x5d\x20\x9a\xab\xfb\x3d\x6a\x03\x74\xc7\x6a\xa8\xcb\x38\x76\x81\x98\x7e\x1c\x91\x2d\xbb\x3e\x1c\x87\xe1\x68\x52\x0f\x1e\x46\xd3\xff\xa0\x84\x24\xee\x8f\x3a\xe5\x2e\xc5\x72\xe7\xeb\x5d\x8a\xde\x76\xfa\x64\xe0\x01\x3c\x0c\x9b\x76\x38\x31\x82\x1c\xf5\x70\x0e\xfa\x94\xef\xc8\xf6\x7c\xa9\xb0\xd2\xaa\x44\x98\xc2\x1b\x95\xe1\xe4\x83\x49\x06\xaa\x42\x79\x9a\xdd\x6e\xc9\xa0\x60\xc6\x9e\xb6\x82\x1e\x46\x41\x3b\x65\x44\x94\xd9\x0c\x1e\x1c\x3a\xa9\x7f\x4e\x8c\xb4\xcf\xe4\x0b\x52\xdc\x25\xc1\x83\xdf\x27\x41\xd7\x1c\xfa\x61\x8d\x55\xc1\x1c\xee\xe7\x94\xff\xeb\xbf\xfd\xdd\xec\x31\x0b\xbf\x8e\xc6\x90\xfe\xdf\xaa\x20\x7d\x2e\x95\xc4\x17\x69\x47\xe6\x54\x40\xba\x64\x0d\xf9\x76\xac\xa7\xa9\x58\x5f\x24\x2e\x29\x6f\x4b\xb0\x5e\x78\xd8\x74\x1c\x65\xbe\x7f\x38\xfe\x84\x2f\x8c\xa2\x8a\x28\xbf\x47\x75\x54\xca\xec\xd6\x06\x95\x28\xca\xb4\x95\xfb\x6c\x06\xe9\x73\x26\x15\x55\xd9\xb5\x79\xe1\x8b\x78\x57\xe0\x6c\x4d\x24\xdd\xae\x3c\x00\xfc\x2f\xb4\xd7\xb6\x07\x2e\xbd\x34\xc4\xbe\x20\x77\x5f\x29\xc9\xcf\xc8\x6b\xb7\x90\x98\x85\x28\xa6\xfd\x6f\x3e\x05\x04\xc3\x8e\x28\x29\xf6\x78\xef\xc8\xe5\x7d\xd0\x4b\x66\x1a\x82\xcf\x1c\xe0\x8b\x10\x87\x72\x6a\x74\x1b\x94\x1e\x67\xd9\xed\xfe\xa3\xf1\x4e\x72\x57\x69\x48\x13\x8d\xad\x38\x1a\x8d\x90\x92\xdd\x4e\xd4\x46\xa2\x58\x16\xb6\x66\x1c\x4a\xc3\x8e\x91\x76\x8a\xc9\xbb\x26\x9d\x86\x16\xc2\x15\x00\xae\x8e\x18\x56\x3c\x96\x91\x9f\x28\x89\xc7\xa0\xae\x61\xa1\x54\x31\xfa\x4c\x9d\xe1\xe9\x6e\x57\x12\x6d\x2e\xde\xae\x64\x0e\xbd\xc8\xa9\x70\xf5\x40\xae\xa9\x3c\xec\xd6\xc9\x07\xe4\xb6\xce\xc0\x72\x56\x18\x8c\x65\xef\x6c\x47\x69\xef\x28\x5c\x1e\x5c\x4d\xe2\xee\xc7\xd0\x19\xf3\x5e\xd9\x7c\xbf\xf2\xc5\x7b\x53\xd1\x7e\x09\x76\x0c\x56\xd7\xb8\x25\x41\xd3\x88\x70\x0c\x15\x87\xcb\xd8\x9f\x50\x51\x6b\xfb\x65\xc8\xbd\x22\x8e\x8a\x75\x3e\x8a\xb5\x47\x58\x8e\x20\x35\x93\x4b\x0c\xab\xfb\x70\xcb\x2f\xc5\xd5\x27\x77\xbc\xbd\xdb\x2e\xf7\x71\x97\x6d\x29\xd2\x11\xf5\xf6\x5e\x9c\x81\x99\x21\xf7\x5f\xdd\xcd\xec\x1d\x37\xcc\x68\x34\x75\xe1\x32\xae\x1f\xa3\x8a\x8a\x36\xf0\xde\x09\xa0\xe1\x3e\x12\x71\xbe\x51\x3b\xcf\x25\x36\x8f\x95\x3e\x9f\xd3\xb6\x9d\x7e\x89\xd2\x64\xbb\xbc\xea\x0d\x8f\xa1\x4d\x1d\xe7\x73\x6f\xe2\x40\xca\x8a\x81\x38\xf8\x41\x2d\x9b\x11\xeb\x8e\xf7\xf2\x5a\x4e\x64\x68\xa1\xba\x0e\x53\xcb\x49\x74\x9a\x8e\xd7\xd0\x70\xf4\x9c\xc1\x8f\xd2\xea\xcd\x51\x1c\x76\x5f\x21\xad\xf6\x04\xf9\x95\x67\x94\x84\xe8\x0a\xfe\x20\xa2\xb6\xd8\x0f\x1b\x83\xcb\x2b\x37\x95\x0c\x78\xad\xdd\xd9\x65\xb7\xb4\x1f\x72\x11\xa5\x3b\x82\x37\x78\x4b\xc5\x8d\xd7\x8f\x27\x38\x86\x52\x69\x6c\xfd\x4e\xe4\xc0\xc5\x24\x52\x7a\x31\x73\xfa\xe4\x62\x12\xbd\xa7\xe3\x38\xa1\xe0\xed\xfa\x8d\x6b\x36\x1b\xe8\xcb\x96\xd2\x55\x32\x68\x3f\xf6\xf7\xdb\xc2\x75\xdc\x5d\xee\xf9\xd6\x6a\xfd\xbd\x77\xb6\x7e\x3e\x0f\x9a\x0a\x16\xe4\x3b\x1f\x7f\x0b\x41\x7f\x25\x8d\xa6\x7e\x67\x27\xe4\x95\xd2\xa5\xd8\x1c\xf0\xcd\xbb\xf7\x0a\x27\x0a\x6f\xdb\xc3\xd8\xfe\xb1\x23\xaf\xf5\x89\xd2\xaa\xb6\x42\x22\xa5\x22\x77\xec\x75\xeb\xb2\x24\x79\x76\xef\xd8\xd3\x87\x6a\x7f\xee\x99\x8e\x41\x8a\x62\xd4\x39\x52\x7c\xfd\xf2\x6f\xe7\x6f\xcf\xe6\x17\x43\x17\x3a\x9d\xa7\xc7\x0b\xa0\x43\x68\x59\x31\x7c\x85\x99\xe7\xc5\x79\x46\xc9\xae\x71\xc8\x57\x4c\xc6\x8b\xa9\xbb\x5d\x6b\x1a\xb4\xef\x44\x89\xaa\xb6\x3b\x0f\x59\x89\xb6\x3b\xbb\xe2\x85\x32\x38\xe4\x23\xb8\x1b\x8d\xe1\x60\x94\x0c\x9e\x3f\xe0\x0d\x8f\x6f\xea\x72\x7e\xfe\xcb\xf0\x93\xcc\xbd\xa9\xcb\x46\x16\xc3\x26\x58\xed\x6e\x9c\xff\x6c\x95\x65\x45\x03\x6e\x9a\xda\x30\x6a\xff\x35\x96\x17\x96\xd9\xae\xed\x4f\xa7\x70\x82\x12\xb5\xbb\xfd\x63\x56\x18\x2b\xb8\x99\x24\x83\x97\x45\xa1\x78\x6b\x1a\x4f\x1e\x01\xb5\xde\x1b\x8b\x06\x18\x4d\x31\xea\x82\x98\xcc\xc0\x58\x51\x14\x20\x24\xb5\x17\xc9\xe0\x1d\x71\xe0\x71\x3f\x8d\x36\xc4\x35\x4a\x10\x39\xe4\x1a\x31\x1b\x25\x83\x8b\x8d\x01\xd8\xbd\x98\x5a\x50\x87\x1f\x1b\x78\xb3\x31\x16\x4b\x18\x9a\xba\xa4\xae\xeb\x6f\xb7\xb7\x84\xea\xce\xbc\x46\xc9\xe0\x95\x52\xd7\x75\x65\xfa\x64\x64\x5d\x2e\x50\x13\xb4\x3b\x4d\x44\x0d\x85\x07\x4b\x06\xaf\x1d\x4b\x9f\x84\x2f\xfd\x74\x32\x38\xd6\x88\x66\x9b\xbd\x16\x8e\x76\x61\x7c\x15\xff\x9a\x09\x19\x37\x4a\x3e\xb3\x42\x56\xf5\xe5\xfa\x13\xb2\xaa\x91\xed\x1f\x91\x2c\x21\x36\x72\xfa\x3d\x52\xf2\x28\xa7\x59\xf0\xd6\x6d\x14\x21\x41\xd0\x9c\xa9\x98\x34\x01\x56\x52\x8b\xb8\x1b\x56\x2a\xf9\xa0\x81\xf7\xe0\x6f\xb1\x40\x66\x30\xbb\x07\xae\xe3\x84\x55\xae\x49\x3e\xbb\xf0\x08\xde\x31\x4c\x97\xbe\xb3\xd8\x8e\x2c\x5b\x09\x28\x0f\xec\xe5\xfa\xaa\x39\xb6\xcd\xc5\x2d\x66\x0f\x8c\xf8\x2d\x46\xb1\x5a\x63\xc4\x72\xd7\xaf\x1d\x59\x4f\xa7\x03\xbf\x25\x61\x02\x67\x35\x71\x25\xd5\x8d\x9f\x24\x71\x36\x53\xbb\x44\x38\x49\x06\x17\x54\x08\x04\xc1\x6c\xef\xd3\x51\x5b\x6c\xc2\x99\x52\xc3\x44\x40\x0a\xca\xf2\x48\xc9\xe0\xf5\x45\xc5\xe4\x3d\x42\x25\x89\xb3\xdd\x89\x09\x70\xdb\xb8\x73\xc6\x57\xe8\x91\x3b\xb8\x9c\x46\xfb\xc8\x0e\xd0\x63\x47\xe4\xef\x6b\x7e\xfd\x13\x33\x2b\x1a\x6d\x91\x2b\xad\x72\x51\x08\xb9\x84\x45\xcd\xaf\xd1\xbd\x53\x58\x81\x65\x8b\x02\x93\xc1\xc9\xbc\xf5\xc8\x16\xe5\x64\x0e\x25\x5a\x96\x31\xcb\x92\xc1\x99\x5d\xa1\xee\xb1\xe9\x6e\xa6\x69\x34\x7a\x69\xeb\x07\x41\x8b\x27\x4c\x2f\x18\x95\x1c\xaa\x28\x90\xdf\x53\x17\x25\xd5\x93\xf9\xfd\x40\x20\xf1\xd6\x46\x1c\x72\xaa\x1b\x72\x8b\x95\x2b\x42\xe0\x66\x85\x12\x5a\x9f\xfa\xaf\xff\xf8\x4f\x7f\xc4\xc1\x4a\x55\x53\x36\x7a\xc5\xcc\x4e\x9a\x28\x33\xff\x54\x43\xe5\x40\x2d\x75\x97\xfe\x50\x32\xa9\x0c\x72\x25\x33\x03\x46\x48\x8e\x70\xf8\xdd\x53\x0a\xdc\xe7\xac\x36\xe8\x42\xdc\x1b\xd3\x0a\xd8\x8d\xbe\x89\xf2\xba\x7c\xf8\xf8\xc9\x55\xbb\x10\x17\x9a\xd7\x05\xd3\xb0\xa8\xf3\xdc\xdb\xb8\x46\x4e\x39\xfa\x64\x0e\x15\x61\x42\x56\x6b\x2f\x25\x2a\x21\x8c\x8d\xf3\xcc\xc2\xe5\x90\xc2\xff\x7c\xff\xe1\xe3\xc7\xa3\x7f\x26\xba\x61\xb1\x1f\x65\xf6\x3f\x5d\x2c\x6e\xdc\x24\x03\x47\x1b\xba\xb2\xf9\xe6\x21\xe9\x7e\x7e\xfe\xcb\xb1\x66\x5e\x16\x79\xa1\x58\x20\x9e\xc7\x31\x95\xc3\xfc\xfc\x17\x2f\xbe\xe8\x02\x27\x73\xca\xfc\x64\x3d\x91\x24\x15\x42\xc9\xc0\x5d\xda\x34\xab\xb8\x31\x67\x0a\xe7\xa8\xbd\x13\x77\x82\xe5\x96\xef\xc2\x93\x43\xf2\xce\x37\x75\x79\x21\x7e\xc3\x79\xc1\x8c\xf1\xa1\x88\x42\xca\xdc\xdd\x3b\x4e\x92\xc1\xf7\x1b\x9a\x85\xcb\x27\x87\x57\x6d\x52\x1b\xb8\xb1\xce\xa6\x9a\x50\x1f\x75\xd6\xc4\xf4\x38\xd0\x76\x5c\x6f\x91\x65\x31\x51\x0e\x4b\xd8\x8b\x7f\x8f\x42\xba\xdc\xf1\x3e\xe7\x5d\xf7\x54\xcd\x9d\x13\xe6\x39\x19\xd3\x1a\x8b\x0d\xd4\x52\x94\x55\x81\x25\xca\x18\xd8\x4b\xb6\x71\x94\x0a\x64\x2e\x46\x1a\x51\x90\x8e\x6a\xe9\x5f\xd3\x90\x44\x71\xc5\xd6\x42\x69\x33\x81\xb9\x92\x46\x64\xa8\xa1\x62\x52\x70\x72\x58\xbc\xad\x0a\xc1\x85\x2d\x36\x93\x86\xe9\x0b\xb4\xc7\x42\xb2\x42\xfc\x86\x7a\x78\x3b\x86\xbc\x7d\x2c\xf5\xf1\xee\xff\x2b\xe7\xbe\x22\x25\xf6\x5b\xd5\xc9\xee\x41\x4c\xa7\xbd\xf5\xa7\xdc\xe1\x44\x46\x55\xec\xdf\xeb\xe6\xd5\xd0\x1d\x59\xa7\x63\x21\x9c\xcd\x0a\x2c\xb2\xf0\xc8\x8b\xd4\x7e\xd3\x79\x4e\x60\xda\x7a\xfe\xbd\xaf\x70\x47\x10\x1a\x87\xf6\x22\x29\x56\x61\x07\xed\x23\xa4\x3c\x02\x53\xf5\x4b\x05\x6f\xa7\x0d\xa7\x3e\x60\xf7\xd5\x94\x6f\x03\xf2\x5d\xcf\x53\xa8\x51\xee\x1d\x3c\x4f\xc2\x61\x94\x6b\x6f\x92\xfb\x0b\x53\xdf\xd8\x7f\x6f\xd3\xa1\xfc\x8f\x7f\x40\xee\xba\xa8\xce\x6b\x94\xb8\xd2\xf3\x5a\xba\x6b\xa2\x17\x69\x7f\x3d\x02\x6f\xd6\xe9\xb6\x7c\xd0\xe9\x26\x69\x8e\xd6\xf2\x1d\xa3\x90\xd6\xb7\x84\x22\x07\x1a\x0a\x5d\xcd\xbd\x9b\xac\x78\x1b\x7e\xe1\x82\xe7\x0d\xba\x77\x75\x39\xbb\xee\x5e\x9b\x76\x6e\x5a\xc9\xa1\x95\x2c\x36\xb0\x66\x85\xc8\xe0\x86\x6d\x48\x7b\x3e\x21\x83\x92\xe8\x89\x09\x03\x54\xe5\xd7\xcb\x15\xb0\xf6\x66\x55\xe9\x1d\x17\xab\x13\x38\xcd\xa9\xc9\x15\x06\x54\x6d\x7d\xed\xd7\x67\xd1\x93\x5c\xa8\x9a\x62\xbc\xb0\x50\xd6\x86\x52\xe0\x1a\x61\x81\x28\xdb\x62\x40\x48\x30\x8a\xd2\x84\x4b\x6c\x37\x6c\x13\x5f\xba\x09\xd3\xb1\xfa\x89\x27\x77\x9a\x03\xf3\xc6\xee\x6e\x9e\xdd\x4d\xbf\x5a\x14\x58\x32\x2b\xf8\x98\xe4\xc0\x99\x8c\xc6\xc5\x9c\xe2\x9c\x84\x9b\xd7\x73\xa2\x28\x92\xf0\xda\x07\x8d\x6b\x40\xad\xc1\x22\x07\xf7\x84\x70\x49\x65\xba\xe0\x90\x06\x7d\xa6\xed\x76\xdd\x41\xaf\x14\x7c\x98\xc6\xf7\x07\x47\x50\xf1\x59\x73\xfd\x29\x2a\x3e\x8a\x0f\x68\x82\x40\x7c\xf3\xaf\x72\x7f\x07\x7a\x5f\x2b\x69\xaf\x85\xde\x16\xdf\xa5\xa8\xf8\x55\x12\xae\xe1\x5f\x63\x79\xee\xaa\x09\x7c\xeb\x1f\xfa\x59\x98\xc1\xe3\xc3\x87\xb0\x07\x87\x07\x0f\x1f\xb5\x11\xea\xfb\x42\xf1\xeb\x0e\xe8\x50\x07\x78\x32\x98\x4e\x24\x7b\x5d\x5b\xbc\x0d\x70\x31\x13\x75\x60\x43\x0f\xd4\x3c\x37\x38\x95\x6b\x34\x56\x2c\xfd\x35\xbd\x30\x4e\xfb\xc2\x7e\x6d\x88\x6d\x23\x16\x85\xbb\x9b\x6c\x42\xd9\x98\xc2\x81\x0f\x4c\x99\x22\x8b\x34\x6a\xec\xf5\x7b\x23\x0c\x82\xc6\x52\xad\xc3\x45\x09\x57\x25\x61\xb4\xaf\x15\x0e\x5a\x36\xdd\x01\xd1\xa2\xce\xe1\xf2\x8a\xaa\xc1\x31\x65\xb2\xd0\xfd\x07\x06\xff\xd8\x95\x9c\x73\xaa\xcf\xbe\x61\xe9\xc5\x0b\xae\xaa\x0d\x2d\x3f\x06\xd3\x3b\xca\x4c\xdb\x81\xce\xf9\xa5\xbb\xdf\xf3\xa7\xab\x87\xed\xd9\x6e\xdb\x29\xbf\x52\xfc\xfa\xec\xe2\xdd\x4a\x23\xcb\xba\x5d\xfa\x2f\xb2\xb8\x3f\xb3\x76\x05\x46\xe7\xe1\x50\xfb\x32\xf1\x02\x2d\x55\x03\xfe\x9d\x55\xa0\x11\xa0\x86\x3b\x2e\x7e\xbb\x54\xba\x92\xd5\xf6\x9d\x66\x9c\xc2\x9d\xbf\x0e\x6d\x22\x32\xb9\xcc\x5d\x04\x53\x55\x84\x0a\x3f\x1f\xef\xda\x0c\x1e\xa7\xbc\x76\xdc\x75\xde\x5f\x5d\x0c\x42\x60\xc0\x97\x0a\x50\xae\x85\x56\x92\xf4\xeb\x9e\x4b\x30\xcb\x57\xe1\x65\xef\x04\xde\xad\x50\x63\xae\x34\xf9\xac\x8b\x0a\x5d\x03\x0a\x15\xa6\xcc\x80\x15\x37\x6c\x63\x9a\x74\xd1\x76\xf4\x4b\xe5\x54\xe0\x4c\xe1\xc9\xa3\xce\x8e\x5b\x03\xfa\x17\xc4\xea\x65\x21\xd6\x38\xec\x67\xea\xf0\x2a\x55\x7a\x5e\xbc\xaa\x40\x63\x88\x08\xe1\x85\x74\xe7\x95\x71\x86\x86\x6b\xb1\xf0\x65\x18\xa3\x7a\x75\xd9\xe4\xa2\x70\xc3\xdd\xa5\x14\xb2\x69\xf3\xb8\xb3\x33\xf7\xd9\x47\xa0\x3d\xb8\xfb\x8f\x3f\x63\xb2\xe9\xf1\xe6\xdf\xee\x85\xc7\x93\xd8\x5a\x9b\x3b\xac\x19\x9a\x30\xe3\xb2\x85\x0f\x5f\x9d\x45\x86\xa6\x63\x9e\x54\x90\x13\xd9\x1d\x02\xdd\xf2\xaf\x1f\x98\xc5\xc6\xbd\xbc\x1b\x2c\xfd\x31\x8d\x77\x80\x27\x8f\x86\x23\xd8\xf3\x54\x86\x87\x07\x07\x07\xef\x0f\x0e\x0e\x68\xa1\xff\x0e\x00\x00\xff\xff\x33\x73\xd1\x30\x42\x2f\x00\x00"), }, "/src/strconv": &vfsgen۰DirInfo{ name: "strconv", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248230202, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/strconv/atoi.go": &vfsgen۰CompressedFileInfo{ name: "atoi.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248199202, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 1090, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x53\x41\x6b\xe3\x38\x18\x3d\x5b\xbf\xe2\x55\x87\xc6\x26\x6e\xec\xb4\xcb\xc2\xb6\x49\x61\xbb\x6c\x4b\x2f\xcb\xc2\x40\x2f\xc3\x1c\x14\xfb\x4b\xa2\x54\x91\x82\x3e\x39\x4d\x98\xf6\xbf\x0f\x92\x93\x4c\x29\xc3\x30\x73\x30\x96\xf4\x9e\xde\xf7\xf4\xa4\xaf\xaa\x16\xee\x7a\xd6\x69\xd3\x62\xc5\xa2\xaa\x30\x3c\x4d\xc4\x46\x35\xcf\x6a\x41\xe0\xe0\x1b\x67\xb7\x42\xe8\xf5\xc6\xf9\x80\x5c\x64\x72\xa1\xc3\xb2\x9b\x8d\x1a\xb7\xae\x16\x6e\xb3\x24\xbf\xe2\xef\x83\x15\x4b\x51\x08\xd1\x38\xcb\x89\xbd\x56\xbb\x47\x1b\xae\x2e\x31\x37\x4e\x85\x3f\xff\xc0\x14\xe3\xc9\xe4\x6a\x8c\x0b\x8c\x45\xb6\xd6\xf6\x23\x7a\x31\xc6\x64\x82\xab\x71\x54\xa9\x2a\xfc\x1d\x9c\x86\xa7\xd0\x79\xcb\x08\x4b\x82\x27\xee\x4c\x80\x9b\xe3\x7f\xe5\x99\x1e\x6d\xc8\xb9\xc4\xb8\x2e\x51\x17\x88\x5e\xc9\x07\x6a\x11\x1c\xc2\x7e\x43\xd0\x36\x8c\xc4\xbc\xb3\x4d\x52\xca\x39\x9e\x48\xdb\x45\x81\x5c\xdb\x50\x82\xbc\x77\xbe\xc0\x57\x91\xf5\x8e\xe7\x36\x15\x9c\x42\xc6\xbf\x14\x99\x9e\xc3\x90\xcd\xb9\xc0\x74\x8a\x3a\x12\xb3\xde\x0d\xea\x12\xbc\xb7\x41\xed\xfe\x8d\x1a\x79\xbf\xb3\x04\x17\x22\x7b\x13\x59\x55\xe1\xd1\x6e\x89\x83\x5e\xa8\x40\xc9\xf9\x6c\x1f\x88\xa3\xf1\x38\xe9\x6d\x24\xde\x93\x32\xba\x8d\x24\x52\xcd\x32\xb1\xa0\x19\xca\x18\xf7\x42\x2d\xb4\xc5\x46\x79\x3e\x92\xff\xeb\xd6\x33\xf2\x3d\xca\x60\xb7\x26\x6c\x3c\xcd\xf5\x8e\x62\x3c\x2a\xe0\xc1\xa1\x75\xc4\xb0\x2e\x5c\x43\xd6\x3b\x09\x59\xcf\x64\x09\x59\x3b\x99\x14\x54\xdb\xea\xa0\x9d\x55\xc6\xec\x4f\x72\x4d\x43\x9b\xc0\x68\xa9\xd1\x6b\x65\x18\x2f\x4b\xf2\xf4\x5e\x0b\x72\x5c\x8f\x2e\xa5\xc8\xe6\xce\x43\xe3\x7a\x8a\xfa\x06\x1a\x93\x43\x3a\x37\xd0\xc3\x61\x4a\x67\x1b\x31\xfe\xac\xbf\x08\x91\xc5\xf4\xb6\x98\x60\x50\x0f\xf0\xfa\x8a\x2d\x6e\x31\xf8\x6b\x90\x68\x3d\x74\x36\xc5\x60\x38\xc0\xf9\xf9\x61\x7c\x71\x00\x7f\x21\xe3\x2c\xa6\x1c\xbf\x37\x91\xad\xf8\x49\x99\x8e\x62\xe5\x15\x8f\x1e\x8c\x9b\x29\x33\xfa\x47\x19\x93\xcb\xfe\x80\xb2\x44\x7a\x24\x45\xba\xd0\xb3\x8f\x24\xcd\xf7\xda\xea\x40\xb2\xc4\x41\xaa\x18\xdd\x39\x67\xf2\xe2\xb7\x2e\xfc\xce\x75\xb6\x65\x34\x4b\x6a\x9e\xd3\x7d\xa5\x57\xbd\x55\xa6\x37\x96\x84\x47\xf7\x71\x2d\xef\x8d\x9c\xf0\x5b\x9c\xfa\xe4\x5d\x41\x6d\x43\x7e\x5c\x2f\x4a\x78\x65\x17\xf4\x83\xda\x20\xc3\x84\xf7\x72\x13\x9c\x1a\xeb\xa3\xdc\x61\xfd\x27\x72\xe9\x28\x9f\xba\xa6\x21\xe6\x33\x71\xdc\x7c\xb4\x1f\xfb\xad\x28\x61\xb5\x11\x6f\xe2\x5b\x00\x00\x00\xff\xff\xea\x3d\xd1\x24\x42\x04\x00\x00"), }, "/src/strconv/itoa.go": &vfsgen۰CompressedFileInfo{ name: "itoa.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248260451, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 275, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x44\x8e\xb1\x4e\x33\x31\x0c\x80\xe7\xfa\x29\xac\x9b\x2e\xfa\xa5\x44\xfa\xd9\x58\x99\x3a\x31\xf0\x04\xbe\x34\xcd\x39\xa4\xce\x29\x76\x8a\x2a\xc4\xbb\xa3\x03\x0a\xdb\x67\xd9\xfa\x3e\x87\x90\xdb\xe3\x32\xb8\x9e\xb0\x28\x84\x80\xff\x7e\x07\xd8\x28\xbe\x52\x4e\xa8\xd6\x63\x93\x2b\x00\x5f\xb6\xd6\x0d\x67\x38\x4c\x99\x6d\x1d\x8b\x8f\xed\x12\x72\xdb\xd6\xd4\x8b\xfe\x41\xd1\x09\x1c\xec\xb6\xa3\x35\x42\x16\xbc\xaf\x90\x15\xa9\xbe\xd1\x4d\x91\xf0\xe1\xff\xc2\x86\x2c\x86\xda\xd0\xd6\x84\x42\xc6\xd7\x84\xd6\x5e\xac\xb3\xe4\x5d\xf0\x73\xbc\x92\x9c\x6a\x52\x64\x43\x1d\x31\x26\xd5\xf3\xa8\xf5\xe6\xe1\x3c\x24\x7e\x55\x66\xde\x4d\x6e\x7f\x96\x25\xe3\x3b\x1c\x7a\xb2\xd1\x05\x8b\xfa\xa3\x58\xea\x42\xf5\x79\x29\x29\xda\xcc\xce\x3f\x51\xad\xf3\x74\x0f\x4d\xce\x7f\xc3\xec\xe0\x03\x3e\x03\x00\x00\xff\xff\x20\x64\xe2\xa8\x13\x01\x00\x00"), }, "/src/strings": &vfsgen۰DirInfo{ name: "strings", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248424242, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), }, "/src/strings/strings.go": &vfsgen۰CompressedFileInfo{ name: "strings.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248362243, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 1773, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xa4\x94\xd1\x6f\xe3\x44\x10\xc6\x9f\xbd\x7f\xc5\x60\x1e\xce\xa6\xa9\x9d\xb4\x4d\x49\x83\x82\x74\x0d\x52\x29\x42\xea\xe9\x0a\xe2\xe1\x74\x0f\xeb\xf5\x38\x9e\x64\xbd\x6b\xed\xac\xdb\x0b\xa8\xff\x3b\x5a\x3b\x6e\x73\xe5\x10\x02\xf2\x64\xc7\xb3\xbf\xf9\xe6\xf3\x37\xce\xf3\x8d\x5d\x16\x1d\xe9\x12\xb6\x2c\xf2\x1c\x4e\x9e\x6f\x44\x2b\xd5\x4e\x6e\x10\xd8\x3b\x32\x1b\x16\x82\x9a\xd6\x3a\x0f\x89\x88\xe2\xce\x90\xb2\x25\xe6\x9d\xaf\x16\xb1\x10\x51\xbc\x21\x5f\x77\x45\xa6\x6c\x93\x6f\x6c\x5b\xa3\xdb\xf2\xcb\xc5\x96\x63\x91\x0a\x51\x75\x46\xc1\xad\x29\xf1\xd3\xf5\xde\x63\xc2\x07\xf2\x04\x14\x14\x7b\x8f\x29\x90\xf1\xf0\x87\x88\x1c\xfa\xce\x19\xd8\x72\x76\x6b\x3c\x3a\x23\xf5\x5d\xb1\x45\xe5\x13\x4e\xb3\xb5\xd4\x3a\x89\x29\x40\xee\xaa\x78\x12\x8a\x6e\xb4\x2d\xa4\xce\x6e\xd0\x27\xf1\x7d\x4f\x8c\xc7\xba\xca\xd9\x66\x5d\x4b\xb7\xb6\x25\xc6\x13\x50\x69\x1a\x90\x49\x2a\x9e\x8e\xd5\x24\x3c\x01\xc6\xf6\x20\xe7\xbf\xca\x78\x5d\x84\xed\x5f\xba\xfd\x2c\xd9\xff\xbf\x8e\x7a\x24\xfc\x8b\xae\x6b\xdb\x19\xff\x37\x1d\x0d\x2c\x57\x30\x15\x51\x9e\x03\xb7\xa8\x48\x6a\x50\x92\x91\x45\xc4\x8f\xe4\x55\x1d\x6a\xc2\x1f\xa0\xd1\xf4\x70\x58\xad\x60\xba\x14\xd1\xa8\x35\x04\x20\x7b\xdf\x19\xec\xbb\xdc\x9a\xe1\x05\x24\x9c\xc2\x09\xcc\x5e\x9f\xfd\x7e\xb8\x4c\x8f\xce\x4f\xbf\xc0\x7f\x29\xa2\xaa\x17\xbd\x5a\x01\x07\x25\xcf\xa7\x66\x22\x8a\x9e\x3e\x83\x3c\x09\x11\x55\xd6\xf5\x55\xad\xe5\x30\xd6\xb1\xd3\xe9\x00\x0b\x4f\x56\x2b\x38\x9d\x0d\xb4\xc2\xa1\xdc\x1d\x50\xe6\xe4\x44\x44\x11\xc3\x0a\xf8\x43\x6b\xf9\x64\x14\xb4\xfc\x18\xe0\x63\x27\xf3\xec\x6a\x52\xc0\x37\xd7\x61\x57\xd0\xa5\x70\x98\x3a\x3d\xd8\x1b\xe8\x79\x0e\xbf\xb6\xec\x1d\xca\x06\x0e\x75\xd9\x50\x06\x0e\x35\x21\x83\x35\x30\xae\x58\x67\x58\x56\x98\xc1\x6f\x08\x4a\x9a\x37\x1e\x4a\x0b\xbe\x96\x3e\xeb\x39\xbf\xdc\xfd\x70\xb7\x84\x5b\xff\x86\xc3\x00\x4c\x85\xc6\xfe\x29\xf8\x1a\x01\x8d\x27\xf7\xbc\xa4\xd9\xa1\x15\xbc\x7d\x77\x1b\x50\x50\x20\x50\xd3\x6a\x6c\xd0\x78\x2c\x7b\xdc\xf0\x6b\xac\x43\xc0\xaa\x22\x45\x68\xbc\xde\x43\x70\xef\xe6\xee\xed\xfb\xf5\x8f\xab\x2d\x0f\x69\xa8\x48\x49\xad\xf7\x90\xc8\x07\x4b\x25\x74\x1c\xd4\x7f\xf8\x18\x96\x75\x02\x64\xd8\xa3\x3c\x46\x76\x8c\x20\x0f\x5e\x40\x49\x0e\x95\xd7\xfb\xef\xc0\x3a\x60\xdb\x20\xfc\x24\x1f\xe4\xbd\x72\xd4\xfa\xd1\xa6\xe2\x48\x2c\x55\x60\x0d\x02\x7e\x22\xf6\x9c\x66\x47\xd8\xeb\x2e\x4c\x4a\x0c\xc4\x83\xea\x47\xeb\x76\x13\x28\xb1\x42\x07\xa5\x0d\x20\xf2\xd0\x19\x4f\x3a\x38\xe2\xf0\x0d\x83\x04\x83\x58\x02\xd7\xf6\xd1\xc0\x03\x49\x68\x9d\xad\x48\x87\xaf\xcd\x11\x59\x9a\x72\x38\x01\xd2\x21\x14\x68\x54\xdd\x48\xb7\x63\x90\x0f\x92\xb4\x0c\x3e\x27\x8c\x08\xb5\xf7\x2d\x2f\xf3\xfc\xb3\x8f\x9c\x96\x66\x93\x6f\x6c\x4e\xcc\x1d\x72\x3e\x5b\x5c\x5d\x4d\xbf\xee\x6f\x94\x6d\x82\xdd\xa7\xe7\xf3\xb3\xe9\xe5\x62\x7e\x7e\x1e\xc6\x39\x04\x68\x98\x3c\x29\xb2\xa2\xab\xd2\x2f\x87\x49\xd9\x76\xbf\xae\x51\xed\x92\x34\x04\x89\x2a\x28\x32\x59\x96\x2e\x24\xd7\x90\xee\xa3\x7b\x9c\xae\xe7\xfa\xf0\x02\x18\x8c\x45\x56\xb2\xc5\x09\x3c\xd6\xa4\x6a\x68\xd1\x55\xd6\x35\x3c\x86\xec\x9d\xa5\xf0\xcd\x80\x46\x1a\x6a\x3b\x2d\x3d\x59\x93\x0d\xc8\xd7\xf1\x9b\x00\x5b\xe0\x1d\xb5\x40\x3e\x83\xfb\x7f\x72\x22\xcc\x4d\x3e\xbf\x58\x5c\xcc\x17\x97\x6a\x31\x93\xd3\xd9\xd5\x25\x5e\x9c\x49\x35\x3f\xab\x2e\xe7\xb3\x42\xcd\x2f\xa7\xb3\x6f\x95\xbc\x98\x5f\x9c\x2d\xa6\xa1\xe9\x38\x19\x14\x22\x7a\x02\xd4\x8c\xf0\x32\xef\x57\x2b\x28\x86\x85\x96\x86\x54\x12\x1f\x32\xbe\x04\xd2\x1a\x37\x52\xf7\x81\xb3\x15\x18\x6b\x4e\x7f\x47\x67\xc7\x3d\x0b\x8e\x10\x96\x50\xec\xe1\x41\xea\x0e\xe3\x34\xac\xf0\x93\xf8\x33\x00\x00\xff\xff\x36\x74\xfa\x7a\xed\x06\x00\x00"), }, "/src/strings/strings_test.go": &vfsgen۰CompressedFileInfo{ name: "strings_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248448950, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 914405800, time.UTC), uncompressedSize: 402, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xbc\x90\x31\x4b\x03\x41\x10\x46\x6b\xe7\x57\x0c\x5b\x25\x2a\xb7\xbd\x9d\x5a\x04\x04\x41\xb2\xe9\x65\xbd\x9b\xac\x6b\x6e\x67\x97\x99\x59\x2c\xc4\xff\x2e\x47\xa2\x8d\x88\x5d\xca\x0f\xde\x9b\x07\xe3\x7d\xaa\x37\x2f\x3d\xcf\x13\xbe\x29\x78\x8f\x57\x3f\x03\x5a\x1c\x0f\x31\x11\xaa\x49\xe6\xa4\xcf\x46\x6a\x00\xb9\xb4\x2a\x86\x6e\x59\x99\x93\x03\xd8\x77\x1e\x71\x47\x6a\x77\x8b\x4a\x72\x3b\xcf\x75\xd4\x95\xe1\xe5\x89\x19\x76\x6b\xfc\x80\x0b\x1b\xc2\x21\xb7\x95\x93\xce\x96\x0b\x0d\x5b\x8a\xd3\x23\x95\x60\xd1\xf4\x1a\xbf\xd9\xa3\xfd\x44\xb2\xed\x8c\x5c\x0d\xb5\xb7\xa5\x48\x13\x66\xc6\x4d\x6d\xaf\x24\x0f\xc1\xad\xe1\xf3\x77\x79\x23\xf5\xfd\xac\xdd\xfb\x5a\x5a\x14\x0a\xc7\x0f\xfd\x9d\xee\xac\x71\x7f\xc2\xfe\x39\xfe\x15\x00\x00\xff\xff\xe6\xd1\xc2\x9b\x92\x01\x00\x00"), }, "/src/sync": &vfsgen۰DirInfo{ name: "sync", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249175112, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), }, "/src/sync/atomic": &vfsgen۰DirInfo{ name: "atomic", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248634991, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), }, "/src/sync/atomic/atomic.go": &vfsgen۰CompressedFileInfo{ name: "atomic.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248575574, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 4028, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xbc\x57\x4d\x6f\xe3\x36\x10\x3d\x9b\xbf\x62\xa2\xc3\x42\x4a\x02\x19\x68\x83\x1c\x02\xe4\xb0\xe8\x21\xd8\xa2\x68\x17\xc8\x6e\xef\xb4\x34\xb2\xe9\x95\x49\x81\xa4\x64\x0b\x81\xff\x7b\x31\xd4\xb7\x45\x1b\x69\xb2\x9b\x93\x45\x99\x33\xef\xcd\xe3\x1b\x8e\xbd\x5c\xae\xd5\xc3\xaa\x14\x79\x0a\x5b\xc3\x96\x4b\xb8\xe9\x17\xac\xe0\xc9\x0f\xbe\x46\xe0\x56\xed\x44\xc2\x98\xd8\x15\x4a\x5b\x08\xd9\x22\x28\xa5\xe1\x19\x06\x8c\x2d\x82\xb5\xb0\x9b\x72\x15\x27\x6a\xb7\x5c\xab\x62\x83\x7a\x6b\x86\x87\xad\x09\x58\xc4\x58\x56\xca\x04\x9e\xf7\xbc\xf8\x22\xed\xef\xbf\x85\x3c\x4d\x35\x5c\x0b\x7a\xbe\x05\x89\x7b\x70\x8f\x51\xf3\x01\x2f\x6c\xa1\xf2\x14\x1e\x1e\xe1\x9a\x36\xb2\x85\xfb\x80\x47\xda\xc9\x16\x1a\x6d\xa9\x25\xa8\x3c\x65\xc7\x69\xe2\xfb\xbb\x21\xf1\xfd\x5d\x9f\xf8\xfe\x2e\x6a\x3e\xde\x96\xf8\xbb\x18\x51\x2e\x47\x9c\xcb\x96\x74\xf9\x0e\xd6\xdf\xc5\x88\x76\x39\xe2\x5d\xb6\xc4\xcb\x77\x32\x2f\xac\x1e\x65\x2f\xac\x1e\xd2\x17\x56\x47\xdd\xc3\xdb\x00\xbe\x2a\x21\x2d\xf6\x00\xce\x12\x71\xfb\xb2\xc5\x99\xbc\x8b\x4e\xd6\xff\x1f\xf5\x0f\xb5\x2b\xb8\xc6\xcf\x32\x3d\x63\x26\x95\xa7\x13\x47\xad\x94\xca\x09\x46\x64\xd0\xe6\x7e\xa4\x3d\xf4\x6a\x0a\xd6\xa1\x59\x5d\x22\x5b\x1c\x7b\xf4\x8c\xe7\x06\xcf\xe3\x9f\x7a\x6e\x8c\x4f\xe7\xf7\x4b\xf1\xbd\xd6\xec\x19\x94\x1f\x21\x81\xd7\xc0\x13\x0a\x1f\xa2\x82\xc7\xe6\x13\x12\xce\xeb\xbf\x94\xc5\xe5\x5e\x18\xc8\x9c\x34\xc4\x4f\xe6\xf4\x39\x4d\x3d\x4d\x91\x62\x6e\xf9\xec\x8e\x25\x3a\x5d\xe7\xc1\x4d\xb3\xc9\xdf\x81\xf4\x3c\x42\xf0\xda\xae\xc1\x98\xdf\x89\x6f\x46\xf1\x34\x57\x5f\xc7\xe4\x4a\x7f\x57\x1d\x33\xef\x0e\x75\x4c\xaf\xdf\x77\xa1\x78\xec\x39\xe0\x9c\xde\xc3\x6f\x43\xfa\x4b\xf1\xf9\xd1\x8f\x4e\xbb\x0d\x69\xee\xd9\x93\xa0\xa9\xce\x23\x69\xcf\x06\x79\x2c\x30\x3e\xf4\x8b\x71\x27\x92\x8f\x45\xbe\x18\x37\x13\x71\xa2\xda\xd9\xd0\x4b\x8d\xe9\x1b\x48\xde\x44\xcf\x56\x69\xf4\x74\x56\xc5\xf3\xae\xaf\x5e\x86\x33\xaa\x78\x3e\x8b\x3c\xf5\x72\x1b\x49\xf5\x5f\x8a\xf4\xf6\x1a\xc5\x96\xaf\x80\xf5\x1a\xbc\x0b\x7e\x0d\xb2\xc7\xb7\x5d\xb8\xd3\xff\x52\xfc\xe5\x0b\xd1\xa5\x39\x39\x8b\x33\xd9\xc2\x0a\xae\xff\xe5\x79\x89\x91\x3b\xcf\x30\x82\xf0\x00\x2e\x24\xe3\x09\xbe\x1c\xa3\xd1\xa9\x55\x71\xe5\x8b\x73\x84\xc2\x76\x2c\x4f\xe2\xaa\x38\xd9\x60\xf2\xe3\x6f\xdc\x87\x81\xa1\x5d\x81\xbb\xa7\x23\xfa\xa6\x6a\xdb\xcd\x97\x70\xcf\x8b\x79\xbe\x90\x6e\xee\x8b\x08\x7b\x5e\xf4\x00\x6e\x26\x34\x28\x55\x5c\xdd\x9e\xfd\xcd\x33\x82\x9d\x8e\x9c\x70\xfc\x63\x63\xc4\x82\x50\x0a\x4c\xdd\x6c\x99\x51\x48\x9a\x14\xc0\x65\x0a\x63\x3a\x6e\x04\x5d\x85\x8e\xcf\x23\x48\x91\xc3\xa7\x4f\x6e\x12\x35\xab\x88\x96\x57\x86\xef\xf0\x5b\x5d\x60\x8f\xec\xd2\x2f\x0a\x2e\x45\x12\x06\xa6\x96\xc9\xb2\xf9\xaf\xf0\x00\xa7\x38\xa0\x32\x10\x32\x51\xd2\x08\x63\x51\xda\xbc\x06\x5b\x13\xcb\x8a\x4a\x33\x54\x82\x02\x57\x66\x10\xd1\x7c\x73\x7c\x88\xcd\xd5\x30\x10\x27\x23\xcf\xed\x19\x0e\x89\x4d\x06\xa4\x47\xbb\x5e\x02\x55\x80\xb1\x5a\xc8\xb5\x47\xbb\x66\x12\xd3\xeb\x56\x84\x73\xe5\x05\x70\x03\xaa\x80\x1b\x08\xa8\x30\xda\xe9\xea\xb8\x58\x46\x2b\xea\xa0\xa2\xc4\xbd\x73\x40\xf4\x4a\x98\xf3\xfa\xcd\x70\x8f\x8c\xfe\xcb\x75\x48\xd0\x68\x63\x9c\x38\x20\x32\x38\xb8\x73\xa9\x21\x51\xd2\x72\x21\xc1\x6e\xd0\x6d\xa6\x17\x89\x46\x8b\xf0\xa4\x5c\x7e\x13\x37\x42\xf6\x9c\x0f\xb7\x50\x4f\x35\xeb\x7e\xc2\x2c\x97\xf0\x6d\x23\x0c\x68\xcc\x05\x1a\x28\x0b\xd5\xe4\xcd\x78\x62\xc1\x6e\xb8\x05\x2e\x87\x48\x10\x12\x9e\xdc\xbf\xc4\x3f\x9f\xc1\x45\x15\x1a\x0d\x4a\x8b\xa9\x4b\xb5\xaa\x5d\xb0\x90\xc6\x72\x99\x20\x95\x4f\xeb\x52\xa6\xa8\xf3\x5a\xc8\x75\xc7\x30\x86\xaf\x5a\xec\x84\x15\x15\x76\x5e\x0a\x31\x5e\xc7\x8e\x97\x89\x5c\x32\x32\xa2\xb1\x22\xcf\x61\xaf\x9b\xde\x70\x7a\xf1\x2e\x07\xa8\xd5\x16\x13\x7b\x0b\x46\xc1\x1e\x21\xe1\x92\xaa\xa8\x9b\x1a\x48\x73\xab\xcb\xc4\x2a\x6d\x5c\x36\x3c\x08\x63\x89\x01\x69\x98\x8a\x2c\x43\x72\x13\x64\x4a\xb7\x2b\x94\xb6\x13\xaf\x73\xe5\xd6\xc4\x5f\xa8\x74\xc9\xf3\x7f\x1c\x56\x78\x88\xe2\x27\xb4\xd4\x90\x7d\xfa\x20\x22\xdb\xcd\xb7\xd6\xbe\xad\xec\xc8\xfe\x0b\x00\x00\xff\xff\x5b\x22\x1c\xea\xbc\x0f\x00\x00"), }, "/src/sync/atomic/atomic_test.go": &vfsgen۰CompressedFileInfo{ name: "atomic_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248662741, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 247, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\x8e\x3d\x4e\xc5\x30\x10\x84\x6b\xf6\x14\x2b\x57\xef\x01\x8a\x1b\x44\xc1\x05\x40\x88\x2e\xa1\x46\x8b\xb3\x71\x96\xf8\x4f\xf6\x1a\x0a\xc4\xdd\x51\x50\x84\x68\x28\xbf\xd1\xe8\x9b\xb1\xd6\xe7\xbb\xd7\x2e\x61\xc6\xb7\x06\xd6\xe2\xd5\x2f\x40\x21\xb7\x91\x67\x24\xcd\x51\xdc\x8b\x72\x53\x00\x89\x25\x57\x45\xb3\x93\x24\x6f\x00\x96\x9e\x1c\x4e\xdc\xf4\x81\x62\xe4\x3a\x6a\xae\xfc\x94\x69\x3e\x29\x5e\x1e\xad\x61\x3a\xe3\x27\x5c\xe8\x30\x6e\x52\x4e\xa6\x37\xc6\xbc\x60\x4f\x8d\x16\x36\x67\xf8\xfa\x23\x79\x4e\x14\xc4\x27\x9e\x6f\x6f\xfe\x17\xdc\xe7\xb2\x72\x7d\x1c\x91\x63\x0f\xa4\xdc\x8e\x8f\xed\x1a\x3f\x56\x71\x2b\x46\xda\xf6\x70\x37\x45\x4e\x8a\x52\x2b\x07\x7e\xa7\xa4\xc3\xcf\xde\x77\x00\x00\x00\xff\xff\xe7\xb6\xfc\x7b\xf7\x00\x00\x00"), }, "/src/sync/cond.go": &vfsgen۰CompressedFileInfo{ name: "cond.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248754782, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 525, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\x8f\x31\xaf\xa3\x30\x10\x84\x6b\xef\xaf\x98\x12\x0e\x11\x52\x27\xa1\xb9\xb4\x74\xa7\xd3\xd5\x8e\x31\xc9\x1e\xce\x1a\x81\xb9\x13\x7a\xe2\xbf\x3f\x19\xe7\xe5\x15\x09\xcd\xb2\x33\xde\xf9\x34\x55\x75\xf5\x87\xcb\xcc\xae\xc5\xdf\x89\xaa\x0a\xc5\x73\xa1\x41\x9b\x5e\x5f\x2d\xa6\x45\x0c\x51\x58\x06\x8b\xb3\x97\x16\x53\x18\x67\x13\xf0\x41\xaa\xaa\xd0\xb1\x75\xed\x84\x79\xb2\x2d\x2e\x0b\xfe\x69\x61\xe7\x34\xf8\x3e\x38\x7b\xb7\x12\x74\x60\x2f\xa4\xc4\x9f\xfd\xb0\x00\x69\x92\x6a\x90\xbe\xc6\x9b\xde\x8e\xd1\x0f\xdc\x6d\x7e\x9c\x0d\x4f\x81\x94\xb9\xd9\x68\xc2\xf8\x61\x39\xa7\x7f\x7a\xc7\x14\xfb\xff\x95\x07\xb0\x6c\x19\x30\x37\x2d\xb8\x78\xef\x68\x25\xea\x66\x31\xc8\x0c\x7e\xc4\x26\x39\xfe\x68\x0e\x59\x1e\xab\x98\x9d\x14\x05\x29\xee\x60\x76\xe6\x86\xba\x86\xb0\x8b\x86\x4a\x3b\xee\xba\xb7\xd9\x33\x2b\x27\xb5\xc6\xa3\x66\xf7\x5b\x9c\x37\x7d\x96\x93\x3a\x95\xf1\x69\x52\x9b\xa4\xbd\x12\x7f\xf1\x55\xb4\x4b\xcc\x0d\x26\x91\xb5\xdf\x48\xa3\x0d\xf3\x28\x8f\x64\x29\x4b\x4a\xec\x53\x89\x30\xce\xf6\x4d\xd8\xcf\xd1\xeb\xd6\xe8\xe9\xd1\x41\x70\xa8\x63\xe2\x76\x8e\x1a\x7b\x52\x9d\x1f\xc1\x51\xde\x1f\xc1\x38\x41\x8e\xe0\xa2\xf8\xee\xf5\x95\xad\x56\x5a\xe9\x33\x00\x00\xff\xff\xf8\xf7\x32\x6e\x0d\x02\x00\x00"), }, "/src/sync/cond_test.go": &vfsgen۰CompressedFileInfo{ name: "cond_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248807906, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 186, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\xcd\x31\x4f\x86\x30\x10\x87\xf1\xd9\xfb\x14\xff\x74\x11\xd4\xd0\xdd\x95\xc1\xc4\x15\x76\x83\xe5\xa0\x15\x6c\x6b\xef\x1a\x42\x8c\xdf\xdd\x90\xbc\x79\xc7\x27\xbf\xe1\xb1\x76\x4d\xaf\x9f\x35\xec\x33\xbe\x84\xac\xc5\xf3\x3d\x28\x4f\x6e\x9b\x56\x86\x9c\xd1\x7d\x28\x8b\x12\x85\xef\x9c\x8a\xc2\x5c\x15\xe2\x6a\x88\x96\x1a\x1d\x46\x16\xed\x53\x9c\xfb\x94\xcf\x46\xf1\x74\xe3\x6e\x6c\xf1\x4b\x0f\xda\x0d\x5b\xc8\x8d\xb9\x14\xce\xb3\xdb\xb8\xa0\xf0\x4f\x0d\x85\x05\x65\x3a\x90\x53\x88\xca\x45\x5e\x70\xf8\xe0\x3c\xde\x52\xf6\x5c\xde\x07\xcc\x89\x25\x3e\x2a\x96\xba\xef\x27\xa4\xe6\x6b\xdf\x99\x96\xfe\xe8\x3f\x00\x00\xff\xff\xb5\xbc\x70\xbf\xba\x00\x00\x00"), }, "/src/sync/map_test.go": &vfsgen۰CompressedFileInfo{ name: "map_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248863531, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 185, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\xcb\xb1\x4e\xc3\x30\x10\x80\xe1\x99\x7b\x8a\x53\xa6\x04\x50\xcc\xc0\x12\x1e\x00\x04\x6b\xb2\xa3\xe0\x1c\xc9\x11\xfb\x6c\xf9\xce\x42\x50\xf5\xdd\xab\x56\x55\xc7\x4f\xfa\x7f\xe7\xd6\xf4\xf2\x55\x39\x2c\xf8\xa3\xe0\x1c\x3e\xdc\x00\x79\xf6\xfb\xbc\x12\xea\x9f\xf8\x4f\x23\x35\x00\x8e\x39\x15\xc3\xe6\x2c\x96\xb5\x01\xf8\xae\xe2\x71\x22\xb5\x77\xd5\x4a\xcf\x4f\xc3\x30\xb4\x86\xf7\xd7\xa0\x9f\x3a\x3c\xc0\x9d\xf5\xe3\xce\xb9\xbd\x6c\x58\x28\x30\x29\x26\xc1\x52\xc5\x38\x52\x3f\x92\xbd\xb2\xcc\x81\xff\xa9\x3c\xe2\xef\xc6\x7e\xc3\xb7\x94\x37\x2a\x1f\x23\x2e\x89\x14\x25\x19\x72\xcc\x81\x22\x89\x35\x1d\x1c\xe1\x14\x00\x00\xff\xff\xf3\x37\x4f\xbd\xb9\x00\x00\x00"), }, "/src/sync/pool.go": &vfsgen۰CompressedFileInfo{ name: "pool.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 248952531, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 1399, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\x54\x4d\x8f\xdb\x46\x0c\x3d\x5b\xbf\xe2\xf5\x54\xbb\xdd\xb5\x93\x1e\x0d\xec\xa1\x68\x81\x00\x39\x24\x0b\x24\x3d\x05\x41\x41\xcf\x50\x16\xd7\xa3\xe1\x60\x86\xf2\x47\x17\xfe\xef\xc5\x48\x76\xbc\xc9\xe6\x26\x7e\xe8\xbd\xc7\x47\x4a\xab\xd5\x56\xd7\x9b\x41\x82\xc7\x53\x69\x56\x2b\xfc\xfe\x2d\x68\x12\xb9\x1d\x6d\x19\xe5\x14\x5d\x53\x6b\x7f\xe2\x51\x35\x40\x0a\x08\x85\x0d\xda\xc2\xb8\x4f\x9a\x29\x9f\xa0\x9b\x27\x76\x56\x60\x1d\x19\x7a\x3a\x61\xc3\x90\xe8\x65\x2f\x7e\xa0\x10\x4e\x28\xb4\x67\x0f\x8a\xbe\x42\x65\xb6\x2c\xbc\x67\xbf\x6c\x56\xab\x9a\x78\xa7\xa9\xe3\xfc\xfe\x13\x52\xd6\xbd\x78\x1e\x39\xa4\x4f\x81\xf3\x1d\x22\xc9\x9e\x31\x46\x3d\x47\x23\x13\x8d\x38\x88\x75\x88\x3a\xca\xeb\xb2\x46\xf9\x6f\xca\x93\x55\x3c\x0a\x61\x89\xcf\x9d\x94\x2a\xb7\x98\x84\x00\xa7\x39\xb3\x33\xb4\x9a\x61\x1d\xdf\x28\xf3\x10\x4d\x7a\xc6\x86\x1d\x0d\x85\xd7\x17\x49\x78\xbb\xc4\x7b\xda\xd3\x27\x97\x25\xd9\x88\x23\x71\x1b\xf8\xde\xba\xcc\xe4\xd9\xdf\xa1\x28\x64\xac\x48\x9f\xb4\x14\xd9\x04\x9e\xe0\x0f\x8a\xa9\xab\xc0\x14\x1b\x1e\xf1\x00\x90\x73\x5c\x2a\xcc\xa8\x20\x55\x3b\xc9\xc6\xe7\x42\x3d\xa3\xd7\x3a\x1f\x24\xa2\x0a\x5a\x8e\x6f\xfd\xb1\xbc\x29\xdd\x6a\xd6\xc1\x24\xbe\x32\x63\x28\x5c\xe0\x54\x13\x67\xb2\x6a\x56\x3f\x04\x93\x7b\xa3\xb2\xab\x64\xbd\x7a\x0e\x77\x57\x11\x87\x4e\x5c\x07\x8d\xe1\x54\x6d\xd2\x43\x41\xa2\x49\x94\xd3\x68\x59\x43\xd5\xac\xd6\x71\xbe\x11\x16\x1c\x3a\x8e\xa3\xd2\x76\x88\xae\x92\x5e\xe1\x7a\xd9\x76\x86\x4d\x50\xb7\xbb\x6e\xf3\xf3\xc7\xbf\x3f\xce\x23\xef\x77\x1a\x8d\x76\xc6\x8b\x35\xfe\xd2\x58\xc4\x73\x06\x79\x5f\xa9\x08\xfd\x60\x7c\xc4\xd3\x50\x6c\xf2\x08\x85\x5a\x86\xb4\xd5\x52\xaf\x5c\xe2\xaf\xe3\x26\x5d\x66\x32\x06\x21\x50\xde\x32\x12\xe7\x56\x73\x4f\xd1\x31\x3a\xb1\x2b\xe3\x07\x35\x5e\x57\x79\x99\x2f\x07\x9a\xd8\x09\x05\x74\x14\x7d\xa8\x84\x32\xa9\xdf\x8e\x5e\x3e\x95\xd5\x74\xe8\xd7\x23\x1f\xcf\xb6\x95\x60\x9c\xc7\xef\x40\x07\xab\xe6\x40\xb3\x6c\x25\x52\xb8\x9c\xfe\xf7\xae\x4b\x84\xe6\x3a\x93\x29\x68\xaf\xe2\x41\x87\xdd\x81\xb2\xc7\x10\x87\xc2\x1e\xad\x70\xf0\x65\x3a\xf8\x96\x33\x47\xc7\x1e\x9b\x13\x3c\x93\x87\x53\xcf\xcb\xc6\x4e\x89\x27\xf0\x62\x79\x70\x86\xe7\x66\x56\x4c\x33\xe3\xcb\x57\x89\xc6\xb9\x25\xc7\xcf\xe7\x66\xf6\x81\x0f\xc0\x68\xfe\x7c\x81\x97\x95\x73\xd3\xd4\x2c\xe6\x09\xbf\x55\xa0\x05\xde\xb1\x7d\xdf\x53\x41\xa5\x45\xe0\x38\x4f\xcb\x11\x7d\x81\x87\x07\xbc\xa9\xf9\x5a\x48\xcb\x8a\xfe\xcb\x03\xa2\x84\x31\x37\xcb\x6c\x43\x8e\x53\x61\xbe\x68\x66\xb3\x73\xf3\x2d\x19\x25\x34\x35\x3e\x62\xfd\x80\x0b\xde\x97\x97\xd8\xf7\x6f\xbf\x36\xb3\x4b\x80\x5b\xcb\xfa\x55\xcf\x05\xf0\xf8\x93\x19\x1e\x07\x9b\x1f\x5f\xce\xb0\xb8\x0c\x71\xac\xca\xaf\x3a\x27\x80\x51\xcd\x8d\x8f\x52\xe2\xe8\xaf\x4c\x77\x38\x2e\x2a\x7e\x3d\xcb\x8e\x0b\x83\x32\xff\xb0\x0e\xe3\x62\xe5\x0e\x9b\xba\xf3\xcc\x88\x7a\xaf\xa9\xd4\xed\xfe\xf8\x8b\x58\x4e\x2a\x2f\xd1\xbf\x29\xab\x7b\x94\x38\x79\x8d\x67\x5c\xc6\x79\x83\xf3\xeb\xbe\x7f\x62\x1a\x3b\x81\xe7\x73\xf3\x7f\x00\x00\x00\xff\xff\xe9\xae\xfd\x11\x77\x05\x00\x00"), }, "/src/sync/pool_test.go": &vfsgen۰CompressedFileInfo{ name: "pool_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249012447, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 850, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xbc\x91\x41\x8b\xdb\x30\x10\x85\xcf\x9a\x5f\x31\x2b\x28\xb5\x5b\xa3\xdc\x03\x39\xa5\xd4\xd0\xd3\xd2\x0d\xf4\xb0\x2c\x45\xb1\xc7\xb6\xba\xb6\xa4\x4a\xa3\x6e\x43\xf0\x7f\x2f\x12\xd9\x1c\xba\x3d\xf4\x94\x9b\xa4\xf7\xe6\xbd\xcf\xe3\xcd\x66\x74\xdb\x63\x32\x73\x8f\x3f\x22\x6c\x36\xf8\xf1\x7a\x01\xaf\xbb\x67\x3d\x12\xc6\x93\xed\xbe\x33\x45\x06\x30\x8b\x77\x81\xb1\x02\xa1\x50\xe6\x77\x09\x42\x66\xc9\xd8\x51\x42\x0d\x30\x24\xdb\xe1\x81\x22\xdf\x3b\x37\x57\x8c\x1f\x2e\xa2\x3a\xd4\x78\x06\xf1\x4b\x07\xf4\x98\x35\x10\x66\x40\xaf\x5a\xe2\xaa\xc6\xbb\x1d\x5a\x33\x67\x83\x60\xf5\x59\xb3\x9e\x2b\x49\xbf\x3d\x75\x4c\x3d\xd2\xe2\xf9\x24\x6b\x10\x2b\x80\xf0\xea\x3e\x71\x25\x75\xbe\x5f\xce\x47\x59\x03\x88\x17\x6d\x19\xb7\x3b\x7c\x7c\x32\x96\x29\x0c\xba\xa3\xf3\x7a\x96\x47\xd9\xa0\xd4\xb2\xc9\xf9\x2b\x88\xc1\x05\x34\xd9\x16\xb4\x1d\x09\xcb\x50\x6e\x1d\x5d\x19\xbe\xf0\x80\xc8\x70\xf9\xed\x6e\x57\x3c\x8f\xe6\xa9\xd8\x5e\xe9\x86\x4a\xb6\x8e\xb7\x57\xfe\x40\x9c\x82\xa5\x7e\x8b\xef\xa2\xc2\x6f\xda\x72\x39\xc9\x26\x87\x34\x25\x22\x87\xae\xe5\x1b\xd6\xbf\xb6\xd4\xee\xdf\xee\x89\xd5\xc3\xb3\xf1\x95\x3c\x4c\x26\x62\x96\x30\x45\x8a\x18\x92\x65\xb3\x90\x6a\xf7\x55\xdd\xe0\xcb\x64\xba\x09\x5b\xe7\x27\x0a\x5f\x1e\xb0\x77\x14\xed\x7b\xc6\x98\x7c\xfe\x49\x4a\xd6\x6f\xaa\xbe\xd2\x4c\x3a\xd2\xcd\xfa\x3e\xd1\xcf\x44\xe9\xbf\xfa\x58\x87\x91\x38\x62\xf2\x91\x03\xe9\x05\xbd\x73\x33\x9a\xc5\xcf\xb4\x90\x65\xcd\xc6\xd9\x57\x04\x13\xd1\xba\x82\xd8\xe3\xf1\x74\x25\xfa\x17\xc1\x7e\xd2\xc6\xde\xb4\xff\x4f\x00\x00\x00\xff\xff\xc2\xc1\x6a\x5e\x52\x03\x00\x00"), }, "/src/sync/sync.go": &vfsgen۰CompressedFileInfo{ name: "sync.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249107196, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 2064, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x7c\x55\x4d\x6f\xe3\x36\x10\x3d\x9b\xbf\x62\x60\x14\xa8\x94\xc8\x52\xd2\x2d\xb6\x40\xb0\x3e\x14\xd9\x62\x11\xa0\xdd\x05\x9a\x14\x3d\x04\x46\x43\x4b\x23\x93\x31\x45\xaa\x1c\xca\xaa\x1b\xe4\xbf\x2f\x86\x52\x1c\x3b\x89\x93\x4b\x68\x72\xe6\xcd\x9b\x37\x1f\x2a\x8a\x95\xbb\x58\x76\xda\x54\x70\x4f\xa2\x28\xe0\x74\xf7\x43\xb4\xb2\x5c\xcb\x15\x02\x6d\x6d\x29\x84\x6e\x5a\xe7\x03\x4c\x57\x3a\xa8\x6e\x99\x97\xae\x29\x56\xae\x55\xe8\xef\xe9\xf9\x70\x4f\x53\x21\x36\xd2\x03\x61\xf3\xb7\xd4\x01\x3d\xc1\x1c\x1a\xb9\xc6\xa4\x91\xed\xed\x49\xa7\x6d\xf8\xf0\xd3\xe2\x76\x51\x2a\x69\x61\xe9\x9c\x49\x05\x47\x25\x6c\x7e\xed\xdd\x1a\x2d\x04\x2f\xcb\x35\x41\x50\x08\xb6\x6b\x96\xe8\xc1\xd5\xd0\x8f\x50\x72\xb0\x59\x6e\xc1\x77\x36\xe8\x06\xff\xb9\xc6\xc6\xa3\x41\x49\x08\xc9\x5d\xa9\xe0\xd3\x0c\x82\xef\xf0\x2e\x65\xd4\xa0\x64\x00\x25\x37\x08\xd6\x05\xd8\x62\x00\x59\xfe\xdb\x69\x8f\x55\xc4\x27\x6c\x64\xab\x9c\x67\xd7\x4f\xb3\x52\xdd\x81\xb6\xfb\xc0\xa3\xf1\x1f\x5d\xc0\xff\xd2\x5c\x14\x05\x63\xde\x28\x4d\xd0\x7a\xdc\xa0\x0d\x04\x12\x2c\xf6\x50\x4a\x63\x20\xb8\x63\xbe\xfc\xd4\x7b\x67\x57\x66\xfb\x44\xe0\x30\x3e\xe3\x6a\x0b\x4b\x0c\x3d\xa2\x85\x64\x89\xa5\xec\x08\xdf\x4a\x52\x49\x02\x69\x3c\xca\x6a\x0b\xda\x96\x1e\x1b\xb4\xe1\x55\x3e\xbd\xd2\x26\xa2\x46\x62\x0a\xa1\x45\x5b\x69\xbb\x8a\x4c\xe9\x3d\xaa\x07\x6a\x79\x2c\x51\x6f\xb0\x82\xda\xbb\x26\xe2\x70\xd9\x2c\x9a\x08\x6d\x39\x6a\x47\x50\xe1\x11\x1a\x3b\xcd\xae\x11\x41\x85\xd0\xd2\x45\x51\xbc\xdb\x3e\x9a\xa8\x43\x2a\x7e\xf9\xf0\x31\x7f\xea\xa2\xb1\x2d\xde\x68\xa2\xe1\x5f\x2a\x44\xdd\xd9\xf2\x8d\x84\x12\x82\xd1\x34\x85\x07\x31\x39\x92\x71\x42\x19\xd4\xd2\x10\x66\x70\x9e\x8a\x47\x31\xf0\x3d\x14\x45\x13\x18\xbd\xc6\xbd\xfb\x0c\x96\x5d\x80\xda\x79\x68\xbd\xab\xb5\x89\xda\x3a\x1b\xd0\x56\x58\x41\xf4\x42\xe2\xf4\x87\xf3\x9e\x95\xa6\x28\x2f\x75\x2d\x8f\x13\x56\x19\x90\x83\xfb\x8e\x02\x70\xc5\xa3\x7e\xb2\x41\xd0\x4d\x6b\xa2\xa8\x32\x68\x67\x41\xd2\x1b\x09\x46\xfc\x9b\x6f\x9f\xbf\x5d\xc0\x95\xdd\x20\x05\xbd\x92\x81\x31\x34\xe5\x70\x55\x83\x0e\x3f\x12\xb4\x8e\x48\x2f\x0d\x72\xd1\x77\xa0\x19\x93\x25\x5d\xa1\x87\xca\x31\x2b\x72\x19\xb8\xa0\xd0\xf7\x9a\xfb\x0e\x1b\xb7\x19\x80\xa0\x74\x0d\x7b\xe4\xc7\x54\x1e\x45\x7c\x92\x3a\x03\xa3\x6b\x17\x27\x3b\x03\x5a\xeb\xb6\xf6\xb2\x41\x02\x6d\x43\xac\x82\xae\x21\x39\x21\x98\x3d\x97\xf6\x96\x16\x29\xcc\xe7\x70\xc6\xcf\x93\x52\xc1\xc5\x58\xeb\xbd\x15\x31\x61\xbf\x08\xcc\x36\x93\xe7\xe5\x72\x4b\x0b\x98\x83\x6c\xb9\xbf\x93\xbd\xad\xf2\x50\xaa\xc7\x0c\x0e\xec\xf2\x3c\x67\xa0\x47\x40\x43\xf8\x2e\xce\xc1\x75\x06\xa5\x8a\x7e\x62\x32\xe1\x25\x21\xa2\xdb\x8e\x3a\xcc\xe6\x70\x3e\xf0\x3b\xb8\xde\x25\x34\xa9\xd0\x60\xc0\x64\xf7\x9a\x01\x8d\x78\x8f\x62\x72\x42\xb3\x19\x37\xdd\x4b\x71\xc7\x71\xdf\xd7\x55\x49\x5b\xb9\xba\x3e\x2e\xed\xae\x19\xfe\x8a\x7b\x62\xb0\xd6\x35\x58\xc4\x0a\xab\xe2\xa9\x11\x72\x8e\x7a\x7a\x2a\xc4\xa4\x67\xa9\x0f\x92\x8d\xf5\x31\x68\x93\x7e\xaf\x24\x1e\x43\xe7\x2d\xd3\x15\x63\x79\xfa\xdb\xb3\x05\xbb\xf3\xe9\xfc\x62\x21\x5e\x09\xd9\xbf\x09\xf4\xac\xc4\x68\x3c\x48\xc1\xb8\x07\xda\x9d\xb2\xa4\x31\xd6\xb8\xcd\x5f\x29\x64\x5d\xd0\xf5\xf6\x77\x4d\xe1\x52\x61\xb9\x4e\x48\xff\x8f\xc0\x42\xb5\xc1\xa7\xf0\xf0\xd2\xbc\x94\xf6\xba\xd5\x36\xd1\x83\x56\xac\x60\xdc\x08\x31\xb1\x61\xfa\xc7\xc9\xbf\x74\xed\x96\x3f\x38\xec\x96\x8f\xee\x5f\xa5\x75\x2f\xda\xdf\x4a\x66\xd0\x60\x92\x32\xe2\xc7\x9f\x19\x8d\x27\x2a\x40\xa3\x8d\xd1\x84\xa5\xb3\x15\xcc\xe1\xfc\x2c\xfe\xed\x42\xdd\x53\xfe\xc5\xb8\xa5\x34\xf9\x17\x0c\xc9\xf4\xb3\x0c\x38\x4d\xf3\xaf\xd8\x27\x69\x7e\x29\x8d\x49\xa6\x2b\x0c\x37\xba\xe1\xdb\x2b\x06\x4e\x52\x38\xd9\xc7\x1c\x69\x5e\x3d\x0d\x32\x56\x7b\xdf\xac\x91\x64\x50\xde\xf5\x09\x01\x05\xaf\xed\x2a\xb6\xc6\x73\xdc\x21\xca\x0f\xd1\xe6\xcf\xc1\xed\x37\xef\x9d\x9f\xc6\x5a\x3c\x8a\xef\x01\x00\x00\xff\xff\xfd\xf8\xc1\x7b\x10\x08\x00\x00"), }, "/src/sync/waitgroup.go": &vfsgen۰CompressedFileInfo{ name: "waitgroup.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249202404, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 460, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\xd0\xbf\x4e\xc3\x30\x10\x06\xf0\xd9\xf7\x14\x1f\x1d\x2a\x87\x0a\x52\xe8\x56\x35\x48\x4c\x3c\x02\x03\x62\x30\x8e\x9b\x98\x06\x27\x8a\xcf\x54\x55\x95\x77\x47\x36\xa1\x84\x3f\xf5\x64\x7f\x3e\xfd\x7c\xbe\x3c\xaf\xda\xf5\x4b\xb0\x4d\x89\x57\x4f\x79\x8e\xc5\xe9\x40\x9d\xd2\x3b\x55\x19\xf8\x83\xd3\x44\x7c\xe8\x0c\x1e\x95\xe5\x87\xbe\x0d\x1d\x3c\xf7\x41\x33\x8e\x24\x74\x1b\x1c\x9b\x1e\xd6\x31\x09\x5d\x23\x2d\x5d\x2b\x37\xd6\x1c\x07\x22\xe1\x59\xb1\xb9\xc1\xd3\xea\x39\x58\xc7\xab\x5b\x1a\x88\xb6\xc1\x69\xc8\x7d\x85\xcb\x13\x9b\xe1\xbe\x2c\x65\x69\x1a\x56\xd1\xcb\xa2\xbf\xaf\xae\xbf\x9e\x58\x14\x48\x77\x24\xec\x16\x93\x7c\x83\x65\xac\x14\x9d\x72\x56\xcb\x59\x6c\x78\x0d\x67\x2a\xc5\xf6\x7d\xda\xf4\x58\x3f\xcb\x48\x0c\xbf\x8d\x3b\x2c\x31\x9f\xa7\xa4\x46\x51\xc0\xd9\x26\x99\x63\x80\x37\xb5\x33\xf2\xc7\xb7\xfe\x53\x8a\x62\xca\x5c\x7c\x33\xba\x69\xbd\x91\x29\xce\x26\xaa\xb3\x4d\x54\xce\x4d\x23\x6e\x65\x9a\xc2\xdf\x66\xa3\xba\xb9\x4a\xd0\x27\xf1\x11\x00\x00\xff\xff\x22\x56\x04\x1a\xcc\x01\x00\x00"), }, "/src/syscall": &vfsgen۰DirInfo{ name: "syscall", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250047857, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 35, 10, 11777300, time.UTC), + }, + "/src/syscall/fs_js.go": &vfsgen۰CompressedFileInfo{ + name: "fs_js.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 411777300, time.UTC), + uncompressedSize: 919, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x54\x91\xc1\x4e\xdc\x30\x10\x86\xcf\xf6\x53\x4c\x39\x25\x52\x70\x4a\x8f\x14\x2a\x55\x15\x54\x70\x80\x8a\x6d\x2b\x55\x88\xc3\x90\x4c\x76\xbd\x38\x76\x34\x63\x2f\x5a\xa1\x7d\xf7\xca\xde\x6c\xd9\xde\xa2\x89\xe7\xfb\xbf\x99\x69\xdb\x65\x38\x7f\x4e\xd6\xf5\xb0\x16\xad\x27\xec\x5e\x70\x49\x20\x5b\xe9\xd0\x39\xad\xed\x38\x05\x8e\x50\x69\x75\x32\xd7\xda\xb5\x9c\xe8\x5a\xeb\xb6\x85\x41\xbe\xa1\x73\x40\x63\x72\x18\x49\x00\x61\xb0\xae\x34\x47\x1a\x4f\x99\x72\xb5\x3f\xb0\x60\x63\x11\x10\xba\xc0\x4c\x32\x05\xdf\x5b\xbf\x84\xbb\xd0\xd3\xed\x02\x06\xc9\xb8\xaf\x3f\x6e\x8c\x6e\xdb\xfc\xf9\x73\x65\x05\x36\xc4\x62\x83\x07\x2b\x20\x76\xb4\x0e\x19\x62\x80\xb8\x22\x48\x93\x44\x26\x1c\x1b\x78\x4e\x11\x6c\x84\x25\x63\x47\x43\x72\x6e\x0b\x2b\xf4\xbd\x23\x81\xd1\x8a\xe4\x88\x3d\x7b\xa4\xb8\x0a\xbd\x40\x85\xce\x85\xd7\x52\x0f\x0c\x32\xa2\x73\xc4\x30\x31\xb9\xd4\x53\x0d\xe8\x7b\x60\x1a\xc3\xa6\x4c\xf3\x1a\xf8\x05\x39\x24\xdf\x97\xd7\xe8\x33\x29\x3c\x4b\x70\x14\xe9\xe0\x3e\x5b\x1a\x3d\x24\xdf\xcd\x2b\xa9\x3c\x8e\x04\x12\xd9\xfa\x65\x03\xc8\x4b\x01\x63\x8c\xf5\x91\x78\xc0\x8e\xde\x76\x35\x54\x6b\x31\xbf\xd1\x25\x6a\x80\x98\x03\xd7\xf0\xa6\x55\xdc\x4e\x04\x79\x59\x0f\x24\xc9\xc5\x4c\x48\x5d\xcc\x7f\xd4\x06\x1d\x1c\x5a\xb4\x52\xc4\xbc\xef\xd3\x6a\xa7\xb5\xea\xe0\xfc\x12\x46\x7c\xa1\xaa\x5b\xa1\x3f\x42\x34\x70\x56\x6b\x35\xe4\xdf\x6b\x31\xd7\xc9\x77\xf7\x43\x95\x4d\xab\x98\x57\xfc\x2e\x51\x24\x1f\x9f\x0e\x85\x1a\x8e\x6c\x67\x01\x06\x26\x39\x62\x6b\xad\x94\x1d\x60\x2d\x57\xcc\x39\x20\x23\x1e\x3f\x3e\x7d\x86\x0f\xa5\x64\x6e\xe4\x2e\x39\x57\x95\xc9\x94\x62\x12\x93\xad\xb3\xe7\x74\xbb\xb8\xca\xf2\x55\x79\x58\x6b\x55\x86\x28\x4f\xf2\x9c\xc5\xf5\x97\xef\x69\xb0\x9e\xfa\xaa\xde\xe7\x38\xf2\x55\x8e\xa8\xe1\xcb\x25\x7c\x7a\x87\xee\x3b\x4a\xf8\xd9\xd3\x01\xd5\xc1\xc5\x69\xd6\x2d\xd4\x98\xd8\x83\xb7\x4e\xab\x5d\xad\x55\x4f\x03\x31\x0c\xe6\x81\x1c\xa1\x50\xc6\x97\x29\xae\x17\xe6\x3b\xc5\x72\xba\xda\xdc\xc8\x51\x7e\xc9\x9a\x31\xff\x9b\x35\x70\x75\x77\xbf\xf8\xb3\xc8\x57\x50\x05\xf1\xef\xfc\x0d\xe0\x34\x91\xef\x8b\x73\x03\x43\x6d\x8c\xa9\x75\x36\xce\xbb\xba\x38\xed\xf4\x01\x39\x0f\xd1\xc0\xbc\x22\xbd\xd3\x7f\x03\x00\x00\xff\xff\xca\x93\x7c\x2a\x97\x03\x00\x00"), }, "/src/syscall/js": &vfsgen۰DirInfo{ name: "js", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249402194, time.UTC), + modTime: time.Date(2022, 4, 19, 10, 29, 32, 391777300, time.UTC), }, "/src/syscall/js/export_test.go": &vfsgen۰CompressedFileInfo{ name: "export_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249289987, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 224, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\xce\xb1\x4e\x43\x31\x0c\x85\xe1\xfd\x3e\xc5\xd9\x00\x01\xcd\xde\xb5\x48\x95\x58\x41\xec\xbe\x89\x49\x5d\x52\x3b\x72\x9c\x4a\xbc\x3d\x2a\x95\xee\x76\xce\xf2\xe9\x4f\xa9\xda\x7e\x9d\xd2\x0a\xce\x63\x49\x09\xcf\xdb\x59\x3a\xe5\x1f\xaa\xfc\xbf\x53\xc2\x1b\x7f\x8b\x72\x41\x18\xe8\x6a\x52\x40\xc8\x76\xe9\xd2\x18\xec\x6e\x0e\x51\xc4\x89\x61\x2e\x55\x94\x1a\x3e\x79\xc4\x91\x7c\xa5\xca\x07\x6b\x8d\x73\x88\xe9\xe3\xd3\xcd\x5a\xad\xfc\xee\x70\x20\x7d\x08\xcc\xc1\xa8\xd6\x4f\xec\xe7\xb1\xef\x3e\x95\x5f\x37\xc2\x14\x12\x2f\x18\xa2\x99\x21\x81\x4c\x73\xf0\x00\x29\xa6\xce\xc1\xe5\x66\xc9\xa5\x9b\xc7\xbd\x61\xb7\x5c\xc9\xf1\xfe\x71\x34\x7c\x51\x9b\xbc\xfc\x05\x00\x00\xff\xff\xa2\xd4\x8a\x18\xe0\x00\x00\x00"), }, "/src/syscall/js/js.go": &vfsgen۰CompressedFileInfo{ name: "js.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249374653, time.UTC), - uncompressedSize: 8555, + modTime: time.Date(2022, 4, 19, 10, 29, 32, 391777300, time.UTC), + uncompressedSize: 9046, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xc4\x39\x6d\x6f\xdc\x36\xd2\x9f\x57\xbf\x62\x22\x3c\x68\xa4\x46\xd5\xf6\xed\xe9\x15\x8e\xd7\x40\xdb\x4b\x83\x04\xd7\xe4\x70\x4e\x7b\x1f\x8c\xa0\xa1\xa5\xd1\x2e\x6d\x2d\xb5\x47\x52\xbb\xeb\x73\xfd\xdf\x0f\x33\xa4\x24\x6a\x5f\x6c\xe7\x2e\x87\x0b\x10\x2f\x35\x9c\x37\xce\x0c\x87\xc3\xe1\x74\x3a\x6f\x4e\x2e\x5b\x59\x97\x70\x65\xa2\xe9\x14\x9e\xf5\x1f\xd1\x4a\x14\xd7\x62\x8e\x3c\x96\xcb\x55\xa3\x2d\x24\xd1\x24\xd6\x58\xd5\x58\xd8\x38\x9a\xc4\xad\x32\xa2\xc2\x38\x8a\x26\xf1\x5c\xda\x45\x7b\x99\x17\xcd\x72\x3a\x6f\x56\x0b\xd4\x57\x66\x18\x5c\x99\x38\x4a\xa3\xc8\xde\xac\x10\xde\xd1\x1f\xa9\x6c\x14\x15\x8d\x32\xcc\x92\x40\xbf\xaa\x12\x2b\xa9\xb0\x74\x08\x33\x90\x8d\x15\x6e\xea\x4d\x5b\xd7\x6e\xf4\x63\xd3\xd4\x28\x54\x07\x5e\x5e\xa2\x76\xe3\x73\xab\xa5\x9a\xfb\xf1\xcd\xf2\xb2\xf1\x04\x6f\x2f\xaf\xb0\xb0\x6e\xfc\x73\xab\x0a\x2b\x1b\x45\x9a\x54\xad\x2a\x20\xb1\x2c\x2b\x05\x47\x9d\xa4\x60\x78\x00\xb7\xd1\xc4\x6c\xa4\x2d\x16\x60\x69\x5c\x08\xe3\xd4\xee\x75\x3c\x89\x26\x13\x8d\xb6\xd5\x0a\xe2\xb6\x03\xc6\x01\x26\xa9\x1c\x22\xa9\xb6\xae\xc3\x79\xbf\x90\x10\xe5\xd2\x81\xc6\x5c\x68\x85\x63\x3e\x04\x09\x71\x9c\xee\x21\x8e\x5b\xc4\x08\x87\x2d\x32\xc2\x61\x48\x88\xe3\x2c\x15\xe2\x34\x0c\x09\x71\x3a\x0b\x86\x58\x95\x87\xc5\xd1\xa4\xc4\x4a\xb4\x35\xf3\x58\x09\x25\x8b\x24\xbe\x14\x25\x90\xd3\xe3\x34\x9a\xdc\x45\x77\xbb\x76\x97\xc6\x49\x4d\x52\xa0\xd5\x93\xad\x3d\x5b\x0b\xb3\x59\xa0\x16\xfc\xf1\xc7\x00\xea\xfd\xd8\xf1\x7b\x59\x37\x97\xa2\x4e\x52\xf8\x4d\xd4\x2d\x06\x5c\xdc\x0a\xde\x35\x0c\x4f\xae\x4c\xee\x30\xd3\x9e\x92\xdc\xf4\x20\x9d\x92\x01\x45\x1f\x02\x8f\x11\xd7\x23\x33\x3d\x47\x3f\x29\x4f\x61\xd6\x16\x1c\x5a\x8c\x3a\x18\xa6\xe2\xf9\x14\xfe\x86\x35\x0a\x83\x49\x4a\x38\xbd\xde\xf9\x39\xda\x24\xfe\x3f\xdc\xd2\x56\xc4\xb2\xb3\x83\x89\x33\x18\x70\x5e\x1e\xc1\x49\xf3\x57\xca\x26\xe9\x17\x5f\xa5\xd1\xa4\xca\x9d\xea\x33\x6f\x80\x5e\x01\x42\x7f\x5b\x25\x95\x02\xfa\x4c\xec\x42\x1a\xb7\xca\x0c\x84\x9e\x1b\xb8\x78\xcf\x5f\x29\xed\x5f\xd4\x95\x28\xf0\xf6\x2e\x75\x6b\xba\x8d\x26\xd3\x29\xbc\xd8\x4a\x63\x51\x15\x08\x4d\x05\x02\x36\x5a\xac\x56\x58\x42\x17\x24\xb0\x44\xa1\x0c\xd8\x85\xb0\x20\x14\xe0\xd6\xa2\x56\xa2\x06\x5c\xa3\xb2\xb0\x14\x37\x20\x36\xe2\x1a\x15\xd8\x05\x32\xbf\x95\x6e\xe6\x5a\x2c\x41\xa8\x12\x36\x08\x0a\xb1\x04\xdb\x80\x69\x57\x2b\x8d\xc6\x40\x89\xa2\xac\x9b\xe2\x1a\x4a\xb4\xc8\x22\xf2\x4f\x6c\xb0\x67\x64\x30\xef\x60\x9a\xbc\x8d\x26\xce\x6b\x27\xfb\xfe\xfe\x45\x5c\x73\x74\x26\x83\xf5\x3e\xbf\x32\xb9\x8b\xe1\xde\x84\x03\x68\x64\x47\xb2\xe0\x64\xb2\x66\xa4\x93\x19\x2c\xc5\x35\x26\xde\xde\x19\xd4\xa8\x12\x9a\x49\x53\x42\xaa\x1a\x0d\x32\x03\x41\x78\x5a\xa8\x39\x3a\xd6\xcc\xc0\x71\xb8\x90\xef\x61\xb6\xa3\xa0\x60\xda\x3b\xfa\xe3\xd7\x53\xa9\x64\x8c\x42\x2a\xa7\x19\x30\x0b\xc2\xbe\x4b\xd3\xcc\xef\x5c\x8e\xde\x17\x5a\x37\xfa\x78\xf8\x7a\x84\xd4\xfd\x8c\xf2\x69\x97\x2e\x5e\x8b\xb5\x38\x2f\xb4\x5c\x59\x40\x42\x3a\x81\x18\x9e\x01\x3a\x2f\x2c\xd1\x18\x31\xc7\x38\xcd\xbb\x8c\xdc\x4b\x76\x01\x3b\x48\x5e\x07\x96\x8d\x38\x54\xa4\x92\x16\x4b\xd0\x48\x91\x81\xca\x1a\xd8\x2c\xd0\x2e\x50\x7b\x5a\x69\x40\x35\xea\x8b\x7f\xa2\x6e\x60\x4d\x90\x1c\xac\x6e\x31\x24\xb0\x0b\x74\x53\x0e\xd9\xc2\xd3\x3e\xb9\x3f\xcd\xa3\x89\x97\x40\xa9\x2a\x8a\x26\xbf\xc3\xc5\x97\xef\xd9\xd1\x29\x4c\xa7\xd0\xaa\xa2\x59\xae\x84\x16\x97\x35\x3e\xa7\x18\x25\x07\x52\xca\x22\x3e\x34\x25\xeb\xc1\x52\x63\xab\x37\x97\x57\x10\x06\x45\x9f\x57\x64\x45\x98\xc4\x24\x4c\x26\xec\x67\x6f\x4f\x46\xbd\xbd\x23\x1f\x8d\x41\x6b\x0e\xcf\xcc\x5b\xe5\x84\x97\xca\x7e\x5c\x0b\x4d\x47\xae\x2c\x61\xf8\x17\x98\x72\x22\x95\xb1\x42\x15\xf8\xb6\xda\x99\x98\xa3\x65\xd6\x7c\x3c\x07\x13\xdd\x69\x4a\x92\x5c\xc2\x92\xd5\xb0\xbd\xe0\xc9\x0c\x94\xe4\xd4\x4e\x32\x67\xc1\xc6\xfb\x49\xd4\x75\x12\xe3\x5a\xd4\x71\x06\x71\xd2\xe5\x88\x64\x9b\xc2\x2d\xf8\xc5\x6c\x9f\xc3\x5d\x4a\xa7\x47\xa8\xd7\xa3\x98\x64\x70\x13\xf2\x81\x8e\xbe\xa9\xe0\xa6\x67\x3a\x5a\xd3\x51\xb6\x1f\xc6\xba\x45\x00\xb2\x82\x84\xc2\xb2\xa9\x08\x32\x9b\xcd\xc2\x32\xc0\xa1\x40\x27\xfa\xcb\xe7\x14\x1e\xa3\xf2\x21\x02\xb8\xf3\x5c\xb6\x4c\x4d\xe5\xc1\x0e\xd9\x57\x3d\x19\x97\x3f\x03\xc5\x8e\xdc\xae\x6c\xd8\x21\xff\xba\x27\xef\x6a\xa6\xa3\x1c\x7c\x4d\xb1\xc3\xe0\x9b\x40\x3e\xd7\x59\x47\xe9\x7d\xbd\xb1\x43\xff\x6d\x4f\xef\x6b\xb3\xe3\xf4\xae\x16\xd9\xa1\xff\xff\x81\xde\xd5\x73\x47\xe9\xfb\x0a\x64\x87\xc3\x9f\x7a\x0e\x7d\xc5\xe0\x78\xf8\xf9\xef\xfa\x79\x1f\xc9\x77\xe9\x87\x51\x9d\xc2\xa1\xf1\xb6\x4a\xb6\xe3\xe3\xae\xdf\x9e\xbe\x46\xdc\x52\x1a\xde\xe6\xac\x56\xda\xd7\x8b\x7f\xe7\xa3\x2f\x2c\xde\xb6\xf9\xeb\x73\xb7\xe1\x53\x8f\xe3\xce\x91\x00\xc3\xc3\x49\xdf\x11\xa1\xcb\xb3\x6e\x52\xc9\xb0\x92\xf3\x07\xb8\x9b\xa2\x58\xa0\x2d\x6f\xf9\xcf\xf7\xfc\xf7\xab\xef\xf8\xe7\x9b\xaf\xf9\xe7\xbb\x6f\x33\x68\x19\xa1\x75\x18\xad\x47\x69\x3d\x4e\xeb\x91\xaa\xba\x11\x0c\xe0\x01\x93\x71\xad\x9f\xff\xb5\x61\x63\x64\x3e\xb7\x67\xb0\x14\xab\x0b\x37\x7e\x1f\x98\x29\x83\x8b\xf0\x33\xd0\x78\x9c\xfb\x64\x99\xbf\x52\xeb\xe6\x1a\x93\x2d\x9d\x6d\x7b\x25\xe4\x07\xa9\xd6\xa2\x96\x25\x9d\x70\x27\xf0\x01\x9e\x81\xbf\x7e\xe4\xec\x38\x8a\x82\xfe\xb0\x18\x17\x99\x6b\x08\x6b\x15\xc5\x05\xe2\x90\xb6\x7c\x9e\x7a\xb2\xce\x7d\x56\x0f\x92\x6a\x98\x6c\xc3\xcc\xba\xce\xd7\x07\xd8\xd3\xfe\x0a\x0a\x58\x59\xc1\x9a\xd3\xc9\xc9\x0c\xd6\xac\x64\x92\x3e\xf7\xa0\x27\xb3\x70\x47\xb2\x48\xb7\xca\xcf\x98\x17\x9f\x9a\xb7\x31\x8f\x73\x42\x8a\x33\x47\x78\x97\x8e\xd5\x18\x56\x94\x3b\xe9\xa4\xd6\x74\x0a\x45\xa3\xd6\xa8\xed\x0f\x54\x0c\xf8\xb1\x21\xc3\xb5\x4b\x3e\xde\xa4\xb2\xfe\xe8\x33\x40\x25\xc4\x4b\xbe\x9e\xbd\x3e\x1f\x50\x72\xb7\xb8\x80\x0f\x57\x1d\x90\xe7\xf9\x68\x0b\x8c\x7c\x4b\xeb\x50\xb8\xf9\xc1\x17\x2e\xa3\x39\x3a\x9a\x48\xd4\xef\x5c\xfd\x1c\xa8\x57\xd6\x04\xeb\x36\x9a\xd0\x73\xca\xca\x1d\xb3\x19\xd0\x16\x52\x65\xe2\x01\xd9\x68\xe9\x23\x9b\x78\x8c\x03\xee\xe1\x4c\xbe\xec\xa3\xf5\xe0\x72\xc2\x03\xf7\x21\xe7\xf9\xf0\xf9\xec\xb3\x31\xb8\x4b\x31\xf7\x3b\x95\x94\xd9\x71\xaa\xac\xa8\xc8\x5d\x0d\x52\xa9\x12\x5a\xa6\xbd\xf0\x7e\xf2\xb8\xa0\xf8\xca\x9c\xc0\x20\xe0\x84\x69\x50\xdb\x1b\xae\xad\x96\xf0\x0c\xe2\xae\xa0\x11\x7d\x29\x9e\xc1\xbc\xb1\x8c\xd0\x49\x18\xef\xa3\xc3\xdb\x75\x14\x7b\xce\xb4\xd9\x5e\xb8\xe4\x79\x9e\xd2\xff\xf4\x80\x3b\x7e\xa6\x74\x92\xa4\x5d\x5a\x79\xa4\xd1\xdd\x11\x74\xbf\x6d\x99\xf3\x23\x76\x8c\xd7\xe0\x80\x6e\x64\xf9\x95\x8f\x94\x07\x83\xe2\x09\xc3\xf2\xe0\x0a\x7b\xaf\x76\x2f\xf1\x88\x6e\xf7\xd8\x97\xf5\x39\x68\xc5\x57\xaa\xc4\x6d\x22\x69\x47\x7f\x6a\x45\x99\xf5\x47\xab\xea\x15\x3a\xa2\x2c\x09\x95\xca\x7e\x42\x67\xbf\x52\x8f\x71\x35\x4b\x3e\xa8\x51\x57\x4b\x26\xb6\x83\xed\x34\x20\x86\x72\xb3\x3b\x9f\x42\xce\x19\xd8\x30\x13\x05\x59\x78\x4f\x12\xd3\xfe\xc7\x59\xe7\x71\xe9\xc5\x49\xfb\x37\x9c\xc7\x4a\x7e\xcc\x36\xee\x2b\x99\xbd\x26\xc8\xa1\x23\xf2\x2f\xa8\xe6\x76\x31\x04\xc1\x21\x5f\x75\x38\x07\xc8\xdf\xe0\xe6\x01\x0b\x96\x58\xa1\x06\x7f\x19\x23\x13\xa1\xd6\x7c\xd8\x60\xd1\xac\x51\x27\x7c\x81\xa8\xe8\xc6\xc9\x37\x32\x7f\x1f\xf1\x7a\x44\xee\x52\xfc\x51\x5e\xa0\xca\xb1\x58\x60\x71\x0d\x0b\xd4\x48\xd7\x3d\xb1\x6e\x64\x09\x24\x6d\x81\xa2\x04\xa9\xc0\xb4\x45\x81\xc6\x00\x95\x66\x24\xed\xa8\xdb\xde\xe0\x26\xf4\x59\xa7\xcd\x95\x79\xa1\x75\x06\xcd\x35\x69\x84\x5a\xe7\x09\x95\x2f\xee\x86\xfd\x9c\xc0\xb7\x03\x57\xc7\x6f\xb7\x21\xf1\x42\xeb\xee\x52\xd9\x33\x76\xf8\xa8\x35\x45\x47\x92\x3e\x26\x3e\xc8\xfe\x1f\x13\x1c\xe7\x41\x1e\xcd\x60\xa7\x7a\xfe\x54\x79\xea\x7c\x2f\xa1\x8e\x74\x66\x1d\xc6\x47\xd3\x36\xbd\xf8\xf2\xfd\x11\x7d\x83\x84\xfa\xdf\xd4\xf8\x50\x72\xdd\x55\xdb\xab\x72\x4c\xf7\xe9\xd4\xb7\xab\xfd\x35\x26\xec\x5a\xac\x41\x18\x10\xde\xf2\x79\x80\x2a\x19\xbc\xc2\x42\x8a\x1a\xdc\x55\x01\x0b\xd1\x1a\x6e\xd3\xbd\x6c\x9e\x9a\x0e\x71\x89\x76\xd1\x94\x4e\xb4\xe2\x76\x1a\xfc\xaa\x6a\x79\x8d\x2c\xa5\xe1\x76\xca\x1c\xad\x45\x6d\x32\xe2\x2f\x2d\x94\x0d\xba\xda\x82\x17\x4e\x17\xb4\xf5\x53\xe3\xbb\xfc\x6e\x62\xb8\x04\xe6\x9c\x7a\x51\x94\x19\x51\x76\x0b\xe8\x34\x26\x65\x48\x4c\xd5\xe8\x25\xc4\xa7\xef\xce\x62\x12\xd1\x68\x1a\x9f\xc0\x6f\x67\x31\x6c\x78\xb7\xbd\x23\xc6\x24\x84\x3b\x43\x42\x95\xf0\x9b\x5f\x61\x67\x18\xdf\xd1\x11\xbc\x59\x1b\xa7\x91\xeb\xf9\xec\xf9\xfe\x68\xeb\xbf\xf3\xf3\xe8\x05\x60\xaf\xdb\x3e\xf6\x5e\xd7\xb5\x7a\xe0\xc9\xe0\xb4\x6f\x16\x9c\xdd\xf7\x68\x70\xaa\xda\xba\x3e\x7b\xe0\xd9\xe0\xd4\x37\x00\x5c\x23\xed\xa0\x3a\x54\x00\x9e\xdd\xff\xae\x70\xea\x9a\x00\x1f\xc3\x64\xff\x51\xe1\xd4\xdd\xe4\xcf\xee\x7f\x56\x38\x75\x99\xe6\xec\xa1\x87\x85\xd3\xae\x52\x3d\xfb\x98\xa7\x85\xde\xb1\xef\x74\x6b\x17\x37\xfb\x2f\x0b\x47\x6e\x4f\xbb\xd4\xce\xf5\x1c\xc5\x03\x2d\x43\xc3\x9e\xd1\xa1\xda\xc0\x97\x1d\x07\xab\x01\xe3\x1f\x1c\xf6\x74\xf2\xf2\x66\xb3\xa1\xe3\x73\x88\x3c\x7c\x7d\xd8\xe1\xd1\xdf\x64\x0f\xcb\x15\x6f\xf6\x49\x76\xdb\x5d\x92\xd0\xe2\x9d\x5b\xd6\xf8\x86\xf9\x67\xac\xd1\x22\x94\xfc\xe3\x52\x4f\xd0\xd1\xed\xef\x1d\x2b\xde\x74\x2e\x27\x71\x1e\x7a\xe5\xd3\x83\xe1\xfc\x30\xdc\x46\x02\x62\x17\x16\x7b\x1b\xd4\x49\x0c\xea\xf2\x4f\x95\x8e\x1d\xe3\xfb\x92\x71\x27\xfa\x90\x2b\x5f\xfc\xa3\x15\x75\xb2\x39\x52\x3d\x86\x6c\xc8\xa9\x9b\xe0\x7b\xdc\xd2\xde\xed\xa8\xff\xe2\x12\xb0\x09\xde\x33\x01\x38\x28\xc2\x36\xfb\xe7\x03\xed\x7d\xcd\x76\x73\x63\x0a\x51\xd7\x53\xba\x1f\xd2\x80\xbc\xe2\xda\xed\x5e\x0c\xdd\x0c\x1b\xe5\x61\xa3\x3b\x60\xaf\xa5\xef\x63\x0d\x47\x22\x09\xd8\x29\xff\x7c\x70\xfc\xd4\xac\x6e\x7e\xbc\xb1\x68\xde\x35\x2f\x1b\x28\x9a\x95\x44\x03\x97\x04\x80\x4a\x37\x4b\x8e\x96\x5f\xa5\xb2\xdf\xff\xa0\xb5\xb8\x01\xa3\x0b\x2a\x9c\x4a\x63\xbb\x10\x09\x4f\x34\x97\x90\x48\x63\xc7\x81\xd9\x95\x19\x6c\x16\xb2\x58\xc0\x46\xd6\x35\x5c\xba\x53\x69\x29\x95\x5c\xb6\xcb\xee\xf4\xa8\xb9\x90\x34\xf4\x49\x12\xe8\x78\xe8\x44\x8c\x15\x1c\x02\x92\xf0\xba\x90\x54\x81\x8a\x3e\x18\x47\x64\x49\x69\x2c\x5c\xbc\x27\xa5\x32\x26\x1c\xba\x4c\xfc\x2e\x51\xa3\xa2\xb0\x34\xba\xc8\xd7\x43\x51\x4b\x21\x5b\xfa\xa9\x1a\x15\x31\x49\x9f\x3b\xc8\x29\x30\x0d\x37\x43\x68\x30\x63\x30\x47\x63\xd1\xac\x6e\x08\x35\xf3\xec\x5e\x75\x3e\x48\xd2\x3c\x71\x3a\xa4\x43\x05\x47\xd4\xfb\x9e\x78\x7d\x7e\xc0\x13\xde\xf4\x3b\x0e\xf9\xdf\x78\xe2\xf5\x79\xe0\x09\x32\xee\xe3\x3c\xf1\xfa\x9c\x3d\xe1\xdf\xc7\x88\xbf\x37\x48\xe7\x89\xd2\x76\xb5\x33\x09\x3d\x6c\x3c\xd7\x03\xf4\xa5\xb4\x3f\x58\xc2\x4d\x33\x92\x77\x02\xb8\x5d\x61\x61\x91\x97\x41\xf6\xbb\xc4\xb1\x96\xf1\xe8\xc6\xe5\xbc\xe7\x9c\x47\xfb\xe9\x5f\x01\x00\x00\xff\xff\xbd\xa2\xb9\xfd\x6b\x21\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xc4\x59\xfb\x6f\xdc\x36\xf2\xff\x79\xf5\x57\x4c\x16\x5f\x34\x52\xa3\x68\xfb\xfa\xf6\x0a\xc7\x6b\xa0\xed\xa5\x41\x8c\x6b\x52\x9c\xd3\xf4\x07\x23\x68\x69\x69\xb4\x4b\x5b\x4b\xed\x91\xd4\x3e\xce\xf5\xff\x7e\x98\x21\x25\x51\xfb\xb0\x9d\xbb\x1c\xae\x40\x63\x2d\x39\x2f\xce\x0c\x67\x3e\x24\x27\x93\x59\x7d\x72\xd5\xc8\xaa\x80\x6b\x13\x4d\x26\xf0\xac\xfb\x11\x2d\x45\x7e\x23\x66\xc8\xdf\x72\xb1\xac\xb5\x85\x38\x1a\x8d\x1b\x65\x44\x89\xe3\x28\x1a\x8d\x67\xd2\xce\x9b\xab\x2c\xaf\x17\x93\x59\xbd\x9c\xa3\xbe\x36\xfd\xc7\xb5\x19\x47\x49\x14\xd9\xed\x12\xe1\x1d\xfd\x23\x95\x8d\xa2\xbc\x56\x86\xe5\xd0\xd0\xaf\xaa\xc0\x52\x2a\x2c\x1c\xc1\x14\x64\x6d\x85\x9b\x7a\xd3\x54\x95\xfb\xfa\xa1\xae\x2b\x14\xaa\x1d\x5e\x5c\xa1\x76\xdf\x17\x56\x4b\x35\xf3\xdf\xdb\xc5\x55\xed\x19\xde\x5e\x5d\x63\x6e\xdd\xf7\x4f\x8d\xca\xad\xac\x15\x59\x52\x36\x2a\x87\xd8\xb2\xae\x04\x1c\x77\x9c\x80\xe1\x0f\xb8\x8d\x46\x66\x2d\x6d\x3e\x07\x4b\xdf\xb9\x30\xce\xec\xce\xc6\x93\x68\x34\xd2\x68\x1b\xad\x60\xdc\xb4\x83\xe3\x80\x92\x4c\x0e\x89\x54\x53\x55\xe1\xbc\x5f\x48\x48\x72\xe5\x86\x86\x52\x68\x85\x43\x39\x34\x12\xd2\x38\xdb\x43\x1a\xb7\x88\x01\x0d\x7b\x64\x40\xc3\x23\x21\x8d\xf3\x54\x48\x53\xf3\x48\x48\xd3\x7a\x30\xa4\x2a\xfd\xd8\x38\x1a\x15\x58\x8a\xa6\x62\x19\x4b\xa1\x64\x1e\x8f\xaf\x44\x01\x14\xf4\x71\x12\x8d\xee\xa2\xbb\x5d\xbf\x4b\xe3\xb4\xc6\x09\xd0\xea\xc9\xd7\x5e\xac\x85\xe9\x34\x30\x0b\xfe\xfc\xb3\x1f\xea\xe2\xd8\xca\x7b\x55\xd5\x57\xa2\x8a\x13\x78\x2f\xaa\x06\x03\x29\x6e\x05\xef\x6a\x1e\x8f\xaf\x4d\xe6\x28\x93\x8e\x93\xc2\xf4\x20\x9f\x92\x01\x47\x97\x02\x8f\x51\xd7\x11\x33\x3f\x67\x3f\x19\x4f\x69\xd6\xe4\x9c\x5a\x4c\xda\x3b\xa6\xe4\xf9\x04\xfe\x8e\x15\x0a\x83\x71\x42\x34\x9d\xdd\xd9\x05\xda\x78\xfc\x7f\xb8\xa1\xfd\x87\x45\xeb\x07\x33\x4e\xa1\xa7\x79\x75\x84\x26\xc9\x5e\x2b\x1b\x27\xcf\xbf\x4c\xa2\x51\x99\x39\xd3\xa7\xde\x01\x9d\x01\x44\xfe\xb6\x8c\x4b\x05\xf4\x33\xb6\x73\x69\xdc\x2a\x53\x10\x7a\x66\xe0\xf2\x03\xff\x4a\x68\xff\xa2\x2e\x45\x8e\xb7\x77\x89\x5b\xd3\x6d\x34\x9a\x4c\xe0\xe5\x46\x1a\x8b\x2a\x47\xa8\x4b\x10\xb0\xd6\x62\xb9\xc4\x02\xda\x24\x81\x05\x0a\x65\xc0\xce\x85\x05\xa1\x00\x37\x16\xb5\x12\x15\xe0\x0a\x95\x85\x85\xd8\x82\x58\x8b\x1b\x54\x60\xe7\xc8\xf2\x96\xba\x9e\x69\xb1\x00\xa1\x0a\x58\x23\x28\xc4\x02\x6c\x0d\xa6\x59\x2e\x35\x1a\x03\x05\x8a\xa2\xaa\xf3\x1b\x28\xd0\x22\xab\xc8\x3e\xb1\xc3\x9e\x91\xc3\x7c\x80\x69\xf2\x36\x1a\xb9\xa8\x9d\xec\xc7\xfb\x67\x71\xc3\xd9\x19\xf7\xde\xfb\xfc\xda\x64\x2e\x87\x3b\x17\xf6\x43\x03\x3f\x92\x07\x47\xa3\x15\x13\x9d\x4c\x61\x21\x6e\x30\xf6\xfe\x4e\xa1\x42\x15\xd3\x4c\x92\x10\x51\x59\x6b\x90\x29\x08\xa2\xd3\x42\xcd\xd0\x89\x66\x01\x4e\xc2\xa5\xfc\x00\xd3\x1d\x03\x05\xf3\xde\xd1\x3f\x7e\x3d\xa5\x8a\x87\x24\x64\x72\x92\x02\x8b\x20\xea\xbb\x24\x49\xfd\xce\xe5\xec\x7d\xa9\x75\xad\x8f\xa7\xaf\x27\x48\xdc\x9f\x41\x3d\x6d\xcb\xc5\xb9\x58\x89\x8b\x5c\xcb\xa5\x05\x24\xa2\x13\x18\xc3\x33\x40\x17\x85\x05\x1a\x23\x66\x38\x4e\xb2\xb6\x22\x77\x9a\x5d\xc2\xf6\x9a\x57\x81\x67\x23\x4e\x15\xa9\xa4\xc5\x02\x34\x52\x66\xa0\xb2\x06\xd6\x73\xb4\x73\xd4\x9e\x57\x1a\x50\xb5\x7a\xfe\x4f\xd4\x35\xac\x68\x24\x03\xab\x1b\x0c\x19\xec\x1c\xdd\x94\x23\xb6\xf0\xb4\x2b\xee\x4f\xb3\x68\xe4\x35\x50\xa9\x8a\xa2\xd1\xef\x70\xf9\xc5\x07\x0e\x74\x02\x93\x09\x34\x2a\xaf\x17\x4b\xa1\xc5\x55\x85\x2f\x28\x47\x29\x80\x54\xb2\x48\x0e\x4d\xc9\xaa\xf7\xd4\xd0\xeb\xf5\xd5\x35\x84\x49\xd1\xd5\x15\x59\x12\x25\x09\x09\x8b\x09\xc7\xd9\xfb\x93\x49\x6f\xef\x28\x46\xc3\xa1\x15\xa7\x67\xea\xbd\x72\xc2\x4b\xe5\x38\xae\x84\xa6\x96\x2b\x0b\xe8\xff\x0b\x5c\x39\x92\xca\x58\xa1\x72\x7c\x5b\xee\x4c\xcc\xd0\xb2\x68\x6e\xcf\xc1\x44\xdb\x4d\x49\x93\x2b\x58\xb2\xec\xb7\x17\x3c\x99\x82\x92\x5c\xda\x49\xe7\x34\xd8\x78\x3f\x8a\xaa\x8a\xc7\xb8\x12\xd5\x38\x85\x71\xdc\xd6\x88\x78\x93\xc0\x2d\xf8\xc5\x6c\x5e\xc0\x5d\x42\xdd\x23\xb4\xeb\x51\x42\x52\xd8\x86\x72\xa0\xe5\xaf\x4b\xd8\x76\x42\x07\x6b\x3a\x2a\xf6\x8f\xa1\x6d\x11\x80\x2c\x21\xa6\xb4\xac\x4b\x1a\x99\x4e\xa7\x21\x0c\x70\x24\xd0\xaa\xfe\xe2\x05\xa5\xc7\x00\x3e\x44\x00\x77\x5e\xca\x86\xb9\x09\x1e\xec\xb0\x7d\xd9\xb1\x31\xfc\xe9\x39\x76\xf4\xb6\xb0\x61\x87\xfd\xab\x8e\xbd\xc5\x4c\x47\x25\x78\x4c\xb1\x23\xe0\xeb\x40\x3f\xe3\xac\xa3\xfc\x1e\x6f\xec\xf0\x7f\xd3\xf1\x7b\x6c\x76\x9c\xdf\x61\x91\x1d\xfe\xff\xef\xf9\x1d\x9e\x3b\xca\xdf\x21\x90\x1d\x09\x7f\xe9\x24\x74\x88\xc1\xc9\xf0\xf3\xdf\x76\xf3\x3e\x93\xef\x92\x3f\x06\x38\x85\x53\xe3\x6d\x19\x6f\x86\xed\xae\xdb\x9e\x1e\x23\x6e\xa8\x0c\x6f\x32\x36\x2b\xe9\xf0\xe2\x6f\xdc\xfa\x42\xf0\xb6\xc9\xce\x2f\xdc\x86\x4f\x3c\x8d\xeb\x23\x01\x85\x1f\x27\x7b\x07\x8c\xae\xce\xba\x49\x25\x43\x24\xe7\x1b\xb8\x9b\xa2\x5c\xa0\x2d\x6f\xf9\x9f\xef\xf8\xdf\x2f\xbf\xe5\x3f\x5f\x7f\xc5\x7f\xbe\xfd\x26\x85\x86\x09\x1a\x47\xd1\x78\x92\xc6\xd3\x34\x9e\xa8\xac\x6a\xc1\x03\xfc\xc1\x6c\x8c\xf5\xb3\x5f\x6a\x76\x46\xea\x6b\x7b\x0a\x0b\xb1\xbc\x74\xdf\x1f\x02\x37\xa5\x70\x19\xfe\x0c\x2c\x1e\xd6\x3e\x59\x64\xaf\xd5\xaa\xbe\xc1\x78\x43\xbd\x6d\x1f\x42\xfa\x20\x9c\x80\x54\x2b\x51\xc9\xc2\x15\xe8\x1d\x40\xb9\x82\x10\x97\x28\x06\x83\x7d\x89\xf2\x35\xe9\xc9\x2a\xf3\x15\x3c\x28\xa0\x61\x61\x0d\xab\xe8\x2a\x5b\x1d\x10\x4f\x7b\x29\x00\xab\xb2\x84\x15\x97\x8e\x93\x29\xac\x32\xfa\x8a\x93\x17\x7e\xe8\xc9\x34\xdc\x7d\xac\xd2\xad\xe8\x33\x96\xc5\x1d\xf2\xd6\xad\x2e\x23\xa2\x71\xea\x18\xef\x92\xa1\x19\xfd\x8a\x32\xa7\x9d\xcc\x9a\x4c\x20\xaf\xd5\x0a\xb5\xfd\x9e\x1a\xbf\xff\x36\x04\x03\x9a\x05\xb7\x32\xa9\xac\x6f\x73\x06\x08\x2e\xbc\xe2\xa3\xd8\xf9\x45\x4f\x92\xb9\xc5\x05\x72\x18\x61\x40\x96\x65\x83\x74\x1f\xc4\x91\xd6\xa1\x70\xfd\xbd\x07\x29\x83\x39\x6a\x43\xa4\xea\x77\x46\x3a\x07\xb0\xc9\x8a\xc6\xda\x4d\x25\xf4\x8c\x2a\x70\x2b\x6c\x0a\xb4\x5d\x54\x11\xfb\x81\x74\xb0\xf4\x81\x4f\x3c\x45\x17\x1e\xbf\x82\xf3\x8b\x16\x75\xdc\x46\x23\xd4\x9a\x0d\xc0\xbc\x5e\xa1\xa6\x0d\x22\x4b\x02\x1c\xdc\x90\x7d\x3b\x72\xe2\x58\x32\x77\xac\x97\x5a\xa7\x50\xdf\x10\x1f\x6a\x9d\xc5\x94\x40\x0e\xcf\xbc\xa0\x61\x62\x99\x4c\xe0\x37\x04\xdc\x2c\x29\xab\x1c\x8a\xad\x2a\xe0\xb8\x1a\xc8\x45\x33\x9b\x5b\xb8\xda\xba\x35\xba\x1e\x92\x80\xd0\x74\xdc\x85\x52\xe4\x16\x7a\xf4\xe3\x84\xe1\x26\xc7\x25\xc3\x4d\x97\xb9\xf4\x8b\x10\xc6\xb6\x8f\x97\x6e\x94\x95\x0b\x4c\x61\x3d\x97\xf9\x9c\x40\xb0\x5f\x2f\xd8\xda\x09\x31\x5b\x93\x8b\xaa\x9a\xb4\xe6\xb6\xa4\x84\x66\x68\x02\xb5\x81\x75\xdd\x54\x85\x37\x3c\xeb\x52\xd1\x25\xe1\x11\x34\xfb\x52\xeb\x16\x91\xf8\x9c\x9c\x4c\xe0\x17\xb7\xd4\xba\x84\x9a\xa1\x15\xd5\x3c\xc3\x4b\x6c\x94\x93\x8e\x05\x83\x75\x33\x67\x8d\x0a\x57\xa8\x61\xce\xb1\xcd\xe0\x87\xc6\x52\x01\x97\x96\x65\x15\x35\x9a\x94\x16\xb4\x96\x55\x05\xd7\x8d\xb1\xa0\xf1\xb9\x16\xd2\x20\x48\x0b\xc2\x3c\x97\x26\x8b\xbc\xa9\xa8\x75\x72\x60\x43\xb2\x8f\x17\x5d\x2d\x3a\x98\xc0\x21\x9c\x7a\x68\xbb\xfa\x82\xf1\xd9\x67\xc3\xe1\xb6\x81\xdc\xbf\x8d\xc9\x98\x9d\x6d\x2c\x4b\x3a\xc2\x2c\x7b\xad\x84\x73\x17\x49\xa7\xbc\x9b\x3c\xae\x68\x7c\x6d\x4e\x82\x8c\x3a\x61\x1e\xd4\x76\xcb\xc8\x79\x01\xcf\x60\xdc\xc2\x55\xd1\x1d\xb4\x52\x98\xd5\x96\x09\x5a\x0d\x1d\xa4\x76\x86\x15\x58\xa2\xde\xdb\x3a\x47\x8e\xb2\x83\x2a\xe4\x5c\x9e\xee\x15\x8e\x2c\xcb\x12\xfa\xff\x50\x98\x7e\xa2\x26\x12\x27\x6d\x33\x79\x64\x30\x1c\xf0\xb8\xdf\xe7\x2c\xf9\x11\xb5\xd3\x5b\x70\xc0\x36\x8a\xc8\xd2\x67\xd0\x83\xc9\xf2\x84\xc7\xb2\xe0\xe2\xe2\x5e\xeb\x5e\xe1\x11\xdb\xee\xf1\x2f\xdb\x73\xd0\x8b\xaf\x55\x81\x9b\x58\x52\xa9\xf8\xd4\x86\xb2\xe8\x8f\x36\xd5\x1b\x74\xc4\x58\x52\x2a\x95\xfd\x84\xc1\x7e\xad\x1e\x13\x6a\xd6\x7c\xd0\xa2\xf6\x04\x11\xdb\x76\x6c\xe7\xda\xa9\x3f\x64\xb4\xa8\x24\x94\x9c\x82\x0d\x7b\x52\xd0\x8f\xf7\x34\x31\xef\x7f\x5c\x8d\x1e\x57\x76\x9c\xb6\x7f\x23\x78\x6c\xe4\xc7\x6c\xe3\x0e\xbf\xee\x5d\x7d\x1d\x02\x4b\x7f\x43\x35\xb3\xf3\x3e\x09\x0e\xc5\xaa\xa5\x39\xc0\xfe\x06\xd7\x0f\x78\xd0\xd5\x30\x7f\x04\x27\x17\xed\x77\xfd\x03\x6d\xbf\xeb\xfb\x7c\x15\xf2\x51\x51\xa0\xf3\x42\x3e\xc7\xfc\x06\xe6\xa8\x91\x0e\xf9\x62\x55\xcb\x02\x48\xdb\x1c\x45\x41\x7d\xde\x34\x79\x8e\x86\xd0\x80\x41\xd2\x76\x34\x6c\x6f\x70\x1d\xc6\xac\xb5\xe6\x51\x38\x64\xd0\xbf\x1f\x68\xdc\x2c\x38\x68\xa2\xa3\xbb\xc7\xd5\x79\xf2\xff\xc7\x24\xc7\x45\x50\x47\x53\xd8\x39\x33\x7d\xaa\x3a\x75\xb1\x57\x50\x07\x36\xb3\x0d\xc3\xd6\xb4\x49\x2e\xbf\xf8\x70\xc4\xde\xa0\xa0\xfe\x37\x2d\x3e\x54\x5c\x77\xcd\xf6\xa6\x1c\xb3\x7d\x32\xf1\x8f\x14\xfe\xf0\x1a\xde\x55\xad\x40\x18\x10\xde\xf3\x59\x40\x2a\x79\x78\x89\xb9\x14\x15\xb8\x03\x22\xe6\xa2\x31\x7c\x39\xfb\xaa\x7e\x6a\x5a\xc2\x05\xda\x79\x5d\x38\xd5\x8a\x2f\x51\xe1\x57\x55\xc9\x1b\x64\x2d\x0e\xe9\xcd\xd0\x5a\xd4\x26\x25\xf9\xd2\x32\x78\x63\xcc\xc1\x0b\x27\x54\xb7\x7a\x6a\xfc\xdb\x8e\x9b\xe8\x8f\xfe\x19\x97\x5e\x14\x45\x4a\x9c\xed\x02\x5a\x8b\xc9\x18\x52\x53\xd6\x7a\x01\xe3\xd3\x77\x67\x63\x52\x51\x6b\xfa\x3e\x81\xf7\x67\x63\x58\xf3\x6e\x7b\x47\x82\x49\x09\xdf\x07\x12\xc6\x7c\xef\x57\xd8\x3a\xc6\xdf\xe3\x09\xde\xac\xb5\xb3\xc8\xdd\xf4\xed\xc5\xfe\xe8\x83\x4f\x1b\xe7\xc1\xbb\xcf\xde\x1b\xcb\x30\x7a\xed\x5d\xe5\x03\x0f\x45\xa7\xdd\x15\xd1\xd9\x7d\x4f\x45\xa7\xaa\xa9\xaa\xb3\x07\x1e\x8b\x4e\xfd\xb5\x8f\xbb\x3e\x3d\x68\x0e\x01\xc3\xb3\xfb\x5f\x93\x4e\xdd\xd5\xcf\xc7\x08\xd9\x7f\x4a\x3a\x75\xf7\x37\x67\xf7\x3f\x26\x9d\xba\x4a\x73\xf6\xd0\x73\xd2\x69\x8b\x60\xcf\x3e\xe6\x41\xa9\x0b\xec\x3b\xdd\xd8\xf9\x76\xff\x3d\xe9\xc8\x39\x7a\x97\xdb\x85\x9e\xb3\xb8\xe7\xe5\xd1\xf0\xa6\xf0\x10\x36\xf0\xb0\xe3\x20\x1a\x30\xfe\x99\x69\xcf\x26\xaf\x6f\x3a\xed\xef\xf9\x0e\xb1\x87\x6f\x4e\x3b\x32\xba\x3b\x8d\xc3\x7a\xc5\x9b\x7d\x96\xdd\x4b\x4e\x49\x64\xe3\x9d\xf3\xf6\xf0\xae\xe1\xaf\x58\xa1\x45\x28\xf8\x8f\x2b\x3d\xc1\x3d\x7e\x77\x1e\x59\xf2\xa6\x73\x35\x89\xeb\xd0\x6b\xdb\x9e\x8d\xa9\x3e\xf4\xa7\x94\x80\xd9\xa5\xc5\xde\x06\x75\x1a\x03\x5c\xfe\xa9\xca\xb1\x13\x7c\x5f\x31\x6e\x55\x1f\x0a\xe5\xcb\x7f\x34\xa2\x8a\xd7\x47\xd0\x63\x28\x86\x82\xba\x0e\x7e\x0f\x1f\x32\x76\xdf\x51\x7e\x76\x05\xd8\x04\xaf\xd8\x00\x9c\x14\xe1\xe3\xca\xe7\x3d\xef\x7d\x4f\x2c\xfd\x7d\xc0\x09\x9f\xff\x29\x2a\xee\x91\xc5\xab\xa1\x13\x63\xad\xfc\xd8\xe0\x6c\xd8\x59\xe9\x6f\x2f\xfb\x96\x48\x0a\x76\xe0\x9f\x4f\x8e\x1f\xeb\xe5\xf6\x87\xad\x45\xf3\xae\x7e\x55\x43\x5e\x2f\x25\x1a\xb8\xa2\x01\x28\x75\xbd\xe0\x6c\xf9\x55\x2a\xfb\xdd\xf7\x5a\x8b\x2d\x18\x9d\x13\x70\x2a\x8c\x6d\x53\x24\xec\x68\xae\x20\x91\xc5\x4e\x02\x8b\x2b\xba\xcb\x0f\x59\x55\x70\xe5\xba\xd2\x42\x2a\xb9\x68\x16\x6d\xf7\xa8\x18\x48\xf2\xcd\x04\x69\xa0\xf6\xd0\xaa\x18\x1a\xd8\x27\x24\xd1\xb5\x29\xa9\x02\x13\x7d\x32\x0e\xd8\xe2\xc2\x58\xb8\xfc\x40\x46\xa5\xcc\xd8\xdf\x37\xf2\x6b\x54\x85\x8a\xd2\xd2\xe8\x3c\x5b\xf5\xa0\x96\x52\xb6\xf0\x53\x15\x2a\x12\x92\xbc\x70\x23\xa7\xc0\x3c\x7c\x2d\x46\x1f\x53\x1e\xe6\x6c\xcc\xeb\xe5\x96\x48\x53\x2f\xee\x75\x1b\x83\x38\xc9\x62\x67\x43\xd2\x23\x38\xe2\xde\x8f\xc4\xf9\xc5\x81\x48\x78\xd7\xef\x04\xe4\x7f\x13\x89\xf3\x8b\x20\x12\xe4\xdc\xc7\x45\xe2\xfc\x82\x23\xe1\x5f\x45\x49\xbe\x77\x48\x1b\x89\xc2\xb6\xd8\x99\x94\x1e\x76\x9e\xbb\x0d\xf6\x50\xda\x37\x96\x70\xd3\x0c\xf4\x9d\x40\x77\xaf\x45\x9a\x6d\x4d\xcb\x1e\x58\x39\x1e\x9c\xb8\x5c\xf4\x5c\xf0\x68\x3f\xfd\x2b\x00\x00\xff\xff\xf7\xf1\x04\x67\x56\x23\x00\x00"), }, "/src/syscall/js/js_test.go": &vfsgen۰CompressedFileInfo{ name: "js_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249434611, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 434, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\x90\xb1\x6e\xea\x40\x10\x45\x6b\xf6\x2b\xae\x5c\xc1\x7b\x80\x81\x74\x88\x8e\x02\x25\x2d\xf4\xd1\xd8\x0c\xce\x1a\x7b\x76\xb5\x33\x8b\x84\xa2\xfc\x7b\xe4\x24\x4a\x8a\xc4\xe5\xd5\xd9\xb3\x23\x9d\xb2\x6c\xc2\xb6\xca\xbe\x3b\xa3\x55\x57\x96\xf8\xff\x3d\x5c\xa4\xfa\x4a\x0d\xa3\xd5\x67\x63\x35\xe7\x7c\x1f\x43\x32\x14\xc3\xf2\xd2\x14\xce\x0d\x7a\x7c\xe1\xd4\xea\x36\xa6\x2c\xbc\x08\xc9\x37\x5e\xa8\x73\x97\x2c\x35\x4e\xac\xf6\x28\xb6\x0f\x72\xe3\xa4\x3e\xc8\xd4\xf0\xef\xcb\x5e\x9e\x66\x78\x75\x93\xb2\xc4\x91\x7a\x06\x29\x72\x54\x4b\x4c\xfd\x1c\x55\x36\x04\xe9\xee\x18\xde\xa2\x26\x65\x05\xc5\x98\x42\x4c\x9e\x8c\x71\x09\x09\x84\x87\xcd\xa2\xf2\x06\x96\x9b\x4f\x41\x7a\x16\x5b\xba\x89\xfd\x3e\x39\xc7\x6a\x36\x02\xd6\x63\x60\x31\x4a\xd6\xbb\xdd\x66\x35\xae\x7d\xd2\x37\xf7\x13\xe0\x40\xa9\xa2\x86\xf7\xa1\xeb\xb8\xb6\x3f\x23\xd8\xf2\x78\xf5\x71\x5a\x1c\xf6\xf0\x0a\x09\x06\xcd\x71\x68\xcd\x67\x54\x77\x1c\x3e\x1a\x3f\x1d\x8b\xe1\xe3\xf7\x00\x00\x00\xff\xff\xfa\x2e\xc6\x7a\xb2\x01\x00\x00"), }, - "/src/syscall/syscall.go": &vfsgen۰CompressedFileInfo{ - name: "syscall.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249532652, time.UTC), - uncompressedSize: 1360, + "/src/syscall/legacy.go": &vfsgen۰CompressedFileInfo{ + name: "legacy.go", + modTime: time.Date(2022, 4, 19, 10, 35, 9, 981777300, time.UTC), + uncompressedSize: 2357, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x94\xc1\x6e\xe3\x38\x0c\x86\xcf\xd6\x53\xb0\xc6\x02\xb1\x51\xd7\x6a\xaf\x01\x72\x69\xb1\x28\x7a\xda\x02\xed\x62\x0f\xdd\x1e\x64\x9b\x76\x98\x2a\x94\x21\xc9\x99\x74\x06\x79\xf7\x81\x2c\xbb\x4d\x52\x60\x06\x98\x5b\x62\x91\x14\x7f\x7e\xbf\x28\x65\x67\x96\xd5\x40\xba\x81\x8d\x13\x52\xc2\xe5\xc7\x1f\xd1\xab\xfa\x4d\x75\x08\xee\xdd\xd5\x4a\x6b\x21\x68\xdb\x1b\xeb\x21\x13\x49\x3a\xb0\x53\x2d\xa6\x42\x24\x69\x47\x7e\x3d\x54\x65\x6d\xb6\xb2\x33\xfd\x1a\xed\xc6\x7d\xfe\xd8\xb8\x54\xe4\x42\xec\x94\x85\x6f\xca\x32\x71\xf7\x68\x89\x3d\x36\xb0\x82\x56\x69\x87\xe3\x91\x26\xc6\xdb\xa1\x6d\xd1\xc2\xcb\x6b\xf5\xee\x51\x88\x76\xe0\x1a\x88\xc9\x67\x39\xfc\x10\xc9\xc6\x95\xf7\xda\x54\x4a\x97\x4f\xe8\xb3\xf4\xaf\x56\x0f\x6e\x7d\x67\xd8\x19\x8d\x69\x01\x1b\x57\x3e\xb0\x47\xcb\x4a\xff\x53\x6d\xb0\xf6\x59\xc8\x8f\xa9\x09\xb5\xa0\x91\xb3\xcf\x4b\x72\xb8\x58\xc1\xf5\x78\x76\x54\xf8\x3e\x14\xae\xa7\x92\x79\x79\xa7\xb4\xce\x52\x6d\xba\xb4\x00\xe7\x2d\x71\x77\x5c\x21\x0f\xb9\x47\x6d\xaf\x80\x49\x8b\x24\x39\x88\xe4\x90\xe7\xe2\x30\x09\xe8\x83\xd8\xff\xa2\xf0\xd8\x0d\xb5\x70\x71\x36\x89\xd0\xc7\x6f\xda\x40\x6b\x8d\x4d\x0b\x48\xa7\xd4\x65\x80\xe2\x71\x0b\x01\x8c\x03\x36\x1e\xd4\x4e\x91\x56\x95\xc6\x02\x1c\x22\xac\xbd\xef\xdd\x52\xca\x5f\xd2\xa9\xb4\xa9\xe4\x56\x39\x8f\x56\x36\xa6\x96\x13\x69\x57\x6e\x9b\x34\x17\x41\xcc\x17\x68\xde\x0e\x78\x2a\xef\xd9\x4c\x1c\xb2\x6a\xa2\x37\x0a\xed\xcc\xe3\xc9\x29\x2c\x57\x70\xa6\xf2\x3c\x24\xdc\x49\x2d\x7c\xc9\xbc\x18\x33\xff\xe5\x06\x5b\xe2\x69\x60\xe7\x41\xe5\x03\xef\xcc\x1b\x66\x5f\x9d\x50\x8d\xb0\x2c\xfa\xc1\x72\xd0\x24\x4e\xb9\xa9\xbe\x47\x6e\x8e\xd8\x16\x50\x95\x65\x99\x8b\xa4\x35\x36\xfa\x27\xb4\x4e\xdc\xe0\xfe\xf6\xdd\xe3\x49\xe4\xe2\x7f\x5e\xe4\xd1\x62\x04\xab\x15\x5c\xdd\x44\x57\x55\x16\xd5\x5b\xb4\xc3\x1f\x3a\xec\x65\x49\xaf\x79\x0e\x52\x42\x63\x78\xe1\x61\x70\x18\xc7\xad\xb9\x00\x47\x5c\x23\x90\x87\xc6\x60\xa4\x8f\xfb\xa8\x99\xbe\x23\x6c\x07\xed\x29\x70\x80\x7a\xad\xac\xaa\x3d\x5a\x27\xce\xdc\x7a\x74\x11\x5d\xde\x2c\x5f\xc3\x60\x66\xaa\x83\xc3\xac\x87\xf8\xc2\xcb\x47\x13\xc8\xdb\x11\xa9\x94\xc0\xe6\xca\xf4\x1f\x91\x7f\xef\xc9\x67\xb5\x69\x10\x88\xfd\x18\xf2\x14\x1d\x94\xe1\x9e\xfc\xb3\x55\x7d\x01\x03\xb1\xef\xbd\x1d\xc3\xf2\x02\xae\x0b\xb8\x1e\xdf\x87\x94\x9f\x33\x05\x72\x50\x9b\x9e\xb0\x81\xd6\x9a\x2d\x84\xe6\x1d\xcc\xfb\xc7\x1b\x50\x3b\x43\x0d\xc4\xfd\x43\xdc\x05\xe9\x59\x1c\x82\x5f\x23\x58\x54\x7a\xde\x52\x1f\x59\x61\x34\xbc\xf0\x79\x39\xaf\x92\x99\x9f\x9b\x5c\x5a\x40\x0d\xd1\xad\xc4\x3e\xf4\x1e\x78\x53\x01\x55\xc0\x6d\x15\x87\xcd\x37\xef\x8f\x2a\xc0\xad\x23\xdb\xe8\x24\xa0\xe9\xb5\x8b\xf9\xc3\xd5\x8d\x38\x88\x9f\x01\x00\x00\xff\xff\x69\xec\xc3\x44\x50\x05\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xec\x94\x41\x6f\xdb\x38\x10\x85\xcf\xe2\xaf\x98\xe8\x24\x2d\xb4\x52\xec\xdd\xcd\xc1\x0b\x5f\x5a\x04\x41\x80\x36\x2e\xea\x14\x6d\x4f\xc5\x58\x1a\xd9\x74\x28\x52\x1d\x52\x4e\x8d\x20\xff\xbd\xa0\x2c\xd9\xb1\x1d\x14\x49\xd1\x02\x05\xda\x9b\xc1\xf7\xc6\xf3\xe6\x1b\x52\x59\x36\x37\xa3\x59\x23\x55\x01\x8a\xe6\x98\xaf\x3f\xd9\xb5\xcd\x51\x29\x21\x6a\xcc\x6f\x70\x4e\xb0\x3d\x90\x55\x6d\xd8\x41\x24\x82\x70\x2e\xdd\xa2\x99\xa5\xb9\xa9\xb2\xb9\xa9\x17\xc4\x4b\xbb\xfb\xb1\xb4\xa1\x88\x85\x58\x21\xf7\xb5\xaf\x4d\xd1\x28\x82\xbf\x96\x36\x9d\xcc\x96\x94\xbb\x56\x44\xc5\x84\xc5\xfa\x9a\x25\x15\xd7\xe6\x95\xc1\x02\xc6\x50\xa2\xb2\xd4\xca\x95\xd4\x8d\x9d\x68\x82\x31\xfc\x3d\xd8\xfc\xdd\x2d\xb2\x96\x7a\xfe\x86\xa5\x76\xb4\x73\x8b\xb2\xd1\x39\xd4\xfe\xf4\xfd\xc6\x11\xc5\x70\x27\x02\x59\xc2\xc9\x41\xc9\x9d\x08\x82\xa5\x4d\x2f\x94\x99\xa1\x4a\x2f\xc8\x45\x61\x6e\xb4\x35\x8a\xc2\x38\x7d\x89\x4a\x45\x21\x31\x1b\x0e\x13\x08\xbb\xd2\x91\x9f\xc2\x51\x05\x7e\x12\x0b\xda\x38\xc0\x15\x4a\x85\x33\x45\x09\x58\x22\x58\x38\x57\xdb\x51\x96\x7d\x93\xca\x4c\x99\x59\x56\xa1\x75\xc4\x59\x61\xf2\xac\x43\x63\xd3\xaa\x08\x63\x11\xdc\x8b\xe0\x68\x3a\xc7\x0d\x89\xfb\x6e\xbc\xce\xff\x62\x7d\x85\x15\x45\x1a\x2b\x02\xeb\x58\xea\x79\xfc\x80\xab\x9f\xaf\xa0\x92\x18\x98\x72\xb3\x22\x8e\x62\xc8\x32\x60\x72\x0d\x6b\xd0\x52\x81\x2c\x7b\x89\x0a\xd1\x22\xda\xdf\xd1\x78\xdc\xda\x3c\x27\x59\x3e\xb6\x22\xaf\x04\xbb\x3f\x14\x81\x8f\x1e\x3c\xba\xcb\x36\xbf\x37\x7f\x6e\x24\x13\x8c\xc6\x70\x80\xbe\x53\xfc\xfc\x41\x1b\x6c\x63\x1c\xb7\xc6\x77\xba\xa0\x52\xea\x6e\x69\x41\x8d\x5a\xe6\x51\xd8\x7a\x7d\xc7\x83\xd8\x7d\x71\x7a\xa9\x57\xe6\x86\xa2\xb0\xd3\x3b\xb6\x5d\xe0\xbd\xa2\x36\x83\x07\x19\x6f\x21\x4f\x37\x7a\xe4\x18\xeb\x04\x70\x90\x00\x0e\x13\xc0\x7f\xa0\x91\xda\xd5\x8e\x63\x88\x78\x90\x00\x0f\xfb\x83\x04\x88\x19\xce\x99\xb5\xe9\xaf\x5c\xe9\x07\xdd\xdf\x56\x38\xed\xc3\xfc\x0f\x25\x9c\xec\x10\xb3\xf7\x96\x7d\xe6\xc3\xae\xb1\xd8\x92\xee\xda\x45\x9c\x5e\xea\x82\xbe\x44\xa7\x71\x7a\xa9\x5d\x14\xc7\xc9\x91\x34\xd8\x49\x6d\xae\xad\x30\xec\x85\x96\xc8\xfe\x73\x11\x87\x8d\xfa\xd7\x17\x27\x70\x9a\xc0\xf9\xd5\x64\xfa\x71\x7a\x88\xe9\xec\x28\x71\x02\xf8\x6f\x02\xf8\x5f\x02\x78\xf6\x83\x98\x9d\x3d\x13\xda\xc3\x08\x3f\x15\xa0\x2c\xc1\xf7\xf6\xc9\x86\xa7\x43\xb8\xf3\x0f\xed\x86\x58\xa7\xc6\x32\x29\x42\x4b\x60\x34\x4c\xa6\xf0\x21\x81\x05\xd6\x35\x69\x0b\x52\x83\xd4\xd2\x81\x29\x21\x34\x36\x84\xee\x1b\x2b\x82\xa3\x75\xdc\x3f\x6f\x23\x6f\xf1\xf6\xcf\xdd\x7d\x12\x29\xde\x92\xba\x32\xe7\xfe\x53\xff\x74\x60\xbf\x1c\xa5\xe7\xc2\x78\xe4\xba\xfc\xde\x6f\xf8\xfb\x2e\xd2\xd7\x00\x00\x00\xff\xff\x8a\x7e\xd0\x06\x35\x09\x00\x00"), }, - "/src/syscall/syscall_darwin.go": &vfsgen۰CompressedFileInfo{ - name: "syscall_darwin.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249605443, time.UTC), - uncompressedSize: 2539, + "/src/syscall/syscall_js_wasm.go": &vfsgen۰CompressedFileInfo{ + name: "syscall_js_wasm.go", + modTime: time.Date(2022, 4, 19, 10, 35, 10, 11777300, time.UTC), + uncompressedSize: 2263, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xbc\xd5\x4d\x6f\x32\x37\x10\x07\xf0\x33\xfb\x29\xa6\x1c\xa2\x5d\x75\x0b\x4a\x4a\x39\x70\x8b\x08\x4d\x51\x08\x20\x20\x6a\x72\x8a\x8c\x99\x5d\x0c\x7e\x59\xd9\xe3\xd2\xa8\xca\x77\xaf\x96\x40\xa3\xbc\xd9\xa8\x8a\x9e\x0b\x5a\xd9\xcb\x6f\xfe\xf2\x58\x3b\xed\x76\x69\x7a\x4b\x2f\xe4\x0a\x36\x0e\xce\xce\xe0\x27\x66\x55\xb7\x93\xb4\xdb\xf0\xf3\x71\x39\x3f\xac\x25\x15\xe3\x5b\x56\x22\xb8\x27\xc7\x99\x94\x49\x22\x54\x65\x2c\x41\xb3\x14\xb4\xf6\xcb\x16\x37\xaa\x5d\x9a\x6a\x8d\x76\xe3\x5e\x1f\x36\xae\x99\x24\x85\xd7\x1c\xea\x9f\x69\x3f\x2d\xf6\x0f\x69\x96\x81\x17\x9a\x2a\xb2\xf0\x4f\xd2\x70\x3b\x41\x7c\x0d\x1b\xd7\x1a\x6a\x42\xab\x99\x9c\x2c\x37\xc8\x29\x2d\xb2\x7a\x9b\x33\x87\x9f\x6c\x4a\xb1\xe4\x8f\xa6\x42\xfd\x48\x96\xa9\xca\x48\xa1\x31\xeb\x25\x8d\x86\x45\xf2\x56\xc3\xfc\x61\xfe\x38\x99\x0e\xc6\x61\xc0\x11\xa3\x6e\x27\x40\xcc\x17\x97\x8b\x6e\x27\x8c\x14\x51\xe5\xf7\x53\x18\x19\x65\x46\xa7\x30\x6a\xbb\x12\x36\x80\xdc\xde\x5c\x0d\x67\x61\x82\xaf\xc3\x44\xff\x8f\x28\x61\x55\x98\x98\xdd\x46\x09\xf7\xa4\xa4\xd0\xdb\x50\x73\x1e\x6e\x47\xc3\xf1\x4d\x24\x09\xb2\x55\xc4\x99\x0d\x2e\xaf\xe2\x50\xc1\x35\xc9\x50\x93\xfb\xe3\xc5\x28\x9e\x25\x92\x23\x0c\x54\x11\x61\x1a\x27\x76\x56\x10\x06\x88\x3f\x67\xc3\xc5\x20\x76\x53\x11\xb7\xc1\x7b\x3a\x18\x44\x0e\x93\x4b\xe3\x42\x29\xfa\xa3\xc9\x3c\x92\xc2\xeb\x48\x5b\xef\xc6\xf1\xa6\x96\x48\x95\x08\x9d\xe8\xf5\x60\x31\x1d\x5e\x45\x11\x1f\x43\xee\x4e\x40\xca\x18\x72\x5d\x23\x2b\x2c\x98\x97\x54\xef\xb6\xdb\x30\x2c\x60\x87\xb0\xf1\x8e\xe0\xf0\xee\x2f\xe7\x39\xd0\x1a\xa1\xfe\x50\xa3\x05\xce\x34\x18\x2d\x9f\xa0\xb2\x42\x13\x30\x0d\x5e\xaf\x51\x56\x85\x97\x50\xa2\x46\x2b\x38\xa0\xb5\xc6\x82\x42\xe7\x58\x89\x39\x48\xb1\xc5\x17\xbd\xe9\x44\xa9\x99\xec\xc1\x92\xad\xea\x8f\x3f\xa1\xda\xbb\xcd\xd6\xcb\xfe\xdc\xe4\x80\x7f\x23\xf7\x84\x50\xa4\x19\x90\x81\x12\x09\x18\x28\x63\x11\x8e\x65\xde\xf0\x40\x6b\x46\x20\x34\x97\x7e\x85\x6e\x9f\xf4\x30\x55\x40\x33\xf5\xb6\xba\xf5\x9a\x84\xc2\x17\xa0\x07\x9a\x91\xf8\x0b\xf7\x33\x84\x84\xd1\xa0\x0d\x81\x50\x95\x44\x85\x9a\x70\xd5\x3b\x42\xad\xcf\x5b\xbb\x0f\x5d\xa4\xd9\xeb\xb1\x1e\xa6\x50\xaa\x84\xf6\x6e\xa2\x31\x4b\x1a\xcf\xc9\xf3\x61\x66\x1d\xb0\x94\x2c\xab\x72\x60\xe7\x39\xb0\x8b\x1c\xd8\xaf\xc7\x7f\x65\x90\xda\xf3\x1c\xec\xc5\x71\x21\xaf\x73\xc2\xc0\x5a\x6d\xf6\x93\xeb\xd8\xbb\x2f\x9c\xec\x7d\xa5\xfb\x1f\x57\xaa\xfb\xe1\x95\x1c\x58\x27\x07\xf6\x5b\x0e\xac\xfb\x3f\xcb\x86\xd1\x8f\x19\xee\xbf\x27\x44\xc5\xb4\xe0\x69\xf3\x3f\x15\x84\x7b\x7f\x33\x9a\xaf\xc5\x2d\xdb\xcd\xbf\xa9\xb1\xb3\xaf\xa9\xcf\xea\x7d\xef\x99\xcf\x4e\x74\xeb\x24\xff\x06\x00\x00\xff\xff\x43\xea\x58\x6c\xeb\x09\x00\x00"), - }, - "/src/syscall/syscall_darwin_arm64.go": &vfsgen۰CompressedFileInfo{ - name: "syscall_darwin_arm64.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249666026, time.UTC), - uncompressedSize: 2516, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xbc\xd5\x4d\x6f\x1a\x3d\x10\x07\xf0\x33\xfb\x29\x46\x9c\x76\xf5\xec\x03\x4a\x9a\xe6\xc0\x2d\x22\x34\x45\x21\x80\x80\xa8\xc9\x29\x32\x66\x76\x31\xf8\x65\x65\x8f\x4b\xa3\x2a\xdf\xbd\x5a\x02\x89\xf2\x66\xa3\x2a\xea\x05\x2d\x78\xf9\xcd\x5f\x1e\xcb\xd3\x6e\x97\xa6\x33\xf7\x42\x2e\x60\xe5\x92\x76\x1b\xfe\x7b\xfa\x92\x54\x8c\xaf\x59\x89\xe0\xee\x1d\x67\x52\x26\x89\x50\x95\xb1\x04\xcd\x52\xd0\xd2\xcf\x5b\xdc\xa8\x76\x69\xaa\x25\xda\x95\x7b\x7e\x58\xb9\x66\x92\x14\x5e\x73\xa8\x3f\xc6\xdd\xb4\xd8\x3e\xa4\x59\x06\x5e\x68\xaa\xc8\xc2\xef\xa4\xe1\x36\x82\xf8\x12\x56\xae\xd5\xd7\x84\x56\x33\x39\x9a\xaf\x90\x53\x5a\x64\xf5\x32\x67\x0e\xdf\x59\x94\x62\xce\xef\x4c\x85\xfa\x8e\x2c\x53\x95\x91\x42\x63\xd6\x49\x1a\x0d\x8b\xe4\xad\x86\xe9\xed\xf4\x6e\x34\xee\x0d\xc3\x80\x23\x46\x01\x60\x3a\x3b\x9b\x9d\x9e\x84\x89\x22\x62\x7c\x3b\x04\x91\x11\x64\x70\x08\xa2\xd6\x0b\x61\x03\xc8\xd5\xe5\x79\x7f\x12\x26\xf8\x32\x4c\x74\xbf\x47\x09\xab\xc2\xc4\xe4\x2a\x4a\xb8\x7b\x25\x85\x5e\x87\x1a\x73\x7b\x35\xe8\x0f\x2f\x23\x49\x90\x2d\x22\xce\xa4\x77\x76\x1e\x87\x0a\xae\x49\x86\x5a\xdc\x1d\xce\x06\xf1\x2c\x91\x1c\x61\xa0\x8a\x08\xe3\x38\xb1\xb1\x82\x30\x40\xfc\x98\xf4\x67\xbd\xd8\x39\x45\x5c\x07\xcf\x69\xaf\x17\xd9\x4c\x2e\x8d\x0b\xa5\xe8\x0e\x46\xd3\x48\x0a\xaf\x23\x6d\xbd\x1e\xc6\x9b\x5a\x22\x55\x22\xb4\xa3\x17\xbd\xd9\xb8\x7f\x1e\x45\x7c\x0c\xb9\x3e\x00\x29\x63\xc8\x45\x8d\x2c\xb0\x60\x5e\x52\xbd\xda\x6e\x43\xbf\x80\x0d\xc2\xca\x3b\x82\xdd\xbb\xff\x1f\xe5\x40\x4b\x84\xfa\x8a\x46\x0b\x9c\x69\x30\x5a\xde\x43\x65\x85\x26\x60\x1a\xbc\x5e\xa2\xac\x0a\x2f\xa1\x44\x8d\x56\x70\x40\x6b\x8d\x05\x85\xce\xb1\x12\x73\x90\x62\x8d\x8f\x7a\xd3\x89\x52\x33\xd9\x81\x39\x5b\xd4\xd7\x3e\xa1\xda\xba\xcd\xd6\xe3\xfa\xd4\xe4\x80\xbf\x90\x7b\x42\x28\xd2\x0c\xc8\x40\x89\x04\x0c\x94\xb1\x08\xfb\x32\x2f\x78\xa0\x25\x23\x10\x9a\x4b\xbf\x40\xb7\x4d\xba\x9b\x27\xa0\x99\x7a\x59\xdd\x7a\x4d\x42\xe1\x23\xd0\x01\xcd\x48\xfc\xc4\xed\xf4\x20\x61\x34\x68\x43\x20\x54\x25\x51\xa1\x26\x5c\x74\xf6\x50\xeb\xfd\xd6\x6e\x43\x17\x69\xf6\xbc\xad\xbb\xf9\x93\x2a\xa1\xbd\x1b\x69\xcc\x92\xc6\x43\xf2\xb0\x9b\x56\x3b\x2c\x25\xcb\xaa\x1c\xd8\x51\x0e\xec\x38\x07\xf6\x65\xff\xaf\x0c\x52\x7b\x94\x83\x3d\xde\xff\x90\xd7\x39\xa1\x67\xad\x36\xdb\x99\xb5\xef\xdd\x07\x4e\xf6\xba\xd2\xcd\xbf\x2b\x75\xfa\xe6\x95\x1c\xd8\x49\x0e\xec\x6b\x0e\xec\xf4\x2f\xcb\x86\xd1\xb7\x19\x6e\x3e\x27\x44\xc5\xb4\xe0\x69\xf3\x49\x05\xe1\x5e\x9f\x8c\xe6\x73\x71\xcb\x36\xd3\x4f\x6a\xec\xe4\x63\xea\xbd\x7a\x9f\xbb\xe7\x93\x03\xdd\x3a\xc9\x9f\x00\x00\x00\xff\xff\x8b\x6f\x14\xc9\xd4\x09\x00\x00"), - }, - "/src/syscall/syscall_linux.go": &vfsgen۰FileInfo{ - name: "syscall_linux.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249759400, time.UTC), - content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x73\x79\x73\x63\x61\x6c\x6c\x0a\x0a\x63\x6f\x6e\x73\x74\x20\x65\x78\x69\x74\x54\x72\x61\x70\x20\x3d\x20\x53\x59\x53\x5f\x45\x58\x49\x54\x5f\x47\x52\x4f\x55\x50\x0a"), - }, - "/src/syscall/syscall_nonlinux.go": &vfsgen۰FileInfo{ - name: "syscall_nonlinux.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249863108, time.UTC), - content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x20\x26\x26\x20\x21\x6c\x69\x6e\x75\x78\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x2c\x21\x6c\x69\x6e\x75\x78\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x73\x79\x73\x63\x61\x6c\x6c\x0a\x0a\x63\x6f\x6e\x73\x74\x20\x65\x78\x69\x74\x54\x72\x61\x70\x20\x3d\x20\x53\x59\x53\x5f\x45\x58\x49\x54\x0a"), - }, - "/src/syscall/syscall_unix.go": &vfsgen۰CompressedFileInfo{ - name: "syscall_unix.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 249967191, time.UTC), - uncompressedSize: 3396, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xe4\x57\xdd\x6e\x1b\x37\x13\xbd\xde\x7d\x8a\x31\xf1\x21\xe0\x46\xfc\x56\x3f\x6d\x8d\x22\xae\x2e\x1c\x57\x35\x04\xb8\x76\x10\xd9\x4d\x8b\x20\x30\x28\x69\x56\xa6\xb4\x22\x55\x92\x2b\x47\x48\xf4\xee\x05\x7f\x56\x92\x25\x5d\xd4\x48\x10\x14\xc8\xdd\x82\x73\x66\xe6\xf0\xcc\x90\x9c\x6d\x36\x27\xea\xd5\xb0\x12\xe5\x18\xa6\x06\x5e\xbc\x80\x93\x47\x21\xc7\xea\xd1\xa4\xcd\x26\x34\x6a\x03\xdb\xac\xa6\x0b\x3e\x9a\xf1\x09\x82\x59\x99\x11\x2f\xcb\x34\x15\xf3\x85\xd2\x16\x68\x9a\x10\x5d\x49\x2b\xe6\x48\xd2\x84\x54\xd2\xf0\x02\x49\x9a\x26\x64\x22\xec\x43\x35\xcc\x47\x6a\xde\x9c\xa8\xc5\x03\xea\xa9\xd9\x7e\x4c\x0d\x49\xb3\x34\x2d\x2a\x39\x82\xe8\x7e\x8f\x72\x69\x68\x06\xef\x3f\x18\xab\x85\x9c\xc0\xa7\x34\x59\x68\x35\x42\x63\xe0\x55\x17\xa6\x26\xbf\x2c\xd5\x90\x97\xf9\x25\x5a\x4a\xa2\x85\x64\x69\x22\x0a\xa8\x71\x5d\x8f\xbb\x93\x63\x2c\x84\xc4\xb1\x0b\x91\x68\xb4\x95\x96\x20\x45\x99\x26\xeb\x34\x99\x9a\x9e\x5c\xba\x80\xd1\x27\x84\x43\xb9\x74\xa1\x50\x2e\x67\xb8\x3a\x96\xef\x66\x38\xc5\x91\x25\x59\x7e\xc1\xcb\x92\x12\x87\x22\x0c\x7c\xb0\xe0\xe7\x9d\xe6\x7c\x86\xb4\xde\x00\x83\x18\x2e\xbf\x42\x39\xb1\x0f\x34\xcb\xd2\xa4\x50\x1a\x84\x83\xb6\xce\x40\xc0\x2f\x07\x90\x33\x10\x8d\x86\xe7\x3d\xc3\x95\xc3\xd5\x80\xbe\x1c\xe3\x47\x2a\xb2\x7c\xe0\x83\xd3\x2c\x4d\x7c\xda\xf7\xe2\x03\x74\xc1\x81\x1b\x40\xba\x04\x1a\x81\x94\x67\x3d\xc3\xd5\x2e\x7e\x9d\xd6\x62\x38\xc7\x74\x1d\xf5\x37\x68\x51\x2e\xef\x47\x74\xc6\x60\x09\x81\x7b\xf6\x75\xd5\xf7\xb9\x0f\x05\xcf\x07\x8e\x24\x83\x65\xb6\x21\x53\xc9\x2d\x9d\x6f\xcb\xe5\x57\x2c\xd1\x22\x9d\x79\x2e\x4b\xae\xeb\x56\xff\x5d\x8d\xab\x12\xe1\xe5\xd4\xe4\xa1\x09\xbc\x91\x97\x1a\xf9\x78\x75\xab\x05\x8e\x6f\xd5\x95\xe2\x63\xe8\x42\xc1\x4b\x83\xde\x3c\x17\xb2\x32\x37\x12\xa1\x0b\xff\x6f\xd7\x3a\x87\x78\xaf\x57\xd7\x7c\x8e\x54\xf2\x39\x6e\x36\xb8\x0d\xee\x88\x8e\xb1\x40\x0d\xce\x87\x66\x91\xf8\x48\x2d\x51\xfb\x9a\x37\x9b\xb0\xed\x68\x10\x05\x44\x23\x8e\xd3\x64\x4d\x83\x08\x4f\x99\x77\xbb\x1e\xea\x02\x89\xe2\x18\x71\x67\x79\x72\x4c\x9c\x42\xc9\xd1\x1d\x5a\x5d\xa1\x27\xf4\x77\x25\x34\x1e\xa9\x46\xb4\xb8\x6a\x24\x9e\x5c\x00\x1e\x2b\x47\xb2\xe0\x52\x8c\x28\xf1\x58\x97\x71\x8f\x76\xed\x9c\xf7\xe5\x52\xcd\x90\x92\x68\x27\x4f\x5a\xf9\x89\x93\xe7\xe0\x94\xdd\x36\xd4\x20\xd8\xa9\xd5\x7c\xc1\x80\xb7\x19\xf0\x0e\x03\xfe\x03\x54\x42\xda\x85\xd5\x19\x50\xdd\x66\xa0\x3b\xf5\x02\x03\xd4\x1a\x7a\x5a\x4b\xe5\xd5\x17\x05\x14\x6e\xa3\x4f\xcb\x47\x06\x35\x99\x33\x28\xe0\x64\x2b\xb1\x76\xd8\xa2\xe6\xbc\x9f\x35\xdb\x5e\x48\x31\x1d\xd5\xf1\x68\xb7\xb2\xbc\x2f\x2d\xcd\x32\x76\x60\x6a\x6f\x4d\x9e\xd7\xc6\xd0\xa9\x0d\x5e\x11\x51\x80\xcb\xe7\xc4\x1e\xfc\x35\xb8\x7f\xf7\xb6\x7f\xdb\x73\x77\x3b\xe5\x6d\xb7\xd6\x86\xcf\x9f\x21\x7c\x76\x42\x5f\x71\xad\xf9\x2a\x16\xb1\x2f\x2d\x6a\xc9\xcb\xd0\x86\x94\x77\x1c\x55\x53\x8a\x11\xee\x5c\x6c\xc3\x95\x45\x06\xde\x6d\xf7\x52\x4b\x0e\xfd\xbd\x67\x38\xe0\xe4\x7f\xde\x81\x44\x47\x87\x5f\x68\x21\xed\xad\xba\x50\xd2\xa8\x12\x23\xf8\x50\x9a\xbd\x44\x0c\x5a\x0c\x5a\xfb\x5b\xc5\x8f\xc2\xde\xba\x6f\xaf\x7e\x78\x4b\xf2\x4b\xe5\x96\xe3\xa5\xe7\xb3\xbd\xe3\x5a\xc6\x7b\x70\x2f\x4b\x7d\x56\x43\xfc\xde\xf9\xc5\x45\x6f\xb0\xdf\x3e\xa7\x07\x95\x64\xc0\x7f\x64\xc0\x7f\x62\xc0\x4f\xbf\x52\x2f\x9d\x3e\xb3\x99\x76\x29\x7c\x93\xc6\x3a\xe9\x42\xa7\xd5\x81\x4f\xd0\x6c\xc2\x0c\xb5\xcc\x95\xd1\x58\x22\x37\x08\x4a\xc2\xcd\x00\xfe\x64\xf0\xc0\x17\x0b\x94\x06\x84\x04\x21\x85\x05\x55\x00\x51\x86\x40\x1c\x20\xea\xe2\xef\x94\x63\xfd\xbc\x8a\xbc\xe5\x8f\xdf\xd1\x99\xfe\x92\xde\xd5\x1b\xa5\xae\x55\x4f\x6b\xa5\xff\xbd\x60\xff\x39\x95\x9e\x2b\xc6\x91\x76\xf9\xbe\xcf\xf0\x97\x34\xd2\xeb\x95\xc5\x37\x56\xff\xa6\xd5\x3c\x4e\x93\x66\x33\xba\xd0\x97\xe1\x51\x40\xd7\x60\x5e\xa0\xdd\x57\x65\x77\x34\xb8\x13\xd2\xfe\x7c\xee\x9f\x82\x2c\xbf\xc6\x47\x5a\xa2\xa4\x26\x83\x06\xb4\xeb\xc1\x98\xc1\xd0\x39\x6a\x2e\x27\x08\xe1\xb9\x71\x88\x38\xba\x0c\xdd\x75\xdf\xda\x1f\x57\x18\xf4\xfa\xd7\x7f\x9c\x5f\xd5\x63\x8b\x7f\x33\x06\x68\xe3\xc0\xcc\x60\x18\x04\xd8\x33\x84\xe4\x0c\x5a\x5b\x2d\xc2\x56\x32\x1a\x7e\x62\xf2\x37\x4a\xb8\x37\x2d\xbe\x42\x77\x7e\x91\x66\x4e\x67\x37\x24\xad\xd3\x7f\x02\x00\x00\xff\xff\xe3\xd2\x2b\xac\x44\x0d\x00\x00"), - }, - "/src/syscall/syscall_windows.go": &vfsgen۰CompressedFileInfo{ - name: "syscall_windows.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250085523, time.UTC), - uncompressedSize: 2580, - - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x96\xdf\x6f\xdb\x36\x10\xc7\x9f\xad\xbf\xe2\xe0\x87\x81\xf4\xb8\x28\x72\x97\xcc\x09\xe0\x87\x20\x76\xd3\x01\xee\x52\x24\x2e\x0a\xac\x28\x0a\x4a\x3c\xc9\x6c\x29\x52\x20\x29\xa3\x4e\x9a\xff\x7d\xa0\x7e\xd8\xce\x92\x02\x1b\x5a\x18\x7d\x91\x45\xde\x97\x77\x9f\xfb\x21\xc2\x71\x5c\x98\xf3\xb4\x96\x4a\xc0\x27\x17\xc5\x31\xfc\xba\x5d\x44\x15\xcf\x3e\xf3\x02\xc1\x6d\x5c\xc6\x95\x8a\x22\x59\x56\xc6\x7a\x18\xda\x5a\x7b\x59\xe2\x30\x8a\xd6\xdc\x42\x29\x75\xed\xae\x35\xc2\x14\x7e\x4b\xa2\x28\xaf\x75\x06\xb7\xed\x11\xe2\x2d\xaf\x18\x68\x6e\x0b\xc7\x80\x27\x0c\xf8\x98\x01\x7f\x01\xb5\xd4\xbe\xf2\x96\x02\xb1\x09\x03\x3b\xee\x37\x18\xa0\xb5\x30\xb7\x56\x1b\x0a\xf7\xd1\xa0\xb2\x52\xfb\x77\xdc\x6a\xa9\x0b\x42\xa3\x81\x45\x5f\x5b\xdd\xab\x49\x1f\x9a\x32\x38\x66\x30\xbf\xb8\xbc\x9c\xdf\x46\x0f\x8f\x19\x4e\xbf\x05\xc1\x80\xff\xce\x80\x9f\x30\xe0\xa7\x87\x04\x3a\xfb\x2f\x40\x0c\xf8\x1f\x0c\xf8\x84\x01\x3f\x3b\x24\x5c\x32\xfe\xbf\x74\x41\x73\x1c\x1e\x41\x99\x8c\x0f\x0a\x7b\xf2\x9d\xb0\xe1\x11\xb4\x49\x10\x27\x27\x07\x65\x9f\xfc\x58\xf6\xf0\x08\xf2\x24\xe8\x93\xc9\x41\x52\x51\x86\x0b\x25\x53\xcb\xed\x86\xe4\x52\xa1\xe6\x25\xc2\x28\x1c\x4d\x4e\x29\x90\x15\xd7\x42\xe1\xf7\x07\xfe\x57\xd4\x02\x7d\x65\x4d\xc6\x85\xb0\xe8\xdc\x93\x28\xc1\xb6\x03\x99\x50\x20\x61\xe7\x87\x53\x10\x01\xa3\x05\xbf\xdb\xcc\x16\x0b\x0a\x0b\xc3\x05\xa1\xc1\xb5\xb1\xc1\x6b\xe7\xe5\x97\xd9\x62\x31\x0f\x7b\xf7\xaf\x5d\x71\x0e\x43\xb7\x71\x1e\x4b\x08\xed\x77\xa0\x8d\x07\xbe\xe6\x52\xf1\x54\x21\x03\x87\x08\x2b\xef\x2b\x77\x1e\xc7\x85\xf4\xab\x3a\x3d\xca\x4c\x19\x17\xa6\x5a\xa1\xfd\xe4\x76\x2f\xa9\x32\x69\x5c\x72\xe7\xd1\xc6\xc2\x64\x71\x77\x3b\xbb\xa3\x52\x0c\x1f\x76\x78\x55\x8b\xf7\xc6\x9a\x8c\xc2\x4b\xa9\x7f\x32\xbe\x02\xfd\xad\x17\xaf\x9a\xde\x91\x15\x48\xed\x29\x90\x5c\x40\xbb\xd3\xb4\x46\xe6\xb0\x82\xe9\x14\x6e\x97\xb3\x8f\xd7\x6f\x97\x6f\xde\x2e\x3f\xbe\xba\xf8\x6b\xb6\x98\x07\x63\x9f\x42\x12\x0d\x1e\x1e\x4b\xe7\x37\x37\xd7\x37\xcf\x28\xc7\x8d\xb2\x5b\x1c\x6f\x41\xae\xd0\x5f\x1a\xed\x8c\xc2\xd7\x46\x20\xc9\xda\xf7\x8e\x83\x41\x69\x44\x37\x49\x2f\xc6\x14\x48\x18\x9e\xa6\x8a\x74\xaf\x8c\xb3\xba\x2c\x37\x6d\x1d\x77\x09\xbe\xb3\xd2\xe3\x4b\x19\xb2\x6b\x07\xb4\xf7\x98\xd6\x39\xbc\xff\x90\x6e\x3c\x32\x10\x46\x6f\xbd\x33\x30\x6b\xb4\x8a\x57\x15\x0a\x18\x5d\x6f\xdf\x9f\x44\x0d\xc9\xb6\x2e\xa7\x53\x48\xe0\xeb\xd7\xbd\xe5\xb8\xc9\xb8\x19\xea\xa5\xe9\xf2\x22\x69\x9d\xd3\x68\x30\x18\x35\xd1\xa6\xd0\x86\x23\x0a\x75\x63\xa1\xbb\x12\x69\xa9\x9a\x22\x7d\xe3\xa3\x08\xe6\x3e\xbd\xf9\x17\xe9\xc3\x6c\x85\x2f\x10\xbf\x48\x9f\x85\x3a\xf5\x65\x0a\xa5\x69\xff\x22\x1c\x5d\x99\x60\x25\xf4\x71\xbd\xcb\x92\x6b\xb1\x90\x1a\x09\x05\x92\x95\x62\x77\x69\x6c\xab\xba\x3d\xb0\xa7\x5e\x9a\x0b\x5b\xac\xf7\x0f\x30\xe0\xb6\xc8\x60\xd4\xf7\x87\xdb\x62\x0d\xa3\xf7\x93\xe4\x6c\xfc\xa1\xfb\xe9\x85\xcf\xb6\x4e\x4b\xc5\x9e\xef\xdf\x15\x7a\xd4\x6b\xf2\x19\x37\xe0\xbc\x95\xba\xa0\x40\xd6\x5c\xd5\xd8\x2d\x19\xe4\xa6\xd6\x02\x52\x63\xd4\xbe\xc7\xe1\x90\x41\xce\x95\xc3\x7d\x4f\x4b\x59\xe2\xdf\x46\xe3\x9f\x3a\x37\xb6\xe4\x5e\x1a\x4d\xfc\x9d\x84\x51\x30\xdc\x19\x8d\x72\x67\x08\x37\x76\x06\xfd\x4c\x3c\x4b\x7d\xfc\x94\xd9\x6f\x2a\xdc\xdb\x0c\x90\x75\xe6\xef\xb7\xd7\xc1\xbe\x91\x42\xf3\x43\x68\x97\xca\x23\xfa\xe8\x21\xfa\x27\x00\x00\xff\xff\x2c\xc7\x65\xb8\x14\x0a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xbc\x95\x4f\x6f\xe3\x36\x10\xc5\xcf\xd6\xa7\x98\x15\x50\x54\xda\x38\x4a\xba\x1b\xe4\x90\xd4\x87\x36\xbb\x0d\xb2\x68\xb6\x40\xdd\xb4\x87\xc5\x22\xa0\xa9\xb1\xc5\x88\x1a\x0a\xe4\x48\xb1\x53\xf8\xbb\x17\xa4\xe4\xf8\x7f\xf7\x52\xf4\x94\x58\xf3\xe3\x7b\x6f\x48\x6a\x54\x0b\x59\x8a\x19\x82\x5b\x38\x29\xb4\x8e\x22\x55\xd5\xc6\x32\x24\xd1\x20\xee\x9f\x9d\x3d\xb9\x38\x4a\xa3\x68\xda\x90\x04\xdb\x10\xab\x0a\x1f\x91\x5a\x97\xa4\xf0\xe5\xab\x63\xab\x68\x06\x7f\x47\x83\xda\x1a\x89\xce\xc1\xd5\x08\x9e\x5c\x76\xab\xcd\x44\xe8\x24\xcd\x6e\x91\x93\xb8\xaf\xc5\x69\x34\x50\x53\xe8\x7f\x65\x77\xee\x81\x72\x9c\x2a\xc2\x3c\x49\xbd\xc4\xc0\x22\x37\x96\x80\x94\x8e\x06\xcb\x68\xf0\xe4\x3e\x52\xeb\x05\x57\x2b\x82\x18\x52\xeb\x85\x90\xda\x12\x17\x87\xfd\x7e\x9b\x3c\xa1\xe4\x38\xcd\x6e\x84\xd6\x49\xec\xb9\x78\x08\x41\xae\x5b\x19\x96\x55\xa2\xc4\x64\xd5\xc2\x10\x7a\xc1\xec\x57\xa4\x19\x17\x49\x9a\x46\x83\xa9\xb1\xa0\x3c\x7a\x7e\x0d\x0a\x7e\xdc\x43\xae\x41\x9d\x9c\x84\xe4\x25\x2e\x3c\xb7\x02\xee\x28\xc7\x79\xa2\xd2\x6c\x1c\xc4\x93\x34\x1a\x04\xdb\x2f\xea\x2b\x8c\xc0\xc3\x27\x10\x8f\x62\x38\xe9\x42\x85\xd4\x25\x2e\x36\xf9\x65\xb4\xda\x0e\xbf\x30\x5a\xf6\x27\xe0\x90\x91\xda\x47\x99\x94\x43\x68\xa1\xcb\x9e\xfe\xb7\xfb\x1f\xbc\xf7\xb7\x3c\x1b\xfb\x90\x43\x68\xd3\xd7\x30\x0d\xad\xe3\xfc\xbf\x59\x3e\xa0\x46\xc6\xa4\x4c\x37\x37\x66\xcc\x82\x13\xc7\xf0\xd6\xff\xf3\xc8\xfe\xc4\xc7\xec\x13\xfc\x29\x74\x83\x41\xf6\xec\x0c\xfe\x28\x94\x83\x0a\xb9\x30\x39\x28\x07\x82\x40\xe8\xca\x38\x3e\xc5\xb9\x90\x0c\xd2\xd4\x0b\x30\x53\x68\x6a\xc7\x16\x45\x35\x04\x9c\x4b\xac\x19\xfc\x65\xb8\x80\x5a\x0b\x89\x0e\x9e\x0b\xb4\x18\xe4\xfc\xfb\x00\x8e\x45\x55\x3b\x10\x16\xc1\x4c\x58\xf8\x36\x40\x38\x98\x6a\x23\xd8\x81\x22\xd0\x0a\x1b\xaf\xaa\x88\x2f\x2f\x32\x78\xe8\xc5\xe1\x59\xb8\x0a\xb0\x6a\xb4\x60\x74\x41\x4f\xc0\xe5\xc5\xe9\x44\x31\x08\x2b\x0b\xc5\x28\xb9\xb1\x08\x82\x72\xa8\x94\xd6\xca\xa1\x34\x94\x9f\x4e\x84\xc3\x3c\x78\xf7\xd6\x53\xc5\xf0\xac\xb8\x50\xe4\x3b\x52\xc4\x5d\xb8\x45\x8d\x19\xdc\x9a\xba\x40\xfb\x69\xec\xdb\x7d\xff\xae\x13\xa7\x1c\x1a\x87\x3e\x52\xff\x44\x11\x3b\x90\xa2\x71\xe8\xd6\xba\xc0\xb6\x21\x29\x58\x19\xca\x82\xe0\x5f\x08\x33\xe4\x4d\xe3\x55\x9b\x97\x17\x90\x3c\x17\x4a\x16\x50\x09\x96\x05\x3a\xf8\x34\x3e\x25\xc1\xaa\x45\xb0\x58\x5b\x74\x48\x1c\x94\x52\xef\x1e\xd4\xa4\xa1\x16\x2d\x03\x17\x48\xc0\xa6\xdb\x1d\xa8\x04\x35\x42\xeb\xc5\x10\x9c\x22\xf9\x3a\x9c\xce\x56\x07\x09\xb9\x41\x47\xdf\x33\x14\xa2\xf5\x3b\x13\xa4\xee\xba\xa5\xe1\x58\xb3\x68\xe0\x38\xfb\x80\x2d\x8c\x3a\xc9\xc4\x5f\x84\xee\xfa\xe4\xe8\xaf\xcf\x1d\x71\x78\xc1\x1d\x67\x77\x64\x60\x04\xcd\x2e\xa7\xc8\x6c\x73\xf7\x26\xc7\x1e\x7c\xff\x6e\x03\xac\x4c\x8e\xdb\xe4\x67\xad\xa8\x3c\x84\x92\x2f\x6c\xb3\x0f\x2a\x3f\x44\x36\x2a\xdf\xe6\x6e\x0f\x73\xb3\x5d\xee\xf7\xfc\x60\xd7\x76\xaf\xed\xb1\x7a\xc1\x03\xa0\x53\x2f\x3b\xdd\xfc\xac\x4b\xf7\xca\x6e\x99\x4f\xba\xca\x2e\x6e\x64\xe9\x0e\xd2\xbe\xb0\x01\x8b\xf0\xe6\x5c\xed\x67\x08\x85\x7b\x8f\xfe\xe2\x2f\x56\x92\xa6\xb0\x3a\xe0\x60\xf1\x53\x58\x38\x82\x4e\xe0\x0c\x7e\x38\x3f\x3f\x5f\x17\x3e\x3b\x94\x30\x82\xa4\xab\x7e\x17\xaa\x29\xbc\x0d\x7f\x03\x58\x1d\xf3\xad\xbe\xe1\x7b\xdf\xfb\x56\xbb\xbe\xf7\x9b\xbe\xd5\x31\x5f\x79\xcc\x57\x7e\xc3\xf7\xa6\xf7\x95\xbb\xbe\x37\x9b\xbe\xf2\x88\xef\x6a\x3e\x7e\x9c\x2b\x4e\xa4\xbf\xc4\x8a\x38\xcc\xc2\xf5\xf8\xfd\xf7\x41\x7d\x0d\x6f\x8e\x8f\xe9\x55\xa5\xfb\xd2\xe2\x5c\x71\x3c\x04\x6f\x93\x6e\xcf\x70\x35\x0d\x4f\xe1\xcd\x08\xce\xc3\xc2\x3d\x3f\x69\xc8\x19\x8d\xaf\x5f\xed\x67\x61\x29\x1e\x42\x7c\x6b\x7c\xcc\x99\x15\x15\x78\x79\xcc\xc3\x9c\x03\x32\x74\xfa\x82\xd6\x04\xd9\xab\xb5\xe9\x32\x5a\x46\xff\x04\x00\x00\xff\xff\x13\x9a\x86\xaa\xd7\x08\x00\x00"), }, "/src/testing": &vfsgen۰DirInfo{ name: "testing", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250404646, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), }, "/src/testing/allocs_test.go": &vfsgen۰CompressedFileInfo{ name: "allocs_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250152856, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 172, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x3c\x8c\x3f\x0b\xc2\x30\x10\x47\x67\xef\x53\x1c\x99\x5a\x85\x64\x77\x73\x12\x04\x41\xda\xee\x92\xb6\x67\x8d\x6d\xfe\x90\xbb\x0c\x22\x7e\x77\x29\x14\xa7\x1f\xbf\xc7\xe3\x19\x33\xc5\x63\x5f\xdc\x32\xe2\x8b\xc1\x18\x3c\xfc\x0f\x24\x3b\xcc\x76\x22\x14\x62\x71\x61\xba\xaf\x0b\xe0\x7c\x8a\x59\x50\x6d\x54\x01\x3c\x4a\x18\xb0\x23\x96\xd3\xb2\xc4\x81\x6f\x94\x9b\x12\x2a\xc1\xfd\xa6\xe8\xae\xc6\x0f\xec\x44\xb7\xb3\x4b\x95\xca\x25\x88\xf3\xa4\x1b\xb2\xe3\x95\x7c\x2b\x56\xb8\xaa\xd1\x31\x86\x28\xc8\x25\xad\x7d\x1a\xb1\x7f\xe3\x39\xa6\x27\xe5\x4b\xab\x55\x0d\x5f\xf8\x05\x00\x00\xff\xff\xe6\xea\xbd\x10\xac\x00\x00\x00"), }, "/src/testing/example.go": &vfsgen۰CompressedFileInfo{ name: "example.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250275772, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 1462, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x54\xc1\x8e\xdb\x36\x10\x3d\x93\x5f\x31\x4b\xc0\x01\xd9\xd5\xd2\xe8\xd5\x80\x0e\x41\xba\x06\x02\x04\xdb\x60\x9d\xdc\x02\x14\x5c\x79\xa4\xb0\x2b\x91\x02\x49\xd9\x29\x1a\xff\x7b\xc1\x11\xd7\xb2\x5d\xf4\xd2\x8b\x20\x8e\xc4\x37\x6f\xde\x9b\x99\xf5\xba\xf3\x9b\x97\xc9\xf6\x7b\xf8\x33\xf2\xf5\x1a\xee\xcf\x07\x3e\x9a\xe6\xd5\x74\x08\x09\x63\xb2\xae\xe3\xdc\x0e\xa3\x0f\x09\x24\x67\xa2\x1d\x92\xe0\x4c\xf8\x98\x9f\x31\x05\xeb\x3a\x7a\x4d\x76\x40\xc1\x15\xe7\xed\xe4\x1a\x08\x93\x7b\xfc\x61\x86\xb1\x47\x89\x1d\x7c\x74\x09\x83\x33\x7d\x09\x29\x90\xfe\x15\x5e\xbc\xef\x15\xfc\xcd\x99\x6d\xe1\x97\xe6\xbb\x49\xe9\xaf\x7c\x62\xed\x90\xf4\xe7\x60\x5d\x6a\xa5\xa8\xeb\x1a\x9e\xbf\x3e\x01\xc0\x2a\x7e\x73\xa2\x02\xec\xf4\x93\x19\x50\x71\x76\xe2\x9c\xad\xd7\xf0\xc1\x8c\x69\x0a\x08\x31\xed\xfd\x94\x34\x67\xf3\x0b\x6c\x6a\xf0\x51\xef\xe8\xc0\xd9\xb1\x02\x0c\xa1\x04\x3f\x04\x34\x09\xbf\xe0\x30\x4a\x21\x2a\x10\x5a\xdc\x17\xd8\x7b\xa1\x0b\x8e\x50\xc4\x2b\x5f\xba\xab\xc1\xd9\xfe\x4c\x6d\x3b\x66\x6e\xbd\x93\x33\x3c\x86\x40\xd8\x8a\x33\xe6\xa3\x7e\xfc\x61\x93\xfc\x95\xe8\xb1\x73\x7e\xa8\xe1\xc8\x33\x33\x13\x88\x58\x96\x4a\x3f\xf9\xa3\x54\x9c\xf9\x57\xa8\x21\x85\x09\x4b\x39\x3d\x1a\x07\xd3\x08\xd6\x81\x81\x3d\xb6\x18\x02\xee\xa1\x31\x7d\x0f\xd1\xc3\x11\xa1\x31\x0e\x02\x36\xfe\x80\x01\x6c\x0b\xe9\x3b\x02\xce\xb2\xc2\x68\x9c\x6d\xa2\xe6\x8c\xee\x41\x36\x42\x92\xc2\x6c\x1f\x13\x55\xdf\x0e\xe9\xb7\x29\x98\x64\xbd\x93\x0b\x0b\xbd\x9b\x5e\x24\xb1\x53\x8a\x73\x36\xf3\xf0\x11\xa1\xb5\x3d\x56\x10\x30\x26\x7f\x96\xb8\x82\x0e\x13\xf8\x29\x8d\x24\x37\x3b\x6a\xfa\x57\x16\x01\xce\x15\xc7\x22\x3d\xa3\x3b\x01\xcd\x7e\x6b\x7b\x7c\x3c\xbb\xf0\x5c\x22\xf2\x48\xd2\x4b\x95\x01\xfe\x80\xf2\x6d\xf0\x87\xeb\x2f\xb6\xbd\xc2\xb8\x30\xe5\xc2\x95\xf6\xd2\x14\x51\xba\x77\x43\x17\xad\xeb\x0a\x25\xaa\x6a\x03\xab\x03\x35\xd4\x05\x68\x4e\x73\xe5\x21\xf5\x18\x3b\x98\x00\xad\xb1\x3d\xcc\xcd\xce\x19\x2b\xad\x54\x5c\xa0\xca\x3b\x4f\xce\x96\x79\xd0\x5f\x82\x1d\x76\xa3\x69\x50\xce\x11\xe9\xa7\x44\x65\x1c\x8d\xfb\x8f\x1f\xb1\xd3\xbf\x93\xa8\xa5\x5a\xec\xf4\x57\xe7\xc3\x1e\xb3\xff\x54\xa7\x6d\x21\xfa\x90\x3e\x59\x87\x51\x76\x3e\xa9\xac\xc2\x12\xc9\xd0\x0a\xde\xbd\xa3\xa6\xad\x2f\xf4\x61\xc4\x9e\xcc\xd7\xbb\xa2\x93\xe8\x7c\xda\x7c\x73\x79\xaa\x88\x92\x9c\xde\x72\xa9\x12\x16\x15\x5c\x70\xa7\xc9\x5b\xf8\xe5\xf6\x66\x27\xc0\x3e\xe2\x99\x5b\x96\xe0\xae\x06\x82\xfb\x7f\x2c\x96\xcc\x9d\x4f\x15\x21\x2d\xc9\x66\x55\x08\xe4\xae\x06\x21\xe0\xe7\xcf\xdb\xf1\xbc\x5a\x1d\x0f\x0f\x0f\xb0\x7d\xff\xf1\xd3\x06\x56\x11\xe4\x2a\xaa\x0c\xbe\x6c\x90\x0a\xf2\x4c\x54\x04\x38\x1b\x9f\x07\xb1\x35\x7d\xc4\xa5\xb4\x9b\xcd\xf4\x2f\xfc\xcf\xef\x77\xbb\x0b\xfc\x5b\x74\xb5\xf0\xbe\x65\x4a\xa3\x2a\xcb\xde\x38\x71\x76\x92\x6a\x5e\x00\xcf\x93\x7b\x9b\x67\xcd\x19\x76\x7a\x9b\xfb\x2b\x60\x9a\x82\xe3\x27\xfe\x4f\x00\x00\x00\xff\xff\x13\x7e\x5d\xa1\xb6\x05\x00\x00"), }, "/src/testing/helper_test.go": &vfsgen۰FileInfo{ name: "helper_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250364855, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x74\x65\x73\x74\x69\x6e\x67\x0a"), }, "/src/testing/sub_test.go": &vfsgen۰CompressedFileInfo{ name: "sub_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250440396, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 806, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xec\x90\x41\x8b\xd4\x40\x10\x85\xcf\xe6\x57\x3c\xe6\xe2\x8c\x4a\x72\x5f\xc4\xc3\x20\x0a\x82\x2c\xec\xe4\xbe\x74\xba\x2b\x99\x36\xe9\xea\xa6\xaa\x5a\x5c\xc4\xff\x2e\x09\x1a\x47\x8f\x9e\xf7\x58\x87\xf7\xde\x57\x5f\xd7\x4d\xf9\x6e\xa8\x71\x09\xf8\xa2\x4d\xd7\xe1\xf5\x7e\x34\xc5\xf9\xd9\x4d\x04\x23\xb5\xc8\x53\xd3\x8c\x95\x3d\x7a\x52\x3b\x13\xfb\x6b\x72\x32\x3f\x90\x0b\x9f\x29\x5d\xcc\x99\x9e\x69\xcc\x42\x1f\xa2\xa8\x3d\x54\x3e\x1a\x5e\xf5\x27\x7c\x6f\x5e\x58\x7b\x99\x63\x39\x1e\xa4\xb2\xc5\x44\xed\x6d\xe6\x78\x42\x54\x70\x36\x68\x2d\x25\x8b\x51\xc0\xf0\x84\x8f\xb9\x5c\x49\x3e\x5d\xda\xc3\xa9\xf9\x71\xb3\xdb\xff\x55\xdc\x75\xe8\xef\xdf\xdf\x1f\x99\xbe\xce\x99\xcd\xcd\x46\xa7\x3b\xf4\xd7\xa8\x1b\x32\x0a\xc9\x98\x25\x29\xd4\x24\xf2\x04\x9f\x53\x71\x12\x35\xb3\x82\xbe\x15\xf2\xeb\x57\xb0\x8c\x31\x72\xd8\xea\xb4\x0e\x8f\x6b\xb4\x9d\x32\x22\xc3\xae\x84\x5c\xad\x54\x7b\x83\xa1\xda\x8e\x05\x5f\x45\x88\x6d\x79\x82\xd0\x4a\xad\xf0\x6e\x59\x48\xb6\x92\x25\x7b\x67\x71\x1d\x71\x8a\xc3\x56\xf7\x56\x1c\x87\x9c\x1e\xb9\xa6\x81\xe4\xdd\x01\xa1\xd2\x3a\x9c\x22\xc7\xe4\x96\x5f\x69\x38\x0e\xd0\x5c\xc5\x13\x92\x2b\xbf\x95\xb4\x7f\x14\xee\x00\x21\x93\xf2\xcb\xdd\xda\x4d\x4a\xa1\x75\x1c\xa3\x8f\x1b\xdf\xbf\x02\xcf\xcf\x02\xff\x47\xe0\xcf\x00\x00\x00\xff\xff\x95\xec\x51\xe9\x26\x03\x00\x00"), }, "/src/text": &vfsgen۰DirInfo{ name: "text", - modTime: time.Date(2022, 4, 4, 3, 6, 47, 326799050, time.UTC), + modTime: time.Date(2021, 8, 22, 11, 13, 56, 543823400, time.UTC), }, "/src/text/template": &vfsgen۰DirInfo{ name: "template", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250523771, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), }, "/src/text/template/template.go": &vfsgen۰FileInfo{ name: "template.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250547229, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), content: []byte("\x2f\x2f\x67\x6f\x3a\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x2f\x2f\x20\x2b\x62\x75\x69\x6c\x64\x20\x6a\x73\x0a\x0a\x70\x61\x63\x6b\x61\x67\x65\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x0a\x0a\x63\x6f\x6e\x73\x74\x20\x6d\x61\x78\x45\x78\x65\x63\x44\x65\x70\x74\x68\x20\x3d\x20\x33\x30\x30\x30\x0a"), }, "/src/time": &vfsgen۰DirInfo{ name: "time", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250755769, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), }, "/src/time/time.go": &vfsgen۰CompressedFileInfo{ name: "time.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250659686, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 2134, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x95\xdf\x6f\xdb\x36\x10\xc7\x9f\xc9\xbf\xe2\x66\x6c\x28\xd9\xa8\x52\xd2\x0e\x1b\x16\x44\x03\xb6\x74\x2d\xfa\xd0\x19\x58\xb2\x97\x0d\xc3\x40\x53\x27\x9b\xae\x4c\x6a\x24\xd5\xc4\x31\xfc\xbf\x0f\x47\x51\xb6\xd3\xb5\x79\x58\x1e\x02\xf1\xd7\xdd\xf7\xfb\x21\xcf\x57\x55\x4b\x77\xb9\x18\x4c\xd7\xc0\x3a\xf0\xaa\x82\xb3\xc3\x80\xf7\x4a\x7f\x50\x4b\x84\x68\x36\xc8\xb9\xd9\xf4\xce\x47\x10\x9c\xcd\xfc\x60\x69\x6e\xc6\x39\x9b\x2d\x4d\x5c\x0d\x8b\x52\xbb\x4d\xb5\x74\xfd\x0a\xfd\x3a\x1c\x3f\xd6\x61\xc6\x25\xa7\xb0\xef\xd5\x07\x84\x30\xf8\x31\x5a\xf9\xbb\x35\xf7\xd0\x0e\x56\x83\xb2\xcd\x38\x75\x6b\x36\x08\x21\xfa\x41\x47\x30\x11\x3c\xc6\xc1\xdb\x00\xca\x23\xa8\xee\x4e\x6d\x03\x18\xab\xbb\xa1\xc1\x06\xee\x4c\x5c\x41\x5c\x99\x00\x93\x44\xd1\x60\xe8\x4d\x44\x78\x7d\xfd\x8b\x2c\x28\xe1\x02\xb5\x1a\x02\x42\x5c\xe1\xf6\x99\x47\xb0\x88\x74\xb4\x75\x1e\x8c\x8d\xe8\xad\xea\xcc\x83\x8a\xc6\xd9\x0a\xef\x1f\x8d\xc1\xb5\x47\x45\xd5\x6b\x15\xb1\x84\x1b\x44\x30\x21\x0c\x08\xab\x18\xfb\x70\x59\x55\x4f\xfa\x4e\x5b\x43\xf5\xf2\xfb\x1f\x4a\x9e\x5c\x1a\x6b\xa2\x90\xb0\xe3\xac\xaa\x40\x7d\x74\xa6\x81\x06\x55\x03\xda\x35\x08\xd8\x99\x8d\xb1\x29\x37\x67\x1f\x95\x87\xbf\x21\xc1\xa8\x81\x30\x89\xf3\x02\xce\x25\xdf\x73\x1e\xb7\x3d\x42\x66\x4f\x1b\xfc\x84\x6b\xc7\x99\x81\xf1\xcf\xd8\xf8\xea\x25\x67\x77\x2b\xb4\x79\xf8\xdd\xb7\x9c\xf5\xe8\x8d\x6b\x0e\xc3\x36\x6f\x26\x69\x22\xd1\x68\x95\xc6\xdd\xbe\x80\xc1\xd8\xd8\x47\x2f\x39\x53\x7e\x39\x05\x9c\x96\x39\x0b\xf8\x4f\x9a\xcc\xdb\x38\x23\x29\x6e\x88\xf0\x7c\x1d\xca\xf9\x62\x8d\x3a\x72\xa6\x74\x34\x1f\x11\x60\xe1\x5c\x47\xb2\x13\x00\xeb\xee\x84\x04\x11\x50\x8f\x22\x0a\xb0\xf9\xfb\xd5\xcb\x02\x36\xce\xba\x71\x3e\x31\xb2\x70\x59\x4f\x46\x7f\x55\xd6\x09\xc9\xd9\xf8\x1e\xc0\x42\x35\x6e\x14\x37\xa8\x9d\x6d\x64\x31\xc6\x10\x16\xbe\x79\xbc\x20\x0b\xb0\x87\xf4\x37\x1d\x62\x2f\x1a\x78\x3d\xf8\xc4\x39\xa5\xd1\x94\x66\xa3\x3e\xa0\xd0\x2b\x65\x33\xcc\xdd\x5e\x72\xb6\x0e\xe5\xdb\xce\x2d\x54\x57\x5e\xab\xae\x13\xb3\xaf\x03\xc6\xdb\xd1\xea\xac\x80\x75\x28\xdf\xe5\x27\x34\x7a\x16\x09\xa4\x84\x1d\xe8\xce\x05\x14\x5a\xc2\x7e\x14\x26\x9a\xea\xbd\xe9\x3a\x13\xb2\x26\xce\xae\x5e\xe8\x83\xaa\x10\x95\x4f\x71\xbd\x88\xf0\xfc\xf4\x66\x93\xbe\x58\x66\x94\x35\x44\x3f\x20\x67\x8d\x69\x5b\xd2\x2c\x62\x99\x2e\xf8\xc5\x63\x48\xf2\xc0\xe6\x34\x27\x67\xa6\x85\x74\xf2\x47\xb8\xb8\xba\x7a\x75\xf1\xe2\x02\x76\x50\x55\xb0\x51\x71\x55\xbe\x57\xf7\xef\xc6\x27\x93\x09\x73\xb6\x3f\x9e\xb8\x82\x73\x12\x32\x26\xae\xe1\x3c\x2d\xc6\x72\xba\xf5\x1a\xfe\x2f\x28\xce\x4e\xdd\xb5\xaa\x0b\xc8\x19\xa5\x8d\x65\x7e\xab\x5f\xd5\x39\x37\xcb\x66\xcf\xea\xc3\x22\xcd\x9e\xb2\x93\x9c\x91\x30\xb6\x74\x10\xcb\x56\xc4\x52\xf9\x65\x2a\x1a\x46\xd7\x40\xe2\xcf\x2e\xe4\x09\x75\xd7\x7f\x01\x3a\x3d\x59\x4a\xfa\xa9\x2d\xdd\xa1\xf2\x47\x5f\x07\x02\x92\xb3\x3b\x15\x7e\x1a\x7d\x5c\x92\xc0\xd1\x13\xff\x8c\xbb\xfc\x80\x0f\xfb\x0f\x7a\x36\xae\xf9\xac\x9c\x02\xc8\x77\x01\x19\x48\x2e\x9b\xf6\x89\xaa\x2d\x80\xaa\xf6\xd1\x12\x55\xec\xb4\x4c\xce\x4e\xcc\x4b\x3e\xa1\xad\x53\x26\x1a\xe6\x5c\x35\x4c\xa0\x63\x49\x17\xdf\x26\x43\x7e\x09\x35\x65\xa0\x01\xc5\xad\x29\x3a\xff\xe4\x26\x26\x57\x1e\xf3\x53\xf8\x82\xaf\xa9\xdc\x27\xe4\x5f\xe0\x78\x84\x33\xe1\x98\x44\xd2\x57\x4b\xff\xd2\x65\x27\x45\xf2\x09\xca\xad\xf3\x1a\xff\x30\xfd\x1b\xd3\xe1\x1b\xe7\x6f\x31\x44\x63\x97\xe2\xc1\xf4\x73\xdb\x6d\x93\x0c\x02\xb4\xe7\x9c\x7e\x81\x1f\x9c\xc5\x1b\x37\x78\x8d\x01\x6a\xf8\xf3\xaf\x10\xbd\xb1\xcb\x1d\x67\xd9\x48\xf9\x76\xfe\xdb\x7c\x7e\x2b\x24\x9c\xc1\xac\xea\xcc\xa2\xa2\xd9\x8a\x8e\x19\xdb\xba\xf2\xc1\xf4\xb3\x82\x82\x55\x54\x92\x0d\xde\xff\xbc\x8d\xd4\x41\x40\xbb\xde\x50\x1b\xf2\x6e\x03\x63\xd0\x63\x13\x8b\x2e\xb7\x86\xb1\xd5\x1a\xbb\xa4\x46\x28\x82\xb1\x3a\xf5\x31\xf0\xa8\xba\xd4\x9a\x0e\x47\x1a\x87\xc1\x3e\x8b\xf2\xd0\x66\x72\x2a\x11\x72\xf4\x02\x34\x2c\xb6\x11\x25\xf1\x26\xce\x19\xd0\x7f\x4b\x33\xc8\xfc\xd8\x53\x90\x79\x3b\xd6\x6f\x2e\x83\xb7\x18\xc5\xec\x26\x45\x9c\x4d\xfb\xc8\xc3\xf5\x4a\xf9\x6b\xd7\xe0\xac\x00\x2d\x25\x85\x14\xf4\x04\xfe\x0d\x00\x00\xff\xff\xbb\xd3\x12\xeb\x56\x08\x00\x00"), }, "/src/time/time_test.go": &vfsgen۰CompressedFileInfo{ name: "time_test.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250722269, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 277, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\xcd\x3f\x4f\xc3\x40\x0c\x05\xf0\xb9\xfe\x14\x4f\x99\x12\x90\x92\x9d\x9d\x95\xa5\x61\xe9\x82\xae\x87\x7b\x35\x4d\xec\xd3\x9d\x93\x22\x21\xbe\x3b\x0a\xff\xc4\xc2\xe8\x67\xbd\xf7\x1b\x86\x64\x77\xc7\x45\xa6\x67\xbc\x54\x1a\x06\xdc\xfe\x1e\x94\x43\xbc\x84\xc4\x70\x99\xf9\xc9\xb9\x3a\x91\xcc\xd9\x8a\xa3\xa5\x5d\xb3\x05\xa2\xa9\xa1\x8e\xe8\xb4\x68\xc4\xc8\xd5\xf7\x13\x73\x6e\x1d\x37\xdf\xdf\x7e\xec\xf0\x46\x3b\xef\xf7\x17\xc9\x6d\xb3\x2d\xf5\x0f\x76\x6d\x3b\x48\x85\x9a\x23\xc4\xb8\x94\xe0\x0c\x56\x5b\xd2\x19\x27\x2b\xf0\x33\x63\xeb\x37\x1d\xbd\xff\xd9\xbe\xd7\x75\x3c\x3c\xd6\x90\xf8\x7f\x60\x3c\x80\x75\x95\x62\x3a\xb3\x3a\xd6\x50\x24\x1c\x27\x86\xe8\x97\x96\xf3\x24\xf1\x27\xd9\x9c\x63\xb1\x6b\xe5\x82\x68\xea\xfc\xea\xfd\xa7\xf9\x11\x00\x00\xff\xff\x10\x42\x27\x6a\x15\x01\x00\x00"), }, "/src/time/zoneinfo_js.go": &vfsgen۰CompressedFileInfo{ name: "zoneinfo_js.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250788311, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 1397, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x64\x53\x4d\x6f\xe3\x36\x10\x3d\x9b\xbf\x62\xaa\xa2\x80\x1d\x27\x12\x3f\x24\x4a\x0a\xd6\x87\x45\x0a\xa4\x01\x16\xed\xa1\x29\x7a\x08\x82\x82\x92\x46\x32\x13\x89\x34\x44\x3a\x69\xb2\xc8\x7f\x2f\x48\x2b\xd9\xb6\x7b\x13\xe7\xcd\xbc\x99\x79\x6f\x94\x65\x83\xbd\x6c\x8e\x7a\xec\xe0\xc1\x91\x2c\x83\xed\xc7\x83\x1c\x54\xfb\xa8\x06\x04\xaf\x27\x24\x44\x4f\x07\x3b\x7b\x48\x06\xed\xf7\xc7\x26\x6d\xed\x94\x0d\xf6\xb0\xc7\xf9\xc1\x7d\xfb\x78\x70\x09\x09\x2c\xb7\x7b\x84\xd6\x76\x08\x0d\x8e\xf6\x19\xb4\x83\x46\x39\xec\xc0\x1a\xf0\x7b\x84\xe3\xc1\xf9\x19\xd5\x04\xaf\xd6\xa0\x36\xbd\xfd\xeb\xc1\xa5\x83\x05\x6f\xa1\x1d\xad\xc3\x19\x26\xe5\xdb\x7d\x60\xfa\x13\x9b\xcf\xce\xe1\xd4\x8c\x2f\xd0\xe0\x5e\x3d\x69\x3b\xa7\x84\xf4\x47\xd3\x82\x36\xda\x7f\xb1\xad\x1a\xd7\x1b\xf8\x4a\x56\x63\xf8\xfc\x62\xdb\xd4\xa8\x09\x61\x07\x49\xc4\x12\x42\x56\xaf\x70\xb9\x8b\xbd\xbe\xbe\x91\x55\x17\x1e\x0f\x2e\xbd\x1e\x6d\xa3\xc6\xf4\x1a\xfd\x3a\xf9\x59\x79\x4c\x36\xe9\xaf\xf8\xbc\xde\x90\x95\xed\x7b\x87\x3e\xa4\x75\xe9\x95\x1a\xc7\x75\x32\xa0\xbf\xd5\x13\x06\x8a\xdf\x22\x98\x6c\xd2\x1b\xe3\xd7\x1b\x38\x83\x0b\x46\x56\xaf\xe9\x52\xb3\x83\xe5\xe3\x0c\x24\x25\xab\x2c\x83\xcf\x6d\x6b\xe7\x4e\x9b\x21\x6c\xb7\xf7\xfe\xe0\x2e\xb3\xcc\xb7\xa2\x4e\x17\x25\xb5\xcd\xb0\x9d\x14\x97\x3c\xfb\xd1\x61\x7b\xe1\x97\x46\xe8\xfc\xac\xcd\x70\x1e\x59\x82\x6a\xef\x00\xc4\xfd\xfa\xd9\x4e\xb0\x36\xf8\x0c\x61\xf8\xf5\x66\x93\x7a\x1b\x66\xfc\x3d\x56\xad\x37\x41\x74\x65\x40\x4f\x87\x11\x27\x34\x5e\x79\x6d\xcd\x45\x87\x07\x34\x1d\x1a\x1f\x59\x67\x74\xc7\xd1\x9f\x83\x32\x1d\x68\x03\xd7\xd6\x0e\x23\xc2\xd5\x7e\xb6\x13\x9e\x83\xf6\x30\xe8\x27\x74\xb1\x79\x7f\x1c\xc7\x17\xc0\xbf\x0f\xca\x74\xd8\x9d\x46\x98\x95\xdf\xe3\x0c\x7e\xaf\xcc\xc7\x90\xaa\x69\x66\x7c\xd2\xb1\x5b\x1a\xa3\xbf\xa0\x69\xf1\x1c\x9e\xc3\x45\x18\xe7\xe7\x63\xeb\x63\xe6\xb7\x2d\xc2\xeb\x24\x5b\x1a\xa4\x7c\xb7\xef\x8f\xdb\xab\x84\xac\x74\xff\x2e\xe9\x27\xa0\xc1\xe6\xf7\x8c\xed\x0e\x92\x8b\x84\xac\xde\xed\x3a\xdb\x45\x2b\xde\x00\x47\x87\xff\x4f\xdc\x26\x64\xf5\x46\xfe\x15\xd1\xde\xaa\xf5\x52\x99\x81\xa4\x1b\xb2\x9a\xb4\x09\x9e\x2f\xc1\x9f\xa2\x81\xba\x87\x10\xfe\x61\xf7\x7d\xef\xcb\x04\xb6\x27\x9a\x49\x9b\x4d\xa4\xff\xb8\xc0\x68\xd3\x0e\xee\xee\xe3\xd1\xbd\xbe\x91\xb7\xf8\x5b\x84\xec\xe0\xcb\xa8\x1f\x11\x9c\x9f\x5b\x6b\x9e\xd2\x9b\x10\x6c\x8e\x1e\xac\x19\x5f\xe0\xd9\xce\x8f\x0e\x7a\x3b\xc3\x93\x1a\x8f\xe8\xc0\xf6\xa0\x83\x39\xb3\x32\x03\xc2\x1d\x3d\xaf\xeb\xfb\x34\x90\xdd\x78\x38\x28\xa3\x5b\x07\x3a\xa6\x38\xb0\x81\xa4\x3f\x65\xa6\xcb\x2f\x12\xe6\x0b\xf5\x7e\x03\xa7\x7b\x0a\x6b\xc4\x82\x4f\xc0\x4e\x3b\xcd\xe8\x8f\xb3\x81\x4e\x0f\xda\xbb\x3b\x0d\x97\xa0\xb7\xec\x3e\x2e\xb4\x40\x6e\x52\xe3\xe8\x4e\x97\x75\xa7\xcf\x78\x48\x39\xe3\x5b\x7e\x1f\xf6\x8a\xae\xfe\x27\x25\x98\x47\x29\x65\x94\x53\x41\x73\x5a\x50\x49\x4b\x5a\xd1\x3a\x81\x2d\x59\x25\x8c\x32\xc6\x38\x13\x2c\x67\x05\x93\xac\x64\x15\x5b\x10\x4e\x39\xe3\x9c\x0b\x9e\xf3\x82\x4b\x5e\xf2\x8a\x2f\x88\xa0\x82\x09\x2e\x84\xc8\x45\x21\xa4\x28\x45\x25\x16\x24\xa7\x39\xcb\x79\x2e\xf2\x3c\x2f\x72\x99\x97\x79\x95\x2f\x48\x41\x0b\x56\xf0\x42\x14\x79\x51\x14\xb2\x28\x8b\xaa\x58\x10\x49\x25\x93\x5c\x0a\x99\xcb\x42\x4a\x59\xca\x4a\x2e\x48\x49\x4b\x56\xf2\x52\x94\x79\x59\x94\xb2\x2c\xcb\xaa\x5c\x90\x8a\x56\xac\xe2\x95\xa8\xf2\xaa\xa8\x64\x55\x56\x55\xb5\x20\x35\xad\x59\xcd\x6b\x51\xe7\x75\x51\xcb\xba\xac\xab\xba\x4e\x16\x55\x4e\x9a\x46\x3d\x18\x17\x79\x21\xcb\xaa\x4e\xc8\x3f\x01\x00\x00\xff\xff\x14\x7b\xd4\x9f\x75\x05\x00\x00"), }, "/src/unicode": &vfsgen۰DirInfo{ name: "unicode", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250864602, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), }, "/src/unicode/unicode.go": &vfsgen۰CompressedFileInfo{ name: "unicode.go", - modTime: time.Date(2022, 4, 4, 3, 9, 43, 250907810, time.UTC), + modTime: time.Date(2022, 3, 20, 16, 40, 9, 924405800, time.UTC), uncompressedSize: 672, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x54\x51\xc1\x8e\xd3\x30\x10\x3d\xdb\x5f\xf1\x4e\x51\xa2\x74\xc9\x96\x63\xd5\x72\x29\x12\x08\xb1\x97\x72\xac\x0a\xf2\x3a\x93\xc4\xe0\xd8\xd1\xc4\x91\x40\xdb\xfe\x3b\xb2\x93\x86\x72\x9b\x79\xf3\xe6\xcd\xcc\x9b\xaa\x6a\xfd\xee\x75\x32\xb6\xc6\xcf\x51\x56\x15\xca\x35\x91\x83\xd2\xbf\x54\x4b\x98\x9c\xd1\xbe\x26\x29\x9b\xc9\x69\x04\x9f\xff\xd0\x6a\x24\x18\x17\x36\x60\xf0\xe4\x68\x83\x88\x9c\x94\x6b\x09\xe7\xcb\xf1\x1e\x17\xc8\x7b\x35\x0c\x54\x9f\x26\x47\x0b\xb1\xf1\x93\xab\x5f\xd4\x30\x18\xd7\xe2\xd5\x7b\x5b\xe0\x4d\x0a\xd3\x60\x16\xdd\xe3\x19\xd7\x2b\x5e\xd4\xef\x63\x4a\x0f\x0b\xfe\x26\x85\x60\x0a\x13\x3b\x9c\x68\xb0\x4a\x53\x4f\x2e\x1c\x3b\xc5\x1b\x34\xca\x8e\x24\xc5\x4d\x0a\xeb\xb1\x3b\xe0\x59\x8a\xce\xc4\xc0\x92\xcb\xd7\xc5\x0a\x29\x1a\xcf\xb0\x1e\x7b\x74\x26\x09\xf6\x89\xe4\x51\x22\xef\xcc\x93\xf5\x45\xf5\x5e\x0a\xa1\x39\xc2\xd9\xda\x78\xee\x2f\xa8\x2a\x0c\xc4\x8d\xe7\x5e\x39\x4d\xd0\x6c\x82\xd1\xca\x22\x2a\x7e\xf2\x43\x47\xfc\xe5\xdb\x0e\x2d\x05\xa8\xba\x66\x1a\x47\x74\xc4\xd1\xa2\x31\x90\xaa\xe1\x1b\x68\x3f\xfc\x89\x27\x87\x8e\xb0\x1a\x24\x45\xbc\x3c\x1a\x93\x6b\x7e\xf7\xd5\x17\xf1\x60\x46\x96\x81\x53\xb4\x14\x3e\x9b\x64\x92\x10\x35\xd9\xa0\xe2\x76\xf7\xca\xc7\x08\x9c\x93\x45\x97\x22\x32\x4c\x83\x99\xf4\x21\x7a\x98\x7c\x4f\x9d\x77\xf3\x1e\x67\x95\xc8\x73\x7e\x7a\x40\x8a\xec\xfb\x16\xd7\x99\x93\x34\xb3\x6d\x51\x6c\x10\x78\x8a\x9b\x46\x83\xff\xe9\xa0\x9c\x07\xad\xe5\xdb\x72\x0c\xf6\xff\x0d\x49\xd3\x3b\x83\x03\xfa\x48\x02\xd9\xe5\x9b\xf1\x59\x07\xf4\x28\xb1\x9d\xbb\x6f\x72\x15\xbf\xff\xf4\x26\xff\x06\x00\x00\xff\xff\x58\xc1\xdc\x91\xa0\x02\x00\x00"), }, + "/src/vendor": &vfsgen۰DirInfo{ + name: "vendor", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + }, + "/src/vendor/golang.org": &vfsgen۰DirInfo{ + name: "golang.org", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + }, + "/src/vendor/golang.org/x": &vfsgen۰DirInfo{ + name: "x", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + }, + "/src/vendor/golang.org/x/crypto": &vfsgen۰DirInfo{ + name: "crypto", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + }, + "/src/vendor/golang.org/x/crypto/internal": &vfsgen۰DirInfo{ + name: "internal", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + }, + "/src/vendor/golang.org/x/crypto/internal/subtle": &vfsgen۰DirInfo{ + name: "subtle", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + }, + "/src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go": &vfsgen۰CompressedFileInfo{ + name: "aliasing.go", + modTime: time.Date(2022, 4, 19, 10, 29, 32, 401777300, time.UTC), + uncompressedSize: 796, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x90\x4d\x6f\xd4\x3c\x14\x85\xd7\x93\x5f\x71\x34\x7a\xd5\x37\x51\x3b\x31\xdd\x8e\x28\x12\xab\x0a\x36\x5d\x50\x89\x05\x62\xe1\x38\x77\x62\x0f\x1e\xdf\xe8\xfa\x86\xc6\x42\xfc\x77\x94\x69\x3b\xe5\x43\x2d\x62\x97\xab\x3c\xe7\xc3\xc7\x98\x81\xb7\xdd\x14\x62\x8f\x7d\xae\x8c\xc1\xf9\xe9\xa8\x46\xeb\xbe\xd8\x81\x90\xa7\x4e\x23\x55\xcb\xdf\x5b\x1f\x32\x76\x21\x12\xfa\x69\x8c\xc1\x59\xa5\x1e\x21\x43\x3d\x65\x82\xde\x31\x22\x3b\xab\x81\x53\xde\x2e\xfc\x06\x59\x9c\x71\x52\x46\x65\x13\x92\x92\x24\x1b\xcd\xbd\xa1\x79\x02\x06\x8e\x36\x0d\x2d\xcb\x60\xe6\x67\xe9\x2a\x1c\x46\x16\xc5\x7a\x08\xea\xa7\xae\x75\x7c\x30\x03\x8f\x9e\x64\x9f\x9f\x3e\xf6\x79\x7d\x6c\xfa\x36\x95\x9b\xaf\x24\xd1\x8e\x10\x5a\x74\x19\x77\x9e\xd4\x93\x60\x86\x4d\x3d\x0a\xb2\xb7\x42\x38\xd0\x81\xa5\xc0\x2a\x6c\x2a\xa8\x13\x2b\x12\x39\xca\xd9\x4a\x88\x65\xb1\x72\x2c\x42\x79\xe4\xd4\x87\x34\x34\x08\xa9\xa7\xb9\xc5\xad\x3f\x69\x3b\x2a\x9c\xfa\x65\x04\xe4\x18\x1c\x21\x52\x1a\xd4\x2f\xc3\x84\x21\xb1\x50\xdf\x56\xbb\x29\xb9\x9f\x4a\xd5\xf3\x05\x0a\x3e\x7d\xee\x8a\x52\x83\x8e\x39\xe2\x5b\xb5\x32\x06\xd7\xc7\x87\xbc\xff\xb0\xc5\x47\x82\xb3\xe9\x7f\x85\x50\x2c\xe0\x84\x91\x8f\x9b\xc0\x4a\x50\x7f\x20\x0d\xee\x02\x99\x31\x65\x3a\xa9\x1e\xf2\x1f\xb7\xcb\x6d\xb5\x12\xd2\x49\xd2\x52\xa9\x9e\x1b\xbc\xc1\x2b\x9c\x9d\x1d\xaf\xf2\x78\x55\xab\xd5\x3e\xb7\xef\x1e\x34\x37\xdd\x9e\x9c\xd6\x73\xd3\x5e\x93\xd6\xeb\xff\xac\x88\x2d\xeb\x06\x57\x57\xf8\x93\x2a\xbf\x53\x7f\x73\xe3\xdd\x2e\x93\xae\x9b\x05\xa8\x1b\xbc\x7e\xd1\xf4\x57\xf8\xfc\xbe\xf4\xe6\xf2\xb9\x90\xf2\x2f\x21\xf3\x0b\x21\x73\xb3\xb9\xac\xbe\x57\x3f\x02\x00\x00\xff\xff\x94\x62\x55\xfd\x1c\x03\x00\x00"), + }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src"].(os.FileInfo), @@ -912,7 +880,6 @@ var FS = func() http.FileSystem { fs["/src/bytes"].(os.FileInfo), fs["/src/crypto"].(os.FileInfo), fs["/src/database"].(os.FileInfo), - fs["/src/debug"].(os.FileInfo), fs["/src/encoding"].(os.FileInfo), fs["/src/fmt"].(os.FileInfo), fs["/src/go"].(os.FileInfo), @@ -934,6 +901,7 @@ var FS = func() http.FileSystem { fs["/src/text"].(os.FileInfo), fs["/src/time"].(os.FileInfo), fs["/src/unicode"].(os.FileInfo), + fs["/src/vendor"].(os.FileInfo), } fs["/src/bufio"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/bufio/bufio_test.go"].(os.FileInfo), @@ -946,7 +914,7 @@ var FS = func() http.FileSystem { fs["/src/crypto/ed25519"].(os.FileInfo), fs["/src/crypto/internal"].(os.FileInfo), fs["/src/crypto/rand"].(os.FileInfo), - fs["/src/crypto/x509"].(os.FileInfo), + fs["/src/crypto/tls"].(os.FileInfo), } fs["/src/crypto/ed25519"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/crypto/ed25519/ed25519vectors_test.go"].(os.FileInfo), @@ -971,9 +939,8 @@ var FS = func() http.FileSystem { fs["/src/crypto/rand"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/crypto/rand/rand.go"].(os.FileInfo), } - fs["/src/crypto/x509"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/src/crypto/x509/x509.go"].(os.FileInfo), - fs["/src/crypto/x509/x509_test.go"].(os.FileInfo), + fs["/src/crypto/tls"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/crypto/tls/handshake_test.go"].(os.FileInfo), } fs["/src/database"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/database/sql"].(os.FileInfo), @@ -984,12 +951,6 @@ var FS = func() http.FileSystem { fs["/src/database/sql/driver"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/database/sql/driver/driver_test.go"].(os.FileInfo), } - fs["/src/debug"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/src/debug/elf"].(os.FileInfo), - } - fs["/src/debug/elf"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/src/debug/elf/elf_test.go"].(os.FileInfo), - } fs["/src/encoding"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/encoding/gob"].(os.FileInfo), fs["/src/encoding/json"].(os.FileInfo), @@ -1036,8 +997,6 @@ var FS = func() http.FileSystem { fs["/src/internal/fmtsort"].(os.FileInfo), fs["/src/internal/poll"].(os.FileInfo), fs["/src/internal/reflectlite"].(os.FileInfo), - fs["/src/internal/syscall"].(os.FileInfo), - fs["/src/internal/testenv"].(os.FileInfo), fs["/src/internal/unsafeheader"].(os.FileInfo), } fs["/src/internal/bytealg"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ @@ -1050,9 +1009,7 @@ var FS = func() http.FileSystem { fs["/src/internal/fmtsort/fmtsort_test.go"].(os.FileInfo), } fs["/src/internal/poll"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/src/internal/poll/fd_poll.go"].(os.FileInfo), - fs["/src/internal/poll/splice_linux.go"].(os.FileInfo), - fs["/src/internal/poll/splice_linux_test.go"].(os.FileInfo), + fs["/src/internal/poll/semaphore.go"].(os.FileInfo), } fs["/src/internal/reflectlite"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/internal/reflectlite/all_test.go"].(os.FileInfo), @@ -1064,15 +1021,6 @@ var FS = func() http.FileSystem { fs["/src/internal/reflectlite/utils.go"].(os.FileInfo), fs["/src/internal/reflectlite/value.go"].(os.FileInfo), } - fs["/src/internal/syscall"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/src/internal/syscall/unix"].(os.FileInfo), - } - fs["/src/internal/syscall/unix"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/src/internal/syscall/unix/unix.go"].(os.FileInfo), - } - fs["/src/internal/testenv"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ - fs["/src/internal/testenv/testenv.go"].(os.FileInfo), - } fs["/src/internal/unsafeheader"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/internal/unsafeheader/unsafeheader_test.go"].(os.FileInfo), } @@ -1097,13 +1045,17 @@ var FS = func() http.FileSystem { fs["/src/math/rand/rand_test.go"].(os.FileInfo), } fs["/src/net"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/net/fastrand.go"].(os.FileInfo), fs["/src/net/http"].(os.FileInfo), - fs["/src/net/net.go"].(os.FileInfo), } fs["/src/net/http"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/net/http/clientserver_test.go"].(os.FileInfo), fs["/src/net/http/cookiejar"].(os.FileInfo), - fs["/src/net/http/fetch.go"].(os.FileInfo), fs["/src/net/http/http.go"].(os.FileInfo), + fs["/src/net/http/http_wasm_test.go"].(os.FileInfo), + fs["/src/net/http/main_test.go"].(os.FileInfo), + fs["/src/net/http/server_test.go"].(os.FileInfo), + fs["/src/net/http/transport_test.go"].(os.FileInfo), } fs["/src/net/http/cookiejar"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/net/http/cookiejar/example_test.go"].(os.FileInfo), @@ -1111,7 +1063,6 @@ var FS = func() http.FileSystem { fs["/src/os"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/os/file.go"].(os.FileInfo), fs["/src/os/os.go"].(os.FileInfo), - fs["/src/os/removeall_noat.go"].(os.FileInfo), fs["/src/os/signal"].(os.FileInfo), } fs["/src/os/signal"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ @@ -1161,14 +1112,10 @@ var FS = func() http.FileSystem { fs["/src/sync/atomic/atomic_test.go"].(os.FileInfo), } fs["/src/syscall"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/syscall/fs_js.go"].(os.FileInfo), fs["/src/syscall/js"].(os.FileInfo), - fs["/src/syscall/syscall.go"].(os.FileInfo), - fs["/src/syscall/syscall_darwin.go"].(os.FileInfo), - fs["/src/syscall/syscall_darwin_arm64.go"].(os.FileInfo), - fs["/src/syscall/syscall_linux.go"].(os.FileInfo), - fs["/src/syscall/syscall_nonlinux.go"].(os.FileInfo), - fs["/src/syscall/syscall_unix.go"].(os.FileInfo), - fs["/src/syscall/syscall_windows.go"].(os.FileInfo), + fs["/src/syscall/legacy.go"].(os.FileInfo), + fs["/src/syscall/syscall_js_wasm.go"].(os.FileInfo), } fs["/src/syscall/js"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/syscall/js/export_test.go"].(os.FileInfo), @@ -1195,6 +1142,24 @@ var FS = func() http.FileSystem { fs["/src/unicode"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/src/unicode/unicode.go"].(os.FileInfo), } + fs["/src/vendor"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/vendor/golang.org"].(os.FileInfo), + } + fs["/src/vendor/golang.org"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/vendor/golang.org/x"].(os.FileInfo), + } + fs["/src/vendor/golang.org/x"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/vendor/golang.org/x/crypto"].(os.FileInfo), + } + fs["/src/vendor/golang.org/x/crypto"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/vendor/golang.org/x/crypto/internal"].(os.FileInfo), + } + fs["/src/vendor/golang.org/x/crypto/internal"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/vendor/golang.org/x/crypto/internal/subtle"].(os.FileInfo), + } + fs["/src/vendor/golang.org/x/crypto/internal/subtle"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go"].(os.FileInfo), + } return fs }() diff --git a/compiler/prelude/prelude_min.go b/compiler/prelude/prelude_min.go index 70f56af13..c8feb14a7 100644 --- a/compiler/prelude/prelude_min.go +++ b/compiler/prelude/prelude_min.go @@ -3,4 +3,4 @@ package prelude // Minified is an uglifyjs-minified version of Prelude. -const Minified = "var $global,$module;if(Error.stackTraceLimit=1/0,\"undefined\"!=typeof window?$global=window:\"undefined\"!=typeof self?$global=self:\"undefined\"!=typeof global?($global=global).require=require:$global=this,void 0===$global||void 0===$global.Array)throw new Error(\"no global object found\");\"undefined\"!=typeof module&&($module=module);var $throwRuntimeError,$linknames={},$packages={},$idCounter=0,$keys=function(e){return e?Object.keys(e):[]},$flushConsole=function(){},$throwNilPointerError=function(){$throwRuntimeError(\"invalid memory address or nil pointer dereference\")},$call=function(e,n,r){return e.apply(n,r)},$makeFunc=function(e){return function(){return $externalize(e(this,new($sliceType($jsObjectPtr))($global.Array.prototype.slice.call(arguments,[]))),$emptyInterface)}},$unused=function(e){},$print=console.log;if(void 0!==$global.process&&$global.require)try{var util=$global.require(\"util\");$print=function(){$global.process.stderr.write(util.format.apply(this,arguments))}}catch(e){}var $println=console.log,$initAllLinknames=function(){for(var e=$keys($packages),n=0;ne.$capacity||t>e.$capacity)&&$throwRuntimeError(\"slice bounds out of range\"),e===e.constructor.nil)return e;var i=new e.constructor(e.$array);return i.$offset=e.$offset+n,i.$length=r-n,i.$capacity=t-n,i},$substring=function(e,n,r){return(n<0||re.length)&&$throwRuntimeError(\"slice bounds out of range\"),e.substring(n,r)},$sliceToNativeArray=function(e){return e.$array.constructor!==Array?e.$array.subarray(e.$offset,e.$offset+e.$length):e.$array.slice(e.$offset,e.$offset+e.$length)},$sliceToGoArray=function(e,n){var r=n.elem;return void 0!==r&&e.$length1114111||55296<=e&&e<=57343)&&(e=65533),e<=127?String.fromCharCode(e):e<=2047?String.fromCharCode(192|e>>6,128|63&e):e<=65535?String.fromCharCode(224|e>>12,128|e>>6&63,128|63&e):String.fromCharCode(240|e>>18,128|e>>12&63,128|e>>6&63,128|63&e)},$stringToBytes=function(e){for(var n=new Uint8Array(e.length),r=0;rt){for(var o=i-1;o>=0;o--)a.copy(e[r+o],n[t+o]);return}for(o=0;ot)for(o=i-1;o>=0;o--)e[r+o]=n[t+o];else for(o=0;o$)if(a=0,$=Math.max(o,e.$capacity<1024?2*e.$capacity:Math.floor(5*e.$capacity/4)),e.$array.constructor===Array){(i=e.$array.slice(e.$offset,e.$offset+e.$length)).length=$;for(var c=e.constructor.elem.zero,u=e.$length;u<$;u++)i[u]=c()}else(i=new e.$array.constructor($)).set(e.$array.subarray(e.$offset,e.$offset+e.$length));$copyArray(i,n,a+e.$length,r,t,e.constructor.elem);var l=new e.constructor(i);return l.$offset=a,l.$length=o,l.$capacity=$,l},$equal=function(e,n,r){if(r===$jsObjectPtr)return e===n;switch(r.kind){case $kindComplex64:case $kindComplex128:return e.$real===n.$real&&e.$imag===n.$imag;case $kindInt64:case $kindUint64:return e.$high===n.$high&&e.$low===n.$low;case $kindArray:if(e.length!==n.length)return!1;for(var t=0;t>>16&65535)*t+r*(n>>>16&65535)<<16>>>0)>>0},$floatKey=function(e){return e!=e?\"NaN$\"+ ++$idCounter:String(e)},$flatten64=function(e){return 4294967296*e.$high+e.$low},$shiftLeft64=function(e,n){return 0===n?e:n<32?new e.constructor(e.$high<>>32-n,e.$low<>>0):n<64?new e.constructor(e.$low<>n,(e.$low>>>n|e.$high<<32-n)>>>0):n<64?new e.constructor(e.$high>>31,e.$high>>n-32>>>0):e.$high<0?new e.constructor(-1,4294967295):new e.constructor(0,0)},$shiftRightUint64=function(e,n){return 0===n?e:n<32?new e.constructor(e.$high>>>n,(e.$low>>>n|e.$high<<32-n)>>>0):n<64?new e.constructor(0,e.$high>>>n-32):new e.constructor(0,0)},$mul64=function(e,n){var r=e.$high>>>16,t=65535&e.$high,i=e.$low>>>16,a=65535&e.$low,o=n.$high>>>16,$=65535&n.$high,c=n.$low>>>16,u=65535&n.$low,l=0,s=0,f=0,d=0;f+=(d+=a*u)>>>16,s+=(f+=i*u)>>>16,f&=65535,s+=(f+=a*c)>>>16,l+=(s+=t*u)>>>16,s&=65535,l+=(s+=i*c)>>>16,s&=65535,l+=(s+=a*$)>>>16,l+=r*u+t*c+i*$+a*o;var p=((l&=65535)<<16|(s&=65535))>>>0,h=((f&=65535)<<16|(d&=65535))>>>0;return new e.constructor(p,h)},$div64=function(e,n,r){0===n.$high&&0===n.$low&&$throwRuntimeError(\"integer divide by zero\");var t=1,i=1,a=e.$high,o=e.$low;a<0&&(t=-1,i=-1,a=-a,0!==o&&(a--,o=4294967296-o));var $=n.$high,c=n.$low;n.$high<0&&(t*=-1,$=-$,0!==c&&($--,c=4294967296-c));for(var u=0,l=0,s=0;$<2147483648&&(a>$||a===$&&o>c);)$=($<<1|c>>>31)>>>0,c=c<<1>>>0,s++;for(var f=0;f<=s;f++)u=u<<1|l>>>31,l=l<<1>>>0,(a>$||a===$&&o>=c)&&(a-=$,(o-=c)<0&&(a--,o+=4294967296),4294967296===++l&&(u++,l=0)),c=(c>>>1|$<<31)>>>0,$>>>=1;return r?new e.constructor(a*i,o*i):new e.constructor(u*t,l*t)},$divComplex=function(e,n){var r=e.$real===1/0||e.$real===-1/0||e.$imag===1/0||e.$imag===-1/0,t=n.$real===1/0||n.$real===-1/0||n.$imag===1/0||n.$imag===-1/0,i=!r&&(e.$real!=e.$real||e.$imag!=e.$imag),a=!t&&(n.$real!=n.$real||n.$imag!=n.$imag);if(i||a)return new e.constructor(NaN,NaN);if(r&&!t)return new e.constructor(1/0,1/0);if(!r&&t)return new e.constructor(0,0);if(0===n.$real&&0===n.$imag)return 0===e.$real&&0===e.$imag?new e.constructor(NaN,NaN):new e.constructor(1/0,1/0);if(Math.abs(n.$real)<=Math.abs(n.$imag)){var o=n.$real/n.$imag,$=n.$real*o+n.$imag;return new e.constructor((e.$real*o+e.$imag)/$,(e.$imag*o-e.$real)/$)}o=n.$imag/n.$real,$=n.$imag*o+n.$real;return new e.constructor((e.$imag*o+e.$real)/$,(e.$imag-e.$real*o)/$)},$kindBool=1,$kindInt=2,$kindInt8=3,$kindInt16=4,$kindInt32=5,$kindInt64=6,$kindUint=7,$kindUint8=8,$kindUint16=9,$kindUint32=10,$kindUint64=11,$kindUintptr=12,$kindFloat32=13,$kindFloat64=14,$kindComplex64=15,$kindComplex128=16,$kindArray=17,$kindChan=18,$kindFunc=19,$kindInterface=20,$kindMap=21,$kindPtr=22,$kindSlice=23,$kindString=24,$kindStruct=25,$kindUnsafePointer=26,$methodSynthesizers=[],$addMethodSynthesizer=function(e){null!==$methodSynthesizers?$methodSynthesizers.push(e):e()},$synthesizeMethods=function(){$methodSynthesizers.forEach(function(e){e()}),$methodSynthesizers=null},$ifaceKeyFor=function(e){if(e===$ifaceNil)return\"nil\";var n=e.constructor;return n.string+\"$\"+n.keyFor(e.$val)},$identity=function(e){return e},$typeIDCounter=0,$idKey=function(e){return void 0===e.$id&&($idCounter++,e.$id=$idCounter),String(e.$id)},$arrayPtrCtor=function(){return function(e){this.$get=function(){return e},this.$set=function(e){typ.copy(this,e)},this.$val=e}},$newType=function(e,n,r,t,i,a,o){var $;switch(n){case $kindBool:case $kindInt:case $kindInt8:case $kindInt16:case $kindInt32:case $kindUint:case $kindUint8:case $kindUint16:case $kindUint32:case $kindUintptr:case $kindUnsafePointer:($=function(e){this.$val=e}).wrapped=!0,$.keyFor=$identity;break;case $kindString:($=function(e){this.$val=e}).wrapped=!0,$.keyFor=function(e){return\"$\"+e};break;case $kindFloat32:case $kindFloat64:($=function(e){this.$val=e}).wrapped=!0,$.keyFor=function(e){return $floatKey(e)};break;case $kindInt64:($=function(e,n){this.$high=e+Math.floor(Math.ceil(n)/4294967296)>>0,this.$low=n>>>0,this.$val=this}).keyFor=function(e){return e.$high+\"$\"+e.$low};break;case $kindUint64:($=function(e,n){this.$high=e+Math.floor(Math.ceil(n)/4294967296)>>>0,this.$low=n>>>0,this.$val=this}).keyFor=function(e){return e.$high+\"$\"+e.$low};break;case $kindComplex64:($=function(e,n){this.$real=$fround(e),this.$imag=$fround(n),this.$val=this}).keyFor=function(e){return e.$real+\"$\"+e.$imag};break;case $kindComplex128:($=function(e,n){this.$real=e,this.$imag=n,this.$val=this}).keyFor=function(e){return e.$real+\"$\"+e.$imag};break;case $kindArray:($=function(e){this.$val=e}).wrapped=!0,$.ptr=$newType(4,$kindPtr,\"*\"+r,!1,\"\",!1,$arrayPtrCtor()),$.init=function(e,n){$.elem=e,$.len=n,$.comparable=e.comparable,$.keyFor=function(n){return Array.prototype.join.call($mapArray(n,function(n){return String(e.keyFor(n)).replace(/\\\\/g,\"\\\\\\\\\").replace(/\\$/g,\"\\\\$\")}),\"$\")},$.copy=function(n,r){$copyArray(n,r,0,0,r.length,e)},$.ptr.init($),Object.defineProperty($.ptr.nil,\"nilCheck\",{get:$throwNilPointerError})};break;case $kindChan:($=function(e){this.$val=e}).wrapped=!0,$.keyFor=$idKey,$.init=function(e,n,r){$.elem=e,$.sendOnly=n,$.recvOnly=r};break;case $kindFunc:($=function(e){this.$val=e}).wrapped=!0,$.init=function(e,n,r){$.params=e,$.results=n,$.variadic=r,$.comparable=!1};break;case $kindInterface:($={implementedBy:{},missingMethodFor:{}}).keyFor=$ifaceKeyFor,$.init=function(e){$.methods=e,e.forEach(function(e){$ifaceNil[e.prop]=$throwNilPointerError})};break;case $kindMap:($=function(e){this.$val=e}).wrapped=!0,$.init=function(e,n){$.key=e,$.elem=n,$.comparable=!1};break;case $kindPtr:($=o||function(e,n,r){this.$get=e,this.$set=n,this.$target=r,this.$val=this}).keyFor=$idKey,$.init=function(e){$.elem=e,$.wrapped=e.kind===$kindArray,$.nil=new $($throwNilPointerError,$throwNilPointerError)};break;case $kindSlice:($=function(e){e.constructor!==$.nativeArray&&(e=new $.nativeArray(e)),this.$array=e,this.$offset=0,this.$length=e.length,this.$capacity=e.length,this.$val=this}).init=function(e){$.elem=e,$.comparable=!1,$.nativeArray=$nativeArray(e.kind),$.nil=new $([])};break;case $kindStruct:($=function(e){this.$val=e}).wrapped=!0,$.ptr=$newType(4,$kindPtr,\"*\"+r,!1,i,a,o),$.ptr.elem=$,$.ptr.prototype.$get=function(){return this},$.ptr.prototype.$set=function(e){$.copy(this,e)},$.init=function(e,n){$.pkgPath=e,$.fields=n,n.forEach(function(e){e.typ.comparable||($.comparable=!1)}),$.keyFor=function(e){var r=e.$val;return $mapArray(n,function(e){return String(e.typ.keyFor(r[e.prop])).replace(/\\\\/g,\"\\\\\\\\\").replace(/\\$/g,\"\\\\$\")}).join(\"$\")},$.copy=function(e,r){for(var t=0;t0;){var a=[],o=[];t.forEach(function(e){if(!i[e.typ.string])switch(i[e.typ.string]=!0,e.typ.named&&(o=o.concat(e.typ.methods),e.indirect&&(o=o.concat($ptrType(e.typ).methods))),e.typ.kind){case $kindStruct:e.typ.fields.forEach(function(n){if(n.embedded){var r=n.typ,t=r.kind===$kindPtr;a.push({typ:t?r.elem:r,indirect:e.indirect||t})}});break;case $kindInterface:o=o.concat(e.typ.methods)}}),o.forEach(function(e){void 0===n[e.name]&&(n[e.name]=e)}),t=a}return e.methodSetCache=[],Object.keys(n).sort().forEach(function(r){e.methodSetCache.push(n[r])}),e.methodSetCache},$Bool=$newType(1,$kindBool,\"bool\",!0,\"\",!1,null),$Int=$newType(4,$kindInt,\"int\",!0,\"\",!1,null),$Int8=$newType(1,$kindInt8,\"int8\",!0,\"\",!1,null),$Int16=$newType(2,$kindInt16,\"int16\",!0,\"\",!1,null),$Int32=$newType(4,$kindInt32,\"int32\",!0,\"\",!1,null),$Int64=$newType(8,$kindInt64,\"int64\",!0,\"\",!1,null),$Uint=$newType(4,$kindUint,\"uint\",!0,\"\",!1,null),$Uint8=$newType(1,$kindUint8,\"uint8\",!0,\"\",!1,null),$Uint16=$newType(2,$kindUint16,\"uint16\",!0,\"\",!1,null),$Uint32=$newType(4,$kindUint32,\"uint32\",!0,\"\",!1,null),$Uint64=$newType(8,$kindUint64,\"uint64\",!0,\"\",!1,null),$Uintptr=$newType(4,$kindUintptr,\"uintptr\",!0,\"\",!1,null),$Float32=$newType(4,$kindFloat32,\"float32\",!0,\"\",!1,null),$Float64=$newType(8,$kindFloat64,\"float64\",!0,\"\",!1,null),$Complex64=$newType(8,$kindComplex64,\"complex64\",!0,\"\",!1,null),$Complex128=$newType(16,$kindComplex128,\"complex128\",!0,\"\",!1,null),$String=$newType(8,$kindString,\"string\",!0,\"\",!1,null),$UnsafePointer=$newType(4,$kindUnsafePointer,\"unsafe.Pointer\",!0,\"unsafe\",!1,null),$nativeArray=function(e){switch(e){case $kindInt:return Int32Array;case $kindInt8:return Int8Array;case $kindInt16:return Int16Array;case $kindInt32:return Int32Array;case $kindUint:return Uint32Array;case $kindUint8:return Uint8Array;case $kindUint16:return Uint16Array;case $kindUint32:case $kindUintptr:return Uint32Array;case $kindFloat32:return Float32Array;case $kindFloat64:return Float64Array;default:return Array}},$toNativeArray=function(e,n){var r=$nativeArray(e);return r===Array?n:new r(n)},$arrayTypes={},$arrayType=function(e,n){var r=e.id+\"$\"+n,t=$arrayTypes[r];return void 0===t&&(t=$newType(12,$kindArray,\"[\"+n+\"]\"+e.string,!1,\"\",!1,null),$arrayTypes[r]=t,t.init(e,n)),t},$chanType=function(e,n,r){var t=(r?\"<-\":\"\")+\"chan\"+(n?\"<- \":\" \");n||r||\"<\"!=e.string[0]?t+=e.string:t+=\"(\"+e.string+\")\";var i=n?\"SendChan\":r?\"RecvChan\":\"Chan\",a=e[i];return void 0===a&&(a=$newType(4,$kindChan,t,!1,\"\",!1,null),e[i]=a,a.init(e,n,r)),a},$Chan=function(e,n){(n<0||n>2147483647)&&$throwRuntimeError(\"makechan: size out of range\"),this.$elem=e,this.$capacity=n,this.$buffer=[],this.$sendQueue=[],this.$recvQueue=[],this.$closed=!1},$chanNil=new $Chan(null,0);$chanNil.$sendQueue=$chanNil.$recvQueue={length:0,push:function(){},shift:function(){},indexOf:function(){return-1}};var $funcTypes={},$funcType=function(e,n,r){var t=$mapArray(e,function(e){return e.id}).join(\",\")+\"$\"+$mapArray(n,function(e){return e.id}).join(\",\")+\"$\"+r,i=$funcTypes[t];if(void 0===i){var a=$mapArray(e,function(e){return e.string});r&&(a[a.length-1]=\"...\"+a[a.length-1].substr(2));var o=\"func(\"+a.join(\", \")+\")\";1===n.length?o+=\" \"+n[0].string:n.length>1&&(o+=\" (\"+$mapArray(n,function(e){return e.string}).join(\", \")+\")\"),i=$newType(4,$kindFunc,o,!1,\"\",!1,null),$funcTypes[t]=i,i.init(e,n,r)}return i},$interfaceTypes={},$interfaceType=function(e){var n=$mapArray(e,function(e){return e.pkg+\",\"+e.name+\",\"+e.typ.id}).join(\"$\"),r=$interfaceTypes[n];if(void 0===r){var t=\"interface {}\";0!==e.length&&(t=\"interface { \"+$mapArray(e,function(e){return(\"\"!==e.pkg?e.pkg+\".\":\"\")+e.name+e.typ.string.substr(4)}).join(\"; \")+\" }\"),r=$newType(8,$kindInterface,t,!1,\"\",!1,null),$interfaceTypes[n]=r,r.init(e)}return r},$emptyInterface=$interfaceType([]),$ifaceNil={},$error=$newType(8,$kindInterface,\"error\",!0,\"\",!1,null);$error.init([{prop:\"Error\",name:\"Error\",pkg:\"\",typ:$funcType([],[$String],!1)}]);var $panicValue,$jsObjectPtr,$jsErrorPtr,$mapTypes={},$mapType=function(e,n){var r=e.id+\"$\"+n.id,t=$mapTypes[r];return void 0===t&&(t=$newType(4,$kindMap,\"map[\"+e.string+\"]\"+n.string,!1,\"\",!1,null),$mapTypes[r]=t,t.init(e,n)),t},$makeMap=function(e,n){for(var r={},t=0;t2147483647)&&$throwRuntimeError(\"makeslice: len out of range\"),(r<0||r2147483647)&&$throwRuntimeError(\"makeslice: cap out of range\");var t=new e.nativeArray(r);if(e.nativeArray===Array)for(var i=0;i4||t<0)break}}finally{0==$scheduled.length&&clearTimeout(e)}},$schedule=function(e){e.asleep&&(e.asleep=!1,$awakeGoroutines++),$scheduled.push(e),$curGoroutine===$noGoroutine&&$runScheduled()},$setTimeout=function(e,n){return $awakeGoroutines++,setTimeout(function(){$awakeGoroutines--,e()},n)},$block=function(){$curGoroutine===$noGoroutine&&$throwRuntimeError(\"cannot block in JavaScript callback, fix by wrapping code in goroutine\"),$curGoroutine.asleep=!0},$send=function(e,n){e.$closed&&$throwRuntimeError(\"send on closed channel\");var r=e.$recvQueue.shift();if(void 0===r){if(!(e.$buffer.length65535){var l=Math.floor((u-65536)/1024)+55296,s=(u-65536)%1024+56320;c+=String.fromCharCode(l,s)}else c+=String.fromCharCode(u)}return c;case $kindStruct:var f=$packages.time;if(void 0!==f&&e.constructor===f.Time.ptr){var d=$div64(e.UnixNano(),new $Int64(0,1e6));return new Date($flatten64(d))}var p={},h=function(e,n){if(n===$jsObjectPtr)return e;switch(n.kind){case $kindPtr:return e===n.nil?p:h(e.$get(),n.elem);case $kindStruct:var r=n.fields[0];return h(e[r.prop],r.typ);case $kindInterface:return h(e.$val,e.constructor);default:return p}},k=h(e,n);if(k!==p)return k;if(void 0!==r)return r(e);k={};for(a=0;a>24;case $kindInt16:return parseInt(e)<<16>>16;case $kindInt32:return parseInt(e)>>0;case $kindUint:return parseInt(e);case $kindUint8:return parseInt(e)<<24>>>24;case $kindUint16:return parseInt(e)<<16>>>16;case $kindUint32:case $kindUintptr:return parseInt(e)>>>0;case $kindInt64:case $kindUint64:return new n(0,e);case $kindFloat32:case $kindFloat64:return parseFloat(e);case $kindArray:return e.length!==n.len&&$throwRuntimeError(\"got array with wrong size from JavaScript native\"),$mapArray(e,function(e){return $internalize(e,n.elem,i)});case $kindFunc:return function(){for(var t=[],a=0;a=128)return!1;return!0};\n" +const Minified = "var $global,$module;if(Error.stackTraceLimit=1/0,\"undefined\"!=typeof window?$global=window:\"undefined\"!=typeof self?$global=self:\"undefined\"!=typeof global?($global=global).require=require:$global=this,void 0===$global||void 0===$global.Array)throw new Error(\"no global object found\");if(\"undefined\"!=typeof module&&($module=module),!$global.fs&&$global.require)try{var fs=$global.require(\"fs\");\"object\"==typeof fs&&null!==fs&&0!==Object.keys(fs).length&&($global.fs=fs)}catch(e){}if(!$global.fs){var outputBuf=\"\",decoder=new TextDecoder(\"utf-8\");$global.fs={constants:{O_WRONLY:-1,O_RDWR:-1,O_CREAT:-1,O_TRUNC:-1,O_APPEND:-1,O_EXCL:-1},writeSync:function(e,n){var r=(outputBuf+=decoder.decode(n)).lastIndexOf(\"\\n\");return-1!=r&&(console.log(outputBuf.substr(0,r)),outputBuf=outputBuf.substr(r+1)),n.length},write:function(e,n,r,t,i,a){0===r&&t===n.length&&null===i?a(null,this.writeSync(e,n)):a(enosys())}}}var $throwRuntimeError,$linknames={},$packages={},$idCounter=0,$keys=function(e){return e?Object.keys(e):[]},$flushConsole=function(){},$throwNilPointerError=function(){$throwRuntimeError(\"invalid memory address or nil pointer dereference\")},$call=function(e,n,r){return e.apply(n,r)},$makeFunc=function(e){return function(){return $externalize(e(this,new($sliceType($jsObjectPtr))($global.Array.prototype.slice.call(arguments,[]))),$emptyInterface)}},$unused=function(e){},$print=console.log;if(void 0!==$global.process&&$global.require)try{var util=$global.require(\"util\");$print=function(){$global.process.stderr.write(util.format.apply(this,arguments))}}catch(e){}var $println=console.log,$initAllLinknames=function(){for(var e=$keys($packages),n=0;ne.$capacity||t>e.$capacity)&&$throwRuntimeError(\"slice bounds out of range\"),e===e.constructor.nil)return e;var i=new e.constructor(e.$array);return i.$offset=e.$offset+n,i.$length=r-n,i.$capacity=t-n,i},$substring=function(e,n,r){return(n<0||re.length)&&$throwRuntimeError(\"slice bounds out of range\"),e.substring(n,r)},$sliceToNativeArray=function(e){return e.$array.constructor!==Array?e.$array.subarray(e.$offset,e.$offset+e.$length):e.$array.slice(e.$offset,e.$offset+e.$length)},$sliceToGoArray=function(e,n){var r=n.elem;return void 0!==r&&e.$length1114111||55296<=e&&e<=57343)&&(e=65533),e<=127?String.fromCharCode(e):e<=2047?String.fromCharCode(192|e>>6,128|63&e):e<=65535?String.fromCharCode(224|e>>12,128|e>>6&63,128|63&e):String.fromCharCode(240|e>>18,128|e>>12&63,128|e>>6&63,128|63&e)},$stringToBytes=function(e){for(var n=new Uint8Array(e.length),r=0;rt){for(var o=i-1;o>=0;o--)a.copy(e[r+o],n[t+o]);return}for(o=0;ot)for(o=i-1;o>=0;o--)e[r+o]=n[t+o];else for(o=0;oc)if(a=0,c=Math.max(o,e.$capacity<1024?2*e.$capacity:Math.floor(5*e.$capacity/4)),e.$array.constructor===Array){(i=e.$array.slice(e.$offset,e.$offset+e.$length)).length=c;for(var $=e.constructor.elem.zero,u=e.$length;u>>16&65535)*t+r*(n>>>16&65535)<<16>>>0)>>0},$floatKey=function(e){return e!=e?\"NaN$\"+ ++$idCounter:String(e)},$flatten64=function(e){return 4294967296*e.$high+e.$low},$shiftLeft64=function(e,n){return 0===n?e:n<32?new e.constructor(e.$high<>>32-n,e.$low<>>0):n<64?new e.constructor(e.$low<>n,(e.$low>>>n|e.$high<<32-n)>>>0):n<64?new e.constructor(e.$high>>31,e.$high>>n-32>>>0):e.$high<0?new e.constructor(-1,4294967295):new e.constructor(0,0)},$shiftRightUint64=function(e,n){return 0===n?e:n<32?new e.constructor(e.$high>>>n,(e.$low>>>n|e.$high<<32-n)>>>0):n<64?new e.constructor(0,e.$high>>>n-32):new e.constructor(0,0)},$mul64=function(e,n){var r=e.$high>>>16,t=65535&e.$high,i=e.$low>>>16,a=65535&e.$low,o=n.$high>>>16,c=65535&n.$high,$=n.$low>>>16,u=65535&n.$low,l=0,s=0,f=0,d=0;f+=(d+=a*u)>>>16,s+=(f+=i*u)>>>16,f&=65535,s+=(f+=a*$)>>>16,l+=(s+=t*u)>>>16,s&=65535,l+=(s+=i*$)>>>16,s&=65535,l+=(s+=a*c)>>>16,l+=r*u+t*$+i*c+a*o;var p=((l&=65535)<<16|(s&=65535))>>>0,h=((f&=65535)<<16|(d&=65535))>>>0;return new e.constructor(p,h)},$div64=function(e,n,r){0===n.$high&&0===n.$low&&$throwRuntimeError(\"integer divide by zero\");var t=1,i=1,a=e.$high,o=e.$low;a<0&&(t=-1,i=-1,a=-a,0!==o&&(a--,o=4294967296-o));var c=n.$high,$=n.$low;n.$high<0&&(t*=-1,c=-c,0!==$&&(c--,$=4294967296-$));for(var u=0,l=0,s=0;c<2147483648&&(a>c||a===c&&o>$);)c=(c<<1|$>>>31)>>>0,$=$<<1>>>0,s++;for(var f=0;f<=s;f++)u=u<<1|l>>>31,l=l<<1>>>0,(a>c||a===c&&o>=$)&&(a-=c,(o-=$)<0&&(a--,o+=4294967296),4294967296===++l&&(u++,l=0)),$=($>>>1|c<<31)>>>0,c>>>=1;return r?new e.constructor(a*i,o*i):new e.constructor(u*t,l*t)},$divComplex=function(e,n){var r=e.$real===1/0||e.$real===-1/0||e.$imag===1/0||e.$imag===-1/0,t=n.$real===1/0||n.$real===-1/0||n.$imag===1/0||n.$imag===-1/0,i=!r&&(e.$real!=e.$real||e.$imag!=e.$imag),a=!t&&(n.$real!=n.$real||n.$imag!=n.$imag);if(i||a)return new e.constructor(NaN,NaN);if(r&&!t)return new e.constructor(1/0,1/0);if(!r&&t)return new e.constructor(0,0);if(0===n.$real&&0===n.$imag)return 0===e.$real&&0===e.$imag?new e.constructor(NaN,NaN):new e.constructor(1/0,1/0);if(Math.abs(n.$real)<=Math.abs(n.$imag)){var o=n.$real/n.$imag,c=n.$real*o+n.$imag;return new e.constructor((e.$real*o+e.$imag)/c,(e.$imag*o-e.$real)/c)}o=n.$imag/n.$real,c=n.$imag*o+n.$real;return new e.constructor((e.$imag*o+e.$real)/c,(e.$imag-e.$real*o)/c)},$kindBool=1,$kindInt=2,$kindInt8=3,$kindInt16=4,$kindInt32=5,$kindInt64=6,$kindUint=7,$kindUint8=8,$kindUint16=9,$kindUint32=10,$kindUint64=11,$kindUintptr=12,$kindFloat32=13,$kindFloat64=14,$kindComplex64=15,$kindComplex128=16,$kindArray=17,$kindChan=18,$kindFunc=19,$kindInterface=20,$kindMap=21,$kindPtr=22,$kindSlice=23,$kindString=24,$kindStruct=25,$kindUnsafePointer=26,$methodSynthesizers=[],$addMethodSynthesizer=function(e){null!==$methodSynthesizers?$methodSynthesizers.push(e):e()},$synthesizeMethods=function(){$methodSynthesizers.forEach(function(e){e()}),$methodSynthesizers=null},$ifaceKeyFor=function(e){if(e===$ifaceNil)return\"nil\";var n=e.constructor;return n.string+\"$\"+n.keyFor(e.$val)},$identity=function(e){return e},$typeIDCounter=0,$idKey=function(e){return void 0===e.$id&&($idCounter++,e.$id=$idCounter),String(e.$id)},$arrayPtrCtor=function(){return function(e){this.$get=function(){return e},this.$set=function(e){typ.copy(this,e)},this.$val=e}},$newType=function(e,n,r,t,i,a,o){var c;switch(n){case $kindBool:case $kindInt:case $kindInt8:case $kindInt16:case $kindInt32:case $kindUint:case $kindUint8:case $kindUint16:case $kindUint32:case $kindUintptr:case $kindUnsafePointer:(c=function(e){this.$val=e}).wrapped=!0,c.keyFor=$identity;break;case $kindString:(c=function(e){this.$val=e}).wrapped=!0,c.keyFor=function(e){return\"$\"+e};break;case $kindFloat32:case $kindFloat64:(c=function(e){this.$val=e}).wrapped=!0,c.keyFor=function(e){return $floatKey(e)};break;case $kindInt64:(c=function(e,n){this.$high=e+Math.floor(Math.ceil(n)/4294967296)>>0,this.$low=n>>>0,this.$val=this}).keyFor=function(e){return e.$high+\"$\"+e.$low};break;case $kindUint64:(c=function(e,n){this.$high=e+Math.floor(Math.ceil(n)/4294967296)>>>0,this.$low=n>>>0,this.$val=this}).keyFor=function(e){return e.$high+\"$\"+e.$low};break;case $kindComplex64:(c=function(e,n){this.$real=$fround(e),this.$imag=$fround(n),this.$val=this}).keyFor=function(e){return e.$real+\"$\"+e.$imag};break;case $kindComplex128:(c=function(e,n){this.$real=e,this.$imag=n,this.$val=this}).keyFor=function(e){return e.$real+\"$\"+e.$imag};break;case $kindArray:(c=function(e){this.$val=e}).wrapped=!0,c.ptr=$newType(4,$kindPtr,\"*\"+r,!1,\"\",!1,$arrayPtrCtor()),c.init=function(e,n){c.elem=e,c.len=n,c.comparable=e.comparable,c.keyFor=function(n){return Array.prototype.join.call($mapArray(n,function(n){return String(e.keyFor(n)).replace(/\\\\/g,\"\\\\\\\\\").replace(/\\$/g,\"\\\\$\")}),\"$\")},c.copy=function(n,r){$copyArray(n,r,0,0,r.length,e)},c.ptr.init(c),Object.defineProperty(c.ptr.nil,\"nilCheck\",{get:$throwNilPointerError})};break;case $kindChan:(c=function(e){this.$val=e}).wrapped=!0,c.keyFor=$idKey,c.init=function(e,n,r){c.elem=e,c.sendOnly=n,c.recvOnly=r};break;case $kindFunc:(c=function(e){this.$val=e}).wrapped=!0,c.init=function(e,n,r){c.params=e,c.results=n,c.variadic=r,c.comparable=!1};break;case $kindInterface:(c={implementedBy:{},missingMethodFor:{}}).keyFor=$ifaceKeyFor,c.init=function(e){c.methods=e,e.forEach(function(e){$ifaceNil[e.prop]=$throwNilPointerError})};break;case $kindMap:(c=function(e){this.$val=e}).wrapped=!0,c.init=function(e,n){c.key=e,c.elem=n,c.comparable=!1};break;case $kindPtr:(c=o||function(e,n,r){this.$get=e,this.$set=n,this.$target=r,this.$val=this}).keyFor=$idKey,c.init=function(e){c.elem=e,c.wrapped=e.kind===$kindArray,c.nil=new c($throwNilPointerError,$throwNilPointerError)};break;case $kindSlice:(c=function(e){e.constructor!==c.nativeArray&&(e=new c.nativeArray(e)),this.$array=e,this.$offset=0,this.$length=e.length,this.$capacity=e.length,this.$val=this}).init=function(e){c.elem=e,c.comparable=!1,c.nativeArray=$nativeArray(e.kind),c.nil=new c([])};break;case $kindStruct:(c=function(e){this.$val=e}).wrapped=!0,c.ptr=$newType(4,$kindPtr,\"*\"+r,!1,i,a,o),c.ptr.elem=c,c.ptr.prototype.$get=function(){return this},c.ptr.prototype.$set=function(e){c.copy(this,e)},c.init=function(e,n){c.pkgPath=e,c.fields=n,n.forEach(function(e){e.typ.comparable||(c.comparable=!1)}),c.keyFor=function(e){var r=e.$val;return $mapArray(n,function(e){return String(e.typ.keyFor(r[e.prop])).replace(/\\\\/g,\"\\\\\\\\\").replace(/\\$/g,\"\\\\$\")}).join(\"$\")},c.copy=function(e,r){for(var t=0;t0;){var a=[],o=[];t.forEach(function(e){if(!i[e.typ.string])switch(i[e.typ.string]=!0,e.typ.named&&(o=o.concat(e.typ.methods),e.indirect&&(o=o.concat($ptrType(e.typ).methods))),e.typ.kind){case $kindStruct:e.typ.fields.forEach(function(n){if(n.embedded){var r=n.typ,t=r.kind===$kindPtr;a.push({typ:t?r.elem:r,indirect:e.indirect||t})}});break;case $kindInterface:o=o.concat(e.typ.methods)}}),o.forEach(function(e){void 0===n[e.name]&&(n[e.name]=e)}),t=a}return e.methodSetCache=[],Object.keys(n).sort().forEach(function(r){e.methodSetCache.push(n[r])}),e.methodSetCache},$Bool=$newType(1,$kindBool,\"bool\",!0,\"\",!1,null),$Int=$newType(4,$kindInt,\"int\",!0,\"\",!1,null),$Int8=$newType(1,$kindInt8,\"int8\",!0,\"\",!1,null),$Int16=$newType(2,$kindInt16,\"int16\",!0,\"\",!1,null),$Int32=$newType(4,$kindInt32,\"int32\",!0,\"\",!1,null),$Int64=$newType(8,$kindInt64,\"int64\",!0,\"\",!1,null),$Uint=$newType(4,$kindUint,\"uint\",!0,\"\",!1,null),$Uint8=$newType(1,$kindUint8,\"uint8\",!0,\"\",!1,null),$Uint16=$newType(2,$kindUint16,\"uint16\",!0,\"\",!1,null),$Uint32=$newType(4,$kindUint32,\"uint32\",!0,\"\",!1,null),$Uint64=$newType(8,$kindUint64,\"uint64\",!0,\"\",!1,null),$Uintptr=$newType(4,$kindUintptr,\"uintptr\",!0,\"\",!1,null),$Float32=$newType(4,$kindFloat32,\"float32\",!0,\"\",!1,null),$Float64=$newType(8,$kindFloat64,\"float64\",!0,\"\",!1,null),$Complex64=$newType(8,$kindComplex64,\"complex64\",!0,\"\",!1,null),$Complex128=$newType(16,$kindComplex128,\"complex128\",!0,\"\",!1,null),$String=$newType(8,$kindString,\"string\",!0,\"\",!1,null),$UnsafePointer=$newType(4,$kindUnsafePointer,\"unsafe.Pointer\",!0,\"unsafe\",!1,null),$nativeArray=function(e){switch(e){case $kindInt:return Int32Array;case $kindInt8:return Int8Array;case $kindInt16:return Int16Array;case $kindInt32:return Int32Array;case $kindUint:return Uint32Array;case $kindUint8:return Uint8Array;case $kindUint16:return Uint16Array;case $kindUint32:case $kindUintptr:return Uint32Array;case $kindFloat32:return Float32Array;case $kindFloat64:return Float64Array;default:return Array}},$toNativeArray=function(e,n){var r=$nativeArray(e);return r===Array?n:new r(n)},$arrayTypes={},$arrayType=function(e,n){var r=e.id+\"$\"+n,t=$arrayTypes[r];return void 0===t&&(t=$newType(12,$kindArray,\"[\"+n+\"]\"+e.string,!1,\"\",!1,null),$arrayTypes[r]=t,t.init(e,n)),t},$chanType=function(e,n,r){var t=(r?\"<-\":\"\")+\"chan\"+(n?\"<- \":\" \");n||r||\"<\"!=e.string[0]?t+=e.string:t+=\"(\"+e.string+\")\";var i=n?\"SendChan\":r?\"RecvChan\":\"Chan\",a=e[i];return void 0===a&&(a=$newType(4,$kindChan,t,!1,\"\",!1,null),e[i]=a,a.init(e,n,r)),a},$Chan=function(e,n){(n<0||n>2147483647)&&$throwRuntimeError(\"makechan: size out of range\"),this.$elem=e,this.$capacity=n,this.$buffer=[],this.$sendQueue=[],this.$recvQueue=[],this.$closed=!1},$chanNil=new $Chan(null,0);$chanNil.$sendQueue=$chanNil.$recvQueue={length:0,push:function(){},shift:function(){},indexOf:function(){return-1}};var $funcTypes={},$funcType=function(e,n,r){var t=$mapArray(e,function(e){return e.id}).join(\",\")+\"$\"+$mapArray(n,function(e){return e.id}).join(\",\")+\"$\"+r,i=$funcTypes[t];if(void 0===i){var a=$mapArray(e,function(e){return e.string});r&&(a[a.length-1]=\"...\"+a[a.length-1].substr(2));var o=\"func(\"+a.join(\", \")+\")\";1===n.length?o+=\" \"+n[0].string:n.length>1&&(o+=\" (\"+$mapArray(n,function(e){return e.string}).join(\", \")+\")\"),i=$newType(4,$kindFunc,o,!1,\"\",!1,null),$funcTypes[t]=i,i.init(e,n,r)}return i},$interfaceTypes={},$interfaceType=function(e){var n=$mapArray(e,function(e){return e.pkg+\",\"+e.name+\",\"+e.typ.id}).join(\"$\"),r=$interfaceTypes[n];if(void 0===r){var t=\"interface {}\";0!==e.length&&(t=\"interface { \"+$mapArray(e,function(e){return(\"\"!==e.pkg?e.pkg+\".\":\"\")+e.name+e.typ.string.substr(4)}).join(\"; \")+\" }\"),r=$newType(8,$kindInterface,t,!1,\"\",!1,null),$interfaceTypes[n]=r,r.init(e)}return r},$emptyInterface=$interfaceType([]),$ifaceNil={},$error=$newType(8,$kindInterface,\"error\",!0,\"\",!1,null);$error.init([{prop:\"Error\",name:\"Error\",pkg:\"\",typ:$funcType([],[$String],!1)}]);var $panicValue,$jsObjectPtr,$jsErrorPtr,$mapTypes={},$mapType=function(e,n){var r=e.id+\"$\"+n.id,t=$mapTypes[r];return void 0===t&&(t=$newType(4,$kindMap,\"map[\"+e.string+\"]\"+n.string,!1,\"\",!1,null),$mapTypes[r]=t,t.init(e,n)),t},$makeMap=function(e,n){for(var r={},t=0;t2147483647)&&$throwRuntimeError(\"makeslice: len out of range\"),(r<0||r2147483647)&&$throwRuntimeError(\"makeslice: cap out of range\");var t=new e.nativeArray(r);if(e.nativeArray===Array)for(var i=0;i4||t<0)break}}finally{0==$scheduled.length&&clearTimeout(e)}},$schedule=function(e){e.asleep&&(e.asleep=!1,$awakeGoroutines++),$scheduled.push(e),$curGoroutine===$noGoroutine&&$runScheduled()},$setTimeout=function(e,n){return $awakeGoroutines++,setTimeout(function(){$awakeGoroutines--,e()},n)},$block=function(){$curGoroutine===$noGoroutine&&$throwRuntimeError(\"cannot block in JavaScript callback, fix by wrapping code in goroutine\"),$curGoroutine.asleep=!0},$send=function(e,n){e.$closed&&$throwRuntimeError(\"send on closed channel\");var r=e.$recvQueue.shift();if(void 0===r){if(!(e.$buffer.length65535){var l=Math.floor((u-65536)/1024)+55296,s=(u-65536)%1024+56320;$+=String.fromCharCode(l,s)}else $+=String.fromCharCode(u)}return $;case $kindStruct:var f=$packages.time;if(void 0!==f&&e.constructor===f.Time.ptr){var d=$div64(e.UnixNano(),new $Int64(0,1e6));return new Date($flatten64(d))}var p={},h=function(e,n){if(n===$jsObjectPtr)return e;switch(n.kind){case $kindPtr:return e===n.nil?p:h(e.$get(),n.elem);case $kindStruct:var r=n.fields[0];return h(e[r.prop],r.typ);case $kindInterface:return h(e.$val,e.constructor);default:return p}},k=h(e,n);if(k!==p)return k;if(void 0!==r)return r(e);k={};for(a=0;a>24;case $kindInt16:return parseInt(e)<<16>>16;case $kindInt32:return parseInt(e)>>0;case $kindUint:return parseInt(e);case $kindUint8:return parseInt(e)<<24>>>24;case $kindUint16:return parseInt(e)<<16>>>16;case $kindUint32:case $kindUintptr:return parseInt(e)>>>0;case $kindInt64:case $kindUint64:return new n(0,e);case $kindFloat32:case $kindFloat64:return parseFloat(e);case $kindArray:return e.length!==n.len&&$throwRuntimeError(\"got array with wrong size from JavaScript native\"),$mapArray(e,function(e){return $internalize(e,n.elem,i)});case $kindFunc:return function(){for(var t=[],a=0;a=128)return!1;return!0};\n"