/tmp/vencord/ ├── dist │   └── js │   ├── main.js │   ├── main.js.map │   ├── preload.js │   ├── preload.js.map │   ├── renderer.css │   ├── renderer.css.map │   ├── renderer.js │   ├── renderer.js.map │   ├── updaterPreload.js │   └── updaterPreload.js.map ├── LICENSE ├── node_modules │   ├── ansi-regex │   │   ├── index.js │   │   ├── license │   │   └── package.json │   ├── ansi-styles │   │   ├── index.js │   │   ├── license │   │   └── package.json │   ├── aproba │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── are-we-there-yet │   │   ├── lib │   │   │   ├── index.js │   │   │   ├── tracker-base.js │   │   │   ├── tracker-group.js │   │   │   ├── tracker.js │   │   │   └── tracker-stream.js │   │   ├── LICENSE.md │   │   └── package.json │   ├── arrpc │   │   ├── ext │   │   │   ├── arRPC.user.js │   │   │   └── mv2 │   │   │   ├── content.js │   │   │   └── manifest.json │   │   ├── LICENSE │   │   ├── package.json │   │   └── src │   │   ├── bridge.js │   │   ├── index.js │   │   ├── process │   │   │   ├── detectable.json │   │   │   ├── index.js │   │   │   └── native │   │   │   ├── index.js │   │   │   ├── linux.js │   │   │   └── win32.js │   │   ├── server.js │   │   └── transports │   │   ├── ipc.js │   │   └── websocket.js │   ├── asynckit │   │   ├── bench.js │   │   ├── index.js │   │   ├── lib │   │   │   ├── abort.js │   │   │   ├── async.js │   │   │   ├── defer.js │   │   │   ├── iterate.js │   │   │   ├── readable_asynckit.js │   │   │   ├── readable_parallel.js │   │   │   ├── readable_serial.js │   │   │   ├── readable_serial_ordered.js │   │   │   ├── state.js │   │   │   ├── streamify.js │   │   │   └── terminator.js │   │   ├── LICENSE │   │   ├── package.json │   │   ├── parallel.js │   │   ├── serial.js │   │   ├── serialOrdered.js │   │   └── stream.js │   ├── axios │   │   ├── dist │   │   │   ├── axios.js │   │   │   ├── axios.js.map │   │   │   ├── axios.min.js │   │   │   ├── axios.min.js.map │   │   │   ├── browser │   │   │   │   ├── axios.cjs │   │   │   │   └── axios.cjs.map │   │   │   ├── esm │   │   │   │   ├── axios.js │   │   │   │   ├── axios.js.map │   │   │   │   ├── axios.min.js │   │   │   │   └── axios.min.js.map │   │   │   └── node │   │   │   ├── axios.cjs │   │   │   └── axios.cjs.map │   │   ├── index.d.cts │   │   ├── index.js │   │   ├── lib │   │   │   ├── adapters │   │   │   │   ├── adapters.js │   │   │   │   ├── http.js │   │   │   │   ├── README.md │   │   │   │   └── xhr.js │   │   │   ├── axios.js │   │   │   ├── cancel │   │   │   │   ├── CanceledError.js │   │   │   │   ├── CancelToken.js │   │   │   │   └── isCancel.js │   │   │   ├── core │   │   │   │   ├── AxiosError.js │   │   │   │   ├── AxiosHeaders.js │   │   │   │   ├── Axios.js │   │   │   │   ├── buildFullPath.js │   │   │   │   ├── dispatchRequest.js │   │   │   │   ├── InterceptorManager.js │   │   │   │   ├── mergeConfig.js │   │   │   │   ├── README.md │   │   │   │   ├── settle.js │   │   │   │   └── transformData.js │   │   │   ├── defaults │   │   │   │   ├── index.js │   │   │   │   └── transitional.js │   │   │   ├── env │   │   │   │   ├── classes │   │   │   │   │   └── FormData.js │   │   │   │   ├── data.js │   │   │   │   └── README.md │   │   │   ├── helpers │   │   │   │   ├── AxiosTransformStream.js │   │   │   │   ├── AxiosURLSearchParams.js │   │   │   │   ├── bind.js │   │   │   │   ├── buildURL.js │   │   │   │   ├── callbackify.js │   │   │   │   ├── combineURLs.js │   │   │   │   ├── cookies.js │   │   │   │   ├── deprecatedMethod.js │   │   │   │   ├── formDataToJSON.js │   │   │   │   ├── formDataToStream.js │   │   │   │   ├── fromDataURI.js │   │   │   │   ├── HttpStatusCode.js │   │   │   │   ├── isAbsoluteURL.js │   │   │   │   ├── isAxiosError.js │   │   │   │   ├── isURLSameOrigin.js │   │   │   │   ├── null.js │   │   │   │   ├── parseHeaders.js │   │   │   │   ├── parseProtocol.js │   │   │   │   ├── readBlob.js │   │   │   │   ├── README.md │   │   │   │   ├── speedometer.js │   │   │   │   ├── spread.js │   │   │   │   ├── throttle.js │   │   │   │   ├── toFormData.js │   │   │   │   ├── toURLEncodedForm.js │   │   │   │   ├── validator.js │   │   │   │   └── ZlibHeaderTransformStream.js │   │   │   ├── platform │   │   │   │   ├── browser │   │   │   │   │   ├── classes │   │   │   │   │   │   ├── Blob.js │   │   │   │   │   │   ├── FormData.js │   │   │   │   │   │   └── URLSearchParams.js │   │   │   │   │   └── index.js │   │   │   │   ├── common │   │   │   │   │   └── utils.js │   │   │   │   ├── index.js │   │   │   │   └── node │   │   │   │   ├── classes │   │   │   │   │   ├── FormData.js │   │   │   │   │   └── URLSearchParams.js │   │   │   │   └── index.js │   │   │   └── utils.js │   │   ├── LICENSE │   │   ├── MIGRATION_GUIDE.md │   │   ├── package.json │   │   └── SECURITY.md │   ├── chownr │   │   ├── chownr.js │   │   ├── LICENSE │   │   └── package.json │   ├── cliui │   │   ├── build │   │   │   ├── index.cjs │   │   │   ├── index.d.cts │   │   │   └── lib │   │   │   ├── index.js │   │   │   └── string-utils.js │   │   ├── index.mjs │   │   ├── LICENSE.txt │   │   ├── node_modules │   │   │   └── wrap-ansi │   │   │   ├── index.js │   │   │   ├── license │   │   │   └── package.json │   │   └── package.json │   ├── cmake-js │   │   ├── bin │   │   │   └── cmake-js │   │   ├── lib │   │   │   ├── appCMakeJSConfig.js │   │   │   ├── buildSystem.js │   │   │   ├── cMake.js │   │   │   ├── cmLog.js │   │   │   ├── dist.js │   │   │   ├── downloader.js │   │   │   ├── environment.js │   │   │   ├── import │   │   │   │   ├── Find-VisualStudio.cs │   │   │   │   ├── find-visualstudio.js │   │   │   │   ├── LICENSE │   │   │   │   ├── README │   │   │   │   └── util.js │   │   │   ├── index.js │   │   │   ├── locateNAN.js │   │   │   ├── locateNodeApi.js │   │   │   ├── npmConfig.js │   │   │   ├── processHelpers.js │   │   │   ├── runtimePaths.js │   │   │   ├── targetOptions.js │   │   │   └── toolset.js │   │   ├── LICENSE │   │   └── package.json │   ├── color-convert │   │   ├── conversions.js │   │   ├── index.js │   │   ├── LICENSE │   │   ├── package.json │   │   └── route.js │   ├── color-name │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── color-support │   │   ├── bin.js │   │   ├── browser.js │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── combined-stream │   │   ├── lib │   │   │   └── combined_stream.js │   │   ├── License │   │   └── package.json │   ├── console-control-strings │   │   ├── index.js │   │   ├── LICENSE │   │   ├── package.json │   │   └── README.md~ │   ├── debug │   │   ├── LICENSE │   │   ├── package.json │   │   └── src │   │   ├── browser.js │   │   ├── common.js │   │   ├── index.js │   │   └── node.js │   ├── deep-extend │   │   ├── index.js │   │   ├── lib │   │   │   └── deep-extend.js │   │   ├── LICENSE │   │   └── package.json │   ├── delayed-stream │   │   ├── lib │   │   │   └── delayed_stream.js │   │   ├── License │   │   ├── Makefile │   │   └── package.json │   ├── delegates │   │   ├── History.md │   │   ├── index.js │   │   ├── License │   │   ├── Makefile │   │   └── package.json │   ├── escalade │   │   ├── dist │   │   │   ├── index.js │   │   │   └── index.mjs │   │   ├── license │   │   ├── package.json │   │   └── sync │   │   ├── index.js │   │   └── index.mjs │   ├── follow-redirects │   │   ├── debug.js │   │   ├── http.js │   │   ├── https.js │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── form-data │   │   ├── lib │   │   │   ├── browser.js │   │   │   ├── form_data.js │   │   │   └── populate.js │   │   ├── License │   │   ├── package.json │   │   └── README.md.bak │   ├── fs-extra │   │   ├── lib │   │   │   ├── copy │   │   │   │   ├── copy.js │   │   │   │   ├── copy-sync.js │   │   │   │   └── index.js │   │   │   ├── empty │   │   │   │   └── index.js │   │   │   ├── ensure │   │   │   │   ├── file.js │   │   │   │   ├── index.js │   │   │   │   ├── link.js │   │   │   │   ├── symlink.js │   │   │   │   ├── symlink-paths.js │   │   │   │   └── symlink-type.js │   │   │   ├── fs │   │   │   │   └── index.js │   │   │   ├── index.js │   │   │   ├── json │   │   │   │   ├── index.js │   │   │   │   ├── jsonfile.js │   │   │   │   ├── output-json.js │   │   │   │   └── output-json-sync.js │   │   │   ├── mkdirs │   │   │   │   ├── index.js │   │   │   │   ├── make-dir.js │   │   │   │   └── utils.js │   │   │   ├── move │   │   │   │   ├── index.js │   │   │   │   ├── move.js │   │   │   │   └── move-sync.js │   │   │   ├── output-file │   │   │   │   └── index.js │   │   │   ├── path-exists │   │   │   │   └── index.js │   │   │   ├── remove │   │   │   │   ├── index.js │   │   │   │   └── rimraf.js │   │   │   └── util │   │   │   ├── stat.js │   │   │   └── utimes.js │   │   ├── LICENSE │   │   └── package.json │   ├── fs-minipass │   │   ├── index.js │   │   ├── LICENSE │   │   ├── node_modules │   │   │   └── minipass │   │   │   ├── index.js │   │   │   ├── LICENSE │   │   │   └── package.json │   │   └── package.json │   ├── gauge │   │   ├── lib │   │   │   ├── base-theme.js │   │   │   ├── error.js │   │   │   ├── has-color.js │   │   │   ├── index.js │   │   │   ├── plumbing.js │   │   │   ├── process.js │   │   │   ├── progress-bar.js │   │   │   ├── render-template.js │   │   │   ├── set-immediate.js │   │   │   ├── set-interval.js │   │   │   ├── spin.js │   │   │   ├── template-item.js │   │   │   ├── theme-set.js │   │   │   ├── themes.js │   │   │   └── wide-truncate.js │   │   ├── LICENSE.md │   │   ├── node_modules │   │   │   └── signal-exit │   │   │   ├── index.js │   │   │   ├── LICENSE.txt │   │   │   ├── package.json │   │   │   └── signals.js │   │   └── package.json │   ├── get-caller-file │   │   ├── index.js │   │   ├── index.js.map │   │   ├── LICENSE.md │   │   └── package.json │   ├── graceful-fs │   │   ├── clone.js │   │   ├── graceful-fs.js │   │   ├── legacy-streams.js │   │   ├── LICENSE │   │   ├── package.json │   │   └── polyfills.js │   ├── has-unicode │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── inherits │   │   ├── inherits_browser.js │   │   ├── inherits.js │   │   ├── LICENSE │   │   └── package.json │   ├── ini │   │   ├── ini.js │   │   ├── LICENSE │   │   └── package.json │   ├── isexe │   │   ├── index.js │   │   ├── LICENSE │   │   ├── mode.js │   │   ├── package.json │   │   └── windows.js │   ├── is-fullwidth-code-point │   │   ├── index.js │   │   ├── license │   │   └── package.json │   ├── jsonfile │   │   ├── index.js │   │   ├── LICENSE │   │   ├── package.json │   │   └── utils.js │   ├── lodash.isplainobject │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── lru-cache │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── memory-stream │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── mime-db │   │   ├── db.json │   │   ├── HISTORY.md │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── mime-types │   │   ├── HISTORY.md │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── minimist │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── minizlib │   │   ├── constants.js │   │   ├── index.js │   │   ├── LICENSE │   │   ├── node_modules │   │   │   └── minipass │   │   │   ├── index.js │   │   │   ├── LICENSE │   │   │   └── package.json │   │   └── package.json │   ├── mkdirp │   │   ├── bin │   │   │   └── cmd.js │   │   ├── index.js │   │   ├── lib │   │   │   ├── find-made.js │   │   │   ├── mkdirp-manual.js │   │   │   ├── mkdirp-native.js │   │   │   ├── opts-arg.js │   │   │   ├── path-arg.js │   │   │   └── use-native.js │   │   ├── LICENSE │   │   └── package.json │   ├── ms │   │   ├── index.js │   │   ├── license.md │   │   └── package.json │   ├── node-api-headers │   │   ├── CODE_OF_CONDUCT.md │   │   ├── CONTRIBUTING.md │   │   ├── include │   │   │   ├── js_native_api.h │   │   │   ├── js_native_api_types.h │   │   │   ├── node_api.h │   │   │   └── node_api_types.h │   │   ├── index.js │   │   ├── LICENSE │   │   ├── package.json │   │   └── symbols.js │   ├── npmlog │   │   ├── lib │   │   │   └── log.js │   │   ├── LICENSE.md │   │   └── package.json │   ├── pkg-prebuilds │   │   ├── bin │   │   │   ├── copy.mjs │   │   │   └── verify.mjs │   │   ├── bindings.js │   │   ├── lib │   │   │   └── prebuild.js │   │   ├── LICENSE │   │   └── package.json │   ├── proxy-from-env │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── rc │   │   ├── browser.js │   │   ├── cli.js │   │   ├── index.js │   │   ├── lib │   │   │   └── utils.js │   │   ├── LICENSE.APACHE2 │   │   ├── LICENSE.BSD │   │   ├── LICENSE.MIT │   │   ├── node_modules │   │   │   └── strip-json-comments │   │   │   ├── index.js │   │   │   ├── license │   │   │   └── package.json │   │   └── package.json │   ├── readable-stream │   │   ├── CONTRIBUTING.md │   │   ├── errors-browser.js │   │   ├── errors.js │   │   ├── experimentalWarning.js │   │   ├── GOVERNANCE.md │   │   ├── lib │   │   │   ├── internal │   │   │   │   └── streams │   │   │   │   ├── async_iterator.js │   │   │   │   ├── buffer_list.js │   │   │   │   ├── destroy.js │   │   │   │   ├── end-of-stream.js │   │   │   │   ├── from-browser.js │   │   │   │   ├── from.js │   │   │   │   ├── pipeline.js │   │   │   │   ├── state.js │   │   │   │   ├── stream-browser.js │   │   │   │   └── stream.js │   │   │   ├── _stream_duplex.js │   │   │   ├── _stream_passthrough.js │   │   │   ├── _stream_readable.js │   │   │   ├── _stream_transform.js │   │   │   └── _stream_writable.js │   │   ├── LICENSE │   │   ├── package.json │   │   ├── readable-browser.js │   │   └── readable.js │   ├── require-directory │   │   ├── index.js │   │   ├── LICENSE │   │   ├── package.json │   │   └── README.markdown │   ├── safe-buffer │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── semver │   │   ├── bin │   │   │   └── semver.js │   │   ├── classes │   │   │   ├── comparator.js │   │   │   ├── index.js │   │   │   ├── range.js │   │   │   └── semver.js │   │   ├── functions │   │   │   ├── clean.js │   │   │   ├── cmp.js │   │   │   ├── coerce.js │   │   │   ├── compare-build.js │   │   │   ├── compare.js │   │   │   ├── compare-loose.js │   │   │   ├── diff.js │   │   │   ├── eq.js │   │   │   ├── gte.js │   │   │   ├── gt.js │   │   │   ├── inc.js │   │   │   ├── lte.js │   │   │   ├── lt.js │   │   │   ├── major.js │   │   │   ├── minor.js │   │   │   ├── neq.js │   │   │   ├── parse.js │   │   │   ├── patch.js │   │   │   ├── prerelease.js │   │   │   ├── rcompare.js │   │   │   ├── rsort.js │   │   │   ├── satisfies.js │   │   │   ├── sort.js │   │   │   └── valid.js │   │   ├── index.js │   │   ├── internal │   │   │   ├── constants.js │   │   │   ├── debug.js │   │   │   ├── identifiers.js │   │   │   ├── parse-options.js │   │   │   └── re.js │   │   ├── LICENSE │   │   ├── package.json │   │   ├── preload.js │   │   ├── range.bnf │   │   └── ranges │   │   ├── gtr.js │   │   ├── intersects.js │   │   ├── ltr.js │   │   ├── max-satisfying.js │   │   ├── min-satisfying.js │   │   ├── min-version.js │   │   ├── outside.js │   │   ├── simplify.js │   │   ├── subset.js │   │   ├── to-comparators.js │   │   └── valid.js │   ├── set-blocking │   │   ├── index.js │   │   ├── LICENSE.txt │   │   └── package.json │   ├── string_decoder │   │   ├── lib │   │   │   └── string_decoder.js │   │   ├── LICENSE │   │   └── package.json │   ├── string-width │   │   ├── index.js │   │   ├── license │   │   ├── node_modules │   │   │   └── emoji-regex │   │   │   ├── es2015 │   │   │   │   ├── index.js │   │   │   │   └── text.js │   │   │   ├── index.js │   │   │   ├── LICENSE-MIT.txt │   │   │   ├── package.json │   │   │   └── text.js │   │   └── package.json │   ├── strip-ansi │   │   ├── index.js │   │   ├── license │   │   └── package.json │   ├── tar │   │   ├── index.js │   │   ├── lib │   │   │   ├── create.js │   │   │   ├── extract.js │   │   │   ├── get-write-flag.js │   │   │   ├── header.js │   │   │   ├── high-level-opt.js │   │   │   ├── large-numbers.js │   │   │   ├── list.js │   │   │   ├── mkdir.js │   │   │   ├── mode-fix.js │   │   │   ├── normalize-unicode.js │   │   │   ├── normalize-windows-path.js │   │   │   ├── pack.js │   │   │   ├── parse.js │   │   │   ├── path-reservations.js │   │   │   ├── pax.js │   │   │   ├── read-entry.js │   │   │   ├── replace.js │   │   │   ├── strip-absolute-path.js │   │   │   ├── strip-trailing-slashes.js │   │   │   ├── types.js │   │   │   ├── unpack.js │   │   │   ├── update.js │   │   │   ├── warn-mixin.js │   │   │   ├── winchars.js │   │   │   └── write-entry.js │   │   ├── LICENSE │   │   ├── node_modules │   │   │   └── minipass │   │   │   ├── index.js │   │   │   ├── index.mjs │   │   │   ├── LICENSE │   │   │   └── package.json │   │   └── package.json │   ├── universalify │   │   ├── index.js │   │   ├── LICENSE │   │   └── package.json │   ├── url-join │   │   ├── bin │   │   │   └── changelog │   │   ├── lib │   │   │   └── url-join.js │   │   ├── LICENSE │   │   └── package.json │   ├── util-deprecate │   │   ├── browser.js │   │   ├── History.md │   │   ├── LICENSE │   │   ├── node.js │   │   └── package.json │   ├── @vencord │   │   └── venmic │   │   ├── addon │   │   │   ├── addon.cpp │   │   │   └── CMakeLists.txt │   │   ├── cmake │   │   │   ├── cpm.cmake │   │   │   └── FindPulseAudio.cmake │   │   ├── CMakeLists.txt │   │   ├── include │   │   │   └── vencord │   │   │   ├── logger.hpp │   │   │   └── patchbay.hpp │   │   ├── lib │   │   │   ├── index.js │   │   │   └── options.js │   │   ├── LICENSE │   │   ├── node_modules │   │   │   └── node-addon-api │   │   │   ├── common.gypi │   │   │   ├── except.gypi │   │   │   ├── index.js │   │   │   ├── LICENSE.md │   │   │   ├── napi.h │   │   │   ├── napi-inl.deprecated.h │   │   │   ├── napi-inl.h │   │   │   ├── node_api.gyp │   │   │   ├── noexcept.gypi │   │   │   ├── nothing.c │   │   │   ├── package.json │   │   │   ├── package-support.json │   │   │   └── tools │   │   │   ├── check-napi.js │   │   │   ├── clang-format.js │   │   │   ├── conversion.js │   │   │   ├── eslint-format.js │   │   │   └── README.md │   │   ├── package.json │   │   ├── prebuilds │   │   │   ├── venmic-addon-linux-arm64 │   │   │   │   └── node-napi-v7.node │   │   │   └── venmic-addon-linux-x64 │   │   │   └── node-napi-v7.node │   │   ├── private │   │   │   ├── message.hpp │   │   │   └── patchbay.impl.hpp │   │   └── src │   │   ├── logger.cpp │   │   ├── patchbay.cpp │   │   └── patchbay.impl.cpp │   ├── which │   │   ├── bin │   │   │   └── node-which │   │   ├── LICENSE │   │   ├── package.json │   │   └── which.js │   ├── wide-align │   │   ├── align.js │   │   ├── LICENSE │   │   └── package.json │   ├── ws │   │   ├── browser.js │   │   ├── index.js │   │   ├── lib │   │   │   ├── buffer-util.js │   │   │   ├── constants.js │   │   │   ├── event-target.js │   │   │   ├── extension.js │   │   │   ├── limiter.js │   │   │   ├── permessage-deflate.js │   │   │   ├── receiver.js │   │   │   ├── sender.js │   │   │   ├── stream.js │   │   │   ├── subprotocol.js │   │   │   ├── validation.js │   │   │   ├── websocket.js │   │   │   └── websocket-server.js │   │   ├── LICENSE │   │   ├── package.json │   │   └── wrapper.mjs │   ├── y18n │   │   ├── build │   │   │   ├── index.cjs │   │   │   └── lib │   │   │   ├── cjs.js │   │   │   ├── index.js │   │   │   └── platform-shims │   │   │   └── node.js │   │   ├── index.mjs │   │   ├── LICENSE │   │   └── package.json │   ├── yallist │   │   ├── iterator.js │   │   ├── LICENSE │   │   ├── package.json │   │   └── yallist.js │   ├── yargs │   │   ├── browser.mjs │   │   ├── build │   │   │   ├── index.cjs │   │   │   └── lib │   │   │   ├── argsert.js │   │   │   ├── command.js │   │   │   ├── completion.js │   │   │   ├── completion-templates.js │   │   │   ├── middleware.js │   │   │   ├── parse-command.js │   │   │   ├── typings │   │   │   │   ├── common-types.js │   │   │   │   └── yargs-parser-types.js │   │   │   ├── usage.js │   │   │   ├── utils │   │   │   │   ├── apply-extends.js │   │   │   │   ├── is-promise.js │   │   │   │   ├── levenshtein.js │   │   │   │   ├── maybe-async-result.js │   │   │   │   ├── obj-filter.js │   │   │   │   ├── process-argv.js │   │   │   │   ├── set-blocking.js │   │   │   │   └── which-module.js │   │   │   ├── validation.js │   │   │   ├── yargs-factory.js │   │   │   └── yerror.js │   │   ├── helpers │   │   │   ├── helpers.mjs │   │   │   ├── index.js │   │   │   └── package.json │   │   ├── index.cjs │   │   ├── index.mjs │   │   ├── lib │   │   │   └── platform-shims │   │   │   ├── browser.mjs │   │   │   └── esm.mjs │   │   ├── LICENSE │   │   ├── locales │   │   │   ├── be.json │   │   │   ├── cs.json │   │   │   ├── de.json │   │   │   ├── en.json │   │   │   ├── es.json │   │   │   ├── fi.json │   │   │   ├── fr.json │   │   │   ├── hi.json │   │   │   ├── hu.json │   │   │   ├── id.json │   │   │   ├── it.json │   │   │   ├── ja.json │   │   │   ├── ko.json │   │   │   ├── nb.json │   │   │   ├── nl.json │   │   │   ├── nn.json │   │   │   ├── pirate.json │   │   │   ├── pl.json │   │   │   ├── pt_BR.json │   │   │   ├── pt.json │   │   │   ├── ru.json │   │   │   ├── th.json │   │   │   ├── tr.json │   │   │   ├── uk_UA.json │   │   │   ├── uz.json │   │   │   ├── zh_CN.json │   │   │   └── zh_TW.json │   │   ├── package.json │   │   ├── yargs │   │   └── yargs.mjs │   └── yargs-parser │   ├── browser.js │   ├── build │   │   ├── index.cjs │   │   └── lib │   │   ├── index.js │   │   ├── string-utils.js │   │   ├── tokenize-arg-string.js │   │   ├── yargs-parser.js │   │   └── yargs-parser-types.js │   ├── LICENSE.txt │   └── package.json ├── package.json └── static ├── badges │   ├── 10.ico │   ├── 11.ico │   ├── 1.ico │   ├── 2.ico │   ├── 3.ico │   ├── 4.ico │   ├── 5.ico │   ├── 6.ico │   ├── 7.ico │   ├── 8.ico │   └── 9.ico ├── dist │   ├── venmic-arm64.node │   └── venmic-x64.node ├── icon.ico ├── icon.png ├── shiggy.gif └── views ├── about.html ├── first-launch.html ├── splash.html ├── style.css └── updater.html 189 directories, 700 files